Skip to content

Commit

Permalink
Update languages
Browse files Browse the repository at this point in the history
  • Loading branch information
jbrooksuk committed Dec 30, 2024
1 parent c62b7be commit 70aa878
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions resources/lang/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@
"Add Component": "Add Component",
"Admin": "Admin",
"Always Hidden": "Always Hidden",
"Always collapsed": "Always collapsed",
"Always expanded": "Always expanded",
"Always Collapsed": "Always Collapsed",
"Always Expanded": "Always Expanded",
"An optional link to the component.": "An optional link to the component.",
"Average": "Average",
"Collapsed unless active incident": "Collapsed unless active incident",
"Collapsed Unless Ongoing Incident": "Collapsed Unless Ongoing Incident",
"Complete Maintenance": "Complete Maintenance",
"Complete": "Complete",
"Component Group": "Component Group",
Expand Down
6 changes: 3 additions & 3 deletions src/Enums/ComponentGroupVisibilityEnum.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ enum ComponentGroupVisibilityEnum: int implements HasColor, HasIcon, HasLabel
public function getLabel(): string
{
return match ($this) {
self::expanded => __('Always expanded'),
self::collapsed => __('Always collapsed'),
self::collapsed_unless_incident => __('Collapsed unless active incident'),
self::expanded => __('Always Expanded'),
self::collapsed => __('Always Collapsed'),
self::collapsed_unless_incident => __('Collapsed Unless Ongoing Incident'),
};
}

Expand Down

0 comments on commit 70aa878

Please sign in to comment.