this repo has no description
0
fork

Configure Feed

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

Time to make use of media modal

+165 -142
+26 -5
src/components/account-info.jsx
··· 37 37 import ListAddEdit from './list-add-edit'; 38 38 import Loader from './loader'; 39 39 import MenuConfirm from './menu-confirm'; 40 - import MenuLink from './menu-link'; 41 40 import Menu2 from './menu2'; 42 41 import Modal from './modal'; 43 42 import SubMenu2 from './submenu2'; ··· 604 603 </span> 605 604 </MenuItem> 606 605 <MenuDivider /> 607 - <MenuLink href={info.avatar} target="_blank"> 606 + <MenuItem 607 + onClick={() => { 608 + states.showMediaModal = { 609 + mediaAttachments: [ 610 + { 611 + type: 'image', 612 + url: avatarStatic, 613 + }, 614 + ], 615 + }; 616 + }} 617 + > 608 618 <Icon icon="user" /> 609 619 <span> 610 620 <Trans>View profile image</Trans> 611 621 </span> 612 - </MenuLink> 613 - <MenuLink href={info.header} target="_blank"> 622 + </MenuItem> 623 + <MenuItem 624 + onClick={() => { 625 + states.showMediaModal = { 626 + mediaAttachments: [ 627 + { 628 + type: 'image', 629 + url: headerStatic, 630 + }, 631 + ], 632 + }; 633 + }} 634 + > 614 635 <Icon icon="media" /> 615 636 <span> 616 637 <Trans>View profile header</Trans> 617 638 </span> 618 - </MenuLink> 639 + </MenuItem> 619 640 </Menu2> 620 641 ) : ( 621 642 <AccountBlock
+23 -21
src/components/media-modal.jsx
··· 417 417 </> 418 418 )} 419 419 </Menu2>{' '} 420 - <Link 421 - to={`${instance ? `/${instance}` : ''}/s/${statusID}${ 422 - window.matchMedia('(min-width: calc(40em + 350px))').matches 423 - ? `?media=${currentIndex + 1}` 424 - : '' 425 - }`} 426 - class="button carousel-button media-post-link" 427 - // onClick={() => { 428 - // // if small screen (not media query min-width 40em + 350px), run onClose 429 - // if ( 430 - // !window.matchMedia('(min-width: calc(40em + 350px))').matches 431 - // ) { 432 - // onClose(); 433 - // } 434 - // }} 435 - > 436 - <span class="button-label"> 437 - <Trans>View post</Trans>{' '} 438 - </span> 439 - &raquo; 440 - </Link> 420 + {!!statusID && ( 421 + <Link 422 + to={`${instance ? `/${instance}` : ''}/s/${statusID}${ 423 + window.matchMedia('(min-width: calc(40em + 350px))').matches 424 + ? `?media=${currentIndex + 1}` 425 + : '' 426 + }`} 427 + class="button carousel-button media-post-link" 428 + // onClick={() => { 429 + // // if small screen (not media query min-width 40em + 350px), run onClose 430 + // if ( 431 + // !window.matchMedia('(min-width: calc(40em + 350px))').matches 432 + // ) { 433 + // onClose(); 434 + // } 435 + // }} 436 + > 437 + <span class="button-label"> 438 + <Trans>View post</Trans>{' '} 439 + </span> 440 + &raquo; 441 + </Link> 442 + )} 441 443 </span> 442 444 </div> 443 445 {mediaAttachments?.length > 1 && (
+116 -116
src/locales/en.po
··· 28 28 msgstr "" 29 29 30 30 #: src/components/account-block.jsx:162 31 - #: src/components/account-info.jsx:638 31 + #: src/components/account-info.jsx:659 32 32 msgid "Automated" 33 33 msgstr "" 34 34 35 35 #: src/components/account-block.jsx:169 36 - #: src/components/account-info.jsx:643 36 + #: src/components/account-info.jsx:664 37 37 #: src/components/status.jsx:514 38 38 msgid "Group" 39 39 msgstr "" ··· 43 43 msgstr "" 44 44 45 45 #: src/components/account-block.jsx:183 46 - #: src/components/account-info.jsx:1684 46 + #: src/components/account-info.jsx:1705 47 47 msgid "Requested" 48 48 msgstr "" 49 49 50 50 #: src/components/account-block.jsx:187 51 - #: src/components/account-info.jsx:1675 51 + #: src/components/account-info.jsx:1696 52 52 msgid "Following" 53 53 msgstr "" 54 54 55 55 #: src/components/account-block.jsx:191 56 - #: src/components/account-info.jsx:1066 56 + #: src/components/account-info.jsx:1087 57 57 msgid "Follows you" 58 58 msgstr "" 59 59 ··· 62 62 msgstr "" 63 63 64 64 #: src/components/account-block.jsx:208 65 - #: src/components/account-info.jsx:684 65 + #: src/components/account-info.jsx:705 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:223 72 - #: src/components/account-info.jsx:784 72 + #: src/components/account-info.jsx:805 73 73 msgid "Joined <0>{0}</0>" 74 74 msgstr "" 75 75 76 - #: src/components/account-info.jsx:58 76 + #: src/components/account-info.jsx:57 77 77 msgid "Forever" 78 78 msgstr "" 79 79 80 - #: src/components/account-info.jsx:379 80 + #: src/components/account-info.jsx:378 81 81 msgid "Unable to load account." 82 82 msgstr "" 83 83 84 - #: src/components/account-info.jsx:388 84 + #: src/components/account-info.jsx:387 85 85 msgid "Go to account page" 86 86 msgstr "" 87 87 88 - #: src/components/account-info.jsx:417 89 - #: src/components/account-info.jsx:706 90 - #: src/components/account-info.jsx:736 88 + #: src/components/account-info.jsx:416 89 + #: src/components/account-info.jsx:727 90 + #: src/components/account-info.jsx:757 91 91 msgid "Followers" 92 92 msgstr "" 93 93 94 94 #. js-lingui-explicit-id 95 - #: src/components/account-info.jsx:420 96 - #: src/components/account-info.jsx:746 97 - #: src/components/account-info.jsx:763 95 + #: src/components/account-info.jsx:419 96 + #: src/components/account-info.jsx:767 97 + #: src/components/account-info.jsx:784 98 98 msgid "following.stats" 99 99 msgstr "Following" 100 100 101 - #: src/components/account-info.jsx:423 102 - #: src/components/account-info.jsx:780 101 + #: src/components/account-info.jsx:422 102 + #: src/components/account-info.jsx:801 103 103 #: src/pages/account-statuses.jsx:479 104 104 #: src/pages/search.jsx:328 105 105 #: src/pages/search.jsx:475 106 106 msgid "Posts" 107 107 msgstr "" 108 108 109 - #: src/components/account-info.jsx:431 110 - #: src/components/account-info.jsx:1122 109 + #: src/components/account-info.jsx:430 110 + #: src/components/account-info.jsx:1143 111 111 #: src/components/compose.jsx:2624 112 112 #: src/components/media-alt-modal.jsx:46 113 113 #: src/components/media-modal.jsx:358 ··· 126 126 msgid "More" 127 127 msgstr "" 128 128 129 - #: src/components/account-info.jsx:443 129 + #: src/components/account-info.jsx:442 130 130 msgid "<0>{displayName}</0> has indicated that their new account is now:" 131 131 msgstr "" 132 132 133 - #: src/components/account-info.jsx:588 134 - #: src/components/account-info.jsx:1280 133 + #: src/components/account-info.jsx:587 134 + #: src/components/account-info.jsx:1301 135 135 msgid "Handle copied" 136 136 msgstr "Handle copied" 137 137 138 - #: src/components/account-info.jsx:591 139 - #: src/components/account-info.jsx:1283 138 + #: src/components/account-info.jsx:590 139 + #: src/components/account-info.jsx:1304 140 140 msgid "Unable to copy handle" 141 141 msgstr "Unable to copy handle" 142 142 143 - #: src/components/account-info.jsx:597 144 - #: src/components/account-info.jsx:1289 143 + #: src/components/account-info.jsx:596 144 + #: src/components/account-info.jsx:1310 145 145 msgid "Copy handle" 146 146 msgstr "" 147 147 148 - #: src/components/account-info.jsx:603 148 + #: src/components/account-info.jsx:602 149 149 msgid "Go to original profile page" 150 150 msgstr "" 151 151 152 - #: src/components/account-info.jsx:610 152 + #: src/components/account-info.jsx:620 153 153 msgid "View profile image" 154 154 msgstr "" 155 155 156 - #: src/components/account-info.jsx:616 156 + #: src/components/account-info.jsx:637 157 157 msgid "View profile header" 158 158 msgstr "" 159 159 160 - #: src/components/account-info.jsx:633 160 + #: src/components/account-info.jsx:654 161 161 msgid "In Memoriam" 162 162 msgstr "" 163 163 164 - #: src/components/account-info.jsx:713 165 - #: src/components/account-info.jsx:754 164 + #: src/components/account-info.jsx:734 165 + #: src/components/account-info.jsx:775 166 166 msgid "This user has chosen to not make this information available." 167 167 msgstr "This user has chosen to not make this information available." 168 168 169 169 #. placeholder {0}: ( postingStats.originals / postingStats.total ).toLocaleString(i18n.locale || undefined, { style: 'percent', }) 170 170 #. placeholder {1}: ( postingStats.replies / postingStats.total ).toLocaleString(i18n.locale || undefined, { style: 'percent', }) 171 171 #. placeholder {2}: ( postingStats.boosts / postingStats.total ).toLocaleString(i18n.locale || undefined, { style: 'percent', }) 172 - #: src/components/account-info.jsx:809 172 + #: src/components/account-info.jsx:830 173 173 msgid "{0} original posts, {1} replies, {2} boosts" 174 174 msgstr "{0} original posts, {1} replies, {2} boosts" 175 175 ··· 180 180 #. placeholder {4}: postingStats.total 181 181 #. placeholder {5}: postingStats.total 182 182 #. placeholder {6}: postingStats.daysSinceLastPost 183 - #: src/components/account-info.jsx:825 183 + #: src/components/account-info.jsx:846 184 184 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}}}}" 185 185 msgstr "" 186 186 187 187 #. placeholder {0}: postingStats.total 188 188 #. placeholder {1}: postingStats.total 189 - #: src/components/account-info.jsx:838 189 + #: src/components/account-info.jsx:859 190 190 msgid "{0, plural, one {Last 1 post in the past year(s)} other {Last {1} posts in the past year(s)}}" 191 191 msgstr "" 192 192 193 - #: src/components/account-info.jsx:862 193 + #: src/components/account-info.jsx:883 194 194 #: src/pages/catchup.jsx:70 195 195 msgid "Original" 196 196 msgstr "" 197 197 198 - #: src/components/account-info.jsx:866 198 + #: src/components/account-info.jsx:887 199 199 #: src/components/status.jsx:2265 200 200 #: src/pages/catchup.jsx:71 201 201 #: src/pages/catchup.jsx:1445 ··· 205 205 msgid "Replies" 206 206 msgstr "" 207 207 208 - #: src/components/account-info.jsx:870 208 + #: src/components/account-info.jsx:891 209 209 #: src/pages/catchup.jsx:72 210 210 #: src/pages/catchup.jsx:1447 211 211 #: src/pages/catchup.jsx:2070 ··· 213 213 msgid "Boosts" 214 214 msgstr "" 215 215 216 - #: src/components/account-info.jsx:876 216 + #: src/components/account-info.jsx:897 217 217 msgid "Post stats unavailable." 218 218 msgstr "" 219 219 220 - #: src/components/account-info.jsx:907 220 + #: src/components/account-info.jsx:928 221 221 msgid "View post stats" 222 222 msgstr "" 223 223 224 224 #. placeholder {0}: niceDateTime(lastStatusAt, { hideTime: true, }) 225 - #: src/components/account-info.jsx:1070 225 + #: src/components/account-info.jsx:1091 226 226 msgid "Last post: <0>{0}</0>" 227 227 msgstr "" 228 228 229 - #: src/components/account-info.jsx:1084 229 + #: src/components/account-info.jsx:1105 230 230 msgid "Muted" 231 231 msgstr "" 232 232 233 - #: src/components/account-info.jsx:1089 233 + #: src/components/account-info.jsx:1110 234 234 msgid "Blocked" 235 235 msgstr "" 236 236 237 - #: src/components/account-info.jsx:1098 237 + #: src/components/account-info.jsx:1119 238 238 msgid "Private note" 239 239 msgstr "Private note" 240 240 241 - #: src/components/account-info.jsx:1155 241 + #: src/components/account-info.jsx:1176 242 242 msgid "Mention <0>@{username}</0>" 243 243 msgstr "" 244 244 245 - #: src/components/account-info.jsx:1167 245 + #: src/components/account-info.jsx:1188 246 246 msgid "Translate bio" 247 247 msgstr "" 248 248 249 - #: src/components/account-info.jsx:1178 249 + #: src/components/account-info.jsx:1199 250 250 msgid "Edit private note" 251 251 msgstr "Edit private note" 252 252 253 - #: src/components/account-info.jsx:1178 253 + #: src/components/account-info.jsx:1199 254 254 msgid "Add private note" 255 255 msgstr "Add private note" 256 256 257 - #: src/components/account-info.jsx:1198 257 + #: src/components/account-info.jsx:1219 258 258 msgid "Notifications enabled for @{username}'s posts." 259 259 msgstr "Notifications enabled for @{username}'s posts." 260 260 261 - #: src/components/account-info.jsx:1199 261 + #: src/components/account-info.jsx:1220 262 262 msgid " Notifications disabled for @{username}'s posts." 263 263 msgstr " Notifications disabled for @{username}'s posts." 264 264 265 - #: src/components/account-info.jsx:1211 265 + #: src/components/account-info.jsx:1232 266 266 msgid "Disable notifications" 267 267 msgstr "Disable notifications" 268 268 269 - #: src/components/account-info.jsx:1212 269 + #: src/components/account-info.jsx:1233 270 270 msgid "Enable notifications" 271 271 msgstr "Enable notifications" 272 272 273 - #: src/components/account-info.jsx:1229 273 + #: src/components/account-info.jsx:1250 274 274 msgid "Boosts from @{username} enabled." 275 275 msgstr "Boosts from @{username} enabled." 276 276 277 - #: src/components/account-info.jsx:1230 277 + #: src/components/account-info.jsx:1251 278 278 msgid "Boosts from @{username} disabled." 279 279 msgstr "Boosts from @{username} disabled." 280 280 281 - #: src/components/account-info.jsx:1241 281 + #: src/components/account-info.jsx:1262 282 282 msgid "Disable boosts" 283 283 msgstr "Disable boosts" 284 284 285 - #: src/components/account-info.jsx:1241 285 + #: src/components/account-info.jsx:1262 286 286 msgid "Enable boosts" 287 287 msgstr "Enable boosts" 288 288 289 - #: src/components/account-info.jsx:1257 290 - #: src/components/account-info.jsx:1267 291 - #: src/components/account-info.jsx:1870 289 + #: src/components/account-info.jsx:1278 290 + #: src/components/account-info.jsx:1288 291 + #: src/components/account-info.jsx:1891 292 292 msgid "Add/Remove from Lists" 293 293 msgstr "" 294 294 295 - #: src/components/account-info.jsx:1306 295 + #: src/components/account-info.jsx:1327 296 296 #: src/components/status.jsx:1174 297 297 msgid "Link copied" 298 298 msgstr "" 299 299 300 - #: src/components/account-info.jsx:1309 300 + #: src/components/account-info.jsx:1330 301 301 #: src/components/status.jsx:1177 302 302 msgid "Unable to copy link" 303 303 msgstr "" 304 304 305 - #: src/components/account-info.jsx:1315 305 + #: src/components/account-info.jsx:1336 306 306 #: src/components/shortcuts-settings.jsx:1059 307 307 #: src/components/status.jsx:1183 308 308 #: src/components/status.jsx:3258 309 309 msgid "Copy" 310 310 msgstr "" 311 311 312 - #: src/components/account-info.jsx:1330 312 + #: src/components/account-info.jsx:1351 313 313 #: src/components/shortcuts-settings.jsx:1077 314 314 #: src/components/status.jsx:1199 315 315 msgid "Sharing doesn't seem to work." 316 316 msgstr "" 317 317 318 - #: src/components/account-info.jsx:1336 318 + #: src/components/account-info.jsx:1357 319 319 #: src/components/status.jsx:1205 320 320 msgid "Share…" 321 321 msgstr "" 322 322 323 - #: src/components/account-info.jsx:1356 323 + #: src/components/account-info.jsx:1377 324 324 msgid "Unmuted @{username}" 325 325 msgstr "Unmuted @{username}" 326 326 327 - #: src/components/account-info.jsx:1368 327 + #: src/components/account-info.jsx:1389 328 328 msgid "Unmute <0>@{username}</0>" 329 329 msgstr "" 330 330 331 - #: src/components/account-info.jsx:1384 331 + #: src/components/account-info.jsx:1405 332 332 msgid "Mute <0>@{username}</0>…" 333 333 msgstr "" 334 334 335 335 #. placeholder {0}: typeof MUTE_DURATIONS_LABELS[duration] === 'function' ? MUTE_DURATIONS_LABELS[duration]() : _(MUTE_DURATIONS_LABELS[duration]) 336 - #: src/components/account-info.jsx:1416 336 + #: src/components/account-info.jsx:1437 337 337 msgid "Muted @{username} for {0}" 338 338 msgstr "Muted @{username} for {0}" 339 339 340 - #: src/components/account-info.jsx:1428 340 + #: src/components/account-info.jsx:1449 341 341 msgid "Unable to mute @{username}" 342 342 msgstr "Unable to mute @{username}" 343 343 344 - #: src/components/account-info.jsx:1449 344 + #: src/components/account-info.jsx:1470 345 345 msgid "Remove <0>@{username}</0> from followers?" 346 346 msgstr "" 347 347 348 - #: src/components/account-info.jsx:1469 348 + #: src/components/account-info.jsx:1490 349 349 msgid "@{username} removed from followers" 350 350 msgstr "@{username} removed from followers" 351 351 352 - #: src/components/account-info.jsx:1481 352 + #: src/components/account-info.jsx:1502 353 353 msgid "Remove follower…" 354 354 msgstr "" 355 355 356 - #: src/components/account-info.jsx:1492 356 + #: src/components/account-info.jsx:1513 357 357 msgid "Block <0>@{username}</0>?" 358 358 msgstr "" 359 359 360 - #: src/components/account-info.jsx:1516 360 + #: src/components/account-info.jsx:1537 361 361 msgid "Unblocked @{username}" 362 362 msgstr "Unblocked @{username}" 363 363 364 - #: src/components/account-info.jsx:1524 364 + #: src/components/account-info.jsx:1545 365 365 msgid "Blocked @{username}" 366 366 msgstr "Blocked @{username}" 367 367 368 - #: src/components/account-info.jsx:1532 368 + #: src/components/account-info.jsx:1553 369 369 msgid "Unable to unblock @{username}" 370 370 msgstr "Unable to unblock @{username}" 371 371 372 - #: src/components/account-info.jsx:1534 372 + #: src/components/account-info.jsx:1555 373 373 msgid "Unable to block @{username}" 374 374 msgstr "Unable to block @{username}" 375 375 376 - #: src/components/account-info.jsx:1544 376 + #: src/components/account-info.jsx:1565 377 377 msgid "Unblock <0>@{username}</0>" 378 378 msgstr "" 379 379 380 - #: src/components/account-info.jsx:1553 380 + #: src/components/account-info.jsx:1574 381 381 msgid "Block <0>@{username}</0>…" 382 382 msgstr "" 383 383 384 - #: src/components/account-info.jsx:1570 384 + #: src/components/account-info.jsx:1591 385 385 msgid "Report <0>@{username}</0>…" 386 386 msgstr "" 387 387 388 - #: src/components/account-info.jsx:1590 389 - #: src/components/account-info.jsx:2105 388 + #: src/components/account-info.jsx:1611 389 + #: src/components/account-info.jsx:2126 390 390 msgid "Edit profile" 391 391 msgstr "" 392 392 393 - #: src/components/account-info.jsx:1626 393 + #: src/components/account-info.jsx:1647 394 394 msgid "Withdraw follow request?" 395 395 msgstr "Withdraw follow request?" 396 396 397 397 #. placeholder {1}: info.acct || info.username 398 - #: src/components/account-info.jsx:1627 398 + #: src/components/account-info.jsx:1648 399 399 msgid "Unfollow @{1}?" 400 400 msgstr "Unfollow @{1}?" 401 401 402 - #: src/components/account-info.jsx:1678 402 + #: src/components/account-info.jsx:1699 403 403 msgid "Unfollow…" 404 404 msgstr "" 405 405 406 - #: src/components/account-info.jsx:1687 406 + #: src/components/account-info.jsx:1708 407 407 msgid "Withdraw…" 408 408 msgstr "" 409 409 410 - #: src/components/account-info.jsx:1694 411 - #: src/components/account-info.jsx:1698 410 + #: src/components/account-info.jsx:1715 411 + #: src/components/account-info.jsx:1719 412 412 #: src/pages/hashtag.jsx:262 413 413 msgid "Follow" 414 414 msgstr "" 415 415 416 - #: src/components/account-info.jsx:1810 417 - #: src/components/account-info.jsx:1865 418 - #: src/components/account-info.jsx:1999 419 - #: src/components/account-info.jsx:2100 416 + #: src/components/account-info.jsx:1831 417 + #: src/components/account-info.jsx:1886 418 + #: src/components/account-info.jsx:2020 419 + #: src/components/account-info.jsx:2121 420 420 #: src/components/account-sheet.jsx:38 421 421 #: src/components/compose.jsx:859 422 422 #: src/components/compose.jsx:2580 ··· 448 448 msgid "Close" 449 449 msgstr "" 450 450 451 - #: src/components/account-info.jsx:1815 451 + #: src/components/account-info.jsx:1836 452 452 msgid "Translated Bio" 453 453 msgstr "" 454 454 455 - #: src/components/account-info.jsx:1910 455 + #: src/components/account-info.jsx:1931 456 456 msgid "Unable to remove from list." 457 457 msgstr "Unable to remove from list." 458 458 459 - #: src/components/account-info.jsx:1911 459 + #: src/components/account-info.jsx:1932 460 460 msgid "Unable to add to list." 461 461 msgstr "Unable to add to list." 462 462 463 - #: src/components/account-info.jsx:1930 463 + #: src/components/account-info.jsx:1951 464 464 #: src/pages/lists.jsx:105 465 465 msgid "Unable to load lists." 466 466 msgstr "" 467 467 468 - #: src/components/account-info.jsx:1934 468 + #: src/components/account-info.jsx:1955 469 469 msgid "No lists." 470 470 msgstr "" 471 471 472 - #: src/components/account-info.jsx:1945 472 + #: src/components/account-info.jsx:1966 473 473 #: src/components/list-add-edit.jsx:40 474 474 #: src/pages/lists.jsx:59 475 475 msgid "New list" 476 476 msgstr "" 477 477 478 478 #. placeholder {0}: account?.username || account?.acct 479 - #: src/components/account-info.jsx:2004 479 + #: src/components/account-info.jsx:2025 480 480 msgid "Private note about <0>@{0}</0>" 481 481 msgstr "" 482 482 483 - #: src/components/account-info.jsx:2034 483 + #: src/components/account-info.jsx:2055 484 484 msgid "Unable to update private note." 485 485 msgstr "Unable to update private note." 486 486 487 - #: src/components/account-info.jsx:2057 488 - #: src/components/account-info.jsx:2228 487 + #: src/components/account-info.jsx:2078 488 + #: src/components/account-info.jsx:2249 489 489 msgid "Cancel" 490 490 msgstr "" 491 491 492 - #: src/components/account-info.jsx:2062 492 + #: src/components/account-info.jsx:2083 493 493 msgid "Save & close" 494 494 msgstr "" 495 495 496 - #: src/components/account-info.jsx:2156 496 + #: src/components/account-info.jsx:2177 497 497 msgid "Unable to update profile." 498 498 msgstr "Unable to update profile." 499 499 500 - #: src/components/account-info.jsx:2163 500 + #: src/components/account-info.jsx:2184 501 501 #: src/components/list-add-edit.jsx:105 502 502 msgid "Name" 503 503 msgstr "" 504 504 505 - #: src/components/account-info.jsx:2176 505 + #: src/components/account-info.jsx:2197 506 506 msgid "Bio" 507 507 msgstr "" 508 508 509 - #: src/components/account-info.jsx:2189 509 + #: src/components/account-info.jsx:2210 510 510 msgid "Extra fields" 511 511 msgstr "" 512 512 513 - #: src/components/account-info.jsx:2195 513 + #: src/components/account-info.jsx:2216 514 514 msgid "Label" 515 515 msgstr "" 516 516 517 - #: src/components/account-info.jsx:2198 517 + #: src/components/account-info.jsx:2219 518 518 msgid "Content" 519 519 msgstr "" 520 520 521 - #: src/components/account-info.jsx:2231 521 + #: src/components/account-info.jsx:2252 522 522 #: src/components/list-add-edit.jsx:150 523 523 #: src/components/shortcuts-settings.jsx:715 524 524 #: src/pages/filters.jsx:554 ··· 526 526 msgid "Save" 527 527 msgstr "" 528 528 529 - #: src/components/account-info.jsx:2285 529 + #: src/components/account-info.jsx:2306 530 530 msgid "username" 531 531 msgstr "" 532 532 533 - #: src/components/account-info.jsx:2289 533 + #: src/components/account-info.jsx:2310 534 534 msgid "server domain name" 535 535 msgstr "" 536 536 ··· 915 915 msgstr "" 916 916 917 917 #: src/components/compose.jsx:3629 918 - #: src/components/media-modal.jsx:462 918 + #: src/components/media-modal.jsx:464 919 919 #: src/components/timeline.jsx:893 920 920 msgid "Previous" 921 921 msgstr "" 922 922 923 923 #: src/components/compose.jsx:3647 924 - #: src/components/media-modal.jsx:481 924 + #: src/components/media-modal.jsx:483 925 925 #: src/components/timeline.jsx:910 926 926 msgid "Next" 927 927 msgstr "" ··· 1262 1262 msgid "Describe image…" 1263 1263 msgstr "" 1264 1264 1265 - #: src/components/media-modal.jsx:437 1265 + #: src/components/media-modal.jsx:438 1266 1266 msgid "View post" 1267 1267 msgstr "" 1268 1268