- {`Content Hosting using ${formatBytes(contentSpaceUsed * BYTES_PER_MB)} of ${ + {`History Hosting using ${formatBytes(contentSpaceUsed * BYTES_PER_MB)} of ${ daemonSettings[DAEMON_SETTINGS.BLOB_STORAGE_LIMIT_MB] ? formatBytes(daemonSettings[DAEMON_SETTINGS.BLOB_STORAGE_LIMIT_MB] * BYTES_PER_MB) : 'Unlimited' @@ -256,7 +259,7 @@ export default function SettingSystem(props: Props) { name="limit_space_used" onChange={() => handleLimitSpace(!limitSpace)} checked={limitSpace} - label={__('Limit Hosting for Content you Use')} + label={__('Limit Hosting of Content History')} />
- {`Network Hosting using ${formatBytes(networkSpaceUsed * BYTES_PER_MB)} of ${formatBytes( + {`Automatic Hosting using ${formatBytes(networkSpaceUsed * BYTES_PER_MB)} of ${formatBytes( daemonSettings[DAEMON_SETTINGS.NETWORK_STORAGE_LIMIT_MB] * BYTES_PER_MB )}`}
@@ -293,7 +296,7 @@ export default function SettingSystem(props: Props) {