fix(cloud-frontend): rename landing button to Dashboard#7885
Open
0xSolace wants to merge 1 commit into
Open
Conversation
Shaw flagged that the front-page button labeled "Developer Dashboard" should just read "Dashboard". Renames the i18n key cloud.landing.developerDashboard -> cloud.landing.dashboard and updates the value across all 8 locales (en, es, ja, ko, pt, tl, vi, zh-CN). Also updates the lone consumer (landing-header.tsx) to read the new key and renames the local variable for clarity. Co-authored-by: wakesync <shadow@shad0w.xyz>
Contributor
|
Important Review skippedAuto reviews are disabled on this repository. Please check the settings in the CodeRabbit UI or the ⚙️ Run configurationConfiguration used: Organization UI Review profile: CHILL Plan: Pro Run ID: You can disable this status message by setting the Use the checkbox below for a quick retry:
✨ Finishing Touches🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
standujar
approved these changes
May 21, 2026
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.
Shaw flagged that the front-page button labeled "Developer Dashboard" on https://elizacloud.ai should just read "Dashboard".
Changes
cloud.landing.developerDashboard→cloud.landing.dashboardacross all 8 locales (en, es, ja, ko, pt, tl, vi, zh-CN) and shortens values to the local equivalent of "Dashboard".packages/cloud-frontend/src/components/layout/landing-header.tsx) to read the new key and renames the local variable fromdevDashboardLabel→dashboardLabel.Verification
grep developerDashboard packages/returns no matches under cloud-frontend or ui locales after the change.json.load./dashboardfor auth,/login?intent=dashboardfor unauth), just a copy fix.Requested by @shawmakesmagic in #milady.
Greptile Summary
This PR is a straightforward copy fix that renames the landing page button label from "Developer Dashboard" to "Dashboard" across all 8 supported locales and updates the single component that consumes the i18n key.
cloud.landing.developerDashboard→cloud.landing.dashboardin all locale files (en, es, ja, ko, pt, tl, vi, zh-CN) and shortens translated values accordingly.landing-header.tsxto use the new key and renames the local variable fromdevDashboardLabel→dashboardLabel; both render sites (authenticated<Link>and unauthenticated<button>) are correctly updated.Confidence Score: 5/5
Safe to merge — purely a copy/label change with no behavioral impact.
The change touches only i18n string values and a single variable name in one component. The button's target routes, authentication logic, and all surrounding UI are untouched. The old key has been removed from every locale file and the sole consumer has been updated, so there is no risk of a missing-key fallback rendering at runtime.
No files require special attention.
Important Files Changed
devDashboardLabel→dashboardLabeland switches i18n key fromcloud.landing.developerDashboardtocloud.landing.dashboard; both button render sites updated correctly.cloud.landing.developerDashboardreplaced withcloud.landing.dashboard: "Dashboard"— clean rename.Flowchart
%%{init: {'theme': 'neutral'}}%% flowchart TD A[LandingHeader renders] --> B{User authenticated?} B -- Yes --> C["Link to /dashboard\ndashboardLabel"] B -- No --> D["button onClick openDashboard\ndashboardLabel"] D --> E["navigate /login?intent=dashboard"] G["t(cloud.landing.dashboard)"] --> H[dashboardLabel] H --> C H --> DReviews (1): Last reviewed commit: "fix(cloud-frontend): rename landing butt..." | Re-trigger Greptile