diff --git a/doc/etemplate2/_includes/sidebar.njk b/doc/etemplate2/_includes/sidebar.njk
index 049001e5b2..a94667ceb0 100644
--- a/doc/etemplate2/_includes/sidebar.njk
+++ b/doc/etemplate2/_includes/sidebar.njk
@@ -6,8 +6,6 @@
Development
Widgets
Styling
- Customizing
- Localization
@@ -40,10 +38,9 @@
Tutorials
diff --git a/doc/etemplate2/pages/tutorials/creating-a-widget.md b/doc/etemplate2/pages/tutorials/creating-a-widget.md
index c52e56cf1c..81953238ab 100644
--- a/doc/etemplate2/pages/tutorials/creating-a-widget.md
+++ b/doc/etemplate2/pages/tutorials/creating-a-widget.md
@@ -1,9 +1,9 @@
-## Creating a component
+## Creating a widget
ETemplate components are [LitElements](https://lit.dev/docs/) that are wrapped with
our [Et2Widget](https://github.com/EGroupware/egroupware/blob/master/api/js/etemplate/Et2Widget/Et2Widget.ts) mixin,
which adds properties and methods to support loading from our template files and returning values to the server. They
-should (relatively) stand-alone.
+should be (relatively) stand-alone.
Common components are in `api/js/etemplate/`. You can add application specific components in `/js/`.