Skip to content
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

fix: Capitalization / Sentence case under Settings #18753

Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions superset/initialization/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@ def init_views(self) -> None:
appbuilder.add_view(
AnnotationLayerModelView,
"Annotation Layers",
label=__("Annotation Layers"),
label=__("Annotation layers"),
icon="fa-comment",
category="Manage",
category_label=__("Manage"),
Expand Down Expand Up @@ -265,7 +265,7 @@ def init_views(self) -> None:
appbuilder.add_view(
CssTemplateModelView,
"CSS Templates",
label=__("CSS Templates"),
label=__("CSS templates"),
icon="fa-css3",
category="Manage",
category_label=__("Manage"),
Expand All @@ -274,7 +274,7 @@ def init_views(self) -> None:
appbuilder.add_view(
RowLevelSecurityFiltersModelView,
"Row Level Security",
label=__("Row Level Security"),
label=__("Row level security"),
category="Security",
category_label=__("Security"),
icon="fa-lock",
Expand Down Expand Up @@ -314,7 +314,7 @@ def init_views(self) -> None:
#
appbuilder.add_link(
"Import Dashboards",
label=__("Import Dashboards"),
label=__("Import dashboards"),
href="/superset/import_dashboards/",
icon="fa-cloud-upload",
category="Manage",
Expand Down Expand Up @@ -372,7 +372,7 @@ def init_views(self) -> None:
appbuilder.add_view(
LogModelView,
"Action Log",
label=__("Action Log"),
label=__("Action log"),
category="Security",
category_label=__("Security"),
icon="fa-list-ol",
Expand Down Expand Up @@ -433,7 +433,7 @@ def init_views(self) -> None:
appbuilder.add_view(
AlertView,
"Alerts & Report",
label=__("Alerts & Reports"),
label=__("Alerts & reports"),
category="Manage",
category_label=__("Manage"),
icon="fa-exclamation-triangle",
Expand Down