diff --git a/network-api/networkapi/templates/tags/multipage_menu_link_note.html b/network-api/networkapi/templates/tags/multipage_menu_link_note.html
index c3df457cf5c..e20fd33fbc7 100644
--- a/network-api/networkapi/templates/tags/multipage_menu_link_note.html
+++ b/network-api/networkapi/templates/tags/multipage_menu_link_note.html
@@ -1,18 +1,18 @@
{% load i18n %}
-{% with class="tw-text-red-80 tw-text-sm tw-ml-1" note_for_translators="This note is internal facing only and is only visible to our CMS logged in users." %}
+{% with class="tw-text-red-80 tw-text-sm tw-ml-1" %}
{% comment %}These notes are internal facing only. Only logged in users can see them.{% endcomment %}
{% if menu_entry.restriction == "login" %}
- {% trans "(logged in users only)" context note_for_translators %}
+ (logged in users only)
{% elif menu_entry.restriction == "groups" %}
- {% trans "(restricted to specific groups)" context note_for_translators %}
+ (restricted to specific groups)
{% elif menu_entry.restriction == "password" %}
- {% trans "(password protected)" context note_for_translators %}
+ (password protected)
{% endif %}
{% if not menu_entry.page.live %}
- {% trans "(draft)" context note_for_translators %}
+ (draft)
{% endif %}
{% endwith %}