File size: 143,269 Bytes
9d2d895 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 | {
"countryBrief": {
"identifying": "正在识别国家...",
"locating": "正在定位区域...",
"geocodeFailed": "无法识别此位置的国家",
"retryBtn": "重试",
"closeBtn": "关闭",
"limitedCoverage": "覆盖范围有限",
"instabilityIndex": "不稳定指数",
"notTracked": "未跟踪 — {{country}}不在CII一级监控名单中",
"intelBrief": "情报简报",
"generatingBrief": "正在生成情报简报...",
"topNews": "头条新闻",
"activeSignals": "活跃信号",
"timeline": "7天时间线",
"predictionMarkets": "预测市场",
"loadingMarkets": "正在加载预测市场...",
"infrastructure": "基础设施暴露",
"briefUnavailable": "AI简报不可用 — 请在设置中配置GROQ_API_KEY。",
"cached": "已缓存",
"fresh": "最新",
"noMarkets": "未找到预测市场",
"loadingIndex": "正在加载指数...",
"components": {
"unrest": "动荡",
"conflict": "冲突",
"security": "军事活动",
"information": "信息"
},
"signals": {
"protests": "抗议活动",
"militaryAir": "军用飞机",
"militarySea": "军用舰艇",
"outages": "网络中断",
"earthquakes": "地震",
"displaced": "流离失所",
"climate": "气候压力",
"conflictEvents": "冲突事件",
"activeStrikes": "活跃罢工",
"aviationDisruptions": "机场中断",
"gpsJammingZones": "GPS Jamming Zones"
},
"timeAgo": {
"m": "{{count}}分钟前",
"h": "{{count}}小时前",
"d": "{{count}}天前"
},
"infra": {
"pipeline": "管道",
"cable": "海底电缆",
"datacenter": "数据中心",
"base": "军事基地",
"nuclear": "附近核设施",
"port": "港口"
},
"levels": {
"critical": "危急",
"high": "高",
"elevated": "升高",
"moderate": "中等",
"normal": "正常",
"low": "低"
},
"trends": {
"rising": "上升",
"falling": "下降",
"stable": "稳定"
},
"militaryActivity": "军事活动",
"economicIndicators": "经济指标",
"ownFlights": "本国航班",
"foreignFlights": "外国航班",
"navalVessels": "海军舰艇",
"foreignPresence": "外国驻军",
"nearestBases": "最近的军事基地",
"noBasesNearby": "600公里范围内没有基地。",
"noInfrastructure": "600公里范围内未发现关键基础设施。",
"noGeometry": "没有可用于基础设施关联的几何数据。",
"noSignals": "近期无高严重性信号。",
"assessmentUnavailable": "评估不可用。",
"noNews": "近期无该国相关报道。",
"noIndicators": "该国指标数据不可用。",
"nearbyPorts": "附近港口",
"detected": "已检测",
"notDetected": "无",
"ciiUnavailable": "该国CII评分不可用。",
"chips": {
"criticalNews": "重要新闻",
"protests": "抗议活动",
"militaryAir": "军事航空",
"navalVessels": "海军舰艇",
"outages": "中断",
"aisDisruptions": "AIS中断",
"satelliteFires": "卫星火点",
"temporalAnomalies": "时间异常",
"cyberThreats": "网络威胁",
"earthquakes": "地震",
"displaced": "流离失所",
"climateStress": "气候压力",
"conflictEvents": "冲突事件",
"activeStrikes": "活跃打击",
"doNotTravel": "禁止旅行",
"reconsiderTravel": "重新考虑旅行",
"exerciseCaution": "谨慎行事",
"advisory": "旅行提醒",
"activeSirens": "警报启动中",
"sirens24h": "警报 / 24小时",
"aviationDisruptions": "航空中断",
"gpsJammingZones": "GPS干扰区域"
},
"fallback": {
"instabilityIndex": "**不稳定指数:{{score}}/100**({{level}},{{trend}})",
"protestsDetected": "检测到{{count}}起活跃抗议",
"aircraftTracked": "追踪到{{count}}架军用飞机",
"vesselsTracked": "追踪到{{count}}艘军用舰艇",
"internetOutages": "{{count}}起互联网中断",
"recentEarthquakes": "{{count}}起近期地震",
"stockIndex": "股票指数:{{value}}",
"activeStrikes": "检测到{{count}}起活跃罢工"
},
"countryFacts": "国家概况",
"loadingFacts": "正在加载国家概况...",
"noFacts": "国家概况不可用。",
"facts": {
"headOfState": "国家元首",
"population": "人口",
"capital": "首都",
"languages": "语言",
"currencies": "货币",
"area": "面积"
},
"loadingResilienceScore": "Loading resilience score…",
"resilienceScoreUnavailable": "Resilience score unavailable.",
"china": {
"title": "中国国家概览",
"description": "基于现有公共数据契约的宏观、市场、贸易、能源与运行可用性现状。",
"policyEvents": "政策与执法",
"energy": "能源",
"availability": "灾害与航空",
"observed": "数据日期:",
"published": "发布日期:",
"effective": "生效日期:",
"sectors": "涉及行业:",
"entities": "涉及实体:",
"translation": "翻译状态:",
"source": "来源:",
"imfGrowth": "IMF 增长预测",
"creditGdp": "信贷占 GDP 比重",
"strategicTrade": "战略贸易敞口",
"crudeImports": "原油进口量",
"gasDemand": "天然气需求",
"energyMix": "电力结构",
"coal": "煤炭",
"noMajorDisruptions": "未报告重大中断",
"activeDisruptions_one": "{{count}} 起活跃中断",
"activeDisruptions_other": "{{count}} 起活跃中断",
"activeSignals_one": "{{count}} 个活跃信号",
"activeSignals_other": "{{count}} 个活跃信号",
"aviationSource": "航空监测",
"hazardSource": "国家情报信号",
"marketSource": "国家市场指数",
"ccfiSource": "上海航运交易所",
"comtradeSource": "联合国商品贸易数据库(报告方 156)",
"sourceUnavailable": "来源不可用",
"policyUnavailable": "官方政策与执法事件目前不可用。",
"policyPartial": "{{count}} 个官方机构的数据暂时降级。",
"status": {
"loading": "加载中",
"available": "可用",
"partial": "部分",
"stale": "过期",
"unavailable": "不可用"
},
"macroSignals": "Macro Signals",
"crossStraitActivity": "Cross-Strait Activity",
"corporateDisclosures": "Corporate Disclosures",
"corridorConditions": "Corridor Conditions",
"activityNowcast": "Activity Nowcast",
"decisionSignalsUnavailable": "The China decision-signal snapshot is currently unavailable."
}
},
"header": {
"world": "世界",
"tech": "科技",
"live": "实时",
"search": "搜索",
"settings": "设置",
"sources": "数据源",
"copyLink": "复制链接",
"downloadApp": "下载应用",
"fullscreen": "全屏",
"pinMap": "将地图固定到顶部",
"selectRegion": "选择地区",
"viewOnGitHub": "在GitHub上查看",
"filterSources": "筛选数据源...",
"sourcesEnabled": "已启用{{enabled}}/{{total}}",
"finance": "金融",
"panelDisplayCaption": "选择要在仪表板上显示的面板",
"tabSettings": "设置",
"tabPanels": "面板",
"tabSources": "来源",
"languageLabel": "语言",
"sourceRegionAll": "全部",
"sourceRegionWorldwide": "全球",
"sourceRegionUS": "美国",
"sourceRegionMiddleEast": "中东",
"sourceRegionAfrica": "非洲",
"sourceRegionLatAm": "拉丁美洲",
"sourceRegionAsiaPacific": "亚太地区",
"sourceRegionEurope": "欧洲",
"sourceRegionTopical": "专题",
"sourceRegionIntel": "情报",
"sourceRegionTechNews": "科技新闻",
"sourceRegionAiMl": "AI与ML",
"sourceRegionStartupsVc": "创业与风投",
"sourceRegionRegionalTech": "区域生态",
"sourceRegionDeveloper": "开发者",
"sourceRegionCybersecurity": "网络安全",
"sourceRegionTechPolicy": "政策与研究",
"sourceRegionTechMedia": "媒体与播客",
"sourceRegionMarkets": "市场与分析",
"sourceRegionFixedIncomeFx": "固定收益与外汇",
"sourceRegionCommodities": "大宗商品",
"sourceRegionCryptoDigital": "加密与数字",
"sourceRegionCentralBanks": "央行与经济",
"sourceRegionDeals": "交易与企业",
"sourceRegionFinRegulation": "金融监管",
"sourceRegionGulfMena": "海湾与中东",
"filterPanels": "筛选面板...",
"resetLayout": "重置布局",
"resetLayoutTooltip": "恢复默认面板排列",
"unsavedChanges": "您有未保存的面板更改。要放弃吗?",
"panelCatCore": "核心",
"panelCatIntelligence": "情报",
"panelCatRegionalNews": "地区新闻",
"panelCatMarketsFinance": "市场与金融",
"panelCatTopical": "专题",
"panelCatDataTracking": "数据与追踪",
"panelCatTechAi": "科技与AI",
"panelCatStartupsVc": "创业与风投",
"panelCatSecurityPolicy": "安全与政策",
"panelCatMarkets": "市场",
"panelCatFixedIncomeFx": "固定收益与外汇",
"panelCatCommodities": "大宗商品",
"panelCatCryptoDigital": "加密与数字资产",
"panelCatCentralBanks": "央行与经济",
"panelCatDeals": "交易与机构",
"panelCatGulfMena": "海湾与中东",
"cached": "已缓存",
"unavailable": "不可用",
"commodity": "商品",
"energy": "能源",
"tabNotifications": "通知",
"panelCatCorrelation": "相关性",
"panelCatCommodityPrices": "价格与市场",
"panelCatMining": "采矿与供应链",
"panelCatCommodityEcon": "经济与贸易",
"panelCatHappyNews": "好消息",
"panelCatHappyPlanet": "地球与慈善",
"embed": "Embed"
},
"panels": {
"liveNews": "实时新闻",
"markets": "市场",
"map": "全球态势",
"techMap": "全球科技",
"techHubs": "热门科技中心",
"status": "系统状态",
"insights": "AI洞察",
"strategicPosture": "AI战略态势",
"cii": "国家不稳定性",
"strategicRisk": "战略风险概览",
"intel": "情报动态",
"gdeltIntel": "实时情报",
"cascade": "基础设施级联",
"politics": "世界新闻",
"us": "美国",
"europe": "欧洲",
"middleeast": "中东",
"africa": "非洲",
"latam": "拉丁美洲",
"asia": "亚太地区",
"energy": "能源与资源",
"gov": "政府",
"thinktanks": "智库",
"polymarket": "预测",
"commodities": "大宗商品",
"economic": "经济指标",
"tradePolicy": "贸易政策",
"supplyChain": "供应链",
"finance": "金融",
"tech": "科技",
"crypto": "加密货币",
"heatmap": "板块热力图",
"ai": "AI/ML",
"layoffs": "裁员追踪",
"monitors": "我的监控",
"satelliteFires": "火灾",
"macroSignals": "市场雷达",
"etfFlows": "BTC ETF追踪",
"stablecoins": "稳定币",
"deduction": "推断局势",
"ucdpEvents": "UCDP冲突事件",
"giving": "全球捐赠",
"displacement": "UNHCR流离失所",
"climate": "气候异常",
"populationExposure": "人口暴露",
"securityAdvisories": "安全警告",
"orefSirens": "Israel Sirens",
"telegramIntel": "Telegram 情报",
"startups": "创业公司与风投",
"vcblogs": "风投洞察与文章",
"regionalStartups": "全球创业新闻",
"unicorns": "独角兽追踪",
"accelerators": "加速器与演示日",
"security": "网络安全",
"policy": "AI政策与监管",
"regulation": "AI监管仪表盘",
"finRegulation": "金融监管",
"hardware": "半导体与硬件",
"cloud": "云计算与基础设施",
"dev": "开发者社区",
"github": "GitHub趋势",
"ipo": "IPO与SPAC",
"funding": "融资与风投",
"producthunt": "Product Hunt",
"events": "科技活动",
"serviceStatus": "服务状态",
"techReadiness": "科技就绪指数",
"gccInvestments": "GCC投资",
"geoHubs": "地缘政治枢纽",
"gulfEconomies": "海湾经济",
"gulfIndices": "海湾指数",
"gulfCurrencies": "海湾货币",
"gulfOil": "海湾石油",
"bigmac": "Real Big Mac Index",
"fearGreed": "Fear & Greed",
"marketImplications": "AI 市场影响",
"energyComplex": "能源综合体",
"oilInventories": "石油库存",
"energyCrisis": "能源危机追踪器",
"goldIntelligence": "黄金情报",
"wsbTickerScanner": "WSB 股票扫描器",
"internetDisruptions": "互联网中断",
"internetDisruptionsTabs": {
"outages": "中断",
"ddos": "DDoS 攻击",
"anomalies": "异常"
},
"liveWebcams": "实时网络摄像头",
"windyWebcams": "Windy 实时网络摄像头",
"groceryBasket": "食品杂货指数",
"groceryItem": "商品",
"bigmacDesc": "中东国家的巨无霸汉堡价格(巨无霸指数)",
"bigmacWow": "WoW",
"bigmacCountry": "国家",
"faoFoodPriceIndex": "粮农组织食品价格指数",
"fuelPrices": "燃料价格",
"fuelPricesDesc": "全球 30 多个国家的零售汽油和柴油价格",
"fuelPricesCountry": "国家",
"fuelPricesGasoline": "汽油",
"fuelPricesDiesel": "柴油",
"fuelPricesSource": "来源",
"groceryBasketDesc": "全球 24 个国家的食品杂货篮子价格对比",
"airlineIntel": "✈️ 航空公司情报",
"consumerPrices": "消费者价格",
"marketBreadth": "市场广度",
"climateNews": "气候新闻"
},
"commands": {
"prefixes": {
"map": "地图",
"panel": "面板",
"brief": "简报"
},
"categories": {
"navigate": "导航",
"layers": "图层",
"panels": "面板",
"view": "视图",
"actions": "操作",
"country": "国家"
},
"regions": {
"global": "全球视图",
"mena": "中东和北非",
"eu": "欧洲",
"asia": "亚太地区",
"america": "美洲",
"africa": "非洲",
"latam": "拉丁美洲",
"oceania": "大洋洲"
},
"tips": {
"map": "输入国家名称以在地图上飞往该位置",
"panel": "输入面板名称以滚动到该面板",
"brief": "输入国家名称以获取情报简报",
"layers": "输入 \"military\" 或 \"finance\" 以应用图层预设",
"time": "输入 \"1h\"、\"24h\" 或 \"7d\" 按时间筛选",
"settings": "输入 \"dark mode\"、\"settings\" 或 \"fullscreen\"",
"mapExample": "iran",
"panelExample": "news",
"briefExample": "brief china",
"layersExample": "military layers",
"timeExample": "24h",
"settingsExample": "dark mode",
"flight": "按呼号搜索实时航班 (PRO)",
"flightExample": "UAE528"
},
"keywords": {
"military": "军事",
"finance": "金融",
"infrastructure": "基础设施",
"intelligence": "情报",
"news": "新闻",
"dark": "暗色",
"light": "亮色",
"settings": "设置",
"fullscreen": "全屏",
"refresh": "刷新"
},
"labels": {
"layers": {
"military": "显示军事图层",
"finance": "显示金融图层",
"infra": "显示基础设施图层",
"intel": "显示情报图层",
"all": "启用全部图层",
"none": "隐藏全部图层",
"minimal": "最少图层(冲突 + 热点)"
},
"layer": {
"ais": "切换AIS船舶追踪",
"flights": "切换军事航班",
"conflicts": "切换冲突区域",
"hotspots": "切换情报热点",
"protests": "切换抗议与骚乱",
"cables": "切换海底电缆",
"pipelines": "切换管道",
"nuclear": "切换核设施",
"bases": "切换军事基地",
"fires": "切换卫星火点",
"weather": "切换天气覆盖",
"cyber": "切换网络威胁",
"displacement": "切换流离失所流向",
"climate": "切换气候异常",
"outages": "切换互联网中断",
"tradeRoutes": "切换贸易路线"
},
"view": {
"dark": "切换到暗色模式",
"light": "切换到亮色模式",
"fullscreen": "切换全屏",
"settings": "打开设置",
"refresh": "刷新所有数据"
},
"time": {
"1h": "显示过去1小时的事件",
"6h": "显示过去6小时的事件",
"24h": "显示过去24小时的事件",
"48h": "显示过去48小时的事件",
"7d": "显示过去7天的事件"
}
}
},
"modals": {
"search": {
"placeholder": "搜索或输入命令...",
"placeholderTech": "搜索或输入命令...",
"placeholderFinance": "搜索或输入命令...",
"recent": "最近搜索",
"empty": "搜索数据或执行命令",
"noResults": "无结果",
"commands": "命令",
"results": "结果",
"seeAllCommands": "查看所有命令",
"hideCommandList": "返回",
"navigate": "导航",
"select": "选择",
"close": "关闭",
"types": {
"country": "国家",
"news": "新闻",
"hotspot": "热点",
"market": "市场",
"prediction": "预测",
"conflict": "冲突",
"base": "军事基地",
"pipeline": "管道",
"cable": "海底电缆",
"datacenter": "数据中心",
"earthquake": "地震",
"outage": "网络中断",
"nuclear": "核设施",
"irradiator": "辐照器",
"techcompany": "科技公司",
"ailab": "AI实验室",
"startup": "创业公司",
"techevent": "科技活动",
"techhq": "科技总部",
"accelerator": "加速器",
"flight": "航班"
},
"flightOnGround": "地面停靠",
"flightAirborne": "FL{{fl}} · {{kts}} 节",
"flightMilitary": "军用 · {{type}} · FL{{fl}}",
"flightMilitaryOnGround": "军用 · {{type}} · 地面停靠",
"flightSearchHint": "按 Enter 或点击查看实时位置",
"flightNotFound": "未找到 {{callsign}} 的实时位置",
"addPanel": "Add"
},
"signal": {
"title": "情报发现",
"soundAlerts": "声音警报",
"dismiss": "忽略",
"confidence": "置信度",
"country": "国家:",
"scoreChange": "评分变化:",
"instabilityLevel": "不稳定等级:",
"primaryDriver": "主要驱动因素:",
"location": "位置:",
"eventTypes": "事件类型:",
"eventCount": "事件数量:",
"eventCountValue": "24小时内{{count}}个事件",
"source": "来源:",
"countriesAffected": "受影响国家:",
"impactLevel": "影响等级:",
"focalPoints": "关联焦点",
"newsCorrelation": "新闻关联",
"viewOnMap": "在地图上查看",
"whyItMatters": "重要原因:",
"action": "行动:",
"note": "备注:",
"suppress": "屏蔽此词条",
"predictionLeading": "预测领先",
"newsLeading": "新闻领先",
"silentDivergence": "静默背离",
"velocitySpike": "速度激增",
"keywordSpike": "关键词激增",
"convergence": "趋同",
"triangulation": "三角验证",
"flowDrop": "资金流下降",
"flowPriceDivergence": "资金流/价格背离",
"geoConvergence": "地理趋同",
"marketMove": "市场异动解读",
"sectorCascade": "板块级联",
"militarySurge": "军事活动激增"
},
"story": {
"generating": "正在生成报道...",
"close": "关闭",
"shareTitle": "分享报道",
"save": "保存",
"whatsapp": "WhatsApp",
"twitter": "X",
"linkedin": "LinkedIn",
"copyLink": "链接",
"saved": "已保存!",
"copied": "已复制!",
"opening": "正在打开...",
"error": "生成报道失败。"
},
"mobileWarning": {
"title": "移动端视图",
"description": "您正在查看针对中东北非地区优化的简化移动版本,已启用基本图层。",
"tip": "提示:使用视图按钮(全球/美国/中东北非)切换区域。点击标记查看详情。",
"dontShowAgain": "不再显示",
"gotIt": "知道了"
},
"downloadBanner": {
"description": "原生性能,安全的本地密钥存储,离线地图切片。",
"macSilicon": "macOS (Apple Silicon)",
"macIntel": "macOS (Intel)",
"windows": "Windows (.exe)",
"linux": "Linux (.AppImage)",
"showAllPlatforms": "显示所有平台",
"showLess": "收起"
},
"runtimeConfig": {
"title": "桌面端配置",
"alertTitle": {
"configured": "桌面端设置已配置",
"needsKeys": "配置API密钥以解锁功能",
"some": "部分功能需要API密钥"
},
"skipSetup": "跳过设置 — 一个World Monitor许可证即可解锁全部功能。加入候补名单抢先体验。",
"summary": {
"desktop": "桌面模式",
"web": "网页模式(只读,服务器管理凭证)",
"secrets": "个本地密钥已配置",
"available": "项功能可用"
},
"status": {
"ready": "就绪",
"staged": "已暂存",
"needsKeys": "需要密钥",
"invalid": "无效",
"missing": "缺失",
"valid": "有效",
"looksInvalid": "似乎无效"
},
"placeholder": {
"setSecret": "设置密钥",
"staged": "已暂存(点击确定保存)"
},
"help": {
"URLHAUS_AUTH_KEY": "用于URLhaus和ThreatFox API。",
"OTX_API_KEY": "网络威胁图层的可选增强数据源。",
"ABUSEIPDB_API_KEY": "恶意IP信誉的可选增强数据源。",
"FINNHUB_API_KEY": "实时股票报价和市场数据。",
"NASA_FIRMS_API_KEY": "消防信息资源管理系统。",
"OLLAMA_API_URL": "e.g. http://127.0.0.1:11434 (Ollama) or http://127.0.0.1:1234/v1 (LM Studio) — OpenAI-compatible endpoint.",
"OLLAMA_MODEL": "e.g. llama3.1:8b — model tag to use for summarization."
},
"reserveEarlyAccess": "预留早期访问权限"
},
"settingsWindow": {
"validating": "正在验证API密钥...",
"saved": "设置已保存",
"failed": "保存失败:{{error}}",
"verifyFailed": "已保存已验证的密钥。失败:{{errors}}",
"verboseOn": "详细日志模式已开启(已保存)",
"verboseOff": "详细日志模式已关闭(已保存)",
"invokeFail": "无法运行{{command}}。请检查桌面日志。",
"openLogs": "已打开日志文件夹",
"openApiLog": "已打开API日志",
"sidecarError": "无法连接到sidecar切换详细模式",
"noTraffic": "尚未记录任何流量。",
"sidecarUnreachable": "Sidecar不可达。",
"logCleared": "日志已清除。",
"worldMonitor": {
"apiKey": {
"title": "许可证 / API 密钥",
"placeholder": "wm_xxxxxxxxxxxxxxxxxxxxxxxx",
"description": "API Starter 和 API Business 订阅者可在网页控制台的 Settings → API Keys 中创建此密钥。如果完整密钥丢失,请撤销并创建替代密钥。"
},
"dividerOr": "或",
"register": {
"title": "需要 API 密钥?",
"description": "请访问 worldmonitor.app/docs/api-keys 查看分步说明。手动 API 密钥需要 API Starter 或 API Business 方案。",
"submitBtn": "查看 API 方案"
}
},
"table": {
"time": "时间",
"method": "方法",
"path": "路径",
"status": "状态",
"duration": "耗时"
},
"shellTitle": "World Monitor 设置",
"shellSearchPlaceholder": "搜索设置...",
"shellCancel": "取消",
"shellSaveClose": "保存并关闭",
"freePanelLimit": "免费计划:最多 {{max}} 个面板。升级至 PRO 获得无限面板。",
"freeSourceLimit": "免费计划:最多 {{max}} 个信息源。升级至 PRO 获得无限信息源。"
},
"countryIntel": {
"identifying": "正在识别国家...",
"locating": "正在定位区域...",
"instabilityIndex": "不稳定指数",
"protests": "抗议活动",
"militaryAircraft": "军用飞机",
"militaryVessels": "军用舰艇",
"outages": "网络中断",
"earthquakes": "地震",
"loadingIndex": "正在加载指数...",
"loadingMarkets": "正在加载预测市场...",
"generatingBrief": "正在生成情报简报...",
"cached": "已缓存",
"fresh": "最新",
"noMarkets": "未找到预测市场",
"predictionMarkets": "预测市场",
"unavailable": "AI简报不可用 — 请在设置中配置GROQ_API_KEY。"
},
"countryBrief": {
"identifying": "正在识别国家...",
"locating": "正在定位区域...",
"limitedCoverage": "覆盖范围有限",
"instabilityIndex": "不稳定指数",
"notTracked": "未跟踪 — {{country}}不在CII一级监控名单中",
"intelBrief": "情报简报",
"generatingBrief": "正在生成情报简报...",
"topNews": "头条新闻",
"activeSignals": "活跃信号",
"timeline": "7天时间线",
"predictionMarkets": "预测市场",
"loadingMarkets": "正在加载预测市场...",
"infrastructure": "基础设施暴露",
"briefUnavailable": "AI简报不可用 — 请在设置中配置GROQ_API_KEY。",
"cached": "已缓存",
"fresh": "最新",
"noMarkets": "未找到预测市场",
"loadingIndex": "正在加载指数...",
"components": {
"unrest": "动荡",
"conflict": "冲突",
"security": "军事活动",
"information": "信息"
},
"signals": {
"protests": "抗议活动",
"militaryAir": "军用飞机",
"militarySea": "军用舰艇",
"outages": "网络中断",
"earthquakes": "地震",
"displaced": "流离失所",
"climate": "气候压力",
"conflictEvents": "冲突事件",
"activeStrikes": "活跃罢工",
"aviationDisruptions": "机场中断",
"gpsJammingZones": "GPS Jamming Zones"
},
"timeAgo": {
"m": "{{count}}分钟前",
"h": "{{count}}小时前",
"d": "{{count}}天前"
},
"infra": {
"pipeline": "管道",
"cable": "海底电缆",
"datacenter": "数据中心",
"base": "军事基地",
"nuclear": "附近核设施",
"port": "港口"
}
}
},
"components": {
"webcams": {
"paused": "摄像头已暂停",
"pausedIdle": "摄像头已暂停 — 移动鼠标以恢复",
"regions": {
"all": "全部",
"mideast": "中东",
"europe": "欧洲",
"americas": "美洲",
"asia": "亚洲",
"space": "太空"
},
"play": "播放",
"previewStatus": "实时预览"
},
"positiveNewsFeed": {
"noStories": "此类别暂无报道"
},
"goodThingsDigest": {
"noStories": "暂无报道",
"summarizing": "摘要生成中…"
},
"progressCharts": {
"noData": "暂无进展数据",
"fallbackBadge": "显示静态备用数据 — 实时数据系列不可用",
"fallbackTooltip": "无法连接到实时世界银行数据源。这些图表是从上次验证于 2026 年 2 月的硬编码快照生成的。"
},
"monitor": {
"placeholder": "关键词(逗号分隔)",
"add": "+ 添加监控",
"addKeywords": "添加关键词以监控新闻",
"noMatches": "在{{count}}篇文章中未找到匹配",
"showingMatches": "显示{{total}}个匹配中的{{count}}个",
"match": "匹配",
"matches": "匹配"
},
"regulation": {
"dashboard": "AI Regulation Dashboard",
"timeline": "时间线",
"deadlines": "截止日期",
"regulations": "法规",
"countries": "国家",
"recentActions": "近期监管行动(过去12个月)",
"upcomingDeadlines": "即将到来的合规截止日期",
"globalLandscape": "全球监管格局",
"emptyActions": "无近期监管行动",
"emptyDeadlines": "未来12个月内无合规截止日期",
"keyProvisions": "核心条款",
"learnMore": "了解更多",
"active": "现行",
"proposed": "拟议",
"updated": "已更新",
"actionsCount": "{{count}} actions",
"deadlinesCount": "{{count}} deadlines",
"days": "days",
"activeCount": "Active Regulations ({{count}})",
"proposedCount": "Proposed Regulations ({{count}})",
"moreProvisions": "+{{count}} more...",
"source": "Source",
"stances": {
"strict": "Strict",
"moderate": "Moderate",
"permissive": "Permissive",
"undefined": "Undefined"
},
"infoTooltip": "<strong>监管</strong> 全球监管机构的监管行动、政策变更和执法更新:金融、科技、能源和贸易部门。来源:政府和监管机构官方出版物。"
},
"economic": {
"indicators": "指标",
"gov": "政府",
"noSpending": "无近期政府采购",
"awards": "笔采购",
"noIndicatorData": "尚无指标数据 - FRED可能正在加载",
"fredKeyMissing": "需要FRED API密钥 — 请在设置中添加以启用经济指标",
"in": "于",
"centralBanks": "Central Banks",
"laborMarket": "Labor Market",
"metroUnemployment": "Metro Unemployment",
"noBisData": "BIS data temporarily unavailable - will retry",
"policyRate": "Policy Rate",
"creditToGdp": "Credit / GDP",
"realEer": "Real EER",
"cut": "cut",
"hike": "hike",
"hold": "hold",
"pressure": {
"label": "宏观压力",
"stress": "压力",
"watch": "关注",
"steady": "稳定",
"stressDetail": "波动性和曲线压力升高。",
"watchDetail": "跨市场情况需要密切监控。",
"steadyDetail": "宏观情况暂时稳定。"
},
"infoTooltip": "<strong>宏观压力</strong> 宏观指标、政府支出和央行数据:<ul><li><strong>指标</strong>:VIX、利率、收益率曲线、劳动力、通胀</li><li><strong>政府</strong>:最近美国政府合同奖励</li><li><strong>央行</strong>:BIS 政策利率和汇率数据</li></ul>"
},
"supplyChain": {
"chokepoints": "咽喉要道",
"shipping": "航运",
"minerals": "矿产",
"noChokepoints": "正在加载咽喉要道数据...",
"noShipping": "航运费率数据不可用",
"noMinerals": "正在加载矿产数据...",
"upstreamUnavailable": "供应链数据暂时不可用 — 显示缓存数据",
"spikeAlert": "检测到异常飙升 — 费率显著高于52周均值(周度)",
"warnings": "条警告",
"aisDisruptions": "AIS中断",
"disruption": "Disruption",
"vessels": "vessels",
"incidents7d": "incidents (7d)",
"corridorDisruption": "Corridor Disruption",
"corridor": "Corridor",
"loadingCorridors": "Loading corridor data...",
"mineral": "矿产",
"topProducers": "主要生产国",
"risk": "风险",
"wowChange": "周涨跌",
"riskLevel": "风险等级",
"flowUnavailable": "流量数据不可用",
"containerRates": "集装箱运费",
"bulkShipping": "散货运输",
"economicIndicators": "经济指标",
"loadingHistory": "正在加载过境历史…",
"historyUnavailable": "过境历史不可用",
"transitDataUnavailable": "过境数据不可用(上游数据不完整)",
"infoTooltip": "<strong>供应链监控</strong> 全球物流与资源追踪:<ul><li><strong>战略要道</strong>:海上过境状态、中断评分和船舶数量</li><li><strong>航运</strong>:波罗的海干散货指数和运费趋势</li><li><strong>矿物</strong>:关键矿物浓度风险(HHI)和主要生产国</li></ul>点击要道卡片可展开过境历史图表。"
},
"tradePolicy": {
"tariffs": "关税",
"flows": "贸易流量",
"barriers": "贸易壁垒",
"noTariffData": "无可用关税数据",
"noFlowData": "无可用贸易流量数据",
"noBarriers": "未报告贸易壁垒",
"apiKeyMissing": "需要WTO API密钥 — 请在设置中添加",
"upstreamUnavailable": "WTO数据暂时不可用 — 显示缓存数据",
"exports": "出口",
"imports": "进口",
"yoyChange": "同比变化",
"highTariff": "高",
"moderateTariff": "中等",
"lowTariff": "低",
"overview": "概览",
"noOverviewData": "无关税概览数据",
"mfnAppliedRate": "最惠国税率",
"baselineMfnTariff": "最惠国基准关税",
"effectiveTariffRateLabel": "有效税率",
"gapLabel": "差值",
"gapVsMfnLabel": "与最惠国税率的差值",
"noEffectiveCoverageForCountry": "该国无有效税率数据",
"effectiveMinusBaseline": "有效税率减去世贸组织最惠国基准",
"wtoBaselineMeta": "世贸组织最惠国税率 | {{year}}",
"overviewNoteNoEffective": "这些数据是世贸组织最惠国基准税率,不是当前单边关税行为的税收负担。",
"usBaselineLabel": "美国世贸组织最惠国基准",
"overviewNoteTail": "这些卡片显示世贸组织基准承诺,不是当前实际有效关税负担。",
"revenue": "美国收入",
"noRevenueData": "无关税收入数据",
"treasuryUnavailable": "财政部数据暂时不可用",
"fytdLabel": "财政年度{{year}}至今",
"vsPriorFy": "对比财政年度{{year}}",
"sourceWto": "世贸组织",
"sourceTreasury": "美国财政部",
"colDate": "日期",
"colMonthly": "月度",
"colFytd": "财政年度至今",
"strategicFlows": "战略流动",
"noComtradeData": "无战略流动数据",
"comtradeUnavailable": "联合国贸易数据库数据暂时不可用",
"sourceComtrade": "联合国贸易数据库",
"anomalyBadge": "异常",
"colReporter": "国家",
"colCommodity": "商品",
"colTradeValue": "贸易额",
"infoTooltip": "<strong>贸易政策</strong> 世贸组织基准和关税影响监控:<ul><li><strong>概览</strong>:世贸组织最惠国基准税率及可用时的美国有效税率</li><li><strong>关税</strong>:世贸组织最惠国关税趋势对比美国有效关税估计</li><li><strong>贸易流动</strong>:出口/进口量及年同比变化</li><li><strong>贸易壁垒</strong>:贸易技术壁垒(TBT/SPS)通知</li><li><strong>收入</strong>:月度美国关税收入(美国财政部MTS数据)</li></ul>"
},
"gdelt": {
"empty": "该主题暂无近期文章"
},
"geoHubs": {
"story": "条报道",
"stories": "条报道",
"infoTooltip": "<strong>地缘政治活动枢纽</strong><br>显示新闻活动最多的地区。<br><br><em>枢纽类型:</em><br>• 🏛️ 首都 — 世界各国首都和政府中心<br>• ⚔️ 冲突区 — 活跃冲突地区<br>• ⚓ 战略要地 — 咽喉要道和关键区域<br>• 🏢 国际组织 — 联合国、NATO、IAEA等<br><br><em>活动级别:</em><br>• <span style=\"color: {{highColor}}\">高</span> — 突发新闻或70+评分<br>• <span style=\"color: {{elevatedColor}}\">升高</span> — 评分40-69<br>• <span style=\"color: {{lowColor}}\">低</span> — 评分低于40<br><br>点击枢纽可缩放到其位置。"
},
"techHubs": {
"infoTooltip": "<strong>科技中心活动</strong><br>显示新闻活动最多的科技中心。<br><br><em>活动级别:</em><br>• <span style=\"color: {{highColor}}\">高</span> — 突发新闻或50+评分<br>• <span style=\"color: {{elevatedColor}}\">升高</span> — 评分20-49<br>• <span style=\"color: {{lowColor}}\">低</span> — 评分低于20<br><br>点击中心可缩放到其位置。"
},
"predictions": {
"yes": "是",
"no": "否",
"vol": "交易量",
"closes": "截止",
"leanYes": "Lean Yes",
"leanNo": "Lean No",
"tossUp": "Toss-up"
},
"stablecoins": {
"pegHealth": "锚定健康度",
"supplyVolume": "供应量与交易量",
"token": "代币",
"mcap": "市值",
"vol24h": "24小时交易量",
"chg24h": "24小时变化",
"infoTooltip": "<strong>Stablecoins</strong> Peg health, market cap, and 24h volume for major USD-pegged tokens (USDT, USDC, DAI, BUSD). A broken peg signals systemic risk."
},
"status": {
"updatedAt": "更新于{{time}}"
},
"playback": {
"toggleMode": "切换回放模式",
"live": "实时",
"historicalPlayback": "历史回放",
"close": "关闭",
"skipToStart": "Skip to start",
"previous": "Previous",
"next": "Next",
"skipToEnd": "Skip to end"
},
"pizzint": {
"title": "五角大楼披萨指数",
"defcon": "DEFCON {{level}}",
"updated": "更新于{{timeAgo}}",
"tensionsTitle": "地缘政治紧张局势",
"source": "来源:",
"statusClosed": "已关闭",
"statusSpike": "激增",
"statusHigh": "高",
"statusElevated": "升高",
"statusNominal": "正常",
"statusQuiet": "平静",
"justNow": "刚刚",
"minutesAgo": "{{m}}分钟前",
"hoursAgo": "{{h}}小时前",
"defconLabels": {
"1": "手枪上膛 - 最高战备",
"2": "快速节奏 - 武装部队就绪",
"3": "圆屋 - 提高部队战备",
"4": "双重确认 - 加强情报监视",
"5": "淡出 - 最低战备"
}
},
"strategicPosture": {
"elapsed": "已用时:{{elapsed}}秒",
"clickToView": "点击在地图上查看{{name}}",
"clickToViewMap": "点击在地图上查看",
"refresh": "刷新",
"units": {
"fighters": "战斗机",
"tankers": "加油机",
"awacs": "AWACS",
"recon": "侦察机",
"transport": "运输机",
"bombers": "轰炸机",
"drones": "无人机",
"aircraft": "飞机",
"carriers": "航母",
"destroyers": "驱逐舰",
"frigates": "护卫舰",
"submarines": "潜艇",
"patrol": "巡逻艇",
"auxiliary": "辅助舰",
"navalVessels": "海军舰艇"
},
"infoTooltip": "<strong>方法论</strong><p>按战区聚合军用飞机和海军舰艇。</p><ul><li><strong>正常:</strong>基线活动</li><li><strong>升高:</strong>超过阈值(50+架飞机)</li><li><strong>危急:</strong>高浓度集结(100+架飞机)</li></ul><p><strong>具备打击能力:</strong>加油机 + AWACS + 战斗机数量足以支持持续作战。</p>",
"scanningTheaters": "扫描战区",
"positions": "飞机位置",
"navalVesselsLoading": "海军舰艇",
"theaterAnalysis": "战区分析",
"connectingStreams": "正在连接ADS-B和AIS实时数据流...",
"initialLoadNote": "初始加载需要30-60秒以积累追踪数据",
"acquiringData": "正在获取数据",
"acquiringDesc": "正在连接ADS-B网络获取军用飞行数据。首次加载可能需要30-60秒。",
"openSkyAdsb": "OpenSky ADS-B",
"aisVesselStream": "AIS船舶数据流",
"retryNow": "立即重试",
"feedRateLimited": "数据源请求受限",
"rateLimitedDesc": "OpenSky API有请求限制。面板将在几分钟后自动重试,或您可以立即重试。",
"rateLimitedTip": "提示:高峰时段(UTC 12:00-20:00)通常有更高的限制。",
"tryAgain": "重试",
"badges": {
"critical": "危急",
"elevated": "升高",
"normal": "正常"
},
"trendStable": "稳定",
"domains": {
"air": "空域",
"sea": "海域"
},
"strike": "STRIKE",
"staleWarning": "使用缓存数据 - 实时数据流暂时不可用",
"updated": "更新时间:",
"theaters": {
"iran-theater": "伊朗战区",
"taiwan-theater": "台湾海峡",
"baltic-theater": "波罗的海战区",
"blacksea-theater": "黑海",
"korea-theater": "朝鲜半岛",
"south-china-sea": "南海",
"east-med-theater": "东地中海",
"israel-gaza-theater": "以色列/加沙",
"yemen-redsea-theater": "也门/红海"
},
"emojiKeyLabel": "表情符号图例",
"emojiKeyAir": "空中资产",
"emojiKeyNaval": "海军资产"
},
"countryBrief": {
"shareLink": "分享链接",
"shareStory": "分享报道",
"printPdf": "打印 / PDF",
"exportData": "导出数据"
},
"relatedAssets": {
"pipeline": "管道",
"cable": "电缆",
"datacenter": "数据中心",
"base": "基地",
"nuclear": "核设施"
},
"community": {
"joinDiscussion": "Help Shape What's Next"
},
"threatLabels": {
"critical": "危急",
"high": "高",
"medium": "中",
"low": "低",
"info": "信息"
},
"deckgl": {
"zoomIn": "放大",
"zoomOut": "缩小",
"resetView": "重置视图",
"legend": {
"title": "图例",
"startupHub": "创业中心",
"techHQ": "科技总部",
"accelerator": "加速器",
"cloudRegion": "云计算区域",
"datacenter": "数据中心",
"stockExchange": "证券交易所",
"financialCenter": "金融中心",
"centralBank": "央行",
"commodityHub": "大宗商品枢纽",
"waterway": "水道",
"highAlert": "高度警报",
"elevated": "升高",
"monitoring": "监控中",
"base": "基地",
"nuclear": "核设施",
"aircraft": "飞机",
"miningSite": "采矿场",
"commodityPort": "商品港口",
"pipeline": "管道",
"processingPlant": "加工厂",
"conflict": "冲突区域",
"diseaseAlert": "疾病警报",
"diseaseWarning": "疾病预警",
"diseaseWatch": "疾病监测"
},
"layerGuide": "图层指南",
"layerWarningTitle": "性能提示",
"layerWarningBody": "启用超过 {{threshold}} 个图层可能会影响渲染性能和帧率。",
"layerWarningDismiss": "不再显示",
"layerWarningOk": "知道了",
"layersTitle": "图层",
"layerSearch": "搜索图层...",
"timeAll": "全部",
"views": {
"global": "全球",
"americas": "美洲",
"mena": "中东北非",
"europe": "欧洲",
"asia": "亚洲",
"latam": "拉丁美洲",
"africa": "非洲",
"oceania": "大洋洲"
},
"layers": {
"startupHubs": "创业中心",
"techHQs": "科技总部",
"accelerators": "加速器",
"cloudRegions": "云计算区域",
"aiDataCenters": "AI数据中心",
"underseaCables": "海底电缆",
"internetOutages": "互联网中断",
"cyberThreats": "网络威胁",
"techEvents": "科技活动",
"naturalEvents": "自然事件",
"fires": "火灾",
"intelHotspots": "情报热点",
"conflictZones": "冲突区",
"militaryBases": "军事基地",
"nuclearSites": "核设施",
"gammaIrradiators": "伽马辐照器",
"spaceports": "航天发射场",
"satellites": "轨道监视",
"pipelines": "管道",
"militaryActivity": "军事活动",
"shipTraffic": "船舶交通",
"flightDelays": "航班延误",
"protests": "抗议活动",
"ucdpEvents": "UCDP事件",
"displacementFlows": "流离失所流向",
"climateAnomalies": "气候异常",
"weatherAlerts": "天气预警",
"strategicWaterways": "战略水道",
"economicCenters": "经济中心",
"criticalMinerals": "关键矿产",
"stockExchanges": "证券交易所",
"financialCenters": "金融中心",
"centralBanks": "央行",
"commodityHubs": "大宗商品枢纽",
"gulfInvestments": "GCC投资",
"tradeRoutes": "贸易航线",
"iranAttacks": "伊朗袭击",
"gpsJamming": "GPS JAMMING",
"ciiChoropleth": "CII不稳定度",
"dayNight": "昼/夜",
"positiveEvents": "正面事件",
"kindness": "善举",
"happiness": "世界幸福度",
"speciesRecovery": "物种恢复",
"renewableInstallations": "清洁能源",
"radiationSpike": "辐射峰值",
"radiationElevated": "辐射升高"
},
"tooltip": {
"earthquake": "地震",
"militaryAircraft": "军用飞机",
"vesselCluster": "舰艇集群",
"vessels": "艘舰艇",
"flightCluster": "航班集群",
"aircraft": "架飞机",
"protest": "抗议活动",
"protestsCount": "{{count}}起抗议",
"techHQsCount": "{{count}}个科技总部",
"techEventsCount": "{{count}}个科技活动",
"dataCentersCount": "{{count}}个数据中心",
"underseaCable": "海底电缆",
"pipeline": "管道",
"conflictZone": "冲突区",
"naturalEvent": "自然事件",
"financialCenter": "金融中心",
"port": "港口",
"disruption": "中断",
"advisory": "公告",
"repairShip": "维修船",
"internetOutage": "互联网中断",
"medium": "中等",
"news": "新闻",
"undisclosed": "未披露",
"stake": "股份"
},
"layerHelp": {
"title": "地图图层指南",
"labels": {
"countries": "国家",
"timeRecent": "1小时/6小时/24小时",
"timeExtended": "7天/30天/全部",
"sanctions": "制裁",
"shipping": "航运"
},
"sections": {
"techEcosystem": "科技生态系统",
"infrastructure": "基础设施",
"naturalEconomic": "自然与经济",
"financeCore": "金融核心",
"infrastructureRisk": "基础设施与风险",
"macroContext": "宏观背景",
"timeFilter": "时间筛选(右上角)",
"geopolitical": "地缘政治",
"militaryStrategic": "军事与战略",
"transport": "交通运输",
"labels": "标签",
"overlays": "叠加层和标签"
},
"descriptions": {
"techStartupHubs": "主要创业生态系统(旧金山、纽约、伦敦等)",
"techCloudRegions": "AWS、Azure、GCP数据中心区域",
"techHQs": "大型科技公司总部",
"techAccelerators": "Y Combinator、Techstars、500 Startups所在地",
"infraCables": "主要海底光纤电缆(互联网骨干)",
"infraDatacenters": "AI算力集群 >=10,000 GPU",
"infraOutages": "互联网中断和服务故障",
"naturalEventsTech": "地震、风暴、火灾(可能影响数据中心)",
"weatherAlerts": "恶劣天气预警",
"economicCenters": "证券交易所和央行",
"countriesOverlay": "国家名称叠加层",
"financeExchanges": "按市场层级划分的全球主要交易所",
"financeCenters": "全球和区域金融枢纽",
"financeCentralBanks": "全球货币政策机构",
"financeCommodityHubs": "主要交易所、港口和炼油枢纽",
"financeCables": "与市场基础设施相关的主要海底光纤线路",
"financePipelines": "影响能源市场的油气管道线路",
"financeOutages": "可能影响市场运营的互联网中断",
"financeCyberThreats": "金融基础设施周边的安全事件",
"macroWaterways": "大宗商品航运的战略咽喉要道",
"weatherAlertsMarket": "与市场相关的恶劣天气事件",
"naturalEventsMacro": "地震、火灾、洪水等自然灾害",
"timeRecent": "按近几小时筛选时间数据",
"timeExtended": "显示过去一周、一个月或所有时间的数据",
"geoConflicts": "活跃战区(乌克兰、加沙等)及边界",
"geoHotspots": "紧张地区 — 按新闻活动级别着色",
"geoSanctions": "受美国/欧盟/联合国经济制裁的国家",
"geoProtests": "社会动荡、示威活动(按时间筛选)",
"militaryBases": "美国/NATO、中国、俄罗斯军事设施(150+)",
"militaryNuclear": "核电站、浓缩设施、武器设施",
"militaryIrradiators": "工业伽马辐照器设施",
"militaryActivity": "实时军用飞机和舰艇追踪",
"infraCablesFull": "主要海底光纤电缆(20条骨干线路)",
"infraPipelinesFull": "油气管道(北溪、TAPI等)",
"infraDatacentersFull": "仅显示AI算力集群 >=10,000 GPU",
"transportShipping": "船舶、咽喉要道、61个战略港口",
"transportDelays": "机场延误和地面停航(FAA)",
"naturalEventsFull": "地震(USGS)+ 风暴、火灾、火山、洪水(NASA EONET)",
"firesFull": "活跃野火和火灾范围(NASA FIRMS)",
"climateAnomalies": "温度和降水异常",
"waterwaysLabels": "战略咽喉要道标签",
"geoUcdpEvents": "乌普萨拉冲突数据项目武装冲突事件",
"geoDisplacement": "难民和流离失所人口流动模式",
"militarySpaceports": "火箭发射场和航天设施",
"infraCyberThreats": "网络攻击和安全事件",
"mineralsFull": "战略矿产资源矿床和采矿点",
"techCyberThreats": "网络攻击和安全事件",
"techEvents": "主要科技会议和活动",
"techFires": "科技基础设施附近的活跃野火",
"financeGulfInvestments": "GCC主权基金投资和外国直接投资",
"tradeRoutes": "连接港口并经过战略咽喉要道的全球主要航运通道",
"dayNight": "实时太阳终结线显示昼夜区域",
"geoBoundaries": "非军事区、停火线和争议边界",
"ciiChoropleth": "国家不稳定指数热力图 — 按CII评分为国家着色(绿色=稳定,红色=危急)"
},
"notes": {
"timeAffects": "影响范围:地震、天气、抗议、中断"
}
}
},
"cii": {
"noSignals": "未检测到不稳定信号",
"infoTooltip": "<strong>方法论</strong><ul><li><strong>动</strong>荡:社会骚乱与抗议</li><li><strong>冲</strong>突:武装冲突强度</li><li><strong>安</strong>全:领土上空军用飞机/舰艇</li><li><strong>信</strong>息:新闻速度和焦点关联</li><li>热点邻近度提升(战略位置)</li></ul><em>U:C:S:I值显示各分项评分。</em>焦点检测将新闻实体与地图信号关联以实现精确评分。",
"_methodologyLink_translatorNote": "TRANSLATION TODO (#3725): localize methodologyLink. English value is shipped to every locale as a stop-gap so the methodology link is present in all languages. Safe to translate independently of infoTooltip — the two render as a single tooltip via concatenation in CIIPanel.ts.",
"methodologyLink": "包含各国基准线 + 事件乘数 — 请参阅 /docs/methodology/cii-risk-scores 了解已发布的表格",
"sectionFollowing": "Following",
"sectionAll": "All",
"sourceStates": {
"degraded": "degraded",
"stale": "stale"
}
},
"insights": {
"noStories": "暂无突发或多源报道",
"step": "Step {{step}}/{{total}}",
"waitingForData": "Waiting for news data...",
"rankingStories": "Ranking important stories...",
"analyzingSentiment": "Analyzing sentiment...",
"generatingBrief": "Generating world brief...",
"infoTooltip": "<strong>AI驱动分析</strong><br>• <strong>世界简报</strong>:AI摘要(Groq/OpenRouter)<br>• <strong>情绪分析</strong>:新闻情感分析<br>• <strong>传播速度</strong>:快速传播的报道<br>• <strong>焦点</strong>:将新闻实体与地图信号(军事、抗议、中断)关联<br><em>仅限桌面端 • 由Llama 3.3 + 焦点检测驱动</em>",
"streamQualityLabel": "视频画质",
"streamQualityDesc": "设置所有直播流的画质(低画质可节省带宽)",
"globeRenderScaleOptions": {
"1": "节能 (1x)",
"2": "4K (2x)",
"3": "极致 (3x)",
"auto": "自动(跟随设备)",
"1_5": "清晰 (1.5x)"
},
"mapFlashLabel": "Live Event Pulse",
"mapFlashDesc": "Flash locations on the map when breaking news arrives",
"aiFlowCloudLabel": "云端AI(Groq & OpenRouter)",
"aiFlowCloudDesc": "将标题发送到云端进行AI摘要(推荐)",
"aiFlowBrowserLabel": "浏览器本地模型",
"aiFlowBrowserDesc": "在浏览器中本地运行AI",
"aiFlowBrowserWarn": "将下载约250MB的数据到您的电脑",
"aiFlowOllamaCta": "想要完全本地化的AI?",
"aiFlowOllamaCtaDesc": "下载桌面应用以支持Ollama",
"aiFlowDownloadDesktop": "下载桌面应用 →",
"aiFlowStatusActive": "云端AI已激活",
"aiFlowStatusCloudAndBrowser": "云端AI + 浏览器模型已激活",
"aiFlowStatusBrowserOnly": "仅浏览器模型",
"aiFlowStatusDisabled": "没有启用的AI提供商",
"insightsDisabledTitle": "AI分析已禁用",
"insightsDisabledHint": "Enable providers via the settings gear in the map header",
"badgeAnimLabel": "徽章动画",
"badgeAnimDesc": "在面板标题中显示更新徽章动画",
"headlineMemoryLabel": "标题记忆",
"headlineMemoryDesc": "记住已阅标题以突出显示新内容",
"streamAlwaysOnLabel": "在仪表板上自动播放直播流",
"streamAlwaysOnDesc": "当 Live News 和 Live Webcams 可见时自动启动。保持关闭则仅在点击“播放”后加载视频。",
"analysisFrameworksLabel": "分析框架",
"analysisFrameworksActivePerPanel": "每个面板激活",
"analysisFrameworksSkillLibrary": "技能库",
"analysisFrameworksImportBtn": "导入框架",
"analysisFrameworksDefaultNeutral": "默认(中立)",
"analysisFrameworksImportTitle": "导入框架",
"analysisFrameworksFromAgentskills": "来自 agentskills.io",
"analysisFrameworksPasteJson": "粘贴 JSON",
"analysisFrameworksSaveToLibrary": "保存至库",
"frameworkNote": "仅适用于客户端生成的分析",
"loadingServerInsights": "加载服务器洞察中...",
"usingCachedBrief": "使用缓存摘要...",
"multiPerspectiveAnalysis": "多角度分析...",
"generatingBriefSub": "生成摘要:{{msg}}",
"breakingConfirmed": "突发& 已证实",
"multiSource": "多源",
"fastMoving": "快速变化",
"clusters": "聚类",
"alertsLabel": "警报",
"alert": "警报",
"sources_one": "{{count}} 个来源",
"sources_other": "{{count}} 个来源",
"briefTech": "技术简报",
"briefCommodity": "商品简报",
"briefEnergy": "能源简报",
"briefWorld": "世界简报",
"mlDetected": "ML 检测",
"geographicConvergence": "地理汇聚",
"focalPoints": "焦点",
"toneMixed": "混合",
"toneNegative": "负面",
"tonePositive": "正面",
"overall": "整体:{{tone}}",
"signalTypesEvents": "{{types}} 种信号类型 • {{events}} 个事件",
"newsSignals": "{{news}} 条新闻 • {{signals}} 个信号",
"compiledFrom": "编译自 {{stories}} 条故事和 {{sources}} 个来源",
"provenanceTitle": "覆盖来源:此摘要选自多少条摄取的故事和不同的来源",
"briefFreshness": "生成于 {{minutes}}m 前 · 最新来源 {{hours}}h 前"
},
"settings": {
"exportSettings": "导出设置",
"importSettings": "导入设置",
"exportSuccess": "设置导出成功",
"exportFailed": "设置导出失败",
"importSuccess": "已导入{{count}}项设置",
"importFailed": "设置导入失败",
"reloadNow": "立即重新加载"
},
"cascade": {
"filters": {
"cables": "电缆",
"pipelines": "管道",
"ports": "港口",
"chokepoints": "咽喉要道"
},
"filterType": {
"cable": "电缆",
"pipeline": "管道",
"port": "港口",
"chokepoint": "咽喉要道",
"country": "国家"
},
"selectPrompt": "选择{{type}}...",
"analyzeImpact": "分析影响",
"impactLevels": {
"critical": "危急",
"high": "高",
"medium": "中等",
"low": "低"
},
"capacityPercent": "{{percent}}%容量",
"noCountryImpacts": "未检测到国家影响",
"alternativeRoutes": "替代路线",
"countriesAffected": "受影响国家({{count}})",
"links": "条链路",
"selectInfrastructureHint": "选择基础设施以分析级联影响",
"infoTooltip": "<strong>级联分析</strong>建模基础设施依赖关系:<ul><li>海底电缆、管道、港口、咽喉要道</li><li>选择基础设施模拟故障</li><li>显示受影响的国家和容量损失</li><li>识别冗余路线</li></ul>数据来自TeleGeography和行业来源。"
},
"strategicRisk": {
"noRisks": "未检测到重大风险",
"levels": {
"high": "高",
"medium": "中等",
"low": "低"
},
"trend": "趋势",
"trends": {
"escalating": "升级中",
"deEscalating": "缓和中",
"stable": "稳定"
},
"insufficientData": "Insufficient Data",
"unableToAssess": "Unable to assess risk level.",
"enableDataSources": "Enable data sources to begin monitoring.",
"requiredDataSources": "Required Data Sources",
"optionalSources": "Optional Sources",
"enableCoreFeeds": "Enable Core Feeds",
"waitingForData": "Waiting for data...",
"refresh": "Refresh",
"learningMode": "Learning Mode - {{minutes}}m until reliable",
"noData": "no data",
"enable": "Enable",
"convergenceMetric": "Convergence",
"ciiDeviation": "CII Deviation",
"infraEvents": "Infra Events",
"highAlerts": "High Alerts",
"topRisks": "Top Risks",
"recentAlerts": "Recent Alerts ({{count}})",
"updated": "Updated: {{time}}",
"time": {
"justNow": "just now",
"minutesAgo": "{{count}}m ago",
"hoursAgo": "{{count}}h ago"
},
"infoTooltip": "<strong>方法论</strong>综合评分(0-100)混合:<ul><li>50% 国家不稳定性(前5名加权)</li><li>30% 地理趋同区域</li><li>20% 基础设施事故</li></ul>每5分钟自动刷新。",
"cachedCiiStatus": "Cached CII {{states}}",
"sourceStates": {
"degraded": "degraded",
"stale": "stale"
},
"dataFreshness": "Data Freshness",
"sourcesDetail": "{{active}}/{{total}} sources"
},
"techEvents": {
"loading": "正在加载科技活动...",
"noEvents": "无可显示的活动",
"showOnMap": "在地图上显示",
"moreInfo": "更多信息",
"upcoming": "Upcoming",
"conferences": "Conferences",
"earnings": "Earnings",
"all": "All",
"conferencesCount": "{{count}} conferences",
"onMap": "{{count}} on map",
"techmemeEvents": "Techmeme Events ↗",
"today": "TODAY",
"soon": "SOON",
"infoTooltip": "<strong>科技活动</strong> 即将举行和近期的科技活动:会议、产品发布、监管听证会和财报电话会议。从官方活动日历和行业来源汇总。"
},
"techReadiness": {
"internetUsers": "互联网用户",
"mobileSubscriptions": "移动订阅",
"rdSpending": "研发支出",
"fetchingData": "Fetching World Bank Data",
"internetUsersIndicator": "Internet Users",
"mobileSubscriptionsIndicator": "Mobile Subscriptions",
"broadbandAccess": "Broadband Access",
"rdExpenditure": "R&D Expenditure",
"analyzingCountries": "Analyzing 200+ countries...",
"source": "Source: World Bank",
"updated": "Updated: {{date}}",
"infoTooltip": "<strong>全球科技就绪度</strong><br>基于世界银行数据的综合评分(0-100):<br><br><strong>显示指标:</strong><br>🌐 互联网用户(占人口百分比)<br>📱 移动订阅(每100人)<br>🔬 研发支出(占GDP百分比)<br><br><strong>权重:</strong>研发(35%)、互联网(30%)、宽带(20%)、移动(15%)<br><br><em>— = 无近期可用数据</em><br><em>来源:世界银行开放数据(2019-2024)</em>",
"dataPreparing": "刷新技术就绪数据中——即将显示。"
},
"populationExposure": {
"totalAffected": "受影响总数",
"affectedCount": "{{count}}人受影响",
"radiusKm": "{{km}}km半径",
"infoTooltip": "<strong>人口暴露估计</strong>事件影响半径内的估计人口。基于WorldPop国家人口密度数据。<ul><li>冲突:50km半径</li><li>地震:100km半径</li><li>洪水:100km半径</li><li>野火:30km半径</li></ul>"
},
"securityAdvisories": {
"loading": "正在加载旅行警告...",
"noMatching": "没有匹配的警告",
"critical": "严重",
"health": "健康",
"sources": "US State Dept, AU DFAT, UK FCDO, CDC, ECDC, WHO, US Embassies",
"refresh": "刷新",
"levels": {
"doNotTravel": "禁止出行",
"reconsider": "重新考虑出行",
"caution": "谨慎",
"normal": "正常",
"info": "信息"
},
"time": {
"justNow": "刚刚",
"minutesAgo": "{{count}}分钟前",
"hoursAgo": "{{count}}小时前",
"daysAgo": "{{count}}天前"
},
"infoTooltip": "<strong>安全警告</strong><br>来自各国政府的旅行警告和安全提示。"
},
"orefSirens": {
"checking": "Checking siren alerts...",
"noAlerts": "No active sirens — all clear",
"notConfigured": "Sirens service not configured",
"activeSirens": "{{count}} active siren(s)",
"justNow": "just now",
"historySummary": "24小时内{{count}}次警报 — {{waves}}波次",
"loadingHistory": "正在加载历史记录...",
"infoTooltip": "<strong>Israel Sirens</strong><br>Real-time rocket and missile siren alerts from Israel Home Front Command.<br><br>Data is polled every 10 seconds. A pulsing red indicator means active sirens are sounding."
},
"satelliteFires": {
"region": "区域",
"fires": "火灾",
"high": "高强度",
"total": "总计",
"never": "从未",
"time": {
"justNow": "刚刚",
"minutesAgo": "{{count}}分钟前",
"hoursAgo": "{{count}}小时前"
},
"infoTooltip": "NASA FIRMS VIIRS卫星在监控冲突区域的热异常探测。高强度 = 亮度温度>360K且置信度>80%。",
"possibleExplosions": "检测到 {{count}} 起可能爆炸",
"explosionTooltip": "热特征与爆炸一致(FRP >80 MW,亮度 >380 K)"
},
"ucdpEvents": {
"stateBased": "国家冲突",
"nonState": "非国家冲突",
"oneSided": "单方暴力",
"country": "国家",
"deaths": "死亡人数",
"date": "日期",
"actors": "行为方",
"deathsCount": "{{count}}人死亡",
"moreNotShown": "还有{{count}}个事件未显示",
"infoTooltip": "<strong>UCDP地理参考事件</strong>来自乌普萨拉大学的事件级冲突数据。<ul><li><strong>国家冲突</strong>:政府与反政府武装</li><li><strong>非国家冲突</strong>:武装团体之间</li><li><strong>单方暴力</strong>:针对平民的暴力</li></ul>死亡人数显示为最佳估计(低-高范围)。ACLED重复数据已自动过滤。"
},
"giving": {
"activityIndex": "活动指数",
"trend": "趋势",
"estDailyFlow": "估计日流量",
"cryptoDaily": "加密日报",
"tabs": {
"platforms": "平台",
"categories": "类别",
"crypto": "加密",
"institutional": "机构"
},
"platform": "平台",
"dailyVol": "日成交量",
"velocity": "增速",
"freshness": "数据",
"category": "类别",
"share": "份额",
"trending": "趋势",
"dailyInflow": "24小时流入",
"wallets": "钱包",
"ofTotal": "占总计",
"topReceivers": "主要受益方",
"oecdOda": "OECD ODA",
"cafIndex": "CAF指数",
"candidGrants": "Candid拨款",
"dataLag": "数据延迟",
"infoTooltip": "<strong>全球捐赠活动指数</strong> 跟踪众筹平台和加密钱包个人捐赠的综合指数。<ul><li><strong>平台</strong>:GoFundMe、GlobalGiving、JustGiving活动抽样</li><li><strong>加密</strong>:链上慈善钱包流入(Endaoment、Giving Block)</li><li><strong>机构</strong>:OECD ODA、CAF世界捐赠指数、Candid拨款</li></ul>指数为方向性指标,非精确金额。结合实时抽样与已发布年度报告。",
"benchmarkTitle": "Global Giving Benchmarks",
"benchmarkInfoTooltip": "<strong>Global Giving Benchmarks</strong> Published platform and institutional claims with source periods and verification status. Annualized figures are estimates, not live activity.",
"status": {
"published": "Published benchmarks with verified source coverage.",
"partial": "Published benchmarks with partial source coverage.",
"legacy": "Legacy snapshot; source details are unavailable.",
"cached": "Showing a cached snapshot; refresh unavailable."
},
"trackedAnnualized": "Tracked platform giving — annualized estimate",
"annualizedDaily": "Annualized daily estimate",
"atLeast": "At least",
"about": "About",
"sourceNotVerified": "Source not verified",
"reportedCumulative": "Reported cumulative total",
"sourcePeriod": "{{source}} · {{period}}",
"benchmark": "Published benchmark",
"sourcesMethodology": "Sources & methodology",
"methodologyIntro": "Only verified annual or defensibly annualized platform claims enter the headline. Cumulative and institutional figures remain separate context.",
"partialEstimate": "Partially verified estimate"
},
"displacement": {
"refugees": "难民",
"asylumSeekers": "寻求庇护者",
"idps": "国内流离失所者",
"total": "总计",
"origins": "来源国",
"hosts": "收容国",
"badges": {
"crisis": "危机",
"high": "高",
"elevated": "升高"
},
"country": "国家",
"status": "状态",
"count": "数量",
"infoTooltip": "<strong>UNHCR流离失所数据</strong>来自UNHCR的全球难民、寻求庇护者和国内流离失所者统计。<ul><li><strong>来源国</strong>:人们逃离的国家</li><li><strong>收容国</strong>:接收难民的国家</li><li>危机标志:>100万 | 高:>50万流离失所</li></ul>数据每年更新。CC BY 4.0许可。"
},
"climate": {
"noAnomalies": "未检测到显著异常",
"zone": "区域",
"temp": "温度",
"precip": "降水",
"severityLabel": "严重程度",
"severity": {
"extreme": "极端",
"moderate": "中等",
"normal": "正常"
},
"infoTooltip": "<strong>气候异常监测</strong>温度和降水相对于30天基线的偏差。数据来自Open-Meteo(ERA5再分析)。<ul><li><strong>极端</strong>:>5°C或>80mm/天偏差</li><li><strong>中等</strong>:>3°C或>40mm/天偏差</li></ul>监测15个冲突/灾害多发区域。"
},
"newsPanel": {
"close": "关闭",
"summarize": "总结此面板",
"generatingSummary": "正在生成摘要...",
"summaryError": "无法生成摘要",
"summaryFailed": "摘要失败",
"sources": "{{count}}个来源",
"relatedAssetsNear": "{{location}}附近的相关资产",
"sourceCoverage": "{{covered}}/{{total}} 个来源",
"sourceCoverageHint": "已显示 {{total}} 个已启用来源中的 {{covered}} 个 — 该面板每次刷新会轮换抓取不同来源",
"sortBy": "排序方式",
"sortNewest": "最新",
"sortRelevance": "相关性"
},
"breakingNews": {
"critical": "紧急",
"high": "重要",
"dismiss": "忽略"
},
"intelligenceFindings": {
"breakingAlerts": "突发警报",
"popupAlerts": "弹出新警报",
"badgeTitle": "情报发现",
"title": "情报发现",
"none": "无近期情报发现",
"monitoring": "监控中",
"scanning": "正在扫描关联和异常...",
"reviewRecommended": "{{count}}项情报发现 - 建议审查",
"count": "{{count}}项情报发现",
"detected": "已检测{{count}}项",
"critical": "{{count}}项危急",
"highPriority": "{{count}}项高优先级",
"hideFindings": "隐藏发现",
"more": "还有{{count}}项发现",
"all": "全部情报发现({{count}})",
"priority": {
"critical": "危急",
"high": "高",
"medium": "中等",
"low": "低"
},
"insights": {
"criticalDestabilization": "严重动荡 - 需立即关注",
"significantShift": "重大变化 - 密切监控",
"developingSituation": "事态发展中 - 跟踪升级趋势",
"convergence": "多事件在区域集聚",
"cascade": "基础设施中断正在蔓延",
"review": "审查以保持态势感知"
},
"time": {
"justNow": "刚刚",
"minutesAgo": "{{count}}分钟前",
"hoursAgo": "{{count}}小时前",
"daysAgo": "{{count}}天前"
}
},
"countryTimeline": {
"now": "现在",
"noEventsIn7Days": "7天内无事件"
},
"gdeltIntel": {
"infoTooltip": "<strong>新闻情报</strong>实时全球新闻监测:<ul><li>精选主题分类(冲突、网络安全等)</li><li>100+语言的文章已翻译</li><li>每15分钟更新</li><li>14-day media tone & volume trend per topic</li></ul>来源:GDELT Project (gdeltproject.org)"
},
"telegramIntel": {
"infoTooltip": "来自监控的Telegram OSINT频道的实时信号",
"loading": "正在连接Telegram中继...",
"empty": "暂无消息",
"disabled": "Telegram中继未激活",
"filterAll": "全部",
"filterBreaking": "突发",
"filterConflict": "冲突",
"filterOsint": "OSINT",
"filterMiddleeast": "中东",
"live": "直播",
"viewSource": "查看来源",
"filterGeopolitics": "地缘政治",
"filterCyber": "网络"
},
"investments": {
"infoTooltip": "沙特阿拉伯和阿联酋在全球关键基础设施领域的对外直接投资数据库。点击某行可在地图上飞到该投资所在位置。",
"searchPlaceholder": "Search assets, countries, entities…",
"allCountries": "All Countries",
"saudiArabia": "Saudi Arabia",
"uae": "UAE",
"allSectors": "All Sectors",
"allEntities": "All Entities",
"allStatuses": "All Statuses",
"operational": "Operational",
"underConstruction": "Under Construction",
"announced": "Announced",
"rumoured": "Rumoured",
"divested": "Divested",
"asset": "Asset",
"country": "Country",
"sector": "Sector",
"investment": "Investment",
"year": "Year",
"noMatch": "No investments match filters",
"undisclosed": "Undisclosed",
"sectors": {
"ports": "Ports",
"pipelines": "Pipelines",
"energy": "Energy",
"datacenters": "Data Centers",
"airports": "Airports",
"railways": "Railways",
"telecoms": "Telecoms",
"water": "Water",
"logistics": "Logistics",
"mining": "Mining",
"realEstate": "Real Estate",
"manufacturing": "Manufacturing"
}
},
"prediction": {
"infoTooltip": "<strong>预测市场</strong>真金白银的预测市场:<ul><li>价格反映群体概率估计</li><li>交易量越高 = 信号越可靠</li><li>聚焦地缘政治和时事</li></ul>来源:Polymarket (polymarket.com)"
},
"etfFlows": {
"unavailable": "ETF数据暂时不可用",
"rateLimited": "ETF数据暂时不可用(请求受限)— 即将自动重试",
"netFlow": "净流量",
"estFlow": "预估流量",
"totalVol": "总成交量",
"etfs": "ETFs",
"netInflow": "净流入",
"netOutflow": "净流出",
"table": {
"ticker": "代码",
"issuer": "发行方",
"estFlow": "预估流量",
"volume": "成交量",
"change": "涨跌幅"
},
"infoTooltip": "<strong>BTC ETF 追踪</strong> 追踪美国现货比特币 ETF 的每日预估资金流向:<ul><li>流入/流出方向和规模</li><li>每只基金的成交量和价格变化</li><li>所有追踪 ETF 的净聚合流向</li></ul>"
},
"macroSignals": {
"overall": "综合",
"verdict": {
"buy": "买入",
"cash": "持币"
},
"bullish": "{{count}}/{{total}} 看涨",
"signals": {
"liquidity": "流动性",
"flow": "资金流",
"regime": "市场环境",
"btcTrend": "BTC趋势",
"hashRate": "Hash Rate",
"momentum": "Momentum",
"fearGreed": "恐惧 & 贪婪"
},
"infoTooltip": "<strong>BTC 制度</strong> 比特币头寸和风险偏好的复合信号仪表板:<ul><li><strong>流动性</strong>:美联储净流动性代理</li><li><strong>流向</strong>:BTC vs QQQ 5 日回报率</li><li><strong>制度</strong>:QQQ vs XLP 轮换(风险开启/关闭)</li><li><strong>BTC 趋势</strong>:价格 vs SMA50/200、Mayer 倍数</li><li><strong>哈希率</strong>:30 日网络哈希变化</li><li><strong>恐惧与贪婪</strong>:市场情绪指数</li></ul>此面板用于制度和头寸定位,不涉及广泛的宏观数据。"
},
"panel": {
"showMethodologyInfo": "Show methodology info",
"dragToResize": "Drag to resize (double-click to reset)",
"openSettings": "Open Settings",
"closePanel": "关闭面板",
"collapsePanel": "折叠面板",
"expandPanel": "展开面板",
"addPanel": "添加面板"
},
"languageSelector": {
"mapLabelsFallbackVi": "越南语地图标签目前回退为英语显示。"
},
"serviceStatus": {
"checkingServices": "Checking services...",
"allOperational": "All services operational",
"ok": "OK",
"degraded": "Degraded",
"outage": "Outage",
"categories": {
"all": "All",
"cloud": "Cloud",
"dev": "Dev Tools",
"comm": "Comms",
"ai": "AI",
"saas": "SaaS"
},
"infoTooltip": "<strong>服务状态</strong> 主要云平台、金融基础设施和关键互联网服务的实时运营状态。来源:官方状态页面(AWS、Azure、GCP、Cloudflare、交易所)。事故可能表明更大范围的中断事件。"
},
"verification": {
"title": "Information Verification Checklist",
"hint": "Based on Bellingcat's OSH Framework",
"verdicts": {
"verified": "VERIFIED",
"likely": "LIKELY AUTHENTIC",
"uncertain": "UNCERTAIN",
"unreliable": "UNRELIABLE"
},
"notesTitle": "Verification Notes",
"noNotes": "No notes added",
"addNotePlaceholder": "Add verification note...",
"add": "Add",
"resetChecklist": "Reset Checklist",
"checks": {
"recency": "Recent timestamp confirmed",
"geolocation": "Location verified",
"source": "Primary source identified",
"crossref": "Cross-referenced with other sources",
"noAi": "No AI generation artifacts",
"noRecrop": "Not recycled/old footage",
"metadata": "Metadata verified",
"context": "Context established"
}
},
"liveNews": {
"notLive": "{{name}} is not currently live",
"cannotEmbed": "{{name}} 无法在此播放 — 可能在您所在的地区受到限制(错误 {{code}})",
"botCheck": "YouTube要求登录才能播放{{name}}",
"signInToYouTube": "登录YouTube",
"openOnYouTube": "Open on YouTube",
"manage": "管理频道",
"addChannel": "添加频道",
"remove": "删除",
"youtubeHandle": "YouTube 句柄(如 @Channel)",
"youtubeHandleOrUrl": "YouTube 频道名称或链接",
"displayName": "显示名称(可选)",
"channelSettings": "频道设置",
"save": "保存",
"cancel": "取消",
"restoreDefaults": "恢复默认频道",
"availableChannels": "可用频道",
"noResults": "未找到与\"{{term}}\"匹配的频道",
"customChannel": "自定义频道",
"regionNorthAmerica": "北美",
"regionEurope": "欧洲",
"regionLatinAmerica": "拉丁美洲",
"regionAsia": "亚洲",
"regionMiddleEast": "中东",
"regionAfrica": "非洲",
"regionOceania": "大洋洲",
"invalidHandle": "请输入有效的YouTube用户名(例如 @ChannelName)",
"verifying": "验证中…",
"hlsUrl": "HLS流地址(可选)",
"invalidHlsUrl": "请输入有效的HLS流地址(.m3u8)",
"playLiveFeed": "播放直播源",
"readyStatus": "准备就绪,随时可播"
},
"map": {
"showMap": "显示地图",
"hideMap": "隐藏地图",
"clearTrails": "清除轨迹"
},
"internetDisruptions": {
"infoTooltip": "<strong>Internet Disruptions</strong> Real-time internet outages, DDoS attacks, and traffic anomalies from global network monitoring:<ul><li><strong>Outages</strong>: BGP-detected connectivity failures by country</li><li><strong>DDoS</strong>: Volumetric attack reports by protocol and vector</li><li><strong>Anomalies</strong>: Unusual traffic patterns from Cloudflare Radar</li></ul>",
"noOutages": "未检测到活跃中断",
"noDdos": "无DDoS数据可用",
"noAnomalies": "未检测到流量异常",
"byProtocol": "攻击协议",
"byVector": "攻击向量",
"topTargets": "主要目标国家"
},
"commodities": {
"infoTooltip": "<strong>Commodities</strong> Tradeable non-energy commodity tape focused on metals and materials. Energy prices live in Energy Complex; macro stress indicators live in Macro Stress."
},
"crypto": {
"infoTooltip": "<strong>Crypto</strong> Live prices, 24h changes, and volume for major cryptocurrencies. Data sourced from CoinGecko."
},
"gulfEconomies": {
"infoTooltip": "<strong>Gulf Economies</strong> Real-time Gulf stock indices, currency rates, and oil prices for GCC economies (Saudi Arabia, UAE, Kuwait, Qatar, Bahrain, Oman)."
},
"groceryBasket": {
"infoTooltip": "<strong>Grocery Index</strong> Global grocery basket price comparison across 24 countries — tracks real-world consumer goods inflation beyond headline CPI."
},
"bigmac": {
"infoTooltip": "<strong>Real Big Mac Index</strong> The Economist's Big Mac Index measures purchasing power parity by comparing McDonald's burger prices across countries. Updated when new data is published (quarterly/annually)."
},
"defiTokens": {
"infoTooltip": "<strong>DeFi Tokens</strong> Prices and 24h/7d performance for major decentralized finance protocol tokens — DEXes, lending platforms, and yield protocols."
},
"aiTokens": {
"infoTooltip": "<strong>AI Tokens</strong> Prices and 24h/7d performance for AI and machine learning sector tokens — compute networks, decentralized AI infrastructure, and data protocols."
},
"altTokens": {
"infoTooltip": "<strong>Alt Tokens</strong> Prices and 24h/7d performance for alternative and emerging crypto tokens outside the major-cap tiers."
},
"stockAnalysis": {
"infoTooltip": "<strong>Premium Stock Analysis</strong> AI-powered analysis for stocks in your watchlist — buy/hold/sell signals, price targets, key risks, and catalysts updated daily."
},
"stockBacktest": {
"infoTooltip": "<strong>Premium Backtesting</strong> Historical performance backtests for stocks in your watchlist — past returns, max drawdown, and volatility metrics."
},
"dailyMarketBrief": {
"infoTooltip": "<strong>Daily Market Brief</strong> AI-generated daily summary of global market conditions, key macro trends, and sector-level signals — refreshes each trading day."
},
"centralBankWatch": {
"infoTooltip": "<strong>Central Bank Watch</strong> Latest statements, rate decisions, and communications from the Federal Reserve, ECB, Bank of England, and other major central banks worldwide."
},
"airlineIntel": {
"infoTooltip": "<strong>航空情报</strong> 实时航空公司运营数据:航线暂停、空域关闭、承运商公告和紧急改航。来源:航空当局NOTAM和承运商通报。",
"noOpsData": "无运营数据 — 加载中…",
"noFlights": "无航班 — 在设置中选择机场。",
"noCarrierData": "暂无运营商数据。",
"noTrackingData": "无飞机追踪数据。",
"noNews": "无航空新闻。",
"enterRoute": "输入路线并搜索价格。",
"searchFlights": "搜索航班",
"bestDates": "最佳日期",
"enterRouteAndDate": "输入路线和日期搜索",
"enterDateRange": "输入路线和日期范围",
"degradedResults": "部分结果可能不完整",
"nonstop": "直飞",
"roundTrip": "往返",
"tripDays": "行程天数"
},
"chatAnalyst": {
"infoTooltip": "<strong>WM 分析师</strong> 具有地缘政治、市场、军事和经济领域实时上下文的AI分析师。由Claude驱动,注入WorldMonitor活跃数据源的实时数据。"
},
"cotPositioning": {
"infoTooltip": "<strong>CFTC COT 持仓</strong> 交易者承诺报告:商品和金融期货中商业机构、大型投机者和小型交易者的净持仓。每周五发布。来源:CFTC。"
},
"counters": {
"infoTooltip": "<strong>实时计数器</strong> 全球指标的实时推算计数器:军费开支、自然灾害、疾病负担等。数字为基于年度数据率的统计估算值。"
},
"diseaseOutbreaks": {
"infoTooltip": "<strong>疾病暴发</strong> 来自WHO、ProMED和卫生部门的活跃暴发警报。追踪已确认的暴发、受影响地区、病例数和威胁级别。新报告发布时更新。",
"title": "疾病爆发",
"empty": "没有匹配筛选条件的爆发",
"sourceFallback": "来源",
"attribution": "WHO · ProMED · HealthMap",
"levels": {
"alert": "警报",
"warning": "警告",
"watch": "监测"
},
"time": {
"justNow": "刚才",
"hoursAgo_one": "{{count}}小时前",
"hoursAgo_other": "{{count}}小时前",
"daysAgo_one": "{{count}}天前",
"daysAgo_other": "{{count}}天前"
},
"filters": {
"alert_one": "{{count}} 条警报",
"alert_other": "{{count}} 条警报",
"warning_one": "{{count}} 条警告",
"warning_other": "{{count}} 条警告",
"watch_one": "{{count}} 条监测",
"watch_other": "{{count}} 条监测"
},
"errors": {
"noData": "无可用的爆发数据",
"failedToLoad": "加载失败"
},
"methodologyNote": "警报 / 警告 / 监视级别来自编辑关键词分类器 — 请参阅 /docs/methodology/disease-alert-level 了解关键词表和限制。"
},
"earningsCalendar": {
"infoTooltip": "<strong>财报日历</strong> 大型上市公司即将和近期的财报发布。显示EPS预期与实际对比、营收及超预期/不及预期分类。来源:金融数据提供商。",
"title": "财报日历",
"today": "今日 · {{date}}",
"tomorrow": "明日 · {{date}}",
"epsActual": "每股收益 {{value}}",
"epsEstimate": "每股收益预期 {{value}}",
"revenueActual": "{{value}} 收入",
"revenueEstimate": "{{value}} 预期",
"surprise": {
"beat": "超预期",
"miss": "未达预期",
"inLine": "符合预期"
},
"errors": {
"noData": "无财报数据",
"failedToLoad": "加载失败"
}
},
"economicCalendar": {
"infoTooltip": "<strong>经济日历</strong> 预定的宏观经济数据发布:CPI、NFP、GDP、PMI和央行决议。显示预测值、实际值和前值。高影响事件突出显示。来源:经济数据提供商。"
},
"fsi": {
"infoTooltip": "<strong>金融压力指标</strong> 堪萨斯城联储金融压力指数(KCFSI):使用11个指标衡量美国金融市场压力,包括收益率利差、波动率和交叉相关性。正值表示高于平均水平的压力。来源:堪萨斯城联邦储备银行。",
"title": "金融压力指标",
"usFsiValue": "美国FSI值",
"cissTitle": "欧盟CISS(欧元区系统性压力)",
"notAvailable": "N/A",
"interpretation": {
"low": "信贷市场正常运作,股债比率健康。",
"moderate": "信贷条件有所恶化,需密切关注。",
"elevated": "信贷市场压力明显,需采取防守策略。",
"severe": "金融压力严重,系统性风险上升。"
},
"labels": {
"lowStress": "低压力",
"moderateStress": "中等压力",
"elevatedStress": "压力升高",
"severeStress": "严重压力"
},
"cissLabels": {
"low": "低",
"moderate": "中等",
"elevated": "升高",
"high": "高"
},
"scale": {
"noStress": "0 — 无压力",
"extremeStress": "1 — 极度压力",
"highStress": "高压力",
"lowStress": "低压力"
},
"metrics": {
"vix": "VIX",
"hySpread": "HY 利差",
"hygPrice": "HYG 价格",
"tltPrice": "TLT 价格"
},
"errors": {
"unavailable": "FSI 数据不可用",
"failedToLoad": "加载失败"
},
"cissStale": "欧洲中央银行尚未发布新数值 — 此读数可能已过期。"
},
"hormuzTracker": {
"infoTooltip": "<strong>霍尔木兹贸易追踪器</strong> 通过全球最关键的石油咽喉要道霍尔木兹海峡的AIS船舶实时追踪。监控油轮数量、中断事件和每周流量变化。全球约20%的石油供应每天经此通过。",
"title": "霍尔木兹贸易追踪",
"noData": "无数据",
"notAvailable": "N/A",
"chartUnavailable": "图表数据不可用",
"sourcePrefix": "来源:",
"units": {
"ktPerDay": "千吨/天",
"generic": "单位"
},
"errors": {
"unavailable": "霍尔木兹数据不可用",
"failedToLoad": "加载失败"
}
},
"liveWebcams": {
"infoTooltip": "<strong>实时摄像头</strong> 来自全球地缘政治重要地点的直播:冲突区、首都、边境口岸和战略咽喉要道。流媒体来自YouTube和公共网络。"
},
"macroTiles": {
"infoTooltip": "<strong>宏观指标</strong> 美国和欧元区关键宏观经济指标:CPI、失业率、GDP和央行利率。显示值含与前期的差值。来源:FRED(联邦储备经济数据)。"
},
"monitors": {
"infoTooltip": "<strong>关键词监控</strong> 添加任何词汇,实时追踪WorldMonitor所有来源中的新闻提及。匹配文章被收录时结果实时更新。"
},
"renewable": {
"infoTooltip": "<strong>可再生能源</strong> 按地区和年份显示可再生能源在发电量中的占比,以及美国太阳能、风能和煤炭的装机容量(兆瓦)。来源:世界银行(EG.ELC.RNEW.ZS)和 EIA。"
},
"socialVelocity": {
"infoTooltip": "<strong>社交传播速度</strong> 具有地缘政治意义的热门话题和病毒式内容。衡量社交媒体速度:一个故事相对于基线的传播速度。帮助在新兴叙事到达主流媒体之前发现它们。"
},
"conservationWins": {
"infoTooltip": "<strong>保育成就</strong> 正面的保育新闻:物种种群恢复、栖息地修复里程碑和反灭绝努力。来源:IUCN、WWF和保育研究出版物。"
},
"worldClock": {
"infoTooltip": "<strong>世界时钟</strong> 主要全球金融中心的实时当地时间和市场交易时段状态。显示NYSE、LSE、TSE、SGX等交易所的开盘/收盘状态。"
},
"yieldCurve": {
"infoTooltip": "<strong>收益率曲线 & 利率</strong> 美国国债收益率曲线(2Y、5Y、10Y、30Y)和关键利率利差,包括10Y-2Y倒挂指标。还显示欧元区利率(EURIBOR、ESTR)。倒挂曲线在历史上通常先于经济衰退出现。来源:FRED。"
},
"pinnedWebcams": {
"pinFromMap": "从地图固定网络摄像头"
},
"breakthroughsTicker": {
"noData": "暂无科学突破"
},
"oilInventories": {
"infoTooltip": "<strong>石油库存</strong> 美国原油和战略石油储备库存(EIA 周报)、天然气储存、欧盟天然气充气率(GIE AGSI+)以及 OECD 石油库存覆盖天数(IEA 月报)。"
},
"energyComplex": {
"noData": "能源数据暂时不可用 - 将重试",
"liveTape": "实时行情",
"liveTapeSource": "市场报价",
"infoTooltip": "<strong>能源综合体</strong> 一处查看物理和可交易能源信号:<ul><li><strong>EIA 指标</strong>:WTI、布伦特、美国产量和库存</li><li><strong>实时行情</strong>:可交易能源价格,如原油和天然气</li><li><strong>目的</strong>:将物理能源压力与更广泛的宏观和商品面板分开</li></ul>"
},
"consumerPrices": {
"tabs": {
"overview": "概览",
"categories": "分类",
"movers": "涨跌",
"spread": "零售商价差",
"health": "数据健康度",
"world": "World"
},
"infoTooltip": "<strong>消费者价格</strong> 实时购物篮价格跟踪:<ul><li><strong>概览</strong>:生活必需品指数、价值篮子及周环比变化</li><li><strong>品类</strong>:各品类价格趋势及30天价格区间</li><li><strong>变动</strong>:本周价格涨跌最快的商品</li><li><strong>价差</strong>:同一购物篮在不同零售商之间的价格差异</li></ul>数据来自实时零售商价格爬取。",
"world": {
"country": "Country",
"inflationYoY": "Inflation YoY",
"endOfPeriod": "End-of-Period",
"year": "Year",
"filterPlaceholder": "Filter countries…",
"loading": "Loading global inflation…",
"empty": "Inflation data not yet available",
"noMatches": "No matching countries",
"source": "Source: IMF WEO · annual CPI inflation, all reporting economies",
"countSingular": "country",
"countPlural": "countries"
}
},
"marketImplications": {
"infoTooltip": "<strong>AI市场影响分析</strong> LLM生成的交易信号,基于每个预测周期后的实时地缘政治、商品和宏观状态。<ul><li><strong>方向</strong>:看多/看空/对冲,附带信心评分</li><li><strong>时间框架</strong>:1周、2周、1月或3月</li><li><strong>驱动因素</strong>:信号背后的关键催化剂</li><li><strong>风险</strong>:预警或失效条件</li></ul><em>仅供参考,不构成投资建议。</em>",
"title": "AI市场影响",
"directions": {
"long": "看多",
"short": "看空",
"hedge": "对冲"
},
"rationale": "理由:",
"driver": "驱动因素:",
"appliesToNext": "适用于下一次AI重新生成",
"signals_one": "{{count}}个信号",
"signals_other": "{{count}}个信号",
"disclaimer": "AI生成的交易信号仅供参考。非投资建议。请自行研究。",
"unavailable": "AI市场影响在每次预测运行后生成。请稍后查看。"
},
"forecast": {
"infoTooltip": "<strong>AI 预测</strong> AI 生成的地缘政治和经济事件概率估计:<ul><li>跨域覆盖:冲突、市场、供应链、网络安全、政治</li><li>每个预测显示估计概率、置信度和时间范围</li><li>根据预测市场基线进行校准(如可用)</li></ul>预测在新情报信号到达时更新。使用上方标签按域筛选。"
},
"escalationCorrelation": {
"infoTooltip": "<strong>升级监测</strong> 检测汇聚的地缘政治信号:<ul><li>关联军事行动、冲突事件和新闻激增</li><li>按严重程度(关键/高/中/低)评分汇聚区域</li><li>追踪一段时间内的升级或降级趋势</li></ul>点击卡片可在地图上放大到该区域。"
},
"economicCorrelation": {
"infoTooltip": "<strong>经济战争</strong> 检测汇聚的经济压力信号:<ul><li>制裁、贸易限制和货币行动</li><li>与地缘政治行为体相关的商品中断</li><li>经济和安全事件之间的跨域关联</li></ul>点击卡片可在地图上放大到受影响区域。"
},
"militaryCorrelation": {
"infoTooltip": "<strong>兵力态势</strong> 关联军事活动与地缘政治背景:<ul><li>按地区统计军用飞机和海军舰艇集中度</li><li>交叉参考活跃冲突区域和新闻激增</li><li>突出异常兵力集结或重新部署</li></ul>点击卡片可在地图上放大到该区域。"
},
"disasterCorrelation": {
"infoTooltip": "<strong>灾难级联</strong> 检测汇聚的自然灾害和基础设施信号:<ul><li>关联地震、野火、洪灾和极端天气</li><li>追踪对基础设施和供应链的级联影响</li><li>突出具有复合灾难风险的地区</li></ul>点击卡片可在地图上放大到受影响区域。"
},
"markets": {
"infoTooltip": "<strong>市场</strong> 实时股票指数、股票和加密货币价格。使用\"观察列表\"按钮自定义您的观察列表。火花线显示最近价格趋势。",
"chart": {
"title": "{{symbol}} price chart",
"close": "Close chart"
}
},
"heatmap": {
"infoTooltip": "<strong>板块热力图</strong> S&P 500 板块表现一览。颜色强度反映每日变化幅度。绿色 = 涨幅,红色 = 跌幅。"
},
"fuelPrices": {
"infoTooltip": "<strong>燃料价格</strong> 30+ 个国家的汽油和柴油零售泵价格,以 USD/升 标准化进行比较。价格来自官方政府开放数据计划,每周更新。最便宜和最昂贵的国家会被突出显示。当前周数据可用时显示 WoW 变化。",
"countries": "个国家"
},
"faoFoodPriceIndex": {
"infoTooltip": "<strong>粮农组织食品价格指数</strong> 联合国粮食及农业组织的粮价指数 (FFPI) 追踪食品商品篮(谷物、乳制品、肉类、油类、糖)的国际出口价格,以 2014-2016=100 为基准。每月第一个星期五更新。",
"indexLabel": "粮价指数(2014-16=100)",
"mom": "环比",
"yoy": "同比",
"asOf": "截至",
"baseNote": "基准:2014-2016 = 100 | 数据来源:联合国粮农组织",
"ffpi": "食品",
"cereals": "谷物",
"meat": "肉类",
"dairy": "乳制品",
"oils": "油脂",
"sugar": "糖"
},
"climateNews": {
"infoTooltip": "<strong>气候新闻</strong>来自Carbon Brief、UNEP、NASA、The Guardian等权威来源的最新环境和气候资讯。每30分钟更新一次。",
"loadError": "气候新闻暂时无法获取"
},
"liquidityShifts": {
"title": "流动性变化",
"infoTooltip": "<strong>流动性变化</strong>石油、黄金、白银、股指期货和美国顶级股票的高流动性头寸和日度变化监测。资产管理人COT净头寸和杠杆基金净头寸与日价格变化对比。",
"cotSection": "石油/黄金/白银 + 指数头寸(COT)",
"stocksSection": "美国顶级股票:日度变化",
"longShort": "多头 {{long}} / 空头 {{short}}",
"lev": "杠杆",
"noCot": "无可用COT数据。",
"noStocks": "无可用顶级股票报价。",
"reportDate": "COT报告日期:{{date}}",
"unavailable": "流动性数据无法获取",
"failed": "加载失败"
},
"positioning247": {
"title": "24/7头寸",
"infoTooltip": "<strong>24/7头寸</strong>来自Hyperliquid的永续合约头寸压力。全天交易,展示传统市场关闭时建仓的情况。综合得分(0-100)来自资金费率、交易量、未平仓合约和现货永续基差。绿色 = 多头拥挤(看涨倾向),红色 = 空头拥挤(看跌倾向)。",
"commodities": "商品",
"crypto": "加密货币",
"fx": "外汇",
"warmup": "正在构建基准数据。交易量和未平仓合约历史将在下一小时内填充。",
"footer": "5分钟 · Hyperliquid永续合约 · 24/7"
},
"goldIntelligence": {
"infoTooltip": "<strong>黄金情报</strong>黄金现货价格、金银比、黄金vs铂金溢价、交叉货币XAU价格(欧元、英镑、日元、人民币、印度卢比、瑞郎)和CFTC管理资金头寸。来源:Yahoo Finance、CFTC COT。"
},
"wsbTickerScanner": {
"infoTooltip": "<strong>WSB股票代码扫描器</strong>来自r/wallstreetbets、r/stocks和r/investing的实时股票代码提及。按提及频率和参与度排名。速度指标衡量股票代码在帖子中获得动量的速度。"
},
"proBanner": {
"badge": "PRO",
"headline": "Pro已上线",
"tagline": "更多信号,更少噪音。更多AI简报。专属于您的地缘政治和股票研究员。",
"cta": "升级到Pro →",
"dismiss": "关闭"
},
"billingState": {
"onHoldDesc": "支付失败。请更新您的支付方式以恢复高级访问权限。",
"onHoldBannerMessage": "支付失败。请更新您的支付方式以保持订阅有效。",
"updatePayment": "更新支付方式",
"renewalPendingDesc": "我们正在核实您的订阅续订。确认后将自动恢复高级访问权限。",
"refreshStatus": "刷新状态",
"renewalFailedDesc": "我们无法核实您的订阅续订。请管理账单,如问题持续请联系支持。",
"manageBilling": "管理账单",
"lapsedDesc": "您的 Pro 订阅已结束。重新订阅以恢复高级访问权限。",
"resubscribe": "重新订阅"
},
"checkoutFailureBanner": {
"message": "支付无法完成。未进行任何扣款。",
"retry": "重试",
"retrying": "重试中…",
"dismiss": "关闭"
},
"proActivation": {
"badge": "PRO",
"progress": "第 {{current}} 步,共 {{total}} 步",
"closeLabel": "跳过设置",
"ariaLabel": "Pro 激活设置",
"signedInAs": "以 {{email}} 身份登录",
"steps": {
"brief": {
"heading": "您的每日简报,每天早晨送达",
"body": "每天早晨在您的收件箱中呈现精心策划的情报简报——夜间重要信号,浓缩成五分钟的阅读内容。",
"confirmCta": "开启我的晨间简报",
"confirming": "正在开启…",
"doneNote": "您的晨间简报已在运行。",
"scheduleNote": "我们将保留您当前的发送时间。",
"summaryLabel": "晨间简报",
"summaryVerified": "已开启——将从您的下一份晨间简报开始。",
"deliverAt": "发送时间",
"previewLoading": "正在准备您第一份简报的预览…",
"previewLabel": "今早的简报"
},
"alerts": {
"heading": "重大警报",
"body": "当发生重大事件时(冲突升级、市场震荡、新的制裁措施),在浏览器中接收提醒。随时可在设置中调整提醒频率。",
"confirmCta": "启用警报",
"confirming": "正在启用…",
"doneNote": "浏览器警报已开启。",
"blockedNote": "您的浏览器中通知已被屏蔽。请在浏览器的网站设置中开启通知以接收警报。",
"declinedNote": "没关系——我们不会发送浏览器警报。您可以稍后在浏览器的网站设置中开启。",
"summaryLabel": "重大警报",
"summaryVerified": "已开启——重大信号将发送至您的浏览器。"
},
"power": {
"heading": "您的 Pro 工具包",
"body": "自定义小组件、MCP 连接和 AI 研究员已解锁。构建您真正想要关注的看板。",
"confirmCta": "探索 Pro 工具",
"confirming": "正在打开…",
"doneNote": "您已经在使用 Pro 工具了。",
"summaryLabel": "Pro 工具包",
"summaryVerified": "已解锁,随时可用。",
"channelsNote": "更喜欢 Telegram、Slack、Discord 还是 Webhook?",
"pointers": {
"search": "搜索整个仪表板",
"widgets": "创建自定义小组件",
"analyst": "咨询 AI 分析师",
"mcpClients": "设置 MCP",
"channels": "在通知设置中进行配置"
}
}
},
"status": {
"pending": "尚未设置",
"inFlight": "正在设置…",
"verified": "已就绪",
"failed": "未能成功",
"blocked": "已屏蔽",
"unavailable": "不可用",
"blockedNote": "此功能目前不可用——您可以稍后在设置中进行配置。",
"unavailableNote": "此功能在您的设备上不可用——您可以稍后进行配置。",
"failedBody": "出现了问题。您可以重试,或稍后在设置中进行配置。",
"retry": "重试"
},
"actions": {
"skip": "暂时跳过",
"continue": "继续"
},
"summary": {
"heading": "一切就绪",
"subVerified": "以下是您账户中正在运行的内容。",
"subPending": "您可以随时在设置中完成配置。",
"linePending": "尚未设置——可随时在设置中完成。",
"lineFailed": "我们未能完成此设置——请在设置中重试。",
"finish": "前往我的仪表盘"
},
"chip": {
"message": "完成您的 Pro 账户设置。",
"action": "完成设置",
"dismissLabel": "关闭"
}
},
"frameworkSelector": {
"label": "分析框架",
"defaultNeutral": "默认(中立)",
"titlePrefix": "框架:{{name}}",
"titleNone": "分析框架"
},
"sanctionsPressure": {
"title": "制裁与指定",
"infoTooltip": "来自 SDN 和综合名单的 OFAC 制裁指定。显示哪些国家面临最高指定压力、驱动因素以及自上次更新以来新增的内容。",
"loading": "正在加载制裁数据...",
"unavailable": "制裁数据不可用。",
"summary": {
"new": "新增",
"vessels": "船舶",
"aircraft": "飞机"
},
"sections": {
"countries": "受制裁国家",
"entries": "最近指定",
"programs": "计划"
},
"empty": {
"countries": "无国家归属信息。",
"entries": "无最近指定。",
"programs": "无计划详情。"
},
"footer": {
"updated": "更新于 {{time}}",
"dataset": "数据集 {{date}}",
"source": "来源:OFAC"
},
"pills": {
"newCount": "+{{count}} 新增",
"new": "新增"
},
"designations_one": "{{count}} 项指定",
"designations_other": "{{count}} 项指定",
"fallbacks": {
"unattributed": "未归属",
"program": "计划",
"undated": "无日期"
}
},
"radiationWatch": {
"title": "辐射监测",
"infoTooltip": "EPA RadNet 和 Safecast 读数,包含异常评分和来源可信度综合。此面板显示什么是正常、什么是升高以及哪些异常已确认或暂定。",
"loading": "正在加载辐射数据...",
"empty": "没有可用的辐射观测数据。",
"baseline": "{{value}} 基线",
"flags": {
"confirmed": "已确认",
"conflict": "冲突",
"cpmDerived": "CPM 衍生"
},
"headers": {
"station": "站点",
"reading": "读数",
"delta": "差值",
"status": "状态",
"observed": "观测时间"
},
"summary": {
"anomalies": "异常",
"elevated": "升高",
"confirmed": "已确认",
"lowConfidence": "低可信度",
"conflicts": "冲突",
"spikes": "尖峰"
},
"footer": {
"updated": "更新于 {{time}}"
},
"observed": {
"hoursAgo_one": "{{count}}h 前",
"hoursAgo_other": "{{count}}h 前",
"daysAgo_one": "{{count}}d 前",
"daysAgo_other": "{{count}}d 前"
},
"confidence": {
"high": "高可信度",
"medium": "中等可信度",
"low": "低可信度"
}
},
"defensePatents": {
"title": "研发信号",
"infoTooltip": "雷神、洛克希德、华为、DARPA 及其他战略组织的周度国防和双用途专利申请。分类:H04B(通信)、H01L(半导体)、F42B(弹药)、G06N(AI)、C12N(生物技术)。数据来源:美国专利商标局开放数据门户。",
"loading": "正在加载研发申请…",
"error": "加载专利数据失败。",
"empty": "该分类中无申请。",
"viewOnUspto": "在美国专利商标局查看",
"tabs": {
"all": "全部"
},
"cpcLabels": {
"H04B": "通信",
"H01L": "半导体",
"F42B": "弹药",
"G06N": "AI",
"C12N": "生物技术"
}
},
"correlation": {
"loading": "等待数据...",
"empty": "未检测到活跃收敛",
"signals_one": "{{count}} 个信号",
"signals_other": "{{count}} 个信号",
"analyzing": "分析中...",
"viewOnMap": "在地图上查看"
},
"thermalEscalation": {
"title": "热异常升级",
"infoTooltip": "具有基线比较、持久性跟踪和战略背景的 FIRMS/VIIRS 热异常集群。该面板显示热活动在何处异常,以及哪些集群可能预示冲突、工业中断或升级。",
"loading": "正在加载热数据...",
"empty": "未检测到热异常升级集群。",
"footer": {
"updated": "更新于 {{time}}"
},
"summary": {
"total": "总计",
"elevated": "升高",
"spikes": "尖峰",
"persist": "持续",
"conflict": "冲突",
"strategic": "战略性"
},
"badges": {
"conflictAdjacent": "冲突邻近",
"energyAdjacent": "能源邻近",
"industrial": "工业",
"strategic": "战略性"
},
"observations_one": "{{count}} 次观测",
"observations_other": "{{count}} 次观测",
"sources_one": "{{count}} 个来源",
"sources_other": "{{count}} 个来源",
"age": {
"minutesAgo_one": "{{count}} 分钟前",
"minutesAgo_other": "{{count}} 分钟前",
"hoursAgo_one": "{{count}} 小时前",
"hoursAgo_other": "{{count}} 小时前",
"daysAgo_one": "{{count}} 天前",
"daysAgo_other": "{{count}} 天前"
}
},
"chokepointStrip": {
"title": "瓶颈地点状态",
"infoTooltip": "全球七大油气运输瓶颈地点的实时状态。流量估算基于 Portwatch DWT + AIS 观测数据校准。详见 /docs/methodology/chokepoints 了解方法论。",
"unknown": "未知",
"shortName": {
"hormuzStrait": "霍尔木兹",
"malaccaStrait": "马六甲",
"suez": "苏伊士",
"babElMandeb": "曼德海峡",
"bosphorus": "土耳其海峡",
"panama": "巴拿马",
"danishStraits": "丹麦海峡"
},
"flow": {
"mbd": "{{value}} 万桶/天",
"pctOfBaseline": "基线的 {{pct}}%"
},
"errors": {
"unavailable": "瓶颈地点状态不可用",
"noData": "暂无瓶颈地点数据"
},
"attribution": {
"method": "Portwatch DWT + AIS 校准",
"sampleLabel": "AIS 中断信号",
"creditName": "EIA 世界石油运输瓶颈"
}
},
"mobileNav": {
"panelCategories": "Panel categories"
},
"panelFreshness": {
"status": {
"fresh": "Fresh",
"stale": "Stale",
"veryStale": "Very stale",
"noData": "No data",
"disabled": "Disabled",
"error": "Error"
},
"labelWithAge": "{{status}} {{age}}",
"title": "Data freshness: {{status}}. {{sources}}",
"sourceDetail": "{{name}}: {{status}}, {{update}}",
"sourceDetailWithHealth": "{{name}}: {{status}}, {{update}}, {{detail}}",
"lastUpdated": "last updated {{time}}",
"neverUpdated": "never updated",
"health": {
"partialCoverage": "partial coverage",
"contentStale": "content stale",
"seedStale": "seed stale",
"noSourceData": "no source data",
"sourceErrorReported": "source error reported",
"freshnessStoreUnavailable": "freshness store unavailable",
"freshnessStoreDegraded": "freshness store degraded"
},
"time": {
"never": "never",
"justNow": "just now",
"minutesAgo": "{{count}}m ago",
"hoursAgo": "{{count}}h ago",
"daysAgo": "{{count}}d ago",
"compactNow": "now",
"compactMinutes": "{{count}}m",
"compactHours": "{{count}}h",
"compactDays": "{{count}}d"
}
},
"exportGate": {
"signedOutDesc": "Sign in to export dashboard data as CSV, JSON or PDF.",
"upgradeDesc": "Data export (CSV, JSON, PDF) is included with Pro Business.",
"upgradeCta": "Upgrade to Pro Business",
"lockedAriaLabel": "Export data — locked. {{reason}}",
"unlockedAnnouncement": "Data export unlocked.",
"preparingPdf": "Preparing PDF…",
"pdfFailed": "The PDF report could not be generated. Try again, or use the JSON export."
},
"tabCap": {
"signedOutDesc": "Signed-out workspaces are limited to {{cap}} dashboard tabs. Sign in to add more.",
"upgradeDesc": "You've reached your limit of {{cap}} dashboard tabs.",
"upgradeCta": "Upgrade for more",
"lockedAriaLabel": "Add tab — locked. {{reason}}",
"unlockedAnnouncement": "Dashboard tab limit lifted."
}
},
"popups": {
"startDate": "开始日期",
"magnitude": "震级",
"depth": "深度",
"intensity": "强度",
"type": "类型",
"status": "状态",
"severity": "严重程度",
"location": "位置",
"coordinates": "坐标",
"casualties": "伤亡",
"displaced": "流离失所",
"belligerents": "交战方",
"keyDevelopments": "关键进展",
"unknown": "未知",
"source": "来源",
"events": "事件",
"capacity": "容量",
"updated": "已更新",
"earthquake": {
"levels": {
"major": "重大",
"moderate": "中等",
"minor": "轻微"
}
},
"base": {
"types": {
"us-nato": "美国/NATO",
"china": "中国",
"russia": "俄罗斯"
}
},
"protest": {
"acledVerified": "ACLED(已验证)",
"gdelt": "GDELT",
"riots": "骚乱",
"highSeverity": "高严重性"
},
"gpsJamming": {
"title": "GPS/GNSS干扰",
"navPerformance": "Nav Performance",
"samples": "ADS-B Samples",
"aircraft": "Aircraft",
"h3Hex": "H3 Hex"
},
"flight": {
"groundStop": "地面停航",
"groundDelay": "地面延误计划",
"departureDelay": "离港延误",
"arrivalDelay": "到港延误",
"delaysReported": "已报告延误",
"closure": "机场关闭",
"delays": "延误",
"avgDelay": "平均延误",
"cancelled": "已取消",
"sources": {
"faa": "FAA ASWS",
"eurocontrol": "Eurocontrol",
"computed": "计算值",
"aviationstack": "Flight Data",
"notam": "NOTAM"
},
"regions": {
"americas": "美洲",
"europe": "欧洲",
"apac": "亚太地区",
"mena": "中东",
"africa": "非洲"
},
"scheduled": "计划",
"estimated": "预计"
},
"aircraft": {
"altitude": "高度",
"speed": "地速",
"heading": "航向",
"position": "位置",
"ground": "地面",
"airborne": "空中"
},
"cyberThreat": {
"title": "网络威胁"
},
"nuclear": {
"types": {
"plant": "核电站",
"enrichment": "浓缩设施",
"weapons": "武器综合体",
"research": "研究设施",
"reprocessing": "后处理厂",
"testSite": "核试验场"
},
"description": "受监控的核设施。对区域安全和防扩散具有战略重要性。"
},
"economic": {
"types": {
"exchange": "证券交易所",
"centralBank": "央行",
"financialHub": "金融枢纽"
},
"closed": "已休市"
},
"irradiator": {
"subtitle": "工业伽马辐照设施",
"description": "使用钴-60或铯-137放射源的工业辐照设施,用于医疗器械灭菌、食品保鲜或材料加工。来源:IAEA DIIF数据库。"
},
"pipeline": {
"title": "管道",
"types": {
"oil": "石油管道",
"gas": "天然气管道",
"products": "成品管道"
},
"status": {
"operating": "运营中",
"construction": "建设中"
},
"description": "主要{{type}}管道基础设施。{{status}}"
},
"pipelineStatusDesc": {
"operating": "目前正在运营并输送资源。",
"construction": "目前正在建设中。"
},
"cable": {
"fault": "故障",
"degraded": "降级",
"active": "活跃",
"major": "主要",
"cable": "电缆",
"subtitle": "海底光纤电缆",
"type": "海底电缆",
"advisory": "故障公告",
"repairDeployment": "维修部署",
"repairStatus": {
"onStation": "已到位",
"enRoute": "在途中"
},
"health": {
"evidence": "健康状态证据"
},
"description": "承载国际互联网流量的海底电信电缆。这些光纤电缆构成了全球互联网连接的骨干,传输超过95%的洲际数据。"
},
"repairShip": {
"note": "维修船追踪显示正在向故障点进行活跃部署。",
"badge": "维修船",
"description": "维修船追踪显示正在执行海底电缆修复支援任务。",
"status": {
"onStation": "已到位",
"enRoute": "在途中"
}
},
"strategic": "战略",
"verified": "已验证",
"sampledList": "显示{{count}}个事件的抽样列表。",
"reason": "原因",
"threat": "威胁",
"sponsor": "资助方",
"country": "国家",
"malware": "恶意软件",
"lastSeen": "最后发现",
"open": "开放",
"tradingHours": "交易时间",
"gamma": "伽马",
"city": "城市",
"length": "长度",
"operator": "运营商",
"countries": "国家",
"waypoints": "途经点",
"repairEta": "维修预计到达",
"timeUnits": {
"m": "分",
"h": "时",
"d": "天"
},
"hotspot": {
"escalation": "升级评估",
"baseline": "基线",
"components": {
"news": "新闻",
"cii": "CII",
"geo": "地理",
"military": "军事"
},
"levels": {
"stable": "稳定",
"watch": "关注",
"elevated": "升高",
"high": "高",
"critical": "危急"
}
},
"historicalContext": "历史背景",
"lastMajorEvent": "上次重大事件",
"precedents": "先例",
"cyclicalPattern": "周期性模式",
"whyItMatters": "重要原因",
"keyEntities": "关键实体",
"relatedHeadlines": "相关标题",
"liveIntel": "实时情报",
"loadingNews": "正在加载全球新闻...",
"noCoverage": "无近期全球报道",
"time": "时间",
"area": "区域",
"expires": "过期时间",
"aisGapSpike": "AIS间隙激增",
"chokepointCongestion": "咽喉要道拥堵",
"darkening": "信号消失",
"density": "密度",
"darkShips": "暗船",
"vesselCount": "船舶数量",
"window": "时间窗口",
"region": "区域",
"fatalities": "死亡人数",
"actors": "行为方",
"near": "附近",
"moreEvents": "更多事件",
"monitoring": "监控中",
"viewUSGS": "在USGS上查看",
"expired": "已过期",
"timeAgo": {
"s": "{{count}}秒前",
"m": "{{count}}分钟前",
"h": "{{count}}小时前",
"d": "{{count}}天前"
},
"cableAdvisory": {
"reported": "报告时间",
"impact": "影响",
"eta": "预计到达"
},
"outage": {
"levels": {
"total": "全面中断",
"major": "重大中断",
"partial": "部分中断",
"disruption": "服务中断"
},
"reported": "报告时间",
"categories": "类别",
"readReport": "阅读完整报告"
},
"datacenter": {
"status": {
"existing": "运营中",
"planned": "计划中",
"decommissioned": "已退役",
"unknown": "未知"
},
"gpuChipCount": "GPU/芯片数量",
"chipType": "芯片类型",
"power": "电力",
"sector": "行业",
"attribution": "数据:Epoch AI GPU集群",
"chips": "芯片",
"cluster": {
"title": "{{count}}个数据中心",
"totalChips": "芯片总数",
"totalPower": "总电力",
"operational": "运营中",
"planned": "计划中",
"moreDataCenters": "还有{{count}}个数据中心",
"sampledSites": "显示{{count}}个站点的抽样列表。"
}
},
"startupHub": {
"tiers": {
"mega": "超级枢纽",
"major": "主要枢纽",
"emerging": "新兴",
"hub": "枢纽"
},
"unicorns": "独角兽"
},
"cloudRegion": {
"provider": "提供商",
"availabilityZones": "可用区"
},
"techHQ": {
"types": {
"faang": "大型科技",
"unicorn": "独角兽",
"public": "上市公司",
"tech": "科技"
},
"marketCap": "市值",
"employees": "员工数"
},
"accelerator": {
"types": {
"accelerator": "加速器",
"incubator": "孵化器",
"studio": "创业工作室"
},
"founded": "成立时间",
"notableAlumni": "知名校友"
},
"techEvent": {
"days": {
"today": "今天",
"tomorrow": "明天",
"inDays": "{{count}}天后"
},
"date": "日期",
"moreInformation": "更多信息"
},
"techHQCluster": {
"companiesCount": "{{count}}家公司",
"bigTechCount": "{{count}}家大型科技",
"unicornsCount": "{{count}}家独角兽",
"publicCount": "{{count}}家上市公司",
"sampled": "显示{{count}}家公司的抽样列表。"
},
"techEventCluster": {
"eventsCount": "{{count}}个活动",
"upcomingWithin2Weeks": "{{count}}个活动将在2周内举行",
"sampled": "显示{{count}}个活动的抽样列表。"
},
"militaryFlight": {
"types": {
"fighter": "战斗机",
"bomber": "轰炸机",
"transport": "运输机",
"tanker": "加油机",
"awacs": "AWACS/预警机",
"reconnaissance": "侦察机",
"helicopter": "直升机",
"drone": "无人机",
"patrol": "巡逻机",
"specialOps": "特种作战",
"vip": "要客运输"
},
"altitude": "高度",
"ground": "地面",
"speed": "速度",
"heading": "航向",
"hexCode": "HEX代码",
"squawk": "应答机代码",
"attribution": "来源:OpenSky Network"
},
"militaryVessel": {
"aisDark": "AIS信号消失",
"vessel": "舰艇",
"speed": "速度",
"heading": "航向",
"mmsi": "MMSI",
"region": "REGION",
"strikeGroup": "STRIKE GROUP",
"usniIntel": "USNI Intel",
"usniSource": "Source: USNI News Fleet Tracker",
"approximatePosition": "Position approximate — based on USNI weekly report, not real-time AIS.",
"darkDescription": "⚠ 舰艇进入暗航状态 - AIS信号丢失。可能表明正在执行敏感任务。",
"recentTracking": "Recent Tracking",
"lastReport": "LATEST",
"nearChokepoint": "NEAR CHOKEPOINT",
"nearBase": "NEAR BASE",
"lastSeen": "LAST SEEN",
"estPosition": "预计位置",
"aisLive": "AIS 实时"
},
"militaryCluster": {
"flightActivity": {
"exercise": "军事演习",
"patrol": "巡逻活动",
"transport": "运输行动",
"unknown": "军事活动"
},
"moreAircraft": "还有{{count}}架飞机",
"aircraftCount": "{{count}}架飞机",
"aircraft": "飞机",
"activity": "活动",
"primary": "主要",
"trackedAircraft": "跟踪飞机",
"vesselActivity": {
"exercise": "海军演习",
"deployment": "海军部署",
"patrol": "巡逻活动",
"transit": "舰队过境",
"unknown": "海军活动"
},
"moreVessels": "还有{{count}}艘舰艇",
"vesselsCount": "{{count}}艘舰艇",
"vessels": "舰艇",
"trackedVessels": "跟踪舰艇"
},
"naturalEvent": {
"closed": "已结束",
"active": "活跃",
"reported": "已报告",
"viewOnSource": "在{{source}}上查看",
"attribution": "数据:NASA EONET",
"storm": "风暴",
"classification": "分类",
"maxWind": "最大风速",
"pressure": "气压",
"movement": "移动",
"tropicalSystem": "热带系统"
},
"port": {
"types": {
"container": "集装箱",
"oil": "石油码头",
"lng": "LNG码头",
"naval": "军港",
"mixed": "综合",
"bulk": "散货"
},
"worldRank": "世界排名"
},
"spaceport": {
"status": {
"active": "活跃",
"construction": "建设中",
"inactive": "停用"
},
"launchActivity": "发射活动",
"description": "战略航天发射设施。发射频率和轨道进入能力是关键的地缘政治指标。"
},
"mineral": {
"status": {
"producing": "生产中",
"development": "开发中",
"exploration": "勘探中"
},
"projectSubtitle": "{{mineral}}项目"
},
"stockExchange": {
"marketCap": "市值"
},
"financialCenter": {
"gfciRank": "GFCI排名",
"specialties": "专业领域"
},
"centralBank": {
"currency": "货币"
},
"commodityHub": {
"commodities": "大宗商品"
},
"iranEvent": {
"relatedEvents": "相关事件"
},
"hotspotSubtexts": {
"conflict_zone": "冲突区",
"dprk_watch": "朝鲜监控",
"egypt_gis": "埃及/GIS",
"energy_space": "能源/航天",
"financial_hub": "金融枢纽",
"gchq_mi6": "GCHQ/MI6",
"greenland_intel": "格陵兰情报",
"haiti_crisis": "海地危机",
"irgc_activity": "伊朗革命卫队活动",
"insurgency_coups": "叛乱/政变",
"iraq_pmf": "伊拉克/人民动员力量",
"kremlin_activity": "克里姆林宫活动",
"lebanon_hezbollah": "黎巴嫩/真主党",
"mossad_idf": "摩萨德/以色列国防军",
"nato_hq": "NATO总部",
"pla_mss_activity": "解放军/国安部活动",
"pentagon_pizza_index": "五角大楼披萨指数",
"piracy_conflict": "海盗/冲突",
"qatar_al_udeid": "卡塔尔/乌代德",
"saudi_gip_mbs": "沙特GIP/MBS",
"strait_watch": "海峡监控",
"syria_crisis": "叙利亚危机",
"tech_ai_hub": "科技/AI枢纽",
"turkey_mit": "土耳其/MIT",
"uae_ecsr": "阿联酋/ECSR",
"venezuela_crisis": "委内瑞拉危机",
"yemen_houthis": "也门/胡塞武装"
}
},
"signals": {
"context": {
"prediction_leads_news": {
"whyItMatters": "预测市场通常在消息成为新闻之前就已定价——交易者可能提前获知事态发展。",
"actionableInsight": "关注未来1-6小时内可能出现的突发新闻,以解释市场变动。",
"confidenceNote": "如果多个预测市场同向变动,置信度更高。"
},
"news_leads_markets": {
"whyItMatters": "新闻传播速度快于市场反应——存在潜在的错误定价机会。",
"actionableInsight": "关注市场在算法和交易者消化新闻后的追赶反应。",
"confidenceNote": "如果新闻来自一级通讯社,信号更强。"
},
"silent_divergence": {
"whyItMatters": "市场大幅波动但无可识别的新闻催化剂——可能是内幕信息、算法交易或未报道的事态发展。",
"actionableInsight": "调查替代数据源;解释该波动的新闻可能稍后出现。",
"confidenceNote": "置信度较低,因为原因未知——视为早期预警,而非已确认的情报。"
},
"velocity_spike": {
"whyItMatters": "一则报道正在多个新闻来源中加速传播——表明重要性增长,可能影响市场/政策。",
"actionableInsight": "该话题需要立即关注;预期将出现官方声明或市场反应。",
"confidenceNote": "来源越多置信度越高;检查一级来源是否在其中。"
},
"keyword_spike": {
"whyItMatters": "某个术语在多个来源中出现频率显著高于基线,表明一个正在发展的事件。",
"actionableInsight": "查看相关标题和AI摘要,然后与国家不稳定性和市场变动进行关联分析。",
"confidenceNote": "基线倍增系数越高、来源越多样化,置信度越高。"
},
"convergence": {
"whyItMatters": "多个独立来源类型确认同一事件——交叉验证提高了准确性的可能。",
"actionableInsight": "视为高置信度情报;三角验证降低了误报风险。",
"confidenceNote": "当通讯社、政府和情报来源一致时,置信度极高。"
},
"triangulation": {
"whyItMatters": "「权威三角」(通讯社、政府来源、情报专家)已对齐——这是突发新闻确认的黄金标准。",
"actionableInsight": "这是可执行情报;预期市场/政策反应即将到来。",
"confidenceNote": "系统中最高置信度信号——多个权威来源一致。"
},
"flow_drop": {
"whyItMatters": "检测到实物商品流通中断——供应限制通常先于价格飙升。",
"actionableInsight": "关注能源大宗商品价格;评估供应链暴露风险。",
"confidenceNote": "置信度取决于中断持续时间和替代供应的可用性。"
},
"flow_price_divergence": {
"whyItMatters": "供应中断消息尚未反映在商品价格中——潜在的信息优势。",
"actionableInsight": "要么市场反应迟缓,要么中断不如报道中那么严重。",
"confidenceNote": "中等置信度——市场可能掌握比新闻报道更好的信息。"
},
"geo_convergence": {
"whyItMatters": "多个新闻事件聚集在同一地理位置周围——可能升级或协调活动。",
"actionableInsight": "提高该区域的监控优先级;如有条件,与卫星/AIS数据关联分析。",
"confidenceNote": "如果事件跨越多个来源类型和时间段,置信度更高。"
},
"explained_market_move": {
"whyItMatters": "市场变动有明确的新闻催化剂——价格行为反映已知信息。",
"actionableInsight": "理解驱动该变动的叙事;评估反应是否成比例。",
"confidenceNote": "高置信度——新闻与价格行为相关。"
},
"hotspot_escalation": {
"whyItMatters": "地缘政治热点基于新闻活动、国家不稳定性、地理趋同和军事存在显示出显著升级。",
"actionableInsight": "提高监控优先级;评估对基础设施、市场和区域稳定性的下游影响。",
"confidenceNote": "置信度按多个数据源加权——新闻(35%)、国家不稳定性(25%)、地理趋同(25%)、军事活动(15%)。"
},
"sector_cascade": {
"whyItMatters": "市场波动正在相关板块间级联传导——表明对催化事件的系统性反应。",
"actionableInsight": "识别主要催化剂;评估关联资产的暴露风险。",
"confidenceNote": "当多个板块以相似速度和方向变动时,置信度更高。"
},
"military_surge": {
"whyItMatters": "军事运输活动显著高于基线——表明可能的部署、人道主义行动或力量投射。",
"actionableInsight": "与区域新闻关联分析;评估附近基地活动和海军动向。",
"confidenceNote": "在持续数小时的活动和多样化机型的情况下,置信度更高。"
},
"fallback": {
"whyItMatters": "检测到信号。",
"actionableInsight": "监控事态发展。",
"confidenceNote": "标准置信度。"
}
}
},
"alerts": {
"instabilityRising": "{{country}} 不稳定性上升",
"instabilityFalling": "{{country}} 不稳定性下降",
"indexRose": "不稳定指数从{{from}}升至{{to}}({{change}})。驱动因素:{{driver}}",
"indexFell": "不稳定指数从{{from}}降至{{to}}({{change}})。驱动因素:{{driver}}",
"geoAlert": "地理警报:{{location}}",
"cascadeAlert": "基础设施级联警报",
"infraAlert": "基础设施警报:{{name}}",
"countriesAffected": "{{count}}个国家受影响,最大影响:{{impact}}",
"alert": "警报:{{location}}",
"multipleRegions": "多个区域",
"trending": "「{{term}}」趋势上升 — {{hours}}小时内{{count}}次提及",
"eventsDetected": "在区域({{lat}}°, {{lon}}°)检测到{{count}}个事件"
},
"intel": {
"topics": {
"military": {
"name": "军事活动",
"description": "军事演习、部署和行动"
},
"cyber": {
"name": "网络威胁",
"description": "网络攻击、勒索软件和数字威胁"
},
"nuclear": {
"name": "核事务",
"description": "核计划、IAEA核查、防扩散"
},
"sanctions": {
"name": "制裁",
"description": "经济制裁和贸易限制"
},
"intelligence": {
"name": "情报",
"description": "间谍活动、情报行动、监控"
},
"maritime": {
"name": "海上安全",
"description": "海军行动、海上咽喉要道、航线"
}
}
},
"common": {
"loading": "加载中...",
"error": "错误",
"noData": "无可用数据",
"noDataAvailable": "无可用数据",
"retrying": "正在重试...",
"failedToLoad": "加载数据失败",
"noDataShort": "无数据",
"upstreamUnavailable": "上游API不可用 — 将自动重试",
"loadingUcdpEvents": "正在加载UCDP事件",
"loadingStablecoins": "正在加载稳定币...",
"scanningThermalData": "正在扫描热数据",
"calculatingExposure": "正在计算暴露量",
"computingSignals": "正在计算信号...",
"loadingEtfData": "正在加载ETF数据...",
"loadingGiving": "正在加载全球捐赠数据",
"loadingDisplacement": "正在加载流离失所数据",
"loadingClimateData": "正在加载气候数据",
"failedTechReadiness": "加载科技就绪数据失败",
"failedRiskOverview": "计算风险概览失败",
"failedPredictions": "加载预测失败",
"failedCII": "计算CII失败",
"failedDependencyGraph": "构建依赖图失败",
"failedIntelFeed": "加载情报动态失败",
"failedMarketData": "加载市场数据失败",
"failedSectorData": "加载板块数据失败",
"failedCommodities": "加载大宗商品失败",
"failedCryptoData": "加载加密货币数据失败",
"rateLimitedMarket": "市场数据暂时不可用(请求受限)— 即将自动重试",
"noNewsAvailable": "无可用新闻",
"noActiveTechHubs": "无活跃的科技中心",
"noActiveGeoHubs": "无活跃的地缘政治枢纽",
"allSourcesDisabled": "所有数据源已禁用",
"allIntelSourcesDisabled": "所有情报数据源已禁用",
"noEventsInCategory": "该类别暂无事件",
"exportCsv": "导出CSV",
"exportJson": "导出JSON",
"exportData": "导出数据",
"selectAll": "全选",
"selectNone": "全不选",
"unrest": "动荡",
"conflict": "冲突",
"security": "军事活动",
"information": "信息",
"shareStory": "分享报道",
"exportImage": "导出图片",
"exportPdf": "导出 PDF",
"new": "新",
"live": "实时",
"cached": "已缓存",
"unavailable": "不可用",
"close": "关闭",
"currentVariant": "(当前)",
"retry": "Retry",
"refresh": "Refresh",
"all": "全部",
"cancel": "取消"
},
"preferences": {
"display": "显示",
"intelligence": "智能",
"media": "媒体",
"panels": "面板",
"dataAndCommunity": "数据与社区",
"theme": "主题",
"themeDesc": "自动跟随系统偏好。",
"themeAuto": "自动(跟随系统)",
"themeDark": "深色",
"themeLight": "浅色",
"mapProvider": "地图图块提供者",
"mapProviderDesc": "选择地图图块的加载来源。",
"mapTheme": "地图主题",
"mapThemeDesc": "地图图块的视觉风格。",
"globePreset": "视觉预设",
"globePresetDesc": "在经典和增强的地球视觉之间切换。",
"fontFamily": "字体",
"fontFamilyDesc": "等宽字体用于技术外观,系统默认字体便于阅读。",
"fontMono": "等宽字体",
"fontSystem": "系统默认"
},
"contextMenu": {
"openCountryBrief": "打开国家简报",
"copyCoordinates": "复制坐标"
},
"shell": {
"documentTitle": "World Monitor — 实时全球情报仪表板",
"metaDescription": "实时全球情报平台。刊登于 WIRED。全球 190 个国家 200 万+ 用户使用。冲突、市场、军事、OSINT 信息一览无遗。",
"offlineTitle": "您已离线",
"offlineMessage": "World Monitor 需要互联网连接来获取实时情报数据。",
"offlineRetry": "重试"
},
"widgets": {
"confirmDelete": "永久删除此小组件?",
"chatTitle": "小组件生成器",
"modifyTitle": "编辑小组件",
"inputPlaceholder": "描述您的小组件...",
"addToDashboard": "添加到仪表板",
"applyChanges": "应用更改",
"send": "发送",
"modifyWithAi": "使用 AI 编辑小组件",
"ready": "小组件已就绪: {{title}}",
"fetching": "正在获取 {{target}}...",
"requestTimedOut": "请求超时。请重试。",
"serverError": "服务器错误: {{status}}",
"unknownError": "未知错误",
"generatedWidget": "生成的小组件: {{title}}",
"saveFailed": "无法保存小组件。请重试。",
"checkingConnection": "检查小组件访问权限中…",
"preflightConnected": "已连接到小组件代理",
"preflightInvalidKey": "小组件密钥被拒绝。请更新 wm-widget-key 并重新加载。",
"preflightUnavailable": "小组件代理暂时不可用。",
"preflightAiUnavailable": "AI 后端不可用。请稍后重试。",
"readyToGenerate": "已就绪。选择示例或描述您的小组件。",
"readyToApply": "{{title}} 的预览已就绪。请审阅后添加到仪表板。",
"modifyHint": "预览当前小组件。提交更改请求以修改它。",
"generating": "生成中…",
"examplesTitle": "提示示例",
"previewTitle": "实时预览",
"phaseChecking": "检查中",
"phaseReadyToPrompt": "就绪",
"phaseFetching": "获取中",
"phaseComposing": "构建中",
"phaseComplete": "就绪",
"phaseError": "错误",
"previewCheckingHeading": "连接小组件生成器中",
"previewReadyHeading": "描述您想要的小组件",
"previewFetchingHeading": "正在获取实时 WorldMonitor 数据",
"previewComposingHeading": "正在构建小组件布局",
"previewErrorHeading": "预览需要处理",
"previewCheckingCopy": "我们正在验证您的小组件密钥和后端可用性,然后启用生成。",
"previewReadyCopy": "使用提示示例或描述您想要的精确实时视图。预览将在此处更新,然后您可以保存。",
"previewFetchingCopy": "代理正在调用已批准的 WorldMonitor 端点并为小组件塑形数据集。",
"previewComposingCopy": "预览正在使用最新的实时数据和仪表板样式进行呈现。",
"previewErrorCopy": "修复问题后重试。您现有的小组件不受影响。",
"createInteractive": "创建交互式小组件",
"proBadge": "PRO",
"preflightProUnavailable": "PRO 小组件代理不可用。请检查服务器上的 PRO_WIDGET_KEY。",
"preflightInvalidProKey": "PRO 密钥被拒绝。请更新 wm-pro-key 并重新加载。",
"preflightProSubscriptionRequired": "需要 Pro 订阅。如果您刚升级,请刷新页面;否则请联系支持。",
"preflightProRequired": "需要 Pro 订阅才能使用小部件生成器。升级以解锁。",
"examples": {
"oilGold": "显示今天的原油价格与黄金价格对比",
"cryptoMovers": "为过去 24 小时内涨跌幅最大的加密货币创建小部件",
"flightDelays": "总结目前国际航班延误最严重的情况",
"conflictHotspots": "标记最新 UCDP 冲突热点及简短标签"
},
"proExamples": {
"interactiveChart": "交互式 Chart.js 图表,对比石油和黄金价格",
"sortableTable": "具有搜索筛选功能的可排序加密货币价格表",
"animatedCounters": "主要经济指标的动画计数器",
"tabbedComparison": "按地区分类的冲突事件选项卡式对比"
}
},
"connectivity": {
"offlineCached": "离线——显示来自 {{freshness}} 的缓存数据。",
"offlineUnavailable": "离线——实时数据目前不可用。",
"cachedFallback": "实时数据不可用——显示来自 {{freshness}} 的缓存数据。"
},
"premium": {
"pro": "PRO",
"lockedDesc": "需要 World Monitor 许可证密钥",
"signInToUnlock": "登录以解锁高级功能",
"signIn": "登录以解锁",
"upgradeDesc": "升级到 Pro 以获得完整的高级分析访问权限",
"upgradeToPro": "升级到 Pro",
"features": {
"orefSirens1": "实时以色列导弹和火箭警报",
"orefSirens2": "警报区域地图及威胁分类",
"telegramIntel1": "精选 Telegram 开源情报频道",
"telegramIntel2": "近实时冲突与地缘政治更新"
}
},
"auth": {
"signIn": "登录",
"createAccount": "创建账户",
"settings": "设置"
},
"mcp": {
"connectPanel": "连接 MCP",
"modalTitle": "连接 MCP 服务器",
"serverUrl": "服务器 URL",
"authHeader": "授权标头",
"optional": "可选",
"apiKey": "API 密钥",
"apiKeyPlaceholder": "粘贴您的 API 密钥",
"useCustomHeaders": "高级:使用自定义标头 ↓",
"useApiKey": "← 使用 API 密钥",
"connectBtn": "连接并列出工具",
"connecting": "连接中...",
"foundTools": "找到 {{count}} 个工具",
"connectFailed": "连接失败",
"selectTool": "选择工具",
"toolArgs": "参数 (JSON)",
"panelTitle": "面板标题",
"panelTitlePlaceholder": "我的 MCP 面板",
"refreshEvery": "刷新间隔",
"seconds": "秒",
"addPanel": "添加面板",
"configure": "配置 MCP",
"refreshNow": "立即刷新",
"invalidJson": "无效的 JSON",
"confirmDelete": "移除此 MCP 面板?",
"quickConnect": "快速连接",
"or": "或输入自定义服务器",
"generatingVisualization": "正在生成可视化...",
"visualizationFailed": "可视化失败"
},
"dashboardTabs": {
"ariaLabel": "Dashboard tabs",
"defaultName": "Main",
"newTabName": "New Tab",
"newTabCreated": "New tab created",
"tabDeleted": "Tab \"{{name}}\" deleted",
"addTab": "Add tab",
"addTabTitle": "New tab (starts with the default panels)",
"renameHint": "{{name}} — double-click to rename",
"deleteTab": "Delete tab",
"deleteTabAria": "Delete tab {{name}}",
"tabNameAria": "Tab name"
}
}
|