File size: 148,278 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 | {
"shell": {
"documentTitle": "World Monitor — Real-Time Global Intelligence Dashboard",
"metaDescription": "Real-time global intelligence platform. Featured in WIRED. Used by 2M+ people across 190 countries. Conflicts, markets, military, OSINT in one view.",
"offlineTitle": "You're Offline",
"offlineMessage": "World Monitor requires an internet connection for real-time intelligence data.",
"offlineRetry": "Retry"
},
"widgets": {
"confirmDelete": "Remove this widget permanently?",
"chatTitle": "Widget Builder",
"modifyTitle": "Modify Widget",
"inputPlaceholder": "Describe your widget...",
"addToDashboard": "Add to Dashboard",
"applyChanges": "Apply Changes",
"send": "Send",
"modifyWithAi": "Modify widget with AI",
"ready": "Widget ready: {{title}}",
"fetching": "Fetching {{target}}...",
"requestTimedOut": "Request timed out. Please try again.",
"serverError": "Server error: {{status}}",
"unknownError": "Unknown error",
"generatedWidget": "Generated widget: {{title}}",
"saveFailed": "ذخیره ابزارک ممکن نشد. دوباره تلاش کنید.",
"checkingConnection": "Checking widget access…",
"preflightConnected": "Connected to the widget agent",
"preflightInvalidKey": "Widget key rejected. Update wm-widget-key and reload.",
"preflightUnavailable": "Widget agent is temporarily unavailable.",
"preflightAiUnavailable": "AI backend is unavailable. Try again later.",
"readyToGenerate": "Ready to generate. Pick an example or describe your widget.",
"readyToApply": "Preview ready for {{title}}. Review it, then add it to the dashboard.",
"modifyHint": "Previewing the current widget. Submit a change request to revise it.",
"generating": "Generating…",
"examplesTitle": "Prompt ideas",
"previewTitle": "Live Preview",
"phaseChecking": "Checking",
"phaseReadyToPrompt": "Ready",
"phaseFetching": "Fetching",
"phaseComposing": "Composing",
"phaseComplete": "Ready",
"phaseError": "Error",
"previewCheckingHeading": "Connecting the widget builder",
"previewReadyHeading": "Describe the widget you want",
"previewFetchingHeading": "Fetching live WorldMonitor data",
"previewComposingHeading": "Composing the widget layout",
"previewErrorHeading": "The preview needs attention",
"previewCheckingCopy": "We are validating your widget key and backend availability before enabling generation.",
"previewReadyCopy": "Use a prompt example or describe the exact live view you want. The preview will update here before you save it.",
"previewFetchingCopy": "The agent is calling approved WorldMonitor endpoints and shaping the dataset for the widget.",
"previewComposingCopy": "The preview is rendering with the latest live data and dashboard styling.",
"previewErrorCopy": "Fix the issue, then retry. Your existing widgets are unaffected.",
"createInteractive": "Create Interactive Widget",
"proBadge": "PRO",
"preflightProUnavailable": "PRO widget agent unavailable. Check PRO_WIDGET_KEY on the server.",
"preflightInvalidProKey": "PRO key rejected. Update wm-pro-key and reload.",
"preflightProSubscriptionRequired": "Pro subscription required. If you just upgraded, refresh the page; otherwise contact support.",
"preflightProRequired": "Pro subscription required to use the Widget Builder. Upgrade to unlock.",
"examples": {
"oilGold": "Show me today's crude oil price versus gold",
"cryptoMovers": "Create a widget for the top crypto movers in the last 24 hours",
"flightDelays": "Summarize the worst international flight delays right now",
"conflictHotspots": "Map the latest UCDP conflict hotspots with short labels"
},
"proExamples": {
"interactiveChart": "Interactive Chart.js chart comparing oil and gold prices",
"sortableTable": "Sortable crypto price table with search filter",
"animatedCounters": "Animated counters for key economic indicators",
"tabbedComparison": "Tabbed comparison of conflict events by region"
}
},
"countryBrief": {
"identifying": "Identifying country...",
"locating": "Locating region...",
"geocodeFailed": "Could not identify a country at this location",
"retryBtn": "Retry",
"closeBtn": "Close",
"limitedCoverage": "Limited coverage",
"instabilityIndex": "Instability Index",
"loadingResilienceScore": "Loading resilience score…",
"resilienceScoreUnavailable": "Resilience score unavailable.",
"notTracked": "Not tracked — {{country}} is not in the CII tier-1 list",
"intelBrief": "Intelligence Brief",
"generatingBrief": "Generating intelligence brief...",
"topNews": "Top News",
"activeSignals": "Country Signals",
"timeline": "7-Day Timeline",
"predictionMarkets": "Prediction Markets",
"loadingMarkets": "Loading prediction markets...",
"infrastructure": "Infrastructure Exposure",
"briefUnavailable": "AI brief unavailable — configure GROQ_API_KEY in Settings.",
"cached": "Cached",
"fresh": "Fresh",
"noMarkets": "No active markets for this country.",
"loadingIndex": "Loading index...",
"components": {
"unrest": "Unrest",
"conflict": "Conflict",
"security": "Mil. Activity",
"information": "Information"
},
"signals": {
"protests": "protests",
"militaryAir": "mil. aircraft",
"militarySea": "mil. vessels",
"outages": "outages",
"earthquakes": "earthquakes",
"displaced": "displaced",
"climate": "Climate stress",
"conflictEvents": "conflict events",
"activeStrikes": "active strikes",
"aviationDisruptions": "airport disruptions",
"gpsJammingZones": "GPS Jamming Zones"
},
"timeAgo": {
"m": "{{count}}m ago",
"h": "{{count}}h ago",
"d": "{{count}}d ago"
},
"infra": {
"pipeline": "Pipelines",
"cable": "Undersea Cables",
"datacenter": "Data Centers",
"base": "Military Bases",
"nuclear": "Nearby Nuclear",
"port": "Ports"
},
"levels": {
"critical": "Critical",
"high": "High",
"elevated": "Elevated",
"moderate": "Moderate",
"normal": "Normal",
"low": "Low"
},
"trends": {
"rising": "Rising",
"falling": "Falling",
"stable": "Stable"
},
"militaryActivity": "Military Activity",
"economicIndicators": "Economic Indicators",
"ownFlights": "Own Flights",
"foreignFlights": "Foreign Flights",
"navalVessels": "Naval Vessels",
"foreignPresence": "Foreign Presence",
"nearestBases": "Nearest Military Bases",
"noBasesNearby": "No nearby bases within 600 km.",
"noInfrastructure": "No critical infrastructure found within 600 km.",
"noGeometry": "No geometry available for infrastructure correlation.",
"noSignals": "No recent high-severity signals.",
"assessmentUnavailable": "Assessment unavailable.",
"noNews": "No recent country-specific coverage.",
"noIndicators": "No country-specific indicators available.",
"nearbyPorts": "Nearby Ports",
"detected": "Detected",
"notDetected": "No",
"ciiUnavailable": "CII score unavailable for this country.",
"chips": {
"criticalNews": "Critical News",
"protests": "Protests",
"militaryAir": "Military Air",
"navalVessels": "Naval Vessels",
"outages": "Outages",
"aisDisruptions": "AIS Disruptions",
"satelliteFires": "Satellite Fires",
"temporalAnomalies": "Temporal Anomalies",
"cyberThreats": "Cyber Threats",
"earthquakes": "Earthquakes",
"displaced": "Displaced",
"climateStress": "Climate Stress",
"conflictEvents": "Conflict Events",
"activeStrikes": "Active Strikes",
"doNotTravel": "Do Not Travel",
"reconsiderTravel": "Reconsider Travel",
"exerciseCaution": "Exercise Caution",
"advisory": "Advisory",
"activeSirens": "Active Sirens",
"sirens24h": "Sirens / 24h",
"aviationDisruptions": "Aviation Disruptions",
"gpsJammingZones": "GPS Jamming Zones"
},
"fallback": {
"instabilityIndex": "**Instability Index: {{score}}/100** ({{level}}, {{trend}})",
"protestsDetected": "{{count}} active protests detected",
"aircraftTracked": "{{count}} military aircraft tracked",
"vesselsTracked": "{{count}} military vessels tracked",
"internetOutages": "{{count}} internet disruptions",
"recentEarthquakes": "{{count}} recent earthquakes",
"stockIndex": "Stock index: {{value}}",
"activeStrikes": "{{count}} active strikes detected"
},
"countryFacts": "Country Facts",
"loadingFacts": "Loading country facts...",
"noFacts": "Country facts unavailable.",
"facts": {
"headOfState": "Head of State",
"population": "Population",
"capital": "Capital",
"languages": "Languages",
"currencies": "Currencies",
"area": "Area"
},
"china": {
"title": "China Country Snapshot",
"description": "Current macro, market, trade, energy, and operational availability from existing public data contracts.",
"policyEvents": "Policy & Enforcement",
"energy": "Energy",
"availability": "Hazards & Aviation",
"observed": "As of:",
"published": "Published:",
"effective": "Effective:",
"sectors": "Sectors:",
"entities": "Entities:",
"translation": "Translation:",
"source": "Source:",
"imfGrowth": "IMF growth forecast",
"creditGdp": "Credit to GDP",
"strategicTrade": "Strategic trade exposure",
"crudeImports": "Crude oil imports",
"gasDemand": "Gas demand",
"energyMix": "Power mix",
"coal": "coal",
"noMajorDisruptions": "No major disruptions reported",
"activeDisruptions_one": "{{count}} active disruption",
"activeDisruptions_other": "{{count}} active disruptions",
"activeSignals_one": "{{count}} active signal",
"activeSignals_other": "{{count}} active signals",
"aviationSource": "Aviation monitoring",
"hazardSource": "Country intelligence signals",
"marketSource": "Country market index",
"ccfiSource": "Shanghai Shipping Exchange",
"comtradeSource": "UN Comtrade reporter 156",
"sourceUnavailable": "Source unavailable",
"policyUnavailable": "Official policy and enforcement events are currently unavailable.",
"policyPartial": "{{count}} official agencies are temporarily degraded.",
"status": {
"loading": "Loading",
"available": "Available",
"partial": "Partial",
"stale": "Stale",
"unavailable": "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": "WORLD",
"tech": "TECH",
"live": "LIVE",
"cached": "CACHED",
"unavailable": "UNAVAILABLE",
"search": "Search",
"settings": "SETTINGS",
"sources": "SOURCES",
"copyLink": "Link",
"embed": "Embed",
"downloadApp": "Download App",
"fullscreen": "Fullscreen",
"pinMap": "Pin map to top",
"selectRegion": "Select Region",
"viewOnGitHub": "View on GitHub",
"filterSources": "Filter sources...",
"sourcesEnabled": "{{enabled}}/{{total}} enabled",
"finance": "FINANCE",
"commodity": "COMMODITY",
"energy": "ENERGY",
"panelDisplayCaption": "Choose which panels to show on the dashboard",
"tabSettings": "Settings",
"tabPanels": "Panels",
"tabSources": "Sources",
"tabNotifications": "Notifications",
"languageLabel": "Language",
"sourceRegionAll": "All",
"sourceRegionWorldwide": "Worldwide",
"sourceRegionUS": "United States",
"sourceRegionMiddleEast": "Middle East",
"sourceRegionAfrica": "Africa",
"sourceRegionLatAm": "Latin America",
"sourceRegionAsiaPacific": "Asia-Pacific",
"sourceRegionEurope": "Europe",
"sourceRegionTopical": "Topical",
"sourceRegionIntel": "Intelligence",
"sourceRegionTechNews": "Tech News",
"sourceRegionAiMl": "AI & ML",
"sourceRegionStartupsVc": "Startups & VC",
"sourceRegionRegionalTech": "Regional Ecosystems",
"sourceRegionDeveloper": "Developer",
"sourceRegionCybersecurity": "Cybersecurity",
"sourceRegionTechPolicy": "Policy & Research",
"sourceRegionTechMedia": "Media & Podcasts",
"sourceRegionMarkets": "Markets & Analysis",
"sourceRegionFixedIncomeFx": "Fixed Income & FX",
"sourceRegionCommodities": "Commodities",
"sourceRegionCryptoDigital": "Crypto & Digital",
"sourceRegionCentralBanks": "Central Banks & Economy",
"sourceRegionDeals": "Deals & Corporate",
"sourceRegionFinRegulation": "Financial Regulation",
"sourceRegionGulfMena": "Gulf & MENA",
"filterPanels": "Filter panels...",
"resetLayout": "Reset Layout",
"resetLayoutTooltip": "Restore default panel arrangement",
"unsavedChanges": "You have unsaved panel changes. Discard them?",
"panelCatCore": "Core",
"panelCatIntelligence": "Intelligence",
"panelCatCorrelation": "Correlation",
"panelCatRegionalNews": "Regional News",
"panelCatMarketsFinance": "Markets & Finance",
"panelCatTopical": "Topical",
"panelCatDataTracking": "Data & Tracking",
"panelCatTechAi": "Tech & AI",
"panelCatStartupsVc": "Startups & VC",
"panelCatSecurityPolicy": "Security & Policy",
"panelCatMarkets": "Markets",
"panelCatFixedIncomeFx": "Fixed Income & FX",
"panelCatCommodities": "Commodities",
"panelCatCryptoDigital": "Crypto & Digital",
"panelCatCentralBanks": "Central Banks & Econ",
"panelCatDeals": "Deals & Institutional",
"panelCatGulfMena": "Gulf & MENA",
"panelCatCommodityPrices": "Prices & Markets",
"panelCatMining": "Mining & Supply Chain",
"panelCatCommodityEcon": "Economy & Trade",
"panelCatHappyNews": "Good News",
"panelCatHappyPlanet": "Planet & Giving"
},
"panels": {
"liveNews": "Live News",
"markets": "Markets",
"marketImplications": "AI Market Implications",
"map": "Global Situation",
"techMap": "Global Tech",
"techHubs": "Hot Tech Hubs",
"status": "System Status",
"insights": "AI Insights",
"strategicPosture": "AI Strategic Posture",
"cii": "Country Instability",
"strategicRisk": "Strategic Risk Overview",
"intel": "Intel Feed",
"gdeltIntel": "Live Intelligence",
"cascade": "Infrastructure Cascade",
"politics": "World News",
"us": "United States",
"europe": "Europe",
"middleeast": "Middle East",
"africa": "Africa",
"latam": "Latin America",
"asia": "Asia-Pacific",
"energy": "Energy & Resources",
"energyComplex": "Energy Complex",
"oilInventories": "Oil Inventories",
"energyCrisis": "Energy Crisis Tracker",
"goldIntelligence": "Gold Intelligence",
"gov": "Government",
"thinktanks": "Think Tanks",
"polymarket": "Predictions",
"commodities": "Metals & Materials",
"economic": "Macro Stress",
"tradePolicy": "Trade Policy",
"supplyChain": "Supply Chain",
"finance": "Financial",
"tech": "Technology",
"crypto": "Crypto",
"heatmap": "Sector Heatmap",
"ai": "AI/ML",
"layoffs": "Layoffs Tracker",
"monitors": "My Monitors",
"satelliteFires": "Fires",
"macroSignals": "BTC Regime",
"etfFlows": "BTC ETF Tracker",
"stablecoins": "Stablecoins",
"deduction": "Deduct Situation",
"wsbTickerScanner": "WSB Ticker Scanner",
"ucdpEvents": "Armed Conflict Events",
"giving": "Global Giving",
"displacement": "UNHCR Displacement",
"climate": "Climate Anomalies",
"populationExposure": "Population Exposure",
"securityAdvisories": "Security Advisories",
"orefSirens": "Israel Sirens",
"telegramIntel": "Telegram Intel",
"startups": "Startups & VC",
"vcblogs": "VC Insights & Essays",
"regionalStartups": "Global Startup News",
"unicorns": "Unicorn Tracker",
"accelerators": "Accelerators & Demo Days",
"security": "Cybersecurity",
"policy": "AI Policy & Regulation",
"regulation": "AI Regulation Dashboard",
"finRegulation": "Financial Regulation",
"hardware": "Semiconductors & Hardware",
"cloud": "Cloud & Infrastructure",
"dev": "Developer Community",
"github": "GitHub Trending",
"ipo": "IPO & SPAC",
"funding": "Funding & VC",
"producthunt": "Product Hunt",
"events": "Tech Events",
"serviceStatus": "Service Status",
"internetDisruptions": "Internet Disruptions",
"internetDisruptionsTabs": {
"outages": "Outages",
"ddos": "DDoS",
"anomalies": "Anomalies"
},
"techReadiness": "Tech Readiness Index",
"gccInvestments": "GCC Investments",
"geoHubs": "Geopolitical Hubs",
"liveWebcams": "Live Webcams",
"windyWebcams": "Windy Live Webcam",
"gulfEconomies": "Gulf Economies",
"groceryBasket": "Grocery Index",
"groceryItem": "Item",
"bigmac": "Real Big Mac Index",
"bigmacDesc": "Big Mac prices across Middle East countries (Big Mac Index)",
"bigmacWow": "WoW",
"bigmacCountry": "Country",
"faoFoodPriceIndex": "FAO Food Price Index",
"fuelPrices": "Fuel Prices",
"fuelPricesDesc": "Retail gasoline and diesel prices across 30+ countries worldwide",
"fuelPricesCountry": "Country",
"fuelPricesGasoline": "Gasoline",
"fuelPricesDiesel": "Diesel",
"fuelPricesSource": "Source",
"groceryBasketDesc": "Grocery basket price comparison across 24 countries worldwide",
"gulfIndices": "Gulf Indices",
"gulfCurrencies": "Gulf Currencies",
"gulfOil": "Gulf Oil",
"airlineIntel": "✈️ Airline Intelligence",
"consumerPrices": "Consumer Prices",
"fearGreed": "Fear & Greed",
"marketBreadth": "Market Breadth",
"climateNews": "Climate News"
},
"commands": {
"prefixes": {
"map": "Map",
"panel": "Panel",
"brief": "Brief"
},
"categories": {
"navigate": "Navigate",
"layers": "Layers",
"panels": "Panels",
"view": "View",
"actions": "Actions",
"country": "Country"
},
"regions": {
"global": "Global view",
"mena": "Middle East & North Africa",
"eu": "Europe",
"asia": "Asia-Pacific",
"america": "Americas",
"africa": "Africa",
"latam": "Latin America",
"oceania": "Oceania"
},
"tips": {
"map": "Type a country name to fly there on the map",
"panel": "Type a panel name to scroll to it",
"brief": "Type a country name for an intel brief",
"layers": "Type \"military\" or \"finance\" for layer presets",
"time": "Type \"1h\", \"24h\", or \"7d\" to filter by time",
"settings": "Type \"dark mode\", \"settings\", or \"fullscreen\"",
"flight": "Search live flights by callsign (PRO)",
"mapExample": "iran",
"panelExample": "news",
"briefExample": "brief china",
"layersExample": "military layers",
"timeExample": "24h",
"settingsExample": "dark mode",
"flightExample": "UAE528"
},
"keywords": {
"military": "military",
"finance": "finance",
"infrastructure": "infrastructure",
"intelligence": "intelligence",
"news": "news",
"dark": "dark",
"light": "light",
"settings": "settings",
"fullscreen": "fullscreen",
"refresh": "refresh"
},
"labels": {
"layers": {
"military": "Show military layers",
"finance": "Show finance layers",
"infra": "Show infrastructure layers",
"intel": "Show intelligence layers",
"all": "Enable all layers",
"none": "Hide all layers",
"minimal": "Minimal layers (conflicts + hotspots)"
},
"layer": {
"ais": "Toggle AIS vessel tracking",
"flights": "Toggle military flights",
"conflicts": "Toggle conflict zones",
"hotspots": "Toggle intel hotspots",
"protests": "Toggle protests & unrest",
"cables": "Toggle undersea cables",
"pipelines": "Toggle pipelines",
"nuclear": "Toggle nuclear facilities",
"bases": "Toggle military bases",
"fires": "Toggle satellite fires",
"weather": "Toggle weather overlay",
"cyber": "Toggle cyber threats",
"displacement": "Toggle displacement flows",
"climate": "Toggle climate anomalies",
"outages": "Toggle internet outages",
"tradeRoutes": "Toggle trade routes"
},
"view": {
"dark": "Switch to dark mode",
"light": "Switch to light mode",
"fullscreen": "Toggle fullscreen",
"settings": "Open settings",
"refresh": "Refresh all data"
},
"time": {
"1h": "Show events from last hour",
"6h": "Show events from last 6 hours",
"24h": "Show events from last 24 hours",
"48h": "Show events from last 48 hours",
"7d": "Show events from last 7 days"
}
}
},
"modals": {
"search": {
"placeholder": "Search or type a command...",
"placeholderTech": "Search or type a command...",
"placeholderFinance": "Search or type a command...",
"recent": "Recent Searches",
"empty": "Search data or run commands",
"noResults": "No results",
"commands": "Commands",
"results": "Results",
"addPanel": "Add",
"seeAllCommands": "See all commands",
"hideCommandList": "Back",
"navigate": "navigate",
"select": "select",
"close": "close",
"types": {
"country": "Country",
"news": "News",
"hotspot": "Hotspot",
"market": "Market",
"prediction": "Prediction",
"conflict": "Conflict",
"base": "Military Base",
"pipeline": "Pipeline",
"cable": "Submarine Cable",
"datacenter": "Datacenter",
"earthquake": "Earthquake",
"outage": "Outage",
"nuclear": "Nuclear Site",
"irradiator": "Irradiator",
"techcompany": "Tech Company",
"ailab": "AI Lab",
"startup": "Startup",
"techevent": "Tech Event",
"techhq": "Tech HQ",
"accelerator": "Accelerator",
"flight": "Flight"
},
"flightOnGround": "On ground",
"flightAirborne": "FL{{fl}} · {{kts}} kts",
"flightMilitary": "Military · {{type}} · FL{{fl}}",
"flightMilitaryOnGround": "Military · {{type}} · on ground",
"flightSearchHint": "Press Enter or click to look up live position",
"flightNotFound": "No live position found for {{callsign}}"
},
"signal": {
"title": "INTELLIGENCE FINDING",
"soundAlerts": "Sound alerts",
"dismiss": "Dismiss",
"confidence": "Confidence",
"country": "Country:",
"scoreChange": "Score Change:",
"instabilityLevel": "Instability Level:",
"primaryDriver": "Primary Driver:",
"location": "Location:",
"eventTypes": "Event Types:",
"eventCount": "Event Count:",
"eventCountValue": "{{count}} events in 24h",
"source": "Source:",
"countriesAffected": "Countries Affected:",
"impactLevel": "Impact Level:",
"focalPoints": "CORRELATED FOCAL POINTS",
"newsCorrelation": "NEWS CORRELATION",
"viewOnMap": "View on map",
"whyItMatters": "Why it matters:",
"action": "Action:",
"note": "Note:",
"suppress": "Suppress this term",
"predictionLeading": "Prediction Leading",
"newsLeading": "News Leading",
"silentDivergence": "Silent Divergence",
"velocitySpike": "Velocity Spike",
"keywordSpike": "Keyword Spike",
"convergence": "Convergence",
"triangulation": "Triangulation",
"flowDrop": "Flow Drop",
"flowPriceDivergence": "Flow/Price Divergence",
"geoConvergence": "Geographic Convergence",
"marketMove": "Market Move Explained",
"sectorCascade": "Sector Cascade",
"militarySurge": "Military Surge"
},
"story": {
"generating": "Generating story...",
"close": "Close",
"shareTitle": "Share story",
"save": "Save",
"whatsapp": "WhatsApp",
"twitter": "X",
"linkedin": "LinkedIn",
"copyLink": "Link",
"saved": "Saved!",
"copied": "Copied!",
"opening": "Opening...",
"error": "Failed to generate story."
},
"mobileWarning": {
"title": "Mobile View",
"description": "You're viewing a simplified mobile version focused on MENA region with essential layers enabled.",
"tip": "Tip: Use the view buttons (GLOBAL/US/MENA) to switch regions. Tap markers to see details.",
"dontShowAgain": "Don't show again",
"gotIt": "Got it"
},
"downloadBanner": {
"description": "Native performance, secure local key storage, offline map tiles.",
"macSilicon": "macOS (Apple Silicon)",
"macIntel": "macOS (Intel)",
"windows": "Windows (.exe)",
"linux": "Linux (.AppImage)",
"showAllPlatforms": "Show all platforms",
"showLess": "Show less"
},
"runtimeConfig": {
"title": "Desktop Configuration",
"alertTitle": {
"configured": "Desktop settings configured",
"needsKeys": "Configure API keys to unlock features",
"some": "Some features need API keys"
},
"reserveEarlyAccess": "Reserve Your Early Access",
"skipSetup": "Skip the setup — a single World Monitor license unlocks everything. Join the waitlist for early access.",
"summary": {
"desktop": "Desktop mode",
"web": "Web mode (read-only, server-managed credentials)",
"secrets": "local secrets configured",
"available": "features available"
},
"status": {
"ready": "Ready",
"staged": "Staged",
"needsKeys": "Needs Keys",
"invalid": "Invalid",
"missing": "Missing",
"valid": "Valid",
"looksInvalid": "Looks invalid"
},
"placeholder": {
"setSecret": "Set secret",
"staged": "Staged (save with OK)"
},
"help": {
"URLHAUS_AUTH_KEY": "Used for both URLhaus and ThreatFox APIs.",
"OTX_API_KEY": "Optional enrichment source for the cyber threat layer.",
"ABUSEIPDB_API_KEY": "Optional enrichment source for malicious IP reputation.",
"FINNHUB_API_KEY": "Real-time stock quotes and market data.",
"NASA_FIRMS_API_KEY": "Fire Information for Resource Management System.",
"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."
}
},
"settingsWindow": {
"shellTitle": "World Monitor Settings",
"shellSearchPlaceholder": "Search settings...",
"shellCancel": "Cancel",
"shellSaveClose": "Save & Close",
"freePanelLimit": "Free plan: max {{max}} panels. Upgrade to PRO for unlimited.",
"freeSourceLimit": "Free plan: max {{max}} sources. Upgrade to PRO for unlimited.",
"validating": "Validating API keys...",
"saved": "Settings saved",
"failed": "Save failed: {{error}}",
"verifyFailed": "Saved verified keys. Failed: {{errors}}",
"verboseOn": "Verbose sidecar logging ON (saved)",
"verboseOff": "Verbose sidecar logging OFF (saved)",
"invokeFail": "Failed to run {{command}}. Check desktop log.",
"openLogs": "Opened logs folder",
"openApiLog": "Opened API log",
"sidecarError": "Could not reach sidecar to toggle verbose mode",
"noTraffic": "No traffic recorded yet.",
"sidecarUnreachable": "Sidecar not reachable.",
"logCleared": "Log cleared.",
"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": "Time",
"method": "Method",
"path": "Path",
"status": "Status",
"duration": "Duration"
}
},
"countryIntel": {
"identifying": "Identifying country...",
"locating": "Locating region...",
"instabilityIndex": "Instability Index",
"protests": "protests",
"militaryAircraft": "mil. aircraft",
"militaryVessels": "mil. vessels",
"outages": "outages",
"earthquakes": "earthquakes",
"loadingIndex": "Loading index...",
"loadingMarkets": "Loading prediction markets...",
"generatingBrief": "Generating intelligence brief...",
"cached": "Cached",
"fresh": "Fresh",
"noMarkets": "No prediction markets found",
"predictionMarkets": "Prediction Markets",
"unavailable": "AI brief unavailable — configure GROQ_API_KEY in Settings."
},
"countryBrief": {
"identifying": "Identifying country...",
"locating": "Locating region...",
"limitedCoverage": "Limited coverage",
"instabilityIndex": "Instability Index",
"notTracked": "Not tracked — {{country}} is not in the CII tier-1 list",
"intelBrief": "Intelligence Brief",
"generatingBrief": "Generating intelligence brief...",
"topNews": "Top News",
"activeSignals": "Country Signals",
"timeline": "7-Day Timeline",
"predictionMarkets": "Prediction Markets",
"loadingMarkets": "Loading prediction markets...",
"infrastructure": "Infrastructure Exposure",
"briefUnavailable": "AI brief unavailable — configure GROQ_API_KEY in Settings.",
"cached": "Cached",
"fresh": "Fresh",
"noMarkets": "No prediction markets found",
"loadingIndex": "Loading index...",
"components": {
"unrest": "Unrest",
"conflict": "Conflict",
"security": "Mil. Activity",
"information": "Information"
},
"signals": {
"protests": "protests",
"militaryAir": "mil. aircraft",
"militarySea": "mil. vessels",
"outages": "outages",
"earthquakes": "earthquakes",
"displaced": "displaced",
"climate": "Climate stress",
"conflictEvents": "conflict events",
"activeStrikes": "active strikes",
"aviationDisruptions": "airport disruptions",
"gpsJammingZones": "GPS Jamming Zones"
},
"timeAgo": {
"m": "{{count}}m ago",
"h": "{{count}}h ago",
"d": "{{count}}d ago"
},
"infra": {
"pipeline": "Pipelines",
"cable": "Undersea Cables",
"datacenter": "Data Centers",
"base": "Military Bases",
"nuclear": "Nuclear Facilities",
"port": "Ports"
}
}
},
"components": {
"webcams": {
"paused": "Webcams paused",
"pausedIdle": "Webcams paused — move mouse to resume",
"play": "Play",
"previewStatus": "Live preview",
"regions": {
"all": "ALL",
"mideast": "MIDEAST",
"europe": "EUROPE",
"americas": "AMERICAS",
"asia": "ASIA",
"space": "SPACE"
}
},
"pinnedWebcams": {
"pinFromMap": "Pin a webcam from the map"
},
"positiveNewsFeed": {
"noStories": "No stories in this category yet"
},
"breakthroughsTicker": {
"noData": "No science breakthroughs yet"
},
"airlineIntel": {
"infoTooltip": "<strong>Airline Intelligence</strong> Real-time airline operational data: route suspensions, airspace closures, carrier advisories, and emergency diversions. Sourced from aviation authority NOTAMs and carrier bulletins.",
"noOpsData": "No ops data — loading…",
"noFlights": "No flights — select airport in settings.",
"noCarrierData": "No carrier data yet.",
"noTrackingData": "No aircraft tracking data.",
"noNews": "No aviation news.",
"enterRoute": "Enter route and search for prices.",
"searchFlights": "Search Flights",
"bestDates": "Best Dates",
"enterRouteAndDate": "Enter a route and date to search",
"enterDateRange": "Enter a route and date range",
"degradedResults": "Some results may be incomplete",
"nonstop": "nonstop",
"roundTrip": "Round-trip",
"tripDays": "Trip days"
},
"goodThingsDigest": {
"noStories": "No stories available",
"summarizing": "Summarizing…"
},
"progressCharts": {
"noData": "No progress data available",
"fallbackBadge": "Showing static fallback data — live series unavailable",
"fallbackTooltip": "The live World Bank seed could not be reached. These charts are rendered from a hardcoded snapshot last verified Feb 2026."
},
"monitor": {
"placeholder": "Keywords (comma separated)",
"add": "+ Add Monitor",
"addKeywords": "Add keywords to monitor news",
"noMatches": "No matches in {{count}} articles",
"showingMatches": "Showing {{count}} of {{total}} matches",
"match": "match",
"matches": "matches"
},
"regulation": {
"infoTooltip": "<strong>Regulation</strong> Regulatory actions, policy changes, and enforcement updates from global regulators: financial, tech, energy, and trade authorities. Sourced from official government and regulatory body publications.",
"dashboard": "AI Regulation Dashboard",
"timeline": "Timeline",
"deadlines": "Deadlines",
"regulations": "Regulations",
"countries": "Countries",
"recentActions": "Recent Regulatory Actions (Last 12 Months)",
"upcomingDeadlines": "Upcoming Compliance Deadlines",
"globalLandscape": "Global Regulatory Landscape",
"emptyActions": "No recent regulatory actions",
"emptyDeadlines": "No upcoming compliance deadlines in the next 12 months",
"keyProvisions": "Key Provisions",
"learnMore": "Learn More",
"active": "Active",
"proposed": "Proposed",
"updated": "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"
}
},
"economic": {
"indicators": "Indicators",
"gov": "Gov",
"centralBanks": "Central Banks",
"laborMarket": "Labor Market",
"metroUnemployment": "Metro Unemployment",
"noIndicatorData": "No indicator data yet - FRED may be loading",
"fredKeyMissing": "FRED API key required. Add it in Settings to enable economic indicators.",
"noSpending": "No recent government awards",
"awards": "awards",
"in": "in",
"noBisData": "BIS data temporarily unavailable - will retry",
"policyRate": "Policy Rate",
"creditToGdp": "Credit / GDP",
"realEer": "Real EER",
"cut": "cut",
"hike": "hike",
"hold": "hold",
"pressure": {
"label": "Macro pressure",
"stress": "Stress",
"watch": "Watch",
"steady": "Steady",
"stressDetail": "Volatility and curve pressure are elevated.",
"watchDetail": "Cross-market conditions need closer monitoring.",
"steadyDetail": "Macro conditions are stable for now."
},
"infoTooltip": "<strong>Macro Stress</strong> Macro gauges, government spending, and central bank data:<ul><li><strong>Indicators</strong>: VIX, rates, yield curve, labor, inflation</li><li><strong>Gov</strong>: Recent US government contract awards</li><li><strong>Central Banks</strong>: BIS policy rates and exchange rate data</li></ul>"
},
"oilInventories": {
"infoTooltip": "<strong>Oil Inventories</strong> US crude oil and SPR stockpiles (EIA weekly), natural gas storage, EU gas fill percentage (GIE AGSI+), and OECD oil stocks days-of-cover (IEA monthly)."
},
"energyComplex": {
"noData": "Energy data temporarily unavailable - will retry",
"liveTape": "Live Tape",
"liveTapeSource": "Market quotes",
"infoTooltip": "<strong>Energy Complex</strong> Physical and tradeable energy signals in one place:<ul><li><strong>EIA metrics</strong>: WTI, Brent, US production, and inventories</li><li><strong>Live tape</strong>: Tradeable energy prices like crude and natural gas</li><li><strong>Purpose</strong>: Separate physical energy stress from broader macro and commodity panels</li></ul>"
},
"supplyChain": {
"chokepoints": "Chokepoints",
"shipping": "Shipping Rates",
"minerals": "Critical Minerals",
"noChokepoints": "Chokepoint data loading...",
"noShipping": "Shipping rate data not available",
"noMinerals": "Mineral data loading...",
"upstreamUnavailable": "Supply chain data temporarily unavailable — showing cached data",
"spikeAlert": "Spike detected — rate significantly above 52-week average (weekly)",
"warnings": "warning(s)",
"aisDisruptions": "AIS disruption(s)",
"wowChange": "WoW change",
"riskLevel": "Risk level",
"disruption": "Disruption",
"vessels": "vessels",
"incidents7d": "incidents (7d)",
"flowUnavailable": "Flow data unavailable",
"containerRates": "Container Rates",
"bulkShipping": "Bulk Shipping",
"economicIndicators": "Economic Indicators",
"corridorDisruption": "Corridor Disruption",
"corridor": "Corridor",
"loadingCorridors": "Loading corridor data...",
"loadingHistory": "Loading transit history…",
"historyUnavailable": "Transit history unavailable",
"transitDataUnavailable": "Transit data unavailable (upstream partial)",
"mineral": "Mineral",
"topProducers": "Top Producers",
"risk": "Risk",
"infoTooltip": "<strong>Supply Chain Monitor</strong> Global logistics and resource tracking:<ul><li><strong>Chokepoints</strong>: Maritime transit status, disruption scores, and vessel counts</li><li><strong>Shipping</strong>: Baltic Dry Index and freight rate trends</li><li><strong>Minerals</strong>: Critical mineral concentration risk (HHI) and top producers</li></ul>Click a chokepoint card to expand transit history chart."
},
"tradePolicy": {
"overview": "Overview",
"tariffs": "Tariffs",
"flows": "Trade Flows",
"barriers": "Barriers",
"noOverviewData": "No tariff overview data available",
"noTariffData": "No tariff data available",
"noFlowData": "No trade flow data available",
"noBarriers": "No trade barriers reported",
"apiKeyMissing": "WTO API key required — add it in Settings",
"upstreamUnavailable": "WTO data temporarily unavailable — showing cached data",
"mfnAppliedRate": "MFN Applied Rate",
"baselineMfnTariff": "Baseline MFN tariff",
"effectiveTariffRateLabel": "Effective tariff rate",
"gapLabel": "Gap",
"gapVsMfnLabel": "Gap vs MFN",
"noEffectiveCoverageForCountry": "No effective-rate coverage for this country",
"effectiveMinusBaseline": "Effective rate minus WTO MFN baseline",
"wtoBaselineMeta": "WTO MFN applied rate | {{year}}",
"overviewNoteNoEffective": "These figures are WTO MFN baseline rates, not the current tariff burden from unilateral tariff actions.",
"usBaselineLabel": "US WTO MFN baseline",
"overviewNoteTail": "These cards show WTO baseline commitments, not the live effective tariff burden.",
"exports": "Exports",
"imports": "Imports",
"yoyChange": "YoY Change",
"highTariff": "High",
"moderateTariff": "Moderate",
"lowTariff": "Low",
"revenue": "US Revenue",
"noRevenueData": "No customs revenue data available",
"treasuryUnavailable": "Treasury data temporarily unavailable",
"fytdLabel": "FY{{year}} YTD",
"vsPriorFy": "vs FY{{year}}",
"sourceWto": "WTO",
"sourceTreasury": "US Treasury",
"colDate": "Date",
"colMonthly": "Monthly",
"colFytd": "FY YTD",
"strategicFlows": "Strategic Flows",
"noComtradeData": "No strategic flow data available",
"comtradeUnavailable": "UN Comtrade data temporarily unavailable",
"sourceComtrade": "UN Comtrade",
"anomalyBadge": "Anomaly",
"colReporter": "Country",
"colCommodity": "Commodity",
"colTradeValue": "Trade Value",
"infoTooltip": "<strong>Trade Policy</strong> WTO baseline and tariff-impact monitoring:<ul><li><strong>Overview</strong>: WTO MFN baseline rates with US effective-rate context when available</li><li><strong>Tariffs</strong>: WTO MFN tariff trends vs the US effective tariff estimate</li><li><strong>Trade Flows</strong>: Export/import volumes with year-over-year changes</li><li><strong>Barriers</strong>: Technical barriers to trade (TBT/SPS notifications)</li><li><strong>Revenue</strong>: Monthly US customs duties revenue (US Treasury MTS data)</li></ul>"
},
"consumerPrices": {
"tabs": {
"overview": "Overview",
"categories": "Categories",
"movers": "Movers",
"spread": "Retailer Spread",
"health": "Data Health",
"world": "World"
},
"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"
},
"infoTooltip": "<strong>Consumer Prices</strong> Real-time basket price tracking:<ul><li><strong>Overview</strong>: Essentials index, value basket, and week-on-week change</li><li><strong>Categories</strong>: Per-category price trends with 30-day range</li><li><strong>Movers</strong>: Biggest rising and falling items this week</li><li><strong>Spread</strong>: Price variance across retailers for the same basket</li><li><strong>World</strong>: Official IMF annual inflation for every reporting economy</li></ul>Data sourced from live retailer price scraping and IMF WEO."
},
"gdelt": {
"empty": "No recent articles for this topic"
},
"geoHubs": {
"story": "story",
"stories": "stories",
"infoTooltip": "<strong>Geopolitical Activity Hubs</strong><br>Shows regions with the most news activity.<br><br><em>Hub types:</em><br>• 🏛️ Capitals — World capitals and government centers<br>• ⚔️ Conflict Zones — Active conflict areas<br>• ⚓ Strategic — Chokepoints and key regions<br>• 🏢 Organizations — UN, NATO, IAEA, etc.<br><br><em>Activity levels:</em><br>• <span style=\"color: {{highColor}}\">High</span> — Breaking news or 70+ score<br>• <span style=\"color: {{elevatedColor}}\">Elevated</span> — Score 40-69<br>• <span style=\"color: {{lowColor}}\">Low</span> — Score below 40<br><br>Click a hub to zoom to its location."
},
"techHubs": {
"infoTooltip": "<strong>Tech Hub Activity</strong><br>Shows tech hubs with the most news activity.<br><br><em>Activity levels:</em><br>• <span style=\"color: {{highColor}}\">High</span> — Breaking news or 50+ score<br>• <span style=\"color: {{elevatedColor}}\">Elevated</span> — Score 20-49<br>• <span style=\"color: {{lowColor}}\">Low</span> — Score below 20<br><br>Click a hub to zoom to its location."
},
"predictions": {
"yes": "Yes",
"no": "No",
"vol": "Vol",
"closes": "Closes",
"leanYes": "Lean Yes",
"leanNo": "Lean No",
"tossUp": "Toss-up"
},
"stablecoins": {
"pegHealth": "Peg Health",
"supplyVolume": "Supply & Volume",
"token": "Token",
"mcap": "MCap",
"vol24h": "24h Vol",
"chg24h": "24h Chg",
"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."
},
"marketImplications": {
"infoTooltip": "<strong>AI Market Implications</strong> LLM-generated trade signals derived from live geopolitical, commodity, and macro state after each forecast cycle.<ul><li><strong>Direction</strong>: LONG / SHORT / HEDGE with confidence rating</li><li><strong>Timeframe</strong>: 1W, 2W, 1M, or 3M horizon</li><li><strong>Driver</strong>: Key catalyst behind the signal</li><li><strong>Risk</strong>: Caveat or invalidation condition</li></ul><em>For informational purposes only. Not investment advice.</em>",
"title": "AI Market Implications",
"directions": {
"long": "LONG",
"short": "SHORT",
"hedge": "HEDGE"
},
"rationale": "Rationale:",
"driver": "Driver:",
"appliesToNext": "Applies to next AI regeneration",
"signals_one": "{{count}} signal",
"signals_other": "{{count}} signals",
"disclaimer": "AI-generated trade signals for informational purposes only. Not investment advice. Always do your own research.",
"unavailable": "AI market implications are generated after each forecast run. Check back shortly."
},
"status": {
"updatedAt": "Updated {{time}}"
},
"playback": {
"toggleMode": "Toggle Playback Mode",
"live": "LIVE",
"historicalPlayback": "Historical Playback",
"close": "Close",
"skipToStart": "Skip to start",
"previous": "Previous",
"next": "Next",
"skipToEnd": "Skip to end"
},
"pizzint": {
"title": "Pentagon Pizza Index",
"defcon": "DEFCON {{level}}",
"updated": "Updated {{timeAgo}}",
"tensionsTitle": "Geopolitical Tensions",
"source": "Source:",
"statusClosed": "CLOSED",
"statusSpike": "SPIKE",
"statusHigh": "HIGH",
"statusElevated": "ELEVATED",
"statusNominal": "NOMINAL",
"statusQuiet": "QUIET",
"justNow": "just now",
"minutesAgo": "{{m}}m ago",
"hoursAgo": "{{h}}h ago",
"defconLabels": {
"1": "COCKED PISTOL - MAXIMUM READINESS",
"2": "FAST PACE - ARMED FORCES READY",
"3": "ROUND HOUSE - INCREASE FORCE READINESS",
"4": "DOUBLE TAKE - INCREASED INTELLIGENCE WATCH",
"5": "FADE OUT - LOWEST READINESS"
}
},
"strategicPosture": {
"elapsed": "Elapsed: {{elapsed}} s",
"clickToView": "Click to view {{name}} on map",
"clickToViewMap": "Click to view on map",
"refresh": "Refresh",
"units": {
"fighters": "Fighters",
"tankers": "Tankers",
"awacs": "AWACS",
"recon": "Recon",
"transport": "Transport",
"bombers": "Bombers",
"drones": "Drones",
"aircraft": "Aircraft",
"carriers": "Carriers",
"destroyers": "Destroyers",
"frigates": "Frigates",
"submarines": "Submarines",
"patrol": "Patrol",
"auxiliary": "Auxiliary",
"navalVessels": "Naval Vessels"
},
"infoTooltip": "<strong>Methodology</strong><p>Aggregates military aircraft and naval vessels by theater.</p><ul><li><strong>Normal:</strong> Baseline activity</li><li><strong>Elevated:</strong> Above threshold (50+ aircraft)</li><li><strong>Critical:</strong> High concentration (100+ aircraft)</li></ul><p><strong>Strike Capable:</strong> Tankers + AWACS + Fighters present in sufficient numbers for sustained operations.</p>",
"scanningTheaters": "Scanning Theaters",
"positions": "Aircraft positions",
"navalVesselsLoading": "Naval vessels",
"theaterAnalysis": "Theater analysis",
"connectingStreams": "Connecting to live ADS-B & AIS streams...",
"initialLoadNote": "Initial load takes 30-60 seconds as tracking data accumulates",
"acquiringData": "Acquiring Data",
"acquiringDesc": "Connecting to ADS-B network for military flight data. This may take 30-60 seconds on first load.",
"openSkyAdsb": "OpenSky ADS-B",
"aisVesselStream": "AIS Vessel Stream",
"retryNow": "Retry Now",
"feedRateLimited": "Feed Rate Limited",
"rateLimitedDesc": "OpenSky API has request limits. The panel will automatically retry in a few minutes, or you can try again now.",
"rateLimitedTip": "Tip: Peak hours (UTC 12:00-20:00) often see higher limits.",
"tryAgain": "Try Again",
"badges": {
"critical": "CRIT",
"elevated": "ELEV",
"normal": "NORM"
},
"trendStable": "stable",
"domains": {
"air": "AIR",
"sea": "SEA"
},
"strike": "STRIKE",
"staleWarning": "Using cached data - live feed temporarily unavailable",
"updated": "Updated:",
"emojiKeyLabel": "Emoji Key",
"emojiKeyAir": "Air Assets",
"emojiKeyNaval": "Naval Assets",
"theaters": {
"iran-theater": "Iran Theater",
"taiwan-theater": "Taiwan Strait",
"baltic-theater": "Baltic Theater",
"blacksea-theater": "Black Sea",
"korea-theater": "Korean Peninsula",
"south-china-sea": "South China Sea",
"east-med-theater": "Eastern Mediterranean",
"israel-gaza-theater": "Israel/Gaza",
"yemen-redsea-theater": "Yemen/Red Sea"
}
},
"countryBrief": {
"shareLink": "Share link",
"shareStory": "Share story",
"printPdf": "Print / PDF",
"exportData": "Export data"
},
"relatedAssets": {
"pipeline": "Pipeline",
"cable": "Cable",
"datacenter": "Datacenter",
"base": "Base",
"nuclear": "Nuclear"
},
"community": {
"joinDiscussion": "Help Shape What's Next"
},
"threatLabels": {
"critical": "CRIT",
"high": "HIGH",
"medium": "MED",
"low": "LOW",
"info": "INFO"
},
"deckgl": {
"zoomIn": "Zoom In",
"zoomOut": "Zoom Out",
"resetView": "Reset View",
"legend": {
"title": "LEGEND",
"startupHub": "Startup Hub",
"techHQ": "Tech HQ",
"accelerator": "Accelerator",
"cloudRegion": "Cloud Region",
"datacenter": "Datacenter",
"stockExchange": "Stock Exchange",
"financialCenter": "Financial Center",
"centralBank": "Central Bank",
"commodityHub": "Commodity Hub",
"waterway": "Waterway",
"highAlert": "High Alert",
"elevated": "Elevated",
"monitoring": "Monitoring",
"base": "Base",
"nuclear": "Nuclear",
"aircraft": "Aircraft",
"miningSite": "Mining Site",
"commodityPort": "Commodity Port",
"pipeline": "Pipeline",
"processingPlant": "Processing Plant",
"conflict": "Conflict Zone",
"diseaseAlert": "Disease Alert",
"diseaseWarning": "Disease Warning",
"diseaseWatch": "Disease Watch"
},
"layerGuide": "Layer Guide",
"layerWarningTitle": "Performance notice",
"layerWarningBody": "Enabling more than {{threshold}} layers may impact rendering performance and frame rate.",
"layerWarningDismiss": "Don't show this again",
"layerWarningOk": "Got it",
"layersTitle": "Layers",
"layerSearch": "Search layers...",
"timeAll": "All",
"views": {
"global": "Global",
"americas": "Americas",
"mena": "MENA",
"europe": "Europe",
"asia": "Asia",
"latam": "Latin America",
"africa": "Africa",
"oceania": "Oceania"
},
"layers": {
"startupHubs": "Startup Hubs",
"techHQs": "Tech HQs",
"accelerators": "Accelerators",
"cloudRegions": "Cloud Regions",
"aiDataCenters": "AI Data Centers",
"underseaCables": "Undersea Cables",
"internetOutages": "Internet Disruptions",
"cyberThreats": "Cyber Threats",
"techEvents": "Tech Events",
"naturalEvents": "Natural Events",
"fires": "Fires",
"intelHotspots": "Intel Hotspots",
"conflictZones": "Conflict Zones",
"militaryBases": "Military Bases",
"nuclearSites": "Nuclear Sites",
"gammaIrradiators": "Gamma Irradiators",
"radiationSpike": "Radiation spike",
"radiationElevated": "Elevated radiation",
"spaceports": "Spaceports",
"satellites": "Orbital Surveillance",
"pipelines": "Pipelines",
"militaryActivity": "Military Activity",
"shipTraffic": "Ship Traffic",
"flightDelays": "Aviation",
"protests": "Protests",
"ucdpEvents": "Armed Conflict Events",
"displacementFlows": "Displacement Flows",
"climateAnomalies": "Climate Anomalies",
"weatherAlerts": "Weather Alerts",
"strategicWaterways": "Chokepoints",
"economicCenters": "Economic Centers",
"criticalMinerals": "Critical Minerals",
"stockExchanges": "Stock Exchanges",
"financialCenters": "Financial Centers",
"centralBanks": "Central Banks",
"commodityHubs": "Commodity Hubs",
"gulfInvestments": "GCC Investments",
"tradeRoutes": "Trade Routes",
"iranAttacks": "Iran Attacks",
"gpsJamming": "GPS JAMMING",
"ciiChoropleth": "CII Instability",
"dayNight": "Day/Night",
"positiveEvents": "Positive Events",
"kindness": "Acts of Kindness",
"happiness": "World Happiness",
"speciesRecovery": "Species Recovery",
"renewableInstallations": "Clean Energy"
},
"tooltip": {
"earthquake": "Earthquake",
"militaryAircraft": "Military Aircraft",
"vesselCluster": "Vessel Cluster",
"vessels": "vessels",
"flightCluster": "Flight Cluster",
"aircraft": "aircraft",
"protest": "Protest",
"protestsCount": "{{count}} protests",
"techHQsCount": "{{count}} tech HQs",
"techEventsCount": "{{count}} tech events",
"dataCentersCount": "{{count}} data centers",
"underseaCable": "Undersea Cable",
"pipeline": "Pipeline",
"conflictZone": "Conflict Zone",
"naturalEvent": "Natural Event",
"financialCenter": "financial center",
"port": "Port",
"disruption": "Disruption",
"advisory": "Advisory",
"repairShip": "Repair Ship",
"internetOutage": "Internet Disruption",
"medium": "medium",
"news": "News",
"undisclosed": "Undisclosed",
"stake": "stake"
},
"layerHelp": {
"title": "Map Layers Guide",
"labels": {
"countries": "Countries",
"timeRecent": "1H/6H/24H",
"timeExtended": "7D/30D/ALL",
"sanctions": "Sanctions",
"shipping": "Shipping"
},
"sections": {
"techEcosystem": "Tech Ecosystem",
"infrastructure": "Infrastructure",
"naturalEconomic": "Natural & Economic",
"financeCore": "Finance Core",
"infrastructureRisk": "Infrastructure & Risk",
"macroContext": "Macro Context",
"timeFilter": "Time Filter (top-right)",
"geopolitical": "Geopolitical",
"militaryStrategic": "Military & Strategic",
"transport": "Transport",
"labels": "Labels",
"overlays": "Overlays & Labels"
},
"descriptions": {
"techStartupHubs": "Major startup ecosystems (SF, NYC, London, etc.)",
"techCloudRegions": "AWS, Azure, GCP data center regions",
"techHQs": "Headquarters of major tech companies",
"techAccelerators": "Y Combinator, Techstars, 500 Startups locations",
"infraCables": "Major undersea fiber optic cables (internet backbone)",
"infraDatacenters": "AI compute clusters >=10,000 GPUs",
"infraOutages": "Internet blackouts and service disruptions",
"naturalEventsTech": "Earthquakes, storms, fires (may affect data centers)",
"weatherAlerts": "Severe weather alerts",
"economicCenters": "Stock exchanges & central banks",
"countriesOverlay": "Country name overlays",
"financeExchanges": "Major global exchanges by market tier",
"financeCenters": "Global and regional finance hubs",
"financeCentralBanks": "Monetary policy institutions worldwide",
"financeCommodityHubs": "Key exchanges, ports, and refining hubs",
"financeCables": "Major undersea fiber routes tied to market infrastructure",
"financePipelines": "Oil/gas pipeline routes affecting energy markets",
"financeOutages": "Internet disruptions that can impact market operations",
"financeCyberThreats": "Security events around financial infrastructure",
"macroWaterways": "Strategic chokepoints for commodity shipping",
"weatherAlertsMarket": "Severe weather events with market relevance",
"naturalEventsMacro": "Earthquakes, fires, floods, and other natural disruptions",
"timeRecent": "Filter time-based data to recent hours",
"timeExtended": "Show data from past week, month, or all time",
"geoConflicts": "Active war zones (Ukraine, Gaza, etc.) with boundaries",
"geoHotspots": "Tension regions - color-coded by news activity level",
"geoSanctions": "Countries under US/EU/UN economic sanctions",
"geoProtests": "Civil unrest, demonstrations (time-filtered)",
"militaryBases": "US/NATO, China, Russia military installations (150+)",
"militaryNuclear": "Power plants, enrichment, weapons facilities",
"militaryIrradiators": "Industrial gamma irradiator facilities",
"militaryActivity": "Live military aircraft and vessel tracking",
"infraCablesFull": "Major undersea fiber optic cables (20 backbone routes)",
"infraPipelinesFull": "Oil/gas pipelines (Nord Stream, TAPI, etc.)",
"infraDatacentersFull": "AI compute clusters >=10,000 GPUs only",
"transportShipping": "Live vessel tracking via AIS (ship positions)",
"transportDelays": "Airport delays, ground stops, and NOTAM closures",
"naturalEventsFull": "Earthquakes (USGS) + storms, fires, volcanoes, floods (NASA EONET)",
"firesFull": "Active wildfires and fire perimeters (NASA FIRMS)",
"climateAnomalies": "Temperature and precipitation anomalies",
"waterwaysLabels": "Strategic chokepoint labels",
"geoUcdpEvents": "Uppsala Conflict Data Program armed conflict events",
"geoDisplacement": "Refugee and displacement flow patterns",
"militarySpaceports": "Rocket launch sites and space facilities",
"infraCyberThreats": "Cyber attacks and security events",
"mineralsFull": "Strategic mineral deposits and mining sites",
"techCyberThreats": "Cyber attacks and security events",
"techEvents": "Major tech conferences and events",
"techFires": "Active wildfires near tech infrastructure",
"financeGulfInvestments": "GCC sovereign wealth fund investments and FDI",
"tradeRoutes": "Major global shipping lanes connecting ports through strategic chokepoints",
"dayNight": "Real-time solar terminator showing day and night zones",
"geoBoundaries": "Demilitarized zones, ceasefire lines, and disputed boundaries",
"ciiChoropleth": "Country Instability Index heat-map — colors countries by CII score (green=stable, red=critical)"
},
"notes": {
"timeAffects": "Affects: Earthquakes, Weather, Protests, Outages"
}
}
},
"cii": {
"noSignals": "No instability signals detected",
"sectionFollowing": "Following",
"sectionAll": "All",
"sourceStates": {
"degraded": "degraded",
"stale": "stale"
},
"infoTooltip": "<strong>Methodology</strong><ul><li><strong>U</strong>nrest: civil disorder & protests</li><li><strong>C</strong>onflict: armed conflict intensity</li><li><strong>S</strong>ecurity: military flights/vessels over territory</li><li><strong>I</strong>nformation: news velocity and focal point correlation</li><li>Hotspot proximity boost (strategic locations)</li></ul><em>U:C:S:I values show component scores.</em> Focal Point Detection correlates news entities with map signals for accurate scoring.",
"_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": "Includes per-country baseline + event multiplier — see /docs/methodology/cii-risk-scores for the published table"
},
"insights": {
"noStories": "No breaking or multi-source stories yet",
"step": "Step {{step}}/{{total}}",
"waitingForData": "Waiting for news data...",
"rankingStories": "Ranking important stories...",
"analyzingSentiment": "Analyzing sentiment...",
"generatingBrief": "Generating world brief...",
"infoTooltip": "<strong>AI-Powered Analysis</strong><br>• <strong>World Brief</strong>: AI summary (Groq/OpenRouter)<br>• <strong>Sentiment</strong>: News tone analysis<br>• <strong>Velocity</strong>: Fast-moving stories<br>• <strong>Focal Points</strong>: Correlates news entities with map signals (military, protests, outages)<br><em>Desktop only • Powered by Llama 3.3 + Focal Point Detection</em>",
"streamQualityLabel": "Video Quality",
"streamQualityDesc": "Set quality for all live streams (lower saves bandwidth)",
"globeRenderScaleOptions": {
"1": "Eco (1x)",
"2": "4K (2x)",
"3": "Insane (3x)",
"auto": "Auto (device)",
"1_5": "Sharp (1.5x)"
},
"mapFlashLabel": "Live Event Pulse",
"mapFlashDesc": "Flash locations on the map when breaking news arrives",
"aiFlowCloudLabel": "Cloud AI (Groq & OpenRouter)",
"aiFlowCloudDesc": "Send headlines to cloud for AI summarization (recommended)",
"aiFlowBrowserLabel": "Browser Local Model",
"aiFlowBrowserDesc": "Run AI locally in your browser",
"aiFlowBrowserWarn": "Downloads ~250 MB of model data to your browser",
"aiFlowOllamaCta": "Want fully local AI?",
"aiFlowOllamaCtaDesc": "Download the desktop app for Ollama support",
"aiFlowDownloadDesktop": "Download Desktop App →",
"aiFlowStatusActive": "Cloud AI active",
"aiFlowStatusCloudAndBrowser": "Cloud AI + Browser model active",
"aiFlowStatusBrowserOnly": "Browser model only",
"aiFlowStatusDisabled": "No AI providers enabled",
"insightsDisabledTitle": "AI analysis is disabled",
"insightsDisabledHint": "Enable providers via the settings gear in the map header",
"badgeAnimLabel": "Badge Animations",
"badgeAnimDesc": "Animate update badges on panel headers",
"headlineMemoryLabel": "Headline Memory",
"headlineMemoryDesc": "Remember seen headlines to highlight new stories",
"analysisFrameworksLabel": "Analysis Frameworks",
"analysisFrameworksActivePerPanel": "Active per panel",
"analysisFrameworksSkillLibrary": "Skill library",
"analysisFrameworksImportBtn": "Import framework",
"analysisFrameworksDefaultNeutral": "Default (Neutral)",
"analysisFrameworksImportTitle": "Import Framework",
"analysisFrameworksFromAgentskills": "From agentskills.io",
"analysisFrameworksPasteJson": "Paste JSON",
"analysisFrameworksSaveToLibrary": "Save to Library",
"streamAlwaysOnLabel": "Auto-play live streams on dashboard",
"streamAlwaysOnDesc": "Starts Live News and Live Webcams automatically when visible. Leave off to load video only after you click Play.",
"frameworkNote": "Applies to client-generated analysis only",
"loadingServerInsights": "Loading server insights...",
"usingCachedBrief": "Using cached brief...",
"multiPerspectiveAnalysis": "Multi-perspective analysis...",
"generatingBriefSub": "Generating brief: {{msg}}",
"breakingConfirmed": "BREAKING & CONFIRMED",
"multiSource": "Multi-source",
"fastMoving": "Fast-moving",
"clusters": "Clusters",
"alertsLabel": "Alerts",
"alert": "ALERT",
"sources_one": "{{count}} source",
"sources_other": "{{count}} sources",
"briefTech": "TECH BRIEF",
"briefCommodity": "COMMODITY BRIEF",
"briefEnergy": "ENERGY BRIEF",
"briefWorld": "WORLD BRIEF",
"mlDetected": "ML DETECTED",
"geographicConvergence": "GEOGRAPHIC CONVERGENCE",
"focalPoints": "FOCAL POINTS",
"toneMixed": "Mixed",
"toneNegative": "Negative",
"tonePositive": "Positive",
"overall": "Overall: {{tone}}",
"signalTypesEvents": "{{types}} signal types • {{events}} events",
"newsSignals": "{{news}} news • {{signals}} signals",
"compiledFrom": "گردآوریشده از {{stories}} خبر از {{sources}} منبع",
"provenanceTitle": "شفافیت پوشش: این گزیده از چه تعداد خبر دریافتی و چند منبع مجزا انتخاب شده است",
"briefFreshness": "تولید شده {{minutes}}m پیش · جدیدترین منبع {{hours}}h قدیمی"
},
"settings": {
"exportSettings": "Export Settings",
"importSettings": "Import Settings",
"exportSuccess": "Settings exported successfully",
"exportFailed": "Failed to export settings",
"importSuccess": "Imported {{count}} settings",
"importFailed": "Failed to import settings",
"reloadNow": "Reload now"
},
"cascade": {
"filters": {
"cables": "Cables",
"pipelines": "Pipelines",
"ports": "Ports",
"chokepoints": "Chokepoints"
},
"filterType": {
"cable": "cable",
"pipeline": "pipeline",
"port": "port",
"chokepoint": "chokepoint",
"country": "country"
},
"selectPrompt": "Select {{type}}...",
"analyzeImpact": "Analyze Impact",
"impactLevels": {
"critical": "critical",
"high": "high",
"medium": "medium",
"low": "low"
},
"capacityPercent": "{{percent}}% capacity",
"noCountryImpacts": "No country impacts detected",
"alternativeRoutes": "Alternative Routes",
"countriesAffected": "Countries Affected ({{count}})",
"links": "links",
"selectInfrastructureHint": "Select infrastructure to analyze cascade impact",
"infoTooltip": "<strong>Cascade Analysis</strong> Models infrastructure dependencies:<ul><li>Subsea cables, pipelines, ports, chokepoints</li><li>Select infrastructure to simulate failure</li><li>Shows affected countries and capacity loss</li><li>Identifies redundant routes</li></ul>Data from TeleGeography and industry sources."
},
"strategicRisk": {
"noRisks": "No significant risks detected",
"levels": {
"high": "High",
"medium": "Medium",
"low": "Low"
},
"trend": "Trend",
"trends": {
"escalating": "Escalating",
"deEscalating": "De-escalating",
"stable": "Stable"
},
"insufficientData": "Insufficient Data",
"unableToAssess": "Unable to assess risk level.",
"enableDataSources": "Enable data sources to begin monitoring.",
"requiredDataSources": "Required Data Sources",
"optionalSources": "Optional Sources",
"cachedCiiStatus": "Cached CII {{states}}",
"sourceStates": {
"degraded": "degraded",
"stale": "stale"
},
"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",
"dataFreshness": "Data Freshness",
"sourcesDetail": "{{active}}/{{total}} sources",
"topRisks": "Top Risks",
"recentAlerts": "Recent Alerts ({{count}})",
"updated": "Updated: {{time}}",
"time": {
"justNow": "just now",
"minutesAgo": "{{count}}m ago",
"hoursAgo": "{{count}}h ago"
},
"infoTooltip": "<strong>Methodology</strong> Composite score (0-100) blending:<ul><li>50% Country Instability (top 5 weighted)</li><li>30% Geographic convergence zones</li><li>20% Infrastructure incidents</li></ul>Auto-refreshes every 5 minutes."
},
"techEvents": {
"infoTooltip": "<strong>Tech Events</strong> Upcoming and recent technology events: conferences, product launches, regulatory hearings, and earnings calls. Aggregated from official event calendars and industry sources.",
"loading": "Loading tech events...",
"noEvents": "No events to display",
"showOnMap": "Show on map",
"moreInfo": "More info",
"upcoming": "Upcoming",
"conferences": "Conferences",
"earnings": "Earnings",
"all": "All",
"conferencesCount": "{{count}} conferences",
"onMap": "{{count}} on map",
"techmemeEvents": "Techmeme Events ↗",
"today": "TODAY",
"soon": "SOON"
},
"techReadiness": {
"internetUsers": "Internet Users",
"mobileSubscriptions": "Mobile Subscriptions",
"rdSpending": "R&D Spending",
"fetchingData": "Fetching World Bank Data",
"internetUsersIndicator": "Internet Users",
"mobileSubscriptionsIndicator": "Mobile Subscriptions",
"broadbandAccess": "Broadband Access",
"rdExpenditure": "R&D Expenditure",
"analyzingCountries": "Analyzing 200+ countries...",
"dataPreparing": "Refreshing tech readiness data — this will appear shortly.",
"source": "Source: World Bank",
"updated": "Updated: {{date}}",
"infoTooltip": "<strong>Global Tech Readiness</strong><br>Composite score (0-100) based on World Bank data:<br><br><strong>Metrics shown:</strong><br>🌐 Internet Users (% of population)<br>📱 Mobile Subscriptions (per 100 people)<br>🔬 R&D Expenditure (% of GDP)<br><br><strong>Weights:</strong> R&D (35%), Internet (30%), Broadband (20%), Mobile (15%)<br><br><em>— = No recent data available</em><br><em>Source: World Bank Open Data (2019-2024)</em>"
},
"populationExposure": {
"totalAffected": "Total Affected",
"affectedCount": "{{count}} affected",
"radiusKm": "{{km}}km radius",
"infoTooltip": "<strong>Population Exposure Estimates</strong> Estimated population within event impact radius. Based on WorldPop country density data.<ul><li>Conflict: 50km radius</li><li>Earthquake: 100km radius</li><li>Flood: 100km radius</li><li>Wildfire: 30km radius</li></ul>"
},
"securityAdvisories": {
"loading": "Fetching travel advisories...",
"noMatching": "No advisories match this filter",
"critical": "Critical",
"health": "Health",
"sources": "US State Dept, AU DFAT, UK FCDO, CDC, ECDC, WHO, US Embassies",
"refresh": "Refresh",
"levels": {
"doNotTravel": "Do Not Travel",
"reconsider": "Reconsider Travel",
"caution": "Exercise Caution",
"normal": "Normal",
"info": "Info"
},
"time": {
"justNow": "just now",
"minutesAgo": "{{count}}m ago",
"hoursAgo": "{{count}}h ago",
"daysAgo": "{{count}}d ago"
},
"infoTooltip": "<strong>Security Advisories</strong><br>Travel advisories and security alerts from government foreign affairs agencies:<br><br><strong>Sources:</strong><br>🇺🇸 US State Dept Travel Advisories<br>🇦🇺 AU DFAT Smartraveller<br>🇬🇧 UK FCDO Travel Advice<br><br><strong>Levels:</strong><br>🟥 Do Not Travel<br>🟧 Reconsider Travel<br>🟨 Exercise Caution<br>🟩 Normal Precautions"
},
"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": "{{count}} alerts in 24h — {{waves}} waves",
"loadingHistory": "Loading history...",
"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": "Region",
"fires": "Fires",
"high": "High",
"total": "Total",
"never": "never",
"time": {
"justNow": "just now",
"minutesAgo": "{{count}}m ago",
"hoursAgo": "{{count}}h ago"
},
"infoTooltip": "NASA FIRMS VIIRS satellite thermal detections across monitored conflict regions. High-intensity = brightness >360K & confidence >80%.",
"possibleExplosions": "{{count}} possible explosion(s) detected",
"explosionTooltip": "Thermal signature consistent with explosion (FRP >80 MW, brightness >380 K)"
},
"ucdpEvents": {
"stateBased": "State-Based",
"nonState": "Non-State",
"oneSided": "One-Sided",
"country": "Country",
"deaths": "Deaths",
"date": "Date",
"actors": "Actors",
"deathsCount": "{{count}} deaths",
"moreNotShown": "{{count}} more events not shown",
"infoTooltip": "<strong>Armed Conflict Events</strong> Event-level conflict data from Uppsala University (UCDP).<ul><li><strong>State-Based</strong>: Government vs rebel group</li><li><strong>Non-State</strong>: Armed group vs armed group</li><li><strong>One-Sided</strong>: Violence against civilians</li></ul>Deaths shown as best estimate (low-high range). ACLED duplicates are filtered out automatically."
},
"giving": {
"activityIndex": "Activity Index",
"trend": "Trend",
"estDailyFlow": "Est. Daily Flow",
"cryptoDaily": "Crypto Daily",
"tabs": {
"platforms": "Platforms",
"categories": "Categories",
"crypto": "Crypto",
"institutional": "Institutional"
},
"platform": "Platform",
"dailyVol": "Daily Vol.",
"velocity": "Velocity",
"freshness": "Data",
"category": "Category",
"share": "Share",
"trending": "TREND",
"dailyInflow": "24h Inflow",
"wallets": "Wallets",
"ofTotal": "% of Total",
"topReceivers": "Top Receivers",
"oecdOda": "OECD ODA",
"cafIndex": "CAF Index",
"candidGrants": "Candid Grants",
"dataLag": "Data Lag",
"infoTooltip": "<strong>Global Giving Activity Index</strong> Composite index tracking personal giving across crowdfunding platforms and crypto wallets.<ul><li><strong>Platforms</strong>: GoFundMe, GlobalGiving, JustGiving campaign sampling</li><li><strong>Crypto</strong>: On-chain charity wallet inflows (Endaoment, Giving Block)</li><li><strong>Institutional</strong>: OECD ODA, CAF World Giving Index, Candid grants</li></ul>Index is directional (not exact dollar amounts). Combines live sampling with published annual reports.",
"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": "Refugees",
"asylumSeekers": "Asylum Seekers",
"idps": "IDPs",
"total": "Total",
"origins": "Origins",
"hosts": "Hosts",
"badges": {
"crisis": "CRISIS",
"high": "HIGH",
"elevated": "ELEVATED"
},
"country": "Country",
"status": "Status",
"count": "Count",
"infoTooltip": "<strong>UNHCR Displacement Data</strong> Global refugee, asylum seeker, and IDP counts from UNHCR.<ul><li><strong>Origins</strong>: Countries people flee FROM</li><li><strong>Hosts</strong>: Countries hosting refugees</li><li>Crisis badges: >1M | High: >500K displaced</li></ul>Data updates yearly. CC BY 4.0 license."
},
"climate": {
"noAnomalies": "No significant anomalies detected",
"zone": "Zone",
"temp": "Temp",
"precip": "Precip",
"severityLabel": "Severity",
"severity": {
"extreme": "EXTREME",
"moderate": "MODERATE",
"normal": "NORMAL"
},
"infoTooltip": "<strong>Climate Anomaly Monitor</strong> 7-day temperature and precipitation anomalies versus 1991-2020 monthly normals. Data from Open-Meteo (ERA5 reanalysis).<ul><li><strong>Extreme</strong>: >5°C or >12mm/day anomaly</li><li><strong>Moderate</strong>: >3°C or >6mm/day anomaly</li></ul>Tracks climate-sensitive zones for sustained departures from WMO baselines."
},
"newsPanel": {
"close": "Close",
"summarize": "Summarize this panel",
"generatingSummary": "Generating summary...",
"summaryError": "Could not generate summary",
"summaryFailed": "Summary failed",
"sources": "{{count}} sources",
"relatedAssetsNear": "Related assets near {{location}}",
"sourceCoverage": "{{covered}}/{{total}} منبع",
"sourceCoverageHint": "نمایش {{covered}} از {{total}} منبع فعال — این پنل در هر بازخوانی منابع خود را به نوبت میخواند",
"sortBy": "Sort by",
"sortNewest": "Newest",
"sortRelevance": "Relevance"
},
"mobileNav": {
"panelCategories": "Panel categories"
},
"breakingNews": {
"critical": "CRITICAL",
"high": "HIGH",
"dismiss": "Dismiss"
},
"intelligenceFindings": {
"breakingAlerts": "Breaking Alerts",
"popupAlerts": "Pop up new alerts",
"badgeTitle": "Intelligence findings",
"title": "Intelligence Findings",
"none": "No recent intelligence findings",
"monitoring": "MONITORING",
"scanning": "Scanning for correlations and anomalies...",
"reviewRecommended": "{{count}} intelligence findings - review recommended",
"count": "{{count}} intelligence finding",
"detected": "{{count}} DETECTED",
"critical": "{{count}} CRITICAL",
"highPriority": "{{count}} HIGH PRIORITY",
"hideFindings": "Hide Findings",
"more": "+{{count}} more findings",
"all": "All Intelligence Findings ({{count}})",
"priority": {
"critical": "CRITICAL",
"high": "HIGH",
"medium": "MEDIUM",
"low": "LOW"
},
"insights": {
"criticalDestabilization": "Critical destabilization - immediate attention",
"significantShift": "Significant shift - monitor closely",
"developingSituation": "Developing situation - track for escalation",
"convergence": "Multiple events clustering in region",
"cascade": "Infrastructure disruption spreading",
"review": "Review for situational awareness"
},
"time": {
"justNow": "just now",
"minutesAgo": "{{count}}m ago",
"hoursAgo": "{{count}}h ago",
"daysAgo": "{{count}}d ago"
}
},
"countryTimeline": {
"now": "now",
"noEventsIn7Days": "No events in 7 days"
},
"gdeltIntel": {
"infoTooltip": "<strong>News Intelligence</strong> Real-time global news monitoring:<ul><li>Curated topic categories (conflicts, cyber, etc.)</li><li>Articles from 100+ languages translated</li><li>Updates every 15 minutes</li><li>14-day media tone & volume trend per topic</li><li>14-day media tone & volume trend per topic</li></ul>Source: GDELT Project (gdeltproject.org)"
},
"telegramIntel": {
"infoTooltip": "Real-time signals from monitored Telegram OSINT channels",
"loading": "Connecting to Telegram relay...",
"empty": "No messages available",
"disabled": "Telegram relay not active",
"filterAll": "All",
"filterBreaking": "Breaking",
"filterConflict": "Conflict",
"filterOsint": "OSINT",
"filterMiddleeast": "Middle East",
"live": "LIVE",
"viewSource": "View Source",
"filterGeopolitics": "Geopolitics",
"filterCyber": "Cyber"
},
"investments": {
"infoTooltip": "Database of Saudi Arabia and UAE foreign direct investments in global critical infrastructure. Click a row to fly to the investment on the map.",
"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>Prediction Markets</strong> Real-money forecasting markets:<ul><li>Prices reflect crowd probability estimates</li><li>Higher volume = more reliable signal</li><li>Geopolitical and current events focus</li></ul>Sources: Polymarket, Kalshi"
},
"etfFlows": {
"unavailable": "ETF data temporarily unavailable",
"rateLimited": "ETF data temporarily unavailable (rate limited) — retrying shortly",
"netFlow": "Net Flow",
"estFlow": "Est. Flow",
"totalVol": "Total Vol",
"etfs": "ETFs",
"netInflow": "NET INFLOW",
"netOutflow": "NET OUTFLOW",
"table": {
"ticker": "Ticker",
"issuer": "Issuer",
"estFlow": "Est. Flow",
"volume": "Volume",
"change": "Change"
},
"infoTooltip": "<strong>BTC ETF Tracker</strong> Tracks daily estimated fund flows for US spot Bitcoin ETFs:<ul><li>Inflow/outflow direction and magnitude</li><li>Volume and price change per fund</li><li>Net aggregate flow across all tracked ETFs</li></ul>"
},
"macroSignals": {
"overall": "Overall",
"verdict": {
"buy": "BUY",
"cash": "CASH"
},
"bullish": "{{count}}/{{total}} bullish",
"signals": {
"liquidity": "Liquidity",
"flow": "Flow",
"regime": "Regime",
"btcTrend": "BTC Trend",
"hashRate": "Hash Rate",
"momentum": "Momentum",
"fearGreed": "Fear & Greed"
},
"infoTooltip": "<strong>BTC Regime</strong> Composite signal dashboard for Bitcoin positioning and risk appetite:<ul><li><strong>Liquidity</strong>: Net Fed liquidity proxy</li><li><strong>Flow</strong>: BTC vs QQQ 5-day returns</li><li><strong>Regime</strong>: QQQ vs XLP rotation (risk-on/off)</li><li><strong>BTC Trend</strong>: Price vs SMA50/200, Mayer Multiple</li><li><strong>Hash Rate</strong>: 30-day network hash change</li><li><strong>Fear & Greed</strong>: Market sentiment index</li></ul>This panel is for regime and positioning, not broad macro data."
},
"forecast": {
"infoTooltip": "<strong>AI Forecasts</strong> AI-generated probability estimates for geopolitical and economic events:<ul><li>Cross-domain coverage: conflict, markets, supply chain, cyber, political</li><li>Each forecast shows estimated probability, confidence level, and time horizon</li><li>Calibrated against prediction market baselines where available</li></ul>Forecasts update as new intelligence signals arrive. Filter by domain using the tabs above."
},
"escalationCorrelation": {
"infoTooltip": "<strong>Escalation Monitor</strong> Detects converging geopolitical signals:<ul><li>Correlates military movements, conflict events, and news spikes</li><li>Scores convergence zones by severity (critical/high/medium/low)</li><li>Tracks escalation or de-escalation trends over time</li></ul>Click a card to zoom to the region on the map."
},
"economicCorrelation": {
"infoTooltip": "<strong>Economic Warfare</strong> Detects converging economic pressure signals:<ul><li>Sanctions, trade restrictions, and currency movements</li><li>Commodity disruptions linked to geopolitical actors</li><li>Cross-domain correlation between economic and security events</li></ul>Click a card to zoom to the affected region."
},
"militaryCorrelation": {
"infoTooltip": "<strong>Force Posture</strong> Correlates military activity with geopolitical context:<ul><li>Military aircraft and naval vessel concentrations by region</li><li>Cross-references with active conflict zones and news spikes</li><li>Highlights unusual force buildups or repositioning</li></ul>Click a card to zoom to the region on the map."
},
"disasterCorrelation": {
"infoTooltip": "<strong>Disaster Cascade</strong> Detects converging natural disaster and infrastructure signals:<ul><li>Correlates earthquakes, wildfires, floods, and weather extremes</li><li>Tracks cascading effects on infrastructure and supply chains</li><li>Highlights regions with compounding disaster risk</li></ul>Click a card to zoom to the affected region."
},
"markets": {
"infoTooltip": "<strong>Markets</strong> Real-time stock indices, equities, and crypto prices. Customize your watchlist with the Watchlist button. Sparklines show recent price trend.",
"chart": {
"title": "{{symbol}} price chart",
"close": "Close chart"
}
},
"heatmap": {
"infoTooltip": "<strong>Sector Heatmap</strong> S&P 500 sector performance at a glance. Color intensity reflects the magnitude of daily change. Green = gains, Red = losses."
},
"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."
},
"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."
},
"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)."
},
"fuelPrices": {
"infoTooltip": "<strong>Fuel Prices</strong> Retail pump prices for gasoline and diesel across 30+ countries, normalized to USD/liter for comparison. Prices are sourced from official government open-data programs and updated weekly. Cheapest and most expensive countries are highlighted. WoW change shown when prior week data is available.",
"countries": "countries"
},
"faoFoodPriceIndex": {
"infoTooltip": "<strong>FAO Food Price Index</strong> The UN Food and Agriculture Organization's FFPI tracks international export prices for a basket of food commodities (Cereals, Dairy, Meat, Oils, Sugar), base 2014-2016=100. Updated monthly on the first Friday of each month.",
"indexLabel": "FFPI (2014-16=100)",
"mom": "MoM",
"yoy": "YoY",
"asOf": "As of",
"baseNote": "Base: 2014-2016 = 100 | Source: UN FAO",
"ffpi": "Food",
"cereals": "Cereals",
"meat": "Meat",
"dairy": "Dairy",
"oils": "Oils",
"sugar": "Sugar"
},
"panel": {
"showMethodologyInfo": "Show methodology info",
"dragToResize": "Drag to resize (double-click to reset)",
"openSettings": "Open Settings",
"closePanel": "Close panel",
"collapsePanel": "Collapse panel",
"expandPanel": "Expand panel",
"addPanel": "Add Panel"
},
"languageSelector": {
"mapLabelsFallbackVi": "Map labels currently fall back to English for Vietnamese."
},
"internetDisruptions": {
"noOutages": "No active outages detected",
"noDdos": "No DDoS data available",
"noAnomalies": "No traffic anomalies detected",
"byProtocol": "Attack Protocol",
"byVector": "Attack Vector",
"topTargets": "Top Target Countries",
"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>"
},
"serviceStatus": {
"infoTooltip": "<strong>Service Status</strong> Live operational status of major cloud platforms, financial infrastructure, and critical internet services. Sourced from official status pages (AWS, Azure, GCP, Cloudflare, exchanges). Incidents may indicate broader disruption events.",
"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"
}
},
"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}} can't be played here — it may be restricted in your region (error {{code}})",
"botCheck": "YouTube is requesting sign-in to play {{name}}",
"signInToYouTube": "Sign in to YouTube",
"openOnYouTube": "Open on YouTube",
"playLiveFeed": "Play live feed",
"readyStatus": "Ready when you are",
"manage": "Manage channels",
"addChannel": "Add channel",
"remove": "Remove",
"youtubeHandle": "YouTube handle (e.g. @Channel)",
"youtubeHandleOrUrl": "YouTube handle or URL",
"displayName": "Display name (optional)",
"channelSettings": "Channel Settings",
"save": "Save",
"cancel": "Cancel",
"restoreDefaults": "Restore default channels",
"availableChannels": "Available channels",
"noResults": "No channels found matching \"{{term}}\"",
"customChannel": "Custom channel",
"regionNorthAmerica": "North America",
"regionEurope": "Europe",
"regionLatinAmerica": "Latin America",
"regionAsia": "Asia",
"regionMiddleEast": "Middle East",
"regionAfrica": "Africa",
"regionOceania": "Oceania",
"invalidHandle": "Enter a valid YouTube handle (e.g. @ChannelName)",
"verifying": "Verifying…",
"hlsUrl": "HLS Stream URL (optional)",
"invalidHlsUrl": "Enter a valid HLS stream URL (.m3u8)"
},
"map": {
"showMap": "Show Map",
"hideMap": "Hide Map",
"clearTrails": "Clear trails"
},
"climateNews": {
"infoTooltip": "<strong>Climate News</strong> Latest environment and climate intelligence from Carbon Brief, UNEP, NASA, The Guardian, and other authoritative sources. Updated every 30 minutes.",
"loadError": "Climate news temporarily unavailable"
},
"chatAnalyst": {
"infoTooltip": "<strong>WM Analyst</strong> AI analyst with live context across geopolitical, market, military, and economic domains. Powered by Claude with real-time data injected from active WorldMonitor feeds."
},
"cotPositioning": {
"infoTooltip": "<strong>CFTC COT Positioning</strong> Commitments of Traders report: net positioning of commercials, large speculators, and small traders across commodity and financial futures. Published weekly (Friday). Source: CFTC."
},
"liquidityShifts": {
"title": "Liquidity Shifts",
"infoTooltip": "<strong>Liquidity Shifts</strong> High-liquidity positioning and daily shift monitor for oil, gold, silver, equity index futures, and top US stocks. COT asset-manager net and leveraged-funds net vs daily price change.",
"cotSection": "Oil / Gold / Silver + Index Positioning (COT)",
"stocksSection": "Top US Stocks: Daily Shift",
"longShort": "Long {{long}} / Short {{short}}",
"lev": "Lev",
"noCot": "No COT rows available.",
"noStocks": "No top stock quotes available.",
"reportDate": "COT report date: {{date}}",
"unavailable": "Liquidity data unavailable",
"failed": "Failed to load"
},
"positioning247": {
"title": "24/7 Positioning",
"infoTooltip": "<strong>24/7 Positioning</strong> Perpetual contract positioning stress from Hyperliquid. Trades around the clock, showing what's building when traditional markets are closed. Composite score (0-100) from funding rate, volume, open interest, and spot-perp basis. Green = longs crowded (bullish lean), red = shorts crowded (bearish lean).",
"commodities": "COMMODITIES",
"crypto": "CRYPTO",
"fx": "FX",
"warmup": "Building baselines. Volume and OI history populates over the next hour.",
"footer": "5min · Hyperliquid perps · 24/7"
},
"goldIntelligence": {
"infoTooltip": "<strong>Gold Intelligence</strong> Gold spot price, gold/silver ratio, gold vs platinum premium, cross-currency XAU prices (EUR, GBP, JPY, CNY, INR, CHF), and CFTC managed money positioning. Sources: Yahoo Finance, CFTC COT."
},
"counters": {
"infoTooltip": "<strong>Live Counters</strong> Real-time extrapolated counters for global metrics: military spending, natural disasters, disease burden, and more. Figures are statistical estimates based on annual data rates."
},
"diseaseOutbreaks": {
"infoTooltip": "<strong>Disease Outbreaks</strong> Active outbreak alerts from WHO, ProMED, and health ministries. Tracks confirmed outbreaks, affected regions, case counts, and threat levels. Updated as new reports are published.",
"methodologyNote": "Alert / Warning / Watch levels come from an editorial keyword classifier — see /docs/methodology/disease-alert-level for the keyword table and limitations.",
"title": "Disease Outbreaks",
"empty": "No outbreaks match filter",
"sourceFallback": "Source",
"attribution": "WHO · ProMED · HealthMap",
"levels": {
"alert": "ALERT",
"warning": "WARNING",
"watch": "WATCH"
},
"time": {
"justNow": "just now",
"hoursAgo_one": "{{count}}h ago",
"hoursAgo_other": "{{count}}h ago",
"daysAgo_one": "{{count}}d ago",
"daysAgo_other": "{{count}}d ago"
},
"filters": {
"alert_one": "{{count}} Alert",
"alert_other": "{{count}} Alerts",
"warning_one": "{{count}} Warning",
"warning_other": "{{count}} Warnings",
"watch_one": "{{count}} Watch",
"watch_other": "{{count}} Watches"
},
"errors": {
"noData": "No outbreak data available",
"failedToLoad": "Failed to load"
}
},
"earningsCalendar": {
"infoTooltip": "<strong>Earnings Calendar</strong> Upcoming and recent earnings releases for major public companies. Shows EPS estimates vs actuals, revenue, and beat/miss classification. Source: financial data providers.",
"title": "Earnings Calendar",
"today": "TODAY · {{date}}",
"tomorrow": "TOMORROW · {{date}}",
"epsActual": "EPS {{value}}",
"epsEstimate": "EPS est {{value}}",
"revenueActual": "{{value}} rev",
"revenueEstimate": "{{value}} est",
"surprise": {
"beat": "BEAT",
"miss": "MISS",
"inLine": "IN LINE"
},
"errors": {
"noData": "No earnings data",
"failedToLoad": "Failed to load"
}
},
"economicCalendar": {
"infoTooltip": "<strong>Economic Calendar</strong> Scheduled macroeconomic releases: CPI, NFP, GDP, PMI, and central bank decisions. Shows forecast vs actual vs prior. High-impact events highlighted. Source: economic data providers."
},
"fsi": {
"infoTooltip": "<strong>Financial Stress Indicator</strong> Kansas City Fed Financial Stress Index (KCFSI): measures stress in US financial markets using 11 indicators including yield spreads, volatility, and cross-correlations. Positive values indicate above-average stress. Source: Federal Reserve Bank of Kansas City.",
"title": "Financial Stress Indicator",
"usFsiValue": "US FSI VALUE",
"cissTitle": "EU CISS (Euro Area Systemic Stress)",
"cissStale": "ECB has not published a newer value — this reading may be out of date.",
"notAvailable": "N/A",
"interpretation": {
"low": "Credit markets functioning normally, equity/bond ratio healthy.",
"moderate": "Some deterioration in credit conditions, monitor closely.",
"elevated": "Significant credit market stress, defensive positioning warranted.",
"severe": "Severe financial stress, systemic risk elevated."
},
"labels": {
"lowStress": "Low Stress",
"moderateStress": "Moderate Stress",
"elevatedStress": "Elevated Stress",
"severeStress": "Severe Stress"
},
"cissLabels": {
"low": "Low",
"moderate": "Moderate",
"elevated": "Elevated",
"high": "High"
},
"scale": {
"noStress": "0 — No stress",
"extremeStress": "1 — Extreme stress",
"highStress": "High Stress",
"lowStress": "Low Stress"
},
"metrics": {
"vix": "VIX",
"hySpread": "HY Spread",
"hygPrice": "HYG Price",
"tltPrice": "TLT Price"
},
"errors": {
"unavailable": "FSI data unavailable",
"failedToLoad": "Failed to load"
}
},
"hormuzTracker": {
"infoTooltip": "<strong>Hormuz Trade Tracker</strong> Live AIS vessel tracking through the Strait of Hormuz, the world's most critical oil chokepoint. Monitors tanker counts, disruption events, and weekly flow changes. Approximately 20% of global oil supply transits here daily.",
"title": "Hormuz Trade Tracker",
"noData": "No data",
"notAvailable": "N/A",
"chartUnavailable": "Chart data unavailable",
"sourcePrefix": "Source:",
"units": {
"ktPerDay": "kt/day",
"generic": "units"
},
"errors": {
"unavailable": "Hormuz data unavailable",
"failedToLoad": "Failed to load"
}
},
"liveWebcams": {
"infoTooltip": "<strong>Live Webcams</strong> Live feeds from geopolitically significant locations worldwide: conflict zones, capital cities, border crossings, and strategic chokepoints. Streams sourced from YouTube and public networks."
},
"macroTiles": {
"infoTooltip": "<strong>Macro Indicators</strong> Key macroeconomic indicators for the US and Euro Area: CPI, unemployment, GDP, and central bank rates. Values shown with prior period delta. Source: FRED (Federal Reserve Economic Data)."
},
"monitors": {
"infoTooltip": "<strong>Keyword Monitors</strong> Add any term to track live news mentions across all WorldMonitor sources. Results update in real time as matching articles are ingested."
},
"renewable": {
"infoTooltip": "<strong>Renewable Energy</strong> Share of electricity generation from renewables by region and year, plus US installed capacity for solar, wind, and coal (MW). Sources: World Bank (EG.ELC.RNEW.ZS) and EIA."
},
"socialVelocity": {
"infoTooltip": "<strong>Social Velocity</strong> Trending topics and viral content with geopolitical significance. Measures social media velocity: how rapidly a story spreads relative to baseline. Helps surface emerging narratives before they hit mainstream news."
},
"wsbTickerScanner": {
"infoTooltip": "<strong>WSB Ticker Scanner</strong> Real-time ticker mentions from r/wallstreetbets, r/stocks, and r/investing. Ranked by mention frequency and engagement. Velocity measures how rapidly a ticker gains momentum across posts."
},
"conservationWins": {
"infoTooltip": "<strong>Conservation Wins</strong> Positive conservation news: species population recoveries, habitat restoration milestones, and de-extinction efforts. Sourced from IUCN, WWF, and conservation research publications."
},
"worldClock": {
"infoTooltip": "<strong>World Clock</strong> Live local times and market session status for major global financial centers. Shows open/closed status for NYSE, LSE, TSE, SGX, and other exchanges."
},
"yieldCurve": {
"infoTooltip": "<strong>Yield Curve & Rates</strong> US Treasury yield curve (2Y, 5Y, 10Y, 30Y) and key rate spreads including the 10Y-2Y inversion indicator. Also shows Euro area rates (EURIBOR, ESTR). An inverted curve historically precedes recessions. Source: FRED."
},
"proBanner": {
"badge": "PRO",
"headline": "Pro is launched",
"tagline": "More Signal, Less Noise. More AI Briefings. A Geopolitical & Equity Researcher just for you.",
"cta": "Upgrade to Pro →",
"dismiss": "Dismiss"
},
"billingState": {
"onHoldDesc": "پرداخت ناموفق بود. روش پرداخت خود را بهروزرسانی کنید تا دسترسی ویژه بازیابی شود.",
"onHoldBannerMessage": "پرداخت ناموفق بود. روش پرداخت خود را بهروزرسانی کنید تا اشتراک شما فعال بماند.",
"updatePayment": "بهروزرسانی پرداخت",
"renewalPendingDesc": "در حال بررسی تمدید اشتراک شما هستیم. دسترسی ویژه پس از تأیید بهطور خودکار بازیابی میشود.",
"refreshStatus": "بهروزرسانی وضعیت",
"renewalFailedDesc": "تمدید اشتراک شما تأیید نشد. صورتحساب را مدیریت کنید یا در صورت ادامه مشکل با پشتیبانی تماس بگیرید.",
"manageBilling": "مدیریت صورتحساب",
"lapsedDesc": "اشتراک Pro شما به پایان رسیده است. برای بازیابی دسترسی ویژه دوباره مشترک شوید.",
"resubscribe": "اشتراک مجدد"
},
"checkoutFailureBanner": {
"message": "Payment couldn't be completed. No charge was made.",
"retry": "Try again",
"retrying": "Retrying…",
"dismiss": "Dismiss"
},
"proActivation": {
"badge": "PRO",
"progress": "Step {{current}} of {{total}}",
"closeLabel": "Skip setup",
"ariaLabel": "Pro activation setup",
"signedInAs": "Signed in as {{email}}",
"steps": {
"brief": {
"heading": "Your daily brief, every morning",
"body": "A curated intelligence briefing in your inbox each morning — the overnight signals that matter, distilled into a five-minute read.",
"confirmCta": "Turn on my morning brief",
"confirming": "Turning it on…",
"doneNote": "Your morning brief is already running.",
"scheduleNote": "We'll keep your current delivery time.",
"summaryLabel": "Morning brief",
"summaryVerified": "On — starts with your next morning brief.",
"deliverAt": "Deliver at",
"previewLoading": "Preparing a preview of your first brief…",
"previewLabel": "This morning's brief"
},
"alerts": {
"heading": "Critical alerts",
"body": "Get pinged in your browser when something big breaks — conflict escalations, market shocks, fresh sanctions. Tune the cadence anytime in Settings.",
"confirmCta": "Enable alerts",
"confirming": "Enabling…",
"doneNote": "Browser alerts are already on.",
"blockedNote": "Notifications are blocked in your browser. Turn them on in your browser's site settings to get alerts.",
"declinedNote": "No problem — we won't send browser alerts. You can turn them on later from your browser's site settings.",
"summaryLabel": "Critical alerts",
"summaryVerified": "On — critical signals will reach your browser."
},
"power": {
"heading": "Your Pro toolkit",
"body": "Custom widgets, MCP connections, and the AI researcher are unlocked. Build the board you actually want to watch.",
"confirmCta": "Explore Pro tools",
"confirming": "Opening…",
"doneNote": "You're already using your Pro tools.",
"summaryLabel": "Pro toolkit",
"summaryVerified": "Unlocked and ready when you are.",
"channelsNote": "Prefer Telegram, Slack, Discord, or a webhook?",
"pointers": {
"search": "جستجو در کل داشبورد",
"widgets": "Build a custom widget",
"analyst": "Ask the AI analyst",
"mcpClients": "Set up MCP",
"channels": "Set those up in notification settings"
}
}
},
"status": {
"pending": "Not set up",
"inFlight": "Setting up…",
"verified": "Ready",
"failed": "Didn't work",
"blocked": "Blocked",
"unavailable": "Not available",
"blockedNote": "This isn't available right now — you can set it up later from settings.",
"unavailableNote": "This isn't available on your device — you can set it up later.",
"failedBody": "Something went wrong. You can try again, or set it up later from settings.",
"retry": "Try again"
},
"actions": {
"skip": "Skip for now",
"continue": "Continue"
},
"summary": {
"heading": "You're all set",
"subVerified": "Here's what's running on your account.",
"subPending": "You can finish setup any time from settings.",
"linePending": "Not set up yet — finish any time in settings.",
"lineFailed": "We couldn't set this up — try again from settings.",
"finish": "Go to my dashboard"
},
"chip": {
"message": "Finish setting up your Pro account.",
"action": "Finish setup",
"dismissLabel": "Dismiss"
}
},
"frameworkSelector": {
"label": "Analysis Framework",
"defaultNeutral": "Default (Neutral)",
"titlePrefix": "Framework: {{name}}",
"titleNone": "Analysis framework"
},
"sanctionsPressure": {
"title": "Sanctions & Designations",
"infoTooltip": "OFAC sanctions designations from the SDN and Consolidated Lists. Shows which countries face the highest designation pressure, what programs are driving it, and what has been newly added since the last update.",
"loading": "Loading sanctions data...",
"unavailable": "Sanctions data unavailable.",
"summary": {
"new": "New",
"vessels": "Vessels",
"aircraft": "Aircraft"
},
"sections": {
"countries": "Sanctioned countries",
"entries": "Recent designations",
"programs": "Programs"
},
"empty": {
"countries": "No country attribution available.",
"entries": "No recent designations.",
"programs": "No program breakdown."
},
"footer": {
"updated": "Updated {{time}}",
"dataset": "dataset {{date}}",
"source": "Source: OFAC"
},
"pills": {
"newCount": "+{{count}} new",
"new": "new"
},
"designations_one": "{{count}} designation",
"designations_other": "{{count}} designations",
"fallbacks": {
"unattributed": "Unattributed",
"program": "Program",
"undated": "undated"
}
},
"radiationWatch": {
"title": "Radiation Watch",
"infoTooltip": "Seeded EPA RadNet and Safecast readings with anomaly scoring and source-confidence synthesis. This panel answers what is normal, what is elevated, and which anomalies are confirmed versus tentative.",
"loading": "Loading radiation data...",
"empty": "No radiation observations available.",
"baseline": "{{value}} baseline",
"flags": {
"confirmed": "confirmed",
"conflict": "conflict",
"cpmDerived": "CPM-derived"
},
"headers": {
"station": "Station",
"reading": "Reading",
"delta": "Delta",
"status": "Status",
"observed": "Observed"
},
"summary": {
"anomalies": "Anomalies",
"elevated": "Elevated",
"confirmed": "Confirmed",
"lowConfidence": "Low Confidence",
"conflicts": "Conflicts",
"spikes": "Spikes"
},
"footer": {
"updated": "Updated {{time}}"
},
"observed": {
"hoursAgo_one": "{{count}}h ago",
"hoursAgo_other": "{{count}}h ago",
"daysAgo_one": "{{count}}d ago",
"daysAgo_other": "{{count}}d ago"
},
"confidence": {
"high": "high confidence",
"medium": "medium confidence",
"low": "low confidence"
}
},
"defensePatents": {
"title": "R&D Signal",
"infoTooltip": "Weekly defense and dual-use patent filings by Raytheon, Lockheed, Huawei, DARPA, and other strategic organizations. Categories: H04B (comms), H01L (semiconductors), F42B (ammunition), G06N (AI), C12N (biotech). Source: USPTO Open Data Portal.",
"loading": "Loading R&D filings…",
"error": "Failed to load patent data.",
"empty": "No filings in this category.",
"viewOnUspto": "View on USPTO",
"tabs": {
"all": "All"
},
"cpcLabels": {
"H04B": "Comms",
"H01L": "Semiconductors",
"F42B": "Ammunition",
"G06N": "AI",
"C12N": "Biotech"
}
},
"correlation": {
"loading": "Waiting for data...",
"empty": "No active convergence detected",
"signals_one": "{{count}} signal",
"signals_other": "{{count}} signals",
"analyzing": "Analyzing...",
"viewOnMap": "View on map"
},
"thermalEscalation": {
"title": "Thermal Escalation",
"infoTooltip": "Seeded FIRMS/VIIRS thermal anomaly clusters with baseline comparison, persistence tracking, and strategic context. This panel answers where thermal activity is abnormal and which clusters may signal conflict, industrial disruption, or escalation.",
"loading": "Loading thermal data...",
"empty": "No thermal escalation clusters detected.",
"footer": {
"updated": "Updated {{time}}"
},
"summary": {
"total": "Total",
"elevated": "Elevated",
"spikes": "Spikes",
"persist": "Persist",
"conflict": "Conflict",
"strategic": "Strategic"
},
"badges": {
"conflictAdjacent": "conflict-adj",
"energyAdjacent": "energy-adj",
"industrial": "industrial",
"strategic": "strategic"
},
"observations_one": "{{count}} obs",
"observations_other": "{{count}} obs",
"sources_one": "{{count}} src",
"sources_other": "{{count}} src",
"age": {
"minutesAgo_one": "{{count}}m ago",
"minutesAgo_other": "{{count}}m ago",
"hoursAgo_one": "{{count}}h ago",
"hoursAgo_other": "{{count}}h ago",
"daysAgo_one": "{{count}}d ago",
"daysAgo_other": "{{count}}d ago"
}
},
"chokepointStrip": {
"title": "Chokepoint Status",
"infoTooltip": "Live status for the seven global oil & gas shipping chokepoints. Flow estimates calibrated from Portwatch DWT + AIS observations. See /docs/methodology/chokepoints for methodology.",
"unknown": "unknown",
"shortName": {
"hormuzStrait": "Hormuz",
"malaccaStrait": "Malacca",
"suez": "Suez",
"babElMandeb": "Bab el-Mandeb",
"bosphorus": "Turkish Straits",
"panama": "Panama",
"danishStraits": "Danish Straits"
},
"flow": {
"mbd": "{{value}} mb/d",
"pctOfBaseline": "{{pct}}% of baseline"
},
"errors": {
"unavailable": "Chokepoint status unavailable",
"noData": "No chokepoint data yet"
},
"attribution": {
"method": "Portwatch DWT + AIS calibration",
"sampleLabel": "AIS disruption signals",
"creditName": "EIA World Oil Transit Chokepoints"
}
},
"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": "START DATE",
"magnitude": "Magnitude",
"depth": "Depth",
"intensity": "Intensity",
"type": "Type",
"status": "Status",
"severity": "Severity",
"location": "LOCATION",
"coordinates": "Coordinates",
"casualties": "CASUALTIES",
"displaced": "DISPLACED",
"belligerents": "BELLIGERENTS",
"keyDevelopments": "KEY DEVELOPMENTS",
"unknown": "Unknown",
"source": "Source",
"events": "Events",
"capacity": "Capacity",
"updated": "Updated",
"earthquake": {
"levels": {
"major": "MAJOR",
"moderate": "MODERATE",
"minor": "MINOR"
}
},
"base": {
"types": {
"us-nato": "US/NATO",
"china": "CHINA",
"russia": "RUSSIA"
}
},
"protest": {
"acledVerified": "ACLED (verified)",
"gdelt": "GDELT",
"riots": "Riots",
"highSeverity": "High Severity"
},
"gpsJamming": {
"title": "GPS/GNSS Interference",
"navPerformance": "Nav Performance",
"samples": "ADS-B Samples",
"aircraft": "Aircraft",
"h3Hex": "H3 Hex"
},
"flight": {
"scheduled": "Sched",
"estimated": "Est",
"groundStop": "GROUND STOP",
"groundDelay": "GROUND DELAY PROGRAM",
"departureDelay": "DEPARTURE DELAYS",
"arrivalDelay": "ARRIVAL DELAYS",
"delaysReported": "DELAYS REPORTED",
"closure": "AIRPORT CLOSURE",
"delays": "DELAYS",
"avgDelay": "AVG DELAY",
"cancelled": "CANCELLED",
"sources": {
"faa": "FAA ASWS",
"eurocontrol": "Eurocontrol",
"computed": "Computed",
"aviationstack": "Flight Data",
"notam": "NOTAM"
},
"regions": {
"americas": "Americas",
"europe": "Europe",
"apac": "Asia-Pacific",
"mena": "Middle East",
"africa": "Africa"
}
},
"aircraft": {
"altitude": "Altitude",
"speed": "Ground Speed",
"heading": "Heading",
"position": "Position",
"ground": "On Ground",
"airborne": "Airborne"
},
"cyberThreat": {
"title": "CYBER THREAT"
},
"nuclear": {
"types": {
"plant": "POWER PLANT",
"enrichment": "ENRICHMENT",
"weapons": "WEAPONS COMPLEX",
"research": "RESEARCH",
"reprocessing": "REPROCESSING PLANT",
"testSite": "NUCLEAR TEST SITE"
},
"description": "Nuclear facility under monitoring. Strategic importance for regional security and non-proliferation concerns."
},
"economic": {
"types": {
"exchange": "STOCK EXCHANGE",
"centralBank": "CENTRAL BANK",
"financialHub": "FINANCIAL HUB"
},
"closed": "CLOSED"
},
"irradiator": {
"subtitle": "Industrial Gamma Irradiator Facility",
"description": "Industrial irradiation facility using Cobalt-60 or Cesium-137 sources for medical device sterilization, food preservation, or material processing. Source: IAEA DIIF Database."
},
"pipeline": {
"title": "PIPELINE",
"types": {
"oil": "OIL PIPELINE",
"gas": "GAS PIPELINE",
"products": "PRODUCTS PIPELINE"
},
"status": {
"operating": "OPERATING",
"construction": "UNDER CONSTRUCTION"
},
"description": "Major {{type}} pipeline infrastructure. {{status}}"
},
"pipelineStatusDesc": {
"operating": "Currently operational and transporting resources.",
"construction": "Currently under construction."
},
"cable": {
"fault": "FAULT",
"degraded": "DEGRADED",
"active": "ACTIVE",
"major": "MAJOR",
"cable": "CABLE",
"subtitle": "Undersea Fiber Optic Cable",
"type": "SUBMARINE CABLE",
"advisory": "FAULT ADVISORY",
"repairDeployment": "REPAIR DEPLOYMENT",
"repairStatus": {
"onStation": "On Station",
"enRoute": "En Route"
},
"health": {
"evidence": "HEALTH EVIDENCE"
},
"description": "Undersea telecommunications cable carrying international internet traffic. These fiber optic cables form the backbone of global internet connectivity, transmitting over 95% of intercontinental data."
},
"repairShip": {
"note": "Repair vessel tracking indicates active deployment toward fault site.",
"badge": "REPAIR SHIP",
"description": "Repair ship tracking indicates active deployment in support of undersea cable restoration.",
"status": {
"onStation": "ON STATION",
"enRoute": "EN ROUTE"
}
},
"strategic": "STRATEGIC",
"verified": "VERIFIED",
"sampledList": "Showing a sampled list of {{count}} events.",
"reason": "REASON",
"threat": "THREAT",
"sponsor": "SPONSOR",
"country": "COUNTRY",
"malware": "MALWARE",
"lastSeen": "LAST SEEN",
"open": "OPEN",
"tradingHours": "TRADING HOURS",
"gamma": "GAMMA",
"city": "CITY",
"length": "LENGTH",
"operator": "OPERATOR",
"countries": "COUNTRIES",
"waypoints": "WAYPOINTS",
"repairEta": "REPAIR ETA",
"timeUnits": {
"m": "m",
"h": "h",
"d": "d"
},
"hotspot": {
"escalation": "ESCALATION ASSESSMENT",
"baseline": "Baseline",
"components": {
"news": "News",
"cii": "CII",
"geo": "Geo",
"military": "Military"
},
"levels": {
"stable": "STABLE",
"watch": "WATCH",
"elevated": "ELEVATED",
"high": "HIGH",
"critical": "CRITICAL"
}
},
"historicalContext": "HISTORICAL CONTEXT",
"lastMajorEvent": "Last Major Event",
"precedents": "Precedents",
"cyclicalPattern": "Cyclical Pattern",
"whyItMatters": "WHY IT MATTERS",
"keyEntities": "KEY ENTITIES",
"relatedHeadlines": "RELATED HEADLINES",
"liveIntel": "Live Intelligence",
"loadingNews": "Loading global news...",
"noCoverage": "No recent global coverage",
"time": "Time",
"area": "Area",
"expires": "Expires",
"aisGapSpike": "AIS GAP SPIKE",
"chokepointCongestion": "CHOKEPOINT CONGESTION",
"darkening": "DARKENING",
"density": "DENSITY",
"darkShips": "DARK SHIPS",
"vesselCount": "VESSEL COUNT",
"window": "WINDOW",
"region": "REGION",
"fatalities": "FATALITIES",
"actors": "ACTORS",
"near": "Near",
"moreEvents": "more events",
"monitoring": "Monitoring",
"viewUSGS": "View on USGS",
"expired": "Expired",
"timeAgo": {
"s": "{{count}}s ago",
"m": "{{count}}m ago",
"h": "{{count}}h ago",
"d": "{{count}}d ago"
},
"cableAdvisory": {
"reported": "REPORTED",
"impact": "IMPACT",
"eta": "ETA"
},
"outage": {
"levels": {
"total": "TOTAL BLACKOUT",
"major": "MAJOR OUTAGE",
"partial": "PARTIAL DISRUPTION",
"disruption": "DISRUPTION"
},
"reported": "REPORTED",
"categories": "CATEGORIES",
"readReport": "Read full report"
},
"datacenter": {
"status": {
"existing": "OPERATIONAL",
"planned": "PLANNED",
"decommissioned": "DECOMMISSIONED",
"unknown": "UNKNOWN"
},
"gpuChipCount": "GPU/CHIP COUNT",
"chipType": "CHIP TYPE",
"power": "POWER",
"sector": "SECTOR",
"attribution": "Data: Epoch AI GPU Clusters",
"chips": "chips",
"cluster": {
"title": "{{count}} Data Centers",
"totalChips": "TOTAL CHIPS",
"totalPower": "TOTAL POWER",
"operational": "OPERATIONAL",
"planned": "PLANNED",
"moreDataCenters": "+ {{count}} more data centers",
"sampledSites": "Showing a sampled list of {{count}} sites."
}
},
"startupHub": {
"tiers": {
"mega": "MEGA HUB",
"major": "MAJOR HUB",
"emerging": "EMERGING",
"hub": "HUB"
},
"unicorns": "UNICORNS"
},
"cloudRegion": {
"provider": "PROVIDER",
"availabilityZones": "AVAILABILITY ZONES"
},
"techHQ": {
"types": {
"faang": "BIG TECH",
"unicorn": "UNICORN",
"public": "PUBLIC",
"tech": "TECH"
},
"marketCap": "MARKET CAP",
"employees": "EMPLOYEES"
},
"accelerator": {
"types": {
"accelerator": "ACCELERATOR",
"incubator": "INCUBATOR",
"studio": "STARTUP STUDIO"
},
"founded": "FOUNDED",
"notableAlumni": "NOTABLE ALUMNI"
},
"techEvent": {
"days": {
"today": "TODAY",
"tomorrow": "TOMORROW",
"inDays": "IN {{count}} DAYS"
},
"date": "DATE",
"moreInformation": "More Information"
},
"techHQCluster": {
"companiesCount": "{{count}} COMPANIES",
"bigTechCount": "{{count}} Big Tech",
"unicornsCount": "{{count}} Unicorns",
"publicCount": "{{count}} Public",
"sampled": "Showing a sampled list of {{count}} companies."
},
"techEventCluster": {
"eventsCount": "{{count}} EVENTS",
"upcomingWithin2Weeks": "{{count}} upcoming within 2 weeks",
"sampled": "Showing a sampled list of {{count}} events."
},
"militaryFlight": {
"types": {
"fighter": "Fighter",
"bomber": "Bomber",
"transport": "Transport",
"tanker": "Tanker",
"awacs": "AWACS/AEW",
"reconnaissance": "Reconnaissance",
"helicopter": "Helicopter",
"drone": "UAV/Drone",
"patrol": "Patrol",
"specialOps": "Special Operations",
"vip": "VIP Transport"
},
"altitude": "ALTITUDE",
"ground": "Ground",
"speed": "SPEED",
"heading": "HEADING",
"hexCode": "HEX CODE",
"squawk": "SQUAWK",
"attribution": "Source: OpenSky Network"
},
"militaryVessel": {
"aisDark": "AIS DARK",
"vessel": "Vessel",
"speed": "SPEED",
"heading": "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": "⚠ Vessel has gone dark - AIS signal lost. May indicate sensitive operations.",
"estPosition": "EST. POSITION",
"aisLive": "AIS LIVE",
"recentTracking": "Recent Tracking",
"lastReport": "LATEST",
"nearChokepoint": "NEAR CHOKEPOINT",
"nearBase": "NEAR BASE",
"lastSeen": "LAST SEEN"
},
"militaryCluster": {
"flightActivity": {
"exercise": "Military Exercise",
"patrol": "Patrol Activity",
"transport": "Transport Operations",
"unknown": "Military Activity"
},
"moreAircraft": "+{{count}} more aircraft",
"aircraftCount": "{{count}} AIRCRAFT",
"aircraft": "AIRCRAFT",
"activity": "ACTIVITY",
"primary": "PRIMARY",
"trackedAircraft": "TRACKED AIRCRAFT",
"vesselActivity": {
"exercise": "Naval Exercise",
"deployment": "Naval Deployment",
"patrol": "Patrol Activity",
"transit": "Fleet Transit",
"unknown": "Naval Activity"
},
"moreVessels": "+{{count}} more vessels",
"vesselsCount": "{{count}} VESSELS",
"vessels": "VESSELS",
"trackedVessels": "TRACKED VESSELS"
},
"naturalEvent": {
"closed": "CLOSED",
"active": "ACTIVE",
"reported": "REPORTED",
"viewOnSource": "View on {{source}}",
"attribution": "Data: NASA EONET",
"storm": "Storm",
"classification": "Classification",
"maxWind": "Max Wind",
"pressure": "Pressure",
"movement": "Movement",
"tropicalSystem": "Tropical System"
},
"port": {
"types": {
"container": "CONTAINER",
"oil": "OIL TERMINAL",
"lng": "LNG TERMINAL",
"naval": "NAVAL PORT",
"mixed": "MIXED",
"bulk": "BULK"
},
"worldRank": "WORLD RANK"
},
"spaceport": {
"status": {
"active": "ACTIVE",
"construction": "CONSTRUCTION",
"inactive": "INACTIVE"
},
"launchActivity": "LAUNCH ACTIVITY",
"description": "Strategic space launch facility. Launch cadence and orbit access capabilities are key geopolitical indicators."
},
"mineral": {
"status": {
"producing": "PRODUCING",
"development": "DEVELOPMENT",
"exploration": "EXPLORATION"
},
"projectSubtitle": "{{mineral}} PROJECT"
},
"stockExchange": {
"marketCap": "MARKET CAP"
},
"financialCenter": {
"gfciRank": "GFCI RANK",
"specialties": "SPECIALTIES"
},
"centralBank": {
"currency": "CURRENCY"
},
"commodityHub": {
"commodities": "COMMODITIES"
},
"iranEvent": {
"relatedEvents": "Related Events"
},
"hotspotSubtexts": {
"conflict_zone": "Conflict Zone",
"dprk_watch": "DPRK Watch",
"egypt_gis": "Egypt/GIS",
"energy_space": "Energy/Space",
"financial_hub": "Financial Hub",
"gchq_mi6": "GCHQ/MI6",
"greenland_intel": "Greenland Intel",
"haiti_crisis": "Haiti Crisis",
"irgc_activity": "IRGC Activity",
"insurgency_coups": "Insurgency/Coups",
"iraq_pmf": "Iraq/PMF",
"kremlin_activity": "Kremlin Activity",
"lebanon_hezbollah": "Lebanon/Hezbollah",
"mossad_idf": "Mossad/IDF",
"nato_hq": "NATO HQ",
"pla_mss_activity": "PLA/MSS Activity",
"pentagon_pizza_index": "Pentagon Pizza Index",
"piracy_conflict": "Piracy/Conflict",
"qatar_al_udeid": "Qatar/Al Udeid",
"saudi_gip_mbs": "Saudi GIP/MBS",
"strait_watch": "Strait Watch",
"syria_crisis": "Syria Crisis",
"tech_ai_hub": "Tech/AI Hub",
"turkey_mit": "Turkey/MIT",
"uae_ecsr": "UAE/ECSR",
"venezuela_crisis": "Venezuela Crisis",
"yemen_houthis": "Yemen/Houthis"
}
},
"signals": {
"context": {
"prediction_leads_news": {
"whyItMatters": "Prediction markets often price in information before it becomes news—traders may have early access to developments.",
"actionableInsight": "Monitor for breaking news in the next 1-6 hours that could explain the market move.",
"confidenceNote": "Higher confidence if multiple prediction markets move in same direction."
},
"news_leads_markets": {
"whyItMatters": "News is breaking faster than markets are reacting—potential mispricing opportunity.",
"actionableInsight": "Watch for market catch-up as algorithms and traders digest the news.",
"confidenceNote": "Stronger signal if news is from Tier 1 wire services."
},
"silent_divergence": {
"whyItMatters": "Market moving significantly without any identifiable news catalyst—possible insider knowledge, algorithmic trading, or unreported development.",
"actionableInsight": "Investigate alternative data sources; news may emerge later explaining the move.",
"confidenceNote": "Lower confidence as cause is unknown—treat as early warning, not confirmed intelligence."
},
"velocity_spike": {
"whyItMatters": "A story is accelerating across multiple news sources—indicates growing significance and potential for market/policy impact.",
"actionableInsight": "This topic warrants immediate attention; expect official statements or market reactions.",
"confidenceNote": "Higher confidence with more sources; check if Tier 1 sources are among them."
},
"keyword_spike": {
"whyItMatters": "A term is appearing at significantly higher frequency than its baseline across multiple sources, indicating a developing story.",
"actionableInsight": "Review related headlines and AI summary, then correlate with country instability and market moves.",
"confidenceNote": "Confidence increases with stronger baseline multiplier and broader source diversity."
},
"convergence": {
"whyItMatters": "Multiple independent source types confirming same event—cross-validation increases likelihood of accuracy.",
"actionableInsight": "Treat this as high-confidence intelligence; triangulation reduces false positive risk.",
"confidenceNote": "Very high confidence when wire + government + intel sources align."
},
"triangulation": {
"whyItMatters": "The \"authority triangle\" (wire services, government sources, intel specialists) are aligned—this is the gold standard for breaking news confirmation.",
"actionableInsight": "This is actionable intelligence; expect market/policy reactions imminently.",
"confidenceNote": "Highest confidence signal in the system—multiple authoritative sources agree."
},
"flow_drop": {
"whyItMatters": "Physical commodity flow disruption detected—supply constraints often precede price spikes.",
"actionableInsight": "Monitor energy commodity prices; assess supply chain exposure.",
"confidenceNote": "Confidence depends on disruption duration and alternative supply availability."
},
"flow_price_divergence": {
"whyItMatters": "Supply disruption news is not yet reflected in commodity prices—potential information edge.",
"actionableInsight": "Either markets are slow to react, or the disruption is less significant than reported.",
"confidenceNote": "Medium confidence—markets may have better information than news reports."
},
"geo_convergence": {
"whyItMatters": "Multiple news events clustering around same geographic location—potential escalation or coordinated activity.",
"actionableInsight": "Increase monitoring priority for this region; correlate with satellite/AIS data if available.",
"confidenceNote": "Higher confidence if events span multiple source types and time periods."
},
"explained_market_move": {
"whyItMatters": "Market move has clear news catalyst—no mystery, price action reflects known information.",
"actionableInsight": "Understand the narrative driving the move; assess if reaction is proportional.",
"confidenceNote": "High confidence—news and price action are correlated."
},
"hotspot_escalation": {
"whyItMatters": "Geopolitical hotspot showing significant escalation based on news activity, country instability, geographic convergence, and military presence.",
"actionableInsight": "Increase monitoring priority; assess downstream impacts on infrastructure, markets, and regional stability.",
"confidenceNote": "Confidence weighted by multiple data sources—news (35%), country instability (25%), geo-convergence (25%), military activity (15%)."
},
"sector_cascade": {
"whyItMatters": "Market movement is cascading across related sectors—indicates systemic reaction to a catalyzing event.",
"actionableInsight": "Identify the primary catalyst; assess exposure across correlated assets.",
"confidenceNote": "Higher confidence when multiple sectors move with similar velocity and direction."
},
"military_surge": {
"whyItMatters": "Military transport activity significantly above baseline—indicates potential deployment, humanitarian operation, or force projection.",
"actionableInsight": "Correlate with regional news; assess nearby base activity and naval movements.",
"confidenceNote": "Higher confidence with sustained activity over multiple hours and diverse aircraft types."
},
"fallback": {
"whyItMatters": "Signal detected.",
"actionableInsight": "Monitor for developments.",
"confidenceNote": "Standard confidence."
}
}
},
"alerts": {
"instabilityRising": "{{country}} Instability Rising",
"instabilityFalling": "{{country}} Instability Falling",
"indexRose": "Instability index rose from {{from}} to {{to}} ({{change}}). Driver: {{driver}}",
"indexFell": "Instability index fell from {{from}} to {{to}} ({{change}}). Driver: {{driver}}",
"geoAlert": "Geographic Alert: {{location}}",
"cascadeAlert": "Infrastructure Cascade Alert",
"infraAlert": "Infrastructure Alert: {{name}}",
"countriesAffected": "{{count}} countries affected, highest impact: {{impact}}",
"alert": "Alert: {{location}}",
"multipleRegions": "Multiple Regions",
"trending": "\"{{term}}\" Trending - {{count}} mentions in {{hours}}h",
"eventsDetected": "{{count}} events detected in region ({{lat}}°, {{lon}}°)"
},
"intel": {
"topics": {
"military": {
"name": "Military Activity",
"description": "Military exercises, deployments, and operations"
},
"cyber": {
"name": "Cyber Threats",
"description": "Cyber attacks, ransomware, and digital threats"
},
"nuclear": {
"name": "Nuclear",
"description": "Nuclear programs, IAEA inspections, proliferation"
},
"sanctions": {
"name": "Sanctions",
"description": "Economic sanctions and trade restrictions"
},
"intelligence": {
"name": "Intelligence",
"description": "Espionage, intelligence operations, surveillance"
},
"maritime": {
"name": "Maritime Security",
"description": "Naval operations, maritime chokepoints, sea lanes"
}
}
},
"common": {
"loading": "Loading...",
"error": "Error",
"noData": "No data available",
"noDataAvailable": "No data available",
"retrying": "Retrying...",
"failedToLoad": "Temporarily unavailable — retrying",
"noDataShort": "No data",
"upstreamUnavailable": "Upstream API unavailable — will retry automatically",
"loadingUcdpEvents": "Loading armed conflict events",
"loadingStablecoins": "Loading stablecoins...",
"scanningThermalData": "Scanning thermal data",
"calculatingExposure": "Calculating exposure",
"computingSignals": "Computing signals...",
"loadingEtfData": "Loading ETF data...",
"loadingGiving": "Loading global giving data",
"loadingDisplacement": "Loading displacement data",
"loadingClimateData": "Loading climate data",
"failedTechReadiness": "Tech readiness data temporarily unavailable",
"failedRiskOverview": "Risk overview temporarily unavailable",
"failedPredictions": "Predictions temporarily unavailable",
"failedCII": "CII data temporarily unavailable",
"failedDependencyGraph": "Dependency graph temporarily unavailable",
"failedIntelFeed": "Intelligence feed temporarily unavailable",
"failedMarketData": "Market data temporarily unavailable",
"failedSectorData": "Sector data temporarily unavailable",
"failedCommodities": "Commodities data temporarily unavailable",
"failedCryptoData": "Crypto data temporarily unavailable",
"rateLimitedMarket": "Market data temporarily unavailable (rate limited) — retrying shortly",
"noNewsAvailable": "No news available",
"noActiveTechHubs": "No active tech hubs",
"noActiveGeoHubs": "No active geopolitical hubs",
"allSourcesDisabled": "All sources disabled",
"allIntelSourcesDisabled": "All Intel sources disabled",
"noEventsInCategory": "No events in this category",
"exportCsv": "Export CSV",
"exportJson": "Export JSON",
"exportData": "Export Data",
"selectAll": "Select All",
"selectNone": "Select None",
"unrest": "Unrest",
"conflict": "Conflict",
"security": "Mil. Activity",
"information": "Information",
"shareStory": "Share story",
"exportImage": "Export Image",
"exportPdf": "Export PDF",
"new": "NEW",
"live": "LIVE",
"cached": "CACHED",
"unavailable": "UNAVAILABLE",
"close": "Close",
"cancel": "Cancel",
"currentVariant": "(current)",
"retry": "Retry",
"refresh": "Refresh",
"all": "All"
},
"connectivity": {
"offlineCached": "Offline — showing cached data from {{freshness}}.",
"offlineUnavailable": "Offline — live data is currently unavailable.",
"cachedFallback": "Live data unavailable — showing cached data from {{freshness}}."
},
"preferences": {
"display": "Display",
"intelligence": "Intelligence",
"media": "Media",
"panels": "Panels",
"dataAndCommunity": "Data & Community",
"theme": "Theme",
"themeDesc": "Auto follows your system preference.",
"themeAuto": "Auto (follow system)",
"themeDark": "Dark",
"themeLight": "Light",
"mapProvider": "Map Tile Provider",
"mapProviderDesc": "Choose where map tiles are loaded from. Auto uses self-hosted PMTiles with OpenFreeMap fallback.",
"mapTheme": "Map Theme",
"mapThemeDesc": "Visual style of the map tiles. Options vary by provider.",
"globePreset": "Visual Preset",
"globePresetDesc": "Switch between classic and enhanced globe visuals to compare.",
"fontFamily": "Font Family",
"fontFamilyDesc": "Monospace for a technical look, system default for easier reading.",
"fontMono": "Monospace",
"fontSystem": "System Default"
},
"premium": {
"pro": "PRO",
"lockedDesc": "Requires a World Monitor license key",
"signInToUnlock": "Sign in to unlock premium features",
"signIn": "Sign In to Unlock",
"upgradeDesc": "Upgrade to Pro for full access to premium analytics",
"upgradeToPro": "Upgrade to Pro",
"features": {
"orefSirens1": "Real-time Israel missile & rocket alerts",
"orefSirens2": "Siren zone mapping with threat classification",
"telegramIntel1": "Curated Telegram OSINT channels",
"telegramIntel2": "Near-real-time conflict & geopolitical updates"
}
},
"contextMenu": {
"openCountryBrief": "Open Country Brief",
"copyCoordinates": "Copy Coordinates"
},
"auth": {
"signIn": "Sign In",
"createAccount": "Create account",
"settings": "Settings"
},
"mcp": {
"connectPanel": "Connect MCP",
"modalTitle": "Connect MCP Server",
"serverUrl": "Server URL",
"authHeader": "Auth Header",
"optional": "optional",
"apiKey": "API Key",
"apiKeyPlaceholder": "Paste your API key",
"useCustomHeaders": "Advanced: use custom headers ↓",
"useApiKey": "← Use API key",
"connectBtn": "Connect & List Tools",
"connecting": "Connecting...",
"foundTools": "Found {{count}} tool(s)",
"connectFailed": "Connection failed",
"selectTool": "Select a tool",
"toolArgs": "Arguments (JSON)",
"panelTitle": "Panel Title",
"panelTitlePlaceholder": "My MCP Panel",
"refreshEvery": "Refresh every",
"seconds": "seconds",
"addPanel": "Add Panel",
"configure": "Configure MCP",
"refreshNow": "Refresh now",
"invalidJson": "Invalid JSON",
"confirmDelete": "Remove this MCP panel?",
"quickConnect": "Quick Connect",
"or": "or enter a custom server",
"generatingVisualization": "Building visualization...",
"visualizationFailed": "Visualization failed"
},
"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"
}
}
|