1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834
|
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR ASE developers
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: ase\n"
"Report-Msgid-Bugs-To: ase-users@listserv.fysik.dtu.dk\n"
"POT-Creation-Date: 2016-10-17 18:07+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
#: ../ag.py:135
msgid "To get a full traceback, use: ase-gui --verbose"
msgstr ""
#. Asap and GPAW may be imported if selected.
#: ../calculator.py:18
msgid ""
"To make most calculations on the atoms, a Calculator object must first\n"
"be associated with it. ASE supports a number of calculators, supporting\n"
"different elements, and implementing different physical models for the\n"
"interatomic interactions."
msgstr ""
#. Informational text about the calculators
#: ../calculator.py:26
msgid ""
"The Lennard-Jones pair potential is one of the simplest\n"
"possible models for interatomic interactions, mostly\n"
"suitable for noble gasses and model systems.\n"
"\n"
"Interactions are described by an interaction length and an\n"
"interaction strength."
msgstr ""
#: ../calculator.py:35
msgid ""
"The EMT potential is a many-body potential, giving a\n"
"good description of the late transition metals crystalling\n"
"in the FCC crystal structure. The elements described by the\n"
"main set of EMT parameters are Al, Ni, Cu, Pd, Ag, Pt, and\n"
"Au, the Al potential is however not suitable for materials\n"
"science application, as the stacking fault energy is wrong.\n"
"\n"
"A number of parameter sets are provided.\n"
"\n"
"<b>Default parameters:</b>\n"
"\n"
"The default EMT parameters, as published in K. W. Jacobsen,\n"
"P. Stoltze and J. K. Nørskov, <i>Surf. Sci.</i> <b>366</b>, 394 (1996).\n"
"\n"
"<b>Alternative Cu, Ag and Au:</b>\n"
"\n"
"An alternative set of parameters for Cu, Ag and Au,\n"
"reoptimized to experimental data including the stacking\n"
"fault energies by Torben Rasmussen (partly unpublished).\n"
"\n"
"<b>Ruthenium:</b>\n"
"\n"
"Parameters for Ruthenium, as published in J. Gavnholt and\n"
"J. Schiøtz, <i>Phys. Rev. B</i> <b>77</b>, 035404 (2008).\n"
"\n"
"<b>Metallic glasses:</b>\n"
"\n"
"Parameters for MgCu and CuZr metallic glasses. MgCu\n"
"parameters are in N. P. Bailey, J. Schiøtz and\n"
"K. W. Jacobsen, <i>Phys. Rev. B</i> <b>69</b>, 144205 (2004).\n"
"CuZr in A. Paduraru, A. Kenoufi, N. P. Bailey and\n"
"J. Schiøtz, <i>Adv. Eng. Mater.</i> <b>9</b>, 505 (2007).\n"
msgstr ""
#: ../calculator.py:70
msgid ""
"The EMT potential is a many-body potential, giving a\n"
"good description of the late transition metals crystalling\n"
"in the FCC crystal structure. The elements described by the\n"
"main set of EMT parameters are Al, Ni, Cu, Pd, Ag, Pt, and\n"
"Au. In addition, this implementation allows for the use of\n"
"H, N, O and C adatoms, although the description of these is\n"
"most likely not very good.\n"
"\n"
"<b>This is the ASE implementation of EMT.</b> For large\n"
"simulations the ASAP implementation is more suitable; this\n"
"implementation is mainly to make EMT available when ASAP is\n"
"not installed.\n"
msgstr ""
#: ../calculator.py:85
msgid ""
"The EAM/ADP potential is a many-body potential\n"
"implementation of the Embedded Atom Method and\n"
"equipotential plus the Angular Dependent Potential,\n"
"which is an extension of the EAM to include\n"
"directional bonds. EAM is suited for FCC metallic\n"
"bonding while the ADP is suited for metallic bonds\n"
"with some degree of directionality.\n"
"\n"
"For EAM see M.S. Daw and M.I. Baskes,\n"
"Phys. Rev. Letters 50 (1983) 1285.\n"
"\n"
"For ADP see Y. Mishin, M.J. Mehl, and\n"
"D.A. Papaconstantopoulos, Acta Materialia 53 2005\n"
"4029--4041.\n"
"\n"
"Data for the potential is contained in a file in either LAMMPS Alloy\n"
"or ADP format which need to be loaded before use. The Interatomic\n"
"Potentials Repository Project at http://www.ctcms.nist.gov/potentials/\n"
"contains many suitable potential files.\n"
"\n"
"For large simulations the LAMMPS calculator is more\n"
"suitable; this implementation is mainly to make EAM\n"
"available when LAMMPS is not installed or to develop\n"
"new EAM/ADP poentials by matching results using ab\n"
"initio.\n"
msgstr ""
#: ../calculator.py:113
msgid ""
"The Brenner potential is a reactive bond-order potential for\n"
"carbon and hydrocarbons. As a bond-order potential, it takes\n"
"into account that carbon orbitals can hybridize in different\n"
"ways, and that carbon can form single, double and triple\n"
"bonds. That the potential is reactive means that it can\n"
"handle gradual changes in the bond order as chemical bonds\n"
"are formed or broken.\n"
"\n"
"The Brenner potential is implemented in Asap, based on a\n"
"C implentation published at http://www.rahul.net/pcm/brenner/ .\n"
"\n"
"The potential is documented here:\n"
" Donald W Brenner, Olga A Shenderova, Judith A Harrison,\n"
" Steven J Stuart, Boris Ni and Susan B Sinnott:\n"
" \"A second-generation reactive empirical bond order (REBO)\n"
" potential energy expression for hydrocarbons\",\n"
" J. Phys.: Condens. Matter 14 (2002) 783-802.\n"
" doi: 10.1088/0953-8984/14/4/312\n"
msgstr ""
#: ../calculator.py:135
msgid ""
"GPAW implements Density Functional Theory using a\n"
"<b>G</b>rid-based real-space representation of the wave\n"
"functions, and the <b>P</b>rojector <b>A</b>ugmented <b>W</b>ave\n"
"method for handling the core regions.\n"
msgstr ""
#: ../calculator.py:142
msgid ""
"FHI-aims is an external package implementing density\n"
"functional theory and quantum chemical methods using\n"
"all-electron methods and a numeric local orbital basis set.\n"
"For full details, see http://www.fhi-berlin.mpg.de/aims/\n"
"or Comp. Phys. Comm. v180 2175 (2009). The ASE\n"
"documentation contains information on the keywords and\n"
"functionalities available within this interface.\n"
msgstr ""
#: ../calculator.py:152
msgid ""
"WARNING:\n"
"Your system seems to have more than zero but less than\n"
"three periodic dimensions. Please check that this is\n"
"really what you want to compute. Assuming full\n"
"3D periodicity for this calculator."
msgstr ""
#: ../calculator.py:159
msgid ""
"VASP is an external package implementing density\n"
"functional functional theory using pseudopotentials\n"
"or the projector-augmented wave method together\n"
"with a plane wave basis set. For full details, see\n"
"http://cms.mpi.univie.ac.at/vasp/vasp/\n"
msgstr ""
#: ../calculator.py:168
msgid "Default (Al, Ni, Cu, Pd, Ag, Pt, Au)"
msgstr ""
#: ../calculator.py:169
msgid "Alternative Cu, Ag and Au"
msgstr ""
#: ../calculator.py:170
msgid "Ruthenium"
msgstr ""
#: ../calculator.py:171
msgid "CuMg and CuZr metallic glass"
msgstr ""
#: ../calculator.py:189
msgid "Select calculator"
msgstr ""
#: ../calculator.py:195
msgid "Calculator:"
msgstr ""
#. No calculator (the default)
#: ../calculator.py:198
msgid "None"
msgstr ""
#: ../calculator.py:203
msgid "Lennard-Jones (ASAP)"
msgstr ""
#: ../calculator.py:204 ../calculator.py:231 ../calculator.py:246
#: ../calculator.py:255 ../calculator.py:264
msgid "Setup"
msgstr ""
#: ../calculator.py:211
msgid "EMT - Effective Medium Theory (ASAP)"
msgstr ""
#: ../calculator.py:223
msgid "EMT - Effective Medium Theory (ASE)"
msgstr ""
#: ../calculator.py:230
msgid "EAM - Embedded Atom Method/Angular Dependent Potential (ASE)"
msgstr ""
#: ../calculator.py:238
msgid "Brenner Potential (ASAP)"
msgstr ""
#: ../calculator.py:244
msgid "Density Functional Theory (GPAW)"
msgstr ""
#: ../calculator.py:253
msgid "Density Functional Theory (FHI-aims)"
msgstr ""
#: ../calculator.py:262
msgid "Density Functional Theory (VASP)"
msgstr ""
#: ../calculator.py:275
msgid "Check that the calculator is reasonable."
msgstr ""
#: ../calculator.py:345 ../simulation.py:114
msgid "No atoms present"
msgstr ""
#: ../calculator.py:439 ../calculator.py:474 ../calculator.py:522
msgid "ASAP is not installed. (Failed to import asap3)"
msgstr ""
#: ../calculator.py:442
msgid "You must set up the Lennard-Jones parameters"
msgstr ""
#: ../calculator.py:447
msgid "Could not create useful Lennard-Jones calculator."
msgstr ""
#: ../calculator.py:482
msgid "Could not attach EMT calculator to the atoms."
msgstr ""
#: ../calculator.py:503
msgid "You must set up the EAM parameters"
msgstr ""
#: ../calculator.py:541 ../calculator.py:553
msgid "GPAW is not installed. (Failed to import gpaw)"
msgstr ""
#: ../calculator.py:544
msgid "You must set up the GPAW parameters"
msgstr ""
#: ../calculator.py:586
msgid "You must set up the FHI-aims parameters"
msgstr ""
#: ../calculator.py:601
msgid "You must set up the VASP parameters"
msgstr ""
#: ../calculator.py:626
#, python-format
msgid "Element %(sym)s not allowed by the '%(name)s' calculator"
msgstr ""
#: ../calculator.py:634
msgid "Info"
msgstr ""
#: ../calculator.py:650
msgid "Lennard-Jones parameters"
msgstr ""
#: ../calculator.py:662
msgid "Specify the Lennard-Jones parameters here"
msgstr ""
#: ../calculator.py:665
msgid "Epsilon (eV):"
msgstr ""
#: ../calculator.py:669
msgid "Sigma (Å):"
msgstr ""
#. TRANSLATORS: Shift roughly means adjust (about a potential)
#: ../calculator.py:673
msgid "Shift to make smooth at cutoff"
msgstr ""
#: ../calculator.py:752
msgid "EAM parameters"
msgstr ""
#: ../calculator.py:766
msgid "Import Potential"
msgstr ""
#: ../calculator.py:789
msgid "You need to import the potential file"
msgstr ""
#: ../calculator.py:797
msgid "Import .alloy or .adp potential file ... "
msgstr ""
#: ../calculator.py:820
msgid "GPAW parameters"
msgstr ""
#. label = gtk.Label("Specify the GPAW parameters here")
#. pack(vbox, [label])
#. Print some info
#: ../calculator.py:835 ../calculator.py:1125 ../calculator.py:1614
#, python-format
msgid "%i atoms.\n"
msgstr ""
#: ../calculator.py:837
#, python-format
msgid "Orthogonal unit cell: %.2f x %.2f x %.2f Å."
msgstr ""
#: ../calculator.py:839
msgid "Non-orthogonal unit cell:\n"
msgstr ""
#: ../calculator.py:849 ../calculator.py:1141 ../calculator.py:1629
msgid "Exchange-correlation functional: "
msgstr ""
#. Grid spacing
#: ../calculator.py:853
msgid "Grid spacing"
msgstr ""
#: ../calculator.py:857 ../graphene.py:66 ../graphene.py:77 ../graphene.py:100
#: ../nanotube.py:49 ../surfaceslab.py:97
msgid "Å"
msgstr ""
#: ../calculator.py:858
msgid "Grid points"
msgstr ""
#: ../calculator.py:867
#, python-format
msgid "h<sub>eff</sub> = (%.3f, %.3f, %.3f) Å"
msgstr ""
#: ../calculator.py:893 ../calculator.py:1156 ../calculator.py:1665
msgid "k-points k = ("
msgstr ""
#: ../calculator.py:897 ../calculator.py:1160
#, python-format
msgid "k-points x size: (%.1f, %.1f, %.1f) Å"
msgstr ""
#. Spin polarized
#: ../calculator.py:902 ../calculator.py:1627
msgid "Spin polarized"
msgstr ""
#: ../calculator.py:908
msgid "FD - Finite Difference (grid) mode"
msgstr ""
#: ../calculator.py:909
msgid "LCAO - Linear Combination of Atomic Orbitals"
msgstr ""
#: ../calculator.py:912
msgid "Mode: "
msgstr ""
#: ../calculator.py:914
msgid "sz - Single Zeta"
msgstr ""
#: ../calculator.py:915
msgid "szp - Single Zeta polarized"
msgstr ""
#: ../calculator.py:916
msgid "dzp - Double Zeta polarized"
msgstr ""
#. dzp
#: ../calculator.py:918
msgid "Basis functions: "
msgstr ""
#. Mixer
#: ../calculator.py:924
msgid "Non-standard mixer parameters"
msgstr ""
#: ../calculator.py:1121
msgid "FHI-aims parameters"
msgstr ""
#: ../calculator.py:1128
msgid "Periodic geometry, unit cell is:\n"
msgstr ""
#: ../calculator.py:1133
msgid "Non-periodic geometry.\n"
msgstr ""
#: ../calculator.py:1140
msgid "Hirshfeld-based dispersion correction"
msgstr ""
#. Spin polarized, charge, relativity
#: ../calculator.py:1166
msgid "Spin / initial moment "
msgstr ""
#: ../calculator.py:1184
msgid " Charge"
msgstr ""
#: ../calculator.py:1186
msgid " Relativity"
msgstr ""
#: ../calculator.py:1188
msgid " Threshold"
msgstr ""
#. self-consistency criteria
#: ../calculator.py:1193
msgid "Self-consistency convergence:"
msgstr ""
#: ../calculator.py:1206
msgid "Compute forces"
msgstr ""
#. XXX: use gtk table for layout. Spaces will not work well otherwise
#. (depend on fonts, widget style, ...)
#. TRANSLATORS: Don't care too much about these, just get approximately
#. the same string lengths
#: ../calculator.py:1217
msgid "Energy: "
msgstr ""
#: ../calculator.py:1219
msgid " eV Sum of eigenvalues: "
msgstr ""
#: ../calculator.py:1221 ../calculator.py:1700
msgid " eV"
msgstr ""
#: ../calculator.py:1222
msgid "Electron density: "
msgstr ""
#: ../calculator.py:1224
msgid " Force convergence: "
msgstr ""
#: ../calculator.py:1226
msgid " eV/Ang "
msgstr ""
#: ../calculator.py:1239 ../calculator.py:1711
msgid "Additional keywords: "
msgstr ""
#. run command and species defaults:
#: ../calculator.py:1253
msgid "FHI-aims execution command: "
msgstr ""
#: ../calculator.py:1255 ../calculator.py:1728
msgid "Directory for species defaults: "
msgstr ""
#: ../calculator.py:1267 ../calculator.py:1736
msgid "Set Defaults"
msgstr ""
#: ../calculator.py:1269
msgid "Import control.in"
msgstr ""
#: ../calculator.py:1271
msgid "Export control.in"
msgstr ""
#: ../calculator.py:1458
msgid "Export parameters ... "
msgstr ""
#: ../calculator.py:1478
msgid "Import control.in file ... "
msgstr ""
#: ../calculator.py:1534 ../calculator.py:2043
#, python-format
msgid ""
"Please use the facilities provided in this window to manipulate the keyword: "
"%s!"
msgstr ""
#: ../calculator.py:1537
#, python-format
msgid ""
"Don't know this keyword: %s\n"
"\n"
"Please check!\n"
"\n"
"If you really think it should be available, please add it to the top of ase/"
"calculators/aims.py."
msgstr ""
#: ../calculator.py:1610
msgid "VASP parameters"
msgstr ""
#: ../calculator.py:1616
msgid "Periodic geometry, unit cell is: \n"
msgstr ""
#: ../calculator.py:1668
msgid ") Cutoff: "
msgstr ""
#: ../calculator.py:1669
msgid " Precision: "
msgstr ""
#: ../calculator.py:1671
#, python-format
msgid "k-points x size: (%.1f, %.1f, %.1f) Å "
msgstr ""
#: ../calculator.py:1687
msgid "Smearing: "
msgstr ""
#: ../calculator.py:1689
msgid " order: "
msgstr ""
#: ../calculator.py:1691
msgid " width: "
msgstr ""
#: ../calculator.py:1698
msgid "Self-consistency convergence: "
msgstr ""
#. run command and location of POTCAR files:
#: ../calculator.py:1724
msgid "VASP execution command: "
msgstr ""
#: ../calculator.py:1738
msgid "Import VASP files"
msgstr ""
#: ../calculator.py:1740
msgid "Export VASP files"
msgstr ""
#: ../calculator.py:1947
msgid "<b>WARNING:</b> cutoff energy is lower than recommended minimum!"
msgstr ""
#: ../calculator.py:1999
msgid "Import VASP input files: choose directory ... "
msgstr ""
#: ../calculator.py:2013
msgid "Export VASP input files: choose directory ... "
msgstr ""
#: ../calculator.py:2046
#, python-format
msgid ""
"Don't know this keyword: %s\n"
"Please check!\n"
"\n"
"If you really think it should be available, please add it to the top of ase/"
"calculators/vasp.py."
msgstr ""
#: ../colors.py:27
msgid "Colors"
msgstr ""
#. Upper left: Choose how the atoms are colored.
#: ../colors.py:44
msgid "Choose how the atoms are colored:"
msgstr ""
#: ../colors.py:46
msgid "By atomic number, default \"jmol\" colors"
msgstr ""
#: ../colors.py:48
msgid "By atomic number, user specified"
msgstr ""
#: ../colors.py:49
msgid "By tag"
msgstr ""
#: ../colors.py:50
msgid "By force"
msgstr ""
#: ../colors.py:51
msgid "By velocity"
msgstr ""
#: ../colors.py:52
msgid "By charge"
msgstr ""
#: ../colors.py:54
msgid "By magnetic moment"
msgstr ""
#: ../colors.py:56
msgid "By coordination"
msgstr ""
#: ../colors.py:57
msgid "Manually specified"
msgstr ""
#: ../colors.py:58
msgid "All the same color"
msgstr ""
#. Now fill in the box for additional information in case the force is used.
#: ../colors.py:75
msgid "This should not be displayed in forces!"
msgstr ""
#: ../colors.py:80 ../colors.py:94 ../colors.py:109 ../colors.py:125
#: ../rotate.py:24
msgid "Update"
msgstr ""
#: ../colors.py:82 ../colors.py:96 ../colors.py:111 ../colors.py:128
msgid "Min: "
msgstr ""
#: ../colors.py:84 ../colors.py:98 ../colors.py:113 ../colors.py:130
msgid " Max: "
msgstr ""
#: ../colors.py:86 ../colors.py:100 ../colors.py:115 ../colors.py:132
msgid " Steps: "
msgstr ""
#. Now fill in the box for additional information in case
#. the charge is used.
#: ../colors.py:107 ../colors.py:123
msgid "This should not be displayed!"
msgstr ""
#: ../colors.py:139
msgid "Create a color scale:"
msgstr ""
#: ../colors.py:142
msgid "Black - white"
msgstr ""
#: ../colors.py:143
msgid "Black - red - yellow - white"
msgstr ""
#: ../colors.py:144
msgid "Black - green - white"
msgstr ""
#: ../colors.py:145
msgid "Black - blue - cyan"
msgstr ""
#: ../colors.py:146
msgid "Blue - white - red"
msgstr ""
#: ../colors.py:147
msgid "Hue"
msgstr ""
#: ../colors.py:148
msgid "Named colors"
msgstr ""
#: ../colors.py:154
msgid "Create"
msgstr ""
#: ../colors.py:518
msgid "ERROR"
msgstr ""
#: ../colors.py:547
msgid "ERR"
msgstr ""
#: ../colors.py:639
msgid "Incorrect color specification"
msgstr ""
#: ../constraints.py:10 ../widgets.py:96
msgid "Constraints"
msgstr ""
#: ../constraints.py:12 ../constraints.py:15 ../settings.py:16
#: ../widgets.py:98 ../widgets.py:101
msgid "Constrain"
msgstr ""
#: ../constraints.py:13 ../settings.py:19 ../settings.py:34 ../widgets.py:99
msgid " selected atoms"
msgstr ""
#: ../constraints.py:16 ../widgets.py:102
msgid " immobile atoms:"
msgstr ""
#: ../constraints.py:18
msgid "Unconstrain"
msgstr ""
#: ../constraints.py:19
msgid " selected atoms:"
msgstr ""
#: ../constraints.py:21
msgid "Clear constraints"
msgstr ""
#: ../constraints.py:23 ../settings.py:52 ../widgets.py:65 ../widgets.py:106
msgid "Close"
msgstr ""
#: ../crystal.py:16
msgid ""
" Use this dialog to create crystal lattices. First select the structure,\n"
" either from a set of common crystal structures, or by space group "
"description.\n"
" Then add all other lattice parameters.\n"
"\n"
" If an experimental crystal structure is available for an atom, you can\n"
" look up the crystal type and lattice constant, otherwise you have to "
"specify it\n"
" yourself. "
msgstr ""
#: ../crystal.py:33 ../graphene.py:26
#, python-format
msgid " %(natoms)i atoms: %(symbols)s, Volume: %(volume).3f A<sup>3</sup>"
msgstr ""
#: ../crystal.py:58
msgid "Create Bulk Crystal by Spacegroup"
msgstr ""
#: ../crystal.py:72
msgid "Number: 1"
msgstr ""
#: ../crystal.py:73
msgid "Lattice: "
msgstr ""
#: ../crystal.py:73
msgid "\tSpace group: "
msgstr ""
#: ../crystal.py:77
msgid "Size: x: "
msgstr ""
#: ../crystal.py:78 ../crystal.py:138
msgid " y: "
msgstr ""
#: ../crystal.py:79 ../crystal.py:139
msgid " z: "
msgstr ""
#: ../crystal.py:80 ../surfaceslab.py:128 ../surfaceslab.py:130
msgid " unit cells"
msgstr ""
#: ../crystal.py:92 ../crystal.py:96 ../crystal.py:100 ../crystal.py:104
#: ../crystal.py:108 ../crystal.py:112
msgid "free"
msgstr ""
#: ../crystal.py:93 ../crystal.py:102
msgid "equals b"
msgstr ""
#: ../crystal.py:94 ../crystal.py:98
msgid "equals c"
msgstr ""
#: ../crystal.py:95 ../crystal.py:99 ../crystal.py:103 ../crystal.py:107
#: ../crystal.py:111 ../crystal.py:115
msgid "fixed"
msgstr ""
#: ../crystal.py:97 ../crystal.py:101
msgid "equals a"
msgstr ""
#: ../crystal.py:105 ../crystal.py:114
msgid "equals beta"
msgstr ""
#: ../crystal.py:106 ../crystal.py:110
msgid "equals gamma"
msgstr ""
#: ../crystal.py:109 ../crystal.py:113
msgid "equals alpha"
msgstr ""
#: ../crystal.py:119
msgid "Lattice parameters"
msgstr ""
#: ../crystal.py:120
msgid "\t\ta:\t"
msgstr ""
#: ../crystal.py:121
msgid "\talpha:\t"
msgstr ""
#: ../crystal.py:122
msgid "\t\tb:\t"
msgstr ""
#: ../crystal.py:123
msgid "\tbeta:\t"
msgstr ""
#: ../crystal.py:124
msgid "\t\tc:\t"
msgstr ""
#: ../crystal.py:125
msgid "\tgamma:\t"
msgstr ""
#: ../crystal.py:126 ../surfaceslab.py:99
msgid "Get from database"
msgstr ""
#: ../crystal.py:131
msgid "Basis: "
msgstr ""
#: ../crystal.py:137
msgid " Element:\t"
msgstr ""
#: ../crystal.py:137
msgid "\tx: "
msgstr ""
#: ../crystal.py:157
msgid "Creating a crystal."
msgstr ""
#: ../crystal.py:202
#, python-format
msgid "Symbol: %s"
msgstr ""
#: ../crystal.py:207
#, python-format
msgid "Number: %s"
msgstr ""
#: ../crystal.py:210
msgid "Invalid Spacegroup!"
msgstr ""
#: ../crystal.py:336 ../crystal.py:339
msgid "Please specify a consistent set of atoms."
msgstr ""
#: ../crystal.py:348 ../graphene.py:253 ../nanoparticle.py:614
#: ../nanotube.py:160 ../surfaceslab.py:250
msgid "No valid atoms."
msgstr ""
#: ../crystal.py:349 ../graphene.py:254 ../nanoparticle.py:615
#: ../nanotube.py:161 ../pybutton.py:49 ../surfaceslab.py:251
msgid "You have not (yet) specified a consistent set of parameters."
msgstr ""
#: ../crystal.py:465
msgid "Can't find lattice definition!"
msgstr ""
#: ../debug.py:12
msgid "Debug"
msgstr ""
#: ../energyforces.py:12
msgid "Output:"
msgstr ""
#: ../energyforces.py:41
msgid "Save output"
msgstr ""
#: ../energyforces.py:58
msgid "Potential energy and forces"
msgstr ""
#: ../energyforces.py:62
msgid "Calculate potential energy and the force on all atoms"
msgstr ""
#: ../energyforces.py:66
msgid "Write forces on the atoms"
msgstr ""
#: ../energyforces.py:83
msgid "Potential Energy:\n"
msgstr ""
#: ../energyforces.py:84
#, python-format
msgid " %8.2f eV\n"
msgstr ""
#: ../energyforces.py:85
#, python-format
msgid ""
" %8.4f eV/atom\n"
"\n"
msgstr ""
#: ../energyforces.py:87
msgid "Forces:\n"
msgstr ""
#: ../execute.py:24
msgid ""
"\n"
" Global commands work on all frames or only on the current frame\n"
" - Assignment of a global variable may not reference a local one\n"
" - use 'Current frame' switch to switch off application to all frames\n"
" <c>e</c>:\t\ttotal energy of one frame\n"
" <c>fmax</c>:\tmaximal force in one frame\n"
" <c>A</c>:\tunit cell\n"
" <c>E</c>:\t\ttotal energy array of all frames\n"
" <c>F</c>:\t\tall forces in one frame\n"
" <c>M</c>:\tall magnetic moments\n"
" <c>R</c>:\t\tall atomic positions\n"
" <c>S</c>:\tall selected atoms (boolean array)\n"
" <c>D</c>:\tall dynamic atoms (boolean array)\n"
" examples: <c>frame = 1</c>, <c>A[0][1] += 4</c>, <c>e-E[-1]</c>\n"
"\n"
" Atom commands work on each atom (or a selection) individually\n"
" - these can use global commands on the RHS of an equation\n"
" - use 'selected atoms only' to restrict application of command\n"
" <c>x,y,z</c>:\tatomic coordinates\n"
" <c>r,g,b</c>:\tatom display color, range is [0..1]\n"
" <c>rad</c>:\tatomic radius for display\n"
" <c>s</c>:\t\tatom is selected\n"
" <c>d</c>:\t\tatom is movable\n"
" <c>f</c>:\t\tforce\n"
" <c>Z</c>:\tatomic number\n"
" <c>m</c>:\tmagnetic moment\n"
" examples: <c>x -= A[0][0], s = z > 5, Z = 6</c>\n"
"\n"
" Special commands and objects:\n"
" <c>sa,cf</c>:\t(un)restrict to selected atoms/current frame\n"
" <c>frame</c>:\tframe number\n"
" <c>center</c>:\tcenters the system in its existing unit cell\n"
" <c>del S</c>:\tdelete selection\n"
" <c>CM</c>:\tcenter of mass\n"
" <c>ans[-i]</c>:\tith last calculated result\n"
" <c>exec file</c>: executes commands listed in file\n"
" <c>cov[Z]</c>:(read only): covalent radius of atomic number Z\n"
" <c>gui</c>:\tadvanced: ase-gui window python object\n"
" <c>img</c>:\tadvanced: ase-gui images object\n"
" "
msgstr ""
#: ../execute.py:68
msgid "Expert user mode"
msgstr ""
#: ../execute.py:81
msgid "Welcome to the ASE Expert user mode"
msgstr ""
#: ../execute.py:88
msgid "Only selected atoms (sa) "
msgstr ""
#: ../execute.py:90
msgid "Only current frame (cf) "
msgstr ""
#: ../execute.py:100
msgid ""
"Global: Use A, D, E, M, N, R, S, n, frame; Atoms: Use a, f, m, s, x, y, z, "
"Z "
msgstr ""
#: ../execute.py:199
#, python-format
msgid "*** WARNING: file does not exist - %s"
msgstr ""
#: ../execute.py:204
msgid "*** WARNING: No atoms selected to work with"
msgstr ""
#: ../execute.py:278
msgid "*** Only working on selected atoms"
msgstr ""
#: ../execute.py:280
msgid "*** Working on all atoms"
msgstr ""
#: ../execute.py:284
msgid "*** Only working on current image"
msgstr ""
#: ../execute.py:286
msgid "*** Working on all images"
msgstr ""
#: ../execute.py:302
msgid "Save Terminal text ..."
msgstr ""
#: ../graphene.py:15
msgid ""
"Set up a graphene sheet or a graphene nanoribbon. A nanoribbon may\n"
"optionally be saturated with hydrogen (or another element)."
msgstr ""
#: ../graphene.py:32 ../gui.py:290
msgid "Graphene"
msgstr ""
#. Choose structure
#. The structure and lattice constant
#. Choose the surface structure
#: ../graphene.py:39 ../nanoparticle.py:139 ../surfaceslab.py:78
msgid "Structure: "
msgstr ""
#: ../graphene.py:41
msgid "Infinite sheet"
msgstr ""
#: ../graphene.py:41
msgid "Unsaturated ribbon"
msgstr ""
#: ../graphene.py:42
msgid "Saturated ribbon"
msgstr ""
#. Orientation
#: ../graphene.py:49
msgid "Orientation: "
msgstr ""
#: ../graphene.py:52
msgid "zigzag"
msgstr ""
#: ../graphene.py:52
msgid "armchair"
msgstr ""
#: ../graphene.py:65 ../graphene.py:76 ../nanotube.py:48
msgid " Bond length: "
msgstr ""
#. Choose the saturation element and bond length
#: ../graphene.py:71
msgid "Saturation: "
msgstr ""
#: ../graphene.py:74
msgid "H"
msgstr ""
#. Size
#: ../graphene.py:89
msgid "Width: "
msgstr ""
#: ../graphene.py:90 ../nanotube.py:67
msgid " Length: "
msgstr ""
#. Vacuum
#: ../graphene.py:98
msgid "Vacuum: "
msgstr ""
#: ../graphene.py:147 ../nanotube.py:107 ../setupwindow.py:33
msgid " No element specified!"
msgstr ""
#: ../graphene.py:193
msgid "Please specify a consistent set of atoms. "
msgstr ""
#: ../graphs.py:9
msgid ""
"Help for plot ...\n"
"\n"
"Symbols:\n"
"<c>e</c>:\t\t\t\ttotal energy\n"
"<c>epot</c>:\t\t\tpotential energy\n"
"<c>ekin</c>:\t\t\tkinetic energy\n"
"<c>fmax</c>:\t\t\tmaximum force\n"
"<c>fave</c>:\t\t\taverage force\n"
"<c>R[n,0-2]</c>:\t\t\tposition of atom number <c>n</c>\n"
"<c>d(n<sub>1</sub>,n<sub>2</sub>)</c>:\t\t\tdistance between two atoms "
"<c>n<sub>1</sub></c> and <c>n<sub>2</sub></c>\n"
"<c>i</c>:\t\t\t\tcurrent image number\n"
"<c>E[i]</c>:\t\t\t\tenergy of image number <c>i</c>\n"
"<c>F[n,0-2]</c>:\t\t\tforce on atom number <c>n</c>\n"
"<c>V[n,0-2]</c>:\t\t\tvelocity of atom number <c>n</c>\n"
"<c>M[n]</c>:\t\t\tmagnetic moment of atom number <c>n</c>\n"
"<c>A[0-2,0-2]</c>:\t\tunit-cell basis vectors\n"
"<c>s</c>:\t\t\t\tpath length\n"
"<c>a(n1,n2,n3)</c>:\t\tangle between atoms <c>n<sub>1</sub></c>, <c>n<sub>2</"
"sub></c> and <c>n<sub>3</sub></c>, centered on <c>n<sub>2</sub></c>\n"
"<c>dih(n1,n2,n3,n4)</c>:\tdihedral angle between <c>n<sub>1</sub></c>, "
"<c>n<sub>2</sub></c>, <c>n<sub>3</sub></c> and <c>n<sub>4</sub></c>\n"
"<c>T</c>:\t\t\t\ttemperature (K)"
msgstr ""
#: ../graphs.py:50 ../graphs.py:53
msgid "Plot"
msgstr ""
#: ../graphs.py:58
msgid "clear"
msgstr ""
#: ../graphs.py:88
msgid "Save data to file ... "
msgstr ""
#: ../gtkexcepthook.py:118
msgid "Bug Detected"
msgstr ""
#: ../gtkexcepthook.py:122
msgid "A programming error has been detected."
msgstr ""
#: ../gtkexcepthook.py:125
msgid ""
"It probably isn't fatal, but the details should be reported to the "
"developers nonetheless."
msgstr ""
#: ../gtkexcepthook.py:141
msgid "Report..."
msgstr ""
#: ../gtkexcepthook.py:145
msgid "Details..."
msgstr ""
#: ../gtkexcepthook.py:161
#, python-format
msgid ""
"From: buggy_application\"\n"
"To: bad_programmer\n"
"Subject: Exception feedback\n"
"\n"
"%s"
msgstr ""
#. Show details...
#: ../gtkexcepthook.py:174
msgid "Bug Details"
msgstr ""
#: ../gui.py:189
msgid "_File"
msgstr ""
#: ../gui.py:190
msgid "_Edit"
msgstr ""
#: ../gui.py:191
msgid "_View"
msgstr ""
#: ../gui.py:192
msgid "_Tools"
msgstr ""
#. TRANSLATORS: Set up (i.e. build) surfaces, nanoparticles, ...
#: ../gui.py:194
msgid "_Setup"
msgstr ""
#: ../gui.py:195
msgid "_Calculate"
msgstr ""
#: ../gui.py:196
msgid "_Help"
msgstr ""
#: ../gui.py:197
msgid "_Open"
msgstr ""
#: ../gui.py:198
msgid "Create a new file"
msgstr ""
#: ../gui.py:199
msgid "_New"
msgstr ""
#: ../gui.py:200
msgid "New ase.gui window"
msgstr ""
#: ../gui.py:201
msgid "_Save"
msgstr ""
#: ../gui.py:202
msgid "Save current file"
msgstr ""
#: ../gui.py:203
msgid "_Quit"
msgstr ""
#: ../gui.py:203
msgid "Quit"
msgstr ""
#: ../gui.py:205
msgid "Select _all"
msgstr ""
#: ../gui.py:206
msgid "_Invert selection"
msgstr ""
#: ../gui.py:208
msgid "Select _constrained atoms"
msgstr ""
#: ../gui.py:210
msgid "Select _immobile atoms"
msgstr ""
#: ../gui.py:212
msgid "_Copy"
msgstr ""
#: ../gui.py:213
msgid "Copy current selection and its orientation to clipboard"
msgstr ""
#: ../gui.py:215
msgid "_Paste"
msgstr ""
#: ../gui.py:216
msgid "Insert current clipboard selection"
msgstr ""
#: ../gui.py:217
msgid "_Modify"
msgstr ""
#: ../gui.py:218
msgid "Change tags, moments and atom types of the selected atoms"
msgstr ""
#: ../gui.py:220
msgid "_Add atoms"
msgstr ""
#: ../gui.py:221
msgid "Insert or import atoms and molecules"
msgstr ""
#: ../gui.py:222
msgid "_Delete selected atoms"
msgstr ""
#: ../gui.py:223
msgid "Delete the selected atoms"
msgstr ""
#: ../gui.py:224
msgid "_First image"
msgstr ""
#: ../gui.py:226
msgid "_Previous image"
msgstr ""
#: ../gui.py:228
msgid "_Next image"
msgstr ""
#: ../gui.py:230
msgid "_Last image"
msgstr ""
#: ../gui.py:232
msgid "Show _Labels"
msgstr ""
#: ../gui.py:233
msgid "Hide selected atoms"
msgstr ""
#: ../gui.py:235
msgid "Show selected atoms"
msgstr ""
#: ../gui.py:237
msgid "Quick Info ..."
msgstr ""
#: ../gui.py:239
msgid "Repeat ..."
msgstr ""
#: ../gui.py:240
msgid "Rotate ..."
msgstr ""
#: ../gui.py:241
msgid "Colors ..."
msgstr ""
#. TRANSLATORS: verb
#: ../gui.py:243
msgid "Focus"
msgstr ""
#: ../gui.py:244
msgid "Zoom in"
msgstr ""
#: ../gui.py:245
msgid "Zoom out"
msgstr ""
#: ../gui.py:247
msgid "Change View"
msgstr ""
#: ../gui.py:248
msgid "Reset View"
msgstr ""
#: ../gui.py:249
msgid "'xy' Plane"
msgstr ""
#: ../gui.py:250
msgid "'yz' Plane"
msgstr ""
#: ../gui.py:251
msgid "'zx' Plane"
msgstr ""
#: ../gui.py:252
msgid "'yx' Plane"
msgstr ""
#: ../gui.py:253
msgid "'zy' Plane"
msgstr ""
#: ../gui.py:254
msgid "'xz' Plane"
msgstr ""
#: ../gui.py:255
msgid "'a2 a3' Plane"
msgstr ""
#: ../gui.py:256
msgid "'a3 a1' Plane"
msgstr ""
#: ../gui.py:257
msgid "'a1 a2' Plane"
msgstr ""
#: ../gui.py:258
msgid "'a3 a2' Plane"
msgstr ""
#: ../gui.py:260
msgid "'a1 a3' Plane"
msgstr ""
#: ../gui.py:262
msgid "'a2 a1' Plane"
msgstr ""
#: ../gui.py:264
msgid "Settings ..."
msgstr ""
#: ../gui.py:266
msgid "VMD"
msgstr ""
#: ../gui.py:267
msgid "RasMol"
msgstr ""
#: ../gui.py:268
msgid "xmakemol"
msgstr ""
#: ../gui.py:269
msgid "avogadro"
msgstr ""
#: ../gui.py:270
msgid "Graphs ..."
msgstr ""
#: ../gui.py:271
msgid "Movie ..."
msgstr ""
#: ../gui.py:272
msgid "Expert mode ..."
msgstr ""
#: ../gui.py:274
msgid "Constraints ..."
msgstr ""
#: ../gui.py:276
msgid "Render scene ..."
msgstr ""
#: ../gui.py:278
msgid "NE_B"
msgstr ""
#: ../gui.py:279
msgid "B_ulk Modulus"
msgstr ""
#: ../gui.py:281
msgid "_Bulk Crystal"
msgstr ""
#: ../gui.py:282
msgid "Create a bulk crystal with arbitrary orientation"
msgstr ""
#: ../gui.py:284
msgid "_Surface slab"
msgstr ""
#: ../gui.py:285
msgid "Create the most common surfaces"
msgstr ""
#: ../gui.py:286
msgid "_Nanoparticle"
msgstr ""
#: ../gui.py:287
msgid "Create a crystalline nanoparticle"
msgstr ""
#: ../gui.py:288
msgid "Nano_tube"
msgstr ""
#: ../gui.py:288
msgid "Create a nanotube"
msgstr ""
#: ../gui.py:291
msgid "Create a graphene sheet or nanoribbon"
msgstr ""
#: ../gui.py:292
msgid "Set _Calculator"
msgstr ""
#: ../gui.py:293
msgid "Set a calculator used in all calculation modules"
msgstr ""
#: ../gui.py:295
msgid "_Energy and Forces"
msgstr ""
#: ../gui.py:296
msgid "Calculate energy and forces"
msgstr ""
#: ../gui.py:297
msgid "Energy _Minimization"
msgstr ""
#: ../gui.py:298
msgid "Minimize the energy"
msgstr ""
#: ../gui.py:299
msgid "Scale system"
msgstr ""
#: ../gui.py:300
msgid "Deform system by scaling it"
msgstr ""
#: ../gui.py:301
msgid "_About"
msgstr ""
#: ../gui.py:302
msgid "Webpage ..."
msgstr ""
#: ../gui.py:303
msgid "Debug ..."
msgstr ""
#: ../gui.py:306
msgid "Show _unit cell"
msgstr ""
#: ../gui.py:308
msgid "Show _axes"
msgstr ""
#: ../gui.py:310
msgid "Show _bonds"
msgstr ""
#: ../gui.py:312
msgid "Show _velocities"
msgstr ""
#: ../gui.py:314
msgid "Show _forces"
msgstr ""
#: ../gui.py:317
msgid "_Move atoms"
msgstr ""
#: ../gui.py:319
msgid "_Rotate atoms"
msgstr ""
#: ../gui.py:321
msgid "Orien_t atoms"
msgstr ""
#: ../gui.py:326
msgid "_None"
msgstr ""
#: ../gui.py:327
msgid "Atom _Index"
msgstr ""
#: ../gui.py:328
msgid "_Magnetic Moments"
msgstr ""
#: ../gui.py:329
msgid "_Element Symbol"
msgstr ""
#: ../gui.py:611 ../gui.py:1029 ../gui.py:1064
msgid "Open ..."
msgstr ""
#: ../gui.py:615 ../gui.py:1032
msgid "<<filename>>"
msgstr ""
#: ../gui.py:750
msgid "Add atoms"
msgstr ""
#: ../gui.py:753
msgid "Paste"
msgstr ""
#: ../gui.py:759
msgid "Insert atom or molecule"
msgstr ""
#: ../gui.py:760 ../gui.py:882
msgid "Tag"
msgstr ""
#: ../gui.py:760 ../gui.py:883
msgid "Moment"
msgstr ""
#: ../gui.py:760
msgid "Position"
msgstr ""
#: ../gui.py:786
msgid "_Load molecule"
msgstr ""
#: ../gui.py:790 ../gui.py:898
msgid "_OK"
msgstr ""
#: ../gui.py:794 ../gui.py:902
msgid "_Cancel"
msgstr ""
#: ../gui.py:876
msgid "Modify"
msgstr ""
#: ../gui.py:882
msgid "Atom"
msgstr ""
#: ../gui.py:926
msgid "Confirmation"
msgstr ""
#: ../gui.py:930
msgid "Delete selected atom?"
msgid_plural "Delete selected atoms?"
msgstr[0] ""
msgstr[1] ""
#: ../gui.py:937
msgid "Cancel"
msgstr ""
#: ../gui.py:1017
msgid "Automatic"
msgstr ""
#: ../gui.py:1043
msgid "File type:"
msgstr ""
#: ../gui.py:1164
msgid "Not implemented!"
msgstr ""
#: ../gui.py:1165
msgid "do you really need it?"
msgstr ""
#: ../minimize.py:24
msgid "Algorithm: "
msgstr ""
#: ../minimize.py:29 ../progress.py:70
msgid "Convergence criterion: F<sub>max</sub> = "
msgstr ""
#: ../minimize.py:34 ../progress.py:73
msgid "Max. number of steps: "
msgstr ""
#. Special stuff for MDMin
#: ../minimize.py:37
msgid "Pseudo time step: "
msgstr ""
#: ../minimize.py:59
msgid "Energy minimization"
msgstr ""
#: ../minimize.py:63
msgid "Minimize the energy with respect to the positions."
msgstr ""
#. Don't catch errors in the function.
#. Display status message
#: ../minimize.py:95 ../scaling.py:301
msgid "Running ..."
msgstr ""
#. Update display to reflect cancellation of simulation.
#: ../minimize.py:112
#, python-format
msgid "Minimization CANCELLED after %i steps."
msgstr ""
#: ../minimize.py:118 ../scaling.py:352
msgid "Out of memory, consider using LBFGS instead"
msgstr ""
#. Update display to reflect successful end of simulation.
#: ../minimize.py:125
#, python-format
msgid "Minimization completed in %i steps."
msgstr ""
#: ../movie.py:15
msgid "Movie"
msgstr ""
#: ../movie.py:17
msgid "Image number:"
msgstr ""
#: ../movie.py:39
msgid "Play"
msgstr ""
#: ../movie.py:41
msgid "Stop"
msgstr ""
#. TRANSLATORS: This function plays an animation forwards and backwards
#. alternatingly, e.g. for displaying vibrational movement
#: ../movie.py:45
msgid "Rock"
msgstr ""
#: ../movie.py:62
msgid " Frame rate: "
msgstr ""
#: ../movie.py:63
msgid " Skip frames: "
msgstr ""
#: ../nanoparticle.py:20
msgid ""
"Create a nanoparticle either by specifying the number of layers, or using "
"the\n"
"Wulff construction. Please press the [Help] button for instructions on how "
"to\n"
"specify the directions.\n"
"WARNING: The Wulff construction currently only works with cubic crystals!\n"
msgstr ""
#: ../nanoparticle.py:27
#, python-brace-format
msgid ""
"\n"
"The nanoparticle module sets up a nano-particle or a cluster with a given\n"
"crystal structure.\n"
"\n"
"1) Select the element, the crystal structure and the lattice constant(s).\n"
" The [Get structure] button will find the data for a given element.\n"
"\n"
"2) Choose if you want to specify the number of layers in each direction, or "
"if\n"
" you want to use the Wulff construction. In the latter case, you must "
"specify\n"
" surface energies in each direction, and the size of the cluster.\n"
"\n"
"How to specify the directions:\n"
"------------------------------\n"
"\n"
"First time a direction appears, it is interpreted as the entire family of\n"
"directions, i.e. (0,0,1) also covers (1,0,0), (-1,0,0) etc. If one of "
"these\n"
"directions is specified again, the second specification overrules that "
"specific\n"
"direction. For this reason, the order matters and you can rearrange the\n"
"directions with the [Up] and [Down] keys. You can also add a new "
"direction,\n"
"remember to press [Add] or it will not be included.\n"
"\n"
"Example: (1,0,0) (1,1,1), (0,0,1) would specify the {100} family of "
"directions,\n"
"the {111} family and then the (001) direction, overruling the value given "
"for\n"
"the whole family of directions.\n"
msgstr ""
#. Structures: Abbreviation, name, 4-index (boolean), two lattice const (bool), factory
#: ../nanoparticle.py:84
msgid "Face centered cubic (fcc)"
msgstr ""
#: ../nanoparticle.py:85
msgid "Body centered cubic (bcc)"
msgstr ""
#: ../nanoparticle.py:86
msgid "Simple cubic (sc)"
msgstr ""
#: ../nanoparticle.py:87
msgid "Hexagonal closed-packed (hcp)"
msgstr ""
#: ../nanoparticle.py:88
msgid "Graphite"
msgstr ""
#: ../nanoparticle.py:117
msgid "Nanoparticle"
msgstr ""
#. Choose the element
#. Choose the element and bond length
#. Choose the element
#: ../nanoparticle.py:127 ../nanotube.py:42 ../surfaceslab.py:69
msgid "Element: "
msgstr ""
#: ../nanoparticle.py:131
msgid "Get structure"
msgstr ""
#: ../nanoparticle.py:155
msgid "Lattice constant: a ="
msgstr ""
#. Choose specification method
#: ../nanoparticle.py:172
msgid "Method: "
msgstr ""
#: ../nanoparticle.py:174
msgid "Layer specification"
msgstr ""
#: ../nanoparticle.py:174
msgid "Wulff construction"
msgstr ""
#: ../nanoparticle.py:194
msgid "Dummy placeholder object"
msgstr ""
#: ../nanoparticle.py:196
msgid "Add new direction:"
msgstr ""
#: ../nanoparticle.py:212
msgid "Add"
msgstr ""
#: ../nanoparticle.py:220
msgid "Set all directions to default values"
msgstr ""
#: ../nanoparticle.py:228
msgid "Particle size: "
msgstr ""
#: ../nanoparticle.py:229 ../nanoparticle.py:266 ../progress.py:199
msgid "Number of atoms: "
msgstr ""
#: ../nanoparticle.py:234
msgid "Volume: "
msgstr ""
#: ../nanoparticle.py:239
msgid "ų"
msgstr ""
#: ../nanoparticle.py:244
msgid "Rounding: If exact size is not possible, choose the size"
msgstr ""
#: ../nanoparticle.py:247
msgid "above "
msgstr ""
#: ../nanoparticle.py:248
msgid "below "
msgstr ""
#: ../nanoparticle.py:249
msgid "closest "
msgstr ""
#: ../nanoparticle.py:252
msgid "Smaller"
msgstr ""
#: ../nanoparticle.py:253
msgid "Larger"
msgstr ""
#: ../nanoparticle.py:268
msgid " Approx. diameter: "
msgstr ""
#: ../nanoparticle.py:272
msgid "Information about the created cluster:"
msgstr ""
#. Buttons
#: ../nanoparticle.py:278 ../nanotube.py:81
msgid "Creating a nanoparticle."
msgstr ""
#: ../nanoparticle.py:285
msgid "Automatic Apply"
msgstr ""
#: ../nanoparticle.py:333
msgid "Up"
msgstr ""
#: ../nanoparticle.py:338
msgid "Down"
msgstr ""
#: ../nanoparticle.py:343
msgid "Delete"
msgstr ""
#: ../nanoparticle.py:384
msgid "Surface energies (as energy/area, NOT per atom):"
msgstr ""
#: ../nanoparticle.py:390
msgid "Number of layers:"
msgstr ""
#: ../nanoparticle.py:419
msgid "At least one index must be non-zero"
msgstr ""
#: ../nanoparticle.py:422
msgid "Invalid hexagonal indices"
msgstr ""
#: ../nanoparticle.py:477 ../surfaceslab.py:220
msgid "Invalid element."
msgstr ""
#: ../nanoparticle.py:487
msgid "Unsupported or unknown structure"
msgstr ""
#: ../nanoparticle.py:604
#, python-format
msgid "%.1f Å"
msgstr ""
#: ../nanotube.py:15
msgid ""
"Set up a Carbon nanotube by specifying the (n,m) roll-up vector.\n"
"Please note that m <= n.\n"
"\n"
"Nanotubes of other elements can be made by specifying the element\n"
"and bond length."
msgstr ""
#: ../nanotube.py:29
#, python-format
msgid ""
" %(natoms)i atoms: %(symbols)s, diameter: %(diameter).3f Å, cell volume: "
"%(volume).3f Å<sup>3</sup>"
msgstr ""
#: ../nanotube.py:35
msgid "Nanotube"
msgstr ""
#. Choose the structure.
#: ../nanotube.py:59
msgid "Select roll-up vector (n,m) and tube length:"
msgstr ""
#: ../progress.py:28
msgid "Progress"
msgstr ""
#: ../progress.py:35
msgid "Scaling deformation:"
msgstr ""
#: ../progress.py:41
#, python-format
msgid "Step number %s of %s."
msgstr ""
#. Minimization progress frame
#. Box containing frame and spacing
#: ../progress.py:56
msgid "Energy minimization:"
msgstr ""
#: ../progress.py:63
msgid "Step number: "
msgstr ""
#: ../progress.py:65
msgid "F<sub>max</sub>: "
msgstr ""
#: ../progress.py:105
msgid "unknown"
msgstr ""
#: ../progress.py:182
msgid "Status: "
msgstr ""
#: ../progress.py:184
msgid "Iteration: "
msgstr ""
#: ../progress.py:187
msgid "log<sub>10</sub>(change):"
msgstr ""
#: ../progress.py:190
msgid "Wave functions: "
msgstr ""
#: ../progress.py:192
msgid "Density: "
msgstr ""
#: ../progress.py:194
msgid "Energy: "
msgstr ""
#: ../progress.py:197
msgid "GPAW version: "
msgstr ""
#: ../progress.py:200
msgid "N/A"
msgstr ""
#: ../progress.py:201
msgid "Memory estimate: "
msgstr ""
#: ../progress.py:236
msgid "No info"
msgstr ""
#: ../progress.py:246
msgid "Initializing"
msgstr ""
#: ../progress.py:247
msgid "Positions:"
msgstr ""
#: ../progress.py:251
msgid "Starting calculation"
msgstr ""
#: ../progress.py:288
msgid "unchanged"
msgstr ""
#: ../progress.py:298
msgid "Self-consistency loop"
msgstr ""
#: ../progress.py:303
msgid "Calculating forces"
msgstr ""
#: ../progress.py:304
msgid " (converged)"
msgstr ""
#: ../pybutton.py:37
msgid "Python"
msgstr ""
#: ../pybutton.py:48
msgid "No Python code"
msgstr ""
#: ../pybutton.py:52
#, python-format
msgid ""
"\n"
"Title: %(title)s\n"
"Time: %(time)s\n"
msgstr ""
#: ../pybutton.py:61
msgid "ag: Python code"
msgstr ""
#: ../pybutton.py:65
msgid "Information:"
msgstr ""
#: ../pybutton.py:72
msgid "Python code:"
msgstr ""
#: ../quickinfo.py:9
msgid "Single image loaded."
msgstr ""
#: ../quickinfo.py:10
#, python-format
msgid "Image %d loaded (0 - %d)."
msgstr ""
#: ../quickinfo.py:11
msgid "Unit cell is fixed."
msgstr ""
#: ../quickinfo.py:12
msgid "Unit cell varies."
msgstr ""
#: ../quickinfo.py:14
#, python-format
msgid ""
"%s\n"
"\n"
"Number of atoms: %d.\n"
"\n"
"Unit cell:\n"
" %8.3f %8.3f %8.3f\n"
" %8.3f %8.3f %8.3f\n"
" %8.3f %8.3f %8.3f\n"
"\n"
"%s\n"
"%s\n"
msgstr ""
#: ../quickinfo.py:31
msgid "Quick Info"
msgstr ""
#: ../quickinfo.py:35
msgid "No atoms loaded."
msgstr ""
#: ../quickinfo.py:56
msgid "no"
msgstr ""
#: ../quickinfo.py:56
msgid "yes"
msgstr ""
#. TRANSLATORS: This has the form Periodic: no, no, yes
#: ../quickinfo.py:60
#, python-format
msgid "Periodic: %s, %s, %s"
msgstr ""
#: ../render.py:15
msgid ""
" Textures can be used to highlight different parts of\n"
" an atomic structure. This window applies the default\n"
" texture to the entire structure and optionally\n"
" applies a different texture to subsets of atoms that\n"
" can be selected using the mouse.\n"
" An alternative selection method is based on a boolean\n"
" expression in the entry box provided, using the\n"
" variables x, y, z, or Z. For example, the expression\n"
" Z == 11 and x > 10 and y > 10\n"
" will mark all sodium atoms with x or coordinates\n"
" larger than 10. In either case, the button labeled\n"
" `Create new texture from selection` will enable\n"
" to change the attributes of the current selection.\n"
" "
msgstr ""
#: ../render.py:33
msgid "Render current view in povray ... "
msgstr ""
#: ../render.py:37
#, python-format
msgid "Rendering %d atoms."
msgstr ""
#: ../render.py:42
msgid "Render constraints"
msgstr ""
#: ../render.py:45
msgid "Width"
msgstr ""
#: ../render.py:46
msgid " Height"
msgstr ""
#: ../render.py:53
msgid "Render unit cell"
msgstr ""
#: ../render.py:62
msgid "Line width"
msgstr ""
#: ../render.py:64
msgid "Angstrom "
msgstr ""
#: ../render.py:74
msgid "Set"
msgstr ""
#: ../render.py:76
msgid "Output basename: "
msgstr ""
#: ../render.py:78
msgid " Filename: "
msgstr ""
#: ../render.py:89
msgid " Default texture for atoms: "
msgstr ""
#: ../render.py:90
msgid " transparency: "
msgstr ""
#: ../render.py:91
msgid "Define atom selection for new texture:"
msgstr ""
#: ../render.py:93
msgid "Select"
msgstr ""
#: ../render.py:97
msgid "Create new texture from selection"
msgstr ""
#: ../render.py:99
msgid "Help on textures"
msgstr ""
#: ../render.py:112
msgid "Camera type: "
msgstr ""
#: ../render.py:113
msgid " Camera distance"
msgstr ""
#: ../render.py:114
msgid "Render current frame"
msgstr ""
#: ../render.py:118
#, python-format
msgid "Render all %d frames"
msgstr ""
#: ../render.py:123
msgid "Transparent background"
msgstr ""
#: ../render.py:126
msgid "Run povray "
msgstr ""
#: ../render.py:129
msgid "Keep povray files "
msgstr ""
#: ../render.py:132
msgid "Show output window"
msgstr ""
#: ../render.py:211
msgid " transparency: "
msgstr ""
#: ../render.py:217
msgid ""
"Can not create new texture! Must have some atoms selected to create a new "
"material!"
msgstr ""
#: ../repeat.py:12
msgid "Repeat"
msgstr ""
#: ../repeat.py:14
msgid "Repeat atoms:"
msgstr ""
#: ../repeat.py:19
msgid "Set unit cell"
msgstr ""
#: ../rotate.py:14
msgid "Rotate"
msgstr ""
#: ../rotate.py:16
msgid "Rotation angles:"
msgstr ""
#: ../rotate.py:26
msgid ""
"Note:\n"
"You can rotate freely\n"
"with the mouse, by holding\n"
"down mouse button 2."
msgstr ""
#: ../save.py:13
msgid "Save ..."
msgstr ""
#: ../save.py:20
msgid ""
"Append name with \"@n\" in order to write image number \"n\" instead of the "
"current image.\n"
"Append \"@start:stop\" or \"@start:stop:step\" if you want to write a range "
"of images.\n"
"You can leave out \"start\" and \"stop\" so that \"name@:\" will give you "
"all images.\n"
"Negative numbers count from the last image (\"name@-1\": last image, "
"\"name@-2:\": last two)."
msgstr ""
#: ../scaling.py:49
msgid "Homogeneous scaling"
msgstr ""
#: ../scaling.py:59
msgid "3D deformation "
msgstr ""
#: ../scaling.py:60
msgid "2D deformation "
msgstr ""
#: ../scaling.py:61
msgid "1D deformation "
msgstr ""
#: ../scaling.py:64
msgid "Bulk"
msgstr ""
#: ../scaling.py:66
msgid "xy-plane"
msgstr ""
#: ../scaling.py:68
msgid "xz-plane"
msgstr ""
#: ../scaling.py:70
msgid "yz-plane"
msgstr ""
#: ../scaling.py:72
msgid "x-axis"
msgstr ""
#: ../scaling.py:74
msgid "y-axis"
msgstr ""
#: ../scaling.py:76
msgid "z-axis"
msgstr ""
#: ../scaling.py:89
msgid "Allow deformation along non-periodic directions."
msgstr ""
#. Parameters for the deformation
#: ../scaling.py:94
msgid "Deformation:"
msgstr ""
#: ../scaling.py:100
msgid "Maximal scale factor: "
msgstr ""
#: ../scaling.py:103
msgid "Scale offset: "
msgstr ""
#: ../scaling.py:106
msgid "Number of steps: "
msgstr ""
#: ../scaling.py:107
msgid "Only positive deformation"
msgstr ""
#. Atomic relaxations
#: ../scaling.py:112
msgid "Atomic relaxations:"
msgstr ""
#: ../scaling.py:116
msgid "On "
msgstr ""
#: ../scaling.py:117
msgid "Off"
msgstr ""
#. Results
#: ../scaling.py:128
msgid "Results:"
msgstr ""
#: ../scaling.py:130
msgid "Keep original configuration"
msgstr ""
#: ../scaling.py:132
msgid "Load optimal configuration"
msgstr ""
#: ../scaling.py:134
msgid "Load all configurations"
msgstr ""
#: ../scaling.py:143
msgid "Strain\t\tEnergy [eV]"
msgstr ""
#: ../scaling.py:144
msgid "Fit:"
msgstr ""
#: ../scaling.py:150
msgid "2nd"
msgstr ""
#: ../scaling.py:151
msgid "3rd"
msgstr ""
#: ../scaling.py:155
msgid "Order of fit: "
msgstr ""
#. Update display to reflect cancellation of simulation.
#: ../scaling.py:348
msgid "Calculation CANCELLED."
msgstr ""
#. Update display to reflect successful end of simulation.
#: ../scaling.py:359
msgid "Calculation completed."
msgstr ""
#: ../scaling.py:382
msgid "No trustworthy minimum: Old configuration kept."
msgstr ""
#: ../scaling.py:422
#, python-format
msgid ""
"Insufficent data for a fit\n"
"(only %i data points)\n"
msgstr ""
#: ../scaling.py:426
msgid ""
"REVERTING TO 2ND ORDER FIT\n"
"(only 3 data points)\n"
"\n"
msgstr ""
#: ../scaling.py:442
msgid "No minimum found!"
msgstr ""
#: ../scaling.py:456
msgid ""
"\n"
"WARNING: Minimum is outside interval\n"
msgstr ""
#: ../scaling.py:457
msgid "It is UNRELIABLE!\n"
msgstr ""
#: ../settings.py:15
msgid "Constraints:"
msgstr ""
#: ../settings.py:18
msgid "release"
msgstr ""
#: ../settings.py:22
msgid "Constrain immobile atoms"
msgstr ""
#: ../settings.py:24
msgid "Clear all constraints"
msgstr ""
#: ../settings.py:30
msgid "Visibility:"
msgstr ""
#: ../settings.py:31
msgid "Hide"
msgstr ""
#: ../settings.py:33
msgid "show"
msgstr ""
#: ../settings.py:37
msgid "View all atoms"
msgstr ""
#: ../settings.py:43
msgid "Miscellaneous:"
msgstr ""
#: ../settings.py:46
msgid "Scale atomic radii:"
msgstr ""
#. A close button
#: ../settings.py:51
msgid "\n"
msgstr ""
#: ../setupwindow.py:52
msgid "No crystal structure data"
msgstr ""
#: ../setupwindow.py:63
msgid " ERROR: Invalid element!"
msgstr ""
#: ../simulation.py:24
msgid " (rerun simulation)"
msgstr ""
#: ../simulation.py:25
msgid " (continue simulation)"
msgstr ""
#: ../simulation.py:27
msgid "Select starting configuration:"
msgstr ""
#: ../simulation.py:32
#, python-format
msgid "There are currently %i configurations loaded."
msgstr ""
#: ../simulation.py:36
msgid "Choose which one to use as the initial configuration"
msgstr ""
#: ../simulation.py:40
#, python-format
msgid "The first configuration %s."
msgstr ""
#: ../simulation.py:43
msgid "Configuration number "
msgstr ""
#: ../simulation.py:49
#, python-format
msgid "The last configuration %s."
msgstr ""
#: ../simulation.py:85
msgid "Run"
msgstr ""
#: ../simulation.py:105
msgid "No calculator: Use Calculate/Set Calculator on the menu."
msgstr ""
#: ../status.py:36 ../status.py:38
msgid "Tip for status box ..."
msgstr ""
#: ../status.py:60
#, python-format
msgid " tag=%(tag)s"
msgstr ""
#. TRANSLATORS: mom refers to magnetic moment
#: ../status.py:63
#, python-brace-format
msgid " mom={0:1.2f}"
msgstr ""
#: ../status.py:66
#, python-brace-format
msgid " q={0:1.2f}"
msgstr ""
#: ../status.py:108
msgid "dihedral"
msgstr ""
#: ../surfaceslab.py:14
msgid ""
" Use this dialog to create surface slabs. Select the element by\n"
"writing the chemical symbol or the atomic number in the box. Then\n"
"select the desired surface structure. Note that some structures can\n"
"be created with an othogonal or a non-orthogonal unit cell, in these\n"
"cases the non-orthogonal unit cell will contain fewer atoms.\n"
"\n"
" If the structure matches the experimental crystal structure, you can\n"
"look up the lattice constant, otherwise you have to specify it\n"
"yourself."
msgstr ""
#. Name, structure, orthogonal, support-nonorthogonal, function
#: ../surfaceslab.py:26
msgid "FCC(100)"
msgstr ""
#: ../surfaceslab.py:26 ../surfaceslab.py:27 ../surfaceslab.py:28
#: ../surfaceslab.py:30
msgid "fcc"
msgstr ""
#: ../surfaceslab.py:27
msgid "FCC(110)"
msgstr ""
#: ../surfaceslab.py:28
msgid "FCC(111) non-orthogonal"
msgstr ""
#: ../surfaceslab.py:30
msgid "FCC(111) orthogonal"
msgstr ""
#: ../surfaceslab.py:31
msgid "BCC(100)"
msgstr ""
#: ../surfaceslab.py:31 ../surfaceslab.py:32 ../surfaceslab.py:34
#: ../surfaceslab.py:35 ../surfaceslab.py:37
msgid "bcc"
msgstr ""
#: ../surfaceslab.py:32
msgid "BCC(110) non-orthogonal"
msgstr ""
#: ../surfaceslab.py:34
msgid "BCC(110) orthogonal"
msgstr ""
#: ../surfaceslab.py:35
msgid "BCC(111) non-orthogonal"
msgstr ""
#: ../surfaceslab.py:37
msgid "BCC(111) orthogonal"
msgstr ""
#: ../surfaceslab.py:38
msgid "HCP(0001) non-orthogonal"
msgstr ""
#: ../surfaceslab.py:38 ../surfaceslab.py:40 ../surfaceslab.py:41
msgid "hcp"
msgstr ""
#: ../surfaceslab.py:40
msgid "HCP(0001) orthogonal"
msgstr ""
#: ../surfaceslab.py:41
msgid "HCP(10-10) orthogonal"
msgstr ""
#: ../surfaceslab.py:43
msgid "DIAMOND(100) orthogonal"
msgstr ""
#: ../surfaceslab.py:43 ../surfaceslab.py:45
msgid "diamond"
msgstr ""
#: ../surfaceslab.py:45
msgid "DIAMOND(111) non-orthogonal"
msgstr ""
#: ../surfaceslab.py:60
msgid "Surface"
msgstr ""
#: ../surfaceslab.py:90
msgid "Lattice constant: "
msgstr ""
#: ../surfaceslab.py:97
msgid "a:"
msgstr ""
#: ../surfaceslab.py:110
#, python-format
msgid "(%.1f %% of ideal)"
msgstr ""
#: ../surfaceslab.py:127
msgid "Size: \tx: "
msgstr ""
#: ../surfaceslab.py:129
msgid "\t\ty: "
msgstr ""
#: ../surfaceslab.py:131
msgid " \t\tz: "
msgstr ""
#: ../surfaceslab.py:132
msgid " layers, "
msgstr ""
#: ../surfaceslab.py:133
msgid " Å vacuum"
msgstr ""
#: ../surfaceslab.py:134
msgid "\t\tNo size information yet."
msgstr ""
#. Buttons
#: ../surfaceslab.py:143
msgid "Creating a surface slab."
msgstr ""
#: ../surfaceslab.py:214
#, python-format
msgid "%i atoms."
msgstr ""
#: ../surfaceslab.py:226
msgid "No structure specified!"
msgstr ""
#: ../surfaceslab.py:235
#, python-format
msgid "%(struct)s lattice constant unknown for %(element)s."
msgstr ""
#: ../widgets.py:58 ../widgets.py:87
msgid "Help"
msgstr ""
#: ../widgets.py:104
msgid "Clear constraint"
msgstr ""
|