mirror of
https://github.com/immich-app/immich
synced 2025-10-17 18:19:27 +00:00
chore(web): standardize settings labels (#10303)
* chore(web): standardize settings labels - spelling out "max" and "min" in full - accordions use title case - labels for settings all use sentence case - remove the "Enable"/"Enabled"/"ENABLED" titles for toggles, in favor of just using the description - change any gray labels to be immich blue, to match the look and feel of the other settings * chore: update user settings toggle, remove unused "enable" strings
This commit is contained in:
parent
e1731fe316
commit
211451d234
19 changed files with 105 additions and 118 deletions
|
|
@ -26,12 +26,7 @@
|
|||
<div class="flex flex-col gap-4">
|
||||
<SettingAccordion key="map" title={$t('admin.map_settings')} subtitle={$t('admin.map_settings_description')}>
|
||||
<div class="ml-4 mt-4 flex flex-col gap-4">
|
||||
<SettingSwitch
|
||||
title={$t('enabled').toUpperCase()}
|
||||
{disabled}
|
||||
subtitle={$t('admin.map_enable_description')}
|
||||
bind:checked={config.map.enabled}
|
||||
/>
|
||||
<SettingSwitch title={$t('admin.map_enable_description')} {disabled} bind:checked={config.map.enabled} />
|
||||
|
||||
<hr />
|
||||
|
||||
|
|
@ -67,9 +62,8 @@
|
|||
</svelte:fragment>
|
||||
<div class="ml-4 mt-4 flex flex-col gap-4">
|
||||
<SettingSwitch
|
||||
title={$t('enabled').toUpperCase()}
|
||||
title={$t('admin.map_reverse_geocoding_enable_description')}
|
||||
{disabled}
|
||||
subtitle={$t('admin.map_reverse_geocoding_enable_description')}
|
||||
bind:checked={config.reverseGeocoding.enabled}
|
||||
/>
|
||||
</div></SettingAccordion
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue