mirror of https://github.com/kiwix/libkiwix.git
userlang query param is removed from the URL
If the userlang query param is present in the URL it is used to set the UI language and then is removed from the URL. Unlike the ZIM viewer, changing the UI language on the welcome page isn't recorded in the navigation history (and probably it should work the same way in the ZIM viewer where the appearance of the web page is affected by the UI language changes to a significantly smaller extent).
This commit is contained in:
parent
fbf6d97f5e
commit
763fb86ad0
|
@ -15,6 +15,7 @@
|
||||||
let noResultInjected = false;
|
let noResultInjected = false;
|
||||||
let filters = getCookie(filterCookieName);
|
let filters = getCookie(filterCookieName);
|
||||||
let params = new URLSearchParams(window.location.search || filters || '');
|
let params = new URLSearchParams(window.location.search || filters || '');
|
||||||
|
params.delete('userlang');
|
||||||
let timer;
|
let timer;
|
||||||
let languages = {};
|
let languages = {};
|
||||||
|
|
||||||
|
@ -34,9 +35,8 @@
|
||||||
function changeUILanguage() {
|
function changeUILanguage() {
|
||||||
const s = document.getElementById("ui_language");
|
const s = document.getElementById("ui_language");
|
||||||
const lang = s.options[s.selectedIndex].value;
|
const lang = s.options[s.selectedIndex].value;
|
||||||
const q = new URLSearchParams(window.location.search);
|
setPermanentGlobalCookie('userlang', lang);
|
||||||
q.set("userlang", lang);
|
window.location.reload();
|
||||||
location.search = q.toString();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
function queryUrlBuilder() {
|
function queryUrlBuilder() {
|
||||||
|
|
|
@ -63,7 +63,7 @@ const ResourceCollection resources200Compressible{
|
||||||
{ DYNAMIC_CONTENT, "/ROOT%23%3F/skin/index.css" },
|
{ DYNAMIC_CONTENT, "/ROOT%23%3F/skin/index.css" },
|
||||||
{ STATIC_CONTENT, "/ROOT%23%3F/skin/index.css?cacheid=ac5767d8" },
|
{ STATIC_CONTENT, "/ROOT%23%3F/skin/index.css?cacheid=ac5767d8" },
|
||||||
{ DYNAMIC_CONTENT, "/ROOT%23%3F/skin/index.js" },
|
{ DYNAMIC_CONTENT, "/ROOT%23%3F/skin/index.js" },
|
||||||
{ STATIC_CONTENT, "/ROOT%23%3F/skin/index.js?cacheid=f045ea14" },
|
{ STATIC_CONTENT, "/ROOT%23%3F/skin/index.js?cacheid=5b1775c2" },
|
||||||
{ DYNAMIC_CONTENT, "/ROOT%23%3F/skin/iso6391To3.js" },
|
{ DYNAMIC_CONTENT, "/ROOT%23%3F/skin/iso6391To3.js" },
|
||||||
{ STATIC_CONTENT, "/ROOT%23%3F/skin/iso6391To3.js?cacheid=ecde2bb3" },
|
{ STATIC_CONTENT, "/ROOT%23%3F/skin/iso6391To3.js?cacheid=ecde2bb3" },
|
||||||
{ DYNAMIC_CONTENT, "/ROOT%23%3F/skin/isotope.pkgd.min.js" },
|
{ DYNAMIC_CONTENT, "/ROOT%23%3F/skin/isotope.pkgd.min.js" },
|
||||||
|
@ -284,7 +284,7 @@ R"EXPECTEDRESULT( href="/ROOT%23%3F/skin/index.css?cacheid=ac5767d8"
|
||||||
<script type="text/javascript" src="/ROOT%23%3F/skin/languages.js?cacheid=fe100348" defer></script>
|
<script type="text/javascript" src="/ROOT%23%3F/skin/languages.js?cacheid=fe100348" defer></script>
|
||||||
<script src="/ROOT%23%3F/skin/isotope.pkgd.min.js?cacheid=2e48d392" defer></script>
|
<script src="/ROOT%23%3F/skin/isotope.pkgd.min.js?cacheid=2e48d392" defer></script>
|
||||||
<script src="/ROOT%23%3F/skin/iso6391To3.js?cacheid=ecde2bb3"></script>
|
<script src="/ROOT%23%3F/skin/iso6391To3.js?cacheid=ecde2bb3"></script>
|
||||||
<script type="text/javascript" src="/ROOT%23%3F/skin/index.js?cacheid=f045ea14" defer></script>
|
<script type="text/javascript" src="/ROOT%23%3F/skin/index.js?cacheid=5b1775c2" defer></script>
|
||||||
<img src="/ROOT%23%3F/skin/feed.png?cacheid=56a672b1"
|
<img src="/ROOT%23%3F/skin/feed.png?cacheid=56a672b1"
|
||||||
)EXPECTEDRESULT"
|
)EXPECTEDRESULT"
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in New Issue