Problem
The Automations catalog section for the OneDrive folder is titled “Onedrive” instead of the correct product casing “OneDrive”.
Current behaviour
- Builtin automations live under
builtin-configs/automations/onedrive/… with folder slug onedrive.
- Section titles go through
folderLabel() in app/components/catalog/catalog-section.tsx, which looks up folders.<slug> and otherwise capitalizes the first letter only → Onedrive.
- Automations i18n (
services/platform/messages/en.json → automations.folders) currently has general, email, github — no onedrive key (unlike github → GitHub). Same gap likely in de.json / fr.json.
- Other product surfaces already use correct
OneDrive strings (documents sync copy, etc.); only this folder-label fallback is wrong.
Proposed change
- Add
automations.folders.onedrive: "OneDrive" (and locale equivalents) so folderLabel resolves the brand casing.
- Optionally harden
folderLabel / a small brand map for known product folders if more slugs will need non-simple capitalization — only if the sweep finds more offenders.
Acceptance criteria
Affected service
Platform (web app)
Problem
The Automations catalog section for the OneDrive folder is titled “Onedrive” instead of the correct product casing “OneDrive”.
Current behaviour
builtin-configs/automations/onedrive/…with folder slugonedrive.folderLabel()inapp/components/catalog/catalog-section.tsx, which looks upfolders.<slug>and otherwise capitalizes the first letter only →Onedrive.services/platform/messages/en.json→automations.folders) currently hasgeneral,email,github— noonedrivekey (unlikegithub→GitHub). Same gap likely inde.json/fr.json.OneDrivestrings (documents sync copy, etc.); only this folder-label fallback is wrong.Proposed change
automations.folders.onedrive: "OneDrive"(and locale equivalents) sofolderLabelresolves the brand casing.folderLabel/ a small brand map for known product folders if more slugs will need non-simple capitalization — only if the sweep finds more offenders.Acceptance criteria
folderLabelshow the same casing.folders.onedrive).Affected service
Platform (web app)