Skip to content
  • P
    Projects
  • G
    Groups
  • S
    Snippets
  • Help

libai / footsen

  • This project
    • Loading...
  • Sign in
Go to a project
  • Project
  • Repository
  • Issues 0
  • Merge Requests 0
  • Pipelines
  • Wiki
  • Snippets
  • Members
  • Activity
  • Graph
  • Charts
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Branches
  • Tags
  • Contributors
  • Graph
  • Compare
  • Charts
Switch branch/tag
  • footsen
  • lib
  • langchange.js
Find file
Normal viewHistoryPermalink
langchange.js 234 KB
Newer Older
dawei's avatar
feat: 新增页面
b7694d8e
 
dawei committed 9 months ago
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 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363 4364 4365 4366 4367 4368 4369 4370 4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395 4396 4397 4398 4399 4400 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 4432 4433 4434
var langList = [
	//中文
	//分支
	{
		'paytitle': '寶石儲值',
		'payrecord': '儲值記錄',
		'visa': '../img/visa.png',
		'gash1': '../img/g-Point.png',
		'gash2': '../img/g-member.png',
		'gash3': '../img/g-credit.png',
		'gash4': '../img/g-phone.png',
		'alipay': '../img/alipay.png',
		'weipay': '../img/weipay.png',
		'molpay': '../img/molpay.png',
		'payatm': '../img/payatm.png',
		'gopay': '../img/gopay.png',
		'alfama': '../img/alfama.png',
		'paywallet': '../img/wallet.png',
		'next': '下一步',
		'ques': '*如果出現儲值問題,請聯繫客服',
		'select': '請選擇充值金額',
		'wallet': '錢包儲值',
		'card': '點卡儲值',
		'mol': '摩爾點卡儲值參考列表',
		'moneyTitle': '獲得記錄',
		'moneyno': '暫時沒有獲得記錄',
		'recordTitle': '消費記錄',
		'recordTitle2': '珍愛值記錄',
		'recordno': '暫時沒有消費記錄',
		'vipTitle': '購買記錄',
		'vipno': '暫時沒有購買記錄',
		'rmbTitle': '累計螢火',
		'rmbLive': '直播螢火獲得',
		'rmbVchat': '視聊螢火獲得',
		'rmbIm': '聊天獲得螢火',
		'canTitle': '可提現螢火',
		'canCurrency': '幣種選擇 : ',
		'canFires': '螢火',
		'canGift': '未提現禮物分成',
		'canActivity': '活動獎勵',
		'canGolden': '黃金螢火蟲收益',
		'canInvitation': '邀請-直播收益',
		'canIncome': '邀請-充值收益',
		'canOther': '歷史其他收益',
		'canTotal': '全部提現',
		'canCNY': '人民幣(1螢火=---RMB)',
		'canNTD': '新台幣(1螢火=---TWD)',
		'canUSD': '美元(1螢火=---USD)',
		'canMYR': '馬幣(1螢火=---MYD)',
		'activeTitle': '活動獎勵記錄',
		'activeFires': '獎勵螢火:',
		'activeno': '暂时没有活動獎勵記錄',
		'takeRecord': '提現記錄',
		'takeno': '暫無提現記錄',
		'takeStatus': '提現狀態說明',
		'takeApplied': '<span class="color-ysq">1.已申請</span>,代表用戶提交了提現申請,等運營審核',
		'takeReviewed': '<span class="color-ysh">2.已審核</span>,代表運營人員已經審核通過,等財務打款',
		'takePaid': '<span class="color-ydk">3.已打款</span>,代表財務已經打款到用戶賬戶',
		'takeReturned': '<span class="color-yfh">4.已返回</span>,代表運營人員駁回了用戶提現申請,提現的螢火會返回到用戶賬戶中',
		'takeAbnormal': '<span class="color-ybh">5.打款異常</span>,代表用戶賬戶設置異常等原因未打款成功,提現的螢火會返回到用戶賬號',
		'takeGot': '知道了',
		'takeObsolete': '已作廢',
		'takeAppliedTitle': '已申請',
		'takeReconciled': '已審核',
		'takePaidTitle': '已打款',
		'takeReturnedTitle': '已返回',
		'takeRejected': '打款失敗',
		'takeWeChat': '微信提現',
		'takeOrderNum': '訂單號碼',
		'takeWithdrawal': '提現螢火數',
		'dewmoneyTitle': '獲得記錄',
		'dewmoneyGet': '獲得',
		'dewmoneyno': '暫時沒有獲得記錄',
		'dewconsumTitle': '消費記錄',
		'dewconsumGet': '消費',
		'dewconsumno': '暫時沒有消費記錄',
		'dewExchangeDew': '兌換露水',
		'dewExchangeRecord': '記錄',
		'dewExchangeTitle1': '確定用',
		'dewExchangeTitle2': '寶石兌換',
		'dewExchangeTitle3': '露水',
		'dewExchangeBtn': '確定',
		'dewExchangeTitle4': '兌換成功!',
		'dewIndex': '兌換黃金螢火蟲',
		'dewExchangeTitle5': '露水兌換',
		'dewExchangeTitle6': '黃金螢火蟲',
		'dewExchangeTitle7': '轉讓黃金螢火蟲',
		'dewExchangeTitle8': '去兌換螢火',
		'dewExchangeTitle9': '露水',
		'dewExchangeTitle10': '兌換螢火為:',
		'dewExchangeTitle11': '黃金螢火蟲剩餘',
		'dewExchangeTitle12': '全部兌換',
		'dewExchangeTitle13': '確認兌換',
		'dewExchangeTitle14': '已經到達最大值',
		'dewExchangeTitle15': '暫時沒有黃金螢火蟲噢~',
		'dewExchangeTitle16': '黃金螢火蟲兌換',
		'dewExchangeTitle17': '取消',
		'vipmsg10': '如何解鎖VIP特權',
		'vipmsg11': '開通VIP會員是享有VIP特權的唯一途徑。',
		'vipmsg12': '在"我的"--->"VIP特權"中點擊--->"开通VIP",完成購買後即自動开通VIP會員。',
		'vipmsg13': '2 開通VIP會員後,將根據用戶的VIP等級享有對應的VIP特權。',
		'vipmsg14': '查看VIP特权>>',
		'vipmsg15': '3 开通VIP后,如果VIP等级增加,将自动解锁更高等级的VIP特权。',
		'vipmsg16': 'VIP等級怎樣劃分',
		'vipmsg17': '富豪等級',
		'vipmsg18': '送出寶石',
		'vipmsg19': 'Firefly保留最終解釋權',
		'vipmsg20': '激活座駕',
		'vipmsg21': '獲取條件',
		'vipmsg22': '特權說明',
		'vipmsg23': '激活用戶擁有的座駕並在直播間展示。',
		'vipmsg24': ' 注意:如果未開通VIP,即使擁有座駕也無法在直播間顯示。',
		'vipmsg25': '立即購買VIP',
		'vipmsg26': '查看擁有的座駕',
		'vipmsg27': '私聊無等級限制',
		'vipmsg28': '在VIP有效期內,添加好友以及和好友私聊無等級限制',
		'vipmsg29': '富豪等級銘牌',
		'vipmsg30': '在VIP有效期內,激活富豪等級對應的銘牌,並在在用戶資料卡,平台榜單, 空間等處展示。 當用戶在直播間發言時, 將展示對應的銘牌, 同時暱稱顏色也相應發生變化。 富豪等級不同, 對應的銘牌不同。 ',
		'vipmsg31': '主播头像邊框',
		'vipmsg32': '在VIP有效期內,在直播間顯示頭像框。',
		'vipmsg33': '頭像掛件',
		'vipmsg34': '在VIP有效期內,在直播間內顯示主播特別的頭像框',
		'vipmsg35': '尊貴名片',
		'vipmsg36': '在VIP有效期內,在直播間的個人卡片上展示不同的描邊特效。',
		'vipmsg37': '進場特效',
		'vipmsg38': '在VIP有效期內,進入直播間,有專屬的進場特效。富豪等級不同, 進場特效不同。 ',
		'vipmsg39': '防踢防禁言',
		'vipmsg40': '在VIP有效期內,在直播間的用戶可以防止除主播外的其他人踢出/禁言。',
		'vipmsg41': '公屏發言框底色',
		'vipmsg42': '在VIP有效期內,用戶發言有專屬的發言框底色,發言更酷炫,更引人注目哦。 富豪等級不同, 底框顏色不同。 ',
		'vipmsg43': '進房間隱身',
		'vipmsg44': '在VIP有效期內,進入直播間可隱身。',
		'vipmsg45': '設置方法:我的->設置->隱身開關打開,即開啟隱身。',
		'vipmsg46': '定制座駕',
		'vipmsg47': '在VIP有效期內,用戶可向客服處申請定制座駕。',
		'vipmsg48': 'VIP51及以上用戶',
		'vipmsg49': 'VIP11及以上用戶',
		'vipmsg50': 'VIP1及以上用戶',
		'vipmsg51': 'VIP21及以上用戶',
		'vipmsg52': 'VIP31及以上用戶',
		'vipmsg53': 'VIP41及以上用戶',
		'vipmsg54': 'VIP51及以上用戶',
		'vipmsg55': 'VIP41及以上用戶',

		'vipmsg56': '聊天房',
		'vipmsg57': '獲取條件',
		'vipmsg58': '特權說明',
		'vipmsg59': '在VIP有效期內,直播結束後可將房間轉換成聊天房。',
		"vipmsg60": '定制禮物',
		"vipmsg61": "VIP48及以上",
		"vipmsg62": "在VIP有效期內,可聯繫客服定制專屬禮物",
		'vipmsgImg': 'images/font.png',
		'gurad1': '我守護的',
		'gurad2': '我的守護',
		'gurad3': '本月',
		'gurad4': '上月',
		'gurad5': '你還未守護任何主播',
		'gurad6': '快去為你心儀的主播開通守護吧',
		'gurad7': '守護值',
		'gurad8': '名',
		'gurad9': '開通守護',
		'gurad10': '你無任何守護',
		'gurad11': '多多開播才能吸引更多的守護哦~',
		'gurad12': '暫無數據',
		'gurad13': '未上榜',
		'gurad14': '守護說明',
		'gurad15': '如何成為守護?',
		'gurad16': '1 點擊直播間在線列表上守護坐席,點擊開通守護的按鈕,完成支付,即開通守護。',
		'gurad17': '2 開通守護時長按照每月30天計算,多次點擊開通守護,守護時間將疊加。',
		'gurad18': '3 用戶可以為多個主播開通守護,主播也可以擁有多個守護。',
		'gurad19': '4 守護分成:開通守護後,主播享有開通守護價格的50%分成。',
		'gurad20': '5 守護值:主播守護風雲榜的守護值=主播旗下所有守護粉絲貢獻的守護值綜合。在守護期間內贈送的直播間禮物將給主播增加守護值,<span>1寶石禮物=1守護值</span>。非守護期間內贈送的禮物不計入守護值。',
		'gurad21': '守護特權',
		'gurad22': '開通守護後,在該主播的直播內享有相應的守護特權,非該主播的直播間不享有以下特權。',
		'gurad23': '說明',
		'gurad24': '守護勛章',
		'gurad25': '在公屏聊天時顯示',
		'gurad26': '進場特效',
		'gurad27': '進場特效更炫酷',
		'gurad28': '專屬禮物',
		'gurad29': '只有守護才能送的專屬 禮物,有守護標識',
		'gurad30': '守護坐席',
		'gurad31': '守護專屬的頭像掛件, 在直播間優先顯示守護掛件',
		'gurad32': '排名靠前',
		'gurad33': '守護的排名高於其他用戶',
		'gurad34': '自動成為好友',
		'gurad35': '自動成為好友,互動更高效',
		'gurad36': 'VIP30天',
		'gurad37': '贈送VIP30天',
		'gurad38': '防踢防禁言',
		'gurad39': '僅在守護的直播間防踢防 禁言',
		'gurad40': '開通廣播',
		'gurad41': '守護開通後有全寨廣播通知',
		'gurad42': '什麼是守護',
		'gurad43': '守護是粉絲和主播親密關係的象征,也是主播在直播平台的人氣象征之一。用戶通過消耗寶石開通守護,即可成為主播的守護騎士,獲得專屬的守護勛章和尊貴特權。守護騎士致力於守護著心愛的主播,過期則失去守護特權。',
		'gurad44': '註:守護騎士擁有的房間特權只在所守護的主播直播間內生效。',
		'gurad45': '守護分成螢火',
		'gurad46': '剩餘',
		'gurad47': '天',
		'gurad48': '第',
		'dew1': '我的露水賬戶',
		'dew2': '露水和寶石可以自由買賣(寶石:露水=1:100)',
		'dew3': '全部',
		'dew4': '買入',
		'dew5': '賣出',
		'dew6': '買入後剩餘',
		'dew7': '賣出後剩餘',
		'dew8': '確認賣出',
		'dew9': '確認花費',
		'dew10': '寶石不足,無法買入',
		'dew11': '露水不足,無法賣出',
		'dew12': '寶石不足',
		'dew13': '您的寶石不足,無法買入',
		'dew14': '取消',
		'dew15': '前往儲值',
		'dew16': '全部買入',
		'dew17': '全部賣出',
		'dew18': '寶石',
		'dew19': '兌換',
		'dew20': '買入',
		'dew21': '賣出',
		'dew22': '記錄',
		'dew23': '我的露水',
		'dew24': '取消',
		'dew25': '確定',
		'dew26': '買入成功',
		'dew27': '露水不足,請選擇其他賣出數量。',
		'dew28': '該功能已經停止運營,請更新到5.3.0版本!',
		'dew29': '賣出成功',
		'dew30': '版本過低無法自動跳轉',
		'dew31': '請前往個人中心進行儲值!',
		'dew32': '寶石不足10,無法買入',
		'dew33': '露水不足1000,無法賣出',
		'dew34': '消耗',
		'dew35': '兌換',
		'share1': '邀請有獎',
		'income1': '直播間收益',
		'income2': '活動收益',
		'income3': '邀請收益',
		'income4': '視訊/聲訊收益',
		'income5': '守護收益',
		'income6': '其他收益',
		'income7': '今日',
		'income8': '本週',
		'income9': '上週',
		'income10': '本月',
		'income11': '上月',
		'income12': '自定義',
		'income13': '選擇日期',
		'income14': '暫時沒有收益記錄',
		'income15': '時長收入',
		'income16': '禮物收入',
		'income17': '通話',
		'income18': '分鐘',
		'income19': '秒',
		'income20': '年',
		'income21': '月',
		'income22': '日',
		'income23': '累計螢火(直播間螢火,視訊螢火除外)只展示2020年1月1月00:00之後的數據。',
		'income24': '確認',
		'income25': '取消',
		'income26': '私聊收益',
		'backpack1': '最多只展示最近一個月',
		'backpack2': '暫無獲得記錄',
		'backpack3': '暫無消耗記錄',
		'backpack4': '獲得記錄',
		'backpack5': '消耗記錄',
		'box1': '暫無記錄',
		'box2': '寶箱規則',
		'box3': '1、寶箱發起人僅限於直播間主播及觀眾,本直播間內的用戶滿足相應條件後即可參與搶寶箱',
		'box4': '2、寶箱分為珍愛寶箱和口令寶箱。寶箱發起後,會在直播間右下方生成圖標,並開啟3分鐘倒計時,倒計時結束前,滿足寶箱條件,倒計時結束後即可參與搶寶箱',
		'box5': '3、 當同一直播間內有多個寶箱時,每個寶箱按照倒計時剩餘時間依次展示',
		'box6': '4、限定時間內未搶完的寶箱,寶石將返回到發起人的賬戶中,具體可見寨信通知',
		'box7': '5、主播,觀眾發起的任意類型的寶箱,不增加富豪值,不增加螢火',
		'box8': '返回',
		'box9': '總計',
		'box10': '已領',
		'hot1': '熱門榜說明',
		'hot2': '什麼是熱門榜?',
		'hot3': '熱門榜用於展示當前所有在熱門頻道的直播間人氣,贈送禮物給心儀的主播、為主播點讚,在直播間與主播聊天互動都可以為主播增加人氣。',
		'hot4': '熱門榜計算規則',
		'hot5': '熱門榜按照主播的熱門值排名,想讓心儀的主播排名更靠前,快快為她增加熱門值吧!',
		'canhelp1': '提現幫助',
		'canhelp2': '1 怎樣查看我可以提現多少螢火',
		'canhelp3': '打開應用內螢火提現頁面可查看您當前可提現螢火數量。',
		'canhelp4': '2 怎樣提現螢火?',
		'canhelp5': '我們提供三種提現方式,请根據自身情況選擇',
		'canhelp6': '2.1 銀行卡提現:進入 我的->螢火提現->點擊現金提現->銀行卡提現->聯繫客服',
		'canhelp7': '2.2 Paypal 提現:進入 我的->螢火提現->點擊現金提現->Paypal 提現->聯繫客服',
		'canhelp12': '2.3 Payoneer 提現:進入 我的->螢火提現->點擊現金提現->Payoneer 提現->聯繫客服',
		'canhelp8': '3 萤火提現比例是多少?',
		'canhelp9': '1个萤火0.01人民币,最低提现金额不同币种不同要求。',
		'canhelp10': '4 為什麼可提現螢火頁面的邀請-直播收益和邀請充值收益未到賬?',
		'canhelp11': '為防止個別用戶利用規則違規獲利,邀請-直播收益和邀請-充值收益,一周審核一次(大約每週二左右發放上週的邀請收益),審核通過會發放到您賬戶,您可在可提現螢火頁面查詢是否收到。',
		'canhelp13': '更多關於提現問題, 可前往微信搜索公眾號“Firefly Live”關注咨詢',
		'cashreal0': '銀行卡提現<span style="color:#FF0000;margin-left:0.2rem">僅限中國銀行卡</span>',
		'cashreal1': 'Firefly提现',
		'cashreal2': '微信公眾號提現',
		'cashreal3': 'Paypal提現',
		'cashreal4': '下一步',
		'cashreal5': '為了保障您的提現賬號安全,請綁定您的手機號碼',
		'cashreal6': '取消',
		'cashreal7': '確定',
		'cashreal8': '提現金額',
		'cashreal9': '可提現餘額',
		'cashreal10': '全部提現',
		'cashreal11': '完成',
		'cashreal12': 'PayPal 提現匯率查詢',
		'cashreal13': '確定提現',
		'cashreal14': '美元',
		'cashreal15': '到賬號',
		'cashreal16': '嗎?',
		'cashreal17': '取消',
		'cashreal18': '確定',
		'cashreal19': '微信提現(您已經綁定微信)',
		'cashreal20': '說明:微信搜索并關注“Firefly 螢火蟲”',
		'cashreal21': '可進行提現,',
		'cashreal22': '微信公眾號提現指導>',
		'cashreal23': '去公眾號提現',
		'cashreal24': '您還沒有安裝微信',
		'cashreal25': '可提現金額不足20美元,無法提現!',
		'cashreal32': '可提現金額不足50美元,無法提現!',
		'cashreal26': '已轉換成最大可提現金額',
		'cashreal27': '提現金額必須為10的整數倍,已為你自動轉換',
		'cashreal28': '抱歉,按照規定一周內只允許申請一次',
		'cashreal29': '抱歉,单次最大提现额度为10万',
		'cashreal30': '未達到最低提現標準!',
		'cashreal31': '請輸入金額',
		'cashreal32': '支付寶提現',
		'paypal1': '設置Paypal提現',
		'paypal2': '請填寫您的Paypal郵箱',
		'paypal3': 'Paypal提現賬號僅能設置一次,一旦提交無法更改。確定設置以下提現賬號?',
		'paypal4': '取消',
		'paypal5': '確定',
		'paypal6': '綁定成功,即將跳轉提現',
		'paypal7': '該郵箱已經被綁定過,請重新輸入',
		'paypal8': '請輸入金額',
		'paypal9': '請輸入正確的郵箱',
		'paypal10': '完成',
		'paypal11': '有 PayPal 賬號,',
		'paypal12': '去註冊&gt',
		'paypal13': 'paypal註冊流程',
		'paypal14': '已達到最大金額',
		'paypal15': '提現金額',
		'paypal16': '請輸入金額',
		'paypal17': '可提現餘額$',
		'paypal18': '全部提現',
		'paypal19': 'PayPal 提現匯率查詢',
		'drawend1': '提現申請成功',
		'drawend2': '訂單號:',
		'drawend3': '返回螢火提現頁面',
		'drawend4': '您的提現申請已經提交到Firefly,Firefly會在5-7個工作日內處理。您可通過“螢火提現”->"提現記錄“查看提現進度',
		'drawend5': '選擇Paypal提現,平台不會收取任何手續費,完全按照您的提現金額打款,但是由於Paypal會收取一定手續費,所以您收到的金額可能和提現金額會有差異,paypal收取的手續費請',
		'drawend6': '查看Paypal提現匯率查詢',
		'wechat1': '設置微信提現',
		'wechat2': '請先綁定微信',
		'wechat3': '綁定的微信將成為你的提現賬戶',
		'wechat4': '綁定微信',
		'wechat5': '微信提現(您已經綁定微信)',
		'wechat6': '說明:微信搜索并關注“Firefly Live”',
		'wechat7': '可進行提現,<span class="go-wxHelp" style="color: #00D8A5;">微信公眾號提現指導>>',
		'wechat8': '去微信公眾號提現',
		'share1': 'FireFly邀請分享',
		'share2': 'Firefly Live-80%全網最高分成平台,天天看直播領幣;',
		'mdew1': '當前寶石',
		'help1': '親密度說明',
		'help2': '親密度怎樣計算?',
		'help3': '你和TA在聊天中,每產生消耗寶石或露水的行為即可增加親密度。',
		'help4': '露水瓶私信消息',
		'help5': '(使用道具,1條露水瓶消息=2親密度)',
		'help6': '私信消息',
		'help7': '(1條露水消息=100親密度)',
		'help8': '私信禮物',
		'help9': '(消耗1寶石=100親密度)',
		'help10': '直播間禮物',
		'help11': '(消耗1寶石=100親密度)',
		'help12': '聲訊/視訊通話',
		'help13': '(消耗1寶石=100親密度)',
		'help14': '注意:如果寶石/露水有任何形式返還的,將不會計入親密度中。直播間贈送露水不會計入到親密度中。',
		'help15': '親密度有什麼用?',
		'help16': '20000親密度可解鎖“親密"關係,成為親密關係後,私信免費',
		'help17': '5000親密度可解鎖聲訊/視訊功能',
		'help18': '2000親密度可解鎖私信功能',

		'news1': '轉發',
		'news2': '回復',
		'news3': '解鎖',
		'news4': '請輸入標題(5-30個字)',
		'news5': '請輸入正文,',
		'news6': '請勿發表違反您所在國家法律法規,以及侵害他人的內容。拒絕色情信息和涉及政治敏感性內容',
		'news7': '事項 ',
		'news8': '數量',
		'news9': '圖片評論',
		'news10': 'VIP46及以上用戶',
		'news11': '在VIP有效期內,可對貼文,圖片貼,視頻貼進行圖片評論',
		'news12': '标题字數不可少於5個字',
		'news13': '珍愛值',

		'play1': '遊戲未開始',
		'play2': '遊戲流局',
		'play3': '遊戲失敗',
		'play4': '遊戲勝利',
		'play5': '好友PK',
		'play6': '熱門PK',
		'play7': '全站PK',
		'play8': '活動PK',
		'play9': 'pk記錄',
		'play10': '遊戲記錄',
		'play11': '第',
		'play12': '輪淘汰',
		'play13': '幸運轉盤',
		'play14': '止步',
		'play15': '輪',
		'play16': '共',
		'turn1': '遊戲規則',
		'turn2': '1,幸運輪盤只在PK時由PK主播開啟。',
		'turn3': '2,幸運轉盤在開啟60秒內,至少有4人參與才能開始,否則將自動取消開啟。',
		'turn4': '3,參與遊戲需要預先扣除入場費,遊戲取消將退還,遊戲開始後概不退還。',
		'turn5': '4,遊戲開始後,最終留下的玩家獲得勝利,並贏取:本輪遊戲所有入場費-台費。',
		'turn6': '5,遊戲中只有獲勝玩家所代表的主播可獲得台費。',
		'turn7': '6,遊戲開始後,如果由於不可抗力,或者雙方主播下播或者PK已結束等原因導致的PK中止,遊戲仍然繼續',
		'turn8': '7,輪盤開啟和開始後的遊戲時間不計入直播獎勵活動的直播時長,具體以直播獎勵活動上的數據為準。',
		'turn9': '8,最終解釋權歸平台所有,和蘋果公司無關。',

		'newTurn1': '1,幸運輪盤在本聊天室開啟。',
		'newTurn2': '2,幸運轉盤至少有4人參與才能開始,否則將持續等待。',
		'newTurn3': '3,參與遊戲需要預先扣除入場費,遊戲取消或人為退出將退還,遊戲開始後無法退還。',
		'newTurn4': '4,遊戲開始後,最終留下的玩家獲得勝利,並贏取:本輪遊戲所有入場費-台費。',
		'newTurn5': '5,最終解釋權歸平台所有,和蘋果公司無關。',


		'profit1': '房間收益',
		'profit2': '直播間禮物',
		'profit3': '連麥禮物',
		'profit4': '連麥禮物分成',
		'profit5': '在',
		'profit6': '直播間',
		'profit7': '送給',
		'profit8': '送出',

		"upright1": "活動",
		"upright2": "客服",
		"upright3": "說明",
		"upright4": "記錄",
		"upright5": "分享",
		"upright6": "在線客服",
		"upright7": "Hi,請問有什麼可以幫到您?",
		"tRank1": '本週榜',
		"tRank2": '上週榜',
		"tRank3": '縂榜',
		"tRank4": '團成員',
		"tRank5": '團積分',
		'tRank6': '珍愛團榜單',
		'tRank7': '的積分貢獻榜',
		'tRank8': '暫未<br>上榜',
		'tRank9': '暫無數據',

		"aboutUs1": '用戶協議',
		"aboutUs2": '隱私協議',

		"drawNew1": '當前收益 (稅前)',
		"draw1": '螢火提現',
		"draw2": '纍計螢火',
		"draw3": '可提現螢火',
		"draw4": '現金提現',
		"draw5": '兌換寶石',
		"draw6": '溫馨提示:現金提現最低為¥100, 且必須為100的整數,<br>10000螢火=¥100',
		"draw7": '暫不支持此銀行的提現,請聯繫客服 或者設定其他提現方式',
		'draw8': '確定',
		'draw9': '未綁定手機號',
		'draw10': '請前往 Firefly APP->設置->',
		'draw11': '賬戶安全下點擊“手機號”進行綁定',
		'draw12': '取消',
		'draw13': '提現申請已提交,提現進度請',
		'draw14': '留意提現記錄或者寨信通知。',
		'draw15': '知道了',
		'draw16': '提現已設置成功',
		'draw17': '人民幣',
		'draw18': '美元',
		'draw19': '您已綁定微信提現,系統暫不支持微信提現,請聯繫運營或者客服人員進行處理。',
		'draw20': '確定提現',
		'draw21': '到賬號',
		'draw22': '支付寶',
		'draw23': '嗎?',
		'draw24': '設置提現方式',
		'draw25': '支付寶提現',
		'draw26': '最多人使用',
		'draw27': '銀行卡提現',
		'draw28': 'Paypal提現',
		'draw29': '可提現美元',
		'draw30': '下一步',
		'draw31': '請選擇你的銀行卡國家',
		'draw32': '中國大陸',
		'draw33': '其他國家或地區',
		'draw34': '請選擇提現方式',
		'draw35': '支付寶賬號就是您註冊支付寶時的手機號碼或者郵箱',
		'draw36': '提交',
		'draw37': '提現示意圖說明',
		'draw38': '查看支付寶賬號',
		'draw39': '1,打開支付寶APP,點擊「我的」',
		'draw40': '2,查看真實姓名 和支付寶賬戶',
		'draw41': '注意:支付寶賬戶就是你註冊支付寶時使用的手機號或者郵箱',
		'draw42': '支付寶提現賬號僅能設置一次,',
		'draw43': '一旦提交無法更改。',
		'draw44': '確定設置以下提現賬號?',
		'draw45': '真實姓名',
		'draw46': '請輸入您的支付寶賬號',
		'draw47': '請輸入您的支付寶真實姓名',
		'draw48': '銀行卡提現',
		'draw49': '請仔細核對信息,以免影響你的提現',
		'draw50': '支行和省市信息請咨詢你的開戶銀行獲取',
		'draw51': '请输入您的銀行卡賬號',
		'draw52': '開戶行:未识别',
		'draw53': '請輸入開戶人姓名',
		'draw54': '請輸入開戶支行(選填)',
		'draw55': '請輸入開戶行所在省(選填)',
		'draw56': '請輸入開戶行所在市(選填)',
		'draw57': '省',
		'draw58': '市',
		'draw59': '銀行卡提現賬號僅能設置一次',
		'draw60': '開戶人姓名',
		'draw61': '提現幣種',
		'draw62': '可提現金額不足,無法提現',
		'draw63': '可提現金額不足,無法提現',
		'draw64': '銀行卡',
		'draw65': '微信',
		'draw66': '請输入开户行(選填)',
		'draw67': '根據最新提現規則,需要補充您 的身份證號,才能提現',
		'draw68': '請填寫身份證號碼',
		'draw69': '此信息僅用於提現,我們將嚴格保護您的個 人信息',
		'draw70': '確認您的身份證號碼?',
		'draw71': '身份證號綁定成功!',
		'draw72': '请输入正确的身份证号',
		'draw73': '請選擇你的國家',
		'draw74': '請輸入你的身份證號',
		'draw75': '身份證號',
		'draw76': '銀行卡號',
		'draw77': '綁定銀行卡',
		'draw78': '確認提現信息',
		'draw79': '更多主播功能,請前往微信搜索"<span style="color:#B3B3B3">Firefly Live</span>"關注公眾號',
		'draw80': '提現',
		'draw81': '扣除螢火',
		'draw82': '含3%稅',
		'draw83': '提取後剩餘螢火',
		'draw84': '收款賬號',
		'draw85': '手機號碼',
		'draw86': '請輸入您的手機號碼',
		'draw87': '請輸入正確的手機號碼',
		'draw88': '請確認支付寶信息',
		'draw89': '賬戶姓名:',
		'draw90': '身份證號:',
		'draw91': '支付寶賬號:',
		'draw92': '確認提現信息',
		"draw93": '提現方式:支付寶',
		'draw94': '螢火',

		'payoneer1': '設置Payoneer提現',
		'payoneer2': '請填寫您的Payoneer郵箱',
		'payoneer3': 'Payoneer提現賬號僅能設置一次,一旦提交無法更改。確定設置以下提現賬號?',
		'payoneer4': '取消',
		'payoneer5': '確定',
		'payoneer6': '綁定成功,即將跳轉提現',
		'payoneer7': '該郵箱已經被綁定過,請重新輸入',
		'payoneer8': '請輸入金額',
		'payoneer9': '請輸入正確的郵箱',
		'payoneer10': '完成',
		'payoneer11': '有 Payoneer 賬號,',
		'payoneer12': '去註冊&gt',
		'payoneer13': 'Payoneer註冊流程',
		'payoneer14': '已達到最大金額',
		'payoneer15': '提現金額',
		'payoneer16': '請輸入金額',
		'payoneer17': '可提現餘額$',
		'payoneer18': '全部提現',
		'payoneer19': 'Payoneer 提現匯率查詢',
		'payoneer20': 'Payoneer提現',
		'payoneer21': '此次提現將消耗螢火:<span class="totalCost"></span>螢火<br>(含<span class="taxCost"></span>螢火的稅費)',
		'payoneer22': 'Payoneer提現説明',

		"newDraw1": "真實姓名",
		"newDraw2": "身份證號",
		"newDraw3": "支付寶賬號",
		"newDraw4": "绑定提现方式",
		"newDraw5": "是否确认绑定該提現方式?",
		"newDraw6": "查看",
		"newDraw7": "設為默認",
		"newDraw8": "解綁",
		"newDraw9": "解綁提現方式",
		"newDraw10": "提現方式",
		"newDraw11": "賬號:",
		"newDraw12": "是否確定解綁該提現方式",
		"newDraw13": "提现金额",
		"newDraw14": "扣除螢火(含3%稅)",
		"newDraw15": "提現後剩餘螢火",
		"newDraw16": "管理提現方式>",
		"newDraw17": "銀行卡(國際)",
		"newDraw18": "國家地區",
		"newDraw19": "提現須知:",
		"newDraw20": "1. 現金提現最低為¥100.00,提現金額必須為100的整數",
		"newDraw21": "2. 10000螢火 = ¥100.00",
		"newDraw22": "稅前收益:",
		"newDraw23": "請確認Paypal信息",
		"newDraw24": "收款機構",
		"newDraw25": "通知郵箱",
		"newDraw26": "提交",
		"newDraw27": "選擇國家地区",
		"newDraw28": "选择收款机构",
		"newDraw29": "每月限額9.3萬",
		"newDraw30": "已是默認提現方式",
		"newDraw31": "設置成功!",
		"newDraw32": "未綁定",
		"newDraw33": "銀行卡(大陸)",
		"newDraw34": "注冊流程",
		"newDraw35": "輸入您的郵箱地址",
		"newDraw36": "本月額度",
		"newDraw37": "已綁定",
		"newDraw38": "姓氏",
		"newDraw39": "名字",
		"newDraw40": "銀行",
		"newDraw41": "收款城市",
		"newDraw42": "收款地址",
		"newDraw43": "扣除螢火",
	},
	//英文
	{
		'paytitle': 'Recharge GEMs',
		'payrecord': 'Record',
		'visa': '../img/visa-En.png',
		'gash1': '../img/g-Point-En.png',
		'gash2': '../img/g-member-En.png',
		'gash3': '../img/g-credit-En.png',
		'gash4': '../img/g-phone-En.png',
		'alipay': '../img/alipay-En.png',
		'weipay': '../img/weipay-En.png',
		'molpay': '../img/molpay.png',
		'payatm': '../img/payatm.png',
		'gopay': '../img/gopay.png',
		'alfama': '../img/alfama.png',
		'paywallet': '../img/wallet.png',
		'next': 'Next step',
		'ques': '*If encounter recharge problems,please contact the customer service',
		'select': 'Please select recharge item',
		'wallet': 'Wallet Recharge',
		'card': 'Point Card Recharge',
		'mol': 'MOL Point Card recharge referring list',
		'moneyTitle': 'Obtain records',
		'moneyno': 'No Recharge record',
		'recordTitle': 'record',
		'recordTitle2': 'Fan value record',
		'recordno': 'No consumption record',
		'vipTitle': 'Purchase',
		'vipno': 'No purchase record yet',
		'rmbTitle': 'Total FIREs',
		'rmbLive': 'Live FIREs',
		'rmbVchat': 'V-Chat FIREs',
		'rmbIm': 'IM FIREs',
		'canTitle': 'FIREs withdrawal amount',
		'canCurrency': 'Currency select : ',
		'canFires': 'FIREs',
		'canGift': 'available gift reward',
		'canActivity': 'Activity bonus',
		'canGolden': 'Golden firefly gains',
		'canInvitation': 'Invitation-Live broadcast income',
		'canIncome': 'Invitation-recharge income',
		'canOther': 'Other income',
		'canTotal': 'Total withdrawal',
		'canCNY': 'CNY(1 FIREs = ---CNY)',
		'canNTD': 'NTD(1 FIREs = ---NTD)',
		'canUSD': 'USD(1 FIREs = ---USD) ',
		'canMYR': 'MYR(1 FIREs = ---MYR) ',
		'activeTitle': 'Activity Bonus record',
		'activeFires': 'FIREs bonus:',
		'activeno': 'No record',
		'takeRecord': 'Withdrawals record',
		'takeno': 'No withdrawal record',
		'takeStatus': 'Withdrawal status',
		'takeApplied': '<span class="color-ysq">1.Applied</span>,The user submitted the withdrawal request and waiting review',
		'takeReviewed': '<span class="color-ysh">2.Reviewed</span>,The operator has passed the application and waiting for the payment',
		'takePaid': '<span class="color-ydk">3.Paid</span>,Finance has been paid to the user account.',
		'takeReturned': '<span class="color-yfh">4.Returned</span>,The operator rejected the user withdrawal request, and the FIREs that was withdrawn will be returned to the user account',
		'takeAbnormal': '<span class="color-ybh">5.Abnormal</span>,If the user account setting is abnormal, the FIREs that was withdrawn will be returned to the user account',
		'takeGot': 'Got it',
		'takeObsolete': 'Obsolete',
		'takeAppliedTitle': 'Applied',
		'takeReconciled': 'Reconciled',
		'takePaidTitle': 'Paid',
		'takeReturnedTitle': 'Returned',
		'takeRejected': 'Withdrawal fail',
		'takeWeChat': 'WeChat withdrawal',
		'takeOrderNum': 'Order number',
		'takeWithdrawal': 'Withdrawal FIREs',
		'dewmoneyTitle': 'Obtain record',
		'dewmoneyGet': 'records',
		'dewmoneyno': 'No records',
		'dewconsumTitle': 'Consumption record',
		'dewconsumGet': 'record',
		'dewconsumno': 'No consumption record',
		'dewExchangeDew': 'Exchange dew',
		'dewExchangeRecord': 'record',
		'dewExchangeTitle1': 'Determine use',
		'dewExchangeTitle2': 'GEMs exchange',
		'dewExchangeTitle3': 'DEWs',
		'dewExchangeBtn': 'Define',
		'dewExchangeTitle4': 'Successful redemption!',
		'dewIndex': 'Redemption of golden firefly',
		'dewExchangeTitle5': 'DEWs exchange',
		'dewExchangeTitle6': 'Golden firefly',
		'dewExchangeTitle7': 'Transfer of gold fireflies',
		'dewExchangeTitle8': 'To redeem fireflies',
		'dewExchangeTitle9': 'GEMs',
		'dewExchangeTitle10': 'Redeem fireflies for ',
		'dewExchangeTitle11': 'Gold firefly remaining',
		'dewExchangeTitle12': 'redeem all',
		'dewExchangeTitle13': 'Confirm exchange',
		'dewExchangeTitle14': 'It has reached the maximum',
		'dewExchangeTitle15': 'No gold fireflies ~',
		'dewExchangeTitle16': 'Golds firefly exchange',
		'dewExchangeTitle17': 'Cancel',
		'vipmsg10': 'How to enjoy VIP privilege?',
		'vipmsg11': 'Purchasing VIP is the only way to enjoy the VIP privilege',
		'vipmsg12': 'Click"Me"--->"VIP Center "--->"Purchase VIP",after purchasing ,you will be a VIP member automatically',
		'vipmsg13': '2 After purchasing VIP ,your privilege will variate by your VIP level ',
		'vipmsg14': 'Check VIP privilege>>',
		'vipmsg15': '3 During VIP period ,if your VIP level increase ,therewith your privilege will upgrade automatically',
		'vipmsg16': 'VIP level standard',
		'vipmsg17': 'VIP level',
		'vipmsg18': 'Send GEMs',
		'vipmsg19': 'Firefly reserves the right of final explanation',
		'vipmsg20': 'Activate car',
		'vipmsg21': 'Acquisition conditions',
		'vipmsg22': 'VIP privileges',
		'vipmsg23': 'Driving owning cars  in the broadcast room',
		'vipmsg24': 'Note:If non-VIP,even though you own cars,you still can\'\t drive it in the broadcast room',
		'vipmsg25': 'Purchase VIP immediately',
		'vipmsg26': 'Check owning cars',
		'vipmsg27': 'No level limitation for chat',
		'vipmsg28': 'Being a VIP ,there is no level limitaion when you chat with friend',
		'vipmsg29': 'VIP badge',
		'vipmsg30': 'VIP badge shows your honorable status',
		'vipmsg31': 'Exclusive VIP profile frame',
		'vipmsg32': 'The VIP profile frame will be speacial because of you.',
		'vipmsg33': 'Exclusive Avatar frame',
		'vipmsg34': 'VIP users light up their avatar frame unlike anyone else',
		'vipmsg35': 'Exclusive namecard',
		'vipmsg36': 'Customized info card exclusivel for VIP,a symbol of honorable status',
		'vipmsg37': 'Special entry effect',
		'vipmsg38': 'VIP users enjoy grand entry effect into the room unlike anyone else,different VIP level have different entry effect.',
		'vipmsg39': 'No kicking ,no silencing',
		'vipmsg40': 'Prevent you from being banned to speak or removed from the room by anyone other than the VIP',
		'vipmsg41': 'Message background',
		'vipmsg42': 'Customized chat bubbles allow your messages stand our from the crowd',
		'vipmsg43': 'Invisible man',
		'vipmsg44': 'Set yourself invisible ,be a mysterious  VIP in the broadcast room',
		'vipmsg45': 'Go to "Me"->"Settings"->"Invisible man" ,set  yourself invisible ',
		'vipmsg46': 'Car customization',
		'vipmsg47': 'Exclusive unique car only for you in the whole platform,no one else can own that car',
		'vipmsg48': 'VIP level is upon VIP51 or above',
		'vipmsg49': 'VIP level is upon VIP11 or above',
		'vipmsg50': 'VIP level is upon VIP1 or above',
		'vipmsg51': 'VIP level is upon VIP21 or above',
		'vipmsg52': 'VIP level is upon VIP31 or above',
		'vipmsg53': 'VIP level is upon VIP41 or above',
		'vipmsg54': 'VIP level is upon VIP51 or above',
		'vipmsg55': 'VIP level is upon VIP41 or above',

		'vipmsg56': 'Chat Room',
		'vipmsg57': 'Acquisition conditions',
		'vipmsg58': 'VIP priviledges',
		'vipmsg59': 'Can switch  room as Chat Room after the live ends',
		"vipmsg60": 'Custom Gift',
		"vipmsg61": "VIP level is upon VIP48 or above",
		"vipmsg62": "Contact Custom Service to customize your exclusive gift within VIP validate period",
		'vipmsgImg': 'images/font_en.png',
		'gurad1': 'Guardian for',
		'gurad2': 'My guardian',
		'gurad3': 'This month',
		'gurad4': 'Last month',
		'gurad5': 'Become the gaurdian of you’re your favorate broadcaster Now!',
		'gurad6': 'It\'\s awesome!',
		'gurad7': 'Guardian point',
		'gurad8': 'Rank',
		'gurad9': 'Activate Guardian',
		'gurad10': 'No guardian yet.',
		'gurad11': 'Go live now to get one!',
		'gurad12': 'No date yet',
		'gurad13': 'Not on the list',
		'gurad14': 'Guardian Terms',
		'gurad15': 'How to become a guardian ?',
		'gurad16': '1 In the broadcast room,click the guardian seat ,you are supposed to spend GEMs to activate guardianship for the broadcaster.',
		'gurad17': '2 The duration for each time activating guardian is 30days you can add the guardian duration by activating guardian more times.',
		'gurad18': '3 A user can activate guardianship for more than one broadcaster .A broadcaster can have more than one guardians.',
		'gurad19': '4 Commision:the broadcaster share 50% commissions on GEMs spent with their guadians.',
		'gurad20': '5 Guardian point:Its calculated as per GEMs gift sent in the broadcast room during the guardian duration.<span>1 GEMs gift =1 Guardian point.</span>',
		'gurad21': 'Guardian privileges',
		'gurad22': 'Once activated ,guardian obtains guardian privileges in the room the broadcaster.',
		'gurad23': 'Terms',
		'gurad24': 'Guardian badge',
		'gurad25': 'It\'\s showed when you chat in the room.',
		'gurad26': 'Entry effect',
		'gurad27': 'Guardian badge will be showed as extra honor when you enter the room.',
		'gurad28': 'Exclusive gift',
		'gurad29': 'Only guardian has the right to send the gift ,other people don\'\t have right.',
		'gurad30': 'Guardian seat',
		'gurad31': 'Exclusive guardian seat which is showed at the first position in the room.',
		'gurad32': 'Rank up',
		'gurad33': 'The online seat has high priority than other users.',
		'gurad34': 'Being friends automatically',
		'gurad35': 'After activating guardian ,you and the broadcaster you guard will be friends automatically.',
		'gurad36': 'VIP30 days',
		'gurad37': 'Will obtaind VIP 30days as bonus.',
		'gurad38': 'Room ban comment ban immunity',
		'gurad39': 'The privilege is only valid in the broadcaster\'\s  room you guard.',
		'gurad40': 'Activation notification',
		'gurad41': 'Entire region will get the notification when you activate guardian.',
		'gurad42': 'What\'\s guardian',
		'gurad43': 'Guardianship symbolizes the broadcaster\'\s popularity.Use your GEMs to enable guardianship ,you will be the guarding for your favorate broadcaster.And you\'\ll receive the guadian badge and tons of privileges just for you.As long as your guardianship is avtive,you\'\ll be able to take care of your broadcaster with love.Guardian privileges are available as long as your guardianship is valid.',
		'gurad44': 'NOTE:guardian privileges only apply in the chat room of the guarded broadcaster.',
		'gurad45': 'Guardian commission',
		'gurad46': 'remaining',
		'gurad47': 'day',
		'gurad48': 'rank:',
		'dew1': 'My DEWs',
		'dew2': 'DEWs and GEMs can be exchenged (1 GEMs =100 DEWs)',
		'dew3': 'All in',
		'dew4': 'Buy in',
		'dew5': 'Sell out',
		'dew6': 'left after buying in',
		'dew7': 'left after selling out',
		'dew8': 'Sure',
		'dew9': 'Sure',
		'dew10': 'GEMs insufficient,failed to buy in',
		'dew11': 'DEWs insufficient,failed to sell out',
		'dew12': 'GEMs Insufficient',
		'dew13': 'GEMs insufficient,failed to buy in',
		'dew14': 'Cancel',
		'dew15': 'To recharge',
		'dew16': 'Buy all',
		'dew17': 'Sell all',
		'dew18': 'GEMs',
		'dew19': 'redeem',
		'dew20': 'Buy',
		'dew21': 'Sell',
		'dew22': 'record',
		'dew23': 'My DEWs',
		'dew24': 'Cancel',
		'dew25': 'Define',
		'dew26': 'Buy in success',
		'dew27': 'DEWs insufficient,please try again',
		'dew28': 'The function has been terminated ,please update to v5.3.0 version',
		'dew29': 'Sell out success',
		'dew30': 'Current version is too low ,please update to latest version',
		'dew31': 'Please recharge GEMs firstly',
		'dew32': 'GEMs insufficient,failed to buy in',
		'dew33': 'DEWs insufficient,failed to sell out',
		'dew34': 'Will consume',
		'dew35': 'Will get',
		'share1': 'Invitation Bonus',
		'income1': 'Room Income',
		'income2': 'Activity Income',
		'income3': 'Invite Income',
		'income4': 'Video Income',
		'income5': 'Guard Income',
		'income6': 'Other Income',
		'income7': 'Today',
		'income8': 'This week',
		'income9': 'Last week',
		'income10': 'This month',
		'income11': 'Last month',
		'income12': 'Custom',
		'income13': 'Select date',
		'income14': 'No income data yet',
		'income15': 'Call duration',
		'income16': 'gift duration',
		'income17': 'call',
		'income18': 'min',
		'income19': 's',
		'income20': 'year',
		'income21': 'month',
		'income22': 'day',
		'income23': 'Total FIREs(Room FIREs ,Video FIREs are excluded)only calculate the  data  after 2020/1/1 00:00',
		'income24': 'Sure',
		'income25': 'Cancel',
		'income26': 'IM Income',
		'backpack1': 'Display  records only for latest one month',
		'backpack2': 'No obtaining  record yet',
		'backpack3': 'No consuming record yet',
		'backpack4': 'Obtaining record',
		'backpack5': 'Consuming record',
		'box1': 'No record yet',
		'box2': 'Lucky Box rules',
		'box3': '1、Both broadcasters and sudiences can sent out Lucky Box in the live room.People who meet the requirement  are qualified to open the Lucky Box  to grab get reward .',
		'box4': '2、There are Fans Club Box and Message Box.After the box is sent ,there wil be a box icon in the right bottom of the live room which will be shown for 3 minutes .Try to meet the requirement of the box in 3 minutes as to open the box as soon as possible .',
		'box5': '3、 When there are many boxes in the same live room, overdue box   will be shown as priority',
		'box6': '4、If there are diamonds left in the box after fixed time,the diamond will be returned to the account of the person who sent the box.',
		'box7': '5、Box don\'\t increase the wealth value ,dont increase the income of the broadcasters in the live room.',
		'box8': 'Back',
		'box9': 'Total',
		'box10': 'Received',
		'hot1': 'Top list description',
		'hot2': 'What is a hot list?',
		'hot3': 'The Hot List is used to show the current popularity of all the live channels in the popular channels. Give gifts to the favorite anchors and like the anchor. Chatting with the anchor in the live room can increase the popularity of the anchor.',
		'hot4': 'Top list calculation rules',
		'hot5': 'The hot list is ranked according to the popular value of the anchor. If you want to make the favorite anchor rank higher, increase her popular value quickly!',
		'canhelp1': 'Withdrawal Guide',
		'canhelp2': '1. Check how much FIREs you can withdraw?',
		'canhelp3': 'Open the in-app FIRE withdrawal page to check the current amount of FIREs you can withdraw.',
		'canhelp4': '2. How to withdraw the FIREs?',
		'canhelp5': 'We provide three withdrawal methods',
		'canhelp6': '2.1 Bank card transfer: Enter My -> FIRE Withdrawal -> Click Cash Withdrawal -> Bank Card Withdrawal -> Contact Customer Service',
		'canhelp7': '2.2 Paypal: Enter My -> FIRE Withdrawal ->Click Cash Withdrawal->Paypal ->Contact Customer Service',
		'canhelp12': '2.3 Payoneer: Enter My -> FIRE Withdrawal ->Click Cash Withdrawal->Payoneer->Contact Customer Service',
		'canhelp8': '3.What is the withdrawal ratio of FIRE?',
		'canhelp9': '1 FIRE = 0.01 CNY, the minimum withdrawal amount according to the withdrawal method.',
		'canhelp10': '4.Why the income of invitation from the FIRE withdrawal page that have not received in the account?',
		'canhelp11': 'For security and fairness, the income generated by the invitation will be reviewed and distributed once a week(no more than Wednesday). At that time, you can check whether you have received it on the FIRE withdrawal page.',
		'canhelp13': 'For more information about cash withdrawal, you can open WeChat app to search the public account "Firefly Live" to follow and consult.',
		'cashreal0': 'Bank card withdrawals<span style="color:#FF0000;margin-left:0.2rem">Chinese Bank Card Only</span>',
		'cashreal1': 'Firefly withdrawal',
		'cashreal2': 'WeChat withdrawal',
		'cashreal3': 'Paypal withdrawal',
		'cashreal4': 'Next',
		'cashreal5': 'Please bind your phone number for your account safety',
		'cashreal6': 'Cancel',
		'cashreal7': 'Sure',
		'cashreal8': 'Cash withdral',

		'cashreal9': 'Cash withdral balance',
		'cashreal10': 'Withdraw all',
		'cashreal11': 'Done',
		'cashreal12': 'Paypal withdrawal currency',
		'cashreal13': 'Are you sure to withdraw',
		'cashreal14': 'USD',
		'cashreal15': 'to account ',
		'cashreal16': '?',
		'cashreal17': 'Cancel',
		'cashreal18': 'Sure',
		'cashreal19': 'WeChat withdrawal (already bind WeChat)',
		'cashreal20': 'Note: Search and follow "Firefly 螢火蟲"',
		'cashreal21': 'in WeChat to withdraw ,',
		'cashreal22': ' ',
		'cashreal23': 'Withdraw with WeChat official account',
		'cashreal24': 'You have not installed WeChat yet',
		'cashreal25': 'The amount of cash is less than $20 and cannot be withdrawn!',
		'cashreal32': 'The amount of cash is less than $50 and cannot be withdrawn!',
		'cashreal26': 'Converted to maximum cashable amount',
		'cashreal27': 'The amount of cash must be an integer multiple of 10, which has been automatically converted for you.',
		'cashreal28': 'Sorry, only one application is allowed within one week as required.',
		'cashreal29': 'Sorry, the maximum withdrawal amount is 100,000.',
		'cashreal30': 'Did not meet the minimum withdrawal criteria!',
		'cashreal31': 'Please enter the amount',
		'cashreal32': 'Alipay withdrawal',
		'paypal1': 'Set up Paypal withdrawal',
		'paypal2': 'Please fill in your Paypal email',
		'paypal3': 'Paypal withdrawal account can only be set once and cannot be changed once submitted. Are you sure to set up the following withdrawal account?',
		'paypal4': 'cancel',
		'paypal5': 'determine',
		'paypal6': 'The binding is successful, and the withdrawal will be withdrawn soon',
		'paypal7': 'The mailbox has already been bound, please re-enter',
		'paypal8': 'Please enter the amount',
		'paypal9': 'please enter your vaild email',
		'paypal10': 'carry out',
		'paypal11': 'Have a PayPal account,',
		'paypal12': 'Go to register&gt',
		'paypal13': 'Paypal registration process',
		'paypal14': 'The maximum amount has been reached',
		'paypal15': 'Withdrawal Amount',
		'paypal16': 'Please enter the amount',
		'paypal17': 'Withdrawable balance $',
		'paypal18': 'Withdraw all',
		'paypal19': 'PayPal withdrawal exchange rate query',
		'drawend1': 'Withdrawals record',
		'drawend2': 'Order number:',
		'drawend3': 'Return to the Firefly withdrawal page',
		'drawend4': 'Your withdrawal request has been submitted to Firefly and will process it within 5-7 business days. You can view the withdrawal progress by "Withdrawal" -> "Withdrawal record"',
		'drawend5': 'Note:For Paypal withdrawal,Firefly Live don\'\t charge any transaction fee .However ,since Paypal will charge a certain transaction fee, the real money you  received may differ from reqeusted withdrawal money.For more  details ,',
		'drawend6': 'you can check in the Paypal official website.',
		'wechat1': 'Set WeChat withdrawal',
		'wechat2': 'Please bind WeChat first',
		'wechat3': 'The bound WeChat will become your withdrawal account',
		'wechat4': 'Bind WeChat',
		'wechat5': 'Wechat withdrawal (already bind WeChat)',
		'wechat6': 'Note: Search and follow "Firefly Live"',
		'wechat7': 'in WeChat to withdraw',
		'wechat8': 'in WeChat to withdraw',
		'share1': 'FireFly invites to share',
		'share2': 'Firefly Live-80% of the entire network is divided into the highest platform, watch live streaming coins every day;',
		'mdew1': 'Current GEMs',
		'help1': 'Intimacy description',
		'help2': 'How to calculate Intimacy?',
		'help3': 'When both of you interact ,Intimacy will increase as per GEMs or DEWs consumed',
		'help4': 'Bottle message',
		'help5': '(Props message,1 bottle message=2 Intimacy)',
		'help6': 'Private message',
		'help7': '(1 private message of DEWs =100 Intimacy)',
		'help8': 'Private gifts',
		'help9': '(1 GEM gift=100 Intimacy)',
		'help10': 'Broadcast room gifts',
		'help11': '(1 GEM gift=100 Intimacy)',
		'help12': 'Video/voice call',
		'help13': '(1 GEM call=100 Intimacy)',
		'help14': 'Note:If GEMs/DEWs are returned in whatever ways,the GEMS/DEWs won\'\t be counted as Intimacy.DEWs gifts sent in the broadcast room won\'\t be counted as Intimacy',
		'help15': 'What is  Intimacy used for?',
		'help16': '20000 Intimacy can unlock Intimacy Friend .Private message will be free after being Intimacy Friend',
		'help17': '5000 Intimacy can unlock voice/video call',
		'help18': '5000 Intimacy can unlock private message function',

		'news1': 'Forward',
		'news2': 'Reply',
		'news3': 'Unlock',
		'news4': 'Please input the title (5-30 characters)',
		'news5': 'Please input the content,',
		'news6': 'Contents that violate the laws and regulations of your country or  infringe on others are forbidden to post. Pornographic information and politically sensitive content are forbidden to post.',
		'news7': 'Items',
		'news8': 'Qty',
		'news9': 'Picture comments',
		'news10': 'VIP level is upon VIP41 or above',
		'news11': 'Can comment on the posts with picture',
		'news12': 'Title should have 5 characters at least',
		'news13': 'Fan value',

		'play1': 'Game hasn\'\t started',
		'play2': 'Game flow',
		'play3': 'Game fail',
		'play4': 'Game win',
		'play5': 'Firends PK',
		'play6': 'Hot PK',
		'play7': 'World PK',
		'play8': 'Activity PK',
		'play9': 'PK record',
		'play10': 'Game record',
		'play11': 'Out in round',
		'play12': '',
		'play13': 'Lucky Wheel',
		'play14': 'Stopped in',
		'play15': 'round',
		'play16': 'total',
		'turn1': 'Game rules',
		'turn2': '1 The lucky wheel can only be started by the broadcaster in the PK',
		'turn3': '2 4 participants is required to start the game ,or the game will be cancelled',
		'turn4': '3 Entrance fee will be deducted  when take part in the game.When the game starts ,the entrance fee won\'\t be returned',
		'turn5': '4 When game starts, final player will be the winner and win the awards',
		'turn6': '5 Only the broadcaster whose player win the game can get the bonus',
		'turn7': '6 When game starts,no matter what happens ,the game will go on',
		'turn8': '7 Game period of "The Lucky Wheel" is not involved in the "live broadcast reward event" activity.',
		'turn9': '8 All rights reserved by the platform',

		'newTurn1': '1. Lucky Wheel is opened in this chat room.',
		'newTurn2': '2. Lucky Wheel can only start with at least 4 people, otherwise it will continue to wait.',
		'newTurn3': '3. Lucky Wheel requires pre-deduction of the entrance fee. The game cancellation or manual quit will be refunded, and it cannot be refunded after the game starts.',
		'newTurn4': '4. After the game starts, the final player who stays wins all entrance fees for this round of the game.',
		'newTurn5': '5. The final interpretation right belongs to the platform and has nothing to do with Apple Inc.',

		'profit1': 'Room income',
		'profit2': 'Broadcast gift',
		'profit3': 'Mic gift',
		'profit4': 'Mic gift income share',
		'profit5': ' in ',
		'profit6': ' room',
		'profit7': ' send ',
		'profit8': 'send out',

		"upright1": "Activity",
		"upright2": "Online service",
		"upright3": "Rules",
		"upright4": "Record",
		"upright5": "Share",
		"upright6": "Customer service",
		"upright7": "Hi, what can I do for you?",
		"tRank1": 'This Week',
		"tRank2": 'Last Week',
		"tRank3": 'Total',
		"tRank4": 'Members',
		"tRank5": 'Group Points',
		'tRank6': 'Group points contributor',
		'tRank7': "'s points contributor",
		'tRank8': "No<br>Rank",
		'tRank9': 'No Data',
		"aboutUs1": 'User Agreement',
		"aboutUs2": 'Privacy Agreement',


		"drawNew1": 'Current income (pre-tax)',
		"draw1": 'Firefly withdrawal',
		"draw2": 'Total FIREs',
		"draw3": 'Currently available FIREs',
		"draw4": 'Cash withdrawal',
		"draw5": 'Exchange GEMs',
		"draw6": 'The minimum amount of cash is ¥100, and must be an integer of 100.<br> 10000FIREs = ¥100.',

		'draw7': 'This kind of bank withdrawal is not supported,please contact customer service or set other withdrawal method.',
		'draw8': 'Sure',
		'draw9': 'Not binded Phone numner yet',
		'draw10': 'Goto  "personal"->Settings->',
		'draw11': 'click "Binding phone number" to bind',
		'draw12': 'Cancel',
		'draw13': 'Withdrawal application has been summit',
		'draw14': 'please note the withdrawal progress via Notice',
		'draw15': 'Got it',
		'draw16': 'Withdrawal method set successfully',
		'draw17': 'RMB',
		'draw18': 'USD',
		'draw19': 'You have had a Wechat withdrawal account ,please contact customer service to deal with',
		'draw20': 'Sure to withdraw',
		'draw21': 'to account',
		'draw22': 'Alipay',
		'draw23': '?',
		'draw24': 'Set withdrawal method',
		'draw25': 'Alipay withdrawal',
		'draw26': 'Most peolple select this',
		'draw27': 'Bank withdrawal',
		'draw28': 'Paypal withdrawal',
		'draw29': 'Available withdrawal dollars',
		'draw30': 'Next',
		'draw31': 'Please select the country of your bank',
		'draw32': 'China Mainland',
		'draw33': 'Other countries or regions',
		'draw34': 'Please select withdrawal method',
		'draw35': 'Alipay account is the phone number or email provided  while you registered Alipay',
		'draw36': 'Summit',
		'draw37': 'Example',
		'draw38': 'Check Alipay account',
		'draw39': '1 Open Alipay application ,tap 「Mine」',
		'draw40': '2 Check your real name and Alipay account',
		'draw41': 'Note:Alipay account is the phone number or email provided  while you registered Alipay',
		'draw42': 'Alipay withdrawal account can only be set for one time,',
		'draw43': 'Once summit ,it can\'\t be changed  any more.。',
		'draw44': 'Sure to set bellow withdrawal account?',
		'draw45': 'Real name',
		'draw46': 'Please input your Alipay account',
		'draw47': 'Please input your real name',
		'draw48': 'Bank card withdrawals',
		'draw49': 'Please check the details carefully to avoid affecting  your withdrawal',
		'draw50': 'As for bank subbranch and province/city information,please consult your bank',
		'draw51': 'Input your bank card number',
		'draw52': 'bank:not indentified',
		'draw53': 'The real name of the bank account',
		'draw54': 'Bank subbranch(optional)',
		'draw55': 'Province of the bank(optional)',
		'draw56': 'City of the bank(optional)',
		'draw57': 'Province',
		'draw58': 'City',
		'draw59': 'Bank withdrawal account can only be set for one time',
		'draw60': 'Real name of the bank account',
		'draw61': 'Withdrawal currency',
		'draw62': 'Insufficient withdrawable amount, unable to withdraw',
		'draw63': 'Insufficient withdrawable amount, unable to withdraw',
		'draw64': 'Bank',
		'draw65': 'WeChat',
		'draw66': 'Bank name(optional)',
		'draw67': 'As per latest rules,your identify certification is required to withdraw',
		'draw68': 'Please fill in the identify number',
		'draw69': 'The information is used for withdrawal only,your information will be protected strictly',
		'draw70': 'Confirm your identify number',
		'draw71': 'Identify number bound successfuly',
		'draw72': 'Please fill in right identify number',
		'draw73': 'Please choose your country',
		'draw74': 'Please fill in your identify number',
		'draw75': 'ID card',
		'draw76': 'Bank number',
		'draw77': 'Bind Bank Card',
		'draw78': 'Confirm Withdrawal Information',
		'draw79': 'Go to WeChat and follow Official Account "<span style="color:#B3B3B3">Firefly Live</span>" for more broadcasters features.',
		'draw80': 'Withdraw',
		'draw81': 'Deduct',
		'draw82': '3% tax included',
		'draw83': 'Remaining FIREs',
		'draw84': 'Receiver account',
		'draw85': 'Tel number',
		'draw86': 'input your phone number',
		'draw87': 'Check your Tel number please',
		'draw88': 'Please check your Alipay information',
		'draw89': 'Account Name:',
		'draw90': 'ID Number:',
		'draw91': 'Alipay Account:',
		'draw92': 'Please check your Alipay information',
		"draw93": 'Withdrawal Method:AliPay',
		'draw94': 'FIREs',

		'payoneer1': 'Set up Payoneer withdrawal',
		'payoneer2': 'Please fill in your Payoneer email',
		'payoneer3': 'Payoneer withdrawal account can only be set once and cannot be changed once submitted. Are you sure to set up the following withdrawal account?',
		'payoneer4': 'cancel',
		'payoneer5': 'determine',
		'payoneer6': 'The binding is successful, and the withdrawal will be withdrawn soon',
		'payoneer7': 'The mailbox has already been bound, please re-enter',
		'payoneer8': 'Please enter the amount',
		'payoneer9': 'please enter your vaild email',
		'payoneer10': 'carry out',
		'payoneer11': 'Have a Payoneer account,',
		'payoneer12': 'Go to register&gt',
		'payoneer13': 'Payoneer registration process',
		'payoneer14': 'The maximum amount has been reached',
		'payoneer15': 'Withdrawal Amount',
		'payoneer16': 'Please enter the amount',
		'payoneer17': 'Withdrawable balance $',
		'payoneer18': 'Withdraw all',
		'payoneer19': 'Payoneer withdrawal exchange rate query',
		'payoneer20': 'Payoneer withdrawal',
		'payoneer21': 'The withdrawal will consume :<span class="totalCost"></span> FIREs(Containing tax of <span class="taxCost"></span> FIREs)',
		'payoneer22': 'Payoneer Withdrawl Description',

		"newDraw1": "name",
		"newDraw2": "Identity number",
		"newDraw3": "Alipay account",
		"newDraw4": "Bind withdrawal method",
		"newDraw5": "Are you sure to bind this withdrawal method?",
		"newDraw6": "Check",
		"newDraw7": "set as Default",
		"newDraw8": "unbind",
		"newDraw9": "Unbinding withdrawal method",
		"newDraw10": "Withdrawal method",
		"newDraw11": "account:",
		"newDraw12": "Are you sure to unbind this withdrawal method?",
		"newDraw13": "Withdrawal Amount",
		"newDraw14": "Deduct FIREs (including 3% tax)",
		"newDraw15": "Remaining FIREs after withdrawal",
		"newDraw16": "Manage withdrawal methods>",
		"newDraw17": "Bank Card (International)",
		"newDraw18": "country / region",
		"newDraw19": "Withdrawal instructions:",
		"newDraw20": "1. The minimum cash withdrawal amount is ¥100.00, and the cash withdrawal amount must be an integer of 100",
		"newDraw21": "2. 10,000 FIREs = ¥100.00",
		"newDraw22": "Earnings before tax:",
		"newDraw23": "Please confirm Paypal information",
		"newDraw24": "Collection agency",
		"newDraw25": "Notification email",
		"newDraw26": "Submit",
		"newDraw27": "Select country",
		"newDraw28": "Choose a payment agency",
		"newDraw29": "Monthly limit 93,000",
		"newDraw30": "It is the default withdrawal method",
		"newDraw31": "Setup successful!",
		"newDraw32": "Unbound",
		"newDraw33": "Bank Card(China mainland)",
		"newDraw34": "Registration process",
		"newDraw35": "Enter your email address",
		"newDraw36": " limited monthly",
		"newDraw37": "Bound",
		"newDraw38": "姓氏",
		"newDraw39": "名字",
		"newDraw40": "銀行",
		"newDraw41": "收款城市",
		"newDraw42": "收款地址",
		"newDraw43": "Deduct FIREs",

	},
	//阿语
	{
		'paytitle': 'الشحن',
		'payrecord': 'تسجيل الشحن',
		'visa': '../img/visa.png',
		'gash1': '../img/g-Point.png',
		'gash2': '../img/g-member.png',
		'gash3': '../img/g-credit.png',
		'gash4': '../img/g-phone.png',
		'alipay': '../img/alipay.png',
		'weipay': '../img/weipay.png',
		'molpay': '../img/molpay.png',
		'payatm': '../img/payatm.png',
		'gopay': '../img/gopay.png',
		'alfama': '../img/alfama.png',
		'paywallet': '../img/wallet.png',
		'next': 'الخطوة التالية',
		'ques': 'اذا توجد أي مشكلة، تتصل بخدمة العملاء',
		'select': 'الرجاء اختيار مبلغ الشحن',
		'wallet': 'شحن المحفظة',
		'card': 'شحن Point Card',
		'mol': 'تفاصيل الشحن لبطاقة MOL Point',
		'moneyTitle': 'تسجيل الحصول',
		'moneyno': 'لا يوجد تسجيل الحصول',
		'recordTitle': 'تسجيل الاستهلاك',
		'recordTitle2': 'Fan value record',
		'recordno': 'لا يوجد تسجيل الاستهلاك',
		'vipTitle': 'تسجيل الشحن',
		'vipno': 'لا يوجد تسجيل الشحن',
		'rmbTitle': 'جميع FIREs',
		'rmbLive': 'لايف FIREs',
		'rmbVchat': 'مكالمة FIREs',
		'rmbIm': 'دردشة FIREs',
		'canTitle': 'الFIREs المتاحة',
		'canCurrency': 'اختر العملة : ',
		'canFires': 'FIREs',
		'canGift': 'مكافأة هدية المتاحة',
		'canActivity': 'مكافأة النشاط',
		'canGolden': 'دخل Golden firefly',
		'canInvitation': 'دخل دعوة المذيع',
		'canIncome': 'دخل الدعوة المستخدم',
		'canOther': 'دخل',
		'canTotal': 'جميع السحب',
		'canCNY': 'CNY(1 FIREs = ---CNY)',
		'canNTD': 'NTD(1 FIREs = ---NTD)',
		'canUSD': 'USD(1 FIREs = ---USD) ',
		'canMYR': 'MYR(1 FIREs = ---MYR)',
		'activeTitle': 'تسجيل مكافأة النشاط',
		'activeFires': 'مكافأة FIREs',
		'activeno': 'لا يوجد تسجيل مكافأة النشاط',
		'takeRecord': 'تسجيل السحب',
		'takeno': 'لا يوجد تسجيل السحب',
		'takeStatus': 'تفاصيل حالة السحب',
		"takeApplied": "1.تم التقديم، قدم المستخدم طلب السحب وانتظار المراجعة",
		"takeReviewed": "2. تم المراجعة، تم مراجعة  طلب السحب وفي انتظار الدفع",
		"takePaid": "3. تم الدفع، تم دفع المبلغ لحساب المستخدم.",
		"takeReturned": "4. تم إعادة، رفض العامل طلب سحب المستخدم وسيتم إرجاع FIREs لسحب إلى حساب المستخدم",
		"takeAbnormal": "5. حالة غير طبيعية، إذا كان إعداد حساب المستخدم غير طبيعي، فسيتم إرجاع FIREs لسحب إلى حساب المستخدم",
		'takeGot': 'أعرف',
		'takeObsolete': 'تم الإلغاء',
		'takeAppliedTitle': 'تم طلب',
		'takeReconciled': 'تم تحقق',
		'takePaidTitle': 'تم الدفع',
		'takeReturnedTitle': 'تم إعادة',
		'takeRejected': ' فشل في السحب',
		'takeWeChat': 'سحب إلى Wechat',
		'takeOrderNum': 'رقم الطلب',
		'takeWithdrawal': 'سحب FIREs',
		'dewmoneyTitle': 'تسجيل الحصول',
		'dewmoneyGet': 'الحصول',
		'dewmoneyno': 'لا يوجد تسجيل الحصول',
		'dewconsumTitle': 'تسجيل الاستهلاك',
		'dewconsumGet': 'استهلاك',
		'dewconsumno': 'لا يوجد تسجيل الاستهلاك',
		'dewExchangeDew': 'تحويل DEWs',
		'dewExchangeRecord': 'تسجيل',
		'dewExchangeTitle1': 'هل أنت متأكد من',
		'dewExchangeTitle2': 'تحويل GEMs إلى',
		'dewExchangeTitle3': 'DEWs',
		'dewExchangeBtn': 'تم',
		'dewExchangeTitle4': 'تم تحويل بنجاح',
		'dewIndex': 'تحويل Golden Firefly',
		'dewExchangeTitle5': 'تحويل DEWs',
		'dewExchangeTitle6': 'Golden Firefly',
		'dewExchangeTitle7': 'نقل Golden Firefly',
		'dewExchangeTitle8': 'انتقل إلى تحويل Fireflies',
		'dewExchangeTitle9': 'GEMs',
		'dewExchangeTitle10': 'تحويل Fireflies إلى',
		'dewExchangeTitle11': 'باقي على Golden Firefly',
		'dewExchangeTitle12': 'تحويل الجميع',
		'dewExchangeTitle13': 'تأكيد التحويل',
		'dewExchangeTitle14': 'يصل إلى حد أقصى',
		'dewExchangeTitle15': 'لا يوجد Golden Firefly~',
		'dewExchangeTitle16': 'تحويل Golden Firefly',
		'dewExchangeTitle17': 'إلغاء',
		"vipmsg10": "كيف تتمتع بامتيازات VIP؟",
		"vipmsg11": "شراء VIP هو الطريقة الوحيدة للاستمتاع بامتياز VIP",
		"vipmsg12": "بعد شراء VIP، ستكون عضوًا VIP تلقائيًا",
		"vipmsg13": "2 بعد شراء VIP، سيفعل امتيازك بالنسبة الى مستوى VIP الخاص بك",
		"vipmsg14": "مراجعة امتيازات VIP>>",
		"vipmsg15": "3 خلال فترة VIP، سيتم ترقية امتيازك تلقائيًا اذا زاد مستوى VIP الخاص بك",
		"vipmsg16": "معيار مستوى VIP",
		"vipmsg17": "مستوى VIP",
		"vipmsg18": "ارسل GEMs",
		"vipmsg19": "يحتفظ Firefly بحق التفسير النهائي",
		"vipmsg20": "تفعيل السيارة",
		"vipmsg21": "شروط التملك",
		"vipmsg22": "مزايا خاص VIP",
		"vipmsg23": "قيادة السيارة الذي تمتلكها في غرفة البث",
		"vipmsg24": "ملاحظة: إذا كنت من غير VIP، مع أنك تمتلك سيارات، فلا يزال بإمكانك \"\قيادتها\"\ في غرفة البث",
		"vipmsg25": "اشتراك VIP فوريا",
		"vipmsg26": "مراجعة سيارة خاصة بي",
		"vipmsg27": "دردشة خاصة بدون قيد",
		"vipmsg28": "كن VIP، ليس هناك حد المستوى عند الدردشة مع صديق",
		"vipmsg29": "وسام VIP",
		"vipmsg30": "يعرض وسام VIP وضعك المشرف",
		"vipmsg31": "إطار ملف المذيع الفاخر",
		"vipmsg32": "سيكون إطار ملف تعريف VIP خاصًا به",
		"vipmsg33": "إطار صورة فريدة",
		"vipmsg34": "سيكون إطار أفتار VIP ملون ويختلف بالأخر",
		"vipmsg35": "بطاقة بينات شخصية فاخرة",
		"vipmsg36": "بطاقة بينات شخصية فاخرة لVIP، رمز الوضع المشرف",
		"vipmsg37": "موّثرات دخول غرفة البث",
		"vipmsg38": "يتمتع VIP بموّثرات دخول غرفة البث عند أن يدخل، ويوجد مستوى VIP مختلف موّثر مختلف",
		"vipmsg39": "منع الطرد وفك حظر الكلام",
		"vipmsg40": "لا أحد يمكن أن يقم بطردك أوفك حظر كلامك إلا أن يقم المذيع به",
		"vipmsg41": "خلفية الرسالة",
		"vipmsg42": "توجد خلفية الرسالة الملونة عند الدردشة وهو يتميز عن الباقي",
		"vipmsg43": "رجل غير مرئي",
		"vipmsg44": "تعيين نفسك كرجل غير مرئي عند دخول غرفة البث، كن شخصية غامضة في غرفة البث",
		"vipmsg45": "انتقل إلى \"\أنا\"\ -> \"\الإعدادات\"\ -> \"\رجل غير مرئي\"\ وتعيينه",
		"vipmsg46": "تخصيص السيارة الخاصة بك",
		"vipmsg47": "اذا تم تخصيص السيارة الخاصة بك، فهي فريدة في جميع البث",
		"vipmsg48": "مستوى VIP على VIP51 أو أعلى",
		"vipmsg49": "مستوى VIP على VIP11 أو أعلى",
		"vipmsg50": "مستوى VIP على VIP1 أو أعلى",
		"vipmsg51": "مستوى VIP على VIP21 أو أعلى",
		"vipmsg52": "مستوى VIP على VIP31 أو أعلى",
		"vipmsg53": "مستوى VIP على VIP41 أو أعلى",
		"vipmsg54": "مستوى VIP على VIP51 أو أعلى",
		"vipmsg55": "مستوى VIP على VIP41 أو أعلى",

		'vipmsg56': 'Chat Room',
		'vipmsg57': 'Acquisition conditions',
		'vipmsg58': 'VIP priviledges',
		'vipmsg59': 'Can switch  room as Chat Room after the live ends',
		"vipmsg60": 'Custom Gift',
		"vipmsg61": "VIP level is upon VIP48 or above",
		"vipmsg62": "Contact Custom Service to customize your exclusive gift within VIP validate period",
		'vipmsgImg': 'images/font_en.png',
		'gurad1': 'المحروس',
		'gurad2': 'الحارس الخاص بي',
		'gurad3': 'الشهر الحالي',
		'gurad4': 'الشهر السابق',
		'gurad5': 'كن حارس خاص بمذيع من تحبه.',
		'gurad6': 'أحسنت!',
		'gurad7': 'سعر الحارس',
		'gurad8': 'ترتيب',
		'gurad9': 'اشتراك',
		'gurad10': 'ليس لديك حارس الآن.',
		'gurad11': 'قم بالبث لجذب الحارس الخاص بك~',
		'gurad12': 'لا يوجد بعد',
		'gurad13': 'لا يظهر في القائمة',
		"gurad14": "مدة الحارس",
		"gurad15": "كيف تكون حارس؟",
		"gurad16": "1 في غرفة البث، انقر على مقعد الحارس، من المفترض أن تنفق GEMs لتفعيل الحارس للمذيع.",
		"gurad17": "2. مدة الحارس هي 30 يوم كل مرة، ويمكنك أن تقم بإضافة مدة الحارس بواسطة تفعيل الحارس تكرارا",
		"gurad18": "3 يمكن للمستخدم تفعيل الحارس لأكثر من مذيع واحد، ويمكن أن يكون للمذيع أكثر من حارس واحد.",
		"gurad19": "4 العمولة: سيحصل المذيع على 50% GEMs التي تنفق من حارس.",
		"gurad20": "5 نقطة الحارس: يتم حسابها وفقًا لهدية GEMs المرسلة في البث خلال مدة الحارس. 1 GEMs هدية= 1 نقطة الحارس.",
		"gurad21": "امتيازات الحارس",
		"gurad22": "بمجرد تفعيل الحارس، يحصل الحارس على امتيازات الحارس في غرفة المذيع.",
		"gurad23": "مدة",
		"gurad24": "وسام الحارس",
		"gurad25": "سيعرض عند الدردشة في البث",
		"gurad26": "موّثرات دخول غرفة البث",
		"gurad27": "يتم عرض وسام الحارس عند دخول البث كشرف ممتاز",
		"gurad28": "هدايا فاخرة ",
		"gurad29": "لا يمكن ترسل هذه الهدية إلا أن تكن الحارس",
		"gurad30": "مقعد الحارس",
		"gurad31": "مقعد الحارس الفاخر الذي يعرض في الموضع الأول في الغرفة",
		"gurad32": "مرتبة",
		"gurad33": "المقعد عبر الإنترنت له أولوية عالية من المستخدمين الآخرين",
		"gurad34": "يكن أصدقاء تلقائيًا",
		"gurad35": "بعد تفعيل الحارس، ستصبح أنت والمذيع الذي تحرسه أصدقاء تلقائيًا",
		"gurad36": "30 يوم VIP",
		"gurad37": "سيحصل على VIP 30 يومًا كمكافأة.",
		"gurad38": "حظر تعليق الغرفة ساري على الفور",
		"gurad39": "الامتياز تفعيل في غرفة المذيع التي تحرسها فقط.",
		"gurad40": "إشعار التفعيل",
		"gurad41": "ستتلقى المنطقة بأكملها الإشعار عند أن تكن الحارس للمذيع.",
		"gurad42": "ما هو حارس",
		"gurad43": "يرمز الحارس إلى شعبية المذيع ، فاذا تستخدم GEMs لتفعيل الحارس، وستكون حارسًا لمذيعك المفضل، وستتلقى وسام الحارس والعديد من الامتيازات الخاصة بك. طالما أن الحارس تفعيل، فستكون قادرًا على رعاية مذيعك بحب، وتتوفر امتيازات الحارس طالما أن الحارس الخاص بك صالحة.",
		"gurad44": "إشعار: امتياز الحارس تفعيل في غرفة المذيع التي تحرسها فقط.",
		'gurad45': 'مكافأة الحارس',
		'gurad46': 'باقي على',
		'gurad47': 'يوم',
		'gurad48': 'مرتبة',
		"dew1": "DEWs خاص بي",
		"dew2": "يمكن استبدال بين GEMs وDEWs، و(1GEMs = 100 DEWs)",
		"dew3": "الكل فى الكل",
		"dew4": "شراء",
		"dew5": "بيع الكل",
		"dew6": "غادر بعد الشراء",
		"dew7": "غادر بعد البيع",
		"dew8": "تم",
		"dew9": "تم",
		"dew10": "GEMs غير كافية، فشل في الشراء",
		"dew11": "DEWs غير كافية، فشل في البيع",
		"dew12": "GEMs غير كافية",
		"dew13": "GEMs غير كافية، فشل في الشراء",
		"dew14": "إلغاء",
		"dew15": "انتقل إلى الشحن",
		"dew16": "شراء الكل",
		"dew17": "بيع الكل",
		"dew18": "GEMs",
		"dew19": "redeem",
		"dew20": "شراء",
		"dew21": "بيع",
		"dew22": "سجل",
		"dew23": "DEWs خاص بي",
		"dew24": "إلغاء",
		"dew25": "تعيين",
		"dew26": "تم الشراء بنجاح",
		"dew27": "DEWs غير كافية، الرجاء إعادة المحاولة ",
		"dew28": "تم إنهاء الوظيفة، يرجى التحديث إلى الإصدار v5.3.0",
		"dew29": "تم البيع بنجاح",
		"dew30": "الإصدار الحالي قديم جدًا، يرجى التحديث إلى أحدث إصدار",
		"dew31": "الرجاء شحن DEWs أولا",
		"dew32": "GEMs غير كافية، فشل في الشراء",
		"dew33": "DEWs غير كافية، فشل في البيع",
		"dew34": "سوف يقم بالاستهلاك",
		"dew35": "سوف يقم بالحصول",
		"share1": "مكافأة الدعوة",
		"income1": "دخل البث",
		"income2": "دخل النشاط",
		"income3": "دخل الدعوة",
		"income4": "دخل المكالمة",
		"income5": "دخل الحارس",
		"income6": "الدخل الأخر",
		"income7": "يوم",
		"income8": "الأسبوع الجاري",
		"income9": "الاسبوع الماضى",
		"income10": "الشهر الجاري",
		"income11": "الشهر الماضى",
		"income12": "Custom",
		"income13": "اختر التاريخ",
		"income14": "لا يوجد بيانات الدخل بعد",
		"income15": "مدة المكالمة",
		"income16": "مدة الهدية",
		"income17": "مكالمة",
		"income18": "دقيقة",
		"income19": "ثانيا",
		"income20": "سنة",
		"income21": "شهر",
		"income22": "يوم",
		"income23": "جميع FIREs (لم يتضمن FIREs من البث والمكالمة) فقط احسب البيانات بعد 2020/1/1 00:00 (UTC/GMT+08:00)",
		"income24": "تم",
		"income25": "إلغاء",
		"income26": "دخل IM",
		"backpack1": "عرض السجلات لآخر شهر فقط",
		"backpack2": "لا يوجد سجل الاستلام بعد",
		"backpack3": "لا يوجد سجل الاستهلاك بعد",
		"backpack4": "سجل الاستلام",
		"backpack5": "سجل الاستهلاك",
		"box1": "لا يوجد سجل بعد",
		"box2": "قواعد صندوق الحظ",
		"box3": "1. يمكن المذيع والمشاهديون أن يرسل صندوق الخط في غرفة البث. من يفي بالمتطلبات مؤهل لفتح صندوق الخط للاستفادة من المكافأة",
		"box4": "2. هناك نادي المعجبين صندوق البريد و صندوق الرسائل . بعد إرسال مربع ، مربع رمز يظهر في الزاوية اليمنى السفلى من غرفة المعيشة لمدة 3 دقائق . في محاولة لتلبية متطلبات التعبئة والتغليف في غضون 3 دقائق من أجل فتح مربع التعبئة والتغليف في أقرب وقت ممكن",
		"box5": "3. عندما يكون هناك العديد من صناديق الخط في نفس غرفة البث، سيتم عرض الصندوق المتأخر كأولوية",
		"box6": "4. إذا بقيت الماسات في الصندوق بعد وقت محدد، فسيتم إرجاع الماس إلى حساب الشخص الذي أرسل الصندوق",
		"box7": "5. لا تزيد من قيمة الثروة ، لا تزيد من دخل المذيعين في غرفة البث",
		"box8": "إعادة",
		"box9": "جميع",
		"box10": "تم الاستلام",
		'hot1': 'وصف القائمة العلوية',
		'hot2': 'ما هي القائمة الساخنة',
		'hot3': 'يتم استخدام القائمة الساخنة لإظهار الشعبية الحالية لجميع القنوات الحية في القنوات الشعبية. تقديم هدايا للمراسلين المفضلين ومثل المرساة. يمكن أن تؤدي الدردشة مع المرساة في غرفة المعيشة إلى زيادة شعبية المرساة.',
		'hot4': 'أعلى قواعد حساب القائمة',
		'hot5': 'يتم تصنيف القائمة الشائعة وفقًا للقيمة الشعبية للمرساة. إذا كنت ترغب في جعل المرتبة المفضلة المفضلة أعلى ، فقم بزيادة قيمتها الشعبية بسرعة!',
		'canhelp1': 'Withdrawal Guide',
		'canhelp2': '1. Check how much FIREs you can withdraw?',
		'canhelp3': 'Open the in-app FIRE withdrawal page to check the current amount of FIREs you can withdraw.',
		'canhelp4': '2. How to withdraw the FIREs?',
		'canhelp5': 'We provide three withdrawal methods',
		'canhelp6': '2.1 Bank card transfer: Enter My -> FIRE Withdrawal -> Click Cash Withdrawal -> Bank Card Withdrawal -> Contact Customer Service',
		'canhelp7': '2.2 Paypal: Enter My -> FIRE Withdrawal ->Click Cash Withdrawal->Paypal ->Contact Customer Service',
		'canhelp12': '2.3 Payoneer: Enter My -> FIRE Withdrawal ->Click Cash Withdrawal->Payoneer->Contact Customer Service',
		'canhelp8': '3.What is the withdrawal ratio of FIRE?',
		'canhelp9': '1 FIRE = 0.01 CNY, the minimum withdrawal amount according to the withdrawal method.',
		'canhelp10': '4.Why the income of invitation from the FIRE withdrawal page that have not received in the account?',
		'canhelp11': 'For security and fairness, the income generated by the invitation will be reviewed and distributed once a week(no more than Wednesday). At that time, you can check whether you have received it on the FIRE withdrawal page.',
		'canhelp13': 'For more information about cash withdrawal, you can open WeChat app to search the public account "Firefly Live" to follow and consult.',
		'cashreal0': 'Bank card withdrawals <span style="color:#FF0000;margin-left:0.2rem">Chinese Bank Card Only</span>',
		'cashreal1': 'Fireflyسحب',
		'cashreal2': 'Wechatسحب',
		'cashreal3': 'Paypalسحب',
		'cashreal4': 'الخطوة التالية',
		'cashreal5': 'لحماية أمان حساب السحب الخاص بك ، يرجى ربط رقم هاتفك المحمول',
		'cashreal6': 'إلغاء',
		'cashreal7': 'تم',
		'cashreal8': 'مبلغ السحب النقدي',
		'cashreal9': 'رصيد السحب النقدي',
		'cashreal10': 'الانسحاب الكامل',
		'cashreal11': 'كامل',
		'cashreal12': 'PayPal استفسار عن معدل السحب النقدي',
		'cashreal13': 'تحديد الانسحاب',
		'cashreal14': 'USD',
		'cashreal15': 'إلى الحساب',
		'cashreal16': 'هذا',
		'cashreal17': 'إلغاء',
		'cashreal18': 'تم',
		'cashreal19': 'السحب النقدي من Wechat (لقد قمت بربط Wechat بالفعل)',
		'cashreal20': 'الوصف: Wechat البحث والمتابعة“Firefly',
		'cashreal21': 'السحب النقدي',
		'cashreal22': 'Wechat توجيه انسحاب الحساب العام>',
		'cashreal23': 'انتقل إلى الرقم العام',
		'cashreal24': 'لم تقم بتثبيت Wechat حتى الآن',
		'cashreal25': 'المبلغ النقدي أقل من 20 دولار ولا يمكن سحبه!',
		'cashreal32': 'المبلغ النقدي أقل من 50 دولار ولا يمكن سحبه!',
		'cashreal26': 'تم تحويله إلى أقصى كمية قابلة للغسل',
		'cashreal27': 'يجب أن يكون مبلغ النقد مضاعفًا صحيحًا مضاعفًا لـ 10 ، والذي تم تحويله تلقائيًا لك.',
		'cashreal28': 'عذرًا ، يُسمح بطلب واحد فقط خلال أسبوع واحد حسب الحاجة.',
		'cashreal29': 'عذرًا ، الحد الأقصى لمبلغ السحب هو 100000.',
		'cashreal30': 'لم تستوف الحد الأدنى من معايير الانسحاب!',
		'cashreal31': 'الرجاء إدخال المبلغ',
		'cashreal32': 'Alipay withdrawal',
		'paypal1': 'قم بإعداد سحب باي بال',
		'paypal2': 'يرجى ملء البريد الإلكتروني الخاص بك باي بال',
		'paypal3': 'يمكن تعيين حساب السحب باي بال مرة واحدة فقط ولا يمكن تغييره بمجرد تقديمه. هل أنت متأكد من إعداد حساب السحب التالي؟',
		'paypal4': 'إلغاء',
		'paypal5': 'تحديد',
		'paypal6': 'الربط ناجح ، وسحب الانسحاب قريبًا',
		'paypal7': 'تم ربط صندوق البريد بالفعل ، يرجى إعادة إدخاله',
		'paypal8': 'الرجاء إدخال المبلغ',
		'paypal9': 'يرجى إدخال بريدك الإلكتروني vaild',
		'paypal10': 'تنفيذ',
		'paypal11': 'لديك حساب باي بال ،',
		'paypal12': 'اذهب للتسجيل و&gt',
		'paypal13': 'عملية التسجيل في Paypal',
		'paypal14': 'تم الوصول إلى الحد الأقصى',
		'paypal15': 'كمية السحب',
		'paypal16': 'الرجاء إدخال المبلغ',
		'paypal17': 'رصيد قابل للسحب $',
		'paypal18': 'سحب الكل',
		'paypal19': 'الاستعلام عن سعر صرف السحب من PayPal',
		'drawend1': 'طلب سحب ناجح',
		'drawend2': 'رقم الأمر:',
		'drawend3': 'ارجع إلى صفحة انسحاب Firefly',
		'drawend4': 'تم إرسال طلب السحب الخاص بك إلى Firefly ، سيقوم Firefly بمعالجته في غضون 5-7 أيام عمل. يمكنك عرض تقدم الانسحاب من خلال "سحب اليراع" -> "سجل الانسحاب"',
		'drawend5': 'إذا اخترت السحب النقدي من Paypal ، فلن تفرض المنصة أي رسوم ، وسيتم الدفع لك وفقًا لمبلغ السحب النقدي الخاص بك. ومع ذلك ، نظرًا لأن Paypal سيتقاضى رسومًا معينة ، فقد يختلف المبلغ الذي تتلقاه عن مبلغ السحب النقدي.',
		'drawend6': 'عرض الاستعلام سعر صرف السحب باي بال',
		'wechat1': 'قم بإعداد سحب Wechat',
		'wechat2': 'يرجى ربط Wechat أولاً',
		'wechat3': 'سيصبح Wechat المرتبط حساب السحب الخاص بك',
		'wechat4': 'ربط Wechat',
		'wechat5': 'سحب Wechat (لقد ربطت Wechat بالفعل)',
		'wechat6': 'الوصف: بحث Wechat واتبع "Firefly Live"',
		'wechat7': 'في Wechat للانسحاب',
		'wechat8': 'في Wechat للانسحاب',
		'share1': 'FireFly invites to share',
		'share2': 'Firefly Live-80% of the entire network is divided into the highest platform, watch live streaming coins every day;',
		'mdew1': 'الأحجار الكريمة الحالية',
		'help1': 'Intimacy description',
		'help2': 'How to calculate Intimacy?',
		'help3': 'When both of you interact ,Intimacy will increase as per GEMs or DEWs consumed',
		'help4': 'Bottle message',
		'help5': '(Props message,1 bottle message=2 Intimacy)',
		'help6': 'Private message',
		'help7': '(1 private message of DEWs =100 Intimacy)',
		'help8': 'Private gifts',
		'help9': '(1 GEM gift=100 Intimacy)',
		'help10': 'Broadcast room gifts',
		'help11': '(1 GEM gift=100 Intimacy)',
		'help12': 'Video/voice call',
		'help13': '(1 GEM call=100 Intimacy)',
		'help14': 'Note:If GEMs/DEWs are returned in whatever ways,the GEMS/DEWs won\'\t be counted as Intimacy.DEWs gifts sent in the broadcast room won\'\t be counted as Intimacy',
		'help15': 'What is  Intimacy used for?',
		'help16': '20000 Intimacy can unlock Intimacy Friend .Private message will be free after being Intimacy Friend',
		'help17': '5000 Intimacy can unlock voice/video call',
		'help18': '5000 Intimacy can unlock private message function',

		'news1': 'مشاركة',
		'news2': 'رد',
		'news3': 'فتح',
		'news4': 'الرجاء إضافة العنوان (5-30 حرفًا)',
		'news5': 'الرجاء إضافة المحتوى',
		'news6': 'الرجاء إدخال المحتوى، يحظر نشر المحتويات التي تنتهك قوانين وأنظمة بلدك أو تنتهك الآخرين. يحظر نشر المعلومات الإباحية ومحتوى السياسة',
		'news7': 'موضوع',
		'news8': 'الكمية',
		'news9': 'التعليقات على الصورة',
		'news10': 'مستوى VIP يكون عند VIP 41 أو أعلى',
		'news11': 'يمكن التعليق على المنشور بالصور',
		'news12': 'يجب ألا يقل العنوان عن 5 أحرف',
		'news13': 'Fan value',

		'play1': 'اللعبة لم تبدأ بعد',
		'play2': 'تدفق اللعبة',
		'play3': 'فشل',
		'play4': 'فوز',
		'play5': 'التحدي مع الأصدقاء',
		'play6': 'التحدي مع القائمة الشائعة',
		'play7': 'التحدي مع القائمة الشائعة',
		'play8': 'تحدي النشاط',
		'play9': 'تسجيل التحدي',
		'play10': 'تسجيل اللعبة',
		'play11': 'لقد خرجت في جولة',
		'play12': '',
		'play13': 'عجلة الحظ',

		'play14': 'Stopped in',
		'play15': 'round',
		'play16': 'total',

		'turn1': 'قواعد اللعبة',
		'turn2': '1.يمكن فقط لمضيف الغرفة أن يبدأ اللعبة وهو في التحدي',
		'turn3': '2. لا يمكن بدء عجلة الحظ إلا بمشاركة 4 أشخاص على الأقل خلال 60 ثانية من تشغيلها، وإلا فسيتم إلغاؤها تلقائيًا',
		'turn4': '3. يجب دفع رسوم الاشتراك للانضمام إلى اللعبة. وسيتم إرجاء رسوم عندما يتم إلغاء اللعبة، ولن يتم إرجائها بعد بدء اللعبة',
		'turn5': '4. يخرج لاعب واحد في كل جولة عشوائيا بعد بدء اللعبة، يفوز من يبقي في النهاية ويحصل على جميع رسوم الدخول (خصم مكافأة المذيع)',
		'turn6': '5. يمكن لمذيع الجانب الفائز فقط الحصول على رسوم المكافأة، ولكل جولة من اللعبة رسم ثابت قدره .',
		'turn7': '6. بعد بدء اللعبة، إذا تم تعليق اللعبة بسبب قوة قاهرة، أو انهاء المضيفين البث أو التحدي، سيتم متابعة اللعبة.',
		'turn8': '7. لا يتم تضمين وقت اللعبة في حدث آخر (مثل حدث مكافأة البث المباشر',
		'turn9': '8. تحتفظ فيرفلي لايف بالحق بالتفسير النهائي للحدث',

		'newTurn1': '1. Lucky Wheel is opened in this chat room.',
		'newTurn2': '2. Lucky Wheel can only start with at least 4 people, otherwise it will continue to wait.',
		'newTurn3': '3. Lucky Wheel requires pre-deduction of the entrance fee. The game cancellation or manual quit will be refunded, and it cannot be refunded after the game starts.',
		'newTurn4': '4. After the game starts, the final player who stays wins all entrance fees for this round of the game.',
		'newTurn5': '5. The final interpretation right belongs to the platform and has nothing to do with Apple Inc.',

		'profit1': 'Room income',
		'profit2': 'Broadcast gift',
		'profit3': 'Mic gift',
		'profit4': 'Mic gift income share',
		'profit5': ' in ',
		'profit6': ' room',
		'profit7': ' send ',
		'profit8': 'send out',

		"upright1": "Activity",
		"upright2": "Online service",
		"upright3": "Rules",
		"upright4": "Record",
		"upright5": "Share",
		"upright6": "Customer service",
		"upright7": "Hi, what can I do for you?",
		"tRank1": 'This Week',
		"tRank2": 'Last Week',
		"tRank3": 'Total',
		"tRank4": 'Members',
		"tRank5": 'Group Points',
		'tRank6': 'Group points contributor',
		'tRank7': "'s points contributor",
		'tRank8': "No<br>Rank",
		'tRank9': 'No Data',
		"aboutUs1": 'User Agreement',
		"aboutUs2": 'Privacy Agreement',

		"drawNew1": 'Current income (pre-tax)',
		"draw1": 'Firefly withdrawal',
		"draw2": 'Total FIREs',
		"draw3": 'Currently available FIREs',
		"draw4": 'Cash withdrawal',
		"draw5": 'Exchange GEMs',
		"draw6": 'The minimum amount of cash is ¥100, and must be an integer of 100.<br> 10000FIREs = ¥100.',
		'draw7': 'This kind of bank withdrawal is not supported,please contact customer service or set other withdrawal method.',
		'draw8': 'Sure',
		'draw9': 'Not binded Phone numner yet',
		'draw10': 'Goto  "personal"->Settings->',
		'draw11': 'click "Binding phone number" to bind',
		'draw12': 'Cancel',
		'draw13': 'Withdrawal application has been summit',
		'draw14': 'please note the withdrawal progress via Notice',
		'draw15': 'Got it',
		'draw16': 'Withdrawal method set successfully',
		'draw17': 'RMB',
		'draw18': 'USD',
		'draw19': 'You have had a Wechat withdrawal account ,please contact customer service to deal with',
		'draw20': 'Sure to withdraw',
		'draw21': 'to account',
		'draw22': 'Alipay',
		'draw23': '?',
		'draw24': 'Set withdrawal method',
		'draw25': 'Alipay withdrawal',
		'draw26': 'Most peolple select this',
		'draw27': 'Bank withdrawal',
		'draw28': 'Paypal withdrawal',
		'draw29': 'Available withdrawal dollars',
		'draw30': 'Next',
		'draw31': 'Please select the country of your bank',
		'draw32': 'China Mainland',
		'draw33': 'Other countries or regions',
		'draw34': 'Please select withdrawal method',
		'draw35': 'Alipay account is the phone number or email provided  while you registered Alipay',
		'draw36': 'Summit',
		'draw37': 'Example',
		'draw38': 'Check Alipay account',
		'draw39': '1 Open Alipay application ,tap 「Mine」',
		'draw40': '2 Check your real name and Alipay account',
		'draw41': 'Note:Alipay account is the phone number or email provided  while you registered Alipay',
		'draw42': 'Alipay withdrawal account can only be set for one time,',
		'draw43': 'Once summit ,it can\'\t be changed  any more.。',
		'draw44': 'Sure to set bellow withdrawal account?',
		'draw45': 'Real name',
		'draw46': 'Please input your Alipay account',
		'draw47': 'Please input your real name',
		'draw48': 'Bank card withdrawals',
		'draw49': 'Please check the details carefully to avoid affecting  your withdrawal',
		'draw50': 'As for bank subbranch and province/city information,please consult your bank',
		'draw51': 'Input your bank card number',
		'draw52': 'bank:not indentified',
		'draw53': 'The real name of the bank account',
		'draw54': 'Bank subbranch(optional)',
		'draw55': 'Province of the bank(optional)',
		'draw56': 'City of the bank(optional)',
		'draw57': 'Province',
		'draw58': 'City',
		'draw59': 'Bank withdrawal account can only be set for one time',
		'draw60': 'Real name of the bank account',
		'draw61': 'Withdrawal currency',
		'draw62': 'Insufficient withdrawable amount, unable to withdraw',
		'draw63': 'Insufficient withdrawable amount, unable to withdraw',
		'draw64': 'Bank',
		'draw65': 'WeChat',
		'draw66': 'Bank name(optional)',
		'draw67': 'As per latest rules,your identify certification is required to withdraw',
		'draw68': 'Please fill in the identify number',
		'draw69': 'The information is used for withdrawal only,your information will be protected strictly',
		'draw70': 'Confirm your identify number',
		'draw71': 'Identify number bound successfuly',
		'draw72': 'Please fill in right identify number',
		'draw73': 'Please choose your country',
		'draw74': 'Please fill in your identify number',
		'draw75': 'ID card',
		'draw76': 'Bank number',
		'draw77': 'Bind Bank Card',
		'draw78': 'Confirm Withdrawal Information',
		'draw79': 'انتقل إلى WeChat وتابع الحساب الرسمي "<span style="color:#B3B3B3">Firefly Live</span>" لمزيد من ميزات المذيع.',
		'draw80': 'السحب',
		'draw81': 'خصم FIREs',
		'draw82': '3٪ شامل الضريبة',
		'draw83': 'FIREs المتبقية',
		'draw84': ' حساب المستلم',
		'draw85': 'Tel number',
		'draw86': 'input your phone number',
		'draw87': 'Check your Tel number please',
		'draw88': 'Please check your Alipay information',
		'draw89': 'Account Name:',
		'draw90': 'ID Number:',
		'draw91': 'Alipay Account:',
		'draw92': 'Please check your Alipay information',
		"draw93": 'Withdrawal Method:AliPay',
		'draw94': 'FIREs',

		"newDraw1": "الاسم الحقيقي",
		"newDraw2": "Identity number",
		"newDraw3": "حساب علي باي",
		"newDraw4": "ربط طريقة السحب",
		"newDraw5": "هل أنت متأكد من ربط طريقة السحب هذه؟",
		"newDraw6": "يفحص",
		"newDraw7": "تعيين كافتراضي",
		"newDraw8": "فك الارتباط",
		"newDraw9": "طريقة الانسحاب غير الملزمة",
		"newDraw10": "طريق السحب",
		"newDraw11": "حساب:",
		"newDraw12": "هل أنت متأكد من إلغاء ربط طريقة السحب هذه؟",
		"newDraw13": "كمية السحب",
		"newDraw14": "خصم الحرائق (بما في ذلك ضريبة 3٪)",
		"newDraw15": "الحرائق المتبقية بعد الانسحاب",
		"newDraw16": "إدارة طرق السحب>",
		"newDraw17": "البطاقة المصرفية (الدولية)",
		"newDraw18": "البلد / المنطقة",
		"newDraw19": "تعليمات الانسحاب:",
		"newDraw20": "1. الحد الأدنى لمبلغ السحب النقدي هو 100.00 ين ياباني، ويجب أن يكون مبلغ السحب النقدي عددًا صحيحًا 100",
		"newDraw21": "2. 10,000 حريق = 100.00 ين",
		"newDraw22": "الأرباح قبل الضريبة:",
		"newDraw23": "يرجى تأكيد معلومات باي بال",
		"newDraw24": "وكالة التحصيل",
		"newDraw25": "البريد الإلكتروني الإخطار",
		"newDraw26": "إرسال",
		"newDraw27": "حدد الدولة",
		"newDraw28": "اختر وكالة الدفع",
		"newDraw29": "الحد الشهري 93,000",
		"newDraw30": "إنها طريقة السحب الافتراضية",
		"newDraw31": "تم الإعداد بنجاح!",
		"newDraw32": "Unbound",
		"newDraw33": "Bank Card(China mainland)",
		"newDraw34": "Registration process",
		"newDraw35": "Enter your email address",
		"newDraw36": " limited monthly",
		"newDraw37": "Bound",
		"newDraw38": "姓氏",
		"newDraw39": "名字",
		"newDraw40": "銀行",
		"newDraw41": "收款城市",
		"newDraw42": "收款地址",
		"newDraw43": " خصم الحرائق",
	},
	//泰语
	{
		"paytitle": "เติม GEMs",
		"payrecord": "บันทึก",
		'visa': '../img/visa.png',
		'gash1': '../img/g-Point.png',
		'gash2': '../img/g-member.png',
		'gash3': '../img/g-credit.png',
		'gash4': '../img/g-phone.png',
		'alipay': '../img/alipay.png',
		'weipay': '../img/weipay.png',
		'molpay': '../img/molpay.png',
		'payatm': '../img/payatm.png',
		'gopay': '../img/gopay.png',
		'alfama': '../img/alfama.png',
		'paywallet': '../img/wallet.png',
		"next": "ขั้นตอนถัดไป",
		"ques": "*หากประสบปัญหาในการเติมเงิน โปรดติดต่อฝ่ายบริการลูกค้า",
		"select": "โปรดเลือกรายการเติมเงิน",
		"wallet": "การเติมเงินผ่านกระเป๋าเงิน",
		"card": "การเติมเงินผ่านบัตรคะแนน",
		"mol": "รายการอ้างอิงการเติมเงินผ่านบัตรคะแนน MOL",
		"moneyTitle": "รับการบันทีก",
		"moneyno": "ไม่มีบันทึกการเติมเงิน",
		"recordTitle": "ไม่มีบันทึกการเติมเงิน",
		'recordTitle2': 'Fan value record',
		"recordno": "ไม่มีบันทึกการใช้",
		"vipTitle": "การซื้อ",
		"vipno": "ยังไม่มีบันทึกการซื้อ",
		"rmbTitle": "FIREs ทั้งหมด",
		"rmbLive": "Live FIREs",
		"rmbVchat": "V-Chat FIREs",
		"rmbIm": "IM FIREs",
		"canTitle": "จำนวนการถอน FIREs",
		"canCurrency": "การเลือกสกุลเงิน :",
		"canFires": "FIREs",
		"canGift": "รางวัลของขวัญที่มี",
		"canActivity": "โบนัสกิจกรรม",
		"canGolden": "ผลกำไร Golden firefly ",
		"canInvitation": "รายได้การเชิญชวนการออกอากาศสด",
		"canIncome": "รายได้การเชิญชวนการเติมเงิน",
		"canOther": "รายได้อื่น ๆ",
		"canTotal": "การถอนทั้งหมด",
		"canCNY": "CNY(1 FIREs = ---CNY)",
		"canNTD": "NTD(1 FIREs = ---NTD)",
		"canUSD": "USD(1 FIREs = ---USD) ",
		"canMYR": "MYR(1 FIREs = ---MYR) ",
		"activeTitle": "บันทึกโบนัสกิจกรรม",
		"activeFires": "โบนัส FIREs:",
		"activeno": "ไม่มีบันทึก",
		"takeRecord": "บันทึกการถอน",
		"takeno": "ไม่มีบันทึกการถอน",
		"takeStatus": "สถานะการถอน",
		"takeApplied": "1 สมัครแล้ว ผู้ใช้ที่ส่งคำร้องขอการถอนและรอการตรวจสอบ",
		"takeReviewed": "2. ตรวจสอบแล้ว ผู้ให้บริการได้ส่งต่อใบสมัครและรอการชำระเงิน",
		"takePaid": "3. ชำระเงินแล้ว ฝ่ายบัญชีชำระเงินไปยังบัญชีผู้ใช้แล้ว",
		"takeReturned": "4. ส่งคืนแล้ว ผู้ให้บริการปฏิเสธคำร้องขอการถอนของผู้ใช้ และ FIREs ที่มีการถอนจะได้รับการส่งคืนไปยังบัญชีของผู้ใช้",
		"takeAbnormal": "5. ผิดปกติ หากการตั้งค่าบัญชีของผู้ใช้มีความผิดปกติ FIREs ที่ได้รับการถอนไปจะถูกส่งคืนไปยังบัญชีของผู้ใช้",
		"takeGot": "เข้าใจแล้ว",
		"takeObsolete": "ล้าสมัย",
		"takeAppliedTitle": "สมัครแล้ว",
		"takeReconciled": "กระทบยอดแล้ว",
		"takePaidTitle": "ชำระแล้ว",
		"takeReturnedTitle": "ส่งคืนแล้ว",
		"takeRejected": "การชำระเงินล้มเหลว",
		"takeWeChat": "การถอน Wechat",
		"takeOrderNum": "หมายเลขการสั่งซื้อ",
		"takeWithdrawal": "การถอน FIREs",
		"dewmoneyTitle": "รับการบันทีก",
		"dewmoneyGet": "บันทึก",
		"dewmoneyno": "ไม่มีบันทึก",
		"dewconsumTitle": "บันทึกการใช้",
		"dewconsumGet": "บันทึก",
		"dewconsumno": "ไม่มีบันทึกการใช้",
		"dewExchangeDew": "แลกเปลี่ยน dew",
		"dewExchangeRecord": "บันทึก",
		"dewExchangeTitle1": "กำหนดการใช้",
		"dewExchangeTitle2": "การแลกเปลี่ยน GEMs",
		"dewExchangeTitle3": "DEWs",
		"dewExchangeBtn": "ระบุ",
		"dewExchangeTitle4": "แลกสำเร็จ!",
		"dewIndex": "การแลก golden firefly",
		"dewExchangeTitle5": "การแลกเปลี่ยน DEWs",
		"dewExchangeTitle6": "Golden firefly",
		"dewExchangeTitle7": "การโอน gold fireflies",
		"dewExchangeTitle8": "เพื่อแลก fireflies",
		"dewExchangeTitle9": "GEMs",
		"dewExchangeTitle10": "แลก fireflies เป็น",
		"dewExchangeTitle11": "Gold firefly ที่คงเหลือ",
		"dewExchangeTitle12": "แลกทั้งหมด",
		"dewExchangeTitle13": "ยืนยันการแลกเปลี่ยน",
		"dewExchangeTitle14": "ถึงจำนวนสูงสุดแล้ว",
		"dewExchangeTitle15": "ไม่มี gold fireflies ~",
		"dewExchangeTitle16": "การแลกเปลี่ยน Golds firefly",
		"dewExchangeTitle17": "ยกเลิก",
		"vipmsg10": "จะเพลิดเพลินกับสิทธิพิเศษ VIP ได้อย่างไร?",
		"vipmsg11": "การซื้อ VIP เป็นเพียงวิธีเดียวในการเพลิดเพลินกับสิทธิพิเศษของ VIP",
		"vipmsg12": "คลิก ฉัน\"\--->\"\ศูนย์ VIP \"\--->\"\การซื้อ VIP\"\ หลังการซื้อ คุณจะเป็นสมาชิก VIP โดยอัตโนมัติ",
		"vipmsg13": "2 หลังการซื้อ VIP สิทธิพิเศษของคุณจะเปลี่ยนตามระดับ VIP ของคุณ",
		"vipmsg14": "ตรวจสอบสิทธิพิเศษ VIP>>",
		"vipmsg15": "3 ในช่วง VIP หากระดับ VIP ของคุณเพิ่มขึ้น สิทธิพิเศษของคุณจะอัปเกรดโดยอัตโนมัติ",
		"vipmsg16": "ระดับ VIP มาตรฐาน",
		"vipmsg17": "ระดับ VIP",
		"vipmsg18": "ส่ง GEMs",
		"vipmsg19": "Firefly ขอสงวนสิทธิ์ในการอธิบายขั้นสุดท้าย",
		"vipmsg20": "เปิดใช้งานรถยนต์",
		"vipmsg21": "เงื่อนไขการถือสิทธิ์",
		"vipmsg22": "สิทธิพิเศษ VIP",
		"vipmsg23": "การขับรถยนต์ของตนเองเข้ามาในห้องออกอากาศ",
		"vipmsg24": "หมายเหตุ: หากไม่ใช่ VIP แม้ว่าคุณจะเป็นเจ้าของรถยนต์ คุณจะยังไม่สามารถขับรถเข้าในห้องออกอากาศได้",
		"vipmsg25": "ซื้อ VIP ทันที",
		"vipmsg26": "ตรวจสอบรถยนต์ของตนเอง",
		"vipmsg27": "ไม่มีการจำกัดระดับสำหรับการแชท",
		"vipmsg28": "ในการเป็น VIP นั้นไม่มีการจำกัดระดับเมื่อคุณแชทกับเพื่อน",
		"vipmsg29": "เหรียญตรา VIP",
		"vipmsg30": "เหรียญตรา VIP แสดงสถานะอันทรงเกียรติของคุณ",
		"vipmsg31": "กรอบโปรไฟล์ VIP พิเศษ",
		"vipmsg32": "กรอบโปรไฟล์ VIP จะมีความพิเศษเพราะคุณ",
		"vipmsg33": "กรอบรูปประจำตัวพิเศษ",
		"vipmsg34": "ผู้ใช้ VIP จะเจิดจ้าด้วยกรอบรูปประจำตัวของพวกเขาที่ต่างจากบุคคลอื่น",
		"vipmsg35": "บัตรชื่อพิเศษ",
		"vipmsg36": "นามบัตรพิเศษ",
		"vipmsg37": "เอฟเฟกต์การเข้าพิเศษ",
		"vipmsg38": "ผู้ใช้ VIP เพลิดเพลินกับเอฟเฟกต์การเข้าที่สง่างามต่างจากบุคคลอื่น โดยระดับ VIP ต่าง ๆ มีเอฟเฟกต์การเข้าต่างกัน",
		"vipmsg39": "ไม่มีการเตะ ไม่มีการปิดเสียง",
		"vipmsg40": "ปกป้องคุณจากการแบนในการพูดหรือลบออกจากห้องโดยบุคคลอื่นนอกเหนือจาก VIP",
		"vipmsg41": "พื้นหลังของข้อความ",
		"vipmsg42": "ฟองการแชทที่ปรับแต่งช่วยให้ข้อความของคุณโดดเด่นจากคนอื่น ๆ",
		"vipmsg43": "บุคคลที่มองไม่เห็น",
		"vipmsg44": "ตั้งค่าทำให้มองไม่เห็น เป็น VIP แบบลึกลับในห้องออกอากาศ",
		"vipmsg45": "ไปที่ ฉัน\"\-> \"\การตั้งค่า\"\->\"\บุคคลที่มองไม่เห็น\"\ ตั้งค่าทำให้มองไม่เห็น ",
		"vipmsg46": "การปรับแต่งรถยนต์",
		"vipmsg47": "รถยนต์เฉพาะพิเศษมีไว้เพียงเพื่อคุณในแพลตฟอร์มทั้งหมด ไม่มีใครอื่นสามารถเป็นเจ้าของรถยนต์คันนั้นได้",
		"vipmsg48": "ระดับ VIP เป็นระดับ VIP51 หรือสูงกว่า",
		"vipmsg49": "ระดับ VIP เป็นระดับ VIP11 หรือสูงกว่า",
		"vipmsg50": "ระดับ VIP เป็นระดับ VIP1 หรือสูงกว่า",
		"vipmsg51": "ระดับ VIP เป็นระดับ VIP21 หรือสูงกว่า",
		"vipmsg52": "ระดับ VIP เป็นระดับ VIP31 หรือสูงกว่า",
		"vipmsg53": "ระดับ VIP เป็นระดับ VIP41 หรือสูงกว่า",
		"vipmsg54": "ระดับ VIP เป็นระดับ VIP51 หรือสูงกว่า",
		"vipmsg55": "ระดับ VIP เป็นระดับ VIP41 หรือสูงกว่า",

		'vipmsg56': 'Chat Room',
		'vipmsg57': 'Acquisition conditions',
		'vipmsg58': 'VIP priviledges',
		'vipmsg59': 'Can switch  room as Chat Room after the live ends',
		"vipmsg60": 'Custom Gift',
		"vipmsg61": "VIP level is upon VIP48 or above",
		"vipmsg62": "Contact Custom Service to customize your exclusive gift within VIP validate period",
		"vipmsgImg": "images/font_en.png",
		"gurad1": "ผู้คุ้มกันสำหรับ",
		"gurad2": "ผู้คุ้มกันของฉัน",
		"gurad3": "เดือนนี้",
		"gurad4": "เดือนที่ผ่านมา",
		"gurad5": "เป็นผู้คุ้มกันของผู้ออกอากาศคนโปรดของคุณในตอนนี้!",
		"gurad6": "เจ๋งสุด ๆ !",
		"gurad7": "คะแนนผู้คุ้มกัน",
		"gurad8": "อันดับ",
		"gurad9": "เปิดใช้งานผู้คุ้มกัน ",
		"gurad10": "ยังไม่มีผู้คุ้มกัน",
		"gurad11": "ออกรายการสดตอนนี้เพื่อรับหนึ่งคน!",
		"gurad12": "ยังไม่มีวันที่",
		"gurad13": "ไม่อยู่ในรายการ",
		"gurad14": "เงื่อนไขของผู้คุ้มกัน",
		"gurad15": "จะเป็นผู้คุ้มกันได้อย่างไร?",
		"gurad16": "1 ในห้องออกอากาศ คลิกที่ชุดผู้คุ้มกัน คุณควรใช้ GEMs เพื่อเปิดใช้ความเป็นผู้คุ้มกันสำหรับผู้ออกอากาศ",
		"gurad17": "2 ระยะเวลาสำหรับการเปิดใช้งานผู้คุ้มกันแต่ละครั้งคือ 30 วัน คุณสามารถเพิ่มระยะเวลาของผู้คุ้มกันได้โดยการเปิดใช้งานผู้คุ้มกันให้บ่อยมากขึ้น",
		"gurad18": "3 ผู้ใช้สามารถเปิดใช้งานการเป็นผู้คุ้มกันสำหรับผู้ออกอากาศได้มากกว่าหนึ่งคน ผู้ออกอากาศสามารถมีผู้คุ้มกันได้มากกว่าหนึ่งคน",
		"gurad19": "4 คอมมิชชัน: ผู้ออกอากาศแชร์คอมมิชชัน 50% ใน GEMs ที่ใช้กับผู้คุ้มกัน",
		"gurad20": "5 คะแนนผู้คุ้มกัน: มีการคำนวณโดยขึ้นอยู่กับของขวัญ GEMs ที่ส่งไปในห้องออกอากาศในระหว่างระยะเวลาของผู้คุ้มกัน 1 ของขวัญ GEMs = 1 คะแนนผู้คุ้มกัน",
		"gurad21": "สิทธิพิเศษของผู้คุ้มกัน ",
		"gurad22": "เมื่อเปิดใช้งานแล้ว ผู้คุ้มกันจะได้รับสิทธิพิเศษของผู้ค้มกันในห้องของผู้ออกอากาศ",
		"gurad23": "เงื่อนไข",
		"gurad24": "เหรียญตราของผู้คุ้มกัน",
		"gurad25": "จะแสดงเมื่อคุณแชทในห้อง",
		"gurad26": "เอฟเฟกต์การเข้า",
		"gurad27": "เหรียญตราของผู้คุ้มกันจะแสดงเป็นเกียรติยศพิเศษเมื่อคุณเข้าห้อง",
		"gurad28": "ของขวัญพิเศษ",
		"gurad29": "เฉพาะผู้คุ้มกันเท่านั้นที่มีสิทธิ์ในการส่งของขวัญ บุคคลอื่น ๆ ไม่มีสิทธิ์",
		"gurad30": "ที่นั่งของผู้คุ้มกัน ",
		"gurad31": "ที่นั่งของผู้คุ้มกันพิเศษที่แสดงที่ตำแหน่งแรกในห้อง",
		"gurad32": "เลื่อนระดับขึ้น",
		"gurad33": "ที่นั่งออนไลน์มีลำดับความสำคัญสูงกว่าของผู้ใช้คนอื่น ๆ",
		"gurad34": "เป็นเพื่อนโดยอัตโนมัติ",
		"gurad35": "หลังจากเปิดใช้งานผู้คุ้มกัน คุณ และผู้ออกอากาศที่คุณดูแลจะเป็นเพื่อนกันโดยอัตโนมัติ",
		"gurad36": "VIP 30 วัน",
		"gurad37": "จะได้รับ VIP 30 วันเป็นโบนัส",
		"gurad38": "ความปลอดภัยจากการแบนความคิดเห็นและการแบนในห้อง",
		"gurad39": "สิทธิพิเศษจะใช้ได้เฉพาะในห้องของผู้ออกอากาศที่คุณดูแลเท่านั้น",
		"gurad40": "การแจ้งเตือนการเปิดใช้งาน",
		"gurad41": "ภูมิภาคทั้งหมดจะได้รับการแจ้งเตือนเมื่อคุณเปิดใช้งานผู้คุ้มกัน",
		"gurad42": "ผู้คุ้มกันคืออะไร",
		"gurad43": "ความเป็นผู้คุ้มกันแสดงถึงความเป็นที่นิยมของผู้ออกอากาศ ใช้ GEMs ของคุณเพื่อเปิดใช้ความเป็นผู้คุ้มกัน คุณจะให้การดูแลสำหรับผู้ออกอากาศคนโปรดของคุณ และคุณจะได้รับเหรียญตราผู้คุ้มกัน และสิทธิพิเศษมากมายสำหรับคุณเท่านั้น ตราบเท่าที่ความเป็นผู้คุ้มกันยังคงอยู่ คุณจะสามารถดูแลผู้ออกอากาศของคุณด้วยความรัก สิทธิพิเศษของผู้คุ้มกันจะใช้ได้ตราบเท่าที่ความเป็นผู้คุ้มกันของคุณยังใช้ได้",
		"gurad44": "หมายเหตุ: สามารถใช้สิทธิพิเศษของผู้คุ้มกันได้เฉพาะในห้องแชทของผู้ออกอากาศที่ดูแลอยู่เท่านั้น",
		"gurad45": "คอมมิชชันของผู้คุ้มกัน",
		"gurad46": "คงเหลือ",
		"gurad47": "วัน",
		"gurad48": "อันดับ:",
		"dew1": "DEWs ของฉัน",
		"dew2": "สามารถแลกเปลี่ยน DEWs และ GEMs ได้ (1 GEMs =100 DEWs)",
		"dew3": "ทั้งหมดใน",
		"dew4": "ซื้อใน",
		"dew5": "ขายออก",
		"dew6": "เหลือหลังจากซื้อมา",
		"dew7": "เหลือหลังจากขาย",
		"dew8": "แน่ใจ",
		"dew9": "แน่ใจ",
		"dew10": "มี GEMs ไม่เพียงพอ ล้มเหลวในการซื้อมา",
		"dew11": "มี DEWs ไม่เพียงพอ ล้มเหลวในการขาย",
		"dew12": "มี GEMs ไม่เพียงพอ",
		"dew13": "มี GEMs ไม่เพียงพอ ล้มเหลวในการซื้อมา",
		"dew14": "ยกเลิก",
		"dew15": "เพื่อเติมเงิน",
		"dew16": "ซื้อทั้งหมด",
		"dew17": "ขายทั้งหมด",
		"dew18": "GEMs",
		"dew19": "แลก",
		"dew20": "ซื้อ",
		"dew21": "ขาย",
		"dew22": "บันทึก",
		"dew23": "DEWs ของฉัน",
		"dew24": "ยกเลิก",
		"dew25": "ระบุ",
		"dew26": "ซื้อมาสำเร็จ",
		"dew27": "มี DEWs ไม่เพียงพอ โปรดลองอีกครั้ง",
		"dew28": "มีการยุติฟังก์ชันแล้ว โปรดอัปเดตเป็นเวอร์ชัน v5.3.0 ",
		"dew29": "ขายสำเร็จ",
		"dew30": "เวอร์ชันปัจจุบันต่ำเกินไป โปรอัปเดตเป็นเวอร์ชันล่าสุด",
		"dew31": "โปรดเติมเงิน GEMs ก่อน",
		"dew32": "มี GEMs ไม่เพียงพอ ล้มเหลวในการซื้อมา",
		"dew33": "มี DEWs ไม่เพียงพอ ล้มเหลวในการขาย",
		"dew34": "จะใช้",
		"dew35": "จะได้รับ",
		"share1": "โบนัสการเชิญชวน",
		"income1": "รายได้ของห้อง",
		"income2": "รายได้ของกิจกรรม",
		"income3": "รายได้การเชิญชวน",
		"income4": "รายได้จากวิดีโอ",
		"income5": "รายได้จากการดูแล",
		"income6": "รายได้อื่น ๆ",
		"income7": "วันนี้",
		"income8": "สัปดาห์นี้",
		"income9": "สัปดาห์ที่ผ่านมา",
		"income10": "เดือนนี้",
		"income11": "เดือนที่ผ่านมา",
		"income12": "กำหนดเอง",
		"income13": "เลือกวันที่",
		"income14": "ยังไม่มีข้อมูลรายได้",
		"income15": "ระยะเวลาการโทร",
		"income16": "ระยะเวลาของขวัญ",
		"income17": "การโทร",
		"income18": "นาที",
		"income19": "วิ.",
		"income20": "ปี",
		"income21": "เดือน",
		"income22": "วัน",
		"income23": "FIREs ทั้งหมด (ยกเว้น Room FIREs ,Video FIREs)คำนวณเฉพาะข้อมูลหลังจากวันที่ 2020/1/1 00:00",
		"income24": "แน่ใจ",
		"income25": "ยกเลิก",
		"income26": "รายได้ IM ",
		"backpack1": "แสดงเฉพาะบันทึกสำหรับหนึ่งเดือนล่าสุดเท่านั้น",
		"backpack2": "ยังไม่ได้รับบันทึก",
		"backpack3": "ยังไม่มีบันทีกการใช้",
		"backpack4": "กำลังรับบันทึก",
		"backpack5": "กำลังใช้บันทึก",
		"box1": "ยังไม่มีบันทึก ",
		"box2": "กฎของกล่องนำโชค",
		"box3": "1、ทั้งผู้ออกอากาศและผู้ฟังสามารถส่งกล่องนำโชคในห้องสดได้ ผู้ที่สอดคล้องกับข้อกำหนดที่มีคุณสมบัติครบถ้วนในการเปิดกล่องนำโชคเพื่อคว้ารางวัล",
		"box4": "2、มีกล่องจดหมายแฟนคลับและกล่องข้อความ เมื่อกล่องถูกส่งมามุมขวาล่างของรูมสดจะแสดงไอคอนกล่องสี่เหลี่ยมที่แสดงเวลาเป็นสามนาที พยายามที่จะตอบสนองความต้องการของกล่องภายในสามนาทีเพื่อเปิดกล่องให้เร็วที่สุด",
		"box5": "3、เมื่อมีหลายกล่องในห้องสดเดียวกัน กล่องที่เลยกำหนดจะแสดงตามลำดับความสำคัญ",
		"box6": "4、หากมีเพชรเหลือในกล่องหลังเวลาที่กำหนด จะมีการส่งเพชรคืนไปยังบัญชีของบุคคลที่ส่งกล่องไป",
		"box7": "5、กล่องไม่เพิ่มมูลค่าความมั่งคั่ง ไม่เพิ่มรายได้ของผู้ออกอากาศในห้องสด",
		"box8": "ย้อนกลับ",
		"box9": "ทั้งหมด",
		"box10": "ได้รับแล้ว",
		'hot1': 'คำอธิบายรายการยอดนิยม',
		'hot2': 'รายการยอดนิยมคืออะไร',
		'hot3': 'รายการยอดนิยมใช้เพื่อแสดงความนิยมในปัจจุบันของทุกช่องรายการสดในช่องยอดนิยมมอบของขวัญให้กับจุดยึดที่ชื่นชอบและเหมือนสมอการแชทกับสมอในห้องสดสามารถเพิ่มความนิยมของสมอ',
		'hot4': 'กฎการคำนวณรายการยอดนิยม',
		'hot5': 'รายการยอดนิยมได้รับการจัดอันดับตามค่านิยมของสมอถ้าคุณต้องการทำให้อันดับสมอที่ชื่นชอบสูงขึ้น',
		'canhelp1': 'Withdrawal Guide',
		'canhelp2': '1. Check how much FIREs you can withdraw?',
		'canhelp3': 'Open the in-app FIRE withdrawal page to check the current amount of FIREs you can withdraw.',
		'canhelp4': '2. How to withdraw the FIREs?',
		'canhelp5': 'We provide three withdrawal methods',
		'canhelp6': '2.1 Bank card transfer: Enter My -> FIRE Withdrawal -> Click Cash Withdrawal -> Bank Card Withdrawal -> Contact Customer Service',
		'canhelp7': '2.2 Paypal: Enter My -> FIRE Withdrawal ->Click Cash Withdrawal->Paypal ->Contact Customer Service',
		'canhelp12': '2.3 Payoneer: Enter My -> FIRE Withdrawal ->Click Cash Withdrawal->Payoneer->Contact Customer Service',
		'canhelp8': '3.What is the withdrawal ratio of FIRE?',
		'canhelp9': '1 FIRE = 0.01 CNY, the minimum withdrawal amount according to the withdrawal method.',
		'canhelp10': '4.Why the income of invitation from the FIRE withdrawal page that have not received in the account?',
		'canhelp11': 'For security and fairness, the income generated by the invitation will be reviewed and distributed once a week(no more than Wednesday). At that time, you can check whether you have received it on the FIRE withdrawal page.',
		'canhelp13': 'For more information about cash withdrawal, you can open WeChat app to search the public account "Firefly Live" to follow and consult.',
		'cashreal0': 'Bank card withdrawals <span style="color:#FF0000;margin-left:0.2rem">Chinese Bank Card Only</span>',
		'cashreal1': 'Firefly withdrawal',
		'cashreal2': 'Wechat withdrawal',
		'cashreal3': 'Paypal withdrawal',
		'cashreal4': 'Next',
		'cashreal5': 'Please bind your phone number for your account safety',
		'cashreal6': 'Cancel',
		'cashreal7': 'Sure',
		'cashreal8': 'Cash withdral',
		'cashreal9': 'Cash withdral balance',
		'cashreal10': 'Withdraw all',
		'cashreal11': 'Done',
		'cashreal12': 'Paypal withdrawal currency',
		'cashreal13': 'Are you sure to withdraw',
		'cashreal14': 'USD',
		'cashreal15': 'to account ',
		'cashreal16': '?',
		'cashreal17': 'Cancel',
		'cashreal18': 'Sure',
		'cashreal19': 'Wechat withdrawal (already bind Wechat)',
		'cashreal20': 'Note: Search and follow "Firefly 螢火蟲"',
		'cashreal21': 'in Wechat to withdraw ,',
		'cashreal22': ' ',
		'cashreal23': 'Withdraw with Wechat official account',
		'cashreal24': 'You have not installed Wechat yet',
		'cashreal25': 'The amount of cash is less than $20 and cannot be withdrawn!',
		'cashreal32': 'The amount of cash is less than $50 and cannot be withdrawn!',
		'cashreal26': 'Converted to maximum cashable amount',
		'cashreal27': 'The amount of cash must be an integer multiple of 10, which has been automatically converted for you.',
		'cashreal28': 'Sorry, only one application is allowed within one week as required.',
		'cashreal29': 'Sorry, the maximum withdrawal amount is 100,000.',
		'cashreal30': 'Did not meet the minimum withdrawal criteria!',
		'cashreal31': 'Please enter the amount',
		'cashreal32': 'Alipay withdrawal',
		'paypal1': 'Set up Paypal withdrawal',
		'paypal2': 'Please fill in your Paypal email',
		'paypal3': 'Paypal withdrawal account can only be set once and cannot be changed once submitted. Are you sure to set up the following withdrawal account??',
		'paypal4': 'cancel',
		'paypal5': 'determine',
		'paypal6': 'The binding is successful, and the withdrawal will be withdrawn soon',
		'paypal7': 'The mailbox has already been bound, please re-enter',
		'paypal8': 'Please enter the amount',
		'paypal9': 'please enter your vaild email',
		'paypal10': 'carry out',
		'paypal11': 'Have a PayPal account,',
		'paypal12': 'Go to register&gt',
		'paypal13': 'Paypal registration process',
		'paypal14': 'The maximum amount has been reached',
		'paypal15': 'Withdrawal Amount',
		'paypal16': 'Please enter the amount',
		'paypal17': 'Withdrawable balance $',
		'paypal18': 'Withdraw all',
		'paypal19': 'PayPal withdrawal exchange rate query',
		'drawend1': 'Withdrawals record',
		'drawend2': 'Order number:',
		'drawend3': 'Return to the Firefly withdrawal page',
		'drawend4': 'Your withdrawal request has been submitted to Firefly and will process it within 5-7 business days. You can view the withdrawal progress by "Withdrawal" -> "Withdrawal record"',
		'drawend5': 'Note:For Paypal withdrawal,Firefly Live don\'\t charge any transaction fee .However ,since Paypal will charge a certain transaction fee, the real money you  received may differ from reqeusted withdrawal money.For more  details ,',
		'drawend6': 'you can check in the Paypal official website.',
		'wechat1': 'Set Wechat withdrawal',
		'wechat2': 'Please bind Wechat first',
		'wechat3': 'The bound Wechat will become your withdrawal account',
		'wechat4': 'Bind Wechat',
		'wechat5': 'Wechat withdrawal (already bind Wechat)',
		'wechat6': 'Note: Search and follow "Firefly Live"',
		'wechat7': 'in Wechat to withdraw',
		'wechat8': 'in Wechat to withdraw',
		'share1': 'FireFly invites to share',
		'share2': 'Firefly Live-80% of the entire network is divided into the highest platform, watch live streaming coins every day;',
		'mdew1': 'GEMs ปัจจุบัน',
		'help1': 'Intimacy description',
		'help2': 'How to calculate Intimacy?',
		'help3': 'When both of you interact ,Intimacy will increase as per GEMs or DEWs consumed',
		'help4': 'Bottle message',
		'help5': '(Props message,1 bottle message=2 Intimacy)',
		'help6': 'Private message',
		'help7': '(1 private message of DEWs =100 Intimacy)',
		'help8': 'Private gifts',
		'help9': '(1 GEM gift=100 Intimacy)',
		'help10': 'Broadcast room gifts',
		'help11': '(1 GEM gift=100 Intimacy)',
		'help12': 'Video/voice call',
		'help13': '(1 GEM call=100 Intimacy)',
		'help14': 'Note:If GEMs/DEWs are returned in whatever ways,the GEMS/DEWs won\'\t be counted as Intimacy.DEWs gifts sent in the broadcast room won\'\t be counted as Intimacy',
		'help15': 'What is  Intimacy used for?',
		'help16': '20000 Intimacy can unlock Intimacy Friend .Private message will be free after being Intimacy Friend',
		'help17': '5000 Intimacy can unlock voice/video call',
		'help18': '5000 Intimacy can unlock private message function',

		'news1': 'Forward',
		'news2': 'Reply',
		'news3': 'Unlock',
		'news4': 'Please input the title (5-30 characters)',
		'news5': 'Please input the content,',
		'news6': 'Contents that violate the laws and regulations of your country or  infringe on others are forbidden to post. Pornographic information and politically sensitive content are forbidden to post.',
		'news7': 'Items',
		'news8': 'Qty',
		'news9': 'Picture comments',
		'news10': 'VIP level is upon VIP41 or above',
		'news11': 'Can comment on the posts with picture',
		'news12': 'Title should have 5 characters at least',
		'news13': 'Fan value',

		'play1': 'Game hasn\'\t started',
		'play2': 'Game flow',
		'play3': 'Game fail',
		'play4': 'Game win',
		'play5': 'Firends PK',
		'play6': 'Hot PK',
		'play7': 'World PK',
		'play8': 'Activity PK',
		'play9': 'PK record',
		'play10': 'Game record',
		'play11': 'Out in round',
		'play12': '',
		'play13': 'Lucky Wheel',
		'play14': 'Stopped in',
		'play15': 'round',
		'play16': 'total',
		'turn1': 'Game rules',
		'turn2': '1 The lucky wheel can only be started by the broadcaster in the PK',
		'turn3': '2 4 participants is required to start the game ,or the game will be cancelled',
		'turn4': '3 Entrance fee will be deducted  when take part in the game.When the game starts ,the entrance fee won\'\t be returned',
		'turn5': '4 When game starts, final player will be the winner and win the awards',
		'turn6': '5 Only the broadcaster whose player win the game can get the bonus',
		'turn7': '6 When game starts,no matter what happens ,the game will go on',
		'turn8': '7 Game period of "The Lucky Wheel" is not involved in the "live broadcast reward event" activity.',
		'turn9': '8 All rights reserved by the platform',

		'newTurn1': '1. Lucky Wheel is opened in this chat room.',
		'newTurn2': '2. Lucky Wheel can only start with at least 4 people, otherwise it will continue to wait.',
		'newTurn3': '3. Lucky Wheel requires pre-deduction of the entrance fee. The game cancellation or manual quit will be refunded, and it cannot be refunded after the game starts.',
		'newTurn4': '4. After the game starts, the final player who stays wins all entrance fees for this round of the game.',
		'newTurn5': '5. The final interpretation right belongs to the platform and has nothing to do with Apple Inc.',

		'profit1': 'Room income',
		'profit2': 'Broadcast gift',
		'profit3': 'Mic gift',
		'profit4': 'Mic gift income share',
		'profit5': ' in ',
		'profit6': ' room',
		'profit7': ' send ',
		'profit8': 'send out',

		"upright1": "Activity",
		"upright2": "Online service",
		"upright3": "Rules",
		"upright4": "Record",
		"upright5": "Share",
		"upright6": "Customer service",
		"upright7": "Hi, what can I do for you?",

		"tRank1": 'This Week',
		"tRank2": 'Last Week',
		"tRank3": 'Total',
		"tRank4": 'Members',
		"tRank5": 'Group Points',
		'tRank6': 'Group points contributor',
		'tRank7': "'s points contributor",
		'tRank8': "No<br>Rank",
		'tRank9': 'No Data',

		"aboutUs1": 'User Agreement',
		"aboutUs2": 'Privacy Agreement',


		"drawNew1": 'Current income (pre-tax)',
		"draw1": 'Firefly withdrawal',
		"draw2": 'Total FIREs',
		"draw3": 'Currently available FIREs',
		"draw4": 'Cash withdrawal',
		"draw5": 'Exchange GEMs',
		"draw6": 'The minimum amount of cash is ¥100, and must be an integer of 100.<br> 10000FIREs = ¥100.',
		'draw7': 'This kind of bank withdrawal is not supported,please contact customer service or set other withdrawal method.',
		'draw8': 'Sure',
		'draw9': 'Not binded Phone numner yet',
		'draw10': 'Goto  "personal"->Settings->',
		'draw11': 'click "Binding phone number" to bind',
		'draw12': 'Cancel',
		'draw13': 'Withdrawal application has been summit',
		'draw14': 'please note the withdrawal progress via Notice',
		'draw15': 'Got it',
		'draw16': 'Withdrawal method set successfully',
		'draw17': 'RMB',
		'draw18': 'USD',
		'draw19': 'You have had a Wechat withdrawal account ,please contact customer service to deal with',
		'draw20': 'Sure to withdraw',
		'draw21': 'to account',
		'draw22': 'Alipay',
		'draw23': '?',
		'draw24': 'Set withdrawal method',
		'draw25': 'Alipay withdrawal',
		'draw26': 'Most peolple select this',
		'draw27': 'Bank withdrawal',
		'draw28': 'Paypal withdrawal',
		'draw29': 'Available withdrawal dollars',
		'draw30': 'Next',
		'draw31': 'Please select the country of your bank',
		'draw32': 'China Mainland',
		'draw33': 'Other countries or regions',
		'draw34': 'Please select withdrawal method',
		'draw35': 'Alipay account is the phone number or email provided  while you registered Alipay',
		'draw36': 'Summit',
		'draw37': 'Example',
		'draw38': 'Check Alipay account',
		'draw39': '1 Open Alipay application ,tap 「Mine」',
		'draw40': '2 Check your real name and Alipay account',
		'draw41': 'Note:Alipay account is the phone number or email provided  while you registered Alipay',
		'draw42': 'Alipay withdrawal account can only be set for one time,',
		'draw43': 'Once summit ,it can\'\t be changed  any more.。',
		'draw44': 'Sure to set bellow withdrawal account?',
		'draw45': 'Real name',
		'draw46': 'Please input your Alipay account',
		'draw47': 'Please input your real name',
		'draw48': 'Bank card withdrawals',
		'draw49': 'Please check the details carefully to avoid affecting  your withdrawal',
		'draw50': 'As for bank subbranch and province/city information,please consult your bank',
		'draw51': 'Input your bank card number',
		'draw52': 'bank:not indentified',
		'draw53': 'The real name of the bank account',
		'draw54': 'Bank subbranch(optional)',
		'draw55': 'Province of the bank(optional)',
		'draw56': 'City of the bank(optional)',
		'draw57': 'Province',
		'draw58': 'City',
		'draw59': 'Bank withdrawal account can only be set for one time',
		'draw60': 'Real name of the bank account',
		'draw61': 'Withdrawal currency',
		'draw62': 'Insufficient withdrawable amount, unable to withdraw',
		'draw63': 'Insufficient withdrawable amount, unable to withdraw',
		'draw64': 'Bank',
		'draw65': 'WeChat',
		'draw66': 'Bank name(optional)',
		'draw67': 'As per latest rules,your identify certification is required to withdraw',
		'draw68': 'Please fill in the identify number',
		'draw69': 'The information is used for withdrawal only,your information will be protected strictly',
		'draw70': 'Confirm your identify number',
		'draw71': 'Identify number bound successfuly',
		'draw72': 'Please fill in right identify number',
		'draw73': 'Please choose your country',
		'draw74': 'Please fill in your identify number',
		'draw75': 'Identify number',
		'draw76': 'Bank number',
		'draw77': 'Bind Bank Card',
		'draw78': 'Confirm Withdrawal Information',
		'draw79': 'Go to WeChat and follow Official Account "<span style="color:#B3B3B3">Firefly Live</span>" for more broadcasters features.',
		'draw80': 'ถอน',
		'draw81': 'หัก FIREs',
		'draw82': 'รวมภาษี 3%',
		'draw83': 'FIREs ที่คงเหลือ',
		'draw84': 'บัญชีผู้รับ',
		'draw85': 'Tel number',
		'draw86': 'input your phone number',
		'draw87': 'Check your Tel number please',
		'draw88': 'Please check your Alipay information',
		'draw89': 'Account Name:',
		'draw90': 'ID Number:',
		'draw91': 'Alipay Account:',
		'draw92': 'Please check your Alipay information',
		"draw93": 'Withdrawal Method:AliPay',
		'draw94': 'FIREs',

		'payoneer1': 'Set up Payoneer withdrawal',
		'payoneer2': 'Please fill in your Payoneer email',
		'payoneer3': 'Payoneer withdrawal account can only be set once and cannot be changed once submitted. Are you sure to set up the following withdrawal account?',
		'payoneer4': 'cancel',
		'payoneer5': 'determine',
		'payoneer6': 'The binding is successful, and the withdrawal will be withdrawn soon',
		'payoneer7': 'The mailbox has already been bound, please re-enter',
		'payoneer8': 'Please enter the amount',
		'payoneer9': 'please enter your vaild email',
		'payoneer10': 'carry out',
		'payoneer11': 'Have a Payoneer account,',
		'payoneer12': 'Go to register&gt',
		'payoneer13': 'Payoneer registration process',
		'payoneer14': 'The maximum amount has been reached',
		'payoneer15': 'Withdrawal Amount',
		'payoneer16': 'Please enter the amount',
		'payoneer17': 'Withdrawable balance $',
		'payoneer18': 'Withdraw all',
		'payoneer19': 'Payoneer withdrawal exchange rate query',
		'payoneer20': 'Payoneer withdrawal',
		'payoneer21': 'The withdrawal will consume :<span class="totalCost"></span> FIREs(Containing tax of <span class="taxCost"></span> FIREs)',
		'payoneer22': 'Payoneer Withdrawl Description',

		"newDraw1": "ชื่อ-นามสกุล",
		"newDraw2": "หมายเลขระบุตัวตน",
		"newDraw3": "บัญชีอาลีเพย์",
		"newDraw4": "ผูกวิธีการถอน",
		"newDraw5": "คุณแน่ใจหรือว่าผูกมัดวิธีการถอนเงินนี้?",
		"newDraw6": "ตรวจสอบ",
		"newDraw7": "ตั้งเป็นค่าเริ่มต้น",
		"newDraw8": "เลิกผูก",
		"newDraw9": "วิธีการถอนแบบไม่มีข้อผูกมัด",
		"newDraw10": "วิธีการถอนเงินสด",
		"newDraw11": "บัญชี:",
		"newDraw12": "คุณแน่ใจหรือว่าจะยกเลิกการเชื่อมโยงวิธีการถอนเงินนี้?",
		"newDraw13": "จำนวนเงินที่ถอน",
		"newDraw14": "หักค่าไฟ (รวมภาษี 3%)",
		"newDraw15": "ไฟที่เหลืออยู่หลังจากการถอนตัว",
		"newDraw16": "จัดการวิธีการถอนเงิน>",
		"newDraw17": "บัตรธนาคาร (ระหว่างประเทศ)",
		"newDraw18": "ประเทศ/ภูมิภาค",
		"newDraw19": "คำแนะนำในการถอนเงิน:",
		"newDraw20": "1. จำนวนถอนเงินสดขั้นต่ำคือ 100.00 เยน และจำนวนการถอนเงินสดต้องเป็นจำนวนเต็ม 100",
		"newDraw21": "2. 10,000 ไฟ = 100.00 เยน",
		"newDraw22": "กำไรก่อนหักภาษี:",
		"newDraw23": "กรุณายืนยันข้อมูล Paypal",
		"newDraw24": "หน่วยงานเรียกเก็บเงิน",
		"newDraw25": "อีเมลแจ้งเตือน",
		"newDraw26": "ส่ง",
		"newDraw27": "เลือกประเทศ",
		"newDraw28": "เลือกหน่วยงานการชำระเงิน",
		"newDraw29": "วงเงินรายเดือน 93,000",
		"newDraw30": "มันเป็นวิธีการถอนเงินเริ่มต้น",
		"newDraw31": "การติดตั้งที่ประสบความสำเร็จ!",
		"newDraw32": "Unbound",
		"newDraw33": "Bank Card(China mainland)",
		"newDraw34": "Registration process",
		"newDraw35": "Enter your email address",
		"newDraw36": " limited monthly",
		"newDraw37": "Bound",
		"newDraw38": "姓氏",
		"newDraw39": "名字",
		"newDraw40": "銀行",
		"newDraw41": "收款城市",
		"newDraw42": "收款地址",
		"newDraw43": "หักค่าไฟ",

	},
	//越南语
	{
		"paytitle": "Nạp GEMs",
		"payrecord": "Ghi âm",
		'visa': '../img/visa.png',
		'gash1': '../img/g-Point.png',
		'gash2': '../img/g-member.png',
		'gash3': '../img/g-credit.png',
		'gash4': '../img/g-phone.png',
		'alipay': '../img/alipay.png',
		'weipay': '../img/weipay.png',
		'molpay': '../img/molpay.png',
		'payatm': '../img/payatm.png',
		'gopay': '../img/gopay.png',
		'alfama': '../img/alfama.png',
		'paywallet': '../img/wallet.png',
		"next": "Bước tiếp theo",
		"ques": "*Nếu gặp sự cố khi nạp tiền, vui lòng liên hệ với bộ phận dịch vụ khách hàng",
		"select": "Vui lòng chọn mục nạp tiền",
		"wallet": "Nạp Ví",
		"card": "Nạp Thẻ Điểm",
		"mol": "Danh sách giới thiệu nạp Thẻ Điểm MOL",
		"moneyTitle": "Nhật ký thu thập",
		"moneyno": "Không có nhật ký Nạp tiền",
		"recordTitle": "Không có nhật ký Nạp tiền",
		'recordTitle2': 'Fan value record',
		"recordno": "Không có nhật ký sử dụng",
		"vipTitle": "Mua",
		"vipno": "Chưa có nhật ký mua",
		"rmbTitle": "Tất cả FIREs",
		"rmbLive": "FIREs Phát Trực tiếp",
		"rmbVchat": "FIREs V-Chat",
		"rmbIm": "FIREs IM",
		"canTitle": "Số lượng rút FIREs",
		"canCurrency": "Chọn tiền tệ:",
		"canFires": "FIREs",
		"canGift": "phần thưởng quà tặng có sẵn",
		"canActivity": "Thưởng Hoạt động",
		"canGolden": "Thu thập đom đóm vàng",
		"canInvitation": "Lời mời - Thu nhập phát trực tiếp",
		"canIncome": "Lời mời - Thu nhập nạp tiền",
		"canOther": "Thu nhập khác",
		"canTotal": "Tổng rút tiền",
		"canCNY": "CNY (1 FIREs = ---CNY)",
		"canNTD": "NTD (1 FIREs = ---NTD)",
		"canUSD": "USD (1 FIREs = ---USD) ",
		"canMYR": "MYR (1 FIREs = ---MYR)",
		"activeTitle": "Nhật ký thưởng hoạt động",
		"activeFires": "Thưởng FIREs:",
		"activeno": "Không có nhật ký",
		"takeRecord": "Nhật ký rút tiền",
		"takeno": "Không có nhật ký rút tiền",
		"takeStatus": "Trạng thái rút tiền",
		"takeApplied": "1. Đã nộp đơn. Người dùng đã gửi yêu cầu rút tiền và đang chờ xét duyệt",
		"takeReviewed": "2. Đã xét duyệt. Nhà điều hành chấp thuận đơn yêu cầu và đang chờ thanh toán",
		"takePaid": "3. Đã thanh toán. Tiền đã được chi trả vào tài khoản của người dùng",
		"takeReturned": "4. Đã hoàn trả. Nhà điều hành từ chối yêu cầu rút tiền của người dùng, và số FIREs đã rút sẽ được hoàn trả vào tài khoản của người dùng",
		"takeAbnormal": "5. Bất thường. Nếu thiết lập tài khoản của người dùng bất thường, số FIREs đã rút sẽ được hoàn trả vào tài khoản của người dùng",
		"takeGot": "Đã hiểu",
		"takeObsolete": "Quá hạn",
		"takeAppliedTitle": "Đã nộp đơn",
		"takeReconciled": "Đã nhất trí",
		"takePaidTitle": "Đã thanh toán",
		"takeReturnedTitle": "Đã hoàn trả",
		"takeRejected": "Thanh toán không thành công",
		"takeWeChat": "Rút tiền Wechat",
		"takeOrderNum": "Số đơn hàng",
		"takeWithdrawal": "Số FIREs rút",
		"dewmoneyTitle": "Nhật ký thu thập",
		"dewmoneyGet": "nhật ký",
		"dewmoneyno": "Không có nhật ký",
		"dewconsumTitle": "Nhật ký sử dụng",
		"dewconsumGet": "Ghi âm",
		"dewconsumno": "Không có nhật ký sử dụng",
		"dewExchangeDew": "Đổi DEWs",
		"dewExchangeRecord": "Ghi âm",
		"dewExchangeTitle1": "Xác định sử dụng",
		"dewExchangeTitle2": "Đổi GEMs",
		"dewExchangeTitle3": "DEWs",
		"dewExchangeBtn": "Mô tả",
		"dewExchangeTitle4": "Đổi vật phẩm thành công!",
		"dewIndex": "Đổi đom đóm vàng",
		"dewExchangeTitle5": "Đổi DEWs",
		"dewExchangeTitle6": "Đom đóm Vàng",
		"dewExchangeTitle7": "Chuyển khoản đom đóm vàng",
		"dewExchangeTitle8": "Để đổi đom đóm",
		"dewExchangeTitle9": "GEMs",
		"dewExchangeTitle10": "Đổi đom đóm với",
		"dewExchangeTitle11": "Đom đóm vàng còn lại",
		"dewExchangeTitle12": "đổi tất cả",
		"dewExchangeTitle13": "Xác nhận đổi",
		"dewExchangeTitle14": "Đã đạt mức tối đa",
		"dewExchangeTitle15": "Không có đom đóm vàng ~",
		"dewExchangeTitle16": "Đổi đom đóm vàng",
		"dewExchangeTitle17": "Hủy",
		"vipmsg10": "Làm sao để hưởng đặc quyền VIP?",
		"vipmsg11": "Mua VIP là cách duy nhất để hưởng đặc quyền VIP",
		"vipmsg12": "Nhấn vào \"\Tôi\"\--->\"\Trung tâm VIP\"\--->\"\Mua VIP\"\, sau khi mua, bạn sẽ tự động trở thành thành viên VIP",
		"vipmsg13": "2. Sau khi mua VIP, đặc quyền của bạn sẽ thay đổi theo cấp độ VIP của bạn",
		"vipmsg14": "Kiểm tra đặc quyền VIP>>",
		"vipmsg15": "3. Trong kỳ hạn VIP, nếu cấp độ VIP của bạn tăng lên, thì đặc quyền của bạn sẽ tự động được nâng cấp",
		"vipmsg16": "Tiêu chuẩn cấp độ VIP",
		"vipmsg17": "Cấp độ VIP",
		"vipmsg18": "Gửi GEMs",
		"vipmsg19": "Firefly có quyền đưa ra lời giải thích cuối cùng",
		"vipmsg20": "Kích hoạt ô tô",
		"vipmsg21": "Điều kiện mua lại",
		"vipmsg22": "Đặc quyền VIP",
		"vipmsg23": "Lái ô tô đã sở hữu trong phòng phát sóng",
		"vipmsg24": "Lưu ý: Nếu không phải là VIP, cho dù bạn sở hữu ô tô, bạn cũng không thể lái ô tô trong phòng phát sóng",
		"vipmsg25": "Mua VIP ngay",
		"vipmsg26": "Kiểm tra ô tô đã sở hữu",
		"vipmsg27": "Không có giới hạn cấp độ cho trò chuyện",
		"vipmsg28": "Hãy trở thành VIP và sẽ không có giới hạn cấp độ khi bạn trò chuyện với bạn bè",
		"vipmsg29": "Huy hiệu VIP",
		"vipmsg30": "Huy hiệu VIP thể hiện trạng thái danh dự của bạn",
		"vipmsg31": "Khung hồ sơ VIP độc quyền",
		"vipmsg32": "Khung hồ sơ VIP sẽ trở nên đặc biệt vì bạn.",
		"vipmsg33": "Khung Ảnh đại diện Độc quyền",
		"vipmsg34": "Người dùng VIP sẽ phát sáng khung ảnh đại diện của mình và trở nên khác biệt với mọi người",
		"vipmsg35": "Thẻ tên độc quyền",
		"vipmsg36": "Thẻ thông tin được tùy chỉnh độc quyền dành cho VIP, một biểu tượng của trạng thái danh dự",
		"vipmsg37": "Hiệu ứng vào phòng đặc biệt",
		"vipmsg38": "Người dùng VIP sẽ nhận được hiệu ứng vào phòng đặc biệt không giống như những người khác, cấp độ VIP khác nhau sẽ có hiệu ứng vào phòng khác nhau.",
		"vipmsg39": "Không bị xóa, không bị tắt tiếng",
		"vipmsg40": "Ngăn bạn không bị cấm nói hoặc xóa khỏi phòng bởi bất kỳ ai khác ngoài những người dùng VIP",
		"vipmsg41": "Phông nền tin nhắn",
		"vipmsg42": "Tùy chỉnh các bong bóng trò chuyện để giúp tin nhắn của bạn trở nên nổi bật giữa đám đông",
		"vipmsg43": "Người vô hình",
		"vipmsg44": "Đặt bản thân trở nên vô hình, hãy trở thành người dùng VIP bí ẩn trong phòng phát sóng",
		"vipmsg45": "Đến \"\Tôi\"\ -> \"\Cài đặt\"\ > \"\Người vô hình\"\ và đặt bản thân trở nên vô hình",
		"vipmsg46": "Tùy chỉnh ô tô",
		"vipmsg47": "Chiếc xe ô tô độc nhất chỉ dành cho bạn trên toàn bộ nền tảng, không có bất kỳ ai khác có thể sở hữu chiếc xe đó",
		"vipmsg48": "Cấp độ VIP từ VIP 51 trở lên",
		"vipmsg49": "Cấp độ VIP từ VIP 11 trở lên",
		"vipmsg50": "Cấp độ VIP từ VIP 1 trở lên",
		"vipmsg51": "Cấp độ VIP từ VIP 21 trở lên",
		"vipmsg52": "Cấp độ VIP từ VIP 31 trở lên",
		"vipmsg53": "Cấp độ VIP từ VIP 41 trở lên",
		"vipmsg54": "Cấp độ VIP từ VIP 51 trở lên",
		"vipmsg55": "Cấp độ VIP từ VIP 41 trở lên",

		'vipmsg56': 'Chat Room',
		'vipmsg57': 'Acquisition conditions',
		'vipmsg58': 'VIP priviledges',
		'vipmsg59': 'Can switch  room as Chat Room after the live ends',
		"vipmsg60": 'Custom Gift',
		"vipmsg61": "VIP level is upon VIP48 or above",
		"vipmsg62": "Contact Custom Service to customize your exclusive gift within VIP validate period",
		"vipmsgImg": "images/font_en.png",
		"gurad1": "Thần hộ mệnh cho",
		"gurad2": "Thần hộ mệnh của tôi",
		"gurad3": "Tháng này",
		"gurad4": "Tháng trước",
		"gurad5": "Trở thành thần hộ mệnh của người phát sóng yêu thích của bạn Ngay!",
		"gurad6": "Thật tuyệt!",
		"gurad7": "Điểm thần hộ mệnh",
		"gurad8": "Xếp hạng",
		"gurad9": "Kích hoạt",
		"gurad10": "Chưa có thần hộ mệnh.",
		"gurad11": "Phát trực tiếp ngay để nhận một!",
		"gurad12": "Chưa có ngày",
		"gurad13": "Không có trên danh sách",
		"gurad14": "Điều khoản Thần hộ mệnh",
		"gurad15": "Làm sao để trở thành thần hộ mệnh?",
		"gurad16": "1. Trong phòng phát sóng, nhấn vào ghế dành cho thần hộ mệnh, bạn cần sử dụng GEMs để kích hoạt thần hộ mệnh cho người phát sóng.",
		"gurad17": "2. Thời gian cho mỗi lần kích hoạt thần hộ mệnh là 30 ngày, bạn có thể kéo dài thời gian thần hộ mệnh bằng cách kích hoạt thần hộ mệnh thêm nhiều lần.",
		"gurad18": "3. Người dùng có thể kích hoạt thần hộ mệnh cho nhiều hơn một người phát sóng. Một người phát sóng có thể có nhiều hơn một thần hộ mệnh.",
		"gurad19": "4. Hoa hồng: người phát sóng chia sẻ 50% hoa hồng (tính theo GEMs đã sử dụng) với thần hộ mệnh của họ.",
		"gurad20": "5. Điểm thần hộ mệnh: được tính theo mỗi quà tặng GEMs đã gửi trong phòng phát sóng trong thời gian hoạt động của thần hộ mệnh. 1 quà tặng GEMs = 1 điểm Thần hộ mệnh.",
		"gurad21": "Đặc quyền của thần hộ mệnh",
		"gurad22": "Sau khi kích hoạt, thần hộ mệnh sẽ nhận được đặc quyền dành cho thần hộ mệnh trong phòng của người phát sóng.",
		"gurad23": "Điều khoản",
		"gurad24": "Huy hiệu thần hộ mệnh",
		"gurad25": "Huy hiệu sẽ xuất hiện khi bạn trò chuyện trong phòng.",
		"gurad26": "Hiệu ứng vào phòng",
		"gurad27": "Huy hiệu thần hộ mệnh sẽ xuất hiện như một danh dự đặc biệt khi bạn vào phòng.",
		"gurad28": "Quà tặng độc quyền",
		"gurad29": "Chỉ thần hộ mệnh mới có quyền gửi quà tặng, những người khác sẽ không có quyền.",
		"gurad30": "Ghế thần hộ mệnh",
		"gurad31": "Ghế ngồi độc quyền dành cho thần hộ mệnh sẽ hiển thị ở vị trí đầu tiên trong phòng. ",
		"gurad32": "Tăng hạng",
		"gurad33": "Ghế ngồi trực tuyến có ưu tiên cao hơn những người dùng khác.",
		"gurad34": "Tự động trở thành bạn bè",
		"gurad35": "Sau khi kích hoạt thần hộ mệnh, bạn và người phát sóng mà bạn hộ mệnh sẽ tự động trở thành bạn bè.",
		"gurad36": "VIP 30 ngày",
		"gurad37": "Sẽ được thưởng VIP 30 ngày.",
		"gurad38": "Không bị cấm bình luận trong phòng",
		"gurad39": "Đặc quyền chỉ có hiệu lực trong phòng của người phát sóng mà bạn hộ mệnh.",
		"gurad40": "Thông báo kích hoạt",
		"gurad41": "Toàn bộ khu vực sẽ nhận được thông báo khi bạn kích hoạt thần hộ mệnh.",
		"gurad42": "Thần hộ mệnh là gì",
		"gurad43": "Thần hộ mệnh tượng trưng cho sự nổi tiếng của người phát sóng. Sử dụng GEMs của bạn để kích hoạt thần hộ mệnh, bạn sẽ hộ mệnh cho người phát sóng yêu thích của mình. Và bạn sẽ nhận được huy hiệu thần hộ mệnh và vô số các đặc quyền chỉ dành riêng cho bạn. Miễn là thời gian thần hộ mệnh của bạn vẫn còn, bạn sẽ có thể hộ mệnh cho người phát sóng yêu thích của mình bằng tình yêu thương. Đặc quyền dành cho thần hộ mệnh sẽ khả dụng miễn là thời gian thần hộ mệnh của bạn vẫn còn hiệu lực.",
		"gurad44": "LƯU Ý: Các đặc quyền dành cho thần hộ mệnh chỉ áp dụng trong phòng trò chuyện của người phát sóng được hộ mệnh.",
		"gurad45": "Hoa hồng thần hộ mệnh",
		"gurad46": "còn lại",
		"gurad47": "Ngày",
		"gurad48": "xếp hạng:",
		"dew1": "DEWs của tôi",
		"dew2": "Có thể đổi DEWs và GEMs với nhau (1 GEMs = 100 DEWs)",
		"dew3": "Tất cả",
		"dew4": "Mua sau",
		"dew5": "Bán ra",
		"dew6": "còn lại sau khi mua vào",
		"dew7": "còn lại sau khi bán ra",
		"dew8": "Chắc chắn",
		"dew9": "Chắc chắn",
		"dew10": "Không đủ GEMs, mua vào thất bại",
		"dew11": "Không đủ DEWs, bán ra thất bại",
		"dew12": "Không đủ GEMs",
		"dew13": "Không đủ GEMs, mua vào thất bại",
		"dew14": "Hủy",
		"dew15": "Để nạp tiền",
		"dew16": "Mua tất cả",
		"dew17": "Bán tất cả",
		"dew18": "GEMs",
		"dew19": "đổi vật phẩm",
		"dew20": "Mua",
		"dew21": "Bán",
		"dew22": "Ghi âm",
		"dew23": "DEWs của tôi",
		"dew24": "Hủy",
		"dew25": "Mô tả",
		"dew26": "Mua vào thành công",
		"dew27": "Không đủ DEWs, vui lòng thử lại",
		"dew28": "Chức năng này đã bị chấm dứt, vui lòng cập nhật lên phiên bản v5.3.0",
		"dew29": "Bán ra thành công",
		"dew30": "Phiên bản hiện tại quá thấp, vui lòng cập nhật lên phiên bản mới nhất",
		"dew31": "Vui lòng nạp GEMs trước",
		"dew32": "Không đủ GEMs, mua vào thất bại",
		"dew33": "Không đủ DEWs, bán ra thất bại",
		"dew34": "Sẽ tốn",
		"dew35": "Sẽ nhận",
		"share1": "Thưởng Lời mời",
		"income1": "Thu nhập Phòng",
		"income2": "Thu nhập Hoạt động",
		"income3": "Thu nhập Lời mời",
		"income4": "Thu nhập Video",
		"income5": "Thu nhập Hộ mệnh",
		"income6": "Thu nhập khác",
		"income7": "Hôm nay",
		"income8": "Tuần này",
		"income9": "Tuần trước",
		"income10": "Tháng này",
		"income11": "Tháng trước",
		"income12": "Tùy chỉnh",
		"income13": "Chọn ngày",
		"income14": "Chưa có dữ liệu thu nhập",
		"income15": "Thời lượng cuộc gọi",
		"income16": "thời lượng quà tặng",
		"income17": "cuộc gọi",
		"income18": "phút",
		"income19": "giây",
		"income20": "năm",
		"income21": "tháng",
		"income22": "Ngày",
		"income23": "Tổng số FIREs (không tính FIREs từ Phòng và Video), chỉ tính dữ liệu sau 00:00 ngày 1/1/2020",
		"income24": "Chắc chắn",
		"income25": "Hủy",
		"income26": "Thu nhập IM",
		"backpack1": "Chỉ hiển thị nhật ký cho tháng cuối cùng",
		"backpack2": "Chưa có nhật ký thu thập",
		"backpack3": "Chưa có nhật ký sử dụng",
		"backpack4": "Nhật ký thu thập",
		"backpack5": "Nhật ký sử dụng",
		"box1": "Chưa có nhật ký",
		"box2": "Quy tắc Hộp May mắn",
		"box3": "1. Cả người phát sóng và khán giả đều có thể gửi Hộp May mắn trong phòng trực tiếp. Những người đáp ứng đủ điều kiện sẽ có thể mở Hộp May mắn để nhận thưởng.",
		"box4": "2. Có hộp câu lạc bộ fans và hộp thông điệp. Sau khi hộp được gửi đi, sẽ có biểu tượng hộp ở bên phải của phòng trực tiếp sẽ được hiển thị trong 3 phút. Hãy cố gắng đáp ứng yêu cầu của hộp trong 3 phút để mở hộp càng sớm càng tốt.",
		"box5": "3. Khi có quá nhiều hộp trong cùng một phòng trực tiếp, những hộp xuất hiện quá hạn sẽ được hiển thị ưu tiên.",
		"box6": "4. Nếu còn kim cương trong hộp sau một khoảng thời gian cố định, số kim cương đó sẽ được hoàn trả vào tài khoản của người đã gửi hộp.",
		"box7": "5. Hộp sẽ không làm tăng giá trị giàu có và không tăng thu nhập của người phát sóng trong phòng trực tiếp.",
		"box8": "Quay lại",
		"box9": "Tổng cộng",
		"box10": "Đã nhận",
		'hot1': 'Mô tả danh sách hàng đầu',
		'hot2': 'Một danh sách nóng là gì',
		'hot3': 'Danh sách nóng được sử dụng để hiển thị mức độ phổ biến hiện tại của tất cả các kênh trực tiếp trong các kênh phổ biến. Tặng quà cho các neo yêu thích và giống như neo. Trò chuyện với neo trong phòng khách có thể làm tăng mức độ phổ biến của neo.',
		'hot4': 'Quy tắc tính toán danh sách hàng đầu',
		'hot5': 'Danh sách nóng được xếp hạng theo giá trị phổ biến của neo. Nếu bạn muốn làm cho thứ hạng neo yêu thích cao hơn, hãy nhanh chóng tăng giá trị phổ biến của cô ấy!',
		'canhelp1': 'Withdrawal Guide',
		'canhelp2': '1. Check how much FIREs you can withdraw?',
		'canhelp3': 'Open the in-app FIRE withdrawal page to check the current amount of FIREs you can withdraw.',
		'canhelp4': '2. How to withdraw the FIREs?',
		'canhelp5': 'We provide three withdrawal methods',
		'canhelp6': '2.1 Bank card transfer: Enter My -> FIRE Withdrawal -> Click Cash Withdrawal -> Bank Card Withdrawal -> Contact Customer Service',
		'canhelp7': '2.2 Paypal: Enter My -> FIRE Withdrawal ->Click Cash Withdrawal->Paypal ->Contact Customer Service',
		'canhelp12': '2.3 Payoneer: Enter My -> FIRE Withdrawal ->Click Cash Withdrawal->Payoneer->Contact Customer Service',
		'canhelp8': '3.What is the withdrawal ratio of FIRE?',
		'canhelp9': '1 FIRE = 0.01 CNY, the minimum withdrawal amount according to the withdrawal method.',
		'canhelp10': '4.Why the income of invitation from the FIRE withdrawal page that have not received in the account?',
		'canhelp11': 'For security and fairness, the income generated by the invitation will be reviewed and distributed once a week(no more than Wednesday). At that time, you can check whether you have received it on the FIRE withdrawal page.',
		'canhelp13': 'For more information about cash withdrawal, you can open WeChat app to search the public account "Firefly Live" to follow and consult.',
		'cashreal0': 'Bank card withdrawals <span style="color:#FF0000;margin-left:0.2rem">Chinese Bank Card Only</span>',
		'cashreal1': 'GIỚI THIỆU',
		'cashreal2': 'Wechat rút tiền từ tài khoản công cộng',
		'cashreal3': 'Rút tiền qua Paypal',
		'cashreal4': 'Kế tiếp',
		'cashreal5': 'Vui lòng liên kết số điện thoại của bạn để đảm bảo an toàn cho tài khoản của bạn',
		'cashreal6': 'Hủy bỏ',
		'cashreal7': 'Chắc chắn rồi',
		'cashreal8': 'Rút tiền mặt',
		'cashreal9': 'Số dư rút tiền mặt',
		'cashreal10': 'Rút tất cả',
		'cashreal11': 'Làm xong',
		'cashreal12': 'Tiền tệ rút tiền Paypal',
		'cashreal13': 'Bạn có chắc chắn rút tiền không?',
		'cashreal14': 'USD',
		'cashreal15': 'tính toán',
		'cashreal16': '?',
		'cashreal17': 'Hủy bỏ',
		'cashreal18': 'Chắc chắn rồi',
		'cashreal19': 'Rút tiền Wechat (đã ràng buộc Wechat)',
		'cashreal20': 'Lưu ý: Tìm kiếm và làm theo "FireflyLive"',
		'cashreal21': 'trong Wechat để rút tiền,',
		'cashreal22': ' ',
		'cashreal23': 'Rút tiền bằng tài khoản chính thức của Wechat',
		'cashreal24': 'Bạn chưa cài đặt Wechat',
		'cashreal25': 'Lượng tiền mặt dưới 20 đô la và không thể rút!',
		'cashreal32': 'Lượng tiền mặt dưới 50 đô la và không thể rút!',
		'cashreal26': 'Chuyển đổi thành số tiền tối đa',
		'cashreal27': 'Lượng tiền mặt phải là bội số nguyên của 10, đã được tự động chuyển đổi cho bạn.',
		'cashreal28': 'Xin lỗi, chỉ có một ứng dụng được cho phép trong vòng một tuần theo yêu cầu.',
		'cashreal29': 'Xin lỗi, số tiền rút tối đa là 100.000.',
		'cashreal30': 'Không đáp ứng tiêu chí rút tiền tối thiểu!',
		'cashreal31': 'Vui lòng nhập số tiền',
		'cashreal32': 'Alipay withdrawal',
		'paypal1': 'Thiết lập rút tiền Paypal',
		'paypal2': 'Vui lòng điền vào email Paypal của bạn',
		'paypal3': 'Tài khoản rút tiền Paypal chỉ có thể được đặt một lần và không thể thay đổi sau khi gửi. Bạn có chắc chắn để thiết lập tài khoản rút tiền sau đây?',
		'paypal4': 'hủy bỏ',
		'paypal5': 'mục đích',
		'paypal6': 'Liên kết thành công và rút tiền sẽ sớm được rút',
		'paypal7': 'Hộp thư đã bị ràng buộc, vui lòng nhập lại',
		'paypal8': 'Vui lòng nhập số tiền',
		'paypal9': 'vui lòng nhập email vaild của bạn',
		'paypal10': 'thực hiện',
		'paypal11': 'Có tài khoản PayPal,',
		'paypal12': 'Truy cập để đăng ký&gt',
		'paypal13': 'Quy trình đăng ký Paypal',
		'paypal14': 'Số tiền tối đa đã đạt được',
		'paypal15': 'Số tiền rút',
		'paypal16': 'Vui lòng nhập số tiền',
		'paypal17': 'Số dư có thể rút $',
		'paypal18': 'Rút tất cả',
		'paypal19': 'Truy vấn tỷ giá rút tiền PayPal',
		'drawend1': 'Ứng dụng rút tiền thành công',
		'drawend2': 'số thứ tự:',
		'drawend3': 'Quay trở lại trang rút tiền Firefly',
		'drawend4': 'Yêu cầu rút tiền của bạn đã được gửi tới Firefly, Firefly sẽ xử lý nó trong vòng 5 - 7 ngày làm việc. Bạn có thể xem tiến trình rút tiền thông qua "Rút tiền từ đom đóm" -> "Hồ sơ rút tiền"',
		'drawend5': 'Nếu bạn chọn rút tiền mặt Paypal, nền tảng sẽ không tính phí xử lý và thanh toán sẽ được thực hiện theo số tiền rút tiền mặt của bạn. Tuy nhiên, vì Paypal sẽ tính một khoản phí xử lý nhất định, số tiền bạn nhận được có thể khác với số tiền rút tiền mặt.',
		'drawend6': 'Xem truy vấn tỷ giá rút tiền Paypal',
		'wechat1': 'Thiết lập rút tiền Wechat',
		'wechat2': 'Vui lòng liên kết Wechat trước',
		'wechat3': 'Wechat bị ràng buộc sẽ trở thành tài khoản rút tiền của bạn',
		'wechat4': 'Ràng buộc Wechat',
		'wechat5': 'Rút tiền Wechat (bạn đã ràng buộc Wechat)',
		'wechat6': 'Mô tả: Wechat tìm kiếm và theo dõi "Firefly Live"',
		'wechat7': 'trong Wechat để rút tiền',
		'wechat8': 'trong Wechat để rút tiền',
		'share1': 'FireFly invites to share',
		'share2': 'Firefly Live-80% of the entire network is divided into the highest platform, watch live streaming coins every day;',
		'mdew1': 'GEM hiện tại',
		'help1': 'Intimacy description',
		'help2': 'How to calculate Intimacy?',
		'help3': 'When both of you interact ,Intimacy will increase as per GEMs or DEWs consumed',
		'help4': 'Bottle message',
		'help5': '(Props message,1 bottle message=2 Intimacy)',
		'help6': 'Private message',
		'help7': '(1 private message of DEWs =100 Intimacy)',
		'help8': 'Private gifts',
		'help9': '(1 GEM gift=100 Intimacy)',
		'help10': 'Broadcast room gifts',
		'help11': '(1 GEM gift=100 Intimacy)',
		'help12': 'Video/voice call',
		'help13': '(1 GEM call=100 Intimacy)',
		'help14': 'Note:If GEMs/DEWs are returned in whatever ways,the GEMS/DEWs won\'\t be counted as Intimacy.DEWs gifts sent in the broadcast room won\'\t be counted as Intimacy',
		'help15': 'What is  Intimacy used for?',
		'help16': '20000 Intimacy can unlock Intimacy Friend .Private message will be free after being Intimacy Friend',
		'help17': '5000 Intimacy can unlock voice/video call',
		'help18': '5000 Intimacy can unlock private message function',

		'news1': 'Forward',
		'news2': 'Reply',
		'news3': 'Unlock',
		'news4': 'Please input the title (5-30 characters)',
		'news5': 'Please input the content,',
		'news6': 'Contents that violate the laws and regulations of your country or  infringe on others are forbidden to post. Pornographic information and politically sensitive content are forbidden to post.',
		'news7': 'Items',
		'news8': 'Qty',
		'news9': 'Picture comments',
		'news10': 'VIP level is upon VIP41 or above',
		'news11': 'Can comment on the posts with picture',
		'news12': 'Title should have 5 characters at least',
		'news13': 'Fan value',

		'play1': 'Game hasn\'\t started',
		'play2': 'Game flow',
		'play3': 'Game fail',
		'play4': 'Game win',
		'play5': 'Firends PK',
		'play6': 'Hot PK',
		'play7': 'World PK',
		'play8': 'Activity PK',
		'play9': 'PK record',
		'play10': 'Game record',
		'play11': 'Out in round',
		'play12': '',
		'play13': 'Lucky Wheel',
		'play14': 'Stopped in',
		'play15': 'round',
		'play16': 'total',
		'turn1': 'Game rules',
		'turn2': '1 The lucky wheel can only be started by the broadcaster in the PK',
		'turn3': '2 4 participants is required to start the game ,or the game will be cancelled',
		'turn4': '3 Entrance fee will be deducted  when take part in the game.When the game starts ,the entrance fee won\'\t be returned',
		'turn5': '4 When game starts, final player will be the winner and win the awards',
		'turn6': '5 Only the broadcaster whose player win the game can get the bonus',
		'turn7': '6 When game starts,no matter what happens ,the game will go on',
		'turn8': '7 Game period of "The Lucky Wheel" is not involved in the "live broadcast reward event" activity.',
		'turn9': '8 All rights reserved by the platform',

		'newTurn1': '1. Lucky Wheel is opened in this chat room.',
		'newTurn2': '2. Lucky Wheel can only start with at least 4 people, otherwise it will continue to wait.',
		'newTurn3': '3. Lucky Wheel requires pre-deduction of the entrance fee. The game cancellation or manual quit will be refunded, and it cannot be refunded after the game starts.',
		'newTurn4': '4. After the game starts, the final player who stays wins all entrance fees for this round of the game.',
		'newTurn5': '5. The final interpretation right belongs to the platform and has nothing to do with Apple Inc.',

		'profit1': 'Room income',
		'profit2': 'Broadcast gift',
		'profit3': 'Mic gift',
		'profit4': 'Mic gift income share',
		'profit5': ' in ',
		'profit6': ' room',
		'profit7': ' send ',
		'profit8': 'send out',

		"upright1": "Activity",
		"upright2": "Online service",
		"upright3": "Rules",
		"upright4": "Record",
		"upright5": "Share",
		"upright6": "Customer service",
		"upright7": "Hi, what can I do for you?",
		"tRank1": 'This Week',
		"tRank2": 'Last Week',
		"tRank3": 'Total',
		"tRank4": 'Members',
		"tRank5": 'Group Points',
		'tRank6': 'Group points contributor',
		'tRank7': "'s points contributor",
		'tRank8': "No<br>Rank",
		'tRank9': 'No Data',
		"aboutUs1": 'User Agreement',
		"aboutUs2": 'Privacy Agreement',

		"drawNew1": 'Current income (pre-tax)',
		"draw1": 'Firefly withdrawal',
		"draw2": 'Total FIREs',
		"draw3": 'Currently available FIREs',
		"draw4": 'Cash withdrawal',
		"draw5": 'Exchange GEMs',
		"draw6": 'The minimum amount of cash is ¥100, and must be an integer of 100.<br> 10000FIREs = ¥100.',
		'draw7': 'This kind of bank withdrawal is not supported,please contact customer service or set other withdrawal method.',
		'draw8': 'Sure',
		'draw9': 'Not binded Phone numner yet',
		'draw10': 'Goto  "personal"->Settings->',
		'draw11': 'click "Binding phone number" to bind',
		'draw12': 'Cancel',
		'draw13': 'Withdrawal application has been summit',
		'draw14': 'please note the withdrawal progress via Notice',
		'draw15': 'Got it',
		'draw16': 'Withdrawal method set successfully',
		'draw17': 'RMB',
		'draw18': 'USD',
		'draw19': 'You have had a Wechat withdrawal account ,please contact customer service to deal with',
		'draw20': 'Sure to withdraw',
		'draw21': 'to account',
		'draw22': 'Alipay',
		'draw23': '?',
		'draw24': 'Set withdrawal method',
		'draw25': 'Alipay withdrawal',
		'draw26': 'Most peolple select this',
		'draw27': 'Bank withdrawal',
		'draw28': 'Paypal withdrawal',
		'draw29': 'Available withdrawal dollars',
		'draw30': 'Next',
		'draw31': 'Please select the country of your bank',
		'draw32': 'China Mainland',
		'draw33': 'Other countries or regions',
		'draw34': 'Please select withdrawal method',
		'draw35': 'Alipay account is the phone number or email provided  while you registered Alipay',
		'draw36': 'Summit',
		'draw37': 'Example',
		'draw38': 'Check Alipay account',
		'draw39': '1 Open Alipay application ,tap 「Mine」',
		'draw40': '2 Check your real name and Alipay account',
		'draw41': 'Note:Alipay account is the phone number or email provided  while you registered Alipay',
		'draw42': 'Alipay withdrawal account can only be set for one time,',
		'draw43': 'Once summit ,it can\'\t be changed  any more.。',
		'draw44': 'Sure to set bellow withdrawal account?',
		'draw45': 'Real name',
		'draw46': 'Please input your Alipay account',
		'draw47': 'Please input your real name',
		'draw48': 'Bank card withdrawals',
		'draw49': 'Please check the details carefully to avoid affecting  your withdrawal',
		'draw50': 'As for bank subbranch and province/city information,please consult your bank',
		'draw51': 'Input your bank card number',
		'draw52': 'bank:not indentified',
		'draw53': 'The real name of the bank account',
		'draw54': 'Bank subbranch(optional)',
		'draw55': 'Province of the bank(optional)',
		'draw56': 'City of the bank(optional)',
		'draw57': 'Province',
		'draw58': 'City',
		'draw59': 'Bank withdrawal account can only be set for one time',
		'draw60': 'Real name of the bank account',
		'draw61': 'Withdrawal currency',
		'draw62': 'Insufficient withdrawable amount, unable to withdraw',
		'draw63': 'Insufficient withdrawable amount, unable to withdraw',
		'draw64': 'Bank',
		'draw65': 'WeChat',
		'draw66': 'Bank name(optional)',
		'draw67': 'As per latest rules,your identify certification is required to withdraw',
		'draw68': 'Please fill in the identify number',
		'draw69': 'The information is used for withdrawal only,your information will be protected strictly',
		'draw70': 'Confirm your identify number',
		'draw71': 'Identify number bound successfuly',
		'draw72': 'Please fill in right identify number',
		'draw73': 'Please choose your country',
		'draw74': 'Please fill in your identify number',
		'draw75': 'Identify number',
		'draw76': 'Bank number',
		'draw77': 'Bind Bank Card',
		'draw78': 'Confirm Withdrawal Information',
		'draw79': 'Truy cập WeChat và theo dõi Tài khoản chính thức "<span style="color:#B3B3B3">Firefly Live</span>" để biết thêm các tính năng của người phát sóng.',
		'draw80': 'Rút tiền',
		'draw81': 'Khấu trừ FIRE',
		'draw82': 'Đã bao gồm thuế 3%',
		'draw83': 'FIRE còn lại',
		'draw84': 'Tài khoản người nhận',
		'draw85': 'Tel number',
		'draw86': 'input your phone number',
		'draw87': 'Check your Tel number please',
		'draw88': 'Please check your Alipay information',
		'draw89': 'Account Name:',
		'draw90': 'ID Number:',
		'draw91': 'Alipay Account:',
		'draw92': 'Please check your Alipay information',
		"draw93": 'Withdrawal Method:AliPay',
		'draw94': 'FIREs',
		'payoneer1': 'Set up Payoneer withdrawal',
		'payoneer2': 'Please fill in your Payoneer email',
		'payoneer3': 'Payoneer withdrawal account can only be set once and cannot be changed once submitted. Are you sure to set up the following withdrawal account?',
		'payoneer4': 'cancel',
		'payoneer5': 'determine',
		'payoneer6': 'The binding is successful, and the withdrawal will be withdrawn soon',
		'payoneer7': 'The mailbox has already been bound, please re-enter',
		'payoneer8': 'Please enter the amount',
		'payoneer9': 'please enter your vaild email',
		'payoneer10': 'carry out',
		'payoneer11': 'Have a Payoneer account,',
		'payoneer12': 'Go to register&gt',
		'payoneer13': 'Payoneer registration process',
		'payoneer14': 'The maximum amount has been reached',
		'payoneer15': 'Withdrawal Amount',
		'payoneer16': 'Please enter the amount',
		'payoneer17': 'Withdrawable balance $',
		'payoneer18': 'Withdraw all',
		'payoneer19': 'Payoneer withdrawal exchange rate query',
		'payoneer20': 'Payoneer withdrawal',
		'payoneer21': 'The withdrawal will consume :<span class="totalCost"></span> FIREs(Containing tax of <span class="taxCost"></span> FIREs)',
		'payoneer22': 'Payoneer Withdrawl Description',

		"newDraw1": "Tên thật",
		"newDraw2": "Số CMND",
		"newDraw3": "tài khoản Alipay",
		"newDraw4": "Phương thức rút tiền ràng buộc",
		"newDraw5": "Bạn có chắc chắn ràng buộc phương thức rút tiền này không?",
		"newDraw6": "Kiểm tra",
		"newDraw7": "đặt làm mặc định",
		"newDraw8": "cởi trói",
		"newDraw9": "Phương thức rút tiền không ràng buộc",
		"newDraw10": "Phương thức rút tiền",
		"newDraw11": "tài khoản:",
		"newDraw12": "Bạn có chắc chắn hủy liên kết phương thức rút tiền này không?",
		"newDraw13": "Số tiền rút",
		"newDraw14": "Khấu trừ FIRE (đã bao gồm thuế 3%)",
		"newDraw15": "Số FIRE còn lại sau khi rút tiền",
		"newDraw16": "Quản lý phương thức rút tiền>",
		"newDraw17": "Thẻ ngân hàng (Quốc tế)",
		"newDraw18": "quốc gia/khu vực",
		"newDraw19": "Hướng dẫn rút tiền:",
		"newDraw20": "1. Số tiền rút tiền mặt tối thiểu là 100,00 Yên và số tiền rút tiền mặt phải là số nguyên 100",
		"newDraw21": "2. 10.000 CHÁY = ¥100,00",
		"newDraw22": "Lợi nhuận trước thuế:",
		"newDraw23": "Vui lòng xác nhận thông tin Paypal",
		"newDraw24": "Đại lý sưu tâm",
		"newDraw25": "Email thông bao",
		"newDraw26": "Gửi",
		"newDraw27": "Chọn quốc gia",
		"newDraw28": "Chọn cơ quan thanh toán",
		"newDraw29": "Giới hạn hàng tháng 93.000",
		"newDraw30": "Đây là phương thức rút tiền mặc định",
		"newDraw31": "Thiết lập thành công!",
		"newDraw32": "Unbound",
		"newDraw33": "Bank Card(China mainland)",
		"newDraw34": "Registration process",
		"newDraw35": "Enter your email address",
		"newDraw36": " limited monthly",
		"newDraw37": "Bound",
		"newDraw38": "姓氏",
		"newDraw39": "名字",
		"newDraw40": "銀行",
		"newDraw41": "收款城市",
		"newDraw42": "收款地址",
		"newDraw43": "Khấu trừ FIRE",

	},
	//日语
	{
		"paytitle": "GEMsチャージ",
		"payrecord": "録画",
		'visa': '../img/visa.png',
		'gash1': '../img/g-Point.png',
		'gash2': '../img/g-member.png',
		'gash3': '../img/g-credit.png',
		'gash4': '../img/g-phone.png',
		'alipay': '../img/alipay.png',
		'weipay': '../img/weipay.png',
		'molpay': '../img/molpay.png',
		'payatm': '../img/payatm.png',
		'gopay': '../img/gopay.png',
		'alfama': '../img/alfama.png',
		'paywallet': '../img/wallet.png',
		"next": "次のステップ",
		"ques": "*チャージに問題が発生した場合はカスタマーサービスにお問い合わせください",
		"select": "チャージアイテムを選択してください",
		"wallet": "ウォレットのチャージ",
		"card": "ポイントカードのチャージ",
		"mol": "MOLポイントカード引換表",
		"moneyTitle": "履歴を取得",
		"moneyno": "チャージ履歴なし",
		"recordTitle": "チャージ履歴なし",
		'recordTitle2': 'Fan value record',
		"recordno": "消費履歴なし",
		"vipTitle": "購入",
		"vipno": "購入履歴がまだありません",
		"rmbTitle": "FIREs合計",
		"rmbLive": "ライブFIREs",
		"rmbVchat": "VチャットFIREs",
		"rmbIm": "IM FIREs",
		"canTitle": "FIREs出金額",
		"canCurrency": "通貨選択:",
		"canFires": "FIREs",
		"canGift": "利用可能なギフトリワード",
		"canActivity": "アクティビティボーナス",
		"canGolden": "Golden fireflyの獲得",
		"canInvitation": "ライブ配信招待収入",
		"canIncome": "招待チャージ収入",
		"canOther": "その他の収入",
		"canTotal": "合計引き出し額",
		"canCNY": "CNY(1 FIREs = ---CNY)",
		"canNTD": "NTD(1 FIREs = ---NTD)",
		"canUSD": "USD(1 FIREs = ---USD) ",
		"canMYR": "MYR(1 FIREs = ---MYR) ",
		"activeTitle": "アクティビティボーナス履歴",
		"activeFires": "FIREsボーナス:",
		"activeno": "履歴なし",
		"takeRecord": "引き出し履歴",
		"takeno": "引き出し履歴なし",
		"takeStatus": "引き出し状況",
		"takeApplied": "1.申請済み、ユーザーは引き出しリクエストを送信し確認を待っています",
		"takeReviewed": "2.確認済み、オペレーターが申請を受付、支払いを待機しています",
		"takePaid": "3.支払い済み、引き出し金額がユーザーのアカウントに支払われました。",
		"takeReturned": "4.払い戻し済み、オペレーターがユーザーの引き出しリクエストを拒否し、FIREsがユーザーアカウントに払い戻されました",
		"takeAbnormal": "5.エラー、ユーザーアカウントの設定に誤りがある場合は、取り消されたFIREsがユーザーアカウントに返却されます",
		"takeGot": "了解",
		"takeObsolete": "古いバージョン",
		"takeAppliedTitle": "申請済み",
		"takeReconciled": "調整済み",
		"takePaidTitle": "支払い済み",
		"takeReturnedTitle": "戻ってきた",
		"takeRejected": "支払いに失敗しました",
		"takeWeChat": "Wechatの引き出し",
		"takeOrderNum": "注文番号",
		"takeWithdrawal": "FIREs引き出し",
		"dewmoneyTitle": "履歴を取得",
		"dewmoneyGet": "履歴",
		"dewmoneyno": "履歴なし",
		"dewconsumTitle": "消費履歴",
		"dewconsumGet": "録画",
		"dewconsumno": "消費履歴なし",
		"dewExchangeDew": "DEWs交換",
		"dewExchangeRecord": "録画",
		"dewExchangeTitle1": "使用を決定",
		"dewExchangeTitle2": "GEMsの交換",
		"dewExchangeTitle3": "DEWs",
		"dewExchangeBtn": "定義",
		"dewExchangeTitle4": "償還が完了しました!",
		"dewIndex": "GOLDEN FIREFLYの償還",
		"dewExchangeTitle5": "DEWsの交換",
		"dewExchangeTitle6": "Golden firefly",
		"dewExchangeTitle7": "Golden fireflyの送金",
		"dewExchangeTitle8": "Fireflyを利用するには",
		"dewExchangeTitle9": "GEMs",
		"dewExchangeTitle10": "Fireflyの交換",
		"dewExchangeTitle11": "残りのFirefly",
		"dewExchangeTitle12": "すべてを交換",
		"dewExchangeTitle13": "交換を確認",
		"dewExchangeTitle14": "最大値に達しました",
		"dewExchangeTitle15": "Golden fireflyがありません",
		"dewExchangeTitle16": "Golden firefly交換",
		"dewExchangeTitle17": "キャンセル",
		"vipmsg10": "VIP特典を利用するには?",
		"vipmsg11": "VIP特典を利用するにはVIPを購入する必要があります",
		"vipmsg12": "ClickMe --->VIPセンター--->VIP購入にアクセスしてください。購入すると自動的にVIPメンバーになります",
		"vipmsg13": "2) VIP購入者のVIPレベルによって特典が異なります",
		"vipmsg14": "VIP特典を確認>>",
		"vipmsg15": "3)VIP期間中にVIPレベルが上がると特典が自動的にアップグレードされます",
		"vipmsg16": "VIPレベル標準",
		"vipmsg17": "VIPレベル",
		"vipmsg18": "GEMsを送信",
		"vipmsg19": "FIREFLYは最終的な説明の権利を留保します",
		"vipmsg20": "車を有効化する",
		"vipmsg21": "取得条件",
		"vipmsg22": "VIP特典",
		"vipmsg23": "配信部屋で車を運転する",
		"vipmsg24": "注:VIP以外の場合は車を所有していても配信部屋で運転することはできません",
		"vipmsg25": "VIPをすぐに購入",
		"vipmsg26": "所有している車を確認",
		"vipmsg27": "チャットのレベル制限なし",
		"vipmsg28": "VIPなので友だちとチャットする際のレベル制限はありません",
		"vipmsg29": "VIPバッジ",
		"vipmsg30": "VIPバッジ名誉あるステータスを示すものです",
		"vipmsg31": "VIP限定プロフィールフレーム",
		"vipmsg32": "VIPプロフィールフレームでスペシャルに演出。",
		"vipmsg33": "限定アバターフレーム",
		"vipmsg34": "VIPユーザーのフレームは特別な輝き",
		"vipmsg35": "専用ネームカード",
		"vipmsg36": "VIP限定のカスタマイズされた情報カードは名誉あるステータスを示すものです",
		"vipmsg37": "入室時の特別エフェクト",
		"vipmsg38": "VIPユーザーは、他のユーザーにはない特別な入室時のエフェクトを利用できます。",
		"vipmsg39": "キックアウト、消音なし",
		"vipmsg40": "VIP以外のユーザーは、あなたの発言を禁止したり部屋からキックアウトすることができません",
		"vipmsg41": "メッセージ背景",
		"vipmsg42": "カスタマイズされたチャットのふきだしにより、あなたのメッセージを誰よりも目立たせることができます",
		"vipmsg43": "透明になる",
		"vipmsg44": "透明になって配信部屋に謎のVIPとして参加しましょう",
		"vipmsg45": "Me->設定->透明になるにアクセスして設定してください",
		"vipmsg46": "車のカスタマイズ",
		"vipmsg47": "プラットフォーム内であなただけの限定車をゲットしましょう。他のユーザーは誰もその車を所有することはできません",
		"vipmsg48": "VIPレベルがVIP51以上です",
		"vipmsg49": "VIPレベルがVIP11以上です",
		"vipmsg50": "VIPレベルがVIP1以上です",
		"vipmsg51": "VIPレベルがVIP21以上です",
		"vipmsg52": "VIPレベルがVIP31以上です",
		"vipmsg53": "VIPレベルがVIP41以上です",
		"vipmsg54": "VIPレベルがVIP51以上です",
		"vipmsg55": "VIPレベルがVIP41以上です",

		'vipmsg56': 'Chat Room',
		'vipmsg57': 'Acquisition conditions',
		'vipmsg58': 'VIP priviledges',
		'vipmsg59': 'Can switch  room as Chat Room after the live ends',
		"vipmsg60": 'Custom Gift',
		"vipmsg61": "VIP level is upon VIP48 or above",
		"vipmsg62": "Contact Custom Service to customize your exclusive gift within VIP validate period",
		"vipmsgImg": "images/font_en.png",
		"gurad1": "ガーディアン:",
		"gurad2": "マイガーディアン",
		"gurad3": "今月",
		"gurad4": "先月",
		"gurad5": "今すぐお気に入りの配信者のガーディアンになりましょう!",
		"gurad6": "最高の体験!",
		"gurad7": "ガーディアンポイント",
		"gurad8": "ランク",
		"gurad9": "開いた",
		"gurad10": "まだガーディアンがいません。",
		"gurad11": "今すぐ配信でガーディアンをゲット!",
		"gurad12": "まだ日付がありません",
		"gurad13": "リストにありません",
		"gurad14": "ガーディアン規約",
		"gurad15": "ガーディアンになるには?",
		"gurad16": "1)配信部屋でガーディアンシートクリックします。配信者のガーディアンとなるにはGEMsを使用する必要があります。",
		"gurad17": "2)ガーディアンとなってからの有効期間は30日です。再度有効化するとガーディアン期間を延長できます。",
		"gurad18": "3)ユーザーは複数の配信者に対してガーディアンになることができます。配信者は複数のガーディアンを持つことができます。",
		"gurad19": "4)コミッション:配信者はガーディアンが消費するGEMsのコミッション50%を共有します。",
		"gurad20": "5)ガーディアンポイント:ガーディアン期間中に配信部屋で送信されたGEMsギフトごとに計算されます。1GEMsギフト= 1ガーディアンポイント。",
		"gurad21": "ガーディアンの特典",
		"gurad22": "一度有効化されると、ガーディアンは配信者の部屋でガーディアン特典を取得できます。",
		"gurad23": "規約",
		"gurad24": "ガーディアンバッジ",
		"gurad25": "部屋でチャットする際に表示されます。",
		"gurad26": "入室時のエフェクト",
		"gurad27": "入室時にガーディアンバッジが特別な名誉のシンボルとして表示されます。",
		"gurad28": "限定ギフト",
		"gurad29": "ガーディアンのみがギフトを送信する権利を持っており、他のユーザーにはありません。",
		"gurad30": "ガーディアンシート",
		"gurad31": "部屋の最初の位置に表示される専用のガーディアンシート。",
		"gurad32": "ランクアップ",
		"gurad33": "オンラインシートは他のユーザーよりも優先されます。",
		"gurad34": "自動的に友だちに",
		"gurad35": "ガーディアンになると配信者と自動的に友だちになります。",
		"gurad36": "30日間VIP",
		"gurad37": "ボーナスとして30日間VIPとなります。",
		"gurad38": "アクセス・発言禁止対象外",
		"gurad39": "この特典はガーディアンとなっている配信者の部屋でのみ有効です。",
		"gurad40": "有効化通知",
		"gurad41": "ガーディアンになると地域全体に通知が届きます。",
		"gurad42": "ガーディアンとは",
		"gurad43": "ガーディアンの数は配信者の人気を象徴するものです。GEMsを使用するとお気に入りの配信者のガーディアンになることができます。また、限定のガーディアンバッジやたくさんの特典をお楽しみいただけます。ガーディアンステータスが有効である限り、 配信者に愛を届け続けることができます。",
		"gurad44": "注:ガーディアン特典は対象となる配信者のチャットルームでのみ適用されます。",
		"gurad45": "ガーディアン委員会",
		"gurad46": "残り",
		"gurad47": "日",
		"gurad48": "ランク:",
		"dew1": "マイDEWs",
		"dew2": "DEWsおよびGEMsを交換できます(1 GEMs = 100 DEWs)",
		"dew3": "オールイン",
		"dew4": "購入",
		"dew5": "売り切れ",
		"dew6": "購入後の残高",
		"dew7": "売却後の残高",
		"dew8": "わかりました",
		"dew9": "わかりました",
		"dew10": "GEMsが不十分",
		"dew11": "DEWsが不十分",
		"dew12": "GEMsが不十分",
		"dew13": "GEMsが不十分",
		"dew14": "キャンセル",
		"dew15": "チャージする",
		"dew16": "すべて購入",
		"dew17": "すべて売却",
		"dew18": "GEMs",
		"dew19": "交換",
		"dew20": "購入",
		"dew21": "売却",
		"dew22": "録画",
		"dew23": "マイDEWs",
		"dew24": "キャンセル",
		"dew25": "定義",
		"dew26": "購入完了",
		"dew27": "DEWsが不足しています。もう一度やり直してください",
		"dew28": "この機能は終了しました。v5.3.0バージョンに更新してください",
		"dew29": "売却完了",
		"dew30": "現在のバージョンは以前のものです。最新バージョンに更新してください",
		"dew31": "最初にGEMsをチャージしてください",
		"dew32": "GEMsが不足しているため購入できませんでした",
		"dew33": "DEWsが不足しているため売却できませんでした",
		"dew34": "消費",
		"dew35": "取得",
		"share1": "招待ボーナス",
		"income1": "部屋の収入",
		"income2": "活動収入",
		"income3": "招待収入",
		"income4": "ビデオ収入",
		"income5": "ガード収入",
		"income6": "その他の収入",
		"income7": "今日",
		"income8": "今週",
		"income9": "先週",
		"income10": "今月",
		"income11": "先月",
		"income12": "カスタム",
		"income13": "日付を選択",
		"income14": "収入データはまだありません",
		"income15": "通話時間",
		"income16": "ギフト期間",
		"income17": "通話",
		"income18": "分",
		"income19": "秒",
		"income20": "年",
		"income21": "月",
		"income22": "日",
		"income23": "合計FIREs(部屋のFIREs、ビデオのFIREsは除外)は、2020/1/1 00:00以降のデータのみを使用して計算されます",
		"income24": "わかりました",
		"income25": "キャンセル",
		"income26": "IM収入",
		"backpack1": "最新の1か月の履歴のみを表示する",
		"backpack2": "取得履歴はまだありません",
		"backpack3": "消費履歴はまだありません",
		"backpack4": "取得履歴",
		"backpack5": "消費履歴",
		"box1": "まだ履歴がありません",
		"box2": "ラッキーボックスルール",
		"box3": "1)配信者と視聴者の両方が配信部屋でラッキーボックスを送信できます。要件を満たすユーザーは、ラッキーボックスを開いてリワードを獲得する資格があります。",
		"box4": "2)ファンクラブクラブボックスとメッセージボックスがあります。ボックスが送信された後、そこに3分表示されるライブルームの右下にあるボックスのアイコンがあります。できるだけ早く箱を開けるように3分で箱の要件を満たすようにしてください。",
		"box5": "3)同じ配信部屋に多数のボックスがある場合、期限超過のボックスが優先して表示されます",
		"box6": "4)一定時間後にボックスにダイヤモンドが残っている場合、ボックスを送った人のアカウントにダイヤモンドが返却されます。",
		"box7": "5)ボックスは富の価値や該当する部屋の配信者の収入を増加させるものではありません。",
		"box8": "戻る",
		"box9": "合計",
		"box10": "受け取り済み",
		'hot1': 'トップリストの説明',
		'hot2': 'ホットリストとは何ですか?',
		'hot3': 'ホットリストは、人気のあるチャンネルのすべてのライブチャンネルの現在の人気を示すために使用されます。お気に入りのアンカーにギフトを贈り、アンカーのようにしてください。ライブルームでアンカーとチャットすることで、アンカーの人気を高めることができます。',
		'hot4': '上位リストの計算ルール',
		'hot5': 'ホットリストはアンカーの人気値に応じてランク付けされているので、お気に入りのアンカーのランクを上げたい場合は人気値を急上昇させましょう!',
		'canhelp1': 'Withdrawal Guide',
		'canhelp2': '1. Check how much FIREs you can withdraw?',
		'canhelp3': 'Open the in-app FIRE withdrawal page to check the current amount of FIREs you can withdraw.',
		'canhelp4': '2. How to withdraw the FIREs?',
		'canhelp5': 'We provide three withdrawal methods',
		'canhelp6': '2.1 Bank card transfer: Enter My -> FIRE Withdrawal -> Click Cash Withdrawal -> Bank Card Withdrawal -> Contact Customer Service',
		'canhelp7': '2.2 Paypal: Enter My -> FIRE Withdrawal ->Click Cash Withdrawal->Paypal ->Contact Customer Service',
		'canhelp12': '2.3 Payoneer: Enter My -> FIRE Withdrawal ->Click Cash Withdrawal->Payoneer->Contact Customer Service',
		'canhelp8': '3.What is the withdrawal ratio of FIRE?',
		'canhelp9': '1 FIRE = 0.01 CNY, the minimum withdrawal amount according to the withdrawal method.',
		'canhelp10': '4.Why the income of invitation from the FIRE withdrawal page that have not received in the account?',
		'canhelp11': 'For security and fairness, the income generated by the invitation will be reviewed and distributed once a week(no more than Wednesday). At that time, you can check whether you have received it on the FIRE withdrawal page.',
		'canhelp13': 'For more information about cash withdrawal, you can open WeChat app to search the public account "Firefly Live" to follow and consult.',
		'cashreal0': 'Bank card withdrawals <span style="color:#FF0000;margin-left:0.2rem">Chinese Bank Card Only</span>',
		'cashreal1': 'Firefly 撤退',
		'cashreal2': 'Wechat 撤退',
		'cashreal3': 'Paypal 撤退',
		'cashreal4': '次',
		'cashreal5': 'アカウントの安全のため、電話番号をバインドしてください',
		'cashreal6': 'キャンセル',
		'cashreal7': '承知しました',
		'cashreal8': 'Cash 現金引き出し',
		'cashreal9': '現金引き出し残高',
		'cashreal10': 'Withdraw all',
		'cashreal11': 'すべて撤回',
		'cashreal12': 'Paypalの引き出し通貨',
		'cashreal13': '出金しますか',
		'cashreal14': 'USD',
		'cashreal15': 'アカウントへ ',
		'cashreal16': '?',
		'cashreal17': 'キャンセル',
		'cashreal18': '承知しました',
		'cashreal19': 'Wechatの撤退(Wechatをすでにバインド)',
		'cashreal20': '注:検索とフォロー "Firefly 螢火蟲"',
		'cashreal21': '撤退するWechatで、',
		'cashreal22': ' ',
		'cashreal23': 'Wechat公式アカウントで出金',
		'cashreal24': 'Wechatをまだインストールしていません',
		'cashreal25': '現金の金額は$ 20未満で、引き出すことはできません!',
		'cashreal32': '現金の金額は$ 50未満で、引き出すことはできません!',
		'cashreal26': '現金化可能な最大金額に換算',
		'cashreal27': '現金の金額は10の整数倍でなければなりません。これは自動的に変換されます。',
		'cashreal28': '申し訳ありませんが、必要に応じて1週間以内に1つの申請のみ許可されます。',
		'cashreal29': '申し訳ありませんが、最大引き出し金額は100,000です。',
		'cashreal30': '最小引き出し基準を満たしていませんでした!',
		'cashreal31': '金額を入力してください',
		'cashreal32': 'Alipay withdrawal',
		'paypal1': 'Paypalの引き出しを設定する',
		'paypal2': 'Paypalのメールアドレスを入力してください',
		'paypal3': 'Paypalの引き出し口座は一度しか設定できず、一度送信すると変更できません。 次の引き出しアカウントを設定してよろしいですか?',
		'paypal4': 'キャンセル',
		'paypal5': '決める',
		'paypal6': 'バインドは成功し、引き出しはまもなく取り消されます',
		'paypal7': 'メールボックスは既にバインドされています。再入力してください',
		'paypal8': '金額を入力してください',
		'paypal9': '有効なメールアドレスを入力してください',
		'paypal10': '実施する',
		'paypal11': 'PayPalアカウントを持っている、',
		'paypal12': '登録に行く&gt',
		'paypal13': 'Paypal登録プロセス',
		'paypal14': '最大金額に達しました',
		'paypal15': '引き出し金額',
		'paypal16': '金額を入力してください',
		'paypal17': '引き出し可能な残高$',
		'paypal18': 'すべて撤回',
		'paypal19': 'PayPal出金為替レートクエリ',
		'drawend1': '出金記録',
		'drawend2': '注文番号:',
		'drawend3': 'ホタル撤退ページに戻る',
		'drawend4': '出金リクエストはFireflyに送信され、5〜7営業日以内に処理されます。 出金状況は「出金」→「出金記録」で確認できます',
		'drawend5': '注:Paypalの引き出しの場合、Firefly Liveは取引手数料を請求しません。ただし、Paypalは特定の取引手数料を請求するため、受け取った実際の金額は、要求された引き出し金額と異なる場合があります。詳細については、',
		'drawend6': 'Paypalの公式ウェブサイトで確認できます。',
		'wechat1': 'Wechatの引き出しを設定する',
		'wechat2': '最初にWechatをバインドしてください',
		'wechat3': 'バインドされたWechatが引き出しアカウントになります',
		'wechat4': 'Wechatをバインド',
		'wechat5': 'Wechatの撤退(Wechatをすでにバインド)',
		'wechat6': '注:「Firefly Live」を検索してフォローしてください',
		'wechat7': '撤退するWechatで',
		'wechat8': '撤退するWechatで',
		'share1': 'FireFlyは共有を招待します',
		'share2': 'Firefly Live-ネットワーク全体の80%が最高のプラットフォームに分割され、毎日ライブストリーミングコインを視聴します。',
		'mdew1': '現在のGEM',
		'help1': 'Intimacy description',
		'help2': 'How to calculate Intimacy?',
		'help3': 'When both of you interact ,Intimacy will increase as per GEMs or DEWs consumed',
		'help4': 'Bottle message',
		'help5': '(Props message,1 bottle message=2 Intimacy)',
		'help6': 'Private message',
		'help7': '(1 private message of DEWs =100 Intimacy)',
		'help8': 'Private gifts',
		'help9': '(1 GEM gift=100 Intimacy)',
		'help10': 'Broadcast room gifts',
		'help11': '(1 GEM gift=100 Intimacy)',
		'help12': 'Video/voice call',
		'help13': '(1 GEM call=100 Intimacy)',
		'help14': 'Note:If GEMs/DEWs are returned in whatever ways,the GEMS/DEWs won\'\t be counted as Intimacy.DEWs gifts sent in the broadcast room won\'\t be counted as Intimacy',
		'help15': 'What is  Intimacy used for?',
		'help16': '20000 Intimacy can unlock Intimacy Friend .Private message will be free after being Intimacy Friend',
		'help17': '5000 Intimacy can unlock voice/video call',
		'help18': '5000 Intimacy can unlock private message function',

		'news1': 'Forward',
		'news2': 'Reply',
		'news3': 'Unlock',
		'news4': 'Please input the title (5-30 characters)',
		'news5': 'Please input the content,',
		'news6': 'Contents that violate the laws and regulations of your country or  infringe on others are forbidden to post. Pornographic information and politically sensitive content are forbidden to post.',
		'news7': 'Items',
		'news8': 'Qty',
		'news9': 'Picture comments',
		'news10': 'VIP level is upon VIP41 or above',
		'news11': 'Can comment on the posts with picture',
		'news12': 'Title should have 5 characters at least',
		'news13': 'Fan value',

		'play1': 'Game hasn\'\t started',
		'play2': 'Game flow',
		'play3': 'Game fail',
		'play4': 'Game win',
		'play5': 'Firends PK',
		'play6': 'Hot PK',
		'play7': 'World PK',
		'play8': 'Activity PK',
		'play9': 'PK record',
		'play10': 'Game record',
		'play11': 'Out in round',
		'play12': '',
		'play13': 'Lucky Wheel',
		'play14': 'Stopped in',
		'play15': 'round',
		'play16': 'total',
		'turn1': 'Game rules',
		'turn2': '1 The lucky wheel can only be started by the broadcaster in the PK',
		'turn3': '2 4 participants is required to start the game ,or the game will be cancelled',
		'turn4': '3 Entrance fee will be deducted  when take part in the game.When the game starts ,the entrance fee won\'\t be returned',
		'turn5': '4 When game starts, final player will be the winner and win the awards',
		'turn6': '5 Only the broadcaster whose player win the game can get the bonus',
		'turn7': '6 When game starts,no matter what happens ,the game will go on',
		'turn8': '7 Game period of "The Lucky Wheel" is not involved in the "live broadcast reward event" activity.',
		'turn9': '8 All rights reserved by the platform',

		'newTurn1': '1. Lucky Wheel is opened in this chat room.',
		'newTurn2': '2. Lucky Wheel can only start with at least 4 people, otherwise it will continue to wait.',
		'newTurn3': '3. Lucky Wheel requires pre-deduction of the entrance fee. The game cancellation or manual quit will be refunded, and it cannot be refunded after the game starts.',
		'newTurn4': '4. After the game starts, the final player who stays wins all entrance fees for this round of the game.',
		'newTurn5': '5. The final interpretation right belongs to the platform and has nothing to do with Apple Inc.',

		'profit1': 'Room income',
		'profit2': 'Broadcast gift',
		'profit3': 'Mic gift',
		'profit4': 'Mic gift income share',
		'profit5': ' in ',
		'profit6': ' room',
		'profit7': ' send ',
		'profit8': 'send out',

		"upright1": "Activity",
		"upright2": "Online service",
		"upright3": "Rules",
		"upright4": "Record",
		"upright5": "Share",
		"upright6": "Customer service",
		"upright7": "Hi, what can I do for you?",
		"tRank1": 'This Week',
		"tRank2": 'Last Week',
		"tRank3": 'Total',
		"tRank4": 'Members',
		"tRank5": 'Group Points',
		'tRank6': 'Group points contributor',
		'tRank7': "'s points contributor",
		'tRank8': "No<br>Rank",
		'tRank9': 'No Data',
		"aboutUs1": 'User Agreement',
		"aboutUs2": 'Privacy Agreement',

		"drawNew1": 'Current income (pre-tax)',
		"draw1": 'Firefly withdrawal',
		"draw2": 'Total FIREs',
		"draw3": 'Currently available FIREs',
		"draw4": 'Cash withdrawal',
		"draw5": 'Exchange GEMs',
		"draw6": 'The minimum amount of cash is ¥100, and must be an integer of 100.<br> 10000FIREs = ¥100.',
		'draw7': 'This kind of bank withdrawal is not supported,please contact customer service or set other withdrawal method.',
		'draw8': 'Sure',
		'draw9': 'Not binded Phone numner yet',
		'draw10': 'Goto  "personal"->Settings->',
		'draw11': 'click "Binding phone number" to bind',
		'draw12': 'Cancel',
		'draw13': 'Withdrawal application has been summit',
		'draw14': 'please note the withdrawal progress via Notice',
		'draw15': 'Got it',
		'draw16': 'Withdrawal method set successfully',
		'draw17': 'RMB',
		'draw18': 'USD',
		'draw19': 'You have had a Wechat withdrawal account ,please contact customer service to deal with',
		'draw20': 'Sure to withdraw',
		'draw21': 'to account',
		'draw22': 'Alipay',
		'draw23': '?',
		'draw24': 'Set withdrawal method',
		'draw25': 'Alipay withdrawal',
		'draw26': 'Most peolple select this',
		'draw27': 'Bank withdrawal',
		'draw28': 'Paypal withdrawal',
		'draw29': 'Available withdrawal dollars',
		'draw30': 'Next',
		'draw31': 'Please select the country of your bank',
		'draw32': 'China Mainland',
		'draw33': 'Other countries or regions',
		'draw34': 'Please select withdrawal method',
		'draw35': 'Alipay account is the phone number or email provided  while you registered Alipay',
		'draw36': 'Summit',
		'draw37': 'Example',
		'draw38': 'Check Alipay account',
		'draw39': '1 Open Alipay application ,tap 「Mine」',
		'draw40': '2 Check your real name and Alipay account',
		'draw41': 'Note:Alipay account is the phone number or email provided  while you registered Alipay',
		'draw42': 'Alipay withdrawal account can only be set for one time,',
		'draw43': 'Once summit ,it can\'\t be changed  any more.。',
		'draw44': 'Sure to set bellow withdrawal account?',
		'draw45': 'Real name',
		'draw46': 'Please input your Alipay account',
		'draw47': 'Please input your real name',
		'draw48': 'Bank card withdrawals',
		'draw49': 'Please check the details carefully to avoid affecting  your withdrawal',
		'draw50': 'As for bank subbranch and province/city information,please consult your bank',
		'draw51': 'Input your bank card number',
		'draw52': 'bank:not indentified',
		'draw53': 'The real name of the bank account',
		'draw54': 'Bank subbranch(optional)',
		'draw55': 'Province of the bank(optional)',
		'draw56': 'City of the bank(optional)',
		'draw57': 'Province',
		'draw58': 'City',
		'draw59': 'Bank withdrawal account can only be set for one time',
		'draw60': 'Real name of the bank account',
		'draw61': 'Withdrawal currency',
		'draw62': 'Insufficient withdrawable amount, unable to withdraw',
		'draw63': 'Insufficient withdrawable amount, unable to withdraw',
		'draw64': 'Bank',
		'draw65': 'WeChat',
		'draw66': 'Bank name(optional)',
		'draw67': 'As per latest rules,your identify certification is required to withdraw',
		'draw68': 'Please fill in the identify number',
		'draw69': 'The information is used for withdrawal only,your information will be protected strictly',
		'draw70': 'Confirm your identify number',
		'draw71': 'Identify number bound successfuly',
		'draw72': 'Please fill in right identify number',
		'draw73': 'Please choose your country',
		'draw74': 'Please fill in your identify number',
		'draw75': 'Identify number',
		'draw76': 'Bank number',
		'draw77': 'Bind Bank Card',
		'draw78': 'Confirm Withdrawal Information',
		'draw79': 'WeChat で公式アカウント「<span style="color:#B3B3B3">Firefly Live</span>」をフォローして、他の配信者の機能をご利用ください。',
		'draw80': '出金',
		'draw81': '既定の FIRE',
		'draw82': '3% の税込み',
		'draw83': '残りの FIRE',
		'draw84': '受取人口座',
		'draw85': 'Tel number',
		'draw86': 'input your phone number',
		'draw87': 'Check your Tel number please',
		'draw88': 'Please check your Alipay information',
		'draw89': 'Account Name:',
		'draw90': 'ID Number:',
		'draw91': 'Alipay Account:',
		'draw92': 'Please check your Alipay information',
		"draw93": 'Withdrawal Method:AliPay',
		'draw94': 'FIREs',
		'payoneer1': 'Set up Payoneer withdrawal',
		'payoneer2': 'Please fill in your Payoneer email',
		'payoneer3': 'Payoneer withdrawal account can only be set once and cannot be changed once submitted. Are you sure to set up the following withdrawal account?',
		'payoneer4': 'cancel',
		'payoneer5': 'determine',
		'payoneer6': 'The binding is successful, and the withdrawal will be withdrawn soon',
		'payoneer7': 'The mailbox has already been bound, please re-enter',
		'payoneer8': 'Please enter the amount',
		'payoneer9': 'please enter your vaild email',
		'payoneer10': 'carry out',
		'payoneer11': 'Have a Payoneer account,',
		'payoneer12': 'Go to register&gt',
		'payoneer13': 'Payoneer registration process',
		'payoneer14': 'The maximum amount has been reached',
		'payoneer15': 'Withdrawal Amount',
		'payoneer16': 'Please enter the amount',
		'payoneer17': 'Withdrawable balance $',
		'payoneer18': 'Withdraw all',
		'payoneer19': 'Payoneer withdrawal exchange rate query',
		'payoneer20': 'Payoneer withdrawal',
		'payoneer21': 'The withdrawal will consume :<span class="totalCost"></span> FIREs(Containing tax of <span class="taxCost"></span> FIREs)',
		'payoneer22': 'Payoneer Withdrawl Description',

		"newDraw1": "真實姓名",
		"newDraw2": "識別番号",
		"newDraw3": "Alipay アカウント",
		"newDraw4": "出金方法をバインド",
		"newDraw5": "この出金方法をバインドしてもよろしいですか?",
		"newDraw6": "チェック",
		"newDraw7": "デフォルトに設定",
		"newDraw8": "バインド解除",
		"newDraw9": "引き出し方法のバインド解除",
		"newDraw10": "現金引き出し方法",
		"newDraw11": "アカウント:",
		"newDraw12": "この引き出し方法のバインドを解除してもよろしいですか?",
		"newDraw13": "引き出し金額",
		"newDraw14": "FIRE を差し引く (3% の税金を含む)",
		"newDraw15": "出金後の残りの FIRE",
		"newDraw16": "出金方法の管理>",
		"newDraw17": "銀行カード (国際)",
		"newDraw18": "国 / 地域",
		"newDraw19": "引き出し手順:",
		"newDraw20": "1. 最小現金出金額は 100.00 円で、現金出金額は 100 の整数である必要があります",
		"newDraw21": "2. 10,000 FIRE = ¥100.00",
		"newDraw22": "税引き前収益:",
		"newDraw23": "Paypal 情報を確認してください",
		"newDraw24": "回収機関",
		"newDraw25": "通知メール",
		"newDraw26": "送信",
		"newDraw27": "国を選択",
		"newDraw28": "支払い機関を選択してください",
		"newDraw29": "月間限度額 93,000",
		"newDraw30": "デフォルトの引き出し方法です",
		"newDraw31": "セットアップに成功しました!",
		"newDraw32": "Unbound",
		"newDraw33": "Bank Card(China mainland)",
		"newDraw34": "Registration process",
		"newDraw35": "Enter your email address",
		"newDraw36": " limited monthly",
		"newDraw37": "Bound",
		"newDraw38": "姓氏",
		"newDraw39": "名字",
		"newDraw40": "銀行",
		"newDraw41": "收款城市",
		"newDraw42": "收款地址",
		"newDraw43": "FIRE を差し引く",
	},
	//印尼语		
	{
		"paytitle": "Isi Ulang GEMs",
		"payrecord": "Rekam",
		'visa': '../img/visa.png',
		'gash1': '../img/g-Point.png',
		'gash2': '../img/g-member.png',
		'gash3': '../img/g-credit.png',
		'gash4': '../img/g-phone.png',
		'alipay': '../img/alipay.png',
		'weipay': '../img/weipay.png',
		'molpay': '../img/molpay.png',
		'payatm': '../img/payatm.png',
		'gopay': '../img/gopay.png',
		'alfama': '../img/alfama.png',
		'paywallet': '../img/wallet.png',
		"next": "Langkah selanjutnya",
		"ques": "*Jika mengalami masalah dengan isi ulang, silakan hubungi layanan pelanggan",
		"select": "Pilih item isi ulang",
		"wallet": "Isi Ulang Dompet",
		"card": "Isi Ulang Kartu Poin",
		"mol": "Daftar referensi isi ulang Kartu Poin MOL",
		"moneyTitle": "Riwayat Pendapatan",
		"moneyno": "Tak ada riwayat Isi Ulang",
		"recordTitle": "Tak ada riwayat Isi Ulang",
		'recordTitle2': 'Fan value record',
		"recordno": "Tak ada riwayat pemakaian",
		"vipTitle": "Beli",
		"vipno": "Belum ada riwayat pembelian",
		"rmbTitle": "Total FIREs",
		"rmbLive": "FIREs Siaran",
		"rmbVchat": "FIREs V-Chat",
		"rmbIm": "FIREs IM",
		"canTitle": "Jumlah penarikan FIREs",
		"canCurrency": "Pilih mata uang:",
		"canFires": "FIREs",
		"canGift": "imbalan hadiah tersedia",
		"canActivity": "Bonus aktivitas",
		"canGolden": "Firefly Emas yang diperoleh",
		"canInvitation": "Pendapatan Siaran Langsung-Undangan",
		"canIncome": "Pendapatan Isi Ulang-Undangan",
		"canOther": "Pendapatan lainnya",
		"canTotal": "Total penarikan",
		"canCNY": "CNY(1 FIREs = ---CNY)",
		"canNTD": "NTD(1 FIREs = ---NTD)",
		"canUSD": "USD(1 FIREs = ---USD) ",
		"canMYR": "MYR(1 FIREs = ---MYR) ",
		"activeTitle": "Riwayat Bonus Aktivitas",
		"activeFires": "Bonus FIREs:",
		"activeno": "Tak ada riwayat",
		"takeRecord": "Riwayat penarikan",
		"takeno": "Tak ada riwayat penarikan",
		"takeStatus": "Status penarikan",
		"takeApplied": "1 Diajukan, Pengguna mengajukan permintaan penarikan dan menunggu peninjauan",
		"takeReviewed": "2 Ditinjau, Operator telah menyetujui pengajuan dan menunggu pembayaran",
		"takePaid": "3. Dibayar, Pembayaran telah dikirimkan ke akun pengguna.",
		"takeReturned": "4. Dikembalikan, Operator menolak pengajuan penarikan pengguna, dan FIREs yang ditarik akan dikembalikan ke akun pengguna",
		"takeAbnormal": "5. Abnormal, Jika pengaturan akun pengguna tidak normal, FIREs yang ditarik akan dikembalikan ke akun pengguna",
		"takeGot": "Saya paham",
		"takeObsolete": "Kedaluwarsa",
		"takeAppliedTitle": "Diajukan",
		"takeReconciled": "Rekonsiliasi",
		"takePaidTitle": "Dibayar",
		"takeReturnedTitle": "Dikembalikan",
		"takeRejected": "Pembayaran gagal",
		"takeWeChat": "Penarikan Wechat",
		"takeOrderNum": "Nomor order",
		"takeWithdrawal": "FIREs Ditarik",
		"dewmoneyTitle": "Riwayat Pendapatan",
		"dewmoneyGet": "riwayat",
		"dewmoneyno": "Tak ada riwayat",
		"dewconsumTitle": "Riwayat pemakaian",
		"dewconsumGet": "Rekam",
		"dewconsumno": "Tak ada riwayat pemakaian",
		"dewExchangeDew": "Tukar dew",
		"dewExchangeRecord": "Rekam",
		"dewExchangeTitle1": "Tentukan penggunaan",
		"dewExchangeTitle2": "Penukaran GEMs",
		"dewExchangeTitle3": "DEWs",
		"dewExchangeBtn": "Tentukan",
		"dewExchangeTitle4": "Penukaran berhasil!",
		"dewIndex": "Penukaran Firefly Emas",
		"dewExchangeTitle5": "Penukaran DEWs",
		"dewExchangeTitle6": "Firefly Emas",
		"dewExchangeTitle7": "Transfer Firefly Emas",
		"dewExchangeTitle8": "Untuk menukarkan Firefly",
		"dewExchangeTitle9": "GEMs",
		"dewExchangeTitle10": "Tukarkan Firefly dengan",
		"dewExchangeTitle11": "Sisa Firefly Emas",
		"dewExchangeTitle12": "tukarkan semua",
		"dewExchangeTitle13": "Konfirmasikan penukaran",
		"dewExchangeTitle14": "Telah mencapai batas maksimum",
		"dewExchangeTitle15": "Tak ada Firefly Emas ~",
		"dewExchangeTitle16": "Penukaran Firefly Emas",
		"dewExchangeTitle17": "Batal",
		"vipmsg10": "Bagaimana cara mendapatkan privilese VIP?",
		"vipmsg11": "Privilese VIP hanya bisa didapatkan dengan membeli VIP",
		"vipmsg12": "Klik Saya\"\--->\"\Pusat VIP\"\--->\"\Beli VIP\"\, setelah membeli VIP, Anda akan otomatis menjadi anggota VIP",
		"vipmsg13": "2 Setelah membeli VIP, privilese yang dapat Anda nikmati ditentukan oleh level VIP Anda",
		"vipmsg14": "Lihat privilese VIP>>",
		"vipmsg15": "3 Selama masa VIP, jika level VIP Anda meningkat, privilese Anda juga akan ikut meningkat",
		"vipmsg16": "Level VIP Standar",
		"vipmsg17": "Level VIP",
		"vipmsg18": "Kirim GEMs",
		"vipmsg19": "Firefly berhak atas interpretasi akhir",
		"vipmsg20": "Aktifkan mobil",
		"vipmsg21": "Syarat penerimaan",
		"vipmsg22": "Privilese VIP",
		"vipmsg23": "Mengemudikan mobil di ruang siaran",
		"vipmsg24": "Catatan: Bagi non-VIP, meski Anda memiliki mobil, Anda tetap tak dapat mengemudikannya di ruang siaran",
		"vipmsg25": "Beli VIP segera",
		"vipmsg26": "Lihat koleksi mobil",
		"vipmsg27": "Tak ada batas level untuk obrolan",
		"vipmsg28": "Sebagai VIP, Anda dapat mengobrol dengan teman tanpa batasan level",
		"vipmsg29": "Lencana VIP",
		"vipmsg30": "Lencana VIP menampilkan status kehormatan Anda",
		"vipmsg31": "Bingkai profil VIP eksklusif",
		"vipmsg32": "Bingkai profil VIP khusus untuk Anda.",
		"vipmsg33": "Bingkai Avatar eksklusif",
		"vipmsg34": "Pengguna VIP memiliki bingkai avatar bercahaya yang unik",
		"vipmsg35": "Kartu nama eksklusif",
		"vipmsg36": "Kartu nama kustom eksklusif bagi VIP, lambang status kehormatan",
		"vipmsg37": "Efek entri istimewa",
		"vipmsg38": "Pengguna VIP menikmati efek entri yang megah saat masuk ke ruang, level VIP yang berbeda memiliki efek entri yang berbeda.",
		"vipmsg39": "Tak dapat diusir, tak dapat disenyapkan",
		"vipmsg40": "Anda tak dapat disenyapkan atau diusir dari ruang oleh pengguna non-VIP",
		"vipmsg41": "Latar belakang pesan",
		"vipmsg42": "Balon obrolan kustom membuat pesan Anda menonjol di antara yang lainnya",
		"vipmsg43": "Tersembunyi",
		"vipmsg44": "Sembunyikan diri Anda, jadilah VIP misterius di ruang siaran",
		"vipmsg45": "Buka Saya\"\->\"\Pengaturan\"\->\"\Tersembunyi\"\, sembunyikan diri Anda",
		"vipmsg46": "Kustomisasi mobil",
		"vipmsg47": "Mobil unik eksklusif khusus untuk Anda, satu-satunya di seluruh platform",
		"vipmsg48": "Level VIP mencapai VIP51 atau di atasnya",
		"vipmsg49": "Level VIP mencapai VIP11 atau di atasnya",
		"vipmsg50": "Level VIP mencapai VIP1 atau di atasnya",
		"vipmsg51": "Level VIP mencapai VIP21 atau di atasnya",
		"vipmsg52": "Level VIP mencapai VIP31 atau di atasnya",
		"vipmsg53": "Level VIP mencapai VIP41 atau di atasnya",
		"vipmsg54": "Level VIP mencapai VIP51 atau di atasnya",
		"vipmsg55": "Level VIP mencapai VIP41 atau di atasnya",

		'vipmsg56': 'Chat Room',
		'vipmsg57': 'Acquisition conditions',
		'vipmsg58': 'VIP priviledges',
		'vipmsg59': 'Can switch  room as Chat Room after the live ends',
		"vipmsg60": 'Custom Gift',
		"vipmsg61": "VIP level is upon VIP48 or above",
		"vipmsg62": "Contact Custom Service to customize your exclusive gift within VIP validate period",
		"vipmsgImg": "images/font_en.png",
		"gurad1": "Garda selama",
		"gurad2": "Garda saya",
		"gurad3": "Bulan ini",
		"gurad4": "Bulan lalu",
		"gurad5": "Jadilah garda untuk penyiar favorit Anda sekarang!",
		"gurad6": "Luar biasa!",
		"gurad7": "Poin garda",
		"gurad8": "Peringkat",
		"gurad9": "Aktifkan Garda",
		"gurad10": "Belum ada garda.",
		"gurad11": "Siaran sekarang untuk mendapatkan garda!",
		"gurad12": "Belum ada tanggal",
		"gurad13": "Tidak dalam daftar",
		"gurad14": "Ketentuan Garda",
		"gurad15": "Bagaimana cara menjadi garda?",
		"gurad16": "1 Di ruang siaran, klik kursi garda. Anda perlu menggunakan GEMs untuk mengaktifkan garda untuk penyiar.",
		"gurad17": "2 Durasi untuk setiap garda yang diaktifkan adalah 30 hari. Anda dapat memperpanjang durasi garda dengan mengaktifkan kembali garda saat durasinya berakhir.",
		"gurad18": "3 Pengguna dapat mengaktifkan status garda untuk lebih dari satu penyiar. Satu penyiar dapat memiliki lebih dari satu garda.",
		"gurad19": "4 Komisi: penyiar berbagi 50% komisi dengan gardanya untuk GEMs yang digunakan.",
		"gurad20": "5 Poin Garda: Poin Garda dihitung berdasarkan hadiah GEMs yang dikirimkan di ruang siaran selama durasi garda. 1 hadiah GEMs = 1 poin Garda.",
		"gurad21": "Privilese Garda",
		"gurad22": "Setelah diaktifkan, garda akan mendapatkan privilese garda di ruang penyiar.",
		"gurad23": "Ketentuan",
		"gurad24": "Lencana Garda",
		"gurad25": "Lencana ini ditampilkan saat Anda mengobrol di ruang siaran.",
		"gurad26": "Efek entri",
		"gurad27": "Lencana Garda akan ditampilkan sebagai lambang kehormatan saat Anda masuk ke ruang siaran.",
		"gurad28": "Hadiah eksklusif",
		"gurad29": "Hanya garda yang dapat mengirim hadiah, orang lain tidak dapat mengirim hadiah.",
		"gurad30": "Kursi garda",
		"gurad31": "Kursi garda eksklusif yang ditampilkan di posisi pertama di ruang siaran.",
		"gurad32": "Naik peringkat",
		"gurad33": "Kursi online ini memiliki prioritas yang lebih tinggi dari pengguna lainnya.",
		"gurad34": "Berteman secara otomatis",
		"gurad35": "Setelah mengaktifkan garda, Anda dan penyiar yang Anda kawal akan menjadi teman secara otomatis.",
		"gurad36": "VIP 30 hari",
		"gurad37": "Akan mendapatkan VIP 30 hari sebagai bonus.",
		"gurad38": "Kekebalan terhadap larangan komentar dan ruang",
		"gurad39": "Privilese ini hanya berlaku di ruang penyiar yang Anda kawal.",
		"gurad40": "Pemberitahuan aktivasi",
		"gurad41": "Seluruh wilayah akan menerima pemberitahuan saat Anda mengaktifkan garda.",
		"gurad42": "Apa itu Garda?",
		"gurad43": "Garda mencerminkan popularitas penyiar. Gunakan GEMs untuk mengaktifkan status garda. Anda akan mengawal penyiar favorit Anda dan menerima lencana garda dan berbagai privilese khusus untuk Anda. Selama status garda aktif, Anda dapat mengawal dan mendukung penyiar favorit Anda dengan penuh cinta, serta menikmati privilese garda.",
		"gurad44": "CATATAN: Privilese garda hanya berlaku di ruang obrolan penyiar yang dikawal.",
		"gurad45": "Komisi garda",
		"gurad46": "tersisa",
		"gurad47": "hari",
		"gurad48": "peringkat:",
		"dew1": "DEWs saya",
		"dew2": "DEWs dan GEMs dapat ditukarkan (1 GEMs = 100 DEWs)",
		"dew3": "Semuanya",
		"dew4": "Beli dalam",
		"dew5": "Jual habis",
		"dew6": "tersisa setelah membeli",
		"dew7": "tersisa setelah menjual",
		"dew8": "Ya",
		"dew9": "Ya",
		"dew10": "GEMs tidak cukup, gagal membeli",
		"dew11": "DEWs tidak cukup, gagal menjual",
		"dew12": "GEMs tidak cukup",
		"dew13": "GEMs tidak cukup, gagal membeli",
		"dew14": "Batal",
		"dew15": "Untuk mengisi ulang",
		"dew16": "Beli semua",
		"dew17": "Jual semua",
		"dew18": "GEMs",
		"dew19": "tukarkan",
		"dew20": "Beli",
		"dew21": "Jual",
		"dew22": "Rekam",
		"dew23": "DEWs saya",
		"dew24": "Batal",
		"dew25": "Tentukan",
		"dew26": "Berhasil dibeli",
		"dew27": "DEWs tidak cukup, silakan coba lagi",
		"dew28": "Fungsi telah dihentikan, silakan tingkatkan ke versi v5.3.0",
		"dew29": "Berhasil dijual",
		"dew30": "Versi yang sedang digunakan terlalu rendah, mohon tingkatkan ke versi terbaru",
		"dew31": "Mohon isi ulang GEMs lebih dulu",
		"dew32": "GEMs tidak cukup, gagal membeli",
		"dew33": "DEWs tidak cukup, gagal menjual",
		"dew34": "Akan menggunakan",
		"dew35": "Akan mendapatkan",
		'draw36': 'Summit',
		'draw37': 'Example',
		'draw38': 'Check Alipay account',
		'draw39': '1 Open Alipay application ,tap 「Mine」',
		'draw40': '2 Check your real name and Alipay account',
		'draw41': 'Note:Alipay account is the phone number or email provided  while you registered Alipay',
		'draw42': 'Alipay withdrawal account can only be set for one time,',
		'draw43': 'Once summit ,it can\'\t be changed  any more.。',
		'draw44': 'Sure to set bellow withdrawal account?',
		'draw45': 'Real name',
		'draw46': 'Please input your Alipay account',
		'draw47': 'Please input your real name',
		'draw48': 'Bank card withdrawals',
		'draw49': 'Please check the details carefully to avoid affecting  your withdrawal',
		'draw50': 'As for bank subbranch and province/city information,please consult your bank',
		'draw51': 'Input your bank card number',
		'draw52': 'bank:not indentified',
		'draw53': 'The real name of the bank account',
		'draw54': 'Bank subbranch(optional)',
		'draw55': 'Province of the bank(optional)',
		'draw56': 'City of the bank(optional)',
		'draw57': 'Province',
		'draw58': 'City',
		'draw59': 'Bank withdrawal account can only be set for one time',
		'draw60': 'Real name of the bank account',
		'draw61': 'Withdrawal currency',
		'draw62': 'Insufficient withdrawable amount, unable to withdraw',
		'draw63': 'Insufficient withdrawable amount, unable to withdraw',
		'draw64': 'Bank',
		'draw65': 'WeChat',
		'draw66': 'Bank name(optional)',
		'draw67': 'As per latest rules,your identify certification is required to withdraw',
		'draw68': 'Please fill in the identify number',
		'draw69': 'The information is used for withdrawal only,your information will be protected strictly',
		'draw70': 'Confirm your identify number',
		'draw71': 'Identify number bound successfuly',
		'draw72': 'Please fill in right identify number',
		'draw73': 'Please choose your country',
		'draw74': 'Please fill in your identify number',
		'draw75': 'ID card',
		'draw76': 'Bank number',
		'draw77': 'Bind Bank Card',
		'draw78': 'Confirm Withdrawal Information',
		'draw79': 'Go to WeChat and follow Official Account "<span style="color:#B3B3B3">Firefly Live</span>" for more broadcasters features.',
		'draw80': 'Withdraw',
		'draw81': 'Deduct',
		'draw82': '3% tax included',
		'draw83': 'Remaining FIREs',
		'draw84': 'Receiver account',
		'draw85': 'Tel number',
		'draw86': 'input your phone number',
		'draw87': 'Check your Tel number please',
		'draw88': 'Please check your Alipay information',
		'draw89': 'Account Name:',
		'draw90': 'ID Number:',
		'draw91': 'Alipay Account:',
		'draw92': 'Please check your Alipay information',
		"draw93": 'Withdrawal Method:AliPay',
		'draw94': 'FIREs',
		"share1": "Bonus Undangan",
		"income1": "Pendapatan Ruang",
		"income2": "Pendapatan Aktivitas",
		"income3": "Pendapatan Undangan",
		"income4": "Pendapatan Video",
		"income5": "Pendapatan Garda",
		"income6": "Pendapatan lainnya",
		"income7": "Hari ini",
		"income8": "Minggu ini",
		"income9": "Minggu lalu",
		"income10": "Bulan ini",
		"income11": "Bulan lalu",
		"income12": "Kustom",
		"income13": "Pilih tanggal",
		"income14": "Belum ada data pendapatan",
		"income15": "Durasi panggilan",
		"income16": "durasi hadiah",
		"income17": "panggilan",
		"income18": "menit",
		"income19": "dtk",
		"income20": "tahun",
		"income21": "bulan",
		"income22": "hari",
		"income23": "Total FIREs(tidak termasuk FIREs Ruang dan Video)hanya menghitung data setelah 2020/1/1 00:00",
		"income24": "Ya",
		"income25": "Batal",
		"income26": "Pendapatan IM",
		"backpack1": "Tampilkan hanya riwayat satu bulan terakhir",
		"backpack2": "Belum ada riwayat pendapatan",
		"backpack3": "Belum ada riwayat pemakaian",
		"backpack4": "Riwayat pendapatan",
		"backpack5": "Riwayat pemakaian",
		"box1": "Belum ada riwayat",
		"box2": "Peraturan Kotak Keberuntungan",
		"box3": "1. Penyiar dan penonton dapat mengirim Kotak Keberuntungan di ruang siaran. Orang yang memenuhi syarat dapat membuka Kotak Keberuntungan untuk mendapatkan imbalan.",
		"box4": "2. Ada Fans Club Box dan Message Box. Setelah kotak dikirim, akan ada ikon kotak di bawah kanan ruang tamu yang akan dipaparkan selama 3 menit. Coba memenuhi keperluan kotak dalam 3 menit untuk membuka kotak secepat mungkin.",
		"box5": "3. Jika ada banyak kotak dalam satu ruang siaran, kotak yang terdahulu akan ditampilkan sebagai prioritas",
		"box6": "4. Jika ada berlian yang tersisa di dalam kotak setelah durasinya berakhir, berlian ini akan dikembalikan ke akun orang yang mengirimkan kotak tersebut.",
		"box7": "5. Kotak tidak meningkatkan kekayaan dan tidak meningkatkan pendapatan penyiar di ruang siaran.",
		"box8": "Kembali",
		"box9": "Total",
		"box10": "Diterima",
		'hot1': 'Deskripsi daftar teratas',
		'hot2': 'Apa itu daftar panas?',
		'hot3': 'Daftar Panas digunakan untuk menunjukkan popularitas saat ini dari semua saluran langsung di saluran populer. Berikan hadiah kepada jangkar favorit dan seperti jangkar. Mengobrol dengan jangkar di ruang langsung dapat meningkatkan popularitas jangkar.',
		'hot4': 'Aturan perhitungan daftar teratas',
		'hot5': 'Daftar populer diberi peringkat sesuai dengan nilai populer jangkar. Jika Anda ingin membuat peringkat jangkar favorit lebih tinggi, tingkatkan nilainya populer dengan cepat!',
		'canhelp1': 'Withdrawal Guide',
		'canhelp2': '1. Check how much FIREs you can withdraw?',
		'canhelp3': 'Open the in-app FIRE withdrawal page to check the current amount of FIREs you can withdraw.',
		'canhelp4': '2. How to withdraw the FIREs?',
		'canhelp5': 'We provide three withdrawal methods',
		'canhelp6': '2.1 Bank card transfer: Enter My -> FIRE Withdrawal -> Click Cash Withdrawal -> Bank Card Withdrawal -> Contact Customer Service',
		'canhelp7': '2.2 Paypal: Enter My -> FIRE Withdrawal ->Click Cash Withdrawal->Paypal ->Contact Customer Service',
		'canhelp12': '2.3 Payoneer: Enter My -> FIRE Withdrawal ->Click Cash Withdrawal->Payoneer->Contact Customer Service',
		'canhelp8': '3.What is the withdrawal ratio of FIRE?',
		'canhelp9': '1 FIRE = 0.01 CNY, the minimum withdrawal amount according to the withdrawal method.',
		'canhelp10': '4.Why the income of invitation from the FIRE withdrawal page that have not received in the account?',
		'canhelp11': 'For security and fairness, the income generated by the invitation will be reviewed and distributed once a week(no more than Wednesday). At that time, you can check whether you have received it on the FIRE withdrawal page.',
		'canhelp13': 'For more information about cash withdrawal, you can open WeChat app to search the public account "Firefly Live" to follow and consult.',
		'cashreal0': 'Bank card withdrawals <span style="color:#FF0000;margin-left:0.2rem">Chinese Bank Card Only</span>',
		'cashreal1': 'Firefly withdrawal',
		'cashreal2': 'Wechat withdrawal',
		'cashreal3': 'Paypal withdrawal',
		'cashreal4': 'Next',
		'cashreal5': 'Please bind your phone number for your account safety',
		'cashreal6': 'Cancel',
		'cashreal7': 'Sure',
		'cashreal8': 'Cash withdral',
		'cashreal9': 'Cash withdral balance',
		'cashreal10': 'Withdraw all',
		'cashreal11': 'Done',
		'cashreal12': 'Paypal withdrawal currency',
		'cashreal13': 'Are you sure to withdraw',
		'cashreal14': 'USD',
		'cashreal15': 'to account ',
		'cashreal16': '?',
		'cashreal17': 'Cancel',
		'cashreal18': 'Sure',
		'cashreal19': 'Wechat withdrawal (already bind Wechat)',
		'cashreal20': 'Note: Search and follow "Firefly 螢火蟲"',
		'cashreal21': 'in Wechat to withdraw ,',
		'cashreal22': ' ',
		'cashreal23': 'Withdraw with Wechat official account',
		'cashreal24': 'You have not installed Wechat yet',
		'cashreal25': 'The amount of cash is less than $20 and cannot be withdrawn!',
		'cashreal32': 'The amount of cash is less than $50 and cannot be withdrawn!',
		'cashreal26': 'Converted to maximum cashable amount',
		'cashreal27': 'The amount of cash must be an integer multiple of 10, which has been automatically converted for you.',
		'cashreal28': 'Sorry, only one application is allowed within one week as required.',
		'cashreal29': 'Sorry, the maximum withdrawal amount is 100,000.',
		'cashreal30': 'Did not meet the minimum withdrawal criteria!',
		'cashreal31': 'Please enter the amount',
		'cashreal32': 'Alipay withdrawal',
		'paypal1': 'Set up Paypal withdrawal',
		'paypal2': 'Please fill in your Paypal email',
		'paypal3': 'Paypal withdrawal account can only be set once and cannot be changed once submitted. Are you sure to set up the following withdrawal account??',
		'paypal4': 'cancel',
		'paypal5': 'determine',
		'paypal6': 'The binding is successful, and the withdrawal will be withdrawn soon',
		'paypal7': 'The mailbox has already been bound, please re-enter',
		'paypal8': 'Please enter the amount',
		'paypal9': 'please enter your vaild email',
		'paypal10': 'carry out',
		'paypal11': 'Have a PayPal account,',
		'paypal12': 'Go to register&gt',
		'paypal13': 'Paypal registration process',
		'paypal14': 'The maximum amount has been reached',
		'paypal15': 'Withdrawal Amount',
		'paypal16': 'Please enter the amount',
		'paypal17': 'Withdrawable balance $',
		'paypal18': 'Withdraw all',
		'paypal19': 'PayPal withdrawal exchange rate query',
		'drawend1': 'Withdrawals record',
		'drawend2': 'Order number:',
		'drawend3': 'Return to the Firefly withdrawal page',
		'drawend4': 'Your withdrawal request has been submitted to Firefly and will process it within 5-7 business days. You can view the withdrawal progress by "Withdrawal" -> "Withdrawal record"',
		'drawend5': 'Note:For Paypal withdrawal,Firefly Live don\'\t charge any transaction fee .However ,since Paypal will charge a certain transaction fee, the real money you  received may differ from reqeusted withdrawal money.For more  details ,',
		'drawend6': 'you can check in the Paypal official website.',
		'wechat1': 'Set Wechat withdrawal',
		'wechat2': 'Please bind Wechat first',
		'wechat3': 'The bound Wechat will become your withdrawal account',
		'wechat4': 'Bind Wechat',
		'wechat5': 'Wechat withdrawal (already bind Wechat)',
		'wechat6': 'Note: Search and follow "Firefly Live"',
		'wechat7': 'in Wechat to withdraw',
		'wechat8': 'in Wechat to withdraw',
		'share1': 'FireFly invites to share',
		'share2': 'Firefly Live-80% of the entire network is divided into the highest platform, watch live streaming coins every day;',
		'mdew1': 'GEM saat ini',
		'help1': 'Intimacy description',
		'help2': 'How to calculate Intimacy?',
		'help3': 'When both of you interact ,Intimacy will increase as per GEMs or DEWs consumed',
		'help4': 'Bottle message',
		'help5': '(Props message,1 bottle message=2 Intimacy)',
		'help6': 'Private message',
		'help7': '(1 private message of DEWs =100 Intimacy)',
		'help8': 'Private gifts',
		'help9': '(1 GEM gift=100 Intimacy)',
		'help10': 'Broadcast room gifts',
		'help11': '(1 GEM gift=100 Intimacy)',
		'help12': 'Video/voice call',
		'help13': '(1 GEM call=100 Intimacy)',
		'help14': 'Note:If GEMs/DEWs are returned in whatever ways,the GEMS/DEWs won\'\t be counted as Intimacy.DEWs gifts sent in the broadcast room won\'\t be counted as Intimacy',
		'help15': 'What is  Intimacy used for?',
		'help16': '20000 Intimacy can unlock Intimacy Friend .Private message will be free after being Intimacy Friend',
		'help17': '5000 Intimacy can unlock voice/video call',
		'help18': '5000 Intimacy can unlock private message function',

		'news1': 'Forward',
		'news2': 'Reply',
		'news3': 'Unlock',
		'news4': 'Please input the title (5-30 characters)',
		'news5': 'Please input the content,',
		'news6': 'Contents that violate the laws and regulations of your country or  infringe on others are forbidden to post. Pornographic information and politically sensitive content are forbidden to post.',
		'news7': 'Items',
		'news8': 'Qty',
		'news9': 'Picture comments',
		'news10': 'VIP level is upon VIP41 or above',
		'news11': 'Can comment on the posts with picture',
		'news12': 'Title should have 5 characters at least',
		'news13': 'Fan value',

		'play1': 'Game hasn\'\t started',
		'play2': 'Game flow',
		'play3': 'Game fail',
		'play4': 'Game win',
		'play5': 'Firends PK',
		'play6': 'Hot PK',
		'play7': 'World PK',
		'play8': 'Activity PK',
		'play9': 'PK record',
		'play10': 'Game record',
		'play11': 'Out in round',
		'play12': '',
		'play13': 'Lucky Wheel',
		'play14': 'Stopped in',
		'play15': 'round',
		'play16': 'total',
		'turn1': 'Game rules',
		'turn2': '1 The lucky wheel can only be started by the broadcaster in the PK',
		'turn3': '2 4 participants is required to start the game ,or the game will be cancelled',
		'turn4': '3 Entrance fee will be deducted  when take part in the game.When the game starts ,the entrance fee won\'\t be returned',
		'turn5': '4 When game starts, final player will be the winner and win the awards',
		'turn6': '5 Only the broadcaster whose player win the game can get the bonus',
		'turn7': '6 When game starts,no matter what happens ,the game will go on',
		'turn8': '7 Game period of "The Lucky Wheel" is not involved in the "live broadcast reward event" activity.',
		'turn9': '8 All rights reserved by the platform',

		'newTurn1': '1. Lucky Wheel is opened in this chat room.',
		'newTurn2': '2. Lucky Wheel can only start with at least 4 people, otherwise it will continue to wait.',
		'newTurn3': '3. Lucky Wheel requires pre-deduction of the entrance fee. The game cancellation or manual quit will be refunded, and it cannot be refunded after the game starts.',
		'newTurn4': '4. After the game starts, the final player who stays wins all entrance fees for this round of the game.',
		'newTurn5': '5. The final interpretation right belongs to the platform and has nothing to do with Apple Inc.',

		'profit1': 'Room income',
		'profit2': 'Broadcast gift',
		'profit3': 'Mic gift',
		'profit4': 'Mic gift income share',
		'profit5': ' in ',
		'profit6': ' room',
		'profit7': ' send ',
		'profit8': 'send out',

		"upright1": "Activity",
		"upright2": "Online service",
		"upright3": "Rules",
		"upright4": "Record",
		"upright5": "Share",
		"upright6": "Customer service",
		"upright7": "Hi, what can I do for you?",
		"tRank1": 'This Week',
		"tRank2": 'Last Week',
		"tRank3": 'Total',
		"tRank4": 'Members',
		"tRank5": 'Group Points',
		'tRank6': 'Group points contributor',
		'tRank7': "'s points contributor",
		'tRank8': "No<br>Rank",
		'tRank9': 'No Data',
		"aboutUs1": 'User Agreement',
		"aboutUs2": 'Privacy Agreement',

		"drawNew1": 'Current income (pre-tax)',
		"draw1": 'Firefly withdrawal',
		"draw2": 'Total FIREs',
		"draw3": 'Currently available FIREs',
		"draw4": 'Cash withdrawal',
		"draw5": 'Exchange GEMs',
		"draw6": 'The minimum amount of cash is ¥100, and must be an integer of 100.<br> 10000FIREs = ¥100.',
		'draw7': 'This kind of bank withdrawal is not supported,please contact customer service or set other withdrawal method.',
		'draw8': 'Sure',
		'draw9': 'Not binded Phone numner yet',
		'draw10': 'Goto  "personal"->Settings->',
		'draw11': 'click "Binding phone number" to bind',
		'draw12': 'Cancel',
		'draw13': 'Withdrawal application has been summit',
		'draw14': 'please note the withdrawal progress via Notice',
		'draw15': 'Got it',
		'draw16': 'Withdrawal method set successfully',
		'draw17': 'RMB',
		'draw18': 'USD',
		'draw19': 'You have had a Wechat withdrawal account ,please contact customer service to deal with',
		'draw20': 'Sure to withdraw',
		'draw21': 'to account',
		'draw22': 'Alipay',
		'draw23': '?',
		'draw24': 'Set withdrawal method',
		'draw25': 'Alipay withdrawal',
		'draw26': 'Most peolple select this',
		'draw27': 'Bank withdrawal',
		'draw28': 'Paypal withdrawal',
		'draw29': 'Available withdrawal dollars',
		'draw30': 'Next',
		'draw31': 'Please select the country of your bank',
		'draw32': 'China Mainland',
		'draw33': 'Other countries or regions',
		'draw34': 'Please select withdrawal method',
		'draw35': 'Alipay account is the phone number or email provided  while you registered Alipay',
		'draw36': 'Summit',
		'draw37': 'Example',
		'draw38': 'Check Alipay account',
		'draw39': '1 Open Alipay application ,tap 「Mine」',
		'draw40': '2 Check your real name and Alipay account',
		'draw41': 'Note:Alipay account is the phone number or email provided  while you registered Alipay',
		'draw42': 'Alipay withdrawal account can only be set for one time,',
		'draw43': 'Once summit ,it can\'\t be changed  any more.。',
		'draw44': 'Sure to set bellow withdrawal account?',
		'draw45': 'Real name',
		'draw46': 'Please input your Alipay account',
		'draw47': 'Please input your real name',
		'draw48': 'Bank card withdrawals',
		'draw49': 'Please check the details carefully to avoid affecting  your withdrawal',
		'draw50': 'As for bank subbranch and province/city information,please consult your bank',
		'draw51': 'Input your bank card number',
		'draw52': 'bank:not indentified',
		'draw53': 'The real name of the bank account',
		'draw54': 'Bank subbranch(optional)',
		'draw55': 'Province of the bank(optional)',
		'draw56': 'City of the bank(optional)',
		'draw57': 'Province',
		'draw58': 'City',
		'draw59': 'Bank withdrawal account can only be set for one time',
		'draw60': 'Real name of the bank account',
		'draw61': 'Withdrawal currency',
		'draw62': 'Insufficient withdrawable amount, unable to withdraw',
		'draw63': 'Insufficient withdrawable amount, unable to withdraw',
		'draw64': 'Bank',
		'draw65': 'WeChat',
		'draw66': 'Bank name(optional)',
		'draw67': 'As per latest rules,your identify certification is required to withdraw',
		'draw68': 'Please fill in the identify number',
		'draw69': 'The information is used for withdrawal only,your information will be protected strictly',
		'draw70': 'Confirm your identify number',
		'draw71': 'Identify number bound successfuly',
		'draw72': 'Please fill in right identify number',
		'draw73': 'Please choose your country',
		'draw74': 'Please fill in your identify number',
		'draw75': 'ID card',
		'draw76': 'Bank number',
		'draw77': 'Bind Bank Card',
		'draw78': 'Confirm Withdrawal Information',
		'draw79': 'Go to WeChat and follow Official Account "<span style="color:#B3B3B3">Firefly Live</span>" for more broadcasters features.',
		'draw80': 'Withdraw',
		'draw81': 'Deduct',
		'draw82': '3% tax included',
		'draw83': 'Remaining FIREs',
		'draw84': 'Receiver account',
		'draw85': 'Tel number',
		'draw86': 'input your phone number',
		'draw87': 'Check your Tel number please',
		'draw88': 'Please check your Alipay information',
		'draw89': 'Account Name:',
		'draw90': 'ID Number:',
		'draw91': 'Alipay Account:',
		'draw92': 'Please check your Alipay information',
		"draw93": 'Withdrawal Method:AliPay',
		'draw94': 'FIREs',

		'payoneer1': 'Set up Payoneer withdrawal',
		'payoneer2': 'Please fill in your Payoneer email',
		'payoneer3': 'Payoneer withdrawal account can only be set once and cannot be changed once submitted. Are you sure to set up the following withdrawal account?',
		'payoneer4': 'cancel',
		'payoneer5': 'determine',
		'payoneer6': 'The binding is successful, and the withdrawal will be withdrawn soon',
		'payoneer7': 'The mailbox has already been bound, please re-enter',
		'payoneer8': 'Please enter the amount',
		'payoneer9': 'please enter your vaild email',
		'payoneer10': 'carry out',
		'payoneer11': 'Have a Payoneer account,',
		'payoneer12': 'Go to register&gt',
		'payoneer13': 'Payoneer registration process',
		'payoneer14': 'The maximum amount has been reached',
		'payoneer15': 'Withdrawal Amount',
		'payoneer16': 'Please enter the amount',
		'payoneer17': 'Withdrawable balance $',
		'payoneer18': 'Withdraw all',
		'payoneer19': 'Payoneer withdrawal exchange rate query',
		'payoneer20': 'Payoneer withdrawal',
		'payoneer21': 'The withdrawal will consume :<span class="totalCost"></span> FIREs(Containing tax of <span class="taxCost"></span> FIREs)',
		'payoneer22': 'Payoneer Withdrawl Description',

		"newDraw1": "nama penuh",
		"newDraw2": "Nomor identitas",
		"newDraw3": "akun Alipay",
		"newDraw4": "Metode penarikan terikat",
		"newDraw5": "Apakah Anda yakin untuk mengikat metode penarikan ini?",
		"newDraw6": "Memeriksa",
		"newDraw7": "ditetapkan sebagai default",
		"newDraw8": "memperlonggar",
		"newDraw9": "Metode penarikan tidak mengikat",
		"newDraw10": "Metode penarikan tunai",
		"newDraw11": "akun:",
		"newDraw12": "Apakah Anda yakin untuk melepaskan ikatan metode penarikan ini?",
		"newDraw13": "Jumlah penarikan",
		"newDraw14": "Mengurangi KEBAKARAN (termasuk pajak 3%)",
		"newDraw15": "KEBAKARAN yang tersisa setelah penarikan",
		"newDraw16": "Kelola metode penarikan>",
		"newDraw17": "Kartu Bank (Internasional)",
		"newDraw18": "negara/wilayah",
		"newDraw19": "Instruksi penarikan:",
		"newDraw20": "1. Jumlah penarikan tunai minimum adalah ¥100,00, dan jumlah penarikan tunai harus berupa bilangan bulat 100",
		"newDraw21": "2. 10.000 KEBAKARAN = ¥100,00",
		"newDraw22": "Penghasilan sebelum pajak:",
		"newDraw23": "Harap konfirmasi informasi Paypal",
		"newDraw24": "Agensi koleksi",
		"newDraw25": "Email pemberitahuan",
		"newDraw26": "Kirim",
		"newDraw27": "Pilih negara",
		"newDraw28": "Pilih agen pembayaran",
		"newDraw29": "Batas bulanan 93.000",
		"newDraw30": "Ini adalah metode penarikan default",
		"newDraw31": "Penyiapan berhasil!",
		"newDraw32": "Unbound",
		"newDraw33": "Bank Card(China mainland)",
		"newDraw34": "Registration process",
		"newDraw35": "Enter your email address",
		"newDraw36": " limited monthly",
		"newDraw37": "Bound",
		"newDraw38": "姓氏",
		"newDraw39": "名字",
		"newDraw40": "銀行",
		"newDraw41": "收款城市",
		"newDraw42": "收款地址",
		"newDraw43": "Mengurangi KEBAKARAN",
	},
]

var langType = 0;
var langCon = getRequest().lang;
if (langCon == undefined || langCon == 'undefined') {
	langCon = sessionStorage.lang;
}
//当没有语言参数时 默认
if (langCon == undefined || langCon == 'undefined') {
	langCon = 2;
}
sessionStorage.lang = langCon;

sessionStorage.groupId = getRequest().groupId;

if (location.href.indexOf("https://events.yabolive.net") > -1) {
	var $ip = "https://webserver.yabolive.net";
} else {
	var $ip = "http://ceshi.yabolive.tv/web";
}

var cdn = 'https://big.bgp.ourpow.com/comm';

// 0,2 繁中 1英语 7阿语  3泰语 8越南语  4日语 5印尼文
if (langCon == 0 || langCon == 2) {
	langType = 0;
} else if (langCon == 7) {
	langType = 2;
} else if (langCon == 8) {
	langType = 4;
} else if (langCon == 3) {
	langType = 3;
} else if (langCon == 4) {
	langType = 5;
} else if (langCon == 5) {
	langType = 6;
} else {
	langType = 1;
}
//獲取url參數
function getRequest() {
	var url = location.href;
	var theRequest = new Object();
	if (url.indexOf("?") != -1) {
		var str = url.substr(url.indexOf("?") + 1);
		strs = str.split("&");
		for (var i = 0; i < strs.length; i++) {
			theRequest[strs[i].split("=")[0]] = unescape(strs[i].split("=")[1]);
		}
	}
	return theRequest;
}