this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Fix cache key for DIFFERENT_LANG_CHECK

Delay further the setTimeout

+152 -142
+15 -5
src/components/status.jsx
··· 488 488 // All this work just to make sure this only lazy-run once 489 489 // Because first run is slow due to intl-localematcher 490 490 const DIFFERENT_LANG_CHECK = {}; 491 + const diffLangCheckCacheKey = (l, hls) => `${l}:${hls.join('|')}`; 491 492 const checkDifferentLanguage = ( 492 493 language, 493 494 contentTranslationHideLanguages = [], 494 495 ) => { 495 496 if (!language) return false; 497 + const cacheKey = diffLangCheckCacheKey( 498 + language, 499 + contentTranslationHideLanguages, 500 + ); 496 501 const targetLanguage = getTranslateTargetLanguage(true); 497 502 const different = 498 503 language !== targetLanguage && ··· 500 505 !contentTranslationHideLanguages.find( 501 506 (l) => language === l || localeMatch([language], [l]), 502 507 ); 503 - if (different) 504 - DIFFERENT_LANG_CHECK[language + contentTranslationHideLanguages] = true; 508 + if (different) { 509 + DIFFERENT_LANG_CHECK[cacheKey] = true; 510 + } 505 511 return different; 506 512 }; 507 513 ··· 1083 1089 const contentTranslationHideLanguages = 1084 1090 snapStates.settings.contentTranslationHideLanguages || []; 1085 1091 const [differentLanguage, setDifferentLanguage] = useState( 1086 - DIFFERENT_LANG_CHECK[language + contentTranslationHideLanguages], 1092 + DIFFERENT_LANG_CHECK[ 1093 + diffLangCheckCacheKey(language, contentTranslationHideLanguages) 1094 + ], 1087 1095 ); 1088 1096 useEffect(() => { 1089 1097 if (!language || differentLanguage) { ··· 1091 1099 } 1092 1100 if ( 1093 1101 !differentLanguage && 1094 - DIFFERENT_LANG_CHECK[language + contentTranslationHideLanguages] 1102 + DIFFERENT_LANG_CHECK[ 1103 + diffLangCheckCacheKey(language, contentTranslationHideLanguages) 1104 + ] 1095 1105 ) { 1096 1106 setDifferentLanguage(true); 1097 1107 return; ··· 1102 1112 contentTranslationHideLanguages, 1103 1113 ); 1104 1114 if (different) setDifferentLanguage(different); 1105 - }, 1); 1115 + }, 100); 1106 1116 return () => clearTimeout(timeout); 1107 1117 }, [language, differentLanguage]); 1108 1118
+137 -137
src/locales/en.po
··· 34 34 35 35 #: src/components/account-block.jsx:190 36 36 #: src/components/account-info.jsx:710 37 - #: src/components/status.jsx:748 37 + #: src/components/status.jsx:754 38 38 msgid "Group" 39 39 msgstr "" 40 40 ··· 108 108 #: src/components/compose.jsx:2812 109 109 #: src/components/media-alt-modal.jsx:55 110 110 #: src/components/media-modal.jsx:363 111 - #: src/components/status.jsx:1996 112 - #: src/components/status.jsx:2013 113 - #: src/components/status.jsx:2144 114 - #: src/components/status.jsx:2768 115 - #: src/components/status.jsx:2771 111 + #: src/components/status.jsx:2006 112 + #: src/components/status.jsx:2023 113 + #: src/components/status.jsx:2154 114 + #: src/components/status.jsx:2778 115 + #: src/components/status.jsx:2781 116 116 #: src/pages/account-statuses.jsx:539 117 117 #: src/pages/accounts.jsx:118 118 118 #: src/pages/hashtag.jsx:203 ··· 217 217 msgstr "" 218 218 219 219 #: src/components/account-info.jsx:978 220 - #: src/components/status.jsx:2553 220 + #: src/components/status.jsx:2563 221 221 #: src/pages/catchup.jsx:71 222 222 #: src/pages/catchup.jsx:1448 223 223 #: src/pages/catchup.jsx:2061 ··· 343 343 msgstr "" 344 344 345 345 #: src/components/account-info.jsx:1522 346 - #: src/components/status.jsx:1418 346 + #: src/components/status.jsx:1428 347 347 msgid "Link copied" 348 348 msgstr "" 349 349 350 350 #: src/components/account-info.jsx:1525 351 - #: src/components/status.jsx:1421 351 + #: src/components/status.jsx:1431 352 352 msgid "Unable to copy link" 353 353 msgstr "" 354 354 355 355 #: src/components/account-info.jsx:1531 356 356 #: src/components/shortcuts-settings.jsx:1059 357 - #: src/components/status.jsx:1427 358 - #: src/components/status.jsx:3546 357 + #: src/components/status.jsx:1437 358 + #: src/components/status.jsx:3556 359 359 msgid "Copy" 360 360 msgstr "" 361 361 362 362 #: src/components/account-info.jsx:1546 363 363 #: src/components/shortcuts-settings.jsx:1077 364 - #: src/components/status.jsx:1443 364 + #: src/components/status.jsx:1453 365 365 msgid "Sharing doesn't seem to work." 366 366 msgstr "" 367 367 368 368 #: src/components/account-info.jsx:1552 369 - #: src/components/status.jsx:1449 369 + #: src/components/status.jsx:1459 370 370 msgid "Share…" 371 371 msgstr "" 372 372 ··· 480 480 #: src/components/shortcuts-settings.jsx:230 481 481 #: src/components/shortcuts-settings.jsx:583 482 482 #: src/components/shortcuts-settings.jsx:783 483 - #: src/components/status.jsx:3270 484 - #: src/components/status.jsx:3510 485 - #: src/components/status.jsx:4019 483 + #: src/components/status.jsx:3280 484 + #: src/components/status.jsx:3520 485 + #: src/components/status.jsx:4029 486 486 #: src/pages/accounts.jsx:45 487 487 #: src/pages/catchup.jsx:1584 488 488 #: src/pages/filters.jsx:225 ··· 732 732 msgstr "Attachment #{i} failed" 733 733 734 734 #: src/components/compose.jsx:1215 735 - #: src/components/status.jsx:2328 735 + #: src/components/status.jsx:2338 736 736 #: src/components/timeline.jsx:1015 737 737 msgid "Content warning" 738 738 msgstr "" ··· 768 768 769 769 #: src/components/compose.jsx:1282 770 770 #: src/components/status.jsx:105 771 - #: src/components/status.jsx:2208 771 + #: src/components/status.jsx:2218 772 772 msgid "Private mention" 773 773 msgstr "" 774 774 ··· 805 805 806 806 #: src/components/compose.jsx:1671 807 807 #: src/components/keyboard-shortcuts-help.jsx:155 808 - #: src/components/status.jsx:1190 809 - #: src/components/status.jsx:1976 810 - #: src/components/status.jsx:1977 811 - #: src/components/status.jsx:2672 808 + #: src/components/status.jsx:1200 809 + #: src/components/status.jsx:1986 810 + #: src/components/status.jsx:1987 811 + #: src/components/status.jsx:2682 812 812 msgid "Reply" 813 813 msgstr "" 814 814 ··· 1030 1030 1031 1031 #: src/components/drafts.jsx:126 1032 1032 #: src/components/list-add-edit.jsx:188 1033 - #: src/components/status.jsx:1593 1033 + #: src/components/status.jsx:1603 1034 1034 #: src/pages/filters.jsx:603 1035 1035 #: src/pages/scheduled-posts.jsx:368 1036 1036 msgid "Delete…" ··· 1239 1239 msgstr "" 1240 1240 1241 1241 #: src/components/keyboard-shortcuts-help.jsx:176 1242 - #: src/components/status.jsx:1198 1243 - #: src/components/status.jsx:2699 1244 - #: src/components/status.jsx:2722 1245 - #: src/components/status.jsx:2723 1242 + #: src/components/status.jsx:1208 1243 + #: src/components/status.jsx:2709 1244 + #: src/components/status.jsx:2732 1245 + #: src/components/status.jsx:2733 1246 1246 msgid "Boost" 1247 1247 msgstr "" 1248 1248 ··· 1251 1251 msgstr "" 1252 1252 1253 1253 #: src/components/keyboard-shortcuts-help.jsx:184 1254 - #: src/components/status.jsx:1261 1255 - #: src/components/status.jsx:2747 1256 - #: src/components/status.jsx:2748 1254 + #: src/components/status.jsx:1271 1255 + #: src/components/status.jsx:2757 1256 + #: src/components/status.jsx:2758 1257 1257 msgid "Bookmark" 1258 1258 msgstr "" 1259 1259 ··· 1318 1318 msgstr "" 1319 1319 1320 1320 #: src/components/media-alt-modal.jsx:67 1321 - #: src/components/status.jsx:1304 1322 - #: src/components/status.jsx:1313 1321 + #: src/components/status.jsx:1314 1322 + #: src/components/status.jsx:1323 1323 1323 #: src/components/translation-block.jsx:239 1324 1324 msgid "Translate" 1325 1325 msgstr "" 1326 1326 1327 1327 #: src/components/media-alt-modal.jsx:78 1328 - #: src/components/status.jsx:1332 1328 + #: src/components/status.jsx:1342 1329 1329 msgid "Speak" 1330 1330 msgstr "" 1331 1331 ··· 1362 1362 msgstr "" 1363 1363 1364 1364 #: src/components/media-post.jsx:133 1365 - #: src/components/status.jsx:3849 1366 - #: src/components/status.jsx:3945 1367 - #: src/components/status.jsx:4023 1365 + #: src/components/status.jsx:3859 1366 + #: src/components/status.jsx:3955 1367 + #: src/components/status.jsx:4033 1368 1368 #: src/components/timeline.jsx:1004 1369 1369 #: src/pages/catchup.jsx:75 1370 1370 #: src/pages/catchup.jsx:1880 ··· 1676 1676 msgstr "" 1677 1677 1678 1678 #: src/components/notification.jsx:451 1679 - #: src/components/status.jsx:1275 1680 1679 #: src/components/status.jsx:1285 1680 + #: src/components/status.jsx:1295 1681 1681 msgid "Boosted/Liked by…" 1682 1682 msgstr "" 1683 1683 ··· 2030 2030 msgstr "" 2031 2031 2032 2032 #: src/components/shortcuts-settings.jsx:379 2033 - #: src/components/status.jsx:1555 2033 + #: src/components/status.jsx:1565 2034 2034 #: src/pages/list.jsx:195 2035 2035 msgid "Edit" 2036 2036 msgstr "" ··· 2247 2247 msgid "Format math" 2248 2248 msgstr "Format math" 2249 2249 2250 - #: src/components/status.jsx:772 2250 + #: src/components/status.jsx:778 2251 2251 msgid "<0/> <1>boosted</1>" 2252 2252 msgstr "<0/> <1>boosted</1>" 2253 2253 2254 - #: src/components/status.jsx:875 2254 + #: src/components/status.jsx:881 2255 2255 msgid "Sorry, your current logged-in instance can't interact with this post from another instance." 2256 2256 msgstr "" 2257 2257 2258 2258 #. placeholder {0}: username || acct 2259 - #: src/components/status.jsx:1029 2259 + #: src/components/status.jsx:1035 2260 2260 msgid "Unliked @{0}'s post" 2261 2261 msgstr "" 2262 2262 2263 2263 #. placeholder {0}: username || acct 2264 - #: src/components/status.jsx:1030 2264 + #: src/components/status.jsx:1036 2265 2265 msgid "Liked @{0}'s post" 2266 2266 msgstr "Liked @{0}'s post" 2267 2267 2268 2268 #. placeholder {0}: username || acct 2269 - #: src/components/status.jsx:1069 2269 + #: src/components/status.jsx:1075 2270 2270 msgid "Unbookmarked @{0}'s post" 2271 2271 msgstr "Unbookmarked @{0}'s post" 2272 2272 2273 2273 #. placeholder {0}: username || acct 2274 - #: src/components/status.jsx:1070 2274 + #: src/components/status.jsx:1076 2275 2275 msgid "Bookmarked @{0}'s post" 2276 2276 msgstr "Bookmarked @{0}'s post" 2277 2277 2278 - #: src/components/status.jsx:1167 2278 + #: src/components/status.jsx:1177 2279 2279 msgid "Some media have no descriptions." 2280 2280 msgstr "" 2281 2281 2282 2282 #. placeholder {0}: rtf.format(-statusMonthsAgo, 'month') 2283 - #: src/components/status.jsx:1174 2283 + #: src/components/status.jsx:1184 2284 2284 msgid "Old post (<0>{0}</0>)" 2285 2285 msgstr "" 2286 2286 2287 - #: src/components/status.jsx:1198 2288 - #: src/components/status.jsx:1238 2289 - #: src/components/status.jsx:2699 2290 - #: src/components/status.jsx:2722 2287 + #: src/components/status.jsx:1208 2288 + #: src/components/status.jsx:1248 2289 + #: src/components/status.jsx:2709 2290 + #: src/components/status.jsx:2732 2291 2291 msgid "Unboost" 2292 2292 msgstr "" 2293 2293 2294 - #: src/components/status.jsx:1214 2295 - #: src/components/status.jsx:2714 2294 + #: src/components/status.jsx:1224 2295 + #: src/components/status.jsx:2724 2296 2296 msgid "Quote" 2297 2297 msgstr "" 2298 2298 2299 2299 #. placeholder {0}: username || acct 2300 - #: src/components/status.jsx:1226 2301 - #: src/components/status.jsx:1692 2300 + #: src/components/status.jsx:1236 2301 + #: src/components/status.jsx:1702 2302 2302 msgid "Unboosted @{0}'s post" 2303 2303 msgstr "Unboosted @{0}'s post" 2304 2304 2305 2305 #. placeholder {0}: username || acct 2306 - #: src/components/status.jsx:1227 2307 - #: src/components/status.jsx:1693 2306 + #: src/components/status.jsx:1237 2307 + #: src/components/status.jsx:1703 2308 2308 msgid "Boosted @{0}'s post" 2309 2309 msgstr "Boosted @{0}'s post" 2310 2310 2311 - #: src/components/status.jsx:1239 2311 + #: src/components/status.jsx:1249 2312 2312 msgid "Boost…" 2313 2313 msgstr "" 2314 2314 2315 - #: src/components/status.jsx:1251 2316 - #: src/components/status.jsx:1986 2317 - #: src/components/status.jsx:2735 2315 + #: src/components/status.jsx:1261 2316 + #: src/components/status.jsx:1996 2317 + #: src/components/status.jsx:2745 2318 2318 msgid "Unlike" 2319 2319 msgstr "" 2320 2320 2321 - #: src/components/status.jsx:1252 2322 - #: src/components/status.jsx:1986 2323 - #: src/components/status.jsx:1987 2324 - #: src/components/status.jsx:2735 2325 - #: src/components/status.jsx:2736 2321 + #: src/components/status.jsx:1262 2322 + #: src/components/status.jsx:1996 2323 + #: src/components/status.jsx:1997 2324 + #: src/components/status.jsx:2745 2325 + #: src/components/status.jsx:2746 2326 2326 msgid "Like" 2327 2327 msgstr "" 2328 2328 2329 - #: src/components/status.jsx:1261 2330 - #: src/components/status.jsx:2747 2329 + #: src/components/status.jsx:1271 2330 + #: src/components/status.jsx:2757 2331 2331 msgid "Unbookmark" 2332 2332 msgstr "" 2333 2333 2334 - #: src/components/status.jsx:1344 2334 + #: src/components/status.jsx:1354 2335 2335 msgid "Post text copied" 2336 2336 msgstr "Post text copied" 2337 2337 2338 - #: src/components/status.jsx:1347 2338 + #: src/components/status.jsx:1357 2339 2339 msgid "Unable to copy post text" 2340 2340 msgstr "Unable to copy post text" 2341 2341 2342 - #: src/components/status.jsx:1353 2342 + #: src/components/status.jsx:1363 2343 2343 msgid "Copy post text" 2344 2344 msgstr "Copy post text" 2345 2345 2346 2346 #. placeholder {0}: username || acct 2347 - #: src/components/status.jsx:1371 2347 + #: src/components/status.jsx:1381 2348 2348 msgid "View post by <0>@{0}</0>" 2349 2349 msgstr "" 2350 2350 2351 - #: src/components/status.jsx:1392 2351 + #: src/components/status.jsx:1402 2352 2352 msgid "Show Edit History" 2353 2353 msgstr "" 2354 2354 2355 - #: src/components/status.jsx:1395 2355 + #: src/components/status.jsx:1405 2356 2356 msgid "Edited: {editedDateText}" 2357 2357 msgstr "" 2358 2358 2359 - #: src/components/status.jsx:1462 2360 - #: src/components/status.jsx:3515 2359 + #: src/components/status.jsx:1472 2360 + #: src/components/status.jsx:3525 2361 2361 msgid "Embed post" 2362 2362 msgstr "" 2363 2363 2364 - #: src/components/status.jsx:1476 2364 + #: src/components/status.jsx:1486 2365 2365 msgid "Conversation unmuted" 2366 2366 msgstr "" 2367 2367 2368 - #: src/components/status.jsx:1476 2368 + #: src/components/status.jsx:1486 2369 2369 msgid "Conversation muted" 2370 2370 msgstr "" 2371 2371 2372 - #: src/components/status.jsx:1482 2372 + #: src/components/status.jsx:1492 2373 2373 msgid "Unable to unmute conversation" 2374 2374 msgstr "" 2375 2375 2376 - #: src/components/status.jsx:1483 2376 + #: src/components/status.jsx:1493 2377 2377 msgid "Unable to mute conversation" 2378 2378 msgstr "" 2379 2379 2380 - #: src/components/status.jsx:1492 2380 + #: src/components/status.jsx:1502 2381 2381 msgid "Unmute conversation" 2382 2382 msgstr "" 2383 2383 2384 - #: src/components/status.jsx:1499 2384 + #: src/components/status.jsx:1509 2385 2385 msgid "Mute conversation" 2386 2386 msgstr "" 2387 2387 2388 - #: src/components/status.jsx:1515 2388 + #: src/components/status.jsx:1525 2389 2389 msgid "Post unpinned from profile" 2390 2390 msgstr "" 2391 2391 2392 - #: src/components/status.jsx:1516 2392 + #: src/components/status.jsx:1526 2393 2393 msgid "Post pinned to profile" 2394 2394 msgstr "" 2395 2395 2396 - #: src/components/status.jsx:1521 2396 + #: src/components/status.jsx:1531 2397 2397 msgid "Unable to unpin post" 2398 2398 msgstr "" 2399 2399 2400 - #: src/components/status.jsx:1521 2400 + #: src/components/status.jsx:1531 2401 2401 msgid "Unable to pin post" 2402 2402 msgstr "" 2403 2403 2404 - #: src/components/status.jsx:1530 2404 + #: src/components/status.jsx:1540 2405 2405 msgid "Unpin from profile" 2406 2406 msgstr "" 2407 2407 2408 - #: src/components/status.jsx:1537 2408 + #: src/components/status.jsx:1547 2409 2409 msgid "Pin to profile" 2410 2410 msgstr "" 2411 2411 2412 - #: src/components/status.jsx:1566 2412 + #: src/components/status.jsx:1576 2413 2413 msgid "Delete this post?" 2414 2414 msgstr "" 2415 2415 2416 - #: src/components/status.jsx:1582 2416 + #: src/components/status.jsx:1592 2417 2417 msgid "Post deleted" 2418 2418 msgstr "" 2419 2419 2420 - #: src/components/status.jsx:1585 2420 + #: src/components/status.jsx:1595 2421 2421 msgid "Unable to delete post" 2422 2422 msgstr "" 2423 2423 2424 - #: src/components/status.jsx:1613 2424 + #: src/components/status.jsx:1623 2425 2425 msgid "Report post…" 2426 2426 msgstr "" 2427 2427 2428 - #: src/components/status.jsx:1987 2429 - #: src/components/status.jsx:2023 2430 - #: src/components/status.jsx:2736 2428 + #: src/components/status.jsx:1997 2429 + #: src/components/status.jsx:2033 2430 + #: src/components/status.jsx:2746 2431 2431 msgid "Liked" 2432 2432 msgstr "" 2433 2433 2434 - #: src/components/status.jsx:2020 2435 - #: src/components/status.jsx:2723 2434 + #: src/components/status.jsx:2030 2435 + #: src/components/status.jsx:2733 2436 2436 msgid "Boosted" 2437 2437 msgstr "" 2438 2438 2439 - #: src/components/status.jsx:2030 2440 - #: src/components/status.jsx:2748 2439 + #: src/components/status.jsx:2040 2440 + #: src/components/status.jsx:2758 2441 2441 msgid "Bookmarked" 2442 2442 msgstr "" 2443 2443 2444 - #: src/components/status.jsx:2034 2444 + #: src/components/status.jsx:2044 2445 2445 msgid "Pinned" 2446 2446 msgstr "" 2447 2447 2448 - #: src/components/status.jsx:2086 2449 - #: src/components/status.jsx:2561 2448 + #: src/components/status.jsx:2096 2449 + #: src/components/status.jsx:2571 2450 2450 msgid "Deleted" 2451 2451 msgstr "" 2452 2452 2453 - #: src/components/status.jsx:2127 2453 + #: src/components/status.jsx:2137 2454 2454 msgid "{repliesCount, plural, one {# reply} other {# replies}}" 2455 2455 msgstr "" 2456 2456 2457 - #: src/components/status.jsx:2291 2458 - #: src/components/status.jsx:2353 2459 - #: src/components/status.jsx:2457 2457 + #: src/components/status.jsx:2301 2458 + #: src/components/status.jsx:2363 2459 + #: src/components/status.jsx:2467 2460 2460 msgid "Show less" 2461 2461 msgstr "" 2462 2462 2463 - #: src/components/status.jsx:2291 2464 - #: src/components/status.jsx:2353 2463 + #: src/components/status.jsx:2301 2464 + #: src/components/status.jsx:2363 2465 2465 msgid "Show content" 2466 2466 msgstr "" 2467 2467 2468 2468 #. placeholder {0}: filterInfo.titlesStr 2469 2469 #. placeholder {0}: filterInfo?.titlesStr 2470 - #: src/components/status.jsx:2453 2470 + #: src/components/status.jsx:2463 2471 2471 #: src/pages/catchup.jsx:1879 2472 2472 msgid "Filtered: {0}" 2473 2473 msgstr "Filtered: {0}" 2474 2474 2475 - #: src/components/status.jsx:2457 2475 + #: src/components/status.jsx:2467 2476 2476 msgid "Show media" 2477 2477 msgstr "" 2478 2478 2479 - #: src/components/status.jsx:2596 2479 + #: src/components/status.jsx:2606 2480 2480 msgid "Edited" 2481 2481 msgstr "" 2482 2482 2483 - #: src/components/status.jsx:2673 2483 + #: src/components/status.jsx:2683 2484 2484 msgid "Comments" 2485 2485 msgstr "" 2486 2486 2487 2487 #. More from [Author] 2488 - #: src/components/status.jsx:2973 2488 + #: src/components/status.jsx:2983 2489 2489 msgid "More from <0/>" 2490 2490 msgstr "More from <0/>" 2491 2491 2492 - #: src/components/status.jsx:3275 2492 + #: src/components/status.jsx:3285 2493 2493 msgid "Edit History" 2494 2494 msgstr "" 2495 2495 2496 - #: src/components/status.jsx:3279 2496 + #: src/components/status.jsx:3289 2497 2497 msgid "Failed to load history" 2498 2498 msgstr "" 2499 2499 2500 - #: src/components/status.jsx:3284 2500 + #: src/components/status.jsx:3294 2501 2501 #: src/pages/annual-report.jsx:45 2502 2502 msgid "Loading…" 2503 2503 msgstr "" 2504 2504 2505 - #: src/components/status.jsx:3520 2505 + #: src/components/status.jsx:3530 2506 2506 msgid "HTML Code" 2507 2507 msgstr "" 2508 2508 2509 - #: src/components/status.jsx:3537 2509 + #: src/components/status.jsx:3547 2510 2510 msgid "HTML code copied" 2511 2511 msgstr "" 2512 2512 2513 - #: src/components/status.jsx:3540 2513 + #: src/components/status.jsx:3550 2514 2514 msgid "Unable to copy HTML code" 2515 2515 msgstr "" 2516 2516 2517 - #: src/components/status.jsx:3552 2517 + #: src/components/status.jsx:3562 2518 2518 msgid "Media attachments:" 2519 2519 msgstr "" 2520 2520 2521 - #: src/components/status.jsx:3574 2521 + #: src/components/status.jsx:3584 2522 2522 msgid "Account Emojis:" 2523 2523 msgstr "" 2524 2524 2525 - #: src/components/status.jsx:3605 2526 - #: src/components/status.jsx:3650 2525 + #: src/components/status.jsx:3615 2526 + #: src/components/status.jsx:3660 2527 2527 msgid "static URL" 2528 2528 msgstr "" 2529 2529 2530 - #: src/components/status.jsx:3619 2530 + #: src/components/status.jsx:3629 2531 2531 msgid "Emojis:" 2532 2532 msgstr "" 2533 2533 2534 - #: src/components/status.jsx:3664 2534 + #: src/components/status.jsx:3674 2535 2535 msgid "Notes:" 2536 2536 msgstr "" 2537 2537 2538 - #: src/components/status.jsx:3668 2538 + #: src/components/status.jsx:3678 2539 2539 msgid "This is static, unstyled and scriptless. You may need to apply your own styles and edit as needed." 2540 2540 msgstr "" 2541 2541 2542 - #: src/components/status.jsx:3674 2542 + #: src/components/status.jsx:3684 2543 2543 msgid "Polls are not interactive, becomes a list with vote counts." 2544 2544 msgstr "" 2545 2545 2546 - #: src/components/status.jsx:3679 2546 + #: src/components/status.jsx:3689 2547 2547 msgid "Media attachments can be images, videos, audios or any file types." 2548 2548 msgstr "" 2549 2549 2550 - #: src/components/status.jsx:3685 2550 + #: src/components/status.jsx:3695 2551 2551 msgid "Post could be edited or deleted later." 2552 2552 msgstr "" 2553 2553 2554 - #: src/components/status.jsx:3691 2554 + #: src/components/status.jsx:3701 2555 2555 msgid "Preview" 2556 2556 msgstr "" 2557 2557 2558 - #: src/components/status.jsx:3700 2558 + #: src/components/status.jsx:3710 2559 2559 msgid "Note: This preview is lightly styled." 2560 2560 msgstr "" 2561 2561 2562 2562 #. [Name] [Visibility icon] boosted 2563 - #: src/components/status.jsx:3953 2563 + #: src/components/status.jsx:3963 2564 2564 msgid "<0/> <1/> boosted" 2565 2565 msgstr "<0/> <1/> boosted" 2566 2566 2567 - #: src/components/status.jsx:4055 2567 + #: src/components/status.jsx:4065 2568 2568 msgid "Post hidden by your filters" 2569 2569 msgstr "Post hidden by your filters" 2570 2570 2571 - #: src/components/status.jsx:4056 2571 + #: src/components/status.jsx:4066 2572 2572 msgid "Post pending" 2573 2573 msgstr "Post pending" 2574 2574 2575 - #: src/components/status.jsx:4057 2576 - #: src/components/status.jsx:4058 2577 - #: src/components/status.jsx:4059 2578 - #: src/components/status.jsx:4060 2575 + #: src/components/status.jsx:4067 2576 + #: src/components/status.jsx:4068 2577 + #: src/components/status.jsx:4069 2578 + #: src/components/status.jsx:4070 2579 2579 msgid "Post unavailable" 2580 2580 msgstr "Post unavailable" 2581 2581