Skip to content

Commit

Permalink
refactor: rename to localDatastoreDescription
Browse files Browse the repository at this point in the history
reducing confusion + forcing fresh translation without historical ones
  • Loading branch information
lidel committed Nov 14, 2024
1 parent c43c135 commit 1f0ffbf
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions public/locales/en/files.json
Original file line number Diff line number Diff line change
Expand Up @@ -114,8 +114,8 @@
"clickToDismiss": "Click to dismiss",
"clickToCancel": "Click to cancel",
"blocks": "Blocks",
"allBlocks": "All blocks",
"allBlocksDescription": "Total size of blocks on your entire IPFS node; this includes everything in Files view (MFS), plus any additional low-level pins and any temporary cached blocks that were not garbage-collected yet.",
"localDatastore": "Local Datastore",
"localDatastoreDescription": "Total size of all blocks currently stored on your IPFS node; this includes everything in the Files view (MFS), plus any additional low-level pins and any temporary cached blocks that were not garbage-collected yet.",
"filesDescription": "Total size of data in the current directory (if a subdirectory, the size of all data in Files view (MFS) is also displayed). If you have a big directory that is only partially fetched, a total size listed here could be bigger than your local repository.",
"pinningQueue": "Pinning queue",
"more": "More",
Expand Down
2 changes: 1 addition & 1 deletion src/files/header/Header.js
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ class Header extends React.Component {
: size(filesSize) }
</BarOption>

<BarOption title={t('allBlocksDescription')} text={t('allBlocks')}>
<BarOption title={t('localDatastoreDescription')} text={t('localDatastore')}>
{ size(repoSize) }
</BarOption>

Expand Down

0 comments on commit 1f0ffbf

Please sign in to comment.