fix(web-ui): lowercase the omadia brand name in user-facing text#359
Merged
Conversation
The brand is always written 'omadia' (lowercase). Several UI surfaces still rendered 'Omadia': page <title> metadata, the sidebar and login wordmarks, the store/builder footers, and the de/en i18n strings. Lowercase them all (plus the README/Dockerfile/comment prose). camelCase code identifiers (actorOmadiaUserId, involvedOmadiaUserIds, OmadiaBridge) are deliberately left untouched. The desktop app already uses lowercase 'omadia' everywhere user-facing (only the OmadiaBridge type name remains, which is code).
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What
The brand name is always written omadia (all lowercase). Several
user-facing surfaces in the web-ui still rendered the capitalized
"Omadia". This PR lowercases every one of them.
Changed (web-ui, 16 files)
<title>metadata — admin, system, routines (+ run detail), agents, channels, store, builder (+ workspace).layout.tsx) and the login header (login/page.tsx).messages/de.json+messages/en.json(logo aria-label, meta title/description, login title, setup welcome).README.md,Dockerfileheader comment, one source comment.Deliberately NOT changed
camelCase code identifiers are part of the API/data contract and must
stay as-is:
actorOmadiaUserId,involvedOmadiaUserIds, and theOmadiaBridgeTypeScript type in the desktop app.Desktop app
Already lowercase everywhere user-facing (
productName: omadia, tray,window titles, onboarding wizard HTML, updater dialogs). The only
capitalized occurrence is the
OmadiaBridgetype name — code, leftuntouched. So no functional desktop changes were needed.
Verification
tsc --noEmitclean (node 22.22.3).de.json/en.jsonparse as valid JSON.