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
|
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the nucleus package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: nucleus\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2025-10-11 17: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"
#: data/page.codeberg.lo_vely.Nucleus.desktop.in:2
#: data/page.codeberg.lo_vely.Nucleus.metainfo.xml.in:7 src/window.blp:5
msgid "Nucleus"
msgstr ""
#: data/page.codeberg.lo_vely.Nucleus.desktop.in:8
msgid "periodic;table;elements;chemistry;"
msgstr ""
#: data/page.codeberg.lo_vely.Nucleus.metainfo.xml.in:8
msgid "Browse the chemical elements"
msgstr ""
#: data/page.codeberg.lo_vely.Nucleus.metainfo.xml.in:10
msgid ""
"Nucleus gives you the ability to view the periodic table of the elements, as "
"well as a variety of properties for each element, some with a visual "
"representation. There is also search functionality which gives you the "
"elements in a list for efficient viewing"
msgstr ""
#: data/page.codeberg.lo_vely.Nucleus.metainfo.xml.in:43
msgid ""
"Main page containing the periodic table and a sidebar with element properties"
msgstr ""
#: data/page.codeberg.lo_vely.Nucleus.metainfo.xml.in:47
msgid ""
"Search page containing a list of elements and the sidebar with more "
"properties"
msgstr ""
#. Translators: Replace "translator-credits" with your name/username, and optionally an email or URL.
#: src/main.py:55
msgid "translator-credits"
msgstr ""
#: src/window.blp:73
msgid "Search Elements"
msgstr ""
#: src/window.blp:79
msgid "About Nucleus"
msgstr ""
#: src/window.blp:93
msgid "Search elements"
msgstr ""
#: src/window.blp:164
msgid "Nothing found"
msgstr ""
#: src/window.blp:165
msgid "Try another search"
msgstr ""
#: src/window.blp:189
msgid "Close Details"
msgstr ""
#: src/window.blp:196
msgid "Go to Source"
msgstr ""
#: src/window.blp:217 src/ui/element-info.blp:28
msgid "Atomic Number"
msgstr ""
#: src/window.blp:230
msgid "Symbol"
msgstr ""
#: src/window.blp:238 src/ui/element_info.py:112
msgid "Atomic Mass"
msgstr ""
#: src/ui/electron-shell-dialog.blp:35 src/ui/element-info.blp:129
msgid "Electron Shell"
msgstr ""
#: src/ui/element-info.blp:67
msgid "General Properties"
msgstr ""
#: src/ui/element-info.blp:78
msgid "Group"
msgstr ""
#: src/ui/element-info.blp:83
msgid "Period"
msgstr ""
#: src/ui/element-info.blp:88
msgid "Block"
msgstr ""
#: src/ui/element-info.blp:95
msgid "Physical Properties"
msgstr ""
#: src/ui/element-info.blp:99
msgid "Atomic Properties"
msgstr ""
#: src/ui/element-info.blp:110
msgid "Protons"
msgstr ""
#: src/ui/element-info.blp:116
msgid "Electrons"
msgstr ""
#: src/ui/element-info.blp:122
msgid "Neutrons"
msgstr ""
#: src/ui/element-info.blp:140
msgid "Other Properties"
msgstr ""
#: src/ui/element-info.blp:143
msgid "CPK Color"
msgstr ""
#: src/ui/element_info.py:110
msgid "Summary"
msgstr ""
#: src/ui/element_info.py:111
msgid "Appearance"
msgstr ""
#: src/ui/element_info.py:117
msgid "Phase"
msgstr ""
#: src/ui/element_info.py:118
msgid "Density"
msgstr ""
#: src/ui/element_info.py:119
msgid "Melting Point"
msgstr ""
#: src/ui/element_info.py:120
msgid "Boilling Point"
msgstr ""
#: src/ui/element_info.py:121
msgid "Molar Heat Capacity"
msgstr ""
#: src/ui/element_info.py:124
msgid "years"
msgstr ""
#: src/ui/element_info.py:127
msgid "Half-life"
msgstr ""
#: src/ui/element_info.py:130
msgid "Electron Configuration"
msgstr ""
#: src/ui/element_info.py:131
msgid "Electron Affinity"
msgstr ""
#: src/ui/element_info.py:132
msgid "Pauling Electronegativity"
msgstr ""
#: src/ui/element_info.py:136
msgid "Discovered by"
msgstr ""
#: src/ui/element_info.py:137
msgid "Named by"
msgstr ""
#: src/ui/element_info.py:177 src/periodic_table_data.py:17
#: src/periodic_table_data.py:60 src/periodic_table_data.py:294
#: src/periodic_table_data.py:344 src/periodic_table_data.py:395
#: src/periodic_table_data.py:447 src/periodic_table_data.py:845
#: src/periodic_table_data.py:906 src/periodic_table_data.py:2048
#: src/periodic_table_data.py:3025 src/periodic_table_data.py:4647
msgid "Gas"
msgstr ""
#: src/ui/element_info.py:179 src/periodic_table_data.py:104
#: src/periodic_table_data.py:150 src/periodic_table_data.py:197
#: src/periodic_table_data.py:245 src/periodic_table_data.py:500
#: src/periodic_table_data.py:555 src/periodic_table_data.py:611
#: src/periodic_table_data.py:668 src/periodic_table_data.py:726
#: src/periodic_table_data.py:785 src/periodic_table_data.py:968
#: src/periodic_table_data.py:1032 src/periodic_table_data.py:1097
#: src/periodic_table_data.py:1163 src/periodic_table_data.py:1230
#: src/periodic_table_data.py:1298 src/periodic_table_data.py:1367
#: src/periodic_table_data.py:1437 src/periodic_table_data.py:1508
#: src/periodic_table_data.py:1580 src/periodic_table_data.py:1653
#: src/periodic_table_data.py:1727 src/periodic_table_data.py:1793
#: src/periodic_table_data.py:1842 src/periodic_table_data.py:1892
#: src/periodic_table_data.py:1943 src/periodic_table_data.py:2123
#: src/periodic_table_data.py:2179 src/periodic_table_data.py:2236
#: src/periodic_table_data.py:2294 src/periodic_table_data.py:2346
#: src/periodic_table_data.py:2399 src/periodic_table_data.py:2475
#: src/periodic_table_data.py:2526 src/periodic_table_data.py:2575
#: src/periodic_table_data.py:2624 src/periodic_table_data.py:2672
#: src/periodic_table_data.py:2721 src/periodic_table_data.py:2770
#: src/periodic_table_data.py:2820 src/periodic_table_data.py:2871
#: src/periodic_table_data.py:2923 src/periodic_table_data.py:2976
#: src/periodic_table_data.py:3074 src/periodic_table_data.py:3124
#: src/periodic_table_data.py:3174 src/periodic_table_data.py:3226
#: src/periodic_table_data.py:3279 src/periodic_table_data.py:3331
#: src/periodic_table_data.py:3382 src/periodic_table_data.py:3433
#: src/periodic_table_data.py:3484 src/periodic_table_data.py:3535
#: src/periodic_table_data.py:3586 src/periodic_table_data.py:3637
#: src/periodic_table_data.py:3688 src/periodic_table_data.py:3739
#: src/periodic_table_data.py:3790 src/periodic_table_data.py:3841
#: src/periodic_table_data.py:3892 src/periodic_table_data.py:3944
#: src/periodic_table_data.py:3995 src/periodic_table_data.py:4044
#: src/periodic_table_data.py:4093 src/periodic_table_data.py:4144
#: src/periodic_table_data.py:4193 src/periodic_table_data.py:4242
#: src/periodic_table_data.py:4291 src/periodic_table_data.py:4390
#: src/periodic_table_data.py:4440 src/periodic_table_data.py:4492
#: src/periodic_table_data.py:4545 src/periodic_table_data.py:4596
#: src/periodic_table_data.py:4698 src/periodic_table_data.py:4750
#: src/periodic_table_data.py:4802 src/periodic_table_data.py:4855
#: src/periodic_table_data.py:4909 src/periodic_table_data.py:4960
#: src/periodic_table_data.py:5012 src/periodic_table_data.py:5063
#: src/periodic_table_data.py:5114 src/periodic_table_data.py:5165
#: src/periodic_table_data.py:5216 src/periodic_table_data.py:5267
#: src/periodic_table_data.py:5318 src/periodic_table_data.py:5370
#: src/periodic_table_data.py:5422 src/periodic_table_data.py:5474
#: src/periodic_table_data.py:5526 src/periodic_table_data.py:5578
#: src/periodic_table_data.py:5630 src/periodic_table_data.py:5680
#: src/periodic_table_data.py:5730 src/periodic_table_data.py:5780
#: src/periodic_table_data.py:5830 src/periodic_table_data.py:5880
#: src/periodic_table_data.py:5930 src/periodic_table_data.py:6030
#: src/periodic_table_data.py:6080 src/periodic_table_data.py:6130
#: src/periodic_table_data.py:6180 src/periodic_table_data.py:6230
#: src/periodic_table_data.py:6280 src/periodic_table_data.py:6330
msgid "Solid"
msgstr ""
#: src/ui/element_info.py:181 src/periodic_table_data.py:1995
#: src/periodic_table_data.py:4340 src/periodic_table_data.py:5980
msgid "Liquid"
msgstr ""
#: src/periodic_table_data.py:4
msgid "Hydrogen"
msgstr ""
#: src/periodic_table_data.py:5
msgid "colorless gas"
msgstr ""
#: src/periodic_table_data.py:8 src/periodic_table_data.py:285
#: src/periodic_table_data.py:335 src/periodic_table_data.py:386
#: src/periodic_table_data.py:836 src/periodic_table_data.py:1986
#: src/periodic_table_data.py:2967
msgid "diatomic nonmetal"
msgstr ""
#: src/periodic_table_data.py:18
msgid "https://en.wikipedia.org/wiki/Hydrogen"
msgstr ""
#: src/periodic_table_data.py:22
msgid ""
"Hydrogen is a chemical element with chemical symbol H and atomic number 1. "
"With an atomic weight of 1.00794 u, hydrogen is the lightest element on the "
"periodic table. Its monatomic form (H) is the most abundant chemical "
"substance in the Universe, constituting roughly 75% of all baryonic mass."
msgstr ""
#: src/periodic_table_data.py:47
msgid "Helium"
msgstr ""
#: src/periodic_table_data.py:48
msgid ""
"colorless gas, exhibiting a red-orange glow when placed in a high-voltage "
"electric field"
msgstr ""
#: src/periodic_table_data.py:51 src/periodic_table_data.py:438
#: src/periodic_table_data.py:897 src/periodic_table_data.py:2039
#: src/periodic_table_data.py:3016 src/periodic_table_data.py:4638
msgid "noble gas"
msgstr ""
#: src/periodic_table_data.py:61
msgid "https://en.wikipedia.org/wiki/Helium"
msgstr ""
#: src/periodic_table_data.py:65
msgid ""
"Helium is a chemical element with symbol He and atomic number 2. It is a "
"colorless, odorless, tasteless, non-toxic, inert, monatomic gas that heads "
"the noble gas group in the periodic table. Its boiling and melting points "
"are the lowest among all the elements."
msgstr ""
#: src/periodic_table_data.py:91
msgid "Lithium"
msgstr ""
#: src/periodic_table_data.py:92
msgid "silvery-white"
msgstr ""
#: src/periodic_table_data.py:95 src/periodic_table_data.py:491
#: src/periodic_table_data.py:959 src/periodic_table_data.py:2114
#: src/periodic_table_data.py:3065 src/periodic_table_data.py:4689
msgid "alkali metal"
msgstr ""
#: src/periodic_table_data.py:105
msgid "https://en.wikipedia.org/wiki/Lithium"
msgstr ""
#: src/periodic_table_data.py:109
msgid ""
"Lithium (from Greek:λίθος lithos, \"stone\") is a chemical element with the "
"symbol Li and atomic number 3. It is a soft, silver-white metal belonging to "
"the alkali metal group of chemical elements. Under standard conditions it is "
"the lightest metal and the least dense solid element."
msgstr ""
#: src/periodic_table_data.py:137
msgid "Beryllium"
msgstr ""
#: src/periodic_table_data.py:138
msgid "white-gray metallic"
msgstr ""
#: src/periodic_table_data.py:141 src/periodic_table_data.py:546
#: src/periodic_table_data.py:1023 src/periodic_table_data.py:2170
#: src/periodic_table_data.py:3115 src/periodic_table_data.py:4741
msgid "alkaline earth metal"
msgstr ""
#: src/periodic_table_data.py:151
msgid "https://en.wikipedia.org/wiki/Beryllium"
msgstr ""
#: src/periodic_table_data.py:155
msgid ""
"Beryllium is a chemical element with symbol Be and atomic number 4. It is "
"created through stellar nucleosynthesis and is a relatively rare element in "
"the universe. It is a divalent element which occurs naturally only in "
"combination with other elements in minerals."
msgstr ""
#: src/periodic_table_data.py:184
msgid "Boron"
msgstr ""
#: src/periodic_table_data.py:185
msgid "black-brown"
msgstr ""
#: src/periodic_table_data.py:188 src/periodic_table_data.py:659
#: src/periodic_table_data.py:1833 src/periodic_table_data.py:1883
#: src/periodic_table_data.py:2862 src/periodic_table_data.py:2914
#: src/periodic_table_data.py:4587
msgid "metalloid"
msgstr ""
#: src/periodic_table_data.py:198
msgid "https://en.wikipedia.org/wiki/Boron"
msgstr ""
#: src/periodic_table_data.py:202
msgid ""
"Boron is a metalloid chemical element with symbol B and atomic number 5. "
"Produced entirely by cosmic ray spallation and supernovae and not by stellar "
"nucleosynthesis, it is a low-abundance element in both the Solar system and "
"the Earth's crust. Boron is concentrated on Earth by the water-solubility of "
"its more common naturally occurring compounds, the borate minerals."
msgstr ""
#: src/periodic_table_data.py:232
msgid "Carbon"
msgstr ""
#: src/periodic_table_data.py:236 src/periodic_table_data.py:717
#: src/periodic_table_data.py:776 src/periodic_table_data.py:1934
msgid "polyatomic nonmetal"
msgstr ""
#: src/periodic_table_data.py:246
msgid "https://en.wikipedia.org/wiki/Carbon"
msgstr ""
#: src/periodic_table_data.py:250
msgid ""
"Carbon (from Latin:carbo \"coal\") is a chemical element with symbol C and "
"atomic number 6. On the periodic table, it is the first (row 2) of six "
"elements in column (group) 14, which have in common the composition of their "
"outer electron shell. It is nonmetallic and tetravalent—making four "
"electrons available to form covalent chemical bonds."
msgstr ""
#: src/periodic_table_data.py:281
msgid "Nitrogen"
msgstr ""
#: src/periodic_table_data.py:282
msgid "colorless gas, liquid or solid"
msgstr ""
#: src/periodic_table_data.py:295
msgid "https://en.wikipedia.org/wiki/Nitrogen"
msgstr ""
#: src/periodic_table_data.py:299
msgid ""
"Nitrogen is a chemical element with symbol N and atomic number 7. It is the "
"lightest pnictogen and at room temperature, it is a transparent, odorless "
"diatomic gas. Nitrogen is a common element in the universe, estimated at "
"about seventh in total abundance in the Milky Way and the Solar System."
msgstr ""
#: src/periodic_table_data.py:331
msgid "Oxygen"
msgstr ""
#: src/periodic_table_data.py:345
msgid "https://en.wikipedia.org/wiki/Oxygen"
msgstr ""
#: src/periodic_table_data.py:349
msgid ""
"Oxygen is a chemical element with symbol O and atomic number 8. It is a "
"member of the chalcogen group on the periodic table and is a highly reactive "
"nonmetal and oxidizing agent that readily forms compounds (notably oxides) "
"with most elements. By mass, oxygen is the third-most abundant element in "
"the universe, after hydrogen and helium."
msgstr ""
#: src/periodic_table_data.py:382
msgid "Fluorine"
msgstr ""
#: src/periodic_table_data.py:396
msgid "https://en.wikipedia.org/wiki/Fluorine"
msgstr ""
#: src/periodic_table_data.py:400
msgid ""
"Fluorine is a chemical element with symbol F and atomic number 9. It is the "
"lightest halogen and exists as a highly toxic pale yellow diatomic gas at "
"standard conditions. As the most electronegative element, it is extremely "
"reactive:almost all other elements, including some noble gases, form "
"compounds with fluorine."
msgstr ""
#: src/periodic_table_data.py:434
msgid "Neon"
msgstr ""
#: src/periodic_table_data.py:435
msgid ""
"colorless gas exhibiting an orange-red glow when placed in a high voltage "
"electric field"
msgstr ""
#: src/periodic_table_data.py:448
msgid "https://en.wikipedia.org/wiki/Neon"
msgstr ""
#: src/periodic_table_data.py:452
msgid ""
"Neon is a chemical element with symbol Ne and atomic number 10. It is in "
"group 18 (noble gases) of the periodic table. Neon is a colorless, odorless, "
"inert monatomic gas under standard conditions, with about two-thirds the "
"density of air."
msgstr ""
#: src/periodic_table_data.py:487
msgid "Sodium"
msgstr ""
#: src/periodic_table_data.py:488 src/periodic_table_data.py:2514
#: src/periodic_table_data.py:2563 src/periodic_table_data.py:4738
msgid "silvery white metallic"
msgstr ""
#: src/periodic_table_data.py:501
msgid "https://en.wikipedia.org/wiki/Sodium"
msgstr ""
#: src/periodic_table_data.py:505
msgid ""
"Sodium /ˈsoʊdiəm/ is a chemical element with symbol Na (from Ancient Greek "
"Νάτριο) and atomic number 11. It is a soft, silver-white, highly reactive "
"metal. In the Periodic table it is in column 1 (alkali metals), and shares "
"with the other six elements in that column that it has a single electron in "
"its outer shell, which it readily donates, creating a positively charged "
"atom - a cation."
msgstr ""
#: src/periodic_table_data.py:542
msgid "Magnesium"
msgstr ""
#: src/periodic_table_data.py:543
msgid "shiny grey solid"
msgstr ""
#: src/periodic_table_data.py:556
msgid "https://en.wikipedia.org/wiki/Magnesium"
msgstr ""
#: src/periodic_table_data.py:560
msgid ""
"Magnesium is a chemical element with symbol Mg and atomic number 12. It is a "
"shiny gray solid which bears a close physical resemblance to the other five "
"elements in the second column (Group 2, or alkaline earth metals) of the "
"periodic table:they each have the same electron configuration in their outer "
"electron shell producing a similar crystal structure. Magnesium is the ninth "
"most abundant element in the universe."
msgstr ""
#: src/periodic_table_data.py:598
msgid "Aluminium"
msgstr ""
#: src/periodic_table_data.py:599
msgid "silvery gray metallic"
msgstr ""
#: src/periodic_table_data.py:602 src/periodic_table_data.py:1784
#: src/periodic_table_data.py:2761 src/periodic_table_data.py:2811
#: src/periodic_table_data.py:4381 src/periodic_table_data.py:4431
#: src/periodic_table_data.py:4483 src/periodic_table_data.py:4536
#: src/periodic_table_data.py:6071
msgid "post-transition metal"
msgstr ""
#: src/periodic_table_data.py:612
msgid "https://en.wikipedia.org/wiki/Aluminium"
msgstr ""
#: src/periodic_table_data.py:616
msgid ""
"Aluminium (or aluminum; see different endings) is a chemical element in the "
"boron group with symbol Al and atomic number 13. It is a silvery-white, "
"soft, nonmagnetic, ductile metal. Aluminium is the third most abundant "
"element (after oxygen and silicon), and the most abundant metal, in the "
"Earth's crust."
msgstr ""
#: src/periodic_table_data.py:655
msgid "Silicon"
msgstr ""
#: src/periodic_table_data.py:656
msgid "crystalline, reflective with bluish-tinged faces"
msgstr ""
#: src/periodic_table_data.py:669
msgid "https://en.wikipedia.org/wiki/Silicon"
msgstr ""
#: src/periodic_table_data.py:673
msgid ""
"Silicon is a chemical element with symbol Si and atomic number 14. It is a "
"tetravalent metalloid, more reactive than germanium, the metalloid directly "
"below it in the table. Controversy about silicon's character dates to its "
"discovery."
msgstr ""
#: src/periodic_table_data.py:713
msgid "Phosphorus"
msgstr ""
#: src/periodic_table_data.py:714
msgid "colourless, waxy white, yellow, scarlet, red, violet, black"
msgstr ""
#: src/periodic_table_data.py:727
msgid "https://en.wikipedia.org/wiki/Phosphorus"
msgstr ""
#: src/periodic_table_data.py:731
msgid ""
"Phosphorus is a chemical element with symbol P and atomic number 15. As an "
"element, phosphorus exists in two major forms—white phosphorus and red "
"phosphorus—but due to its high reactivity, phosphorus is never found as a "
"free element on Earth. Instead phosphorus-containing minerals are almost "
"always present in their maximally oxidised state, as inorganic phosphate "
"rocks."
msgstr ""
#: src/periodic_table_data.py:772
msgid "Sulfur"
msgstr ""
#: src/periodic_table_data.py:773
msgid "lemon yellow sintered microcrystals"
msgstr ""
#: src/periodic_table_data.py:786
msgid "https://en.wikipedia.org/wiki/Sulfur"
msgstr ""
#: src/periodic_table_data.py:790
msgid ""
"Sulfur or sulphur (see spelling differences) is a chemical element with "
"symbol S and atomic number 16. It is an abundant, multivalent non-metal. "
"Under normal conditions, sulfur atoms form cyclic octatomic molecules with "
"chemical formula S8."
msgstr ""
#: src/periodic_table_data.py:832
msgid "Chlorine"
msgstr ""
#: src/periodic_table_data.py:833
msgid "pale yellow-green gas"
msgstr ""
#: src/periodic_table_data.py:846
msgid "https://en.wikipedia.org/wiki/Chlorine"
msgstr ""
#: src/periodic_table_data.py:850
msgid ""
"Chlorine is a chemical element with symbol Cl and atomic number 17. It also "
"has a relative atomic mass of 35.5. Chlorine is in the halogen group (17) "
"and is the second lightest halogen following fluorine."
msgstr ""
#: src/periodic_table_data.py:893
msgid "Argon"
msgstr ""
#: src/periodic_table_data.py:894
msgid ""
"colorless gas exhibiting a lilac/violet glow when placed in a high voltage "
"electric field"
msgstr ""
#: src/periodic_table_data.py:907
msgid "https://en.wikipedia.org/wiki/Argon"
msgstr ""
#: src/periodic_table_data.py:911
msgid ""
"Argon is a chemical element with symbol Ar and atomic number 18. It is in "
"group 18 of the periodic table and is a noble gas. Argon is the third most "
"common gas in the Earth's atmosphere, at 0.934% (9,340 ppmv), making it over "
"twice as abundant as the next most common atmospheric gas, water vapor "
"(which averages about 4000 ppmv, but varies greatly), and 23 times as "
"abundant as the next most common non-condensing atmospheric gas, carbon "
"dioxide (400 ppmv), and more than 500 times as abundant as the next most "
"common noble gas, neon (18 ppmv)."
msgstr ""
#: src/periodic_table_data.py:955
msgid "Potassium"
msgstr ""
#: src/periodic_table_data.py:956 src/periodic_table_data.py:3778
msgid "silvery gray"
msgstr ""
#: src/periodic_table_data.py:969
msgid "https://en.wikipedia.org/wiki/Potassium"
msgstr ""
#: src/periodic_table_data.py:973
msgid ""
"Potassium is a chemical element with symbol K (derived from Neo-Latin, "
"kalium) and atomic number 19. It was first isolated from potash, the ashes "
"of plants, from which its name is derived. In the Periodic table, potassium "
"is one of seven elements in column (group) 1 (alkali metals):they all have a "
"single valence electron in their outer electron shell, which they readily "
"give up to create an atom with a positive charge - a cation, and combine "
"with anions to form salts."
msgstr ""
#: src/periodic_table_data.py:1019
msgid "Calcium"
msgstr ""
#: src/periodic_table_data.py:1033
msgid "https://en.wikipedia.org/wiki/Calcium"
msgstr ""
#: src/periodic_table_data.py:1037
msgid ""
"Calcium is a chemical element with symbol Ca and atomic number 20. Calcium "
"is a soft gray alkaline earth metal, fifth-most-abundant element by mass in "
"the Earth's crust. The ion Ca2+ is also the fifth-most-abundant dissolved "
"ion in seawater by both molarity and mass, after sodium, chloride, "
"magnesium, and sulfate."
msgstr ""
#: src/periodic_table_data.py:1084
msgid "Scandium"
msgstr ""
#: src/periodic_table_data.py:1085 src/periodic_table_data.py:2224
#: src/periodic_table_data.py:2282 src/periodic_table_data.py:2612
#: src/periodic_table_data.py:3162 src/periodic_table_data.py:3214
#: src/periodic_table_data.py:3319 src/periodic_table_data.py:3421
#: src/periodic_table_data.py:3523 src/periodic_table_data.py:3574
#: src/periodic_table_data.py:3625 src/periodic_table_data.py:3676
#: src/periodic_table_data.py:3727 src/periodic_table_data.py:3880
#: src/periodic_table_data.py:4181 src/periodic_table_data.py:4230
#: src/periodic_table_data.py:4378 src/periodic_table_data.py:5102
msgid "silvery white"
msgstr ""
#: src/periodic_table_data.py:1088 src/periodic_table_data.py:1154
#: src/periodic_table_data.py:1221 src/periodic_table_data.py:1289
#: src/periodic_table_data.py:1358 src/periodic_table_data.py:1428
#: src/periodic_table_data.py:1499 src/periodic_table_data.py:1571
#: src/periodic_table_data.py:1644 src/periodic_table_data.py:1718
#: src/periodic_table_data.py:2227 src/periodic_table_data.py:2285
#: src/periodic_table_data.py:2337 src/periodic_table_data.py:2390
#: src/periodic_table_data.py:2466 src/periodic_table_data.py:2517
#: src/periodic_table_data.py:2566 src/periodic_table_data.py:2615
#: src/periodic_table_data.py:2663 src/periodic_table_data.py:2712
#: src/periodic_table_data.py:3883 src/periodic_table_data.py:3935
#: src/periodic_table_data.py:3986 src/periodic_table_data.py:4035
#: src/periodic_table_data.py:4084 src/periodic_table_data.py:4135
#: src/periodic_table_data.py:4184 src/periodic_table_data.py:4233
#: src/periodic_table_data.py:4282 src/periodic_table_data.py:4331
#: src/periodic_table_data.py:5517 src/periodic_table_data.py:5569
#: src/periodic_table_data.py:5621 src/periodic_table_data.py:5671
#: src/periodic_table_data.py:5721 src/periodic_table_data.py:5771
#: src/periodic_table_data.py:5971
msgid "transition metal"
msgstr ""
#: src/periodic_table_data.py:1098
msgid "https://en.wikipedia.org/wiki/Scandium"
msgstr ""
#: src/periodic_table_data.py:1102
msgid ""
"Scandium is a chemical element with symbol Sc and atomic number 21. A "
"silvery-white metallic d-block element, it has historically been sometimes "
"classified as a rare earth element, together with yttrium and the "
"lanthanoids. It was discovered in 1879 by spectral analysis of the minerals "
"euxenite and gadolinite from Scandinavia."
msgstr ""
#: src/periodic_table_data.py:1150
msgid "Titanium"
msgstr ""
#: src/periodic_table_data.py:1151
msgid "silvery grey-white metallic"
msgstr ""
#: src/periodic_table_data.py:1164
msgid "https://en.wikipedia.org/wiki/Titanium"
msgstr ""
#: src/periodic_table_data.py:1168
msgid ""
"Titanium is a chemical element with symbol Ti and atomic number 22. It is a "
"lustrous transition metal with a silver color, low density and high "
"strength. It is highly resistant to corrosion in sea water, aqua regia and "
"chlorine."
msgstr ""
#: src/periodic_table_data.py:1217
msgid "Vanadium"
msgstr ""
#: src/periodic_table_data.py:1218
msgid "blue-silver-grey metal"
msgstr ""
#: src/periodic_table_data.py:1231
msgid "https://en.wikipedia.org/wiki/Vanadium"
msgstr ""
#: src/periodic_table_data.py:1235
msgid ""
"Vanadium is a chemical element with symbol V and atomic number 23. It is a "
"hard, silvery grey, ductile and malleable transition metal. The element is "
"found only in chemically combined form in nature, but once isolated "
"artificially, the formation of an oxide layer stabilizes the free metal "
"somewhat against further oxidation."
msgstr ""
#: src/periodic_table_data.py:1285
msgid "Chromium"
msgstr ""
#: src/periodic_table_data.py:1286 src/periodic_table_data.py:1355
#: src/periodic_table_data.py:5000
msgid "silvery metallic"
msgstr ""
#: src/periodic_table_data.py:1299
msgid "https://en.wikipedia.org/wiki/Chromium"
msgstr ""
#: src/periodic_table_data.py:1303
msgid ""
"Chromium is a chemical element with symbol Cr and atomic number 24. It is "
"the first element in Group 6. It is a steely-gray, lustrous, hard and "
"brittle metal which takes a high polish, resists tarnishing, and has a high "
"melting point."
msgstr ""
#: src/periodic_table_data.py:1354
msgid "Manganese"
msgstr ""
#: src/periodic_table_data.py:1368
msgid "https://en.wikipedia.org/wiki/Manganese"
msgstr ""
#: src/periodic_table_data.py:1372
msgid ""
"Manganese is a chemical element with symbol Mn and atomic number 25. It is "
"not found as a free element in nature; it is often found in combination with "
"iron, and in many minerals. Manganese is a metal with important industrial "
"metal alloy uses, particularly in stainless steels."
msgstr ""
#: src/periodic_table_data.py:1424
msgid "Iron"
msgstr ""
#: src/periodic_table_data.py:1425
msgid "lustrous metallic with a grayish tinge"
msgstr ""
#: src/periodic_table_data.py:1438
msgid "https://en.wikipedia.org/wiki/Iron"
msgstr ""
#: src/periodic_table_data.py:1442
msgid ""
"Iron is a chemical element with symbol Fe (from Latin:ferrum) and atomic "
"number 26. It is a metal in the first transition series. It is by mass the "
"most common element on Earth, forming much of Earth's outer and inner core."
msgstr ""
#: src/periodic_table_data.py:1495
msgid "Cobalt"
msgstr ""
#: src/periodic_table_data.py:1496
msgid "hard lustrous gray metal"
msgstr ""
#: src/periodic_table_data.py:1509
msgid "https://en.wikipedia.org/wiki/Cobalt"
msgstr ""
#: src/periodic_table_data.py:1513
msgid ""
"Cobalt is a chemical element with symbol Co and atomic number 27. Like "
"nickel, cobalt in the Earth's crust is found only in chemically combined "
"form, save for small deposits found in alloys of natural meteoric iron. The "
"free element, produced by reductive smelting, is a hard, lustrous, silver-"
"gray metal."
msgstr ""
#: src/periodic_table_data.py:1567
msgid "Nickel"
msgstr ""
#: src/periodic_table_data.py:1568
msgid "lustrous, metallic, and silver with a gold tinge"
msgstr ""
#: src/periodic_table_data.py:1581
msgid "https://en.wikipedia.org/wiki/Nickel"
msgstr ""
#: src/periodic_table_data.py:1585
msgid ""
"Nickel is a chemical element with symbol Ni and atomic number 28. It is a "
"silvery-white lustrous metal with a slight golden tinge. Nickel belongs to "
"the transition metals and is hard and ductile."
msgstr ""
#: src/periodic_table_data.py:1640
msgid "Copper"
msgstr ""
#: src/periodic_table_data.py:1641
msgid "red-orange metallic luster"
msgstr ""
#: src/periodic_table_data.py:1654
msgid "https://en.wikipedia.org/wiki/Copper"
msgstr ""
#: src/periodic_table_data.py:1658
msgid ""
"Copper is a chemical element with symbol Cu (from Latin:cuprum) and atomic "
"number 29. It is a soft, malleable and ductile metal with very high thermal "
"and electrical conductivity. A freshly exposed surface of pure copper has a "
"reddish-orange color."
msgstr ""
#: src/periodic_table_data.py:1714
msgid "Zinc"
msgstr ""
#: src/periodic_table_data.py:1715
msgid "silver-gray"
msgstr ""
#: src/periodic_table_data.py:1728
msgid "https://en.wikipedia.org/wiki/Zinc"
msgstr ""
#: src/periodic_table_data.py:1732
msgid ""
"Zinc, in commerce also spelter, is a chemical element with symbol Zn and "
"atomic number 30. It is the first element of group 12 of the periodic table. "
"In some respects zinc is chemically similar to magnesium:its ion is of "
"similar size and its only common oxidation state is +2."
msgstr ""
#: src/periodic_table_data.py:1780
msgid "Gallium"
msgstr ""
#: src/periodic_table_data.py:1781
msgid "silver-white"
msgstr ""
#: src/periodic_table_data.py:1794
msgid "https://en.wikipedia.org/wiki/Gallium"
msgstr ""
#: src/periodic_table_data.py:1798
msgid ""
"Gallium is a chemical element with symbol Ga and atomic number 31. Elemental "
"gallium does not occur in free form in nature, but as the gallium(III) "
"compounds that are in trace amounts in zinc ores and in bauxite. Gallium is "
"a soft, silvery metal, and elemental gallium is a brittle solid at low "
"temperatures, and melts at 29.76 °C (85.57 °F) (slightly above room "
"temperature)."
msgstr ""
#: src/periodic_table_data.py:1829
msgid "Germanium"
msgstr ""
#: src/periodic_table_data.py:1830
msgid "grayish-white"
msgstr ""
#: src/periodic_table_data.py:1843
msgid "https://en.wikipedia.org/wiki/Germanium"
msgstr ""
#: src/periodic_table_data.py:1847
msgid ""
"Germanium is a chemical element with symbol Ge and atomic number 32. It is a "
"lustrous, hard, grayish-white metalloid in the carbon group, chemically "
"similar to its group neighbors tin and silicon. Purified germanium is a "
"semiconductor, with an appearance most similar to elemental silicon."
msgstr ""
#: src/periodic_table_data.py:1879
msgid "Arsenic"
msgstr ""
#: src/periodic_table_data.py:1880
msgid "metallic grey"
msgstr ""
#: src/periodic_table_data.py:1893
msgid "https://en.wikipedia.org/wiki/Arsenic"
msgstr ""
#: src/periodic_table_data.py:1897
msgid ""
"Arsenic is a chemical element with symbol As and atomic number 33. Arsenic "
"occurs in many minerals, usually in conjunction with sulfur and metals, and "
"also as a pure elemental crystal. Arsenic is a metalloid."
msgstr ""
#: src/periodic_table_data.py:1930
msgid "Selenium"
msgstr ""
#: src/periodic_table_data.py:1931
msgid "black, red, and gray (not pictured) allotropes"
msgstr ""
#: src/periodic_table_data.py:1944
msgid "https://en.wikipedia.org/wiki/Selenium"
msgstr ""
#: src/periodic_table_data.py:1948
msgid ""
"Selenium is a chemical element with symbol Se and atomic number 34. It is a "
"nonmetal with properties that are intermediate between those of its periodic "
"table column-adjacent chalcogen elements sulfur and tellurium. It rarely "
"occurs in its elemental state in nature, or as pure ore compounds."
msgstr ""
#: src/periodic_table_data.py:1982
msgid "Bromine"
msgstr ""
#: src/periodic_table_data.py:1996
msgid "https://en.wikipedia.org/wiki/Bromine"
msgstr ""
#: src/periodic_table_data.py:2000
msgid ""
"Bromine (from Ancient Greek:βρῶμος, brómos, meaning \"stench\") is a "
"chemical element with symbol Br, and atomic number 35. It is a halogen. The "
"element was isolated independently by two chemists, Carl Jacob Löwig and "
"Antoine Jerome Balard, in 1825–1826."
msgstr ""
#: src/periodic_table_data.py:2035
msgid "Krypton"
msgstr ""
#: src/periodic_table_data.py:2036
msgid "colorless gas, exhibiting a whitish glow in a high electric field"
msgstr ""
#: src/periodic_table_data.py:2049
msgid "https://en.wikipedia.org/wiki/Krypton"
msgstr ""
#: src/periodic_table_data.py:2053
msgid ""
"Krypton (from Greek:κρυπτός kryptos \"the hidden one\") is a chemical "
"element with symbol Kr and atomic number 36. It is a member of group 18 "
"(noble gases) elements. A colorless, odorless, tasteless noble gas, krypton "
"occurs in trace amounts in the atmosphere, is isolated by fractionally "
"distilling liquefied air, and is often used with other rare gases in "
"fluorescent lamps."
msgstr ""
#: src/periodic_table_data.py:2110
msgid "Rubidium"
msgstr ""
#: src/periodic_table_data.py:2111
msgid "grey white"
msgstr ""
#: src/periodic_table_data.py:2124
msgid "https://en.wikipedia.org/wiki/Rubidium"
msgstr ""
#: src/periodic_table_data.py:2128
msgid ""
"Rubidium is a chemical element with symbol Rb and atomic number 37. Rubidium "
"is a soft, silvery-white metallic element of the alkali metal group, with an "
"atomic mass of 85.4678. Elemental rubidium is highly reactive, with "
"properties similar to those of other alkali metals, such as very rapid "
"oxidation in air."
msgstr ""
#: src/periodic_table_data.py:2166
msgid "Strontium"
msgstr ""
#: src/periodic_table_data.py:2180
msgid "https://en.wikipedia.org/wiki/Strontium"
msgstr ""
#: src/periodic_table_data.py:2184
msgid ""
"Strontium is a chemical element with symbol Sr and atomic number 38. An "
"alkaline earth metal, strontium is a soft silver-white or yellowish metallic "
"element that is highly reactive chemically. The metal turns yellow when it "
"is exposed to air."
msgstr ""
#: src/periodic_table_data.py:2223
msgid "Yttrium"
msgstr ""
#: src/periodic_table_data.py:2237
msgid "https://en.wikipedia.org/wiki/Yttrium"
msgstr ""
#: src/periodic_table_data.py:2241
msgid ""
"Yttrium is a chemical element with symbol Y and atomic number 39. It is a "
"silvery-metallic transition metal chemically similar to the lanthanides and "
"it has often been classified as a \"rare earth element\". Yttrium is almost "
"always found combined with the lanthanides in rare earth minerals and is "
"never found in nature as a free element."
msgstr ""
#: src/periodic_table_data.py:2281
msgid "Zirconium"
msgstr ""
#: src/periodic_table_data.py:2295
msgid "https://en.wikipedia.org/wiki/Zirconium"
msgstr ""
#: src/periodic_table_data.py:2299
msgid ""
"Zirconium is a chemical element with symbol Zr and atomic number 40. The "
"name of zirconium is taken from the name of the mineral zircon, the most "
"important source of zirconium. The word zircon comes from the Persian word "
"zargun زرگون, meaning \"gold-colored\"."
msgstr ""
#: src/periodic_table_data.py:2333
msgid "Niobium"
msgstr ""
#: src/periodic_table_data.py:2334
msgid "gray metallic, bluish when oxidized"
msgstr ""
#: src/periodic_table_data.py:2347
msgid "https://en.wikipedia.org/wiki/Niobium"
msgstr ""
#: src/periodic_table_data.py:2351
msgid ""
"Niobium, formerly columbium, is a chemical element with symbol Nb (formerly "
"Cb) and atomic number 41. It is a soft, grey, ductile transition metal, "
"which is often found in the pyrochlore mineral, the main commercial source "
"for niobium, and columbite. The name comes from Greek mythology:Niobe, "
"daughter of Tantalus since it is so similar to tantalum."
msgstr ""
#: src/periodic_table_data.py:2386
msgid "Molybdenum"
msgstr ""
#: src/periodic_table_data.py:2387
msgid "gray metallic"
msgstr ""
#: src/periodic_table_data.py:2400
msgid "https://en.wikipedia.org/wiki/Molybdenum"
msgstr ""
#: src/periodic_table_data.py:2404
msgid ""
"Molybdenum is a chemical element with symbol Mo and atomic number 42. The "
"name is from Neo-Latin molybdaenum, from Ancient Greek Μόλυβδος molybdos, "
"meaning lead, since its ores were confused with lead ores. Molybdenum "
"minerals have been known throughout history, but the element was discovered "
"(in the sense of differentiating it as a new entity from the mineral salts "
"of other metals) in 1778 by Carl Wilhelm Scheele."
msgstr ""
#: src/periodic_table_data.py:2462
msgid "Technetium"
msgstr ""
#: src/periodic_table_data.py:2463
msgid "shiny gray metal"
msgstr ""
#: src/periodic_table_data.py:2476
msgid "https://en.wikipedia.org/wiki/Technetium"
msgstr ""
#: src/periodic_table_data.py:2480
msgid ""
"Technetium (/tɛkˈniːʃiəm/) is a chemical element with symbol Tc and atomic "
"number 43. It is the element with the lowest atomic number in the periodic "
"table that has no stable isotopes:every form of it is radioactive. Nearly "
"all technetium is produced synthetically, and only minute amounts are found "
"in nature."
msgstr ""
#: src/periodic_table_data.py:2513
msgid "Ruthenium"
msgstr ""
#: src/periodic_table_data.py:2527
msgid "https://en.wikipedia.org/wiki/Ruthenium"
msgstr ""
#: src/periodic_table_data.py:2531
msgid ""
"Ruthenium is a chemical element with symbol Ru and atomic number 44. It is a "
"rare transition metal belonging to the platinum group of the periodic table. "
"Like the other metals of the platinum group, ruthenium is inert to most "
"other chemicals."
msgstr ""
#: src/periodic_table_data.py:2562
msgid "Rhodium"
msgstr ""
#: src/periodic_table_data.py:2576
msgid "https://en.wikipedia.org/wiki/Rhodium"
msgstr ""
#: src/periodic_table_data.py:2580
msgid ""
"Rhodium is a chemical element with symbol Rh and atomic number 45. It is a "
"rare, silvery-white, hard, and chemically inert transition metal. It is a "
"member of the platinum group."
msgstr ""
#: src/periodic_table_data.py:2611
msgid "Palladium"
msgstr ""
#: src/periodic_table_data.py:2625
msgid "https://en.wikipedia.org/wiki/Palladium"
msgstr ""
#: src/periodic_table_data.py:2629
msgid ""
"Palladium is a chemical element with symbol Pd and atomic number 46. It is a "
"rare and lustrous silvery-white metal discovered in 1803 by William Hyde "
"Wollaston. He named it after the asteroid Pallas, which was itself named "
"after the epithet of the Greek goddess Athena, acquired by her when she slew "
"Pallas."
msgstr ""
#: src/periodic_table_data.py:2659
msgid "Silver"
msgstr ""
#: src/periodic_table_data.py:2660
msgid "lustrous white metal"
msgstr ""
#: src/periodic_table_data.py:2673
msgid "https://en.wikipedia.org/wiki/Silver"
msgstr ""
#: src/periodic_table_data.py:2677
msgid ""
"Silver is a chemical element with symbol Ag (Greek:άργυρος árguros, "
"Latin:argentum, both from the Indo-European root *h₂erǵ- for \"grey\" or "
"\"shining\") and atomic number 47. A soft, white, lustrous transition metal, "
"it possesses the highest electrical conductivity, thermal conductivity and "
"reflectivity of any metal. The metal occurs naturally in its pure, free form "
"(native silver), as an alloy with gold and other metals, and in minerals "
"such as argentite and chlorargyrite."
msgstr ""
#: src/periodic_table_data.py:2708
msgid "Cadmium"
msgstr ""
#: src/periodic_table_data.py:2709
msgid "silvery bluish-gray metallic"
msgstr ""
#: src/periodic_table_data.py:2722
msgid "https://en.wikipedia.org/wiki/Cadmium"
msgstr ""
#: src/periodic_table_data.py:2726
msgid ""
"Cadmium is a chemical element with symbol Cd and atomic number 48. This "
"soft, bluish-white metal is chemically similar to the two other stable "
"metals in group 12, zinc and mercury. Like zinc, it prefers oxidation state "
"+2 in most of its compounds and like mercury it shows a low melting point "
"compared to transition metals."
msgstr ""
#: src/periodic_table_data.py:2757
msgid "Indium"
msgstr ""
#: src/periodic_table_data.py:2758 src/periodic_table_data.py:2859
msgid "silvery lustrous gray"
msgstr ""
#: src/periodic_table_data.py:2771
msgid "https://en.wikipedia.org/wiki/Indium"
msgstr ""
#: src/periodic_table_data.py:2775
msgid ""
"Indium is a chemical element with symbol In and atomic number 49. It is a "
"post-transition metallic element that is rare in Earth's crust. The metal is "
"very soft, malleable and easily fusible, with a melting point higher than "
"sodium, but lower than lithium or tin."
msgstr ""
#: src/periodic_table_data.py:2807
msgid "Tin"
msgstr ""
#: src/periodic_table_data.py:2808
msgid "silvery-white (beta, β) or gray (alpha, α)"
msgstr ""
#: src/periodic_table_data.py:2821
msgid "https://en.wikipedia.org/wiki/Tin"
msgstr ""
#: src/periodic_table_data.py:2825
msgid ""
"Tin is a chemical element with the symbol Sn (for Latin:stannum) and atomic "
"number 50. It is a main group metal in group 14 of the periodic table. Tin "
"shows a chemical similarity to both neighboring group-14 elements, germanium "
"and lead, and has two possible oxidation states, +2 and the slightly more "
"stable +4."
msgstr ""
#: src/periodic_table_data.py:2858
msgid "Antimony"
msgstr ""
#: src/periodic_table_data.py:2872
msgid "https://en.wikipedia.org/wiki/Antimony"
msgstr ""
#: src/periodic_table_data.py:2876
msgid ""
"Antimony is a chemical element with symbol Sb (from Latin:stibium) and "
"atomic number 51. A lustrous gray metalloid, it is found in nature mainly as "
"the sulfide mineral stibnite (Sb2S3). Antimony compounds have been known "
"since ancient times and were used for cosmetics; metallic antimony was also "
"known, but it was erroneously identified as lead upon its discovery."
msgstr ""
#: src/periodic_table_data.py:2910
msgid "Tellurium"
msgstr ""
#: src/periodic_table_data.py:2924
msgid "https://en.wikipedia.org/wiki/Tellurium"
msgstr ""
#: src/periodic_table_data.py:2928
msgid ""
"Tellurium is a chemical element with symbol Te and atomic number 52. It is a "
"brittle, mildly toxic, rare, silver-white metalloid. Tellurium is chemically "
"related to selenium and sulfur."
msgstr ""
#: src/periodic_table_data.py:2963
msgid "Iodine"
msgstr ""
#: src/periodic_table_data.py:2964
msgid "lustrous metallic gray, violet as a gas"
msgstr ""
#: src/periodic_table_data.py:2977
msgid "https://en.wikipedia.org/wiki/Iodine"
msgstr ""
#: src/periodic_table_data.py:2981
msgid ""
"Iodine is a chemical element with symbol I and atomic number 53. The name is "
"from Greek ἰοειδής ioeidēs, meaning violet or purple, due to the color of "
"iodine vapor. Iodine and its compounds are primarily used in nutrition, and "
"industrially in the production of acetic acid and certain polymers."
msgstr ""
#: src/periodic_table_data.py:3012
msgid "Xenon"
msgstr ""
#: src/periodic_table_data.py:3013
msgid ""
"colorless gas, exhibiting a blue glow when placed in a high voltage electric "
"field"
msgstr ""
#: src/periodic_table_data.py:3026
msgid "https://en.wikipedia.org/wiki/Xenon"
msgstr ""
#: src/periodic_table_data.py:3030
msgid ""
"Xenon is a chemical element with symbol Xe and atomic number 54. It is a "
"colorless, dense, odorless noble gas, that occurs in the Earth's atmosphere "
"in trace amounts. Although generally unreactive, xenon can undergo a few "
"chemical reactions such as the formation of xenon hexafluoroplatinate, the "
"first noble gas compound to be synthesized."
msgstr ""
#: src/periodic_table_data.py:3061
msgid "Cesium"
msgstr ""
#: src/periodic_table_data.py:3062
msgid "silvery gold"
msgstr ""
#: src/periodic_table_data.py:3075
msgid "https://en.wikipedia.org/wiki/Cesium"
msgstr ""
#: src/periodic_table_data.py:3079
msgid ""
"Caesium or cesium is a chemical element with symbol Cs and atomic number 55. "
"It is a soft, silvery-gold alkali metal with a melting point of 28 °C (82 "
"°F), which makes it one of only five elemental metals that are liquid at or "
"near room temperature. Caesium is an alkali metal and has physical and "
"chemical properties similar to those of rubidium and potassium."
msgstr ""
#: src/periodic_table_data.py:3111
msgid "Barium"
msgstr ""
#: src/periodic_table_data.py:3125
msgid "https://en.wikipedia.org/wiki/Barium"
msgstr ""
#: src/periodic_table_data.py:3129
msgid ""
"Barium is a chemical element with symbol Ba and atomic number 56. It is the "
"fifth element in Group 2, a soft silvery metallic alkaline earth metal. "
"Because of its high chemical reactivity barium is never found in nature as a "
"free element."
msgstr ""
#: src/periodic_table_data.py:3161
msgid "Lanthanum"
msgstr ""
#: src/periodic_table_data.py:3165 src/periodic_table_data.py:3217
#: src/periodic_table_data.py:3270 src/periodic_table_data.py:3322
#: src/periodic_table_data.py:3373 src/periodic_table_data.py:3424
#: src/periodic_table_data.py:3475 src/periodic_table_data.py:3526
#: src/periodic_table_data.py:3577 src/periodic_table_data.py:3628
#: src/periodic_table_data.py:3679 src/periodic_table_data.py:3730
#: src/periodic_table_data.py:3781 src/periodic_table_data.py:3832
msgid "lanthanide"
msgstr ""
#: src/periodic_table_data.py:3175
msgid "https://en.wikipedia.org/wiki/Lanthanum"
msgstr ""
#: src/periodic_table_data.py:3179
msgid ""
"Lanthanum is a soft, ductile, silvery-white metallic chemical element with "
"symbol La and atomic number 57. It tarnishes rapidly when exposed to air and "
"is soft enough to be cut with a knife. It gave its name to the lanthanide "
"series, a group of 15 similar elements between lanthanum and lutetium in the "
"periodic table:it is also sometimes considered the first element of the 6th-"
"period transition metals."
msgstr ""
#: src/periodic_table_data.py:3213
msgid "Cerium"
msgstr ""
#: src/periodic_table_data.py:3227
msgid "https://en.wikipedia.org/wiki/Cerium"
msgstr ""
#: src/periodic_table_data.py:3231
msgid ""
"Cerium is a chemical element with symbol Ce and atomic number 58. It is a "
"soft, silvery, ductile metal which easily oxidizes in air. Cerium was named "
"after the dwarf planet Ceres (itself named after the Roman goddess of "
"agriculture)."
msgstr ""
#: src/periodic_table_data.py:3266
msgid "Praseodymium"
msgstr ""
#: src/periodic_table_data.py:3267
msgid "grayish white"
msgstr ""
#: src/periodic_table_data.py:3280
msgid "https://en.wikipedia.org/wiki/Praseodymium"
msgstr ""
#: src/periodic_table_data.py:3284
msgid ""
"Praseodymium is a chemical element with symbol Pr and atomic number 59. "
"Praseodymium is a soft, silvery, malleable and ductile metal in the "
"lanthanide group. It is valued for its magnetic, electrical, chemical, and "
"optical properties."
msgstr ""
#: src/periodic_table_data.py:3318
msgid "Neodymium"
msgstr ""
#: src/periodic_table_data.py:3332
msgid "https://en.wikipedia.org/wiki/Neodymium"
msgstr ""
#: src/periodic_table_data.py:3336
msgid ""
"Neodymium is a chemical element with symbol Nd and atomic number 60. It is a "
"soft silvery metal that tarnishes in air. Neodymium was discovered in 1885 "
"by the Austrian chemist Carl Auer von Welsbach."
msgstr ""
#: src/periodic_table_data.py:3369
msgid "Promethium"
msgstr ""
#: src/periodic_table_data.py:3370
msgid "metallic"
msgstr ""
#: src/periodic_table_data.py:3383
msgid "https://en.wikipedia.org/wiki/Promethium"
msgstr ""
#: src/periodic_table_data.py:3387
msgid ""
"Promethium, originally prometheum, is a chemical element with the symbol Pm "
"and atomic number 61. All of its isotopes are radioactive; it is one of only "
"two such elements that are followed in the periodic table by elements with "
"stable forms, a distinction shared with technetium. Chemically, promethium "
"is a lanthanide, which forms salts when combined with other elements."
msgstr ""
#: src/periodic_table_data.py:3420
msgid "Samarium"
msgstr ""
#: src/periodic_table_data.py:3434
msgid "https://en.wikipedia.org/wiki/Samarium"
msgstr ""
#: src/periodic_table_data.py:3438
msgid ""
"Samarium is a chemical element with symbol Sm and atomic number 62. It is a "
"moderately hard silvery metal that readily oxidizes in air. Being a typical "
"member of the lanthanide series, samarium usually assumes the oxidation "
"state +3."
msgstr ""
#: src/periodic_table_data.py:3471
msgid "Europium"
msgstr ""
#: src/periodic_table_data.py:3485
msgid "https://en.wikipedia.org/wiki/Europium"
msgstr ""
#: src/periodic_table_data.py:3489
msgid ""
"Europium is a chemical element with symbol Eu and atomic number 63. It was "
"isolated in 1901 and is named after the continent of Europe. It is a "
"moderately hard, silvery metal which readily oxidizes in air and water."
msgstr ""
#: src/periodic_table_data.py:3522
msgid "Gadolinium"
msgstr ""
#: src/periodic_table_data.py:3536
msgid "https://en.wikipedia.org/wiki/Gadolinium"
msgstr ""
#: src/periodic_table_data.py:3540
msgid ""
"Gadolinium is a chemical element with symbol Gd and atomic number 64. It is "
"a silvery-white, malleable and ductile rare-earth metal. It is found in "
"nature only in combined (salt) form."
msgstr ""
#: src/periodic_table_data.py:3573
msgid "Terbium"
msgstr ""
#: src/periodic_table_data.py:3587
msgid "https://en.wikipedia.org/wiki/Terbium"
msgstr ""
#: src/periodic_table_data.py:3591
msgid ""
"Terbium is a chemical element with symbol Tb and atomic number 65. It is a "
"silvery-white rare earth metal that is malleable, ductile and soft enough to "
"be cut with a knife. Terbium is never found in nature as a free element, but "
"it is contained in many minerals, including cerite, gadolinite, monazite, "
"xenotime and euxenite."
msgstr ""
#: src/periodic_table_data.py:3624
msgid "Dysprosium"
msgstr ""
#: src/periodic_table_data.py:3638
msgid "https://en.wikipedia.org/wiki/Dysprosium"
msgstr ""
#: src/periodic_table_data.py:3642
msgid ""
"Dysprosium is a chemical element with the symbol Dy and atomic number 66. It "
"is a rare earth element with a metallic silver luster. Dysprosium is never "
"found in nature as a free element, though it is found in various minerals, "
"such as xenotime."
msgstr ""
#: src/periodic_table_data.py:3675
msgid "Holmium"
msgstr ""
#: src/periodic_table_data.py:3689
msgid "https://en.wikipedia.org/wiki/Holmium"
msgstr ""
#: src/periodic_table_data.py:3693
msgid ""
"Holmium is a chemical element with symbol Ho and atomic number 67. Part of "
"the lanthanide series, holmium is a rare earth element. Holmium was "
"discovered by Swedish chemist Per Theodor Cleve."
msgstr ""
#: src/periodic_table_data.py:3726
msgid "Erbium"
msgstr ""
#: src/periodic_table_data.py:3740
msgid "https://en.wikipedia.org/wiki/Erbium"
msgstr ""
#: src/periodic_table_data.py:3744
msgid ""
"Erbium is a chemical element in the lanthanide series, with symbol Er and "
"atomic number 68. A silvery-white solid metal when artificially isolated, "
"natural erbium is always found in chemical combination with other elements "
"on Earth. As such, it is a rare earth element which is associated with "
"several other rare elements in the mineral gadolinite from Ytterby in "
"Sweden, where yttrium, ytterbium, and terbium were discovered."
msgstr ""
#: src/periodic_table_data.py:3777
msgid "Thulium"
msgstr ""
#: src/periodic_table_data.py:3791
msgid "https://en.wikipedia.org/wiki/Thulium"
msgstr ""
#: src/periodic_table_data.py:3795
msgid ""
"Thulium is a chemical element with symbol Tm and atomic number 69. It is the "
"thirteenth and antepenultimate (third-last) element in the lanthanide "
"series. Like the other lanthanides, the most common oxidation state is +3, "
"seen in its oxide, halides and other compounds."
msgstr ""
#: src/periodic_table_data.py:3828
msgid "Ytterbium"
msgstr ""
#: src/periodic_table_data.py:3842
msgid "https://en.wikipedia.org/wiki/Ytterbium"
msgstr ""
#: src/periodic_table_data.py:3846
msgid ""
"Ytterbium is a chemical element with symbol Yb and atomic number 70. It is "
"the fourteenth and penultimate element in the lanthanide series, which is "
"the basis of the relative stability of its +2 oxidation state. However, like "
"the other lanthanides, its most common oxidation state is +3, seen in its "
"oxide, halides and other compounds."
msgstr ""
#: src/periodic_table_data.py:3879
msgid "Lutetium"
msgstr ""
#: src/periodic_table_data.py:3893
msgid "https://en.wikipedia.org/wiki/Lutetium"
msgstr ""
#: src/periodic_table_data.py:3897
msgid ""
"Lutetium is a chemical element with symbol Lu and atomic number 71. It is a "
"silvery white metal, which resists corrosion in dry, but not in moist air. "
"It is considered the first element of the 6th-period transition metals and "
"the last element in the lanthanide series, and is traditionally counted "
"among the rare earths."
msgstr ""
#: src/periodic_table_data.py:3931
msgid "Hafnium"
msgstr ""
#: src/periodic_table_data.py:3932
msgid "steel gray"
msgstr ""
#: src/periodic_table_data.py:3945
msgid "https://en.wikipedia.org/wiki/Hafnium"
msgstr ""
#: src/periodic_table_data.py:3949
msgid ""
"Hafnium is a chemical element with symbol Hf and atomic number 72. A "
"lustrous, silvery gray, tetravalent transition metal, hafnium chemically "
"resembles zirconium and is found in zirconium minerals. Its existence was "
"predicted by Dmitri Mendeleev in 1869, though it was not identified until "
"1923, making it the penultimate stable element to be discovered (rhenium was "
"identified two years later)."
msgstr ""
#: src/periodic_table_data.py:3982
msgid "Tantalum"
msgstr ""
#: src/periodic_table_data.py:3983
msgid "gray blue"
msgstr ""
#: src/periodic_table_data.py:3996
msgid "https://en.wikipedia.org/wiki/Tantalum"
msgstr ""
#: src/periodic_table_data.py:4000
msgid ""
"Tantalum is a chemical element with symbol Ta and atomic number 73. "
"Previously known as tantalium, its name comes from Tantalus, an antihero "
"from Greek mythology. Tantalum is a rare, hard, blue-gray, lustrous "
"transition metal that is highly corrosion-resistant."
msgstr ""
#: src/periodic_table_data.py:4031
msgid "Tungsten"
msgstr ""
#: src/periodic_table_data.py:4032
msgid "grayish white, lustrous"
msgstr ""
#: src/periodic_table_data.py:4045
msgid "https://en.wikipedia.org/wiki/Tungsten"
msgstr ""
#: src/periodic_table_data.py:4049
msgid ""
"Tungsten, also known as wolfram, is a chemical element with symbol W and "
"atomic number 74. The word tungsten comes from the Swedish language tung "
"sten, which directly translates to heavy stone. Its name in Swedish is "
"volfram, however, in order to distinguish it from scheelite, which in "
"Swedish is alternatively named tungsten."
msgstr ""
#: src/periodic_table_data.py:4080
msgid "Rhenium"
msgstr ""
#: src/periodic_table_data.py:4081
msgid "silvery-grayish"
msgstr ""
#: src/periodic_table_data.py:4094
msgid "https://en.wikipedia.org/wiki/Rhenium"
msgstr ""
#: src/periodic_table_data.py:4098
msgid ""
"Rhenium is a chemical element with symbol Re and atomic number 75. It is a "
"silvery-white, heavy, third-row transition metal in group 7 of the periodic "
"table. With an estimated average concentration of 1 part per billion (ppb), "
"rhenium is one of the rarest elements in the Earth's crust."
msgstr ""
#: src/periodic_table_data.py:4131
msgid "Osmium"
msgstr ""
#: src/periodic_table_data.py:4132
msgid "silvery, blue cast"
msgstr ""
#: src/periodic_table_data.py:4145
msgid "https://en.wikipedia.org/wiki/Osmium"
msgstr ""
#: src/periodic_table_data.py:4149
msgid ""
"Osmium (from Greek osme (ὀσμή) meaning \"smell\") is a chemical element with "
"symbol Os and atomic number 76. It is a hard, brittle, bluish-white "
"transition metal in the platinum group that is found as a trace element in "
"alloys, mostly in platinum ores. Osmium is the densest naturally occurring "
"element, with a density of 22.59 g/cm3."
msgstr ""
#: src/periodic_table_data.py:4180
msgid "Iridium"
msgstr ""
#: src/periodic_table_data.py:4194
msgid "https://en.wikipedia.org/wiki/Iridium"
msgstr ""
#: src/periodic_table_data.py:4198
msgid ""
"Iridium is a chemical element with symbol Ir and atomic number 77. A very "
"hard, brittle, silvery-white transition metal of the platinum group, iridium "
"is generally credited with being the second densest element (after osmium) "
"based on measured density, although calculations involving the space "
"lattices of the elements show that iridium is denser. It is also the most "
"corrosion-resistant metal, even at temperatures as high as 2000 °C. Although "
"only certain molten salts and halogens are corrosive to solid iridium, "
"finely divided iridium dust is much more reactive and can be flammable."
msgstr ""
#: src/periodic_table_data.py:4229
msgid "Platinum"
msgstr ""
#: src/periodic_table_data.py:4243
msgid "https://en.wikipedia.org/wiki/Platinum"
msgstr ""
#: src/periodic_table_data.py:4247
msgid ""
"Platinum is a chemical element with symbol Pt and atomic number 78. It is a "
"dense, malleable, ductile, highly unreactive, precious, gray-white "
"transition metal. Its name is derived from the Spanish term platina, which "
"is literally translated into \"little silver\"."
msgstr ""
#: src/periodic_table_data.py:4278
msgid "Gold"
msgstr ""
#: src/periodic_table_data.py:4279
msgid "metallic yellow"
msgstr ""
#: src/periodic_table_data.py:4292
msgid "https://en.wikipedia.org/wiki/Gold"
msgstr ""
#: src/periodic_table_data.py:4296
msgid ""
"Gold is a chemical element with symbol Au (from Latin:aurum) and atomic "
"number 79. In its purest form, it is a bright, slightly reddish yellow, "
"dense, soft, malleable and ductile metal. Chemically, gold is a transition "
"metal and a group 11 element."
msgstr ""
#: src/periodic_table_data.py:4327
msgid "Mercury"
msgstr ""
#: src/periodic_table_data.py:4328 src/periodic_table_data.py:4533
#: src/periodic_table_data.py:5204 src/periodic_table_data.py:5255
msgid "silvery"
msgstr ""
#: src/periodic_table_data.py:4341
msgid "https://en.wikipedia.org/wiki/Mercury (Element)"
msgstr ""
#: src/periodic_table_data.py:4345
msgid ""
"Mercury is a chemical element with symbol Hg and atomic number 80. It is "
"commonly known as quicksilver and was formerly named hydrargyrum (/haɪ"
"ˈdrɑːrdʒərəm/). A heavy, silvery d-block element, mercury is the only "
"metallic element that is liquid at standard conditions for temperature and "
"pressure; the only other element that is liquid under these conditions is "
"bromine, though metals such as caesium, gallium, and rubidium melt just "
"above room temperature."
msgstr ""
#: src/periodic_table_data.py:4377
msgid "Thallium"
msgstr ""
#: src/periodic_table_data.py:4391
msgid "https://en.wikipedia.org/wiki/Thallium"
msgstr ""
#: src/periodic_table_data.py:4395
msgid ""
"Thallium is a chemical element with symbol Tl and atomic number 81. This "
"soft gray post-transition metal is not found free in nature. When isolated, "
"it resembles tin, but discolors when exposed to air."
msgstr ""
#: src/periodic_table_data.py:4427
msgid "Lead"
msgstr ""
#: src/periodic_table_data.py:4428
msgid "metallic gray"
msgstr ""
#: src/periodic_table_data.py:4441
msgid "https://en.wikipedia.org/wiki/Lead_(element)"
msgstr ""
#: src/periodic_table_data.py:4445
msgid ""
"Lead (/lɛd/) is a chemical element in the carbon group with symbol Pb (from "
"Latin:plumbum) and atomic number 82. Lead is a soft, malleable and heavy "
"post-transition metal. Metallic lead has a bluish-white color after being "
"freshly cut, but it soon tarnishes to a dull grayish color when exposed to "
"air."
msgstr ""
#: src/periodic_table_data.py:4479
msgid "Bismuth"
msgstr ""
#: src/periodic_table_data.py:4480
msgid "lustrous silver"
msgstr ""
#: src/periodic_table_data.py:4493
msgid "https://en.wikipedia.org/wiki/Bismuth"
msgstr ""
#: src/periodic_table_data.py:4497
msgid ""
"Bismuth is a chemical element with symbol Bi and atomic number 83. Bismuth, "
"a pentavalent post-transition metal, chemically resembles arsenic and "
"antimony. Elemental bismuth may occur naturally, although its sulfide and "
"oxide form important commercial ores."
msgstr ""
#: src/periodic_table_data.py:4532
msgid "Polonium"
msgstr ""
#: src/periodic_table_data.py:4546
msgid "https://en.wikipedia.org/wiki/Polonium"
msgstr ""
#: src/periodic_table_data.py:4550
msgid ""
"Polonium is a chemical element with symbol Po and atomic number 84, "
"discovered in 1898 by Marie Curie and Pierre Curie. A rare and highly "
"radioactive element with no stable isotopes, polonium is chemically similar "
"to bismuth and tellurium, and it occurs in uranium ores. Applications of "
"polonium are few."
msgstr ""
#: src/periodic_table_data.py:4579 src/periodic_table_data.py:4681
#: src/periodic_table_data.py:5353 src/periodic_table_data.py:5405
#: src/periodic_table_data.py:5457
msgid "days"
msgstr ""
#: src/periodic_table_data.py:4583
msgid "Astatine"
msgstr ""
#: src/periodic_table_data.py:4584
msgid "unknown, probably metallic"
msgstr ""
#: src/periodic_table_data.py:4597
msgid "https://en.wikipedia.org/wiki/Astatine"
msgstr ""
#: src/periodic_table_data.py:4601
msgid ""
"Astatine is a very rare radioactive chemical element with the chemical "
"symbol At and atomic number 85. It occurs on Earth as the decay product of "
"various heavier elements. All its isotopes are short-lived; the most stable "
"is astatine-210, with a half-life of 8.1 hours."
msgstr ""
#: src/periodic_table_data.py:4630 src/periodic_table_data.py:5613
#: src/periodic_table_data.py:5813 src/periodic_table_data.py:5863
#: src/periodic_table_data.py:5913 src/periodic_table_data.py:5963
#: src/periodic_table_data.py:6013 src/periodic_table_data.py:6063
#: src/periodic_table_data.py:6113 src/periodic_table_data.py:6163
#: src/periodic_table_data.py:6213 src/periodic_table_data.py:6263
#: src/periodic_table_data.py:6313
msgid "seconds"
msgstr ""
#: src/periodic_table_data.py:4634
msgid "Radon"
msgstr ""
#: src/periodic_table_data.py:4635
msgid "colorless gas, occasionally glows green or red in discharge tubes"
msgstr ""
#: src/periodic_table_data.py:4648
msgid "https://en.wikipedia.org/wiki/Radon"
msgstr ""
#: src/periodic_table_data.py:4652
msgid ""
"Radon is a chemical element with symbol Rn and atomic number 86. It is a "
"radioactive, colorless, odorless, tasteless noble gas, occurring naturally "
"as a decay product of radium. Its most stable isotope, 222Rn, has a half-"
"life of 3.8 days."
msgstr ""
#: src/periodic_table_data.py:4685
msgid "Francium"
msgstr ""
#: src/periodic_table_data.py:4699
msgid "https://en.wikipedia.org/wiki/Francium"
msgstr ""
#: src/periodic_table_data.py:4703
msgid ""
"Francium is a chemical element with symbol Fr and atomic number 87. It used "
"to be known as eka-caesium and actinium K. It is the second-least "
"electronegative element, behind only caesium. Francium is a highly "
"radioactive metal that decays into astatine, radium, and radon."
msgstr ""
#: src/periodic_table_data.py:4733 src/periodic_table_data.py:5509
#: src/periodic_table_data.py:5713 src/periodic_table_data.py:5763
msgid "minutes"
msgstr ""
#: src/periodic_table_data.py:4737
msgid "Radium"
msgstr ""
#: src/periodic_table_data.py:4751
msgid "https://en.wikipedia.org/wiki/Radium"
msgstr ""
#: src/periodic_table_data.py:4755
msgid ""
"Radium is a chemical element with symbol Ra and atomic number 88. It is the "
"sixth element in group 2 of the periodic table, also known as the alkaline "
"earth metals. Pure radium is almost colorless, but it readily combines with "
"nitrogen (rather than oxygen) on exposure to air, forming a black surface "
"layer of radium nitride (Ra3N2)."
msgstr ""
#: src/periodic_table_data.py:4789
msgid "Actinium"
msgstr ""
#: src/periodic_table_data.py:4793 src/periodic_table_data.py:4846
#: src/periodic_table_data.py:4900 src/periodic_table_data.py:4951
#: src/periodic_table_data.py:5003 src/periodic_table_data.py:5054
#: src/periodic_table_data.py:5105 src/periodic_table_data.py:5156
#: src/periodic_table_data.py:5207 src/periodic_table_data.py:5258
#: src/periodic_table_data.py:5309 src/periodic_table_data.py:5361
#: src/periodic_table_data.py:5413 src/periodic_table_data.py:5465
msgid "actinide"
msgstr ""
#: src/periodic_table_data.py:4803
msgid "https://en.wikipedia.org/wiki/Actinium"
msgstr ""
#: src/periodic_table_data.py:4807
msgid ""
"Actinium is a radioactive chemical element with symbol Ac (not to be "
"confused with the abbreviation for an acetyl group) and atomic number 89, "
"which was discovered in 1899. It was the first non-primordial radioactive "
"element to be isolated. Polonium, radium and radon were observed before "
"actinium, but they were not isolated until 1902."
msgstr ""
#: src/periodic_table_data.py:4838 src/periodic_table_data.py:5561
#: src/periodic_table_data.py:5663
msgid "hours"
msgstr ""
#: src/periodic_table_data.py:4842
msgid "Thorium"
msgstr ""
#: src/periodic_table_data.py:4843
msgid "silvery, often with black tarnish"
msgstr ""
#: src/periodic_table_data.py:4856
msgid "https://en.wikipedia.org/wiki/Thorium"
msgstr ""
#: src/periodic_table_data.py:4860
msgid ""
"Thorium is a chemical element with symbol Th and atomic number 90. A "
"radioactive actinide metal, thorium is one of only two significantly "
"radioactive elements that still occur naturally in large quantities as a "
"primordial element (the other being uranium). It was discovered in 1828 by "
"the Norwegian Reverend and amateur mineralogist Morten Thrane Esmark and "
"identified by the Swedish chemist Jöns Jakob Berzelius, who named it after "
"Thor, the Norse god of thunder."
msgstr ""
#: src/periodic_table_data.py:4896
msgid "Protactinium"
msgstr ""
#: src/periodic_table_data.py:4897
msgid "bright, silvery metallic luster"
msgstr ""
#: src/periodic_table_data.py:4910
msgid "https://en.wikipedia.org/wiki/Protactinium"
msgstr ""
#: src/periodic_table_data.py:4914
msgid ""
"Protactinium is a chemical element with symbol Pa and atomic number 91. It "
"is a dense, silvery-gray metal which readily reacts with oxygen, water vapor "
"and inorganic acids. It forms various chemical compounds where protactinium "
"is usually present in the oxidation state +5, but can also assume +4 and "
"even +2 or +3 states."
msgstr ""
#: src/periodic_table_data.py:4947
msgid "Uranium"
msgstr ""
#: src/periodic_table_data.py:4961
msgid "https://en.wikipedia.org/wiki/Uranium"
msgstr ""
#: src/periodic_table_data.py:4965
msgid ""
"Uranium is a chemical element with symbol U and atomic number 92. It is a "
"silvery-white metal in the actinide series of the periodic table. A uranium "
"atom has 92 protons and 92 electrons, of which 6 are valence electrons."
msgstr ""
#: src/periodic_table_data.py:4999
msgid "Neptunium"
msgstr ""
#: src/periodic_table_data.py:5013
msgid "https://en.wikipedia.org/wiki/Neptunium"
msgstr ""
#: src/periodic_table_data.py:5017
msgid ""
"Neptunium is a chemical element with symbol Np and atomic number 93. A "
"radioactive actinide metal, neptunium is the first transuranic element. Its "
"position in the periodic table just after uranium, named after the planet "
"Uranus, led to it being named after Neptune, the next planet beyond Uranus."
msgstr ""
#: src/periodic_table_data.py:5050
msgid "Plutonium"
msgstr ""
#: src/periodic_table_data.py:5051
msgid "silvery white, tarnishing to dark gray in air"
msgstr ""
#: src/periodic_table_data.py:5064
msgid "https://en.wikipedia.org/wiki/Plutonium"
msgstr ""
#: src/periodic_table_data.py:5068
msgid ""
"Plutonium is a transuranic radioactive chemical element with symbol Pu and "
"atomic number 94. It is an actinide metal of silvery-gray appearance that "
"tarnishes when exposed to air, and forms a dull coating when oxidized. The "
"element normally exhibits six allotropes and four oxidation states."
msgstr ""
#: src/periodic_table_data.py:5101
msgid "Americium"
msgstr ""
#: src/periodic_table_data.py:5115
msgid "https://en.wikipedia.org/wiki/Americium"
msgstr ""
#: src/periodic_table_data.py:5119
msgid ""
"Americium is a radioactive transuranic chemical element with symbol Am and "
"atomic number 95. This member of the actinide series is located in the "
"periodic table under the lanthanide element europium, and thus by analogy "
"was named after the Americas. Americium was first produced in 1944 by the "
"group of Glenn T.Seaborg from Berkeley, California, at the metallurgical "
"laboratory of University of Chicago."
msgstr ""
#: src/periodic_table_data.py:5152
msgid "Curium"
msgstr ""
#: src/periodic_table_data.py:5153
msgid "silvery metallic, glows purple in the dark"
msgstr ""
#: src/periodic_table_data.py:5166
msgid "https://en.wikipedia.org/wiki/Curium"
msgstr ""
#: src/periodic_table_data.py:5170
msgid ""
"Curium is a transuranic radioactive chemical element with symbol Cm and "
"atomic number 96. This element of the actinide series was named after Marie "
"and Pierre Curie – both were known for their research on radioactivity. "
"Curium was first intentionally produced and identified in July 1944 by the "
"group of Glenn T. Seaborg at the University of California, Berkeley."
msgstr ""
#: src/periodic_table_data.py:5203
msgid "Berkelium"
msgstr ""
#: src/periodic_table_data.py:5217
msgid "https://en.wikipedia.org/wiki/Berkelium"
msgstr ""
#: src/periodic_table_data.py:5221
msgid ""
"Berkelium is a transuranic radioactive chemical element with symbol Bk and "
"atomic number 97. It is a member of the actinide and transuranium element "
"series. It is named after the city of Berkeley, California, the location of "
"the University of California Radiation Laboratory where it was discovered in "
"December 1949."
msgstr ""
#: src/periodic_table_data.py:5254
msgid "Californium"
msgstr ""
#: src/periodic_table_data.py:5268
msgid "https://en.wikipedia.org/wiki/Californium"
msgstr ""
#: src/periodic_table_data.py:5272
msgid ""
"Californium is a radioactive metallic chemical element with symbol Cf and "
"atomic number 98. The element was first made in 1950 at the University of "
"California Radiation Laboratory in Berkeley, by bombarding curium with alpha "
"particles (helium-4 ions). It is an actinide element, the sixth transuranium "
"element to be synthesized, and has the second-highest atomic mass of all the "
"elements that have been produced in amounts large enough to see with the "
"unaided eye (after einsteinium)."
msgstr ""
#: src/periodic_table_data.py:5305
msgid "Einsteinium"
msgstr ""
#: src/periodic_table_data.py:5306
msgid "silver-colored"
msgstr ""
#: src/periodic_table_data.py:5319
msgid "https://en.wikipedia.org/wiki/Einsteinium"
msgstr ""
#: src/periodic_table_data.py:5323
msgid ""
"Einsteinium is a synthetic element with symbol Es and atomic number 99. It "
"is the seventh transuranic element, and an actinide. Einsteinium was "
"discovered as a component of the debris of the first hydrogen bomb explosion "
"in 1952, and named after Albert Einstein."
msgstr ""
#: src/periodic_table_data.py:5357
msgid "Fermium"
msgstr ""
#: src/periodic_table_data.py:5371
msgid "https://en.wikipedia.org/wiki/Fermium"
msgstr ""
#: src/periodic_table_data.py:5375
msgid ""
"Fermium is a synthetic element with symbol Fm and atomic number 100. It is a "
"member of the actinide series. It is the heaviest element that can be formed "
"by neutron bombardment of lighter elements, and hence the last element that "
"can be prepared in macroscopic quantities, although pure fermium metal has "
"not yet been prepared."
msgstr ""
#: src/periodic_table_data.py:5409
msgid "Mendelevium"
msgstr ""
#: src/periodic_table_data.py:5423
msgid "https://en.wikipedia.org/wiki/Mendelevium"
msgstr ""
#: src/periodic_table_data.py:5427
msgid ""
"Mendelevium is a synthetic element with chemical symbol Md (formerly Mv) and "
"atomic number 101. A metallic radioactive transuranic element in the "
"actinide series, it is the first element that currently cannot be produced "
"in macroscopic quantities through neutron bombardment of lighter elements. "
"It is the antepenultimate actinide and the ninth transuranic element."
msgstr ""
#: src/periodic_table_data.py:5461
msgid "Nobelium"
msgstr ""
#: src/periodic_table_data.py:5475
msgid "https://en.wikipedia.org/wiki/Nobelium"
msgstr ""
#: src/periodic_table_data.py:5479
msgid ""
"Nobelium is a synthetic chemical element with symbol No and atomic number "
"102. It is named in honor of Alfred Nobel, the inventor of dynamite and "
"benefactor of science. A radioactive metal, it is the tenth transuranic "
"element and is the penultimate member of the actinide series."
msgstr ""
#: src/periodic_table_data.py:5513
msgid "Lawrencium"
msgstr ""
#: src/periodic_table_data.py:5527
msgid "https://en.wikipedia.org/wiki/Lawrencium"
msgstr ""
#: src/periodic_table_data.py:5531
msgid ""
"Lawrencium is a synthetic chemical element with chemical symbol Lr (formerly "
"Lw) and atomic number 103. It is named in honor of Ernest Lawrence, inventor "
"of the cyclotron, a device that was used to discover many artificial "
"radioactive elements. A radioactive metal, lawrencium is the eleventh "
"transuranic element and is also the final member of the actinide series."
msgstr ""
#: src/periodic_table_data.py:5565
msgid "Rutherfordium"
msgstr ""
#: src/periodic_table_data.py:5579
msgid "https://en.wikipedia.org/wiki/Rutherfordium"
msgstr ""
#: src/periodic_table_data.py:5583
msgid ""
"Rutherfordium is a chemical element with symbol Rf and atomic number 104, "
"named in honor of physicist Ernest Rutherford. It is a synthetic element (an "
"element that can be created in a laboratory but is not found in nature) and "
"radioactive; the most stable known isotope, 267Rf, has a half-life of "
"approximately 1.3 hours. In the periodic table of the elements, it is a d - "
"block element and the second of the fourth - row transition elements."
msgstr ""
#: src/periodic_table_data.py:5617
msgid "Dubnium"
msgstr ""
#: src/periodic_table_data.py:5631
msgid "https://en.wikipedia.org/wiki/Dubnium"
msgstr ""
#: src/periodic_table_data.py:5635
msgid ""
"Dubnium is a chemical element with symbol Db and atomic number 105. It is "
"named after the town of Dubna in Russia (north of Moscow), where it was "
"first produced. It is a synthetic element (an element that can be created in "
"a laboratory but is not found in nature) and radioactive; the most stable "
"known isotope, dubnium-268, has a half-life of approximately 28 hours."
msgstr ""
#: src/periodic_table_data.py:5667
msgid "Seaborgium"
msgstr ""
#: src/periodic_table_data.py:5681
msgid "https://en.wikipedia.org/wiki/Seaborgium"
msgstr ""
#: src/periodic_table_data.py:5685
msgid ""
"Seaborgium is a synthetic element with symbol Sg and atomic number 106. Its "
"most stable isotope 271Sg has a half-life of 1.9 minutes. A more recently "
"discovered isotope 269Sg has a potentially slightly longer half-life (ca."
msgstr ""
#: src/periodic_table_data.py:5717
msgid "Bohrium"
msgstr ""
#: src/periodic_table_data.py:5731
msgid "https://en.wikipedia.org/wiki/Bohrium"
msgstr ""
#: src/periodic_table_data.py:5735
msgid ""
"Bohrium is a chemical element with symbol Bh and atomic number 107. It is "
"named after Danish physicist Niels Bohr. It is a synthetic element (an "
"element that can be created in a laboratory but is not found in nature) and "
"radioactive; the most stable known isotope, 270Bh, has a half-life of "
"approximately 61 seconds."
msgstr ""
#: src/periodic_table_data.py:5767
msgid "Hassium"
msgstr ""
#: src/periodic_table_data.py:5781
msgid "https://en.wikipedia.org/wiki/Hassium"
msgstr ""
#: src/periodic_table_data.py:5785
msgid ""
"Hassium is a chemical element with symbol Hs and atomic number 108, named "
"after the German state of Hesse. It is a synthetic element (an element that "
"can be created in a laboratory but is not found in nature) and radioactive; "
"the most stable known isotope, 269Hs, has a half-life of approximately 9.7 "
"seconds, although an unconfirmed metastable state, 277mHs, may have a longer "
"half-life of about 130 seconds. More than 100 atoms of hassium have been "
"synthesized to date."
msgstr ""
#: src/periodic_table_data.py:5817
msgid "Meitnerium"
msgstr ""
#: src/periodic_table_data.py:5821 src/periodic_table_data.py:5871
#: src/periodic_table_data.py:5921 src/periodic_table_data.py:6021
msgid "unknown, probably transition metal"
msgstr ""
#: src/periodic_table_data.py:5831
msgid "https://en.wikipedia.org/wiki/Meitnerium"
msgstr ""
#: src/periodic_table_data.py:5835
msgid ""
"Meitnerium is a chemical element with symbol Mt and atomic number 109. It is "
"an extremely radioactive synthetic element (an element not found in nature "
"that can be created in a laboratory). The most stable known isotope, "
"meitnerium-278, has a half-life of 7.6 seconds."
msgstr ""
#: src/periodic_table_data.py:5867
msgid "Darmstadtium"
msgstr ""
#: src/periodic_table_data.py:5881
msgid "https://en.wikipedia.org/wiki/Darmstadtium"
msgstr ""
#: src/periodic_table_data.py:5885
msgid ""
"Darmstadtium is a chemical element with symbol Ds and atomic number 110. It "
"is an extremely radioactive synthetic element. The most stable known "
"isotope, darmstadtium-281, has a half-life of approximately 10 seconds."
msgstr ""
#: src/periodic_table_data.py:5917
msgid "Roentgenium"
msgstr ""
#: src/periodic_table_data.py:5931
msgid "https://en.wikipedia.org/wiki/Roentgenium"
msgstr ""
#: src/periodic_table_data.py:5935
msgid ""
"Roentgenium is a chemical element with symbol Rg and atomic number 111. It "
"is an extremely radioactive synthetic element (an element that can be "
"created in a laboratory but is not found in nature); the most stable known "
"isotope, roentgenium-282, has a half-life of 2.1 minutes. Roentgenium was "
"first created in 1994 by the GSI Helmholtz Centre for Heavy Ion Research "
"near Darmstadt, Germany."
msgstr ""
#: src/periodic_table_data.py:5967
msgid "Copernicium"
msgstr ""
#: src/periodic_table_data.py:5981
msgid "https://en.wikipedia.org/wiki/Copernicium"
msgstr ""
#: src/periodic_table_data.py:5985
msgid ""
"Copernicium is a chemical element with symbol Cn and atomic number 112. It "
"is an extremely radioactive synthetic element that can only be created in a "
"laboratory. The most stable known isotope, copernicium-285, has a half-life "
"of approximately 29 seconds, but it is possible that this copernicium "
"isotope may have a nuclear isomer with a longer half-life, 8.9 min."
msgstr ""
#: src/periodic_table_data.py:6017
msgid "Nihonium"
msgstr ""
#: src/periodic_table_data.py:6031
msgid "https://en.wikipedia.org/wiki/Ununtrium"
msgstr ""
#: src/periodic_table_data.py:6035
msgid ""
"Nihonium is a chemical element with atomic number 113. It has a symbol Nh. "
"It is a synthetic element (an element that can be created in a laboratory "
"but is not found in nature) and is extremely radioactive; its most stable "
"known isotope, nihonium-286, has a half-life of 20 seconds."
msgstr ""
#: src/periodic_table_data.py:6067
msgid "Flerovium"
msgstr ""
#: src/periodic_table_data.py:6081
msgid "https://en.wikipedia.org/wiki/Flerovium"
msgstr ""
#: src/periodic_table_data.py:6085
msgid ""
"Flerovium is a superheavy artificial chemical element with symbol Fl and "
"atomic number 114. It is an extremely radioactive synthetic element. The "
"element is named after the Flerov Laboratory of Nuclear Reactions of the "
"Joint Institute for Nuclear Research in Dubna, Russia, where the element was "
"discovered in 1998."
msgstr ""
#: src/periodic_table_data.py:6117
msgid "Moscovium"
msgstr ""
#: src/periodic_table_data.py:6121 src/periodic_table_data.py:6171
msgid "unknown, probably post-transition metal"
msgstr ""
#: src/periodic_table_data.py:6131
msgid "https://en.wikipedia.org/wiki/Ununpentium"
msgstr ""
#: src/periodic_table_data.py:6135
msgid ""
"Moscovium is the name of a synthetic superheavy element in the periodic "
"table that has the symbol Mc and has the atomic number 115. It is an "
"extremely radioactive element; its most stable known isotope, moscovium-289, "
"has a half-life of only 220 milliseconds. It is also known as eka-bismuth or "
"simply element 115."
msgstr ""
#: src/periodic_table_data.py:6167
msgid "Livermorium"
msgstr ""
#: src/periodic_table_data.py:6181
msgid "https://en.wikipedia.org/wiki/Livermorium"
msgstr ""
#: src/periodic_table_data.py:6185
msgid ""
"Livermorium is a synthetic superheavy element with symbol Lv and atomic "
"number 116. It is an extremely radioactive element that has only been "
"created in the laboratory and has not been observed in nature. The element "
"is named after the Lawrence Livermore National Laboratory in the United "
"States, which collaborated with the Joint Institute for Nuclear Research in "
"Dubna, Russia to discover livermorium in 2000."
msgstr ""
#: src/periodic_table_data.py:6217
msgid "Tennessine"
msgstr ""
#: src/periodic_table_data.py:6221
msgid "unknown, probably metalloid"
msgstr ""
#: src/periodic_table_data.py:6231
msgid "https://en.wikipedia.org/wiki/Tennessine"
msgstr ""
#: src/periodic_table_data.py:6235
msgid ""
"Tennessine is a superheavy artificial chemical element with an atomic number "
"of 117 and a symbol of Ts. Also known as eka-astatine or element 117, it is "
"the second-heaviest known element and penultimate element of the 7th period "
"of the periodic table. As of 2016, fifteen tennessine atoms have been "
"observed: six when it was first synthesized in 2010, seven in 2012, and two "
"in 2014."
msgstr ""
#: src/periodic_table_data.py:6267
msgid "Oganesson"
msgstr ""
#: src/periodic_table_data.py:6271
msgid "unknown, predicted to be noble gas"
msgstr ""
#: src/periodic_table_data.py:6281
msgid "https://en.wikipedia.org/wiki/Oganesson"
msgstr ""
#: src/periodic_table_data.py:6285
msgid ""
"Oganesson is IUPAC's name for the transactinide element with the atomic "
"number 118 and element symbol Og. It is also known as eka-radon or element "
"118, and on the periodic table of the elements it is a p-block element and "
"the last one of the 7th period. Oganesson is currently the only synthetic "
"member of group 18."
msgstr ""
#: src/periodic_table_data.py:6317
msgid "Ununennium"
msgstr ""
#: src/periodic_table_data.py:6321
msgid "unknown, but predicted to be an alkali metal"
msgstr ""
#: src/periodic_table_data.py:6331
msgid "https://en.wikipedia.org/wiki/Ununennium"
msgstr ""
#: src/periodic_table_data.py:6335
msgid ""
"Ununennium, also known as eka-francium or simply element 119, is the "
"hypothetical chemical element with symbol Uue and atomic number 119. "
"Ununennium and Uue are the temporary systematic IUPAC name and symbol "
"respectively, until a permanent name is decided upon. In the periodic table "
"of the elements, it is expected to be an s-block element, an alkali metal, "
"and the first element in the eighth period."
msgstr ""
|