this repo has no description
0
fork

Configure Feed

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

Update copy: s/status/post

+16 -16
+1 -1
src/app.jsx
··· 295 295 if (newStatus) { 296 296 states.reloadStatusPage++; 297 297 showToast({ 298 - text: 'Status posted. Check it out.', 298 + text: 'Post published. Check it out.', 299 299 delay: 1000, 300 300 duration: 10_000, // 10 seconds 301 301 onClick: (toast) => {
+1 -1
src/components/account-info.jsx
··· 521 521 <span class="tag">Following you</span> 522 522 ) : !!lastStatusAt ? ( 523 523 <small class="insignificant"> 524 - Last status:{' '} 524 + Last post:{' '} 525 525 {niceDateTime(lastStatusAt, { 526 526 hideTime: true, 527 527 })}
+3 -3
src/components/compose.jsx
··· 642 642 <div class="status-preview-legend reply-to"> 643 643 Replying to @ 644 644 {replyToStatus.account.acct || replyToStatus.account.username} 645 - &rsquo;s status 645 + &rsquo;s post 646 646 </div> 647 647 </div> 648 648 )} 649 649 {!!editStatus && ( 650 650 <div class="status-preview"> 651 651 <Status status={editStatus} size="s" previewMode /> 652 - <div class="status-preview-legend">Editing source status</div> 652 + <div class="status-preview-legend">Editing source post</div> 653 653 </div> 654 654 )} 655 655 <form ··· 904 904 replyToStatus 905 905 ? 'Post your reply' 906 906 : editStatus 907 - ? 'Edit your status' 907 + ? 'Edit your post' 908 908 : 'What are you doing?' 909 909 } 910 910 required={mediaAttachments?.length === 0}
+1 -1
src/components/status.jsx
··· 280 280 281 281 const statusRef = useRef(null); 282 282 283 - const unauthInteractionErrorMessage = `Sorry, your current logged-in instance can't interact with this status from another instance.`; 283 + const unauthInteractionErrorMessage = `Sorry, your current logged-in instance can't interact with this post from another instance.`; 284 284 285 285 const textWeight = () => 286 286 Math.max(
+1 -1
src/pages/account-statuses.jsx
··· 248 248 id="account-statuses" 249 249 instance={instance} 250 250 emptyText="Nothing to see here yet." 251 - errorText="Unable to load statuses" 251 + errorText="Unable to load posts" 252 252 fetchItems={fetchAccountStatuses} 253 253 useItemID 254 254 boostsCarousel={snapStates.settings.boostsCarousel}
+6 -6
src/pages/notifications.jsx
··· 35 35 */ 36 36 37 37 const contentText = { 38 - mention: 'mentioned you in their status.', 39 - status: 'posted a status.', 40 - reblog: 'boosted your status.', 38 + mention: 'mentioned you in their post.', 39 + status: 'published a post.', 40 + reblog: 'boosted your post.', 41 41 follow: 'followed you.', 42 42 follow_request: 'requested to follow you.', 43 - favourite: 'favourited your status.', 43 + favourite: 'favourited your post.', 44 44 poll: 'A poll you have voted in or created has ended.', 45 45 'poll-self': 'A poll you have created has ended.', 46 46 'poll-voted': 'A poll you have voted in has ended.', 47 - update: 'A status you interacted with has been edited.', 48 - 'favourite+reblog': 'boosted & favourited your status.', 47 + update: 'A post you interacted with has been edited.', 48 + 'favourite+reblog': 'boosted & favourited your post.', 49 49 }; 50 50 51 51 const NOTIFICATION_ICONS = {
+3 -3
src/pages/status.jsx
··· 95 95 setHeroStatus(status); 96 96 } catch (err) { 97 97 console.error(err); 98 - alert('Unable to load status.'); 98 + alert('Unable to load post.'); 99 99 location.hash = closeLink; 100 100 } 101 101 })(); ··· 650 650 </> 651 651 ) : ( 652 652 <> 653 - Status{' '} 653 + Post{' '} 654 654 <button 655 655 type="button" 656 656 class="ancestors-indicator light small" ··· 959 959 )} 960 960 {uiState === 'error' && ( 961 961 <p class="ui-state"> 962 - Unable to load status 962 + Unable to load post 963 963 <br /> 964 964 <br /> 965 965 <button