diff --git a/www/src/Locales/en/ProfileSettings.jsx b/www/src/Locales/en/ProfileSettings.jsx index 074bc28ce..803f7c5ab 100644 --- a/www/src/Locales/en/ProfileSettings.jsx +++ b/www/src/Locales/en/ProfileSettings.jsx @@ -1,5 +1,8 @@ export default { "header-text": "Profiles", - "profile-pins-desc": "Profiles allow for three additional (limited) button mappings to be configured and loaded via hotkey. This page allows for the configuration of the eight primary action buttons for profiles 2 through 4 (the first profile is the core configuration). The following sample layout is provided as a cheat sheet, it shows the pins for the eight action buttons as inferred from the first profile.", - "profile": "Profile", + "profile-pins-desc": "This page allows three additional button mappings to be configured as profiles 2 through 4, which can be loaded via hotkey. (The first profile is the core configuration from the Pin Mapping page.) A physical layout of the pins:", + "profile-1": "Profile 1", + "profile-2": "Profile 2", + "profile-3": "Profile 3", + "profile-4": "Profile 4", } diff --git a/www/src/Pages/ProfileSettings.jsx b/www/src/Pages/ProfileSettings.jsx index fe59b2cbc..231d4516b 100644 --- a/www/src/Pages/ProfileSettings.jsx +++ b/www/src/Pages/ProfileSettings.jsx @@ -170,9 +170,10 @@ export default function ProfileOptionsPage() { {BUTTONS[buttonLabelType].label} - {t('ProfileSettings:profile')} 2 - {t('ProfileSettings:profile')} 3 - {t('ProfileSettings:profile')} 4 + {t('ProfileSettings:profile-1')} + {t('ProfileSettings:profile-2')} + {t('ProfileSettings:profile-3')} + {t('ProfileSettings:profile-4')} @@ -180,6 +181,7 @@ export default function ProfileOptionsPage() { {Object.keys(profileOptions['alternativePinMappings'][0]).map((key) => ( {BUTTONS[buttonLabelType][key]} + {buttonMappings[key].pin} {pinCell(0, key)} {pinCell(1, key)} {pinCell(2, key)}