-
Notifications
You must be signed in to change notification settings - Fork 188
PMM-14630: Use correct casing in navigation menu and Help Center #4838
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
dmitri-saricev-3pillargloball
merged 9 commits into
v3
from
PMM-14630-use-correct-casing-in-navigation-menu-and-help-center
Jan 14, 2026
Merged
Changes from all commits
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
d114efb
PMM-14630: Use correct casing in navigation menu and Help Center
dmitri-saricev-3pillargloball 90557fc
Merge branch 'v3' into PMM-14630-use-correct-casing-in-navigation-men…
matejkubinec e7e0465
Merge branch 'v3' into PMM-14630-use-correct-casing-in-navigation-men…
dmitri-saricev-3pillargloball 44d8a70
PMM-14630: Improve text casing and date formatting in Updates UI
dmitri-saricev-3pillargloball 213b223
Merge branch 'v3' into PMM-14630-use-correct-casing-in-navigation-men…
dmitri-saricev-3pillargloball 51840c4
PMM-14630: Fix text casing in navigation menu and tour messages
dmitri-saricev-3pillargloball decc188
Merge branch 'v3' into PMM-14630-use-correct-casing-in-navigation-men…
dmitri-saricev-3pillargloball 0a8cf9b
PMM-14630: Revert "Checked on:" to "Last checked:"
dmitri-saricev-3pillargloball dbea5cf
Merge branch 'v3' into PMM-14630-use-correct-casing-in-navigation-men…
dmitri-saricev-3pillargloball File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,5 +1,5 @@ | ||
| export const Messages = { | ||
| version: (version: string) => `PMM ${version}`, | ||
| inProgress: 'Update in progress...', | ||
| checkedOn: (date: string) => `Checked on: ${date}`, | ||
| checkedOn: (date: string) => `Last checked: ${date}`, | ||
| }; |
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,7 +1,14 @@ | ||
| /** | ||
| * Formats date to YYYY/MM/DD | ||
| * Formats date to "Month Day, Year, HH:MM UTC" | ||
| * @param date | ||
| * @returns formatted date | ||
| */ | ||
| export const formatCheckDate = (date: string) => | ||
| new Date(date).toISOString().slice(0, 10).replace(/-/g, '/'); | ||
| export const formatCheckDate = (date: string) => { | ||
| const dateObj = new Date(date); | ||
| const month = dateObj.toLocaleDateString('en-US', { month: 'long' }); | ||
| const day = dateObj.getUTCDate(); | ||
| const year = dateObj.getUTCFullYear(); | ||
| const hours = String(dateObj.getUTCHours()).padStart(2, '0'); | ||
| const minutes = String(dateObj.getUTCMinutes()).padStart(2, '0'); | ||
| return `${month} ${day}, ${year}, ${hours}:${minutes} UTC`; | ||
| }; |
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
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
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
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
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
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
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
2 changes: 1 addition & 1 deletion
2
ui/apps/pmm/src/pages/updates/update-in-progress-card/UpdateInProgressCard.messages.ts
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,6 +1,6 @@ | ||
| export const Messages = { | ||
| title: (version: string) => `PMM ${version} update`, | ||
| home: 'PMM Home', | ||
| home: 'PMM home', | ||
| next: 'Next: Update PMM Client', | ||
| inProgress: 'In progress', | ||
| }; |
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.