this repo has no description
0
fork

Configure Feed

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

Finally proper pluralize this

In the end, I didn't change the design for this. No point prepping for future redesign.

+168 -123
-6
src/components/account-info.css
··· 394 394 .timeline-start .account-container .stats { 395 395 flex-wrap: wrap; 396 396 } 397 - .account-container .stats > * { 398 - /* text-align: center; */ 399 - flex-shrink: 0; 400 - display: flex; 401 - gap: 0.5em; 402 - } 403 397 .account-container .stats a:not(.insignificant) { 404 398 color: inherit; 405 399 }
+50 -13
src/components/account-info.jsx
··· 1 1 import './account-info.css'; 2 2 3 3 import { msg, plural } from '@lingui/core/macro'; 4 - import { Trans, useLingui } from '@lingui/react/macro'; 4 + import { Plural, Trans, useLingui } from '@lingui/react/macro'; 5 5 import { MenuDivider, MenuItem } from '@szhsin/react-menu'; 6 6 import { 7 7 useCallback, ··· 799 799 </span> 800 800 </span> 801 801 )} 802 - <span title={followersCount}> 803 - {shortenNumber(followersCount)} 804 - </span>{' '} 805 - <Trans>Followers</Trans> 802 + <Plural 803 + value={followersCount} 804 + one={ 805 + <Trans> 806 + <span title={followersCount}> 807 + {shortenNumber(followersCount)} 808 + </span>{' '} 809 + Follower 810 + </Trans> 811 + } 812 + other={ 813 + <Trans> 814 + <span title={followersCount}> 815 + {shortenNumber(followersCount)} 816 + </span>{' '} 817 + Followers 818 + </Trans> 819 + } 820 + /> 806 821 </LinkOrDiv> 807 822 <LinkOrDiv 808 823 class="insignificant" ··· 828 843 }, 0); 829 844 }} 830 845 > 831 - <span title={followingCount}> 832 - {shortenNumber(followingCount)} 833 - </span>{' '} 834 - <Trans id="following.stats">Following</Trans> 846 + <Plural 847 + value={followingCount} 848 + other={ 849 + <Trans> 850 + <span title={followingCount}> 851 + {shortenNumber(followingCount)} 852 + </span>{' '} 853 + Following 854 + </Trans> 855 + } 856 + /> 835 857 <br /> 836 858 </LinkOrDiv> 837 859 <LinkOrDiv ··· 845 867 // } 846 868 // } 847 869 > 848 - <span title={statusesCount}> 849 - {shortenNumber(statusesCount)} 850 - </span>{' '} 851 - <Trans>Posts</Trans> 870 + <Plural 871 + value={statusesCount} 872 + one={ 873 + <Trans> 874 + <span title={statusesCount}> 875 + {shortenNumber(statusesCount)} 876 + </span>{' '} 877 + Post 878 + </Trans> 879 + } 880 + other={ 881 + <Trans> 882 + <span title={statusesCount}> 883 + {shortenNumber(statusesCount)} 884 + </span>{' '} 885 + Posts 886 + </Trans> 887 + } 888 + /> 852 889 </LinkOrDiv> 853 890 {!!createdAt && ( 854 891 <div class="insignificant">
+118 -104
src/locales/en.po
··· 43 43 msgstr "" 44 44 45 45 #: src/components/account-block.jsx:204 46 - #: src/components/account-info.jsx:1870 46 + #: src/components/account-info.jsx:1907 47 47 msgid "Requested" 48 48 msgstr "" 49 49 50 50 #: src/components/account-block.jsx:208 51 - #: src/components/account-info.jsx:1861 51 + #: src/components/account-info.jsx:1898 52 52 msgid "Following" 53 53 msgstr "" 54 54 55 55 #: src/components/account-block.jsx:212 56 - #: src/components/account-info.jsx:1175 56 + #: src/components/account-info.jsx:1212 57 57 msgid "Follows you" 58 58 msgstr "" 59 59 ··· 69 69 #. placeholder {0}: niceDateTime(createdAt, { hideTime: true, }) 70 70 #. placeholder {0}: niceDateTime(createdAt, { hideTime: true, }) 71 71 #: src/components/account-block.jsx:244 72 - #: src/components/account-info.jsx:855 72 + #: src/components/account-info.jsx:892 73 73 msgid "Joined <0>{0}</0>" 74 74 msgstr "" 75 75 ··· 87 87 88 88 #: src/components/account-info.jsx:442 89 89 #: src/components/account-info.jsx:775 90 - #: src/components/account-info.jsx:805 91 90 msgid "Followers" 92 91 msgstr "" 93 92 94 93 #. js-lingui-explicit-id 95 94 #: src/components/account-info.jsx:446 96 - #: src/components/account-info.jsx:815 97 - #: src/components/account-info.jsx:834 95 + #: src/components/account-info.jsx:830 98 96 msgid "following.stats" 99 97 msgstr "Following" 100 98 101 99 #: src/components/account-info.jsx:449 102 - #: src/components/account-info.jsx:851 103 100 #: src/pages/account-statuses.jsx:495 104 101 #: src/pages/search.jsx:345 105 102 #: src/pages/search.jsx:492 ··· 107 104 msgstr "" 108 105 109 106 #: src/components/account-info.jsx:457 110 - #: src/components/account-info.jsx:1231 107 + #: src/components/account-info.jsx:1268 111 108 #: src/components/compose.jsx:2819 112 109 #: src/components/media-alt-modal.jsx:55 113 110 #: src/components/media-modal.jsx:363 ··· 132 129 msgstr "" 133 130 134 131 #: src/components/account-info.jsx:614 135 - #: src/components/account-info.jsx:1459 132 + #: src/components/account-info.jsx:1496 136 133 msgid "Handle copied" 137 134 msgstr "Handle copied" 138 135 139 136 #: src/components/account-info.jsx:617 140 - #: src/components/account-info.jsx:1462 137 + #: src/components/account-info.jsx:1499 141 138 msgid "Unable to copy handle" 142 139 msgstr "Unable to copy handle" 143 140 144 141 #: src/components/account-info.jsx:623 145 - #: src/components/account-info.jsx:1468 142 + #: src/components/account-info.jsx:1505 146 143 msgid "Copy handle" 147 144 msgstr "" 148 145 ··· 159 156 msgstr "" 160 157 161 158 #: src/components/account-info.jsx:681 162 - #: src/components/account-info.jsx:1769 163 - #: src/components/account-info.jsx:2295 159 + #: src/components/account-info.jsx:1806 160 + #: src/components/account-info.jsx:2332 164 161 msgid "Edit profile" 165 162 msgstr "" 166 163 ··· 169 166 msgstr "" 170 167 171 168 #: src/components/account-info.jsx:782 172 - #: src/components/account-info.jsx:825 169 + #: src/components/account-info.jsx:840 173 170 msgid "This user has chosen to not make this information available." 174 171 msgstr "This user has chosen to not make this information available." 175 172 173 + #. placeholder {0}: shortenNumber(followersCount) 174 + #. placeholder {1}: shortenNumber(followersCount) 175 + #: src/components/account-info.jsx:802 176 + msgid "{followersCount, plural, one {<0>{0}</0> Follower} other {<1>{1}</1> Followers}}" 177 + msgstr "{followersCount, plural, one {<0>{0}</0> Follower} other {<1>{1}</1> Followers}}" 178 + 179 + #. placeholder {0}: shortenNumber(followingCount) 180 + #: src/components/account-info.jsx:846 181 + msgid "{followingCount, plural, other {<0>{0}</0> Following}}" 182 + msgstr "{followingCount, plural, other {<0>{0}</0> Following}}" 183 + 184 + #. placeholder {0}: shortenNumber(statusesCount) 185 + #. placeholder {1}: shortenNumber(statusesCount) 186 + #: src/components/account-info.jsx:870 187 + msgid "{statusesCount, plural, one {<0>{0}</0> Post} other {<1>{1}</1> Posts}}" 188 + msgstr "{statusesCount, plural, one {<0>{0}</0> Post} other {<1>{1}</1> Posts}}" 189 + 176 190 #. placeholder {0}: ( postingStats.originals / postingStats.total ).toLocaleString(i18n.locale || undefined, { style: 'percent', }) 177 191 #. placeholder {1}: ( postingStats.replies / postingStats.total ).toLocaleString(i18n.locale || undefined, { style: 'percent', }) 178 192 #. placeholder {2}: ( postingStats.boosts / postingStats.total ).toLocaleString(i18n.locale || undefined, { style: 'percent', }) 179 - #: src/components/account-info.jsx:880 193 + #: src/components/account-info.jsx:917 180 194 msgid "{0} original posts, {1} replies, {2} boosts" 181 195 msgstr "{0} original posts, {1} replies, {2} boosts" 182 196 ··· 187 201 #. placeholder {4}: postingStats.total 188 202 #. placeholder {5}: postingStats.total 189 203 #. placeholder {6}: postingStats.daysSinceLastPost 190 - #: src/components/account-info.jsx:896 204 + #: src/components/account-info.jsx:933 191 205 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 206 msgstr "" 193 207 194 208 #. placeholder {0}: postingStats.total 195 209 #. placeholder {1}: postingStats.total 196 - #: src/components/account-info.jsx:912 210 + #: src/components/account-info.jsx:949 197 211 msgid "{0, plural, one {Last 1 post in the past year(s)} other {Last {1} posts in the past year(s)}}" 198 212 msgstr "" 199 213 200 - #: src/components/account-info.jsx:937 214 + #: src/components/account-info.jsx:974 201 215 #: src/pages/catchup.jsx:70 202 216 msgid "Original" 203 217 msgstr "" 204 218 205 - #: src/components/account-info.jsx:941 219 + #: src/components/account-info.jsx:978 206 220 #: src/components/status.jsx:2553 207 221 #: src/pages/catchup.jsx:71 208 222 #: src/pages/catchup.jsx:1448 ··· 212 226 msgid "Replies" 213 227 msgstr "" 214 228 215 - #: src/components/account-info.jsx:945 229 + #: src/components/account-info.jsx:982 216 230 #: src/pages/catchup.jsx:72 217 231 #: src/pages/catchup.jsx:1450 218 232 #: src/pages/catchup.jsx:2073 ··· 220 234 msgid "Boosts" 221 235 msgstr "" 222 236 223 - #: src/components/account-info.jsx:951 237 + #: src/components/account-info.jsx:988 224 238 msgid "Post stats unavailable." 225 239 msgstr "" 226 240 227 - #: src/components/account-info.jsx:982 241 + #: src/components/account-info.jsx:1019 228 242 msgid "View post stats" 229 243 msgstr "" 230 244 231 245 #. placeholder {0}: niceDateTime(lastStatusAt, { hideTime: true, }) 232 - #: src/components/account-info.jsx:1179 246 + #: src/components/account-info.jsx:1216 233 247 msgid "Last post: <0>{0}</0>" 234 248 msgstr "" 235 249 236 - #: src/components/account-info.jsx:1193 250 + #: src/components/account-info.jsx:1230 237 251 msgid "Muted" 238 252 msgstr "" 239 253 240 - #: src/components/account-info.jsx:1198 254 + #: src/components/account-info.jsx:1235 241 255 msgid "Blocked" 242 256 msgstr "" 243 257 244 - #: src/components/account-info.jsx:1207 258 + #: src/components/account-info.jsx:1244 245 259 msgid "Private note" 246 260 msgstr "Private note" 247 261 248 - #: src/components/account-info.jsx:1264 262 + #: src/components/account-info.jsx:1301 249 263 msgid "Mention <0>@{username}</0>" 250 264 msgstr "" 251 265 252 - #: src/components/account-info.jsx:1276 266 + #: src/components/account-info.jsx:1313 253 267 msgid "Translate bio" 254 268 msgstr "" 255 269 256 - #: src/components/account-info.jsx:1287 270 + #: src/components/account-info.jsx:1324 257 271 msgid "Edit private note" 258 272 msgstr "Edit private note" 259 273 260 - #: src/components/account-info.jsx:1287 274 + #: src/components/account-info.jsx:1324 261 275 msgid "Add private note" 262 276 msgstr "Add private note" 263 277 264 - #: src/components/account-info.jsx:1307 278 + #: src/components/account-info.jsx:1344 265 279 msgid "Notifications enabled for @{username}'s posts." 266 280 msgstr "Notifications enabled for @{username}'s posts." 267 281 268 - #: src/components/account-info.jsx:1308 282 + #: src/components/account-info.jsx:1345 269 283 msgid " Notifications disabled for @{username}'s posts." 270 284 msgstr " Notifications disabled for @{username}'s posts." 271 285 272 - #: src/components/account-info.jsx:1320 286 + #: src/components/account-info.jsx:1357 273 287 msgid "Disable notifications" 274 288 msgstr "Disable notifications" 275 289 276 - #: src/components/account-info.jsx:1321 290 + #: src/components/account-info.jsx:1358 277 291 msgid "Enable notifications" 278 292 msgstr "Enable notifications" 279 293 280 - #: src/components/account-info.jsx:1338 294 + #: src/components/account-info.jsx:1375 281 295 msgid "Boosts from @{username} enabled." 282 296 msgstr "Boosts from @{username} enabled." 283 297 284 - #: src/components/account-info.jsx:1339 298 + #: src/components/account-info.jsx:1376 285 299 msgid "Boosts from @{username} disabled." 286 300 msgstr "Boosts from @{username} disabled." 287 301 288 - #: src/components/account-info.jsx:1350 302 + #: src/components/account-info.jsx:1387 289 303 msgid "Disable boosts" 290 304 msgstr "Disable boosts" 291 305 292 - #: src/components/account-info.jsx:1350 306 + #: src/components/account-info.jsx:1387 293 307 msgid "Enable boosts" 294 308 msgstr "Enable boosts" 295 309 296 - #: src/components/account-info.jsx:1369 310 + #: src/components/account-info.jsx:1406 297 311 msgid "@{username} is no longer featured on your profile." 298 312 msgstr "@{username} is no longer featured on your profile." 299 313 300 - #: src/components/account-info.jsx:1379 314 + #: src/components/account-info.jsx:1416 301 315 msgid "@{username} is now featured on your profile." 302 316 msgstr "@{username} is now featured on your profile." 303 317 304 - #: src/components/account-info.jsx:1387 318 + #: src/components/account-info.jsx:1424 305 319 msgid "Unable to unfeature @{username} on your profile." 306 320 msgstr "Unable to unfeature @{username} on your profile." 307 321 308 - #: src/components/account-info.jsx:1391 322 + #: src/components/account-info.jsx:1428 309 323 msgid "Unable to feature @{username} on your profile." 310 324 msgstr "Unable to feature @{username} on your profile." 311 325 312 - #: src/components/account-info.jsx:1400 326 + #: src/components/account-info.jsx:1437 313 327 msgid "Don't feature on profile" 314 328 msgstr "Don't feature on profile" 315 329 316 - #: src/components/account-info.jsx:1401 330 + #: src/components/account-info.jsx:1438 317 331 #: src/pages/hashtag.jsx:333 318 332 msgid "Feature on profile" 319 333 msgstr "" 320 334 321 - #: src/components/account-info.jsx:1410 335 + #: src/components/account-info.jsx:1447 322 336 msgid "Show featured profiles" 323 337 msgstr "Show featured profiles" 324 338 325 - #: src/components/account-info.jsx:1425 326 - #: src/components/account-info.jsx:1435 327 - #: src/components/account-info.jsx:2041 339 + #: src/components/account-info.jsx:1462 340 + #: src/components/account-info.jsx:1472 341 + #: src/components/account-info.jsx:2078 328 342 msgid "Add/Remove from Lists" 329 343 msgstr "" 330 344 331 - #: src/components/account-info.jsx:1485 345 + #: src/components/account-info.jsx:1522 332 346 #: src/components/status.jsx:1420 333 347 msgid "Link copied" 334 348 msgstr "" 335 349 336 - #: src/components/account-info.jsx:1488 350 + #: src/components/account-info.jsx:1525 337 351 #: src/components/status.jsx:1423 338 352 msgid "Unable to copy link" 339 353 msgstr "" 340 354 341 - #: src/components/account-info.jsx:1494 355 + #: src/components/account-info.jsx:1531 342 356 #: src/components/shortcuts-settings.jsx:1059 343 357 #: src/components/status.jsx:1429 344 358 #: src/components/status.jsx:3547 345 359 msgid "Copy" 346 360 msgstr "" 347 361 348 - #: src/components/account-info.jsx:1509 362 + #: src/components/account-info.jsx:1546 349 363 #: src/components/shortcuts-settings.jsx:1077 350 364 #: src/components/status.jsx:1445 351 365 msgid "Sharing doesn't seem to work." 352 366 msgstr "" 353 367 354 - #: src/components/account-info.jsx:1515 368 + #: src/components/account-info.jsx:1552 355 369 #: src/components/status.jsx:1451 356 370 msgid "Share…" 357 371 msgstr "" 358 372 359 - #: src/components/account-info.jsx:1535 373 + #: src/components/account-info.jsx:1572 360 374 msgid "Unmuted @{username}" 361 375 msgstr "Unmuted @{username}" 362 376 363 - #: src/components/account-info.jsx:1547 377 + #: src/components/account-info.jsx:1584 364 378 msgid "Unmute <0>@{username}</0>" 365 379 msgstr "" 366 380 367 - #: src/components/account-info.jsx:1563 381 + #: src/components/account-info.jsx:1600 368 382 msgid "Mute <0>@{username}</0>…" 369 383 msgstr "" 370 384 371 385 #. placeholder {0}: typeof MUTE_DURATIONS_LABELS[duration] === 'function' ? MUTE_DURATIONS_LABELS[duration]() : _(MUTE_DURATIONS_LABELS[duration]) 372 - #: src/components/account-info.jsx:1595 386 + #: src/components/account-info.jsx:1632 373 387 msgid "Muted @{username} for {0}" 374 388 msgstr "Muted @{username} for {0}" 375 389 376 - #: src/components/account-info.jsx:1607 390 + #: src/components/account-info.jsx:1644 377 391 msgid "Unable to mute @{username}" 378 392 msgstr "Unable to mute @{username}" 379 393 380 - #: src/components/account-info.jsx:1628 394 + #: src/components/account-info.jsx:1665 381 395 msgid "Remove <0>@{username}</0> from followers?" 382 396 msgstr "" 383 397 384 - #: src/components/account-info.jsx:1648 398 + #: src/components/account-info.jsx:1685 385 399 msgid "@{username} removed from followers" 386 400 msgstr "@{username} removed from followers" 387 401 388 - #: src/components/account-info.jsx:1660 402 + #: src/components/account-info.jsx:1697 389 403 msgid "Remove follower…" 390 404 msgstr "" 391 405 392 - #: src/components/account-info.jsx:1671 406 + #: src/components/account-info.jsx:1708 393 407 msgid "Block <0>@{username}</0>?" 394 408 msgstr "" 395 409 396 - #: src/components/account-info.jsx:1695 410 + #: src/components/account-info.jsx:1732 397 411 msgid "Unblocked @{username}" 398 412 msgstr "Unblocked @{username}" 399 413 400 - #: src/components/account-info.jsx:1703 414 + #: src/components/account-info.jsx:1740 401 415 msgid "Blocked @{username}" 402 416 msgstr "Blocked @{username}" 403 417 404 - #: src/components/account-info.jsx:1711 418 + #: src/components/account-info.jsx:1748 405 419 msgid "Unable to unblock @{username}" 406 420 msgstr "Unable to unblock @{username}" 407 421 408 - #: src/components/account-info.jsx:1713 422 + #: src/components/account-info.jsx:1750 409 423 msgid "Unable to block @{username}" 410 424 msgstr "Unable to block @{username}" 411 425 412 - #: src/components/account-info.jsx:1723 426 + #: src/components/account-info.jsx:1760 413 427 msgid "Unblock <0>@{username}</0>" 414 428 msgstr "" 415 429 416 - #: src/components/account-info.jsx:1732 430 + #: src/components/account-info.jsx:1769 417 431 msgid "Block <0>@{username}</0>…" 418 432 msgstr "" 419 433 420 - #: src/components/account-info.jsx:1749 434 + #: src/components/account-info.jsx:1786 421 435 msgid "Report <0>@{username}</0>…" 422 436 msgstr "" 423 437 424 - #: src/components/account-info.jsx:1805 438 + #: src/components/account-info.jsx:1842 425 439 msgid "Withdraw follow request?" 426 440 msgstr "Withdraw follow request?" 427 441 428 442 #. placeholder {0}: info.acct || info.username 429 - #: src/components/account-info.jsx:1806 443 + #: src/components/account-info.jsx:1843 430 444 msgid "Unfollow @{0}?" 431 445 msgstr "Unfollow @{0}?" 432 446 433 - #: src/components/account-info.jsx:1864 447 + #: src/components/account-info.jsx:1901 434 448 msgid "Unfollow…" 435 449 msgstr "" 436 450 437 - #: src/components/account-info.jsx:1873 451 + #: src/components/account-info.jsx:1910 438 452 msgid "Withdraw…" 439 453 msgstr "" 440 454 441 - #: src/components/account-info.jsx:1880 442 - #: src/components/account-info.jsx:1884 455 + #: src/components/account-info.jsx:1917 456 + #: src/components/account-info.jsx:1921 443 457 #: src/pages/hashtag.jsx:265 444 458 msgid "Follow" 445 459 msgstr "" 446 460 447 - #: src/components/account-info.jsx:1981 448 - #: src/components/account-info.jsx:2036 449 - #: src/components/account-info.jsx:2170 450 - #: src/components/account-info.jsx:2290 461 + #: src/components/account-info.jsx:2018 462 + #: src/components/account-info.jsx:2073 463 + #: src/components/account-info.jsx:2207 464 + #: src/components/account-info.jsx:2327 451 465 #: src/components/account-sheet.jsx:38 452 466 #: src/components/compose.jsx:892 453 467 #: src/components/compose.jsx:2775 ··· 480 494 msgid "Close" 481 495 msgstr "" 482 496 483 - #: src/components/account-info.jsx:1986 497 + #: src/components/account-info.jsx:2023 484 498 msgid "Translated Bio" 485 499 msgstr "" 486 500 487 - #: src/components/account-info.jsx:2081 501 + #: src/components/account-info.jsx:2118 488 502 msgid "Unable to remove from list." 489 503 msgstr "Unable to remove from list." 490 504 491 - #: src/components/account-info.jsx:2082 505 + #: src/components/account-info.jsx:2119 492 506 msgid "Unable to add to list." 493 507 msgstr "Unable to add to list." 494 508 495 - #: src/components/account-info.jsx:2101 509 + #: src/components/account-info.jsx:2138 496 510 #: src/pages/lists.jsx:131 497 511 msgid "Unable to load lists." 498 512 msgstr "" 499 513 500 - #: src/components/account-info.jsx:2105 514 + #: src/components/account-info.jsx:2142 501 515 msgid "No lists." 502 516 msgstr "" 503 517 504 - #: src/components/account-info.jsx:2116 518 + #: src/components/account-info.jsx:2153 505 519 #: src/components/list-add-edit.jsx:41 506 520 #: src/pages/lists.jsx:62 507 521 msgid "New list" 508 522 msgstr "" 509 523 510 524 #. placeholder {0}: account?.username || account?.acct 511 - #: src/components/account-info.jsx:2175 525 + #: src/components/account-info.jsx:2212 512 526 msgid "Private note about <0>@{0}</0>" 513 527 msgstr "" 514 528 515 - #: src/components/account-info.jsx:2205 529 + #: src/components/account-info.jsx:2242 516 530 msgid "Unable to update private note." 517 531 msgstr "Unable to update private note." 518 532 519 - #: src/components/account-info.jsx:2228 520 - #: src/components/account-info.jsx:2526 533 + #: src/components/account-info.jsx:2265 534 + #: src/components/account-info.jsx:2563 521 535 msgid "Cancel" 522 536 msgstr "" 523 537 524 - #: src/components/account-info.jsx:2233 538 + #: src/components/account-info.jsx:2270 525 539 msgid "Save & close" 526 540 msgstr "" 527 541 528 - #: src/components/account-info.jsx:2350 542 + #: src/components/account-info.jsx:2387 529 543 msgid "Unable to update profile." 530 544 msgstr "Unable to update profile." 531 545 532 - #: src/components/account-info.jsx:2357 546 + #: src/components/account-info.jsx:2394 533 547 msgid "Header picture" 534 548 msgstr "Header picture" 535 549 536 - #: src/components/account-info.jsx:2409 550 + #: src/components/account-info.jsx:2446 537 551 msgid "Profile picture" 538 552 msgstr "Profile picture" 539 553 540 - #: src/components/account-info.jsx:2461 554 + #: src/components/account-info.jsx:2498 541 555 #: src/components/list-add-edit.jsx:106 542 556 msgid "Name" 543 557 msgstr "" 544 558 545 - #: src/components/account-info.jsx:2474 559 + #: src/components/account-info.jsx:2511 546 560 msgid "Bio" 547 561 msgstr "" 548 562 549 - #: src/components/account-info.jsx:2487 563 + #: src/components/account-info.jsx:2524 550 564 msgid "Extra fields" 551 565 msgstr "" 552 566 553 - #: src/components/account-info.jsx:2493 567 + #: src/components/account-info.jsx:2530 554 568 msgid "Label" 555 569 msgstr "" 556 570 557 - #: src/components/account-info.jsx:2496 571 + #: src/components/account-info.jsx:2533 558 572 msgid "Content" 559 573 msgstr "" 560 574 561 - #: src/components/account-info.jsx:2529 575 + #: src/components/account-info.jsx:2566 562 576 #: src/components/list-add-edit.jsx:152 563 577 #: src/components/shortcuts-settings.jsx:715 564 578 #: src/pages/filters.jsx:570 ··· 566 580 msgid "Save" 567 581 msgstr "" 568 582 569 - #: src/components/account-info.jsx:2583 583 + #: src/components/account-info.jsx:2620 570 584 msgid "username" 571 585 msgstr "" 572 586 573 - #: src/components/account-info.jsx:2587 587 + #: src/components/account-info.jsx:2624 574 588 msgid "server domain name" 575 589 msgstr "" 576 590 577 591 #. placeholder {0}: info.username 578 - #: src/components/account-info.jsx:2653 592 + #: src/components/account-info.jsx:2690 579 593 msgid "Profiles featured by @{0}" 580 594 msgstr "Profiles featured by @{0}" 581 595 582 - #: src/components/account-info.jsx:2679 596 + #: src/components/account-info.jsx:2716 583 597 msgid "No featured profiles." 584 598 msgstr "No featured profiles." 585 599