Add title labels to customization

This commit is contained in:
bl00dymarie
2024-02-26 18:23:04 +01:00
parent 9ec52b78cf
commit 46a02560e8
2 changed files with 6 additions and 2 deletions
+2 -2
View File
@@ -197,8 +197,8 @@ const Settings = () => {
} }
return ( return (
<AppPage title={'Customization'}> <AppPage title={labels.customization.title}>
<Segment title={'Tracking categories'}> <Segment title={labels.customization.trackingCategories}>
<AppSwitch <AppSwitch
onToggle={temperatureTrackingCategoryToggle} onToggle={temperatureTrackingCategoryToggle}
text={t(SYMPTOMS[1])} text={t(SYMPTOMS[1])}
+4
View File
@@ -1,6 +1,10 @@
import links from './links' import links from './links'
export default { export default {
customization: {
title: 'Customization',
trackingCategories: 'Tracking categories',
},
export: { export: {
errors: { errors: {
noData: 'There is no data to export', noData: 'There is no data to export',