this repo has no description
0
fork

Configure Feed

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

Fix different language detection not working properly

+151 -138
+20 -7
src/components/status.jsx
··· 154 154 return !!text; 155 155 } 156 156 157 - function getHTMLTextForDetectLang(content) { 157 + function getHTMLTextForDetectLang(content, emojis) { 158 + if (emojis?.length) { 159 + const emojisRegex = new RegExp( 160 + `:(${emojis.map((e) => e.shortcode).join('|')}):`, 161 + 'g', 162 + ); 163 + content = content.replace(emojisRegex, ''); 164 + } 165 + 158 166 return getHTMLText(content, { 159 167 preProcess: (dom) => { 160 168 // Remove anything that can skew the language detection ··· 402 410 if (languageAutoDetected) return; 403 411 let timer; 404 412 timer = setTimeout(async () => { 405 - let detected = await detectLang(getHTMLTextForDetectLang(content)); 413 + let detected = await detectLang( 414 + getHTMLTextForDetectLang(content, emojis), 415 + ); 406 416 setLanguageAutoDetected(detected); 407 417 }, 1000); 408 418 return () => clearTimeout(timer); ··· 844 854 const contentTranslationHideLanguages = 845 855 snapStates.settings.contentTranslationHideLanguages || []; 846 856 const [differentLanguage, setDifferentLanguage] = useState( 847 - DIFFERENT_LANG_CHECK[language + contentTranslationHideLanguages] 848 - ? checkDifferentLanguage(language, contentTranslationHideLanguages) 849 - : false, 857 + () => 858 + DIFFERENT_LANG_CHECK[language + contentTranslationHideLanguages] || 859 + checkDifferentLanguage(language, contentTranslationHideLanguages), 850 860 ); 851 861 useEffect(() => { 862 + if (!language || differentLanguage) { 863 + return; 864 + } 852 865 if ( 853 - !language || 854 - differentLanguage || 866 + !differentLanguage && 855 867 DIFFERENT_LANG_CHECK[language + contentTranslationHideLanguages] 856 868 ) { 869 + setDifferentLanguage(true); 857 870 return; 858 871 } 859 872 let timeout = setTimeout(() => {
+131 -131
src/locales/en.po
··· 34 34 35 35 #: src/components/account-block.jsx:169 36 36 #: src/components/account-info.jsx:664 37 - #: src/components/status.jsx:514 37 + #: src/components/status.jsx:524 38 38 msgid "Group" 39 39 msgstr "" 40 40 ··· 111 111 #: src/components/compose.jsx:2696 112 112 #: src/components/media-alt-modal.jsx:46 113 113 #: src/components/media-modal.jsx:358 114 - #: src/components/status.jsx:1734 115 - #: src/components/status.jsx:1751 116 - #: src/components/status.jsx:1876 117 - #: src/components/status.jsx:2481 118 - #: src/components/status.jsx:2484 114 + #: src/components/status.jsx:1747 115 + #: src/components/status.jsx:1764 116 + #: src/components/status.jsx:1889 117 + #: src/components/status.jsx:2494 118 + #: src/components/status.jsx:2497 119 119 #: src/pages/account-statuses.jsx:523 120 120 #: src/pages/accounts.jsx:110 121 121 #: src/pages/hashtag.jsx:200 ··· 197 197 msgstr "" 198 198 199 199 #: src/components/account-info.jsx:887 200 - #: src/components/status.jsx:2267 200 + #: src/components/status.jsx:2280 201 201 #: src/pages/catchup.jsx:71 202 202 #: src/pages/catchup.jsx:1445 203 203 #: src/pages/catchup.jsx:2058 ··· 294 294 msgstr "" 295 295 296 296 #: src/components/account-info.jsx:1327 297 - #: src/components/status.jsx:1174 297 + #: src/components/status.jsx:1187 298 298 msgid "Link copied" 299 299 msgstr "" 300 300 301 301 #: src/components/account-info.jsx:1330 302 - #: src/components/status.jsx:1177 302 + #: src/components/status.jsx:1190 303 303 msgid "Unable to copy link" 304 304 msgstr "" 305 305 306 306 #: src/components/account-info.jsx:1336 307 307 #: src/components/shortcuts-settings.jsx:1059 308 - #: src/components/status.jsx:1183 309 - #: src/components/status.jsx:3260 308 + #: src/components/status.jsx:1196 309 + #: src/components/status.jsx:3273 310 310 msgid "Copy" 311 311 msgstr "" 312 312 313 313 #: src/components/account-info.jsx:1351 314 314 #: src/components/shortcuts-settings.jsx:1077 315 - #: src/components/status.jsx:1199 315 + #: src/components/status.jsx:1212 316 316 msgid "Sharing doesn't seem to work." 317 317 msgstr "" 318 318 319 319 #: src/components/account-info.jsx:1357 320 - #: src/components/status.jsx:1205 320 + #: src/components/status.jsx:1218 321 321 msgid "Share…" 322 322 msgstr "" 323 323 ··· 436 436 #: src/components/shortcuts-settings.jsx:230 437 437 #: src/components/shortcuts-settings.jsx:583 438 438 #: src/components/shortcuts-settings.jsx:783 439 - #: src/components/status.jsx:2984 440 - #: src/components/status.jsx:3224 441 - #: src/components/status.jsx:3724 439 + #: src/components/status.jsx:2997 440 + #: src/components/status.jsx:3237 441 + #: src/components/status.jsx:3737 442 442 #: src/pages/accounts.jsx:37 443 443 #: src/pages/catchup.jsx:1581 444 444 #: src/pages/filters.jsx:224 ··· 664 664 msgstr "Attachment #{i} failed" 665 665 666 666 #: src/components/compose.jsx:1206 667 - #: src/components/status.jsx:2062 667 + #: src/components/status.jsx:2075 668 668 #: src/components/timeline.jsx:989 669 669 msgid "Content warning" 670 670 msgstr "" ··· 700 700 701 701 #: src/components/compose.jsx:1273 702 702 #: src/components/status.jsx:97 703 - #: src/components/status.jsx:1940 703 + #: src/components/status.jsx:1953 704 704 msgid "Private mention" 705 705 msgstr "" 706 706 ··· 737 737 738 738 #: src/components/compose.jsx:1627 739 739 #: src/components/keyboard-shortcuts-help.jsx:154 740 - #: src/components/status.jsx:948 741 - #: src/components/status.jsx:1714 742 - #: src/components/status.jsx:1715 743 - #: src/components/status.jsx:2385 740 + #: src/components/status.jsx:961 741 + #: src/components/status.jsx:1727 742 + #: src/components/status.jsx:1728 743 + #: src/components/status.jsx:2398 744 744 msgid "Reply" 745 745 msgstr "" 746 746 ··· 972 972 973 973 #: src/components/drafts.jsx:128 974 974 #: src/components/list-add-edit.jsx:186 975 - #: src/components/status.jsx:1349 975 + #: src/components/status.jsx:1362 976 976 #: src/pages/filters.jsx:587 977 977 #: src/pages/scheduled-posts.jsx:367 978 978 msgid "Delete…" ··· 1181 1181 msgstr "" 1182 1182 1183 1183 #: src/components/keyboard-shortcuts-help.jsx:175 1184 - #: src/components/status.jsx:956 1185 - #: src/components/status.jsx:2412 1186 - #: src/components/status.jsx:2435 1187 - #: src/components/status.jsx:2436 1184 + #: src/components/status.jsx:969 1185 + #: src/components/status.jsx:2425 1186 + #: src/components/status.jsx:2448 1187 + #: src/components/status.jsx:2449 1188 1188 msgid "Boost" 1189 1189 msgstr "" 1190 1190 ··· 1193 1193 msgstr "" 1194 1194 1195 1195 #: src/components/keyboard-shortcuts-help.jsx:183 1196 - #: src/components/status.jsx:1019 1197 - #: src/components/status.jsx:2460 1198 - #: src/components/status.jsx:2461 1196 + #: src/components/status.jsx:1032 1197 + #: src/components/status.jsx:2473 1198 + #: src/components/status.jsx:2474 1199 1199 msgid "Bookmark" 1200 1200 msgstr "" 1201 1201 ··· 1254 1254 msgstr "" 1255 1255 1256 1256 #: src/components/media-alt-modal.jsx:58 1257 - #: src/components/status.jsx:1063 1258 - #: src/components/status.jsx:1090 1257 + #: src/components/status.jsx:1076 1258 + #: src/components/status.jsx:1103 1259 1259 #: src/components/translation-block.jsx:196 1260 1260 msgid "Translate" 1261 1261 msgstr "" 1262 1262 1263 1263 #: src/components/media-alt-modal.jsx:69 1264 - #: src/components/status.jsx:1077 1265 - #: src/components/status.jsx:1104 1264 + #: src/components/status.jsx:1090 1265 + #: src/components/status.jsx:1117 1266 1266 msgid "Speak" 1267 1267 msgstr "" 1268 1268 ··· 1299 1299 msgstr "" 1300 1300 1301 1301 #: src/components/media-post.jsx:134 1302 - #: src/components/status.jsx:3554 1303 - #: src/components/status.jsx:3650 1304 - #: src/components/status.jsx:3728 1302 + #: src/components/status.jsx:3567 1303 + #: src/components/status.jsx:3663 1304 + #: src/components/status.jsx:3741 1305 1305 #: src/components/timeline.jsx:978 1306 1306 #: src/pages/catchup.jsx:75 1307 1307 #: src/pages/catchup.jsx:1877 ··· 1619 1619 msgstr "" 1620 1620 1621 1621 #: src/components/notification.jsx:441 1622 - #: src/components/status.jsx:1033 1623 - #: src/components/status.jsx:1043 1622 + #: src/components/status.jsx:1046 1623 + #: src/components/status.jsx:1056 1624 1624 msgid "Boosted/Liked by…" 1625 1625 msgstr "" 1626 1626 ··· 1646 1646 msgstr "View #Wrapstodon" 1647 1647 1648 1648 #: src/components/notification.jsx:770 1649 - #: src/components/status.jsx:267 1649 + #: src/components/status.jsx:275 1650 1650 msgid "Read more →" 1651 1651 msgstr "" 1652 1652 ··· 1948 1948 msgstr "" 1949 1949 1950 1950 #: src/components/shortcuts-settings.jsx:379 1951 - #: src/components/status.jsx:1311 1951 + #: src/components/status.jsx:1324 1952 1952 #: src/pages/list.jsx:171 1953 1953 msgid "Edit" 1954 1954 msgstr "" ··· 2147 2147 msgid "Import/export settings from/to instance server (Very experimental)" 2148 2148 msgstr "" 2149 2149 2150 - #: src/components/status.jsx:538 2150 + #: src/components/status.jsx:548 2151 2151 msgid "<0/> <1>boosted</1>" 2152 2152 msgstr "" 2153 2153 2154 - #: src/components/status.jsx:637 2154 + #: src/components/status.jsx:647 2155 2155 msgid "Sorry, your current logged-in instance can't interact with this post from another instance." 2156 2156 msgstr "" 2157 2157 2158 2158 #. placeholder {0}: username || acct 2159 - #: src/components/status.jsx:790 2159 + #: src/components/status.jsx:800 2160 2160 msgid "Unliked @{0}'s post" 2161 2161 msgstr "" 2162 2162 2163 2163 #. placeholder {1}: username || acct 2164 - #: src/components/status.jsx:791 2164 + #: src/components/status.jsx:801 2165 2165 msgid "Liked @{1}'s post" 2166 2166 msgstr "Liked @{1}'s post" 2167 2167 2168 2168 #. placeholder {2}: username || acct 2169 - #: src/components/status.jsx:830 2169 + #: src/components/status.jsx:840 2170 2170 msgid "Unbookmarked @{2}'s post" 2171 2171 msgstr "Unbookmarked @{2}'s post" 2172 2172 2173 2173 #. placeholder {3}: username || acct 2174 - #: src/components/status.jsx:831 2174 + #: src/components/status.jsx:841 2175 2175 msgid "Bookmarked @{3}'s post" 2176 2176 msgstr "Bookmarked @{3}'s post" 2177 2177 2178 - #: src/components/status.jsx:925 2178 + #: src/components/status.jsx:938 2179 2179 msgid "Some media have no descriptions." 2180 2180 msgstr "" 2181 2181 2182 2182 #. placeholder {0}: rtf.format(-statusMonthsAgo, 'month') 2183 - #: src/components/status.jsx:932 2183 + #: src/components/status.jsx:945 2184 2184 msgid "Old post (<0>{0}</0>)" 2185 2185 msgstr "" 2186 2186 2187 - #: src/components/status.jsx:956 2188 - #: src/components/status.jsx:996 2189 - #: src/components/status.jsx:2412 2190 - #: src/components/status.jsx:2435 2187 + #: src/components/status.jsx:969 2188 + #: src/components/status.jsx:1009 2189 + #: src/components/status.jsx:2425 2190 + #: src/components/status.jsx:2448 2191 2191 msgid "Unboost" 2192 2192 msgstr "" 2193 2193 2194 - #: src/components/status.jsx:972 2195 - #: src/components/status.jsx:2427 2194 + #: src/components/status.jsx:985 2195 + #: src/components/status.jsx:2440 2196 2196 msgid "Quote" 2197 2197 msgstr "" 2198 2198 2199 2199 #. placeholder {4}: username || acct 2200 - #: src/components/status.jsx:984 2200 + #: src/components/status.jsx:997 2201 2201 msgid "Unboosted @{4}'s post" 2202 2202 msgstr "Unboosted @{4}'s post" 2203 2203 2204 2204 #. placeholder {5}: username || acct 2205 - #: src/components/status.jsx:985 2205 + #: src/components/status.jsx:998 2206 2206 msgid "Boosted @{5}'s post" 2207 2207 msgstr "Boosted @{5}'s post" 2208 2208 2209 - #: src/components/status.jsx:997 2209 + #: src/components/status.jsx:1010 2210 2210 msgid "Boost…" 2211 2211 msgstr "" 2212 2212 2213 - #: src/components/status.jsx:1009 2214 - #: src/components/status.jsx:1724 2215 - #: src/components/status.jsx:2448 2213 + #: src/components/status.jsx:1022 2214 + #: src/components/status.jsx:1737 2215 + #: src/components/status.jsx:2461 2216 2216 msgid "Unlike" 2217 2217 msgstr "" 2218 2218 2219 - #: src/components/status.jsx:1010 2220 - #: src/components/status.jsx:1724 2221 - #: src/components/status.jsx:1725 2222 - #: src/components/status.jsx:2448 2223 - #: src/components/status.jsx:2449 2219 + #: src/components/status.jsx:1023 2220 + #: src/components/status.jsx:1737 2221 + #: src/components/status.jsx:1738 2222 + #: src/components/status.jsx:2461 2223 + #: src/components/status.jsx:2462 2224 2224 msgid "Like" 2225 2225 msgstr "" 2226 2226 2227 - #: src/components/status.jsx:1019 2228 - #: src/components/status.jsx:2460 2227 + #: src/components/status.jsx:1032 2228 + #: src/components/status.jsx:2473 2229 2229 msgid "Unbookmark" 2230 2230 msgstr "" 2231 2231 2232 2232 #. placeholder {0}: username || acct 2233 - #: src/components/status.jsx:1127 2233 + #: src/components/status.jsx:1140 2234 2234 msgid "View post by <0>@{0}</0>" 2235 2235 msgstr "" 2236 2236 2237 - #: src/components/status.jsx:1148 2237 + #: src/components/status.jsx:1161 2238 2238 msgid "Show Edit History" 2239 2239 msgstr "" 2240 2240 2241 - #: src/components/status.jsx:1151 2241 + #: src/components/status.jsx:1164 2242 2242 msgid "Edited: {editedDateText}" 2243 2243 msgstr "" 2244 2244 2245 - #: src/components/status.jsx:1218 2246 - #: src/components/status.jsx:3229 2245 + #: src/components/status.jsx:1231 2246 + #: src/components/status.jsx:3242 2247 2247 msgid "Embed post" 2248 2248 msgstr "" 2249 2249 2250 - #: src/components/status.jsx:1232 2250 + #: src/components/status.jsx:1245 2251 2251 msgid "Conversation unmuted" 2252 2252 msgstr "" 2253 2253 2254 - #: src/components/status.jsx:1232 2254 + #: src/components/status.jsx:1245 2255 2255 msgid "Conversation muted" 2256 2256 msgstr "" 2257 2257 2258 - #: src/components/status.jsx:1238 2258 + #: src/components/status.jsx:1251 2259 2259 msgid "Unable to unmute conversation" 2260 2260 msgstr "" 2261 2261 2262 - #: src/components/status.jsx:1239 2262 + #: src/components/status.jsx:1252 2263 2263 msgid "Unable to mute conversation" 2264 2264 msgstr "" 2265 2265 2266 - #: src/components/status.jsx:1248 2266 + #: src/components/status.jsx:1261 2267 2267 msgid "Unmute conversation" 2268 2268 msgstr "" 2269 2269 2270 - #: src/components/status.jsx:1255 2270 + #: src/components/status.jsx:1268 2271 2271 msgid "Mute conversation" 2272 2272 msgstr "" 2273 2273 2274 - #: src/components/status.jsx:1271 2274 + #: src/components/status.jsx:1284 2275 2275 msgid "Post unpinned from profile" 2276 2276 msgstr "" 2277 2277 2278 - #: src/components/status.jsx:1272 2278 + #: src/components/status.jsx:1285 2279 2279 msgid "Post pinned to profile" 2280 2280 msgstr "" 2281 2281 2282 - #: src/components/status.jsx:1277 2282 + #: src/components/status.jsx:1290 2283 2283 msgid "Unable to unpin post" 2284 2284 msgstr "" 2285 2285 2286 - #: src/components/status.jsx:1277 2286 + #: src/components/status.jsx:1290 2287 2287 msgid "Unable to pin post" 2288 2288 msgstr "" 2289 2289 2290 - #: src/components/status.jsx:1286 2290 + #: src/components/status.jsx:1299 2291 2291 msgid "Unpin from profile" 2292 2292 msgstr "" 2293 2293 2294 - #: src/components/status.jsx:1293 2294 + #: src/components/status.jsx:1306 2295 2295 msgid "Pin to profile" 2296 2296 msgstr "" 2297 2297 2298 - #: src/components/status.jsx:1322 2298 + #: src/components/status.jsx:1335 2299 2299 msgid "Delete this post?" 2300 2300 msgstr "" 2301 2301 2302 - #: src/components/status.jsx:1338 2302 + #: src/components/status.jsx:1351 2303 2303 msgid "Post deleted" 2304 2304 msgstr "" 2305 2305 2306 - #: src/components/status.jsx:1341 2306 + #: src/components/status.jsx:1354 2307 2307 msgid "Unable to delete post" 2308 2308 msgstr "" 2309 2309 2310 - #: src/components/status.jsx:1369 2310 + #: src/components/status.jsx:1382 2311 2311 msgid "Report post…" 2312 2312 msgstr "" 2313 2313 2314 2314 #. placeholder {6}: username || acct 2315 - #: src/components/status.jsx:1439 2315 + #: src/components/status.jsx:1452 2316 2316 msgid "Unboosted @{6}'s post" 2317 2317 msgstr "Unboosted @{6}'s post" 2318 2318 2319 2319 #. placeholder {7}: username || acct 2320 - #: src/components/status.jsx:1440 2320 + #: src/components/status.jsx:1453 2321 2321 msgid "Boosted @{7}'s post" 2322 2322 msgstr "Boosted @{7}'s post" 2323 2323 2324 - #: src/components/status.jsx:1725 2325 - #: src/components/status.jsx:1761 2326 - #: src/components/status.jsx:2449 2324 + #: src/components/status.jsx:1738 2325 + #: src/components/status.jsx:1774 2326 + #: src/components/status.jsx:2462 2327 2327 msgid "Liked" 2328 2328 msgstr "" 2329 2329 2330 - #: src/components/status.jsx:1758 2331 - #: src/components/status.jsx:2436 2330 + #: src/components/status.jsx:1771 2331 + #: src/components/status.jsx:2449 2332 2332 msgid "Boosted" 2333 2333 msgstr "" 2334 2334 2335 - #: src/components/status.jsx:1768 2336 - #: src/components/status.jsx:2461 2335 + #: src/components/status.jsx:1781 2336 + #: src/components/status.jsx:2474 2337 2337 msgid "Bookmarked" 2338 2338 msgstr "" 2339 2339 2340 - #: src/components/status.jsx:1772 2340 + #: src/components/status.jsx:1785 2341 2341 msgid "Pinned" 2342 2342 msgstr "" 2343 2343 2344 - #: src/components/status.jsx:1818 2345 - #: src/components/status.jsx:2275 2344 + #: src/components/status.jsx:1831 2345 + #: src/components/status.jsx:2288 2346 2346 msgid "Deleted" 2347 2347 msgstr "" 2348 2348 2349 - #: src/components/status.jsx:1859 2349 + #: src/components/status.jsx:1872 2350 2350 msgid "{repliesCount, plural, one {# reply} other {# replies}}" 2351 2351 msgstr "" 2352 2352 2353 2353 #. placeholder {0}: snapStates.statusThreadNumber[sKey] ? ` ${snapStates.statusThreadNumber[sKey]}/X` : '' 2354 - #: src/components/status.jsx:1949 2354 + #: src/components/status.jsx:1962 2355 2355 msgid "Thread{0}" 2356 2356 msgstr "" 2357 2357 2358 - #: src/components/status.jsx:2025 2359 - #: src/components/status.jsx:2087 2360 - #: src/components/status.jsx:2172 2358 + #: src/components/status.jsx:2038 2359 + #: src/components/status.jsx:2100 2360 + #: src/components/status.jsx:2185 2361 2361 msgid "Show less" 2362 2362 msgstr "" 2363 2363 2364 - #: src/components/status.jsx:2025 2365 - #: src/components/status.jsx:2087 2364 + #: src/components/status.jsx:2038 2365 + #: src/components/status.jsx:2100 2366 2366 msgid "Show content" 2367 2367 msgstr "" 2368 2368 2369 - #: src/components/status.jsx:2172 2369 + #: src/components/status.jsx:2185 2370 2370 msgid "Show media" 2371 2371 msgstr "" 2372 2372 2373 - #: src/components/status.jsx:2309 2373 + #: src/components/status.jsx:2322 2374 2374 msgid "Edited" 2375 2375 msgstr "" 2376 2376 2377 - #: src/components/status.jsx:2386 2377 + #: src/components/status.jsx:2399 2378 2378 msgid "Comments" 2379 2379 msgstr "" 2380 2380 2381 2381 #. More from [Author] 2382 - #: src/components/status.jsx:2687 2382 + #: src/components/status.jsx:2700 2383 2383 msgid "More from <0/>" 2384 2384 msgstr "More from <0/>" 2385 2385 2386 - #: src/components/status.jsx:2989 2386 + #: src/components/status.jsx:3002 2387 2387 msgid "Edit History" 2388 2388 msgstr "" 2389 2389 2390 - #: src/components/status.jsx:2993 2390 + #: src/components/status.jsx:3006 2391 2391 msgid "Failed to load history" 2392 2392 msgstr "" 2393 2393 2394 - #: src/components/status.jsx:2998 2394 + #: src/components/status.jsx:3011 2395 2395 #: src/pages/annual-report.jsx:45 2396 2396 msgid "Loading…" 2397 2397 msgstr "" 2398 2398 2399 - #: src/components/status.jsx:3234 2399 + #: src/components/status.jsx:3247 2400 2400 msgid "HTML Code" 2401 2401 msgstr "" 2402 2402 2403 - #: src/components/status.jsx:3251 2403 + #: src/components/status.jsx:3264 2404 2404 msgid "HTML code copied" 2405 2405 msgstr "" 2406 2406 2407 - #: src/components/status.jsx:3254 2407 + #: src/components/status.jsx:3267 2408 2408 msgid "Unable to copy HTML code" 2409 2409 msgstr "" 2410 2410 2411 - #: src/components/status.jsx:3266 2411 + #: src/components/status.jsx:3279 2412 2412 msgid "Media attachments:" 2413 2413 msgstr "" 2414 2414 2415 - #: src/components/status.jsx:3288 2415 + #: src/components/status.jsx:3301 2416 2416 msgid "Account Emojis:" 2417 2417 msgstr "" 2418 2418 2419 - #: src/components/status.jsx:3319 2420 - #: src/components/status.jsx:3364 2419 + #: src/components/status.jsx:3332 2420 + #: src/components/status.jsx:3377 2421 2421 msgid "static URL" 2422 2422 msgstr "" 2423 2423 2424 - #: src/components/status.jsx:3333 2424 + #: src/components/status.jsx:3346 2425 2425 msgid "Emojis:" 2426 2426 msgstr "" 2427 2427 2428 - #: src/components/status.jsx:3378 2428 + #: src/components/status.jsx:3391 2429 2429 msgid "Notes:" 2430 2430 msgstr "" 2431 2431 2432 - #: src/components/status.jsx:3382 2432 + #: src/components/status.jsx:3395 2433 2433 msgid "This is static, unstyled and scriptless. You may need to apply your own styles and edit as needed." 2434 2434 msgstr "" 2435 2435 2436 - #: src/components/status.jsx:3388 2436 + #: src/components/status.jsx:3401 2437 2437 msgid "Polls are not interactive, becomes a list with vote counts." 2438 2438 msgstr "" 2439 2439 2440 - #: src/components/status.jsx:3393 2440 + #: src/components/status.jsx:3406 2441 2441 msgid "Media attachments can be images, videos, audios or any file types." 2442 2442 msgstr "" 2443 2443 2444 - #: src/components/status.jsx:3399 2444 + #: src/components/status.jsx:3412 2445 2445 msgid "Post could be edited or deleted later." 2446 2446 msgstr "" 2447 2447 2448 - #: src/components/status.jsx:3405 2448 + #: src/components/status.jsx:3418 2449 2449 msgid "Preview" 2450 2450 msgstr "" 2451 2451 2452 - #: src/components/status.jsx:3414 2452 + #: src/components/status.jsx:3427 2453 2453 msgid "Note: This preview is lightly styled." 2454 2454 msgstr "" 2455 2455 2456 2456 #. [Name] [Visibility icon] boosted 2457 - #: src/components/status.jsx:3658 2457 + #: src/components/status.jsx:3671 2458 2458 msgid "<0/> <1/> boosted" 2459 2459 msgstr "" 2460 2460