== Background
As part of our explorations in increasing the visibility of the new language switching button, we would like to explore ways to link to the button from the previous location of language switching functionality.
== Design
{F34796182 width=700}
= Acceptance criteria / QA
- [] The sidebar alert should not show on the main page
- [] The sidebar alert should show on pages which has a language button
- [] If there is no language button, do not show the sidebar alert.
== Developer notes
Something like this should suffice:
```
diff --git a/includes/templates/Sidebar.mustache b/includes/templates/Sidebar.mustache
index 3a916ba3e..63a3bf970 100644
--- a/includes/templates/Sidebar.mustache
+++ b/includes/templates/Sidebar.mustache
@@ -21,4 +21,8 @@
{{^is-language-in-header}}
{{#data-portlets.data-languages}}{{>Menu}}{{/data-portlets.data-languages}}
{{/is-language-in-header}}
+ {{#is-language-in-header}}
+ <h2>{{msg-languages}}</h2>
+ <div class="warningbox">{{msg-language-redirect-to-top}}</div>
+ {{/is-language-in-header}}
</div>
```