style(settings): rename "plebbit options" to "p2p options", and "plebbit account" to "bitsocial account"

This commit is contained in:
plebeius
2025-12-31 15:40:16 +01:00
parent fcd8838045
commit 7486202d3c
36 changed files with 142 additions and 142 deletions
@@ -147,7 +147,7 @@ const SettingsModal = () => {
<div id='account-settings' className={`${styles.setting} ${styles.category}`}>
<label onClick={() => handleCategoryClick('account-settings', showAccountSettings, setShowAccountSettings)}>
<span className={showAccountSettings ? styles.hideButton : styles.showButton} />
{t('plebbit_account')}
{t('bitsocial_account')}
</label>
</div>
{showAccountSettings && <AccountSettings />}
@@ -189,7 +189,7 @@ const SettingsModal = () => {
<div id='pkc-options-settings' className={`${styles.setting} ${styles.category}`}>
<label onClick={() => handleCategoryClick('pkc-options-settings', showPlebbitOptionsSettings, setShowPlebbitOptionsSettings)}>
<span className={showPlebbitOptionsSettings ? styles.hideButton : styles.showButton} />
{t('plebbit_options')}
{t('p2p_options')}
</label>
</div>
{showPlebbitOptionsSettings && <PlebbitOptions />}