Add lang URL parameter

This commit is contained in:
Sunny Ripert 2023-08-29 17:00:53 +02:00
parent 9c43ba5dd9
commit 74d3e7a03a
2 changed files with 8 additions and 3 deletions

View File

@ -8,9 +8,9 @@ instance-agnostic. Just type in the post text and the instance URL, and click
Post!
Or, open this page with the prefilled `text` URL parameter—it will be
automatically inserted into the text field. The same goes for the `instance` URL
parameter. This can be used to build custom share buttons for the federated
social networks:
automatically inserted into the text field. The same goes for the `instance` and
`lang` URL parameters. This can be used to build custom share buttons for the
federated social networks:
```html
<a href="https://s2f.kytta.dev/?text=Hello%20world!&instance=mastodon.xyz">

View File

@ -12,6 +12,11 @@ export function useTranslations(language: string) {
}
export function findBestLanguage(): string {
const urlLanguage = new URLSearchParams(window.location.search).get("lang");
if (urlLanguage && urlLanguage in languages) {
return urlLanguage;
}
let browserLanguages = navigator.languages;
if (!navigator.languages) browserLanguages = [navigator.language];
for (const language of browserLanguages) {