this repo has no description
0
fork

Configure Feed

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

Upgrade to masto.js v7

+642 -588
+4 -4
package-lock.json
··· 29 29 "js-cookie": "~3.0.5", 30 30 "just-debounce-it": "~3.2.0", 31 31 "lz-string": "~1.5.0", 32 - "masto": "~6.10.4", 32 + "masto": "~7.1.0", 33 33 "moize": "~6.1.6", 34 34 "p-retry": "~6.2.1", 35 35 "p-throttle": "~7.0.0", ··· 7118 7118 } 7119 7119 }, 7120 7120 "node_modules/masto": { 7121 - "version": "6.10.4", 7122 - "resolved": "https://registry.npmjs.org/masto/-/masto-6.10.4.tgz", 7123 - "integrity": "sha512-TqIkWaZa884j9jik39efsv6mdpgalUElwiGLLPHevLlIuCSnGjapGC++VovlQvvVV6O5e4ce/gzWNy17cF6PHg==", 7121 + "version": "7.1.0", 7122 + "resolved": "https://registry.npmjs.org/masto/-/masto-7.1.0.tgz", 7123 + "integrity": "sha512-jIWQr8WIjGOh3bbE4AuS1FIjsMvXbYpUHHQoijQ9Ueb4YqE4fOxWf1eU6ZRHOiBBjTa1Tm20pciRqJTy6IMa7Q==", 7124 7124 "license": "MIT", 7125 7125 "dependencies": { 7126 7126 "change-case": "^4.1.2",
+1 -1
package.json
··· 37 37 "js-cookie": "~3.0.5", 38 38 "just-debounce-it": "~3.2.0", 39 39 "lz-string": "~1.5.0", 40 - "masto": "~6.10.4", 40 + "masto": "~7.1.0", 41 41 "moize": "~6.1.6", 42 42 "p-retry": "~6.2.1", 43 43 "p-throttle": "~7.0.0",
+14 -7
src/components/account-info.jsx
··· 85 85 .statuses.list({ 86 86 limit: 20, 87 87 }) 88 + .values() 88 89 .next(); 89 90 90 91 const { value: statuses } = await fetchStatuses; ··· 252 253 const familiarFollowersCache = useRef([]); 253 254 async function fetchFollowers(firstLoad) { 254 255 if (firstLoad || !followersIterator.current) { 255 - followersIterator.current = masto.v1.accounts.$select(id).followers.list({ 256 - limit: LIMIT, 257 - }); 256 + followersIterator.current = masto.v1.accounts 257 + .$select(id) 258 + .followers.list({ 259 + limit: LIMIT, 260 + }) 261 + .values(); 258 262 } 259 263 const results = await followersIterator.current.next(); 260 264 if (isSelf) return results; ··· 299 303 const followingIterator = useRef(); 300 304 async function fetchFollowing(firstLoad) { 301 305 if (firstLoad || !followingIterator.current) { 302 - followingIterator.current = masto.v1.accounts.$select(id).following.list({ 303 - limit: LIMIT, 304 - }); 306 + followingIterator.current = masto.v1.accounts 307 + .$select(id) 308 + .following.list({ 309 + limit: LIMIT, 310 + }) 311 + .values(); 305 312 } 306 313 const results = await followingIterator.current.next(); 307 314 return results; ··· 1147 1154 // Grab this account from my logged-in instance 1148 1155 const acctHasInstance = info.acct.includes('@'); 1149 1156 try { 1150 - const results = await currentMasto.v2.search.fetch({ 1157 + const results = await currentMasto.v2.search.list({ 1151 1158 q: acctHasInstance ? info.acct : `${info.username}@${instance}`, 1152 1159 type: 'accounts', 1153 1160 limit: 1,
+2 -2
src/components/account-sheet.jsx
··· 51 51 }); 52 52 return info; 53 53 } catch (e) { 54 - const result = await masto.v2.search.fetch({ 54 + const result = await masto.v2.search.list({ 55 55 q: account, 56 56 type: 'accounts', 57 57 limit: 1, ··· 67 67 pathname.replace(/^\//, '').replace(/\/$/, '') + 68 68 '@' + 69 69 hostname; 70 - const result = await masto.v2.search.fetch({ 70 + const result = await masto.v2.search.list({ 71 71 q: acct, 72 72 type: 'accounts', 73 73 limit: 1,
+6 -4
src/components/background-service.jsx
··· 32 32 33 33 const checkLatestNotification = async (masto, instance, skipCheckMarkers) => { 34 34 if (states.notificationsLast) { 35 - const notificationsIterator = masto.v1.notifications.list({ 36 - limit: 1, 37 - sinceId: states.notificationsLast.id, 38 - }); 35 + const notificationsIterator = masto.v1.notifications 36 + .list({ 37 + limit: 1, 38 + sinceId: states.notificationsLast.id, 39 + }) 40 + .values(); 39 41 const { value: notifications } = await notificationsIterator.next(); 40 42 if (notifications?.length) { 41 43 if (skipCheckMarkers) {
+2 -1
src/components/compose-button.jsx
··· 32 32 limit: 3, 33 33 exclude_replies: true, 34 34 exclude_reblogs: true, 35 - }); 35 + }) 36 + .values(); 36 37 const { value } = await statusesIterator.next(); 37 38 return value || []; 38 39 },
+1 -1
src/components/compose.jsx
··· 1308 1308 resolve: false, 1309 1309 }); 1310 1310 } 1311 - return masto.v2.search.fetch(params); 1311 + return masto.v2.search.list(params); 1312 1312 }} 1313 1313 onTrigger={(action) => { 1314 1314 if (action?.name === 'custom-emojis') {
+10 -6
src/components/nav-menu.jsx
··· 67 67 const mutesIterator = useRef(); 68 68 async function fetchMutes(firstLoad) { 69 69 if (firstLoad || !mutesIterator.current) { 70 - mutesIterator.current = masto.v1.mutes.list({ 71 - limit: 80, 72 - }); 70 + mutesIterator.current = masto.v1.mutes 71 + .list({ 72 + limit: 80, 73 + }) 74 + .values(); 73 75 } 74 76 const results = await mutesIterator.current.next(); 75 77 return results; ··· 78 80 const blocksIterator = useRef(); 79 81 async function fetchBlocks(firstLoad) { 80 82 if (firstLoad || !blocksIterator.current) { 81 - blocksIterator.current = masto.v1.blocks.list({ 82 - limit: 80, 83 - }); 83 + blocksIterator.current = masto.v1.blocks 84 + .list({ 85 + limit: 80, 86 + }) 87 + .values(); 84 88 } 85 89 const results = await blocksIterator.current.next(); 86 90 return results;
+2 -1
src/components/notification.jsx
··· 596 596 _groupKeys.map(async (gKey) => { 597 597 const iterator = masto.v2.notifications 598 598 .$select(gKey) 599 - .accounts.list(); 599 + .accounts.list() 600 + .values(); 600 601 return [gKey, (await iterator.next()).value]; 601 602 }), 602 603 );
+4 -2
src/components/status.jsx
··· 951 951 .$select(statusID) 952 952 .rebloggedBy.list({ 953 953 limit: REACTIONS_LIMIT, 954 - }); 954 + }) 955 + .values(); 955 956 favouriteIterator.current = masto.v1.statuses 956 957 .$select(statusID) 957 958 .favouritedBy.list({ 958 959 limit: REACTIONS_LIMIT, 959 - }); 960 + }) 961 + .values(); 960 962 } 961 963 const [{ value: reblogResults }, { value: favouriteResults }] = 962 964 await Promise.allSettled([
+512 -512
src/locales/en.po
··· 28 28 msgstr "" 29 29 30 30 #: src/components/account-block.jsx:163 31 - #: src/components/account-info.jsx:732 31 + #: src/components/account-info.jsx:739 32 32 msgid "Automated" 33 33 msgstr "" 34 34 35 35 #: src/components/account-block.jsx:170 36 - #: src/components/account-info.jsx:737 36 + #: src/components/account-info.jsx:744 37 37 #: src/components/status.jsx:588 38 38 msgid "Group" 39 39 msgstr "" ··· 43 43 msgstr "" 44 44 45 45 #: src/components/account-block.jsx:184 46 - #: src/components/account-info.jsx:1916 46 + #: src/components/account-info.jsx:1923 47 47 msgid "Requested" 48 48 msgstr "" 49 49 50 50 #: src/components/account-block.jsx:188 51 - #: src/components/account-info.jsx:1907 51 + #: src/components/account-info.jsx:1914 52 52 msgid "Following" 53 53 msgstr "" 54 54 55 55 #: src/components/account-block.jsx:192 56 - #: src/components/account-info.jsx:1223 56 + #: src/components/account-info.jsx:1230 57 57 msgid "Follows you" 58 58 msgstr "" 59 59 ··· 62 62 msgstr "" 63 63 64 64 #: src/components/account-block.jsx:209 65 - #: src/components/account-info.jsx:780 65 + #: src/components/account-info.jsx:787 66 66 msgid "Verified" 67 67 msgstr "" 68 68 69 69 #. placeholder {0}: niceDateTime(createdAt, { hideTime: true, }) 70 70 #. placeholder {0}: niceDateTime(createdAt, { hideTime: true, }) 71 71 #: src/components/account-block.jsx:224 72 - #: src/components/account-info.jsx:882 72 + #: src/components/account-info.jsx:889 73 73 msgid "Joined <0>{0}</0>" 74 74 msgstr "" 75 75 ··· 77 77 msgid "Forever" 78 78 msgstr "" 79 79 80 - #: src/components/account-info.jsx:425 80 + #: src/components/account-info.jsx:432 81 81 msgid "Unable to load account." 82 82 msgstr "" 83 83 84 - #: src/components/account-info.jsx:440 84 + #: src/components/account-info.jsx:447 85 85 msgid "Go to account page" 86 86 msgstr "" 87 87 88 - #: src/components/account-info.jsx:469 89 - #: src/components/account-info.jsx:802 90 - #: src/components/account-info.jsx:832 88 + #: src/components/account-info.jsx:476 89 + #: src/components/account-info.jsx:809 90 + #: src/components/account-info.jsx:839 91 91 msgid "Followers" 92 92 msgstr "" 93 93 94 94 #. js-lingui-explicit-id 95 - #: src/components/account-info.jsx:473 96 - #: src/components/account-info.jsx:842 97 - #: src/components/account-info.jsx:861 95 + #: src/components/account-info.jsx:480 96 + #: src/components/account-info.jsx:849 97 + #: src/components/account-info.jsx:868 98 98 msgid "following.stats" 99 99 msgstr "Following" 100 100 101 - #: src/components/account-info.jsx:476 102 - #: src/components/account-info.jsx:878 103 - #: src/pages/account-statuses.jsx:480 101 + #: src/components/account-info.jsx:483 102 + #: src/components/account-info.jsx:885 103 + #: src/pages/account-statuses.jsx:482 104 104 #: src/pages/search.jsx:341 105 105 #: src/pages/search.jsx:488 106 106 msgid "Posts" 107 107 msgstr "" 108 108 109 - #: src/components/account-info.jsx:484 110 - #: src/components/account-info.jsx:1279 109 + #: src/components/account-info.jsx:491 110 + #: src/components/account-info.jsx:1286 111 111 #: src/components/compose.jsx:2776 112 112 #: src/components/media-alt-modal.jsx:46 113 113 #: src/components/media-modal.jsx:359 114 - #: src/components/status.jsx:1826 115 - #: src/components/status.jsx:1843 116 - #: src/components/status.jsx:1968 117 - #: src/components/status.jsx:2588 118 - #: src/components/status.jsx:2591 119 - #: src/pages/account-statuses.jsx:524 114 + #: src/components/status.jsx:1828 115 + #: src/components/status.jsx:1845 116 + #: src/components/status.jsx:1970 117 + #: src/components/status.jsx:2590 118 + #: src/components/status.jsx:2593 119 + #: src/pages/account-statuses.jsx:526 120 120 #: src/pages/accounts.jsx:110 121 - #: src/pages/hashtag.jsx:200 122 - #: src/pages/list.jsx:158 123 - #: src/pages/public.jsx:115 124 - #: src/pages/scheduled-posts.jsx:87 121 + #: src/pages/hashtag.jsx:202 122 + #: src/pages/list.jsx:161 123 + #: src/pages/public.jsx:116 124 + #: src/pages/scheduled-posts.jsx:89 125 125 #: src/pages/status.jsx:1239 126 - #: src/pages/trending.jsx:469 126 + #: src/pages/trending.jsx:474 127 127 msgid "More" 128 128 msgstr "" 129 129 130 - #: src/components/account-info.jsx:496 130 + #: src/components/account-info.jsx:503 131 131 msgid "<0>{displayName}</0> has indicated that their new account is now:" 132 132 msgstr "" 133 133 134 - #: src/components/account-info.jsx:641 135 - #: src/components/account-info.jsx:1505 134 + #: src/components/account-info.jsx:648 135 + #: src/components/account-info.jsx:1512 136 136 msgid "Handle copied" 137 137 msgstr "Handle copied" 138 138 139 - #: src/components/account-info.jsx:644 140 - #: src/components/account-info.jsx:1508 139 + #: src/components/account-info.jsx:651 140 + #: src/components/account-info.jsx:1515 141 141 msgid "Unable to copy handle" 142 142 msgstr "Unable to copy handle" 143 143 144 - #: src/components/account-info.jsx:650 145 - #: src/components/account-info.jsx:1514 144 + #: src/components/account-info.jsx:657 145 + #: src/components/account-info.jsx:1521 146 146 msgid "Copy handle" 147 147 msgstr "" 148 148 149 - #: src/components/account-info.jsx:656 149 + #: src/components/account-info.jsx:663 150 150 msgid "Go to original profile page" 151 151 msgstr "" 152 152 153 - #: src/components/account-info.jsx:674 153 + #: src/components/account-info.jsx:681 154 154 msgid "View profile image" 155 155 msgstr "" 156 156 157 - #: src/components/account-info.jsx:692 157 + #: src/components/account-info.jsx:699 158 158 msgid "View profile header" 159 159 msgstr "" 160 160 161 - #: src/components/account-info.jsx:708 162 - #: src/components/account-info.jsx:1815 163 - #: src/components/account-info.jsx:2341 161 + #: src/components/account-info.jsx:715 162 + #: src/components/account-info.jsx:1822 163 + #: src/components/account-info.jsx:2348 164 164 msgid "Edit profile" 165 165 msgstr "" 166 166 167 - #: src/components/account-info.jsx:727 167 + #: src/components/account-info.jsx:734 168 168 msgid "In Memoriam" 169 169 msgstr "" 170 170 171 - #: src/components/account-info.jsx:809 172 - #: src/components/account-info.jsx:852 171 + #: src/components/account-info.jsx:816 172 + #: src/components/account-info.jsx:859 173 173 msgid "This user has chosen to not make this information available." 174 174 msgstr "This user has chosen to not make this information available." 175 175 176 176 #. placeholder {0}: ( postingStats.originals / postingStats.total ).toLocaleString(i18n.locale || undefined, { style: 'percent', }) 177 177 #. placeholder {1}: ( postingStats.replies / postingStats.total ).toLocaleString(i18n.locale || undefined, { style: 'percent', }) 178 178 #. placeholder {2}: ( postingStats.boosts / postingStats.total ).toLocaleString(i18n.locale || undefined, { style: 'percent', }) 179 - #: src/components/account-info.jsx:907 179 + #: src/components/account-info.jsx:914 180 180 msgid "{0} original posts, {1} replies, {2} boosts" 181 181 msgstr "{0} original posts, {1} replies, {2} boosts" 182 182 ··· 187 187 #. placeholder {4}: postingStats.total 188 188 #. placeholder {5}: postingStats.total 189 189 #. placeholder {6}: postingStats.daysSinceLastPost 190 - #: src/components/account-info.jsx:923 190 + #: src/components/account-info.jsx:930 191 191 msgid "{0, plural, one {{1, plural, one {Last 1 post in the past 1 day} other {Last 1 post in the past {2} days}}} other {{3, plural, one {Last {4} posts in the past 1 day} other {Last {5} posts in the past {6} days}}}}" 192 192 msgstr "" 193 193 194 194 #. placeholder {0}: postingStats.total 195 195 #. placeholder {1}: postingStats.total 196 - #: src/components/account-info.jsx:939 196 + #: src/components/account-info.jsx:946 197 197 msgid "{0, plural, one {Last 1 post in the past year(s)} other {Last {1} posts in the past year(s)}}" 198 198 msgstr "" 199 199 200 - #: src/components/account-info.jsx:964 200 + #: src/components/account-info.jsx:971 201 201 #: src/pages/catchup.jsx:71 202 202 msgid "Original" 203 203 msgstr "" 204 204 205 - #: src/components/account-info.jsx:968 206 - #: src/components/status.jsx:2372 205 + #: src/components/account-info.jsx:975 206 + #: src/components/status.jsx:2374 207 207 #: src/pages/catchup.jsx:72 208 - #: src/pages/catchup.jsx:1448 209 - #: src/pages/catchup.jsx:2063 208 + #: src/pages/catchup.jsx:1449 209 + #: src/pages/catchup.jsx:2064 210 210 #: src/pages/status.jsx:962 211 211 #: src/pages/status.jsx:1585 212 212 msgid "Replies" 213 213 msgstr "" 214 214 215 - #: src/components/account-info.jsx:972 215 + #: src/components/account-info.jsx:979 216 216 #: src/pages/catchup.jsx:73 217 - #: src/pages/catchup.jsx:1450 218 - #: src/pages/catchup.jsx:2075 217 + #: src/pages/catchup.jsx:1451 218 + #: src/pages/catchup.jsx:2076 219 219 #: src/pages/settings.jsx:1159 220 220 msgid "Boosts" 221 221 msgstr "" 222 222 223 - #: src/components/account-info.jsx:978 223 + #: src/components/account-info.jsx:985 224 224 msgid "Post stats unavailable." 225 225 msgstr "" 226 226 227 - #: src/components/account-info.jsx:1009 227 + #: src/components/account-info.jsx:1016 228 228 msgid "View post stats" 229 229 msgstr "" 230 230 231 231 #. placeholder {0}: info.username 232 - #: src/components/account-info.jsx:1041 232 + #: src/components/account-info.jsx:1048 233 233 msgid "Profiles featured by @{0}" 234 234 msgstr "Profiles featured by @{0}" 235 235 236 236 #. placeholder {0}: niceDateTime(lastStatusAt, { hideTime: true, }) 237 - #: src/components/account-info.jsx:1227 237 + #: src/components/account-info.jsx:1234 238 238 msgid "Last post: <0>{0}</0>" 239 239 msgstr "" 240 240 241 - #: src/components/account-info.jsx:1241 241 + #: src/components/account-info.jsx:1248 242 242 msgid "Muted" 243 243 msgstr "" 244 244 245 - #: src/components/account-info.jsx:1246 245 + #: src/components/account-info.jsx:1253 246 246 msgid "Blocked" 247 247 msgstr "" 248 248 249 - #: src/components/account-info.jsx:1255 249 + #: src/components/account-info.jsx:1262 250 250 msgid "Private note" 251 251 msgstr "Private note" 252 252 253 - #: src/components/account-info.jsx:1312 253 + #: src/components/account-info.jsx:1319 254 254 msgid "Mention <0>@{username}</0>" 255 255 msgstr "" 256 256 257 - #: src/components/account-info.jsx:1324 257 + #: src/components/account-info.jsx:1331 258 258 msgid "Translate bio" 259 259 msgstr "" 260 260 261 - #: src/components/account-info.jsx:1335 261 + #: src/components/account-info.jsx:1342 262 262 msgid "Edit private note" 263 263 msgstr "Edit private note" 264 264 265 - #: src/components/account-info.jsx:1335 265 + #: src/components/account-info.jsx:1342 266 266 msgid "Add private note" 267 267 msgstr "Add private note" 268 268 269 - #: src/components/account-info.jsx:1355 269 + #: src/components/account-info.jsx:1362 270 270 msgid "Notifications enabled for @{username}'s posts." 271 271 msgstr "Notifications enabled for @{username}'s posts." 272 272 273 - #: src/components/account-info.jsx:1356 273 + #: src/components/account-info.jsx:1363 274 274 msgid " Notifications disabled for @{username}'s posts." 275 275 msgstr " Notifications disabled for @{username}'s posts." 276 276 277 - #: src/components/account-info.jsx:1368 277 + #: src/components/account-info.jsx:1375 278 278 msgid "Disable notifications" 279 279 msgstr "Disable notifications" 280 280 281 - #: src/components/account-info.jsx:1369 281 + #: src/components/account-info.jsx:1376 282 282 msgid "Enable notifications" 283 283 msgstr "Enable notifications" 284 284 285 - #: src/components/account-info.jsx:1386 285 + #: src/components/account-info.jsx:1393 286 286 msgid "Boosts from @{username} enabled." 287 287 msgstr "Boosts from @{username} enabled." 288 288 289 - #: src/components/account-info.jsx:1387 289 + #: src/components/account-info.jsx:1394 290 290 msgid "Boosts from @{username} disabled." 291 291 msgstr "Boosts from @{username} disabled." 292 292 293 - #: src/components/account-info.jsx:1398 293 + #: src/components/account-info.jsx:1405 294 294 msgid "Disable boosts" 295 295 msgstr "Disable boosts" 296 296 297 - #: src/components/account-info.jsx:1398 297 + #: src/components/account-info.jsx:1405 298 298 msgid "Enable boosts" 299 299 msgstr "Enable boosts" 300 300 301 - #: src/components/account-info.jsx:1417 301 + #: src/components/account-info.jsx:1424 302 302 msgid "@{username} is no longer featured on your profile." 303 303 msgstr "@{username} is no longer featured on your profile." 304 304 305 - #: src/components/account-info.jsx:1427 305 + #: src/components/account-info.jsx:1434 306 306 msgid "@{username} is now featured on your profile." 307 307 msgstr "@{username} is now featured on your profile." 308 308 309 - #: src/components/account-info.jsx:1435 309 + #: src/components/account-info.jsx:1442 310 310 msgid "Unable to unfeature @{username} on your profile." 311 311 msgstr "Unable to unfeature @{username} on your profile." 312 312 313 - #: src/components/account-info.jsx:1439 313 + #: src/components/account-info.jsx:1446 314 314 msgid "Unable to feature @{username} on your profile." 315 315 msgstr "Unable to feature @{username} on your profile." 316 316 317 - #: src/components/account-info.jsx:1456 317 + #: src/components/account-info.jsx:1463 318 318 msgid "Show featured profiles" 319 319 msgstr "Show featured profiles" 320 320 321 - #: src/components/account-info.jsx:1471 322 - #: src/components/account-info.jsx:1481 323 - #: src/components/account-info.jsx:2087 321 + #: src/components/account-info.jsx:1478 322 + #: src/components/account-info.jsx:1488 323 + #: src/components/account-info.jsx:2094 324 324 msgid "Add/Remove from Lists" 325 325 msgstr "" 326 326 327 - #: src/components/account-info.jsx:1531 328 - #: src/components/status.jsx:1253 327 + #: src/components/account-info.jsx:1538 328 + #: src/components/status.jsx:1255 329 329 msgid "Link copied" 330 330 msgstr "" 331 331 332 - #: src/components/account-info.jsx:1534 333 - #: src/components/status.jsx:1256 332 + #: src/components/account-info.jsx:1541 333 + #: src/components/status.jsx:1258 334 334 msgid "Unable to copy link" 335 335 msgstr "" 336 336 337 - #: src/components/account-info.jsx:1540 337 + #: src/components/account-info.jsx:1547 338 338 #: src/components/shortcuts-settings.jsx:1059 339 - #: src/components/status.jsx:1262 340 - #: src/components/status.jsx:3366 339 + #: src/components/status.jsx:1264 340 + #: src/components/status.jsx:3368 341 341 msgid "Copy" 342 342 msgstr "" 343 343 344 - #: src/components/account-info.jsx:1555 344 + #: src/components/account-info.jsx:1562 345 345 #: src/components/shortcuts-settings.jsx:1077 346 - #: src/components/status.jsx:1278 346 + #: src/components/status.jsx:1280 347 347 msgid "Sharing doesn't seem to work." 348 348 msgstr "" 349 349 350 - #: src/components/account-info.jsx:1561 351 - #: src/components/status.jsx:1284 350 + #: src/components/account-info.jsx:1568 351 + #: src/components/status.jsx:1286 352 352 msgid "Share…" 353 353 msgstr "" 354 354 355 - #: src/components/account-info.jsx:1581 355 + #: src/components/account-info.jsx:1588 356 356 msgid "Unmuted @{username}" 357 357 msgstr "Unmuted @{username}" 358 358 359 - #: src/components/account-info.jsx:1593 359 + #: src/components/account-info.jsx:1600 360 360 msgid "Unmute <0>@{username}</0>" 361 361 msgstr "" 362 362 363 - #: src/components/account-info.jsx:1609 363 + #: src/components/account-info.jsx:1616 364 364 msgid "Mute <0>@{username}</0>…" 365 365 msgstr "" 366 366 367 367 #. placeholder {0}: typeof MUTE_DURATIONS_LABELS[duration] === 'function' ? MUTE_DURATIONS_LABELS[duration]() : _(MUTE_DURATIONS_LABELS[duration]) 368 - #: src/components/account-info.jsx:1641 368 + #: src/components/account-info.jsx:1648 369 369 msgid "Muted @{username} for {0}" 370 370 msgstr "Muted @{username} for {0}" 371 371 372 - #: src/components/account-info.jsx:1653 372 + #: src/components/account-info.jsx:1660 373 373 msgid "Unable to mute @{username}" 374 374 msgstr "Unable to mute @{username}" 375 375 376 - #: src/components/account-info.jsx:1674 376 + #: src/components/account-info.jsx:1681 377 377 msgid "Remove <0>@{username}</0> from followers?" 378 378 msgstr "" 379 379 380 - #: src/components/account-info.jsx:1694 380 + #: src/components/account-info.jsx:1701 381 381 msgid "@{username} removed from followers" 382 382 msgstr "@{username} removed from followers" 383 383 384 - #: src/components/account-info.jsx:1706 384 + #: src/components/account-info.jsx:1713 385 385 msgid "Remove follower…" 386 386 msgstr "" 387 387 388 - #: src/components/account-info.jsx:1717 388 + #: src/components/account-info.jsx:1724 389 389 msgid "Block <0>@{username}</0>?" 390 390 msgstr "" 391 391 392 - #: src/components/account-info.jsx:1741 392 + #: src/components/account-info.jsx:1748 393 393 msgid "Unblocked @{username}" 394 394 msgstr "Unblocked @{username}" 395 395 396 - #: src/components/account-info.jsx:1749 396 + #: src/components/account-info.jsx:1756 397 397 msgid "Blocked @{username}" 398 398 msgstr "Blocked @{username}" 399 399 400 - #: src/components/account-info.jsx:1757 400 + #: src/components/account-info.jsx:1764 401 401 msgid "Unable to unblock @{username}" 402 402 msgstr "Unable to unblock @{username}" 403 403 404 - #: src/components/account-info.jsx:1759 404 + #: src/components/account-info.jsx:1766 405 405 msgid "Unable to block @{username}" 406 406 msgstr "Unable to block @{username}" 407 407 408 - #: src/components/account-info.jsx:1769 408 + #: src/components/account-info.jsx:1776 409 409 msgid "Unblock <0>@{username}</0>" 410 410 msgstr "" 411 411 412 - #: src/components/account-info.jsx:1778 412 + #: src/components/account-info.jsx:1785 413 413 msgid "Block <0>@{username}</0>…" 414 414 msgstr "" 415 415 416 - #: src/components/account-info.jsx:1795 416 + #: src/components/account-info.jsx:1802 417 417 msgid "Report <0>@{username}</0>…" 418 418 msgstr "" 419 419 420 - #: src/components/account-info.jsx:1851 420 + #: src/components/account-info.jsx:1858 421 421 msgid "Withdraw follow request?" 422 422 msgstr "Withdraw follow request?" 423 423 424 424 #. placeholder {0}: info.acct || info.username 425 - #: src/components/account-info.jsx:1852 425 + #: src/components/account-info.jsx:1859 426 426 msgid "Unfollow @{0}?" 427 427 msgstr "Unfollow @{0}?" 428 428 429 - #: src/components/account-info.jsx:1910 429 + #: src/components/account-info.jsx:1917 430 430 msgid "Unfollow…" 431 431 msgstr "" 432 432 433 - #: src/components/account-info.jsx:1919 433 + #: src/components/account-info.jsx:1926 434 434 msgid "Withdraw…" 435 435 msgstr "" 436 436 437 - #: src/components/account-info.jsx:1926 438 - #: src/components/account-info.jsx:1930 439 - #: src/pages/hashtag.jsx:262 437 + #: src/components/account-info.jsx:1933 438 + #: src/components/account-info.jsx:1937 439 + #: src/pages/hashtag.jsx:264 440 440 msgid "Follow" 441 441 msgstr "" 442 442 443 - #: src/components/account-info.jsx:2027 444 - #: src/components/account-info.jsx:2082 445 - #: src/components/account-info.jsx:2216 446 - #: src/components/account-info.jsx:2336 443 + #: src/components/account-info.jsx:2034 444 + #: src/components/account-info.jsx:2089 445 + #: src/components/account-info.jsx:2223 446 + #: src/components/account-info.jsx:2343 447 447 #: src/components/account-sheet.jsx:38 448 448 #: src/components/compose.jsx:884 449 449 #: src/components/compose.jsx:2732 ··· 462 462 #: src/components/shortcuts-settings.jsx:230 463 463 #: src/components/shortcuts-settings.jsx:583 464 464 #: src/components/shortcuts-settings.jsx:783 465 - #: src/components/status.jsx:3090 466 - #: src/components/status.jsx:3330 467 - #: src/components/status.jsx:3839 465 + #: src/components/status.jsx:3092 466 + #: src/components/status.jsx:3332 467 + #: src/components/status.jsx:3841 468 468 #: src/pages/accounts.jsx:37 469 - #: src/pages/catchup.jsx:1584 469 + #: src/pages/catchup.jsx:1585 470 470 #: src/pages/filters.jsx:225 471 - #: src/pages/list.jsx:276 472 - #: src/pages/notifications.jsx:934 473 - #: src/pages/scheduled-posts.jsx:257 471 + #: src/pages/list.jsx:280 472 + #: src/pages/notifications.jsx:940 473 + #: src/pages/scheduled-posts.jsx:259 474 474 #: src/pages/settings.jsx:87 475 475 #: src/pages/status.jsx:1326 476 476 msgid "Close" 477 477 msgstr "" 478 478 479 - #: src/components/account-info.jsx:2032 479 + #: src/components/account-info.jsx:2039 480 480 msgid "Translated Bio" 481 481 msgstr "" 482 482 483 - #: src/components/account-info.jsx:2127 483 + #: src/components/account-info.jsx:2134 484 484 msgid "Unable to remove from list." 485 485 msgstr "Unable to remove from list." 486 486 487 - #: src/components/account-info.jsx:2128 487 + #: src/components/account-info.jsx:2135 488 488 msgid "Unable to add to list." 489 489 msgstr "Unable to add to list." 490 490 491 - #: src/components/account-info.jsx:2147 491 + #: src/components/account-info.jsx:2154 492 492 #: src/pages/lists.jsx:105 493 493 msgid "Unable to load lists." 494 494 msgstr "" 495 495 496 - #: src/components/account-info.jsx:2151 496 + #: src/components/account-info.jsx:2158 497 497 msgid "No lists." 498 498 msgstr "" 499 499 500 - #: src/components/account-info.jsx:2162 500 + #: src/components/account-info.jsx:2169 501 501 #: src/components/list-add-edit.jsx:40 502 502 #: src/pages/lists.jsx:59 503 503 msgid "New list" 504 504 msgstr "" 505 505 506 506 #. placeholder {0}: account?.username || account?.acct 507 - #: src/components/account-info.jsx:2221 507 + #: src/components/account-info.jsx:2228 508 508 msgid "Private note about <0>@{0}</0>" 509 509 msgstr "" 510 510 511 - #: src/components/account-info.jsx:2251 511 + #: src/components/account-info.jsx:2258 512 512 msgid "Unable to update private note." 513 513 msgstr "Unable to update private note." 514 514 515 - #: src/components/account-info.jsx:2274 516 - #: src/components/account-info.jsx:2572 515 + #: src/components/account-info.jsx:2281 516 + #: src/components/account-info.jsx:2579 517 517 msgid "Cancel" 518 518 msgstr "" 519 519 520 - #: src/components/account-info.jsx:2279 520 + #: src/components/account-info.jsx:2286 521 521 msgid "Save & close" 522 522 msgstr "" 523 523 524 - #: src/components/account-info.jsx:2396 524 + #: src/components/account-info.jsx:2403 525 525 msgid "Unable to update profile." 526 526 msgstr "Unable to update profile." 527 527 528 - #: src/components/account-info.jsx:2403 528 + #: src/components/account-info.jsx:2410 529 529 msgid "Header picture" 530 530 msgstr "Header picture" 531 531 532 - #: src/components/account-info.jsx:2455 532 + #: src/components/account-info.jsx:2462 533 533 msgid "Profile picture" 534 534 msgstr "Profile picture" 535 535 536 - #: src/components/account-info.jsx:2507 536 + #: src/components/account-info.jsx:2514 537 537 #: src/components/list-add-edit.jsx:105 538 538 msgid "Name" 539 539 msgstr "" 540 540 541 - #: src/components/account-info.jsx:2520 541 + #: src/components/account-info.jsx:2527 542 542 msgid "Bio" 543 543 msgstr "" 544 544 545 - #: src/components/account-info.jsx:2533 545 + #: src/components/account-info.jsx:2540 546 546 msgid "Extra fields" 547 547 msgstr "" 548 548 549 - #: src/components/account-info.jsx:2539 549 + #: src/components/account-info.jsx:2546 550 550 msgid "Label" 551 551 msgstr "" 552 552 553 - #: src/components/account-info.jsx:2542 553 + #: src/components/account-info.jsx:2549 554 554 msgid "Content" 555 555 msgstr "" 556 556 557 - #: src/components/account-info.jsx:2575 557 + #: src/components/account-info.jsx:2582 558 558 #: src/components/list-add-edit.jsx:150 559 559 #: src/components/shortcuts-settings.jsx:715 560 560 #: src/pages/filters.jsx:570 561 - #: src/pages/notifications.jsx:1000 561 + #: src/pages/notifications.jsx:1006 562 562 msgid "Save" 563 563 msgstr "" 564 564 565 - #: src/components/account-info.jsx:2629 565 + #: src/components/account-info.jsx:2636 566 566 msgid "username" 567 567 msgstr "" 568 568 569 - #: src/components/account-info.jsx:2633 569 + #: src/components/account-info.jsx:2640 570 570 msgid "server domain name" 571 571 msgstr "" 572 572 573 - #: src/components/background-service.jsx:156 573 + #: src/components/background-service.jsx:158 574 574 msgid "Cloak mode disabled" 575 575 msgstr "" 576 576 577 - #: src/components/background-service.jsx:156 577 + #: src/components/background-service.jsx:158 578 578 msgid "Cloak mode enabled" 579 579 msgstr "" 580 580 581 581 #: src/components/columns.jsx:27 582 - #: src/components/nav-menu.jsx:176 582 + #: src/components/nav-menu.jsx:180 583 583 #: src/components/shortcuts-settings.jsx:139 584 584 #: src/components/timeline.jsx:465 585 - #: src/pages/catchup.jsx:883 585 + #: src/pages/catchup.jsx:884 586 586 #: src/pages/filters.jsx:90 587 587 #: src/pages/followed-hashtags.jsx:41 588 588 #: src/pages/home.jsx:54 589 - #: src/pages/notifications.jsx:579 590 - #: src/pages/scheduled-posts.jsx:72 589 + #: src/pages/notifications.jsx:585 590 + #: src/pages/scheduled-posts.jsx:74 591 591 msgid "Home" 592 592 msgstr "" 593 593 594 - #: src/components/compose-button.jsx:142 594 + #: src/components/compose-button.jsx:143 595 595 #: src/compose.jsx:38 596 596 msgid "Compose" 597 597 msgstr "" 598 598 599 - #: src/components/compose-button.jsx:169 600 - #: src/components/nav-menu.jsx:260 599 + #: src/components/compose-button.jsx:170 600 + #: src/components/nav-menu.jsx:264 601 601 #: src/pages/scheduled-posts.jsx:31 602 - #: src/pages/scheduled-posts.jsx:76 602 + #: src/pages/scheduled-posts.jsx:78 603 603 msgid "Scheduled Posts" 604 604 msgstr "Scheduled Posts" 605 605 606 - #: src/components/compose-button.jsx:182 606 + #: src/components/compose-button.jsx:183 607 607 msgid "Add to thread" 608 608 msgstr "Add to thread" 609 609 ··· 705 705 msgstr "Attachment #{i} failed" 706 706 707 707 #: src/components/compose.jsx:1214 708 - #: src/components/status.jsx:2156 708 + #: src/components/status.jsx:2158 709 709 #: src/components/timeline.jsx:1019 710 710 msgid "Content warning" 711 711 msgstr "" ··· 721 721 msgstr "" 722 722 723 723 #: src/components/compose.jsx:1271 724 - #: src/components/nav-menu.jsx:344 724 + #: src/components/nav-menu.jsx:348 725 725 #: src/components/shortcuts-settings.jsx:165 726 726 #: src/components/status.jsx:97 727 727 msgid "Local" ··· 741 741 742 742 #: src/components/compose.jsx:1281 743 743 #: src/components/status.jsx:100 744 - #: src/components/status.jsx:2032 744 + #: src/components/status.jsx:2034 745 745 msgid "Private mention" 746 746 msgstr "" 747 747 ··· 768 768 #: src/components/compose.jsx:1440 769 769 #: src/components/compose.jsx:3267 770 770 #: src/components/shortcuts-settings.jsx:715 771 - #: src/pages/list.jsx:362 771 + #: src/pages/list.jsx:366 772 772 msgid "Add" 773 773 msgstr "" 774 774 ··· 778 778 779 779 #: src/components/compose.jsx:1668 780 780 #: src/components/keyboard-shortcuts-help.jsx:155 781 - #: src/components/status.jsx:1025 782 - #: src/components/status.jsx:1806 783 - #: src/components/status.jsx:1807 784 - #: src/components/status.jsx:2492 781 + #: src/components/status.jsx:1027 782 + #: src/components/status.jsx:1808 783 + #: src/components/status.jsx:1809 784 + #: src/components/status.jsx:2494 785 785 msgid "Reply" 786 786 msgstr "" 787 787 ··· 804 804 805 805 #: src/components/compose.jsx:2036 806 806 #: src/components/compose.jsx:2113 807 - #: src/components/nav-menu.jsx:239 807 + #: src/components/nav-menu.jsx:243 808 808 msgid "More…" 809 809 msgstr "" 810 810 ··· 849 849 #: src/components/compose.jsx:2696 850 850 #: src/components/compose.jsx:2946 851 851 #: src/components/shortcuts-settings.jsx:726 852 - #: src/pages/catchup.jsx:1081 852 + #: src/pages/catchup.jsx:1082 853 853 #: src/pages/filters.jsx:413 854 854 msgid "Remove" 855 855 msgstr "" ··· 1003 1003 1004 1004 #: src/components/drafts.jsx:128 1005 1005 #: src/components/list-add-edit.jsx:186 1006 - #: src/components/status.jsx:1428 1006 + #: src/components/status.jsx:1430 1007 1007 #: src/pages/filters.jsx:603 1008 - #: src/pages/scheduled-posts.jsx:367 1008 + #: src/pages/scheduled-posts.jsx:369 1009 1009 msgid "Delete…" 1010 1010 msgstr "" 1011 1011 ··· 1030 1030 msgstr "" 1031 1031 1032 1032 #: src/components/drafts.jsx:247 1033 - #: src/pages/catchup.jsx:1934 1033 + #: src/pages/catchup.jsx:1935 1034 1034 msgid "Poll" 1035 1035 msgstr "" 1036 1036 1037 1037 #: src/components/drafts.jsx:250 1038 - #: src/pages/account-statuses.jsx:361 1038 + #: src/pages/account-statuses.jsx:363 1039 1039 msgid "Media" 1040 1040 msgstr "" 1041 1041 ··· 1044 1044 msgstr "" 1045 1045 1046 1046 #: src/components/follow-request-buttons.jsx:43 1047 - #: src/pages/notifications.jsx:984 1047 + #: src/pages/notifications.jsx:990 1048 1048 msgid "Accept" 1049 1049 msgstr "" 1050 1050 ··· 1053 1053 msgstr "" 1054 1054 1055 1055 #: src/components/follow-request-buttons.jsx:76 1056 - #: src/pages/notifications.jsx:1268 1056 + #: src/pages/notifications.jsx:1274 1057 1057 msgid "Accepted" 1058 1058 msgstr "" 1059 1059 ··· 1071 1071 1072 1072 #: src/components/generic-accounts.jsx:206 1073 1073 #: src/components/timeline.jsx:547 1074 - #: src/pages/list.jsx:295 1075 - #: src/pages/notifications.jsx:914 1074 + #: src/pages/list.jsx:299 1075 + #: src/pages/notifications.jsx:920 1076 1076 #: src/pages/search.jsx:558 1077 1077 #: src/pages/status.jsx:1359 1078 1078 msgid "Show more…" ··· 1089 1089 msgstr "" 1090 1090 1091 1091 #: src/components/keyboard-shortcuts-help.jsx:47 1092 - #: src/components/nav-menu.jsx:363 1093 - #: src/pages/catchup.jsx:1622 1092 + #: src/components/nav-menu.jsx:367 1093 + #: src/pages/catchup.jsx:1623 1094 1094 msgid "Keyboard shortcuts" 1095 1095 msgstr "" 1096 1096 ··· 1099 1099 msgstr "" 1100 1100 1101 1101 #: src/components/keyboard-shortcuts-help.jsx:59 1102 - #: src/pages/catchup.jsx:1647 1102 + #: src/pages/catchup.jsx:1648 1103 1103 msgid "Next post" 1104 1104 msgstr "" 1105 1105 1106 1106 #: src/components/keyboard-shortcuts-help.jsx:63 1107 - #: src/pages/catchup.jsx:1655 1107 + #: src/pages/catchup.jsx:1656 1108 1108 msgid "Previous post" 1109 1109 msgstr "" 1110 1110 ··· 1129 1129 msgstr "" 1130 1130 1131 1131 #: src/components/keyboard-shortcuts-help.jsx:87 1132 - #: src/pages/catchup.jsx:1679 1132 + #: src/pages/catchup.jsx:1680 1133 1133 msgid "Open post details" 1134 1134 msgstr "" 1135 1135 ··· 1186 1186 msgstr "" 1187 1187 1188 1188 #: src/components/keyboard-shortcuts-help.jsx:151 1189 - #: src/components/nav-menu.jsx:332 1189 + #: src/components/nav-menu.jsx:336 1190 1190 #: src/components/search-form.jsx:73 1191 1191 #: src/components/shortcuts-settings.jsx:52 1192 1192 #: src/components/shortcuts-settings.jsx:179 ··· 1212 1212 msgstr "" 1213 1213 1214 1214 #: src/components/keyboard-shortcuts-help.jsx:176 1215 - #: src/components/status.jsx:1033 1216 - #: src/components/status.jsx:2519 1217 - #: src/components/status.jsx:2542 1218 - #: src/components/status.jsx:2543 1215 + #: src/components/status.jsx:1035 1216 + #: src/components/status.jsx:2521 1217 + #: src/components/status.jsx:2544 1218 + #: src/components/status.jsx:2545 1219 1219 msgid "Boost" 1220 1220 msgstr "" 1221 1221 ··· 1224 1224 msgstr "" 1225 1225 1226 1226 #: src/components/keyboard-shortcuts-help.jsx:184 1227 - #: src/components/status.jsx:1096 1228 - #: src/components/status.jsx:2567 1229 - #: src/components/status.jsx:2568 1227 + #: src/components/status.jsx:1098 1228 + #: src/components/status.jsx:2569 1229 + #: src/components/status.jsx:2570 1230 1230 msgid "Bookmark" 1231 1231 msgstr "" 1232 1232 ··· 1285 1285 msgstr "" 1286 1286 1287 1287 #: src/components/media-alt-modal.jsx:58 1288 - #: src/components/status.jsx:1139 1289 - #: src/components/status.jsx:1148 1288 + #: src/components/status.jsx:1141 1289 + #: src/components/status.jsx:1150 1290 1290 #: src/components/translation-block.jsx:235 1291 1291 msgid "Translate" 1292 1292 msgstr "" 1293 1293 1294 1294 #: src/components/media-alt-modal.jsx:69 1295 - #: src/components/status.jsx:1167 1295 + #: src/components/status.jsx:1169 1296 1296 msgid "Speak" 1297 1297 msgstr "" 1298 1298 ··· 1329 1329 msgstr "" 1330 1330 1331 1331 #: src/components/media-post.jsx:134 1332 - #: src/components/status.jsx:3669 1333 - #: src/components/status.jsx:3765 1334 - #: src/components/status.jsx:3843 1332 + #: src/components/status.jsx:3671 1333 + #: src/components/status.jsx:3767 1334 + #: src/components/status.jsx:3845 1335 1335 #: src/components/timeline.jsx:1008 1336 1336 #: src/pages/catchup.jsx:76 1337 - #: src/pages/catchup.jsx:1882 1337 + #: src/pages/catchup.jsx:1883 1338 1338 msgid "Filtered" 1339 1339 msgstr "" 1340 1340 ··· 1362 1362 msgid "Post updated. Check it out." 1363 1363 msgstr "" 1364 1364 1365 - #: src/components/nav-menu.jsx:118 1365 + #: src/components/nav-menu.jsx:122 1366 1366 msgid "Menu" 1367 1367 msgstr "" 1368 1368 1369 - #: src/components/nav-menu.jsx:154 1369 + #: src/components/nav-menu.jsx:158 1370 1370 msgid "Reload page now to update?" 1371 1371 msgstr "" 1372 1372 1373 - #: src/components/nav-menu.jsx:166 1373 + #: src/components/nav-menu.jsx:170 1374 1374 msgid "New update available…" 1375 1375 msgstr "" 1376 1376 1377 1377 #. js-lingui-explicit-id 1378 - #: src/components/nav-menu.jsx:185 1378 + #: src/components/nav-menu.jsx:189 1379 1379 #: src/components/shortcuts-settings.jsx:140 1380 1380 #: src/pages/following.jsx:23 1381 - #: src/pages/following.jsx:142 1381 + #: src/pages/following.jsx:144 1382 1382 msgid "following.title" 1383 1383 msgstr "Following" 1384 1384 1385 - #: src/components/nav-menu.jsx:192 1386 - #: src/pages/catchup.jsx:878 1385 + #: src/components/nav-menu.jsx:196 1386 + #: src/pages/catchup.jsx:879 1387 1387 msgid "Catch-up" 1388 1388 msgstr "" 1389 1389 1390 - #: src/components/nav-menu.jsx:199 1390 + #: src/components/nav-menu.jsx:203 1391 1391 #: src/components/shortcuts-settings.jsx:58 1392 1392 #: src/components/shortcuts-settings.jsx:146 1393 1393 #: src/pages/home.jsx:228 1394 1394 #: src/pages/mentions.jsx:21 1395 - #: src/pages/mentions.jsx:168 1395 + #: src/pages/mentions.jsx:174 1396 1396 #: src/pages/settings.jsx:1151 1397 - #: src/pages/trending.jsx:379 1397 + #: src/pages/trending.jsx:384 1398 1398 msgid "Mentions" 1399 1399 msgstr "" 1400 1400 1401 - #: src/components/nav-menu.jsx:206 1401 + #: src/components/nav-menu.jsx:210 1402 1402 #: src/components/shortcuts-settings.jsx:49 1403 1403 #: src/components/shortcuts-settings.jsx:152 1404 1404 #: src/pages/filters.jsx:24 1405 1405 #: src/pages/home.jsx:86 1406 1406 #: src/pages/home.jsx:186 1407 - #: src/pages/notifications.jsx:114 1408 - #: src/pages/notifications.jsx:583 1407 + #: src/pages/notifications.jsx:117 1408 + #: src/pages/notifications.jsx:589 1409 1409 msgid "Notifications" 1410 1410 msgstr "" 1411 1411 1412 - #: src/components/nav-menu.jsx:209 1412 + #: src/components/nav-menu.jsx:213 1413 1413 msgid "New" 1414 1414 msgstr "" 1415 1415 1416 - #: src/components/nav-menu.jsx:220 1416 + #: src/components/nav-menu.jsx:224 1417 1417 msgid "Profile" 1418 1418 msgstr "" 1419 1419 1420 - #: src/components/nav-menu.jsx:228 1420 + #: src/components/nav-menu.jsx:232 1421 1421 #: src/components/shortcuts-settings.jsx:54 1422 1422 #: src/components/shortcuts-settings.jsx:195 1423 1423 #: src/pages/bookmarks.jsx:12 1424 - #: src/pages/bookmarks.jsx:24 1424 + #: src/pages/bookmarks.jsx:26 1425 1425 msgid "Bookmarks" 1426 1426 msgstr "" 1427 1427 1428 - #: src/components/nav-menu.jsx:248 1428 + #: src/components/nav-menu.jsx:252 1429 1429 #: src/components/shortcuts-settings.jsx:55 1430 1430 #: src/components/shortcuts-settings.jsx:201 1431 - #: src/pages/catchup.jsx:1449 1432 - #: src/pages/catchup.jsx:2069 1431 + #: src/pages/catchup.jsx:1450 1432 + #: src/pages/catchup.jsx:2070 1433 1433 #: src/pages/favourites.jsx:12 1434 - #: src/pages/favourites.jsx:24 1434 + #: src/pages/favourites.jsx:26 1435 1435 #: src/pages/settings.jsx:1155 1436 1436 msgid "Likes" 1437 1437 msgstr "" 1438 1438 1439 - #: src/components/nav-menu.jsx:254 1439 + #: src/components/nav-menu.jsx:258 1440 1440 #: src/pages/followed-hashtags.jsx:15 1441 1441 #: src/pages/followed-hashtags.jsx:45 1442 1442 msgid "Followed Hashtags" 1443 1443 msgstr "" 1444 1444 1445 - #: src/components/nav-menu.jsx:268 1446 - #: src/pages/account-statuses.jsx:327 1445 + #: src/components/nav-menu.jsx:272 1446 + #: src/pages/account-statuses.jsx:329 1447 1447 #: src/pages/filters.jsx:55 1448 1448 #: src/pages/filters.jsx:94 1449 - #: src/pages/hashtag.jsx:340 1449 + #: src/pages/hashtag.jsx:342 1450 1450 msgid "Filters" 1451 1451 msgstr "" 1452 1452 1453 - #: src/components/nav-menu.jsx:276 1453 + #: src/components/nav-menu.jsx:280 1454 1454 msgid "Muted users" 1455 1455 msgstr "" 1456 1456 1457 - #: src/components/nav-menu.jsx:284 1457 + #: src/components/nav-menu.jsx:288 1458 1458 msgid "Muted users…" 1459 1459 msgstr "" 1460 1460 1461 - #: src/components/nav-menu.jsx:291 1461 + #: src/components/nav-menu.jsx:295 1462 1462 msgid "Blocked users" 1463 1463 msgstr "" 1464 1464 1465 - #: src/components/nav-menu.jsx:299 1465 + #: src/components/nav-menu.jsx:303 1466 1466 msgid "Blocked users…" 1467 1467 msgstr "" 1468 1468 1469 - #: src/components/nav-menu.jsx:311 1469 + #: src/components/nav-menu.jsx:315 1470 1470 msgid "Accounts…" 1471 1471 msgstr "" 1472 1472 1473 - #: src/components/nav-menu.jsx:321 1473 + #: src/components/nav-menu.jsx:325 1474 1474 #: src/pages/login.jsx:27 1475 1475 #: src/pages/login.jsx:190 1476 1476 #: src/pages/status.jsx:862 ··· 1478 1478 msgid "Log in" 1479 1479 msgstr "" 1480 1480 1481 - #: src/components/nav-menu.jsx:338 1481 + #: src/components/nav-menu.jsx:342 1482 1482 #: src/components/shortcuts-settings.jsx:57 1483 1483 #: src/components/shortcuts-settings.jsx:172 1484 - #: src/pages/trending.jsx:439 1484 + #: src/pages/trending.jsx:444 1485 1485 msgid "Trending" 1486 1486 msgstr "" 1487 1487 1488 - #: src/components/nav-menu.jsx:350 1488 + #: src/components/nav-menu.jsx:354 1489 1489 #: src/components/shortcuts-settings.jsx:165 1490 1490 msgid "Federated" 1491 1491 msgstr "" 1492 1492 1493 - #: src/components/nav-menu.jsx:373 1493 + #: src/components/nav-menu.jsx:377 1494 1494 msgid "Shortcuts / Columns…" 1495 1495 msgstr "" 1496 1496 1497 - #: src/components/nav-menu.jsx:383 1498 - #: src/components/nav-menu.jsx:397 1497 + #: src/components/nav-menu.jsx:387 1498 + #: src/components/nav-menu.jsx:401 1499 1499 msgid "Settings…" 1500 1500 msgstr "" 1501 1501 1502 - #: src/components/nav-menu.jsx:427 1503 - #: src/components/nav-menu.jsx:454 1502 + #: src/components/nav-menu.jsx:431 1503 + #: src/components/nav-menu.jsx:458 1504 1504 #: src/components/shortcuts-settings.jsx:50 1505 1505 #: src/components/shortcuts-settings.jsx:158 1506 - #: src/pages/list.jsx:127 1506 + #: src/pages/list.jsx:130 1507 1507 #: src/pages/lists.jsx:17 1508 1508 #: src/pages/lists.jsx:51 1509 1509 msgid "Lists" 1510 1510 msgstr "" 1511 1511 1512 - #: src/components/nav-menu.jsx:435 1512 + #: src/components/nav-menu.jsx:439 1513 1513 #: src/components/shortcuts.jsx:214 1514 - #: src/pages/list.jsx:134 1514 + #: src/pages/list.jsx:137 1515 1515 msgid "All Lists" 1516 1516 msgstr "" 1517 1517 ··· 1643 1643 msgstr "" 1644 1644 1645 1645 #: src/components/notification.jsx:441 1646 - #: src/components/status.jsx:1110 1647 - #: src/components/status.jsx:1120 1646 + #: src/components/status.jsx:1112 1647 + #: src/components/status.jsx:1122 1648 1648 msgid "Boosted/Liked by…" 1649 1649 msgstr "" 1650 1650 ··· 1669 1669 msgid "View #Wrapstodon" 1670 1670 msgstr "View #Wrapstodon" 1671 1671 1672 - #: src/components/notification.jsx:772 1672 + #: src/components/notification.jsx:773 1673 1673 #: src/components/status.jsx:316 1674 1674 msgid "Read more →" 1675 1675 msgstr "" ··· 1694 1694 1695 1695 #: src/components/poll.jsx:208 1696 1696 #: src/components/poll.jsx:210 1697 - #: src/pages/scheduled-posts.jsx:98 1697 + #: src/pages/scheduled-posts.jsx:100 1698 1698 #: src/pages/status.jsx:1228 1699 1699 #: src/pages/status.jsx:1251 1700 1700 msgid "Refresh" ··· 1930 1930 msgstr "" 1931 1931 1932 1932 #: src/components/shortcuts-settings.jsx:117 1933 - #: src/pages/hashtag.jsx:356 1933 + #: src/pages/hashtag.jsx:358 1934 1934 msgid "Media only" 1935 1935 msgstr "" 1936 1936 ··· 1972 1972 msgstr "" 1973 1973 1974 1974 #: src/components/shortcuts-settings.jsx:379 1975 - #: src/components/status.jsx:1390 1976 - #: src/pages/list.jsx:171 1975 + #: src/components/status.jsx:1392 1976 + #: src/pages/list.jsx:174 1977 1977 msgid "Edit" 1978 1978 msgstr "" 1979 1979 ··· 2199 2199 msgid "Bookmarked @{0}'s post" 2200 2200 msgstr "Bookmarked @{0}'s post" 2201 2201 2202 - #: src/components/status.jsx:1002 2202 + #: src/components/status.jsx:1004 2203 2203 msgid "Some media have no descriptions." 2204 2204 msgstr "" 2205 2205 2206 2206 #. placeholder {0}: rtf.format(-statusMonthsAgo, 'month') 2207 - #: src/components/status.jsx:1009 2207 + #: src/components/status.jsx:1011 2208 2208 msgid "Old post (<0>{0}</0>)" 2209 2209 msgstr "" 2210 2210 2211 - #: src/components/status.jsx:1033 2212 - #: src/components/status.jsx:1073 2213 - #: src/components/status.jsx:2519 2214 - #: src/components/status.jsx:2542 2211 + #: src/components/status.jsx:1035 2212 + #: src/components/status.jsx:1075 2213 + #: src/components/status.jsx:2521 2214 + #: src/components/status.jsx:2544 2215 2215 msgid "Unboost" 2216 2216 msgstr "" 2217 2217 2218 - #: src/components/status.jsx:1049 2219 - #: src/components/status.jsx:2534 2218 + #: src/components/status.jsx:1051 2219 + #: src/components/status.jsx:2536 2220 2220 msgid "Quote" 2221 2221 msgstr "" 2222 2222 2223 2223 #. placeholder {0}: username || acct 2224 - #: src/components/status.jsx:1061 2225 - #: src/components/status.jsx:1524 2224 + #: src/components/status.jsx:1063 2225 + #: src/components/status.jsx:1526 2226 2226 msgid "Unboosted @{0}'s post" 2227 2227 msgstr "Unboosted @{0}'s post" 2228 2228 2229 2229 #. placeholder {0}: username || acct 2230 - #: src/components/status.jsx:1062 2231 - #: src/components/status.jsx:1525 2230 + #: src/components/status.jsx:1064 2231 + #: src/components/status.jsx:1527 2232 2232 msgid "Boosted @{0}'s post" 2233 2233 msgstr "Boosted @{0}'s post" 2234 2234 2235 - #: src/components/status.jsx:1074 2235 + #: src/components/status.jsx:1076 2236 2236 msgid "Boost…" 2237 2237 msgstr "" 2238 2238 2239 - #: src/components/status.jsx:1086 2240 - #: src/components/status.jsx:1816 2241 - #: src/components/status.jsx:2555 2239 + #: src/components/status.jsx:1088 2240 + #: src/components/status.jsx:1818 2241 + #: src/components/status.jsx:2557 2242 2242 msgid "Unlike" 2243 2243 msgstr "" 2244 2244 2245 - #: src/components/status.jsx:1087 2246 - #: src/components/status.jsx:1816 2247 - #: src/components/status.jsx:1817 2248 - #: src/components/status.jsx:2555 2249 - #: src/components/status.jsx:2556 2245 + #: src/components/status.jsx:1089 2246 + #: src/components/status.jsx:1818 2247 + #: src/components/status.jsx:1819 2248 + #: src/components/status.jsx:2557 2249 + #: src/components/status.jsx:2558 2250 2250 msgid "Like" 2251 2251 msgstr "" 2252 2252 2253 - #: src/components/status.jsx:1096 2254 - #: src/components/status.jsx:2567 2253 + #: src/components/status.jsx:1098 2254 + #: src/components/status.jsx:2569 2255 2255 msgid "Unbookmark" 2256 2256 msgstr "" 2257 2257 2258 - #: src/components/status.jsx:1179 2258 + #: src/components/status.jsx:1181 2259 2259 msgid "Post text copied" 2260 2260 msgstr "Post text copied" 2261 2261 2262 - #: src/components/status.jsx:1182 2262 + #: src/components/status.jsx:1184 2263 2263 msgid "Unable to copy post text" 2264 2264 msgstr "Unable to copy post text" 2265 2265 2266 - #: src/components/status.jsx:1188 2266 + #: src/components/status.jsx:1190 2267 2267 msgid "Copy post text" 2268 2268 msgstr "Copy post text" 2269 2269 2270 2270 #. placeholder {0}: username || acct 2271 - #: src/components/status.jsx:1206 2271 + #: src/components/status.jsx:1208 2272 2272 msgid "View post by <0>@{0}</0>" 2273 2273 msgstr "" 2274 2274 2275 - #: src/components/status.jsx:1227 2275 + #: src/components/status.jsx:1229 2276 2276 msgid "Show Edit History" 2277 2277 msgstr "" 2278 2278 2279 - #: src/components/status.jsx:1230 2279 + #: src/components/status.jsx:1232 2280 2280 msgid "Edited: {editedDateText}" 2281 2281 msgstr "" 2282 2282 2283 - #: src/components/status.jsx:1297 2284 - #: src/components/status.jsx:3335 2283 + #: src/components/status.jsx:1299 2284 + #: src/components/status.jsx:3337 2285 2285 msgid "Embed post" 2286 2286 msgstr "" 2287 2287 2288 - #: src/components/status.jsx:1311 2288 + #: src/components/status.jsx:1313 2289 2289 msgid "Conversation unmuted" 2290 2290 msgstr "" 2291 2291 2292 - #: src/components/status.jsx:1311 2292 + #: src/components/status.jsx:1313 2293 2293 msgid "Conversation muted" 2294 2294 msgstr "" 2295 2295 2296 - #: src/components/status.jsx:1317 2296 + #: src/components/status.jsx:1319 2297 2297 msgid "Unable to unmute conversation" 2298 2298 msgstr "" 2299 2299 2300 - #: src/components/status.jsx:1318 2300 + #: src/components/status.jsx:1320 2301 2301 msgid "Unable to mute conversation" 2302 2302 msgstr "" 2303 2303 2304 - #: src/components/status.jsx:1327 2304 + #: src/components/status.jsx:1329 2305 2305 msgid "Unmute conversation" 2306 2306 msgstr "" 2307 2307 2308 - #: src/components/status.jsx:1334 2308 + #: src/components/status.jsx:1336 2309 2309 msgid "Mute conversation" 2310 2310 msgstr "" 2311 2311 2312 - #: src/components/status.jsx:1350 2312 + #: src/components/status.jsx:1352 2313 2313 msgid "Post unpinned from profile" 2314 2314 msgstr "" 2315 2315 2316 - #: src/components/status.jsx:1351 2316 + #: src/components/status.jsx:1353 2317 2317 msgid "Post pinned to profile" 2318 2318 msgstr "" 2319 2319 2320 - #: src/components/status.jsx:1356 2320 + #: src/components/status.jsx:1358 2321 2321 msgid "Unable to unpin post" 2322 2322 msgstr "" 2323 2323 2324 - #: src/components/status.jsx:1356 2324 + #: src/components/status.jsx:1358 2325 2325 msgid "Unable to pin post" 2326 2326 msgstr "" 2327 2327 2328 - #: src/components/status.jsx:1365 2328 + #: src/components/status.jsx:1367 2329 2329 msgid "Unpin from profile" 2330 2330 msgstr "" 2331 2331 2332 - #: src/components/status.jsx:1372 2332 + #: src/components/status.jsx:1374 2333 2333 msgid "Pin to profile" 2334 2334 msgstr "" 2335 2335 2336 - #: src/components/status.jsx:1401 2336 + #: src/components/status.jsx:1403 2337 2337 msgid "Delete this post?" 2338 2338 msgstr "" 2339 2339 2340 - #: src/components/status.jsx:1417 2340 + #: src/components/status.jsx:1419 2341 2341 msgid "Post deleted" 2342 2342 msgstr "" 2343 2343 2344 - #: src/components/status.jsx:1420 2344 + #: src/components/status.jsx:1422 2345 2345 msgid "Unable to delete post" 2346 2346 msgstr "" 2347 2347 2348 - #: src/components/status.jsx:1448 2348 + #: src/components/status.jsx:1450 2349 2349 msgid "Report post…" 2350 2350 msgstr "" 2351 2351 2352 - #: src/components/status.jsx:1817 2353 - #: src/components/status.jsx:1853 2354 - #: src/components/status.jsx:2556 2352 + #: src/components/status.jsx:1819 2353 + #: src/components/status.jsx:1855 2354 + #: src/components/status.jsx:2558 2355 2355 msgid "Liked" 2356 2356 msgstr "" 2357 2357 2358 - #: src/components/status.jsx:1850 2359 - #: src/components/status.jsx:2543 2358 + #: src/components/status.jsx:1852 2359 + #: src/components/status.jsx:2545 2360 2360 msgid "Boosted" 2361 2361 msgstr "" 2362 2362 2363 - #: src/components/status.jsx:1860 2364 - #: src/components/status.jsx:2568 2363 + #: src/components/status.jsx:1862 2364 + #: src/components/status.jsx:2570 2365 2365 msgid "Bookmarked" 2366 2366 msgstr "" 2367 2367 2368 - #: src/components/status.jsx:1864 2368 + #: src/components/status.jsx:1866 2369 2369 msgid "Pinned" 2370 2370 msgstr "" 2371 2371 2372 - #: src/components/status.jsx:1910 2373 - #: src/components/status.jsx:2380 2372 + #: src/components/status.jsx:1912 2373 + #: src/components/status.jsx:2382 2374 2374 msgid "Deleted" 2375 2375 msgstr "" 2376 2376 2377 - #: src/components/status.jsx:1951 2377 + #: src/components/status.jsx:1953 2378 2378 msgid "{repliesCount, plural, one {# reply} other {# replies}}" 2379 2379 msgstr "" 2380 2380 2381 2381 #. placeholder {0}: snapStates.statusThreadNumber[sKey] ? ` ${snapStates.statusThreadNumber[sKey]}/X` : '' 2382 - #: src/components/status.jsx:2041 2382 + #: src/components/status.jsx:2043 2383 2383 msgid "Thread{0}" 2384 2384 msgstr "" 2385 2385 2386 - #: src/components/status.jsx:2119 2387 - #: src/components/status.jsx:2181 2388 - #: src/components/status.jsx:2276 2386 + #: src/components/status.jsx:2121 2387 + #: src/components/status.jsx:2183 2388 + #: src/components/status.jsx:2278 2389 2389 msgid "Show less" 2390 2390 msgstr "" 2391 2391 2392 - #: src/components/status.jsx:2119 2393 - #: src/components/status.jsx:2181 2392 + #: src/components/status.jsx:2121 2393 + #: src/components/status.jsx:2183 2394 2394 msgid "Show content" 2395 2395 msgstr "" 2396 2396 2397 2397 #. placeholder {0}: filterInfo.titlesStr 2398 2398 #. placeholder {0}: filterInfo?.titlesStr 2399 - #: src/components/status.jsx:2272 2400 - #: src/pages/catchup.jsx:1881 2399 + #: src/components/status.jsx:2274 2400 + #: src/pages/catchup.jsx:1882 2401 2401 msgid "Filtered: {0}" 2402 2402 msgstr "Filtered: {0}" 2403 2403 2404 - #: src/components/status.jsx:2276 2404 + #: src/components/status.jsx:2278 2405 2405 msgid "Show media" 2406 2406 msgstr "" 2407 2407 2408 - #: src/components/status.jsx:2416 2408 + #: src/components/status.jsx:2418 2409 2409 msgid "Edited" 2410 2410 msgstr "" 2411 2411 2412 - #: src/components/status.jsx:2493 2412 + #: src/components/status.jsx:2495 2413 2413 msgid "Comments" 2414 2414 msgstr "" 2415 2415 2416 2416 #. More from [Author] 2417 - #: src/components/status.jsx:2793 2417 + #: src/components/status.jsx:2795 2418 2418 msgid "More from <0/>" 2419 2419 msgstr "More from <0/>" 2420 2420 2421 - #: src/components/status.jsx:3095 2421 + #: src/components/status.jsx:3097 2422 2422 msgid "Edit History" 2423 2423 msgstr "" 2424 2424 2425 - #: src/components/status.jsx:3099 2425 + #: src/components/status.jsx:3101 2426 2426 msgid "Failed to load history" 2427 2427 msgstr "" 2428 2428 2429 - #: src/components/status.jsx:3104 2429 + #: src/components/status.jsx:3106 2430 2430 #: src/pages/annual-report.jsx:45 2431 2431 msgid "Loading…" 2432 2432 msgstr "" 2433 2433 2434 - #: src/components/status.jsx:3340 2434 + #: src/components/status.jsx:3342 2435 2435 msgid "HTML Code" 2436 2436 msgstr "" 2437 2437 2438 - #: src/components/status.jsx:3357 2438 + #: src/components/status.jsx:3359 2439 2439 msgid "HTML code copied" 2440 2440 msgstr "" 2441 2441 2442 - #: src/components/status.jsx:3360 2442 + #: src/components/status.jsx:3362 2443 2443 msgid "Unable to copy HTML code" 2444 2444 msgstr "" 2445 2445 2446 - #: src/components/status.jsx:3372 2446 + #: src/components/status.jsx:3374 2447 2447 msgid "Media attachments:" 2448 2448 msgstr "" 2449 2449 2450 - #: src/components/status.jsx:3394 2450 + #: src/components/status.jsx:3396 2451 2451 msgid "Account Emojis:" 2452 2452 msgstr "" 2453 2453 2454 - #: src/components/status.jsx:3425 2455 - #: src/components/status.jsx:3470 2454 + #: src/components/status.jsx:3427 2455 + #: src/components/status.jsx:3472 2456 2456 msgid "static URL" 2457 2457 msgstr "" 2458 2458 2459 - #: src/components/status.jsx:3439 2459 + #: src/components/status.jsx:3441 2460 2460 msgid "Emojis:" 2461 2461 msgstr "" 2462 2462 2463 - #: src/components/status.jsx:3484 2463 + #: src/components/status.jsx:3486 2464 2464 msgid "Notes:" 2465 2465 msgstr "" 2466 2466 2467 - #: src/components/status.jsx:3488 2467 + #: src/components/status.jsx:3490 2468 2468 msgid "This is static, unstyled and scriptless. You may need to apply your own styles and edit as needed." 2469 2469 msgstr "" 2470 2470 2471 - #: src/components/status.jsx:3494 2471 + #: src/components/status.jsx:3496 2472 2472 msgid "Polls are not interactive, becomes a list with vote counts." 2473 2473 msgstr "" 2474 2474 2475 - #: src/components/status.jsx:3499 2475 + #: src/components/status.jsx:3501 2476 2476 msgid "Media attachments can be images, videos, audios or any file types." 2477 2477 msgstr "" 2478 2478 2479 - #: src/components/status.jsx:3505 2479 + #: src/components/status.jsx:3507 2480 2480 msgid "Post could be edited or deleted later." 2481 2481 msgstr "" 2482 2482 2483 - #: src/components/status.jsx:3511 2483 + #: src/components/status.jsx:3513 2484 2484 msgid "Preview" 2485 2485 msgstr "" 2486 2486 2487 - #: src/components/status.jsx:3520 2487 + #: src/components/status.jsx:3522 2488 2488 msgid "Note: This preview is lightly styled." 2489 2489 msgstr "" 2490 2490 2491 2491 #. [Name] [Visibility icon] boosted 2492 - #: src/components/status.jsx:3773 2492 + #: src/components/status.jsx:3775 2493 2493 msgid "<0/> <1/> boosted" 2494 2494 msgstr "" 2495 2495 ··· 2500 2500 2501 2501 #: src/components/timeline.jsx:582 2502 2502 #: src/pages/home.jsx:216 2503 - #: src/pages/notifications.jsx:890 2503 + #: src/pages/notifications.jsx:896 2504 2504 #: src/pages/status.jsx:1015 2505 2505 #: src/pages/status.jsx:1388 2506 2506 msgid "Try again" ··· 2517 2517 2518 2518 #: src/components/timeline.jsx:981 2519 2519 #: src/components/timeline.jsx:988 2520 - #: src/pages/catchup.jsx:1899 2520 + #: src/pages/catchup.jsx:1900 2521 2521 msgid "Thread" 2522 2522 msgstr "" 2523 2523 ··· 2579 2579 msgid "Go home" 2580 2580 msgstr "" 2581 2581 2582 - #: src/pages/account-statuses.jsx:232 2582 + #: src/pages/account-statuses.jsx:234 2583 2583 msgid "Account posts" 2584 2584 msgstr "" 2585 2585 2586 - #: src/pages/account-statuses.jsx:239 2586 + #: src/pages/account-statuses.jsx:241 2587 2587 msgid "{accountDisplay} (+ Replies)" 2588 2588 msgstr "" 2589 2589 2590 - #: src/pages/account-statuses.jsx:241 2590 + #: src/pages/account-statuses.jsx:243 2591 2591 msgid "{accountDisplay} (- Boosts)" 2592 2592 msgstr "" 2593 2593 2594 - #: src/pages/account-statuses.jsx:243 2594 + #: src/pages/account-statuses.jsx:245 2595 2595 msgid "{accountDisplay} (#{tagged})" 2596 2596 msgstr "" 2597 2597 2598 - #: src/pages/account-statuses.jsx:245 2598 + #: src/pages/account-statuses.jsx:247 2599 2599 msgid "{accountDisplay} (Media)" 2600 2600 msgstr "" 2601 2601 2602 - #: src/pages/account-statuses.jsx:251 2602 + #: src/pages/account-statuses.jsx:253 2603 2603 msgid "{accountDisplay} ({monthYear})" 2604 2604 msgstr "" 2605 2605 2606 - #: src/pages/account-statuses.jsx:317 2606 + #: src/pages/account-statuses.jsx:319 2607 2607 msgid "Clear filters" 2608 2608 msgstr "" 2609 2609 2610 - #: src/pages/account-statuses.jsx:320 2610 + #: src/pages/account-statuses.jsx:322 2611 2611 msgid "Clear" 2612 2612 msgstr "" 2613 2613 2614 - #: src/pages/account-statuses.jsx:334 2614 + #: src/pages/account-statuses.jsx:336 2615 2615 msgid "Showing post with replies" 2616 2616 msgstr "" 2617 2617 2618 - #: src/pages/account-statuses.jsx:339 2618 + #: src/pages/account-statuses.jsx:341 2619 2619 msgid "+ Replies" 2620 2620 msgstr "" 2621 2621 2622 - #: src/pages/account-statuses.jsx:345 2622 + #: src/pages/account-statuses.jsx:347 2623 2623 msgid "Showing posts without boosts" 2624 2624 msgstr "" 2625 2625 2626 - #: src/pages/account-statuses.jsx:350 2626 + #: src/pages/account-statuses.jsx:352 2627 2627 msgid "- Boosts" 2628 2628 msgstr "" 2629 2629 2630 - #: src/pages/account-statuses.jsx:356 2630 + #: src/pages/account-statuses.jsx:358 2631 2631 msgid "Showing posts with media" 2632 2632 msgstr "" 2633 2633 2634 2634 #. placeholder {0}: tag.name 2635 - #: src/pages/account-statuses.jsx:373 2635 + #: src/pages/account-statuses.jsx:375 2636 2636 msgid "Showing posts tagged with #{0}" 2637 2637 msgstr "" 2638 2638 2639 2639 #. placeholder {0}: date.toLocaleString(i18n.locale, { month: 'long', year: 'numeric', }) 2640 - #: src/pages/account-statuses.jsx:412 2640 + #: src/pages/account-statuses.jsx:414 2641 2641 msgid "Showing posts in {0}" 2642 2642 msgstr "Showing posts in {0}" 2643 2643 2644 - #: src/pages/account-statuses.jsx:501 2644 + #: src/pages/account-statuses.jsx:503 2645 2645 msgid "Nothing to see here yet." 2646 2646 msgstr "" 2647 2647 2648 - #: src/pages/account-statuses.jsx:502 2649 - #: src/pages/public.jsx:98 2650 - #: src/pages/trending.jsx:447 2648 + #: src/pages/account-statuses.jsx:504 2649 + #: src/pages/public.jsx:99 2650 + #: src/pages/trending.jsx:452 2651 2651 msgid "Unable to load posts" 2652 2652 msgstr "" 2653 2653 2654 - #: src/pages/account-statuses.jsx:543 2655 - #: src/pages/account-statuses.jsx:573 2654 + #: src/pages/account-statuses.jsx:545 2655 + #: src/pages/account-statuses.jsx:575 2656 2656 msgid "Unable to fetch account info" 2657 2657 msgstr "" 2658 2658 2659 2659 #. placeholder {0}: accountInstance ? ( <> {' '} (<b>{punycode.toUnicode(accountInstance)}</b>) </> ) : null 2660 - #: src/pages/account-statuses.jsx:550 2660 + #: src/pages/account-statuses.jsx:552 2661 2661 msgid "Switch to account's instance {0}" 2662 2662 msgstr "" 2663 2663 2664 - #: src/pages/account-statuses.jsx:580 2664 + #: src/pages/account-statuses.jsx:582 2665 2665 msgid "Switch to my instance (<0>{currentInstance}</0>)" 2666 2666 msgstr "" 2667 2667 2668 - #: src/pages/account-statuses.jsx:642 2668 + #: src/pages/account-statuses.jsx:644 2669 2669 msgid "Month" 2670 2670 msgstr "" 2671 2671 ··· 2710 2710 msgid "Note: <0>Default</0> account will always be used for first load. Switched accounts will persist during the session." 2711 2711 msgstr "" 2712 2712 2713 - #: src/pages/bookmarks.jsx:26 2713 + #: src/pages/bookmarks.jsx:28 2714 2714 msgid "No bookmarks yet. Go bookmark something!" 2715 2715 msgstr "No bookmarks yet. Go bookmark something!" 2716 2716 2717 - #: src/pages/bookmarks.jsx:27 2717 + #: src/pages/bookmarks.jsx:29 2718 2718 msgid "Unable to load bookmarks." 2719 2719 msgstr "" 2720 2720 ··· 2778 2778 msgid "Groups" 2779 2779 msgstr "" 2780 2780 2781 - #: src/pages/catchup.jsx:597 2781 + #: src/pages/catchup.jsx:598 2782 2782 msgid "Showing {selectedFilterCategory, select, all {all posts} original {original posts} replies {replies} boosts {boosts} followedTags {followed tags} groups {groups} filtered {filtered posts}}, {sortBy, select, createdAt {{sortOrder, select, asc {oldest} desc {latest}}} reblogsCount {{sortOrder, select, asc {fewest boosts} desc {most boosts}}} favouritesCount {{sortOrder, select, asc {fewest likes} desc {most likes}}} repliesCount {{sortOrder, select, asc {fewest replies} desc {most replies}}} density {{sortOrder, select, asc {least dense} desc {most dense}}}} first{groupBy, select, account {, grouped by authors} other {}}" 2783 2783 msgstr "Showing {selectedFilterCategory, select, all {all posts} original {original posts} replies {replies} boosts {boosts} followedTags {followed tags} groups {groups} filtered {filtered posts}}, {sortBy, select, createdAt {{sortOrder, select, asc {oldest} desc {latest}}} reblogsCount {{sortOrder, select, asc {fewest boosts} desc {most boosts}}} favouritesCount {{sortOrder, select, asc {fewest likes} desc {most likes}}} repliesCount {{sortOrder, select, asc {fewest replies} desc {most replies}}} density {{sortOrder, select, asc {least dense} desc {most dense}}}} first{groupBy, select, account {, grouped by authors} other {}}" 2784 2784 2785 - #: src/pages/catchup.jsx:889 2786 - #: src/pages/catchup.jsx:913 2785 + #: src/pages/catchup.jsx:890 2786 + #: src/pages/catchup.jsx:914 2787 2787 msgid "Catch-up <0>beta</0>" 2788 2788 msgstr "" 2789 2789 2790 - #: src/pages/catchup.jsx:903 2791 - #: src/pages/catchup.jsx:1588 2790 + #: src/pages/catchup.jsx:904 2791 + #: src/pages/catchup.jsx:1589 2792 2792 msgid "Help" 2793 2793 msgstr "" 2794 2794 2795 - #: src/pages/catchup.jsx:919 2795 + #: src/pages/catchup.jsx:920 2796 2796 msgid "What is this?" 2797 2797 msgstr "" 2798 2798 2799 - #: src/pages/catchup.jsx:922 2799 + #: src/pages/catchup.jsx:923 2800 2800 msgid "Catch-up is a separate timeline for your followings, offering a high-level view at a glance, with a simple, email-inspired interface to effortlessly sort and filter through posts." 2801 2801 msgstr "" 2802 2802 2803 - #: src/pages/catchup.jsx:933 2803 + #: src/pages/catchup.jsx:934 2804 2804 msgid "Preview of Catch-up UI" 2805 2805 msgstr "Preview of Catch-up UI" 2806 2806 2807 - #: src/pages/catchup.jsx:942 2807 + #: src/pages/catchup.jsx:943 2808 2808 msgid "Let's catch up" 2809 2809 msgstr "" 2810 2810 2811 - #: src/pages/catchup.jsx:947 2811 + #: src/pages/catchup.jsx:948 2812 2812 msgid "Let's catch up on the posts from your followings." 2813 2813 msgstr "" 2814 2814 2815 - #: src/pages/catchup.jsx:951 2815 + #: src/pages/catchup.jsx:952 2816 2816 msgid "Show me all posts from…" 2817 2817 msgstr "" 2818 2818 2819 - #: src/pages/catchup.jsx:974 2819 + #: src/pages/catchup.jsx:975 2820 2820 msgid "until the max" 2821 2821 msgstr "until the max" 2822 2822 2823 - #: src/pages/catchup.jsx:1004 2823 + #: src/pages/catchup.jsx:1005 2824 2824 msgid "Catch up" 2825 2825 msgstr "" 2826 2826 2827 - #: src/pages/catchup.jsx:1010 2827 + #: src/pages/catchup.jsx:1011 2828 2828 msgid "Overlaps with your last catch-up" 2829 2829 msgstr "" 2830 2830 2831 2831 #. placeholder {0}: dtf.format(new Date(lastCatchupEndAt)) 2832 - #: src/pages/catchup.jsx:1022 2832 + #: src/pages/catchup.jsx:1023 2833 2833 msgid "Until the last catch-up ({0})" 2834 2834 msgstr "" 2835 2835 2836 - #: src/pages/catchup.jsx:1031 2836 + #: src/pages/catchup.jsx:1032 2837 2837 msgid "Note: your instance might only show a maximum of 800 posts in the Home timeline regardless of the time range. Could be less or more." 2838 2838 msgstr "" 2839 2839 2840 - #: src/pages/catchup.jsx:1041 2840 + #: src/pages/catchup.jsx:1042 2841 2841 msgid "Previously…" 2842 2842 msgstr "" 2843 2843 2844 2844 #. placeholder {0}: pc.count 2845 - #: src/pages/catchup.jsx:1059 2845 + #: src/pages/catchup.jsx:1060 2846 2846 msgid "{0, plural, one {# post} other {# posts}}" 2847 2847 msgstr "" 2848 2848 2849 - #: src/pages/catchup.jsx:1069 2849 + #: src/pages/catchup.jsx:1070 2850 2850 msgid "Remove this catch-up?" 2851 2851 msgstr "Remove this catch-up?" 2852 2852 2853 2853 #. placeholder {0}: pc.id 2854 - #: src/pages/catchup.jsx:1072 2854 + #: src/pages/catchup.jsx:1073 2855 2855 msgid "Removing Catch-up {0}" 2856 2856 msgstr "Removing Catch-up {0}" 2857 2857 2858 2858 #. placeholder {0}: pc.id 2859 - #: src/pages/catchup.jsx:1076 2859 + #: src/pages/catchup.jsx:1077 2860 2860 msgid "Catch-up {0} removed" 2861 2861 msgstr "Catch-up {0} removed" 2862 2862 2863 - #: src/pages/catchup.jsx:1090 2863 + #: src/pages/catchup.jsx:1091 2864 2864 msgid "Note: Only max 3 will be stored. The rest will be automatically removed." 2865 2865 msgstr "" 2866 2866 2867 - #: src/pages/catchup.jsx:1105 2867 + #: src/pages/catchup.jsx:1106 2868 2868 msgid "Fetching posts…" 2869 2869 msgstr "" 2870 2870 2871 - #: src/pages/catchup.jsx:1108 2871 + #: src/pages/catchup.jsx:1109 2872 2872 msgid "This might take a while." 2873 2873 msgstr "" 2874 2874 2875 - #: src/pages/catchup.jsx:1143 2875 + #: src/pages/catchup.jsx:1144 2876 2876 msgid "Reset filters" 2877 2877 msgstr "" 2878 2878 2879 - #: src/pages/catchup.jsx:1151 2880 - #: src/pages/catchup.jsx:1594 2879 + #: src/pages/catchup.jsx:1152 2880 + #: src/pages/catchup.jsx:1595 2881 2881 msgid "Top links" 2882 2882 msgstr "" 2883 2883 2884 2884 #. placeholder {0}: sharers.map((s) => { const { avatarStatic, displayName } = s; return ( <button type="button" class="plain" style={{ padding: 0, }} onClick={(e) => { e.preventDefault(); e.stopPropagation(); // Reset and filter to author const { id } = s; setSelectedAuthor(id); setSelectedFilterCategory('all'); }} > <Avatar url={avatarStatic} size="s" alt={displayName} /> </button> ); }) 2885 - #: src/pages/catchup.jsx:1264 2885 + #: src/pages/catchup.jsx:1265 2886 2886 msgid "Shared by {0}" 2887 2887 msgstr "" 2888 2888 2889 - #: src/pages/catchup.jsx:1319 2890 - #: src/pages/mentions.jsx:148 2889 + #: src/pages/catchup.jsx:1320 2890 + #: src/pages/mentions.jsx:154 2891 2891 #: src/pages/search.jsx:326 2892 2892 msgid "All" 2893 2893 msgstr "" 2894 2894 2895 2895 #. placeholder {0}: authorCountsList.length 2896 - #: src/pages/catchup.jsx:1404 2896 + #: src/pages/catchup.jsx:1405 2897 2897 msgid "{0, plural, one {# author} other {# authors}}" 2898 2898 msgstr "" 2899 2899 2900 - #: src/pages/catchup.jsx:1416 2900 + #: src/pages/catchup.jsx:1417 2901 2901 msgid "Sort" 2902 2902 msgstr "" 2903 2903 2904 - #: src/pages/catchup.jsx:1447 2904 + #: src/pages/catchup.jsx:1448 2905 2905 msgid "Date" 2906 2906 msgstr "Date" 2907 2907 2908 - #: src/pages/catchup.jsx:1451 2908 + #: src/pages/catchup.jsx:1452 2909 2909 msgid "Density" 2910 2910 msgstr "Density" 2911 2911 2912 2912 #. js-lingui-explicit-id 2913 - #: src/pages/catchup.jsx:1474 2913 + #: src/pages/catchup.jsx:1475 2914 2914 msgid "group.filter" 2915 2915 msgstr "Group" 2916 2916 2917 - #: src/pages/catchup.jsx:1489 2917 + #: src/pages/catchup.jsx:1490 2918 2918 msgid "Authors" 2919 2919 msgstr "Authors" 2920 2920 2921 - #: src/pages/catchup.jsx:1490 2921 + #: src/pages/catchup.jsx:1491 2922 2922 msgid "None" 2923 2923 msgstr "None" 2924 2924 2925 - #: src/pages/catchup.jsx:1506 2925 + #: src/pages/catchup.jsx:1507 2926 2926 msgid "Show all authors" 2927 2927 msgstr "" 2928 2928 2929 - #: src/pages/catchup.jsx:1557 2929 + #: src/pages/catchup.jsx:1558 2930 2930 msgid "You don't have to read everything." 2931 2931 msgstr "You don't have to read everything." 2932 2932 2933 - #: src/pages/catchup.jsx:1558 2933 + #: src/pages/catchup.jsx:1559 2934 2934 msgid "That's all." 2935 2935 msgstr "That's all." 2936 2936 2937 - #: src/pages/catchup.jsx:1566 2937 + #: src/pages/catchup.jsx:1567 2938 2938 msgid "Back to top" 2939 2939 msgstr "" 2940 2940 2941 - #: src/pages/catchup.jsx:1597 2941 + #: src/pages/catchup.jsx:1598 2942 2942 msgid "Links shared by followings, sorted by shared counts, boosts and likes." 2943 2943 msgstr "" 2944 2944 2945 - #: src/pages/catchup.jsx:1603 2945 + #: src/pages/catchup.jsx:1604 2946 2946 msgid "Sort: Density" 2947 2947 msgstr "" 2948 2948 2949 - #: src/pages/catchup.jsx:1606 2949 + #: src/pages/catchup.jsx:1607 2950 2950 msgid "Posts are sorted by information density or depth. Shorter posts are \"lighter\" while longer posts are \"heavier\". Posts with photos are \"heavier\" than posts without photos." 2951 2951 msgstr "" 2952 2952 2953 - #: src/pages/catchup.jsx:1613 2953 + #: src/pages/catchup.jsx:1614 2954 2954 msgid "Group: Authors" 2955 2955 msgstr "" 2956 2956 2957 - #: src/pages/catchup.jsx:1616 2957 + #: src/pages/catchup.jsx:1617 2958 2958 msgid "Posts are grouped by authors, sorted by posts count per author." 2959 2959 msgstr "" 2960 2960 2961 - #: src/pages/catchup.jsx:1663 2961 + #: src/pages/catchup.jsx:1664 2962 2962 msgid "Next author" 2963 2963 msgstr "" 2964 2964 2965 - #: src/pages/catchup.jsx:1671 2965 + #: src/pages/catchup.jsx:1672 2966 2966 msgid "Previous author" 2967 2967 msgstr "" 2968 2968 2969 - #: src/pages/catchup.jsx:1687 2969 + #: src/pages/catchup.jsx:1688 2970 2970 msgid "Scroll to top" 2971 2971 msgstr "" 2972 2972 2973 - #: src/pages/favourites.jsx:26 2973 + #: src/pages/favourites.jsx:28 2974 2974 msgid "No likes yet. Go like something!" 2975 2975 msgstr "No likes yet. Go like something!" 2976 2976 2977 - #: src/pages/favourites.jsx:27 2977 + #: src/pages/favourites.jsx:29 2978 2978 msgid "Unable to load likes." 2979 2979 msgstr "" 2980 2980 ··· 3122 3122 msgid "No hashtags followed yet." 3123 3123 msgstr "" 3124 3124 3125 - #: src/pages/following.jsx:144 3125 + #: src/pages/following.jsx:146 3126 3126 msgid "Nothing to see here." 3127 3127 msgstr "" 3128 3128 3129 - #: src/pages/following.jsx:145 3130 - #: src/pages/list.jsx:109 3129 + #: src/pages/following.jsx:147 3130 + #: src/pages/list.jsx:112 3131 3131 msgid "Unable to load posts." 3132 3132 msgstr "" 3133 3133 ··· 3147 3147 msgid "{hashtagTitle}" 3148 3148 msgstr "" 3149 3149 3150 - #: src/pages/hashtag.jsx:182 3150 + #: src/pages/hashtag.jsx:184 3151 3151 msgid "No one has posted anything with this tag yet." 3152 3152 msgstr "" 3153 3153 3154 - #: src/pages/hashtag.jsx:183 3154 + #: src/pages/hashtag.jsx:185 3155 3155 msgid "Unable to load posts with this tag" 3156 3156 msgstr "" 3157 3157 3158 - #: src/pages/hashtag.jsx:209 3158 + #: src/pages/hashtag.jsx:211 3159 3159 msgid "Unfollow #{hashtag}?" 3160 3160 msgstr "Unfollow #{hashtag}?" 3161 3161 3162 - #: src/pages/hashtag.jsx:224 3162 + #: src/pages/hashtag.jsx:226 3163 3163 msgid "Unfollowed #{hashtag}" 3164 3164 msgstr "" 3165 3165 3166 - #: src/pages/hashtag.jsx:239 3166 + #: src/pages/hashtag.jsx:241 3167 3167 msgid "Followed #{hashtag}" 3168 3168 msgstr "" 3169 3169 3170 - #: src/pages/hashtag.jsx:255 3170 + #: src/pages/hashtag.jsx:257 3171 3171 msgid "Following…" 3172 3172 msgstr "" 3173 3173 3174 - #: src/pages/hashtag.jsx:283 3174 + #: src/pages/hashtag.jsx:285 3175 3175 msgid "Unfeatured on profile" 3176 3176 msgstr "" 3177 3177 3178 - #: src/pages/hashtag.jsx:297 3178 + #: src/pages/hashtag.jsx:299 3179 3179 msgid "Unable to unfeature on profile" 3180 3180 msgstr "" 3181 3181 3182 - #: src/pages/hashtag.jsx:306 3183 - #: src/pages/hashtag.jsx:322 3182 + #: src/pages/hashtag.jsx:308 3183 + #: src/pages/hashtag.jsx:324 3184 3184 msgid "Featured on profile" 3185 3185 msgstr "" 3186 3186 3187 - #: src/pages/hashtag.jsx:329 3187 + #: src/pages/hashtag.jsx:331 3188 3188 msgid "Feature on profile" 3189 3189 msgstr "" 3190 3190 3191 - #: src/pages/hashtag.jsx:394 3191 + #: src/pages/hashtag.jsx:396 3192 3192 msgid "{TOTAL_TAGS_LIMIT, plural, other {Max # tags}}" 3193 3193 msgstr "" 3194 3194 3195 - #: src/pages/hashtag.jsx:397 3195 + #: src/pages/hashtag.jsx:399 3196 3196 msgid "Add hashtag" 3197 3197 msgstr "" 3198 3198 3199 - #: src/pages/hashtag.jsx:429 3199 + #: src/pages/hashtag.jsx:431 3200 3200 msgid "Remove hashtag" 3201 3201 msgstr "" 3202 3202 3203 - #: src/pages/hashtag.jsx:443 3203 + #: src/pages/hashtag.jsx:445 3204 3204 msgid "{SHORTCUTS_LIMIT, plural, one {Max # shortcut reached. Unable to add shortcut.} other {Max # shortcuts reached. Unable to add shortcut.}}" 3205 3205 msgstr "" 3206 3206 3207 - #: src/pages/hashtag.jsx:472 3207 + #: src/pages/hashtag.jsx:474 3208 3208 msgid "This shortcut already exists" 3209 3209 msgstr "" 3210 3210 3211 - #: src/pages/hashtag.jsx:475 3211 + #: src/pages/hashtag.jsx:477 3212 3212 msgid "Hashtag shortcut added" 3213 3213 msgstr "" 3214 3214 3215 - #: src/pages/hashtag.jsx:481 3215 + #: src/pages/hashtag.jsx:483 3216 3216 msgid "Add to Shortcuts" 3217 3217 msgstr "" 3218 3218 3219 - #: src/pages/hashtag.jsx:487 3220 - #: src/pages/public.jsx:140 3221 - #: src/pages/trending.jsx:476 3219 + #: src/pages/hashtag.jsx:489 3220 + #: src/pages/public.jsx:141 3221 + #: src/pages/trending.jsx:481 3222 3222 msgid "Enter a new instance e.g. \"mastodon.social\"" 3223 3223 msgstr "" 3224 3224 3225 - #: src/pages/hashtag.jsx:490 3226 - #: src/pages/public.jsx:143 3227 - #: src/pages/trending.jsx:479 3225 + #: src/pages/hashtag.jsx:492 3226 + #: src/pages/public.jsx:144 3227 + #: src/pages/trending.jsx:484 3228 3228 msgid "Invalid instance" 3229 3229 msgstr "" 3230 3230 3231 - #: src/pages/hashtag.jsx:504 3232 - #: src/pages/public.jsx:157 3233 - #: src/pages/trending.jsx:491 3231 + #: src/pages/hashtag.jsx:506 3232 + #: src/pages/public.jsx:158 3233 + #: src/pages/trending.jsx:496 3234 3234 msgid "Go to another instance…" 3235 3235 msgstr "" 3236 3236 3237 - #: src/pages/hashtag.jsx:517 3238 - #: src/pages/public.jsx:170 3239 - #: src/pages/trending.jsx:502 3237 + #: src/pages/hashtag.jsx:519 3238 + #: src/pages/public.jsx:171 3239 + #: src/pages/trending.jsx:507 3240 3240 msgid "Go to my instance (<0>{currentInstance}</0>)" 3241 3241 msgstr "" 3242 3242 ··· 3260 3260 msgid "Unable to resolve URL" 3261 3261 msgstr "" 3262 3262 3263 - #: src/pages/list.jsx:108 3263 + #: src/pages/list.jsx:111 3264 3264 msgid "Nothing yet." 3265 3265 msgstr "" 3266 3266 3267 - #: src/pages/list.jsx:177 3268 - #: src/pages/list.jsx:281 3267 + #: src/pages/list.jsx:180 3268 + #: src/pages/list.jsx:285 3269 3269 msgid "Manage members" 3270 3270 msgstr "" 3271 3271 3272 3272 #. placeholder {0}: account.username 3273 - #: src/pages/list.jsx:316 3273 + #: src/pages/list.jsx:320 3274 3274 msgid "Remove <0>@{0}</0> from list?" 3275 3275 msgstr "" 3276 3276 3277 - #: src/pages/list.jsx:362 3277 + #: src/pages/list.jsx:366 3278 3278 msgid "Remove…" 3279 3279 msgstr "" 3280 3280 ··· 3320 3320 msgid "Private mentions" 3321 3321 msgstr "" 3322 3322 3323 - #: src/pages/mentions.jsx:160 3323 + #: src/pages/mentions.jsx:166 3324 3324 msgid "Private" 3325 3325 msgstr "" 3326 3326 3327 - #: src/pages/mentions.jsx:170 3327 + #: src/pages/mentions.jsx:176 3328 3328 msgid "No one mentioned you :(" 3329 3329 msgstr "" 3330 3330 3331 - #: src/pages/mentions.jsx:171 3331 + #: src/pages/mentions.jsx:177 3332 3332 msgid "Unable to load mentions." 3333 3333 msgstr "" 3334 3334 3335 - #: src/pages/notifications.jsx:105 3335 + #: src/pages/notifications.jsx:108 3336 3336 msgid "You don't follow" 3337 3337 msgstr "" 3338 3338 3339 - #: src/pages/notifications.jsx:106 3339 + #: src/pages/notifications.jsx:109 3340 3340 msgid "Who don't follow you" 3341 3341 msgstr "" 3342 3342 3343 - #: src/pages/notifications.jsx:107 3343 + #: src/pages/notifications.jsx:110 3344 3344 msgid "With a new account" 3345 3345 msgstr "" 3346 3346 3347 - #: src/pages/notifications.jsx:108 3347 + #: src/pages/notifications.jsx:111 3348 3348 msgid "Who unsolicitedly private mention you" 3349 3349 msgstr "" 3350 3350 3351 - #: src/pages/notifications.jsx:109 3351 + #: src/pages/notifications.jsx:112 3352 3352 msgid "Who are limited by server moderators" 3353 3353 msgstr "" 3354 3354 3355 - #: src/pages/notifications.jsx:597 3356 - #: src/pages/notifications.jsx:938 3355 + #: src/pages/notifications.jsx:603 3356 + #: src/pages/notifications.jsx:944 3357 3357 msgid "Notifications settings" 3358 3358 msgstr "" 3359 3359 3360 - #: src/pages/notifications.jsx:615 3360 + #: src/pages/notifications.jsx:621 3361 3361 msgid "New notifications" 3362 3362 msgstr "" 3363 3363 3364 3364 #. placeholder {0}: announcements.length 3365 - #: src/pages/notifications.jsx:626 3365 + #: src/pages/notifications.jsx:632 3366 3366 msgid "{0, plural, one {Announcement} other {Announcements}}" 3367 3367 msgstr "" 3368 3368 3369 - #: src/pages/notifications.jsx:673 3369 + #: src/pages/notifications.jsx:679 3370 3370 #: src/pages/settings.jsx:1167 3371 3371 msgid "Follow requests" 3372 3372 msgstr "" 3373 3373 3374 3374 #. placeholder {0}: followRequests.length 3375 - #: src/pages/notifications.jsx:678 3375 + #: src/pages/notifications.jsx:684 3376 3376 msgid "{0, plural, one {# follow request} other {# follow requests}}" 3377 3377 msgstr "" 3378 3378 3379 3379 #. placeholder {0}: notificationsPolicy.summary.pendingRequestsCount 3380 - #: src/pages/notifications.jsx:733 3380 + #: src/pages/notifications.jsx:739 3381 3381 msgid "{0, plural, one {Filtered notifications from # person} other {Filtered notifications from # people}}" 3382 3382 msgstr "" 3383 3383 3384 - #: src/pages/notifications.jsx:806 3384 + #: src/pages/notifications.jsx:812 3385 3385 msgid "Only mentions" 3386 3386 msgstr "" 3387 3387 3388 - #: src/pages/notifications.jsx:810 3388 + #: src/pages/notifications.jsx:816 3389 3389 msgid "Today" 3390 3390 msgstr "" 3391 3391 3392 - #: src/pages/notifications.jsx:815 3392 + #: src/pages/notifications.jsx:821 3393 3393 msgid "You're all caught up." 3394 3394 msgstr "" 3395 3395 3396 - #: src/pages/notifications.jsx:838 3396 + #: src/pages/notifications.jsx:844 3397 3397 msgid "Yesterday" 3398 3398 msgstr "" 3399 3399 3400 - #: src/pages/notifications.jsx:886 3400 + #: src/pages/notifications.jsx:892 3401 3401 msgid "Unable to load notifications" 3402 3402 msgstr "" 3403 3403 3404 - #: src/pages/notifications.jsx:965 3404 + #: src/pages/notifications.jsx:971 3405 3405 msgid "Notifications settings updated" 3406 3406 msgstr "" 3407 3407 3408 - #: src/pages/notifications.jsx:973 3408 + #: src/pages/notifications.jsx:979 3409 3409 msgid "Filter out notifications from people:" 3410 3410 msgstr "" 3411 3411 3412 - #: src/pages/notifications.jsx:987 3412 + #: src/pages/notifications.jsx:993 3413 3413 msgid "Filter" 3414 3414 msgstr "" 3415 3415 3416 - #: src/pages/notifications.jsx:990 3416 + #: src/pages/notifications.jsx:996 3417 3417 msgid "Ignore" 3418 3418 msgstr "" 3419 3419 3420 3420 #. placeholder {0}: niceDateTime(updatedAtDate) 3421 - #: src/pages/notifications.jsx:1063 3421 + #: src/pages/notifications.jsx:1069 3422 3422 msgid "Updated <0>{0}</0>" 3423 3423 msgstr "" 3424 3424 3425 3425 #. placeholder {0}: account.username 3426 - #: src/pages/notifications.jsx:1131 3426 + #: src/pages/notifications.jsx:1137 3427 3427 msgid "View notifications from <0>@{0}</0>" 3428 3428 msgstr "" 3429 3429 3430 3430 #. placeholder {0}: account.username 3431 - #: src/pages/notifications.jsx:1152 3431 + #: src/pages/notifications.jsx:1158 3432 3432 msgid "Notifications from <0>@{0}</0>" 3433 3433 msgstr "" 3434 3434 3435 3435 #. placeholder {0}: request.account.username 3436 - #: src/pages/notifications.jsx:1220 3436 + #: src/pages/notifications.jsx:1226 3437 3437 msgid "Notifications from @{0} will not be filtered from now on." 3438 3438 msgstr "" 3439 3439 3440 - #: src/pages/notifications.jsx:1225 3440 + #: src/pages/notifications.jsx:1231 3441 3441 msgid "Unable to accept notification request" 3442 3442 msgstr "" 3443 3443 3444 - #: src/pages/notifications.jsx:1230 3444 + #: src/pages/notifications.jsx:1236 3445 3445 msgid "Allow" 3446 3446 msgstr "" 3447 3447 3448 3448 #. placeholder {0}: request.account.username 3449 - #: src/pages/notifications.jsx:1250 3449 + #: src/pages/notifications.jsx:1256 3450 3450 msgid "Notifications from @{0} will not show up in Filtered notifications from now on." 3451 3451 msgstr "Notifications from @{0} will not show up in Filtered notifications from now on." 3452 3452 3453 - #: src/pages/notifications.jsx:1255 3453 + #: src/pages/notifications.jsx:1261 3454 3454 msgid "Unable to dismiss notification request" 3455 3455 msgstr "" 3456 3456 3457 - #: src/pages/notifications.jsx:1260 3457 + #: src/pages/notifications.jsx:1266 3458 3458 msgid "Dismiss" 3459 3459 msgstr "" 3460 3460 3461 - #: src/pages/notifications.jsx:1275 3461 + #: src/pages/notifications.jsx:1281 3462 3462 msgid "Dismissed" 3463 3463 msgstr "" 3464 3464 ··· 3470 3470 msgid "Federated timeline ({instance})" 3471 3471 msgstr "" 3472 3472 3473 - #: src/pages/public.jsx:91 3473 + #: src/pages/public.jsx:92 3474 3474 msgid "Local timeline" 3475 3475 msgstr "" 3476 3476 3477 - #: src/pages/public.jsx:91 3477 + #: src/pages/public.jsx:92 3478 3478 msgid "Federated timeline" 3479 3479 msgstr "" 3480 3480 3481 - #: src/pages/public.jsx:97 3481 + #: src/pages/public.jsx:98 3482 3482 msgid "No one has posted anything yet." 3483 3483 msgstr "" 3484 3484 3485 - #: src/pages/public.jsx:124 3485 + #: src/pages/public.jsx:125 3486 3486 msgid "Switch to Federated" 3487 3487 msgstr "Switch to Federated" 3488 3488 3489 - #: src/pages/public.jsx:131 3489 + #: src/pages/public.jsx:132 3490 3490 msgid "Switch to Local" 3491 3491 msgstr "Switch to Local" 3492 3492 3493 - #: src/pages/scheduled-posts.jsx:108 3493 + #: src/pages/scheduled-posts.jsx:110 3494 3494 msgid "No scheduled posts." 3495 3495 msgstr "No scheduled posts." 3496 3496 3497 3497 #. Scheduled [in 1 day] ([Thu, Feb 27, 6:30:00 PM]) 3498 3498 #. placeholder {0}: niceDateTime(scheduledAt, { formatOpts: { weekday: 'short', second: 'numeric', }, }) 3499 - #: src/pages/scheduled-posts.jsx:205 3499 + #: src/pages/scheduled-posts.jsx:207 3500 3500 msgid "Scheduled <0><1/></0> <2>({0})</2>" 3501 3501 msgstr "Scheduled <0><1/></0> <2>({0})</2>" 3502 3502 3503 3503 #. Scheduled [in 1 day] 3504 - #: src/pages/scheduled-posts.jsx:261 3504 + #: src/pages/scheduled-posts.jsx:263 3505 3505 msgid "Scheduled <0><1/></0>" 3506 3506 msgstr "Scheduled <0><1/></0>" 3507 3507 3508 - #: src/pages/scheduled-posts.jsx:306 3508 + #: src/pages/scheduled-posts.jsx:308 3509 3509 msgid "Scheduled post rescheduled" 3510 3510 msgstr "Scheduled post rescheduled" 3511 3511 3512 - #: src/pages/scheduled-posts.jsx:313 3512 + #: src/pages/scheduled-posts.jsx:315 3513 3513 msgid "Failed to reschedule post" 3514 3514 msgstr "Failed to reschedule post" 3515 3515 3516 - #: src/pages/scheduled-posts.jsx:336 3516 + #: src/pages/scheduled-posts.jsx:338 3517 3517 msgid "Reschedule" 3518 3518 msgstr "Reschedule" 3519 3519 3520 - #: src/pages/scheduled-posts.jsx:342 3520 + #: src/pages/scheduled-posts.jsx:344 3521 3521 msgid "Delete scheduled post?" 3522 3522 msgstr "Delete scheduled post?" 3523 3523 3524 - #: src/pages/scheduled-posts.jsx:350 3524 + #: src/pages/scheduled-posts.jsx:352 3525 3525 msgid "Scheduled post deleted" 3526 3526 msgstr "Scheduled post deleted" 3527 3527 3528 - #: src/pages/scheduled-posts.jsx:357 3528 + #: src/pages/scheduled-posts.jsx:359 3529 3529 msgid "Failed to delete scheduled post" 3530 3530 msgstr "Failed to delete scheduled post" 3531 3531 ··· 3913 3913 msgid "View post with its replies" 3914 3914 msgstr "" 3915 3915 3916 - #: src/pages/trending.jsx:73 3916 + #: src/pages/trending.jsx:77 3917 3917 msgid "Trending ({instance})" 3918 3918 msgstr "" 3919 3919 3920 - #: src/pages/trending.jsx:230 3920 + #: src/pages/trending.jsx:235 3921 3921 msgid "Trending News" 3922 3922 msgstr "" 3923 3923 3924 3924 #. By [Author] 3925 3925 #. placeholder {0}: author ? ( <NameText account={author} showAvatar /> ) : authorUrl ? ( <a href={authorUrl} target="_blank" rel="noopener" > {authorName} </a> ) : ( authorName ) 3926 - #: src/pages/trending.jsx:345 3926 + #: src/pages/trending.jsx:350 3927 3927 msgid "By {0}" 3928 3928 msgstr "By {0}" 3929 3929 3930 - #: src/pages/trending.jsx:406 3930 + #: src/pages/trending.jsx:411 3931 3931 msgid "Back to showing trending posts" 3932 3932 msgstr "" 3933 3933 3934 3934 #. placeholder {0}: currentLink .replace(/^https?:\/\/(www\.)?/i, '') .replace(/\/$/, '') 3935 - #: src/pages/trending.jsx:411 3935 + #: src/pages/trending.jsx:416 3936 3936 msgid "Showing posts mentioning <0>{0}</0>" 3937 3937 msgstr "" 3938 3938 3939 - #: src/pages/trending.jsx:423 3939 + #: src/pages/trending.jsx:428 3940 3940 msgid "Trending posts" 3941 3941 msgstr "" 3942 3942 3943 - #: src/pages/trending.jsx:446 3943 + #: src/pages/trending.jsx:451 3944 3944 msgid "No trending posts." 3945 3945 msgstr "" 3946 3946
+5 -3
src/pages/account-statuses.jsx
··· 40 40 41 41 async function _isSearchEnabled(instance) { 42 42 const { masto } = api({ instance }); 43 - const results = await masto.v2.search.fetch({ 43 + const results = await masto.v2.search.list({ 44 44 q: 'from:me', 45 45 type: 'statuses', 46 46 limit: 1, ··· 137 137 searchOffsetRef.current += LIMIT; 138 138 } 139 139 140 - const searchResults = await masto.v2.search.fetch({ 140 + const searchResults = await masto.v2.search.list({ 141 141 q: `from:${account.acct} after:${afterStr} before:${beforeStr}`, 142 142 type: 'statuses', 143 143 limit, ··· 162 162 .statuses.list({ 163 163 pinned: true, 164 164 }) 165 + .values() 165 166 .next(); 166 167 if (value?.length && !tagged && !media) { 167 168 const pinnedStatuses = value.map((status) => { ··· 192 193 exclude_reblogs: excludeBoosts, 193 194 only_media: media || undefined, 194 195 tagged, 195 - }); 196 + }) 197 + .values(); 196 198 } 197 199 const { value, done } = await accountStatusesIterator.current.next(); 198 200 if (value?.length) {
+3 -1
src/pages/bookmarks.jsx
··· 14 14 const bookmarksIterator = useRef(); 15 15 async function fetchBookmarks(firstLoad) { 16 16 if (firstLoad || !bookmarksIterator.current) { 17 - bookmarksIterator.current = masto.v1.bookmarks.list({ limit: LIMIT }); 17 + bookmarksIterator.current = masto.v1.bookmarks 18 + .list({ limit: LIMIT }) 19 + .values(); 18 20 } 19 21 return await bookmarksIterator.current.next(); 20 22 }
+6 -5
src/pages/catchup.jsx
··· 117 117 const maxCreatedAtDate = maxCreatedAt ? new Date(maxCreatedAt) : null; 118 118 console.debug('fetchHome', maxCreatedAtDate); 119 119 const allResults = []; 120 - const homeIterator = masto.v1.timelines.home.list({ limit: 40 }); 120 + const homeIterable = masto.v1.timelines.home.list({ limit: 40 }); 121 + const homeIterator = homeIterable.values(); 121 122 mainloop: while (true) { 122 123 try { 123 - if (supportsPixelfed && homeIterator.nextParams) { 124 - if (typeof homeIterator.nextParams === 'string') { 125 - homeIterator.nextParams += '&include_reblogs=true'; 124 + if (supportsPixelfed && homeIterable.params) { 125 + if (typeof homeIterable.params === 'string') { 126 + homeIterable.params += '&include_reblogs=true'; 126 127 } else { 127 - homeIterator.nextParams.include_reblogs = true; 128 + homeIterable.params.include_reblogs = true; 128 129 } 129 130 } 130 131 const results = await homeIterator.next();
+3 -1
src/pages/favourites.jsx
··· 14 14 const favouritesIterator = useRef(); 15 15 async function fetchFavourites(firstLoad) { 16 16 if (firstLoad || !favouritesIterator.current) { 17 - favouritesIterator.current = masto.v1.favourites.list({ limit: LIMIT }); 17 + favouritesIterator.current = masto.v1.favourites 18 + .list({ limit: LIMIT }) 19 + .values(); 18 20 } 19 21 return await favouritesIterator.current.next(); 20 22 }
+7 -5
src/pages/following.jsx
··· 28 28 ); 29 29 const { masto, streaming, instance } = api(); 30 30 const snapStates = useSnapshot(states); 31 + const homeIterable = useRef(); 31 32 const homeIterator = useRef(); 32 33 const latestItem = useRef(); 33 34 __BENCHMARK.end('time-to-following'); ··· 38 39 async function fetchHome(firstLoad) { 39 40 if (firstLoad || !homeIterator.current) { 40 41 __BENCHMARK.start('fetch-home-first'); 41 - homeIterator.current = masto.v1.timelines.home.list({ limit: LIMIT }); 42 + homeIterable.current = masto.v1.timelines.home.list({ limit: LIMIT }); 43 + homeIterator.current = homeIterable.current.values(); 42 44 } 43 - if (supportsPixelfed && homeIterator.current?.nextParams) { 44 - if (typeof homeIterator.current.nextParams === 'string') { 45 - homeIterator.current.nextParams += '&include_reblogs=true'; 45 + if (supportsPixelfed && homeIterable.current?.params) { 46 + if (typeof homeIterable.current.params === 'string') { 47 + homeIterable.current.params += '&include_reblogs=true'; 46 48 } else { 47 - homeIterator.current.nextParams.include_reblogs = true; 49 + homeIterable.current.params.include_reblogs = true; 48 50 } 49 51 } 50 52 const results = await homeIterator.current.next();
+3 -1
src/pages/hashtag.jsx
··· 70 70 // hashtagsIterator.current = masto.v1.timelines.tag.$select(hashtag).list({ 71 71 // limit: LIMIT, 72 72 // any: hashtags.slice(1), 73 - // }); 73 + // }).values(); 74 74 // } 75 75 // const results = await hashtagsIterator.current.next(); 76 76 ··· 83 83 maxId: firstLoad ? undefined : maxID.current, 84 84 onlyMedia: media ? true : undefined, 85 85 }) 86 + .values() 86 87 .next(); 87 88 let { value } = results; 88 89 if (value?.length) { ··· 115 116 since_id: latestItem.current, 116 117 onlyMedia: media, 117 118 }) 119 + .values() 118 120 .next(); 119 121 let { value } = results; 120 122 const valueContainsLatestItem = value[0]?.id === latestItem.current; // since_id might not be supported
+1 -1
src/pages/http-route.jsx
··· 38 38 // Fallback to search 39 39 { 40 40 const { masto: currentMasto, instance: currentInstance } = api(); 41 - const result = await currentMasto.v2.search.fetch({ 41 + const result = await currentMasto.v2.search.list({ 42 42 q: url, 43 43 limit: 1, 44 44 resolve: true,
+8 -4
src/pages/list.jsx
··· 36 36 const listIterator = useRef(); 37 37 async function fetchList(firstLoad) { 38 38 if (firstLoad || !listIterator.current) { 39 - listIterator.current = masto.v1.timelines.list.$select(id).list({ 40 - limit: LIMIT, 41 - }); 39 + listIterator.current = masto.v1.timelines.list 40 + .$select(id) 41 + .list({ 42 + limit: LIMIT, 43 + }) 44 + .values(); 42 45 } 43 46 const results = await listIterator.current.next(); 44 47 let { value } = results; ··· 244 247 .$select(listID) 245 248 .accounts.list({ 246 249 limit: MEMBERS_LIMIT, 247 - }); 250 + }) 251 + .values(); 248 252 } 249 253 const results = await membersIterator.current.next(); 250 254 let { done, value } = results;
+13 -7
src/pages/mentions.jsx
··· 25 25 26 26 async function fetchMentions(firstLoad) { 27 27 if (firstLoad || !mentionsIterator.current) { 28 - mentionsIterator.current = masto.v1.notifications.list({ 29 - limit: LIMIT, 30 - types: ['mention'], 31 - }); 28 + mentionsIterator.current = masto.v1.notifications 29 + .list({ 30 + limit: LIMIT, 31 + types: ['mention'], 32 + }) 33 + .values(); 32 34 } 33 35 const results = await mentionsIterator.current.next(); 34 36 let { value } = results; ··· 54 56 const latestConversationItem = useRef(); 55 57 async function fetchConversations(firstLoad) { 56 58 if (firstLoad || !conversationsIterator.current) { 57 - conversationsIterator.current = masto.v1.conversations.list({ 58 - limit: LIMIT, 59 - }); 59 + conversationsIterator.current = masto.v1.conversations 60 + .list({ 61 + limit: LIMIT, 62 + }) 63 + .values(); 60 64 } 61 65 const results = await conversationsIterator.current.next(); 62 66 let { value } = results; ··· 93 97 limit: 1, 94 98 since_id: latestConversationItem.current, 95 99 }) 100 + .values() 96 101 .next(); 97 102 let { value } = results; 98 103 console.log( ··· 118 123 types: ['mention'], 119 124 since_id: latestItem.current, 120 125 }) 126 + .values() 121 127 .next(); 122 128 let { value } = results; 123 129 console.log('checkForUpdates ALL', latestItem.current, value);
+9 -3
src/pages/notifications.jsx
··· 64 64 }, 65 65 ); 66 66 67 - export function mastoFetchNotifications(opts = {}) { 67 + function mastoFetchNotificationsIterable(opts = {}) { 68 68 const { masto } = api(); 69 69 if ( 70 70 states.settings.groupedNotificationsAlpha && ··· 81 81 ...opts, 82 82 }); 83 83 } 84 + } 85 + export function mastoFetchNotifications(opts = {}) { 86 + return mastoFetchNotificationsIterable(opts).values(); 84 87 } 85 88 86 89 export function getGroupedNotifications(notifications) { ··· 131 134 132 135 console.debug('RENDER Notifications'); 133 136 137 + const notificationsIterable = useRef(); 134 138 const notificationsIterator = useRef(); 135 139 async function fetchNotifications(firstLoad) { 136 140 if (firstLoad || !notificationsIterator.current) { 137 141 // Reset iterator 138 - notificationsIterator.current = mastoFetchNotifications({ 142 + notificationsIterable.current = mastoFetchNotificationsIterable({ 139 143 excludeTypes: ['follow_request'], 140 144 }); 145 + notificationsIterator.current = notificationsIterable.current.values(); 141 146 } 142 - if (/max_id=($|&)/i.test(notificationsIterator.current?.nextParams)) { 147 + // if (/max_id=($|&)/i.test(notificationsIterator.current?.nextParams)) { 148 + if (!notificationsIterable.current?.params?.max_id) { 143 149 // Pixelfed returns next paginationed link with empty max_id 144 150 // I assume, it's done (end of list) 145 151 return {
+2 -1
src/pages/public.jsx
··· 41 41 if (!isLocal && supports('@pixelfed/global-feed')) { 42 42 opts.remote = true; 43 43 } 44 - publicIterator.current = masto.v1.timelines.public.list(opts); 44 + publicIterator.current = masto.v1.timelines.public.list(opts).values(); 45 45 } 46 46 const results = await publicIterator.current.next(); 47 47 let { value } = results; ··· 69 69 local: isLocal, 70 70 since_id: latestItem.current, 71 71 }) 72 + .values() 72 73 .next(); 73 74 let { value } = results; 74 75 const valueContainsLatestItem = value[0]?.id === latestItem.current; // since_id might not be supported
+3 -1
src/pages/scheduled-posts.jsx
··· 41 41 setUIState('loading'); 42 42 (async () => { 43 43 try { 44 - const postsIterator = masto.v1.scheduledStatuses.list({ limit: LIMIT }); 44 + const postsIterator = masto.v1.scheduledStatuses 45 + .list({ limit: LIMIT }) 46 + .values(); 45 47 const allPosts = []; 46 48 let posts; 47 49 do {
+1 -1
src/pages/search.jsx
··· 133 133 } 134 134 135 135 try { 136 - const results = await masto.v2.search.fetch(params); 136 + const results = await masto.v2.search.list(params); 137 137 console.log(results); 138 138 if (type) { 139 139 if (firstLoad) {
+1 -1
src/pages/status.jsx
··· 878 878 setUIState('loading'); 879 879 (async () => { 880 880 try { 881 - const results = await currentMasto.v2.search.fetch({ 881 + const results = await currentMasto.v2.search.list({ 882 882 q: heroStatus.url, 883 883 type: 'statuses', 884 884 resolve: true,
+14 -9
src/pages/trending.jsx
··· 31 31 32 32 const fetchLinks = pmem( 33 33 (masto) => { 34 - return masto.v1.trends.links.list().next(); 34 + return masto.v1.trends.links.list().values().next(); 35 35 }, 36 36 { 37 37 maxAge: TREND_CACHE_TIME, ··· 40 40 41 41 const fetchHashtags = pmem( 42 42 (masto) => { 43 - return masto.v1.trends.tags.list().next(); 43 + return masto.v1.trends.tags.list().values().next(); 44 44 }, 45 45 { 46 46 maxAge: TREND_CACHE_TIME, ··· 49 49 50 50 function fetchTrendsStatuses(masto) { 51 51 if (supports('@pixelfed/trending')) { 52 - return masto.pixelfed.v2.discover.posts.trending.list({ 53 - range: 'daily', 54 - }); 52 + return masto.pixelfed.v2.discover.posts.trending 53 + .list({ 54 + range: 'daily', 55 + }) 56 + .values(); 55 57 } 56 - return masto.v1.trends.statuses.list({ 57 - limit: LIMIT, 58 - }); 58 + return masto.v1.trends.statuses 59 + .list({ 60 + limit: LIMIT, 61 + }) 62 + .values(); 59 63 } 60 64 61 65 function fetchLinkList(masto, params) { 62 - return masto.v1.timelines.link.list(params); 66 + return masto.v1.timelines.link.list(params).values(); 63 67 } 64 68 65 69 function Trending({ columnMode, ...props }) { ··· 189 193 // NOT SUPPORTED 190 194 // since_id: latestItem.current, 191 195 }) 196 + .values() 192 197 .next(); 193 198 let { value } = results; 194 199 value = filteredItems(value, 'public');
+5 -3
src/utils/followed-tags.js
··· 6 6 7 7 export async function fetchFollowedTags() { 8 8 const { masto } = api(); 9 - const iterator = masto.v1.followedTags.list({ 10 - limit: LIMIT, 11 - }); 9 + const iterator = masto.v1.followedTags 10 + .list({ 11 + limit: LIMIT, 12 + }) 13 + .values(); 12 14 const tags = []; 13 15 let fetchCount = 0; 14 16 do {