this repo has no description
0
fork

Configure Feed

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

Also mask URLs for translations

Reduce char count, faster calls

+149 -136
+15 -2
src/components/status.jsx
··· 120 120 .join('\n')}`; 121 121 } 122 122 function getPostText(status, opts) { 123 - const { maskCustomEmojis } = opts || {}; 123 + const { maskCustomEmojis, maskURLs } = opts || {}; 124 124 const { spoilerText, poll, emojis } = status; 125 125 let { content } = status; 126 126 if (maskCustomEmojis && emojis?.length) { ··· 132 132 } 133 133 return ( 134 134 (spoilerText ? `${spoilerText}\n\n` : '') + 135 - getHTMLText(content) + 135 + getHTMLText(content, { 136 + preProcess: 137 + maskURLs && 138 + ((dom) => { 139 + // Remove links that contains text that starts with https?:// 140 + for (const a of dom.querySelectorAll('a')) { 141 + const text = a.innerText.trim(); 142 + if (/^https?:\/\//i.test(text)) { 143 + a.replaceWith('«🔗»'); 144 + } 145 + } 146 + }), 147 + }) + 136 148 getPollText(poll) 137 149 ); 138 150 } ··· 2231 2243 autoDetected={languageAutoDetected} 2232 2244 text={getPostText(status, { 2233 2245 maskCustomEmojis: true, 2246 + maskURLs: true, 2234 2247 })} 2235 2248 /> 2236 2249 )}
+134 -134
src/locales/en.po
··· 34 34 35 35 #: src/components/account-block.jsx:170 36 36 #: src/components/account-info.jsx:710 37 - #: src/components/status.jsx:577 37 + #: src/components/status.jsx:589 38 38 msgid "Group" 39 39 msgstr "" 40 40 ··· 111 111 #: src/components/compose.jsx:2776 112 112 #: src/components/media-alt-modal.jsx:55 113 113 #: src/components/media-modal.jsx:359 114 - #: src/components/status.jsx:1818 115 - #: src/components/status.jsx:1835 116 - #: src/components/status.jsx:1960 117 - #: src/components/status.jsx:2580 118 - #: src/components/status.jsx:2583 114 + #: src/components/status.jsx:1830 115 + #: src/components/status.jsx:1847 116 + #: src/components/status.jsx:1972 117 + #: src/components/status.jsx:2593 118 + #: src/components/status.jsx:2596 119 119 #: src/pages/account-statuses.jsx:526 120 120 #: src/pages/accounts.jsx:110 121 121 #: src/pages/hashtag.jsx:202 ··· 203 203 msgstr "" 204 204 205 205 #: src/components/account-info.jsx:941 206 - #: src/components/status.jsx:2364 206 + #: src/components/status.jsx:2377 207 207 #: src/pages/catchup.jsx:71 208 208 #: src/pages/catchup.jsx:1448 209 209 #: src/pages/catchup.jsx:2061 ··· 329 329 msgstr "" 330 330 331 331 #: src/components/account-info.jsx:1485 332 - #: src/components/status.jsx:1245 332 + #: src/components/status.jsx:1257 333 333 msgid "Link copied" 334 334 msgstr "" 335 335 336 336 #: src/components/account-info.jsx:1488 337 - #: src/components/status.jsx:1248 337 + #: src/components/status.jsx:1260 338 338 msgid "Unable to copy link" 339 339 msgstr "" 340 340 341 341 #: src/components/account-info.jsx:1494 342 342 #: src/components/shortcuts-settings.jsx:1059 343 - #: src/components/status.jsx:1254 344 - #: src/components/status.jsx:3358 343 + #: src/components/status.jsx:1266 344 + #: src/components/status.jsx:3371 345 345 msgid "Copy" 346 346 msgstr "" 347 347 348 348 #: src/components/account-info.jsx:1509 349 349 #: src/components/shortcuts-settings.jsx:1077 350 - #: src/components/status.jsx:1270 350 + #: src/components/status.jsx:1282 351 351 msgid "Sharing doesn't seem to work." 352 352 msgstr "" 353 353 354 354 #: src/components/account-info.jsx:1515 355 - #: src/components/status.jsx:1276 355 + #: src/components/status.jsx:1288 356 356 msgid "Share…" 357 357 msgstr "" 358 358 ··· 466 466 #: src/components/shortcuts-settings.jsx:230 467 467 #: src/components/shortcuts-settings.jsx:583 468 468 #: src/components/shortcuts-settings.jsx:783 469 - #: src/components/status.jsx:3082 470 - #: src/components/status.jsx:3322 471 - #: src/components/status.jsx:3831 469 + #: src/components/status.jsx:3095 470 + #: src/components/status.jsx:3335 471 + #: src/components/status.jsx:3844 472 472 #: src/pages/accounts.jsx:37 473 473 #: src/pages/catchup.jsx:1584 474 474 #: src/pages/filters.jsx:225 ··· 718 718 msgstr "Attachment #{i} failed" 719 719 720 720 #: src/components/compose.jsx:1214 721 - #: src/components/status.jsx:2148 721 + #: src/components/status.jsx:2160 722 722 #: src/components/timeline.jsx:1019 723 723 msgid "Content warning" 724 724 msgstr "" ··· 754 754 755 755 #: src/components/compose.jsx:1281 756 756 #: src/components/status.jsx:100 757 - #: src/components/status.jsx:2024 757 + #: src/components/status.jsx:2036 758 758 msgid "Private mention" 759 759 msgstr "" 760 760 ··· 791 791 792 792 #: src/components/compose.jsx:1668 793 793 #: src/components/keyboard-shortcuts-help.jsx:155 794 - #: src/components/status.jsx:1017 795 - #: src/components/status.jsx:1798 796 - #: src/components/status.jsx:1799 797 - #: src/components/status.jsx:2484 794 + #: src/components/status.jsx:1029 795 + #: src/components/status.jsx:1810 796 + #: src/components/status.jsx:1811 797 + #: src/components/status.jsx:2497 798 798 msgid "Reply" 799 799 msgstr "" 800 800 ··· 1016 1016 1017 1017 #: src/components/drafts.jsx:128 1018 1018 #: src/components/list-add-edit.jsx:188 1019 - #: src/components/status.jsx:1420 1019 + #: src/components/status.jsx:1432 1020 1020 #: src/pages/filters.jsx:603 1021 1021 #: src/pages/scheduled-posts.jsx:369 1022 1022 msgid "Delete…" ··· 1225 1225 msgstr "" 1226 1226 1227 1227 #: src/components/keyboard-shortcuts-help.jsx:176 1228 - #: src/components/status.jsx:1025 1229 - #: src/components/status.jsx:2511 1230 - #: src/components/status.jsx:2534 1231 - #: src/components/status.jsx:2535 1228 + #: src/components/status.jsx:1037 1229 + #: src/components/status.jsx:2524 1230 + #: src/components/status.jsx:2547 1231 + #: src/components/status.jsx:2548 1232 1232 msgid "Boost" 1233 1233 msgstr "" 1234 1234 ··· 1237 1237 msgstr "" 1238 1238 1239 1239 #: src/components/keyboard-shortcuts-help.jsx:184 1240 - #: src/components/status.jsx:1088 1241 - #: src/components/status.jsx:2559 1242 - #: src/components/status.jsx:2560 1240 + #: src/components/status.jsx:1100 1241 + #: src/components/status.jsx:2572 1242 + #: src/components/status.jsx:2573 1243 1243 msgid "Bookmark" 1244 1244 msgstr "" 1245 1245 ··· 1304 1304 msgstr "" 1305 1305 1306 1306 #: src/components/media-alt-modal.jsx:67 1307 - #: src/components/status.jsx:1131 1308 - #: src/components/status.jsx:1140 1307 + #: src/components/status.jsx:1143 1308 + #: src/components/status.jsx:1152 1309 1309 #: src/components/translation-block.jsx:237 1310 1310 msgid "Translate" 1311 1311 msgstr "" 1312 1312 1313 1313 #: src/components/media-alt-modal.jsx:78 1314 - #: src/components/status.jsx:1159 1314 + #: src/components/status.jsx:1171 1315 1315 msgid "Speak" 1316 1316 msgstr "" 1317 1317 ··· 1348 1348 msgstr "" 1349 1349 1350 1350 #: src/components/media-post.jsx:133 1351 - #: src/components/status.jsx:3661 1352 - #: src/components/status.jsx:3757 1353 - #: src/components/status.jsx:3835 1351 + #: src/components/status.jsx:3674 1352 + #: src/components/status.jsx:3770 1353 + #: src/components/status.jsx:3848 1354 1354 #: src/components/timeline.jsx:1008 1355 1355 #: src/pages/catchup.jsx:75 1356 1356 #: src/pages/catchup.jsx:1880 ··· 1662 1662 msgstr "" 1663 1663 1664 1664 #: src/components/notification.jsx:445 1665 - #: src/components/status.jsx:1102 1666 - #: src/components/status.jsx:1112 1665 + #: src/components/status.jsx:1114 1666 + #: src/components/status.jsx:1124 1667 1667 msgid "Boosted/Liked by…" 1668 1668 msgstr "" 1669 1669 ··· 1689 1689 msgstr "View #Wrapstodon" 1690 1690 1691 1691 #: src/components/notification.jsx:799 1692 - #: src/components/status.jsx:316 1692 + #: src/components/status.jsx:328 1693 1693 msgid "Read more →" 1694 1694 msgstr "" 1695 1695 ··· 1991 1991 msgstr "" 1992 1992 1993 1993 #: src/components/shortcuts-settings.jsx:379 1994 - #: src/components/status.jsx:1382 1994 + #: src/components/status.jsx:1394 1995 1995 #: src/pages/list.jsx:195 1996 1996 msgid "Edit" 1997 1997 msgstr "" ··· 2190 2190 msgid "Import/export settings from/to instance server (Very experimental)" 2191 2191 msgstr "" 2192 2192 2193 - #: src/components/status.jsx:601 2193 + #: src/components/status.jsx:613 2194 2194 msgid "<0/> <1>boosted</1>" 2195 2195 msgstr "" 2196 2196 2197 - #: src/components/status.jsx:700 2197 + #: src/components/status.jsx:712 2198 2198 msgid "Sorry, your current logged-in instance can't interact with this post from another instance." 2199 2199 msgstr "" 2200 2200 2201 2201 #. placeholder {0}: username || acct 2202 - #: src/components/status.jsx:854 2202 + #: src/components/status.jsx:866 2203 2203 msgid "Unliked @{0}'s post" 2204 2204 msgstr "" 2205 2205 2206 2206 #. placeholder {0}: username || acct 2207 - #: src/components/status.jsx:855 2207 + #: src/components/status.jsx:867 2208 2208 msgid "Liked @{0}'s post" 2209 2209 msgstr "Liked @{0}'s post" 2210 2210 2211 2211 #. placeholder {0}: username || acct 2212 - #: src/components/status.jsx:894 2212 + #: src/components/status.jsx:906 2213 2213 msgid "Unbookmarked @{0}'s post" 2214 2214 msgstr "Unbookmarked @{0}'s post" 2215 2215 2216 2216 #. placeholder {0}: username || acct 2217 - #: src/components/status.jsx:895 2217 + #: src/components/status.jsx:907 2218 2218 msgid "Bookmarked @{0}'s post" 2219 2219 msgstr "Bookmarked @{0}'s post" 2220 2220 2221 - #: src/components/status.jsx:994 2221 + #: src/components/status.jsx:1006 2222 2222 msgid "Some media have no descriptions." 2223 2223 msgstr "" 2224 2224 2225 2225 #. placeholder {0}: rtf.format(-statusMonthsAgo, 'month') 2226 - #: src/components/status.jsx:1001 2226 + #: src/components/status.jsx:1013 2227 2227 msgid "Old post (<0>{0}</0>)" 2228 2228 msgstr "" 2229 2229 2230 - #: src/components/status.jsx:1025 2231 - #: src/components/status.jsx:1065 2232 - #: src/components/status.jsx:2511 2233 - #: src/components/status.jsx:2534 2230 + #: src/components/status.jsx:1037 2231 + #: src/components/status.jsx:1077 2232 + #: src/components/status.jsx:2524 2233 + #: src/components/status.jsx:2547 2234 2234 msgid "Unboost" 2235 2235 msgstr "" 2236 2236 2237 - #: src/components/status.jsx:1041 2238 - #: src/components/status.jsx:2526 2237 + #: src/components/status.jsx:1053 2238 + #: src/components/status.jsx:2539 2239 2239 msgid "Quote" 2240 2240 msgstr "" 2241 2241 2242 2242 #. placeholder {0}: username || acct 2243 - #: src/components/status.jsx:1053 2244 - #: src/components/status.jsx:1516 2243 + #: src/components/status.jsx:1065 2244 + #: src/components/status.jsx:1528 2245 2245 msgid "Unboosted @{0}'s post" 2246 2246 msgstr "Unboosted @{0}'s post" 2247 2247 2248 2248 #. placeholder {0}: username || acct 2249 - #: src/components/status.jsx:1054 2250 - #: src/components/status.jsx:1517 2249 + #: src/components/status.jsx:1066 2250 + #: src/components/status.jsx:1529 2251 2251 msgid "Boosted @{0}'s post" 2252 2252 msgstr "Boosted @{0}'s post" 2253 2253 2254 - #: src/components/status.jsx:1066 2254 + #: src/components/status.jsx:1078 2255 2255 msgid "Boost…" 2256 2256 msgstr "" 2257 2257 2258 - #: src/components/status.jsx:1078 2259 - #: src/components/status.jsx:1808 2260 - #: src/components/status.jsx:2547 2258 + #: src/components/status.jsx:1090 2259 + #: src/components/status.jsx:1820 2260 + #: src/components/status.jsx:2560 2261 2261 msgid "Unlike" 2262 2262 msgstr "" 2263 2263 2264 - #: src/components/status.jsx:1079 2265 - #: src/components/status.jsx:1808 2266 - #: src/components/status.jsx:1809 2267 - #: src/components/status.jsx:2547 2268 - #: src/components/status.jsx:2548 2264 + #: src/components/status.jsx:1091 2265 + #: src/components/status.jsx:1820 2266 + #: src/components/status.jsx:1821 2267 + #: src/components/status.jsx:2560 2268 + #: src/components/status.jsx:2561 2269 2269 msgid "Like" 2270 2270 msgstr "" 2271 2271 2272 - #: src/components/status.jsx:1088 2273 - #: src/components/status.jsx:2559 2272 + #: src/components/status.jsx:1100 2273 + #: src/components/status.jsx:2572 2274 2274 msgid "Unbookmark" 2275 2275 msgstr "" 2276 2276 2277 - #: src/components/status.jsx:1171 2277 + #: src/components/status.jsx:1183 2278 2278 msgid "Post text copied" 2279 2279 msgstr "Post text copied" 2280 2280 2281 - #: src/components/status.jsx:1174 2281 + #: src/components/status.jsx:1186 2282 2282 msgid "Unable to copy post text" 2283 2283 msgstr "Unable to copy post text" 2284 2284 2285 - #: src/components/status.jsx:1180 2285 + #: src/components/status.jsx:1192 2286 2286 msgid "Copy post text" 2287 2287 msgstr "Copy post text" 2288 2288 2289 2289 #. placeholder {0}: username || acct 2290 - #: src/components/status.jsx:1198 2290 + #: src/components/status.jsx:1210 2291 2291 msgid "View post by <0>@{0}</0>" 2292 2292 msgstr "" 2293 2293 2294 - #: src/components/status.jsx:1219 2294 + #: src/components/status.jsx:1231 2295 2295 msgid "Show Edit History" 2296 2296 msgstr "" 2297 2297 2298 - #: src/components/status.jsx:1222 2298 + #: src/components/status.jsx:1234 2299 2299 msgid "Edited: {editedDateText}" 2300 2300 msgstr "" 2301 2301 2302 - #: src/components/status.jsx:1289 2303 - #: src/components/status.jsx:3327 2302 + #: src/components/status.jsx:1301 2303 + #: src/components/status.jsx:3340 2304 2304 msgid "Embed post" 2305 2305 msgstr "" 2306 2306 2307 - #: src/components/status.jsx:1303 2307 + #: src/components/status.jsx:1315 2308 2308 msgid "Conversation unmuted" 2309 2309 msgstr "" 2310 2310 2311 - #: src/components/status.jsx:1303 2311 + #: src/components/status.jsx:1315 2312 2312 msgid "Conversation muted" 2313 2313 msgstr "" 2314 2314 2315 - #: src/components/status.jsx:1309 2315 + #: src/components/status.jsx:1321 2316 2316 msgid "Unable to unmute conversation" 2317 2317 msgstr "" 2318 2318 2319 - #: src/components/status.jsx:1310 2319 + #: src/components/status.jsx:1322 2320 2320 msgid "Unable to mute conversation" 2321 2321 msgstr "" 2322 2322 2323 - #: src/components/status.jsx:1319 2323 + #: src/components/status.jsx:1331 2324 2324 msgid "Unmute conversation" 2325 2325 msgstr "" 2326 2326 2327 - #: src/components/status.jsx:1326 2327 + #: src/components/status.jsx:1338 2328 2328 msgid "Mute conversation" 2329 2329 msgstr "" 2330 2330 2331 - #: src/components/status.jsx:1342 2331 + #: src/components/status.jsx:1354 2332 2332 msgid "Post unpinned from profile" 2333 2333 msgstr "" 2334 2334 2335 - #: src/components/status.jsx:1343 2335 + #: src/components/status.jsx:1355 2336 2336 msgid "Post pinned to profile" 2337 2337 msgstr "" 2338 2338 2339 - #: src/components/status.jsx:1348 2339 + #: src/components/status.jsx:1360 2340 2340 msgid "Unable to unpin post" 2341 2341 msgstr "" 2342 2342 2343 - #: src/components/status.jsx:1348 2343 + #: src/components/status.jsx:1360 2344 2344 msgid "Unable to pin post" 2345 2345 msgstr "" 2346 2346 2347 - #: src/components/status.jsx:1357 2347 + #: src/components/status.jsx:1369 2348 2348 msgid "Unpin from profile" 2349 2349 msgstr "" 2350 2350 2351 - #: src/components/status.jsx:1364 2351 + #: src/components/status.jsx:1376 2352 2352 msgid "Pin to profile" 2353 2353 msgstr "" 2354 2354 2355 - #: src/components/status.jsx:1393 2355 + #: src/components/status.jsx:1405 2356 2356 msgid "Delete this post?" 2357 2357 msgstr "" 2358 2358 2359 - #: src/components/status.jsx:1409 2359 + #: src/components/status.jsx:1421 2360 2360 msgid "Post deleted" 2361 2361 msgstr "" 2362 2362 2363 - #: src/components/status.jsx:1412 2363 + #: src/components/status.jsx:1424 2364 2364 msgid "Unable to delete post" 2365 2365 msgstr "" 2366 2366 2367 - #: src/components/status.jsx:1440 2367 + #: src/components/status.jsx:1452 2368 2368 msgid "Report post…" 2369 2369 msgstr "" 2370 2370 2371 - #: src/components/status.jsx:1809 2372 - #: src/components/status.jsx:1845 2373 - #: src/components/status.jsx:2548 2371 + #: src/components/status.jsx:1821 2372 + #: src/components/status.jsx:1857 2373 + #: src/components/status.jsx:2561 2374 2374 msgid "Liked" 2375 2375 msgstr "" 2376 2376 2377 - #: src/components/status.jsx:1842 2378 - #: src/components/status.jsx:2535 2377 + #: src/components/status.jsx:1854 2378 + #: src/components/status.jsx:2548 2379 2379 msgid "Boosted" 2380 2380 msgstr "" 2381 2381 2382 - #: src/components/status.jsx:1852 2383 - #: src/components/status.jsx:2560 2382 + #: src/components/status.jsx:1864 2383 + #: src/components/status.jsx:2573 2384 2384 msgid "Bookmarked" 2385 2385 msgstr "" 2386 2386 2387 - #: src/components/status.jsx:1856 2387 + #: src/components/status.jsx:1868 2388 2388 msgid "Pinned" 2389 2389 msgstr "" 2390 2390 2391 - #: src/components/status.jsx:1902 2392 - #: src/components/status.jsx:2372 2391 + #: src/components/status.jsx:1914 2392 + #: src/components/status.jsx:2385 2393 2393 msgid "Deleted" 2394 2394 msgstr "" 2395 2395 2396 - #: src/components/status.jsx:1943 2396 + #: src/components/status.jsx:1955 2397 2397 msgid "{repliesCount, plural, one {# reply} other {# replies}}" 2398 2398 msgstr "" 2399 2399 2400 2400 #. placeholder {0}: snapStates.statusThreadNumber[sKey] ? ` ${snapStates.statusThreadNumber[sKey]}/X` : '' 2401 - #: src/components/status.jsx:2033 2401 + #: src/components/status.jsx:2045 2402 2402 msgid "Thread{0}" 2403 2403 msgstr "" 2404 2404 2405 - #: src/components/status.jsx:2111 2406 - #: src/components/status.jsx:2173 2407 - #: src/components/status.jsx:2268 2405 + #: src/components/status.jsx:2123 2406 + #: src/components/status.jsx:2185 2407 + #: src/components/status.jsx:2281 2408 2408 msgid "Show less" 2409 2409 msgstr "" 2410 2410 2411 - #: src/components/status.jsx:2111 2412 - #: src/components/status.jsx:2173 2411 + #: src/components/status.jsx:2123 2412 + #: src/components/status.jsx:2185 2413 2413 msgid "Show content" 2414 2414 msgstr "" 2415 2415 2416 2416 #. placeholder {0}: filterInfo.titlesStr 2417 2417 #. placeholder {0}: filterInfo?.titlesStr 2418 - #: src/components/status.jsx:2264 2418 + #: src/components/status.jsx:2277 2419 2419 #: src/pages/catchup.jsx:1879 2420 2420 msgid "Filtered: {0}" 2421 2421 msgstr "Filtered: {0}" 2422 2422 2423 - #: src/components/status.jsx:2268 2423 + #: src/components/status.jsx:2281 2424 2424 msgid "Show media" 2425 2425 msgstr "" 2426 2426 2427 - #: src/components/status.jsx:2408 2427 + #: src/components/status.jsx:2421 2428 2428 msgid "Edited" 2429 2429 msgstr "" 2430 2430 2431 - #: src/components/status.jsx:2485 2431 + #: src/components/status.jsx:2498 2432 2432 msgid "Comments" 2433 2433 msgstr "" 2434 2434 2435 2435 #. More from [Author] 2436 - #: src/components/status.jsx:2785 2436 + #: src/components/status.jsx:2798 2437 2437 msgid "More from <0/>" 2438 2438 msgstr "More from <0/>" 2439 2439 2440 - #: src/components/status.jsx:3087 2440 + #: src/components/status.jsx:3100 2441 2441 msgid "Edit History" 2442 2442 msgstr "" 2443 2443 2444 - #: src/components/status.jsx:3091 2444 + #: src/components/status.jsx:3104 2445 2445 msgid "Failed to load history" 2446 2446 msgstr "" 2447 2447 2448 - #: src/components/status.jsx:3096 2448 + #: src/components/status.jsx:3109 2449 2449 #: src/pages/annual-report.jsx:45 2450 2450 msgid "Loading…" 2451 2451 msgstr "" 2452 2452 2453 - #: src/components/status.jsx:3332 2453 + #: src/components/status.jsx:3345 2454 2454 msgid "HTML Code" 2455 2455 msgstr "" 2456 2456 2457 - #: src/components/status.jsx:3349 2457 + #: src/components/status.jsx:3362 2458 2458 msgid "HTML code copied" 2459 2459 msgstr "" 2460 2460 2461 - #: src/components/status.jsx:3352 2461 + #: src/components/status.jsx:3365 2462 2462 msgid "Unable to copy HTML code" 2463 2463 msgstr "" 2464 2464 2465 - #: src/components/status.jsx:3364 2465 + #: src/components/status.jsx:3377 2466 2466 msgid "Media attachments:" 2467 2467 msgstr "" 2468 2468 2469 - #: src/components/status.jsx:3386 2469 + #: src/components/status.jsx:3399 2470 2470 msgid "Account Emojis:" 2471 2471 msgstr "" 2472 2472 2473 - #: src/components/status.jsx:3417 2474 - #: src/components/status.jsx:3462 2473 + #: src/components/status.jsx:3430 2474 + #: src/components/status.jsx:3475 2475 2475 msgid "static URL" 2476 2476 msgstr "" 2477 2477 2478 - #: src/components/status.jsx:3431 2478 + #: src/components/status.jsx:3444 2479 2479 msgid "Emojis:" 2480 2480 msgstr "" 2481 2481 2482 - #: src/components/status.jsx:3476 2482 + #: src/components/status.jsx:3489 2483 2483 msgid "Notes:" 2484 2484 msgstr "" 2485 2485 2486 - #: src/components/status.jsx:3480 2486 + #: src/components/status.jsx:3493 2487 2487 msgid "This is static, unstyled and scriptless. You may need to apply your own styles and edit as needed." 2488 2488 msgstr "" 2489 2489 2490 - #: src/components/status.jsx:3486 2490 + #: src/components/status.jsx:3499 2491 2491 msgid "Polls are not interactive, becomes a list with vote counts." 2492 2492 msgstr "" 2493 2493 2494 - #: src/components/status.jsx:3491 2494 + #: src/components/status.jsx:3504 2495 2495 msgid "Media attachments can be images, videos, audios or any file types." 2496 2496 msgstr "" 2497 2497 2498 - #: src/components/status.jsx:3497 2498 + #: src/components/status.jsx:3510 2499 2499 msgid "Post could be edited or deleted later." 2500 2500 msgstr "" 2501 2501 2502 - #: src/components/status.jsx:3503 2502 + #: src/components/status.jsx:3516 2503 2503 msgid "Preview" 2504 2504 msgstr "" 2505 2505 2506 - #: src/components/status.jsx:3512 2506 + #: src/components/status.jsx:3525 2507 2507 msgid "Note: This preview is lightly styled." 2508 2508 msgstr "" 2509 2509 2510 2510 #. [Name] [Visibility icon] boosted 2511 - #: src/components/status.jsx:3765 2511 + #: src/components/status.jsx:3778 2512 2512 msgid "<0/> <1/> boosted" 2513 2513 msgstr "" 2514 2514