We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7339fbf commit aa050c6Copy full SHA for aa050c6
appinventor/appengine/src/com/google/appinventor/client/Ode.java
@@ -2632,6 +2632,10 @@ public void setTutorialURL(String newURL) {
2632
designToolbar.setTutorialToggleVisible(false);
2633
setTutorialVisible(false);
2634
} else {
2635
+ String locale = Window.Location.getParameter("locale");
2636
+ if (locale != null) {
2637
+ newURL += (newURL.contains("?") ? "&" : "?") + "locale=" + locale;
2638
+ }
2639
tutorialPanel.setUrl(newURL);
2640
designToolbar.setTutorialToggleVisible(true);
2641
setTutorialVisible(true);
0 commit comments