mirror of
https://github.com/Luzifer/mapshare.git
synced 2024-11-09 13:40:00 +00:00
Add german localization
Signed-off-by: Knut Ahlers <knut@ahlers.me>
This commit is contained in:
parent
8c8be9da79
commit
06f0ee68cd
3 changed files with 71 additions and 6 deletions
|
@ -15,6 +15,7 @@ js_deps=(
|
|||
# Must-have order
|
||||
npm/vue@2/dist/vue.min.js
|
||||
npm/bootstrap-vue@2/dist/bootstrap-vue.min.js
|
||||
npm/vue-i18n@8.15.3/dist/vue-i18n.min.js
|
||||
|
||||
# Other packages
|
||||
npm/axios@0.19.0/dist/axios.min.js
|
||||
|
|
|
@ -1,3 +1,59 @@
|
|||
const get_locale = (fallback = 'en') => {
|
||||
const urlParams = new URLSearchParams(window.location.search)
|
||||
|
||||
for (const lc of [
|
||||
urlParams.get('hl'),
|
||||
navigator.languages,
|
||||
navigator.language,
|
||||
navigator.browserLanguage,
|
||||
navigator.userLanguage,
|
||||
fallback,
|
||||
]) {
|
||||
if (!lc) {
|
||||
continue
|
||||
}
|
||||
|
||||
switch (typeof lc) {
|
||||
case 'object':
|
||||
if (lc.length > 0) {
|
||||
return lc[0].split('-')[0]
|
||||
}
|
||||
break
|
||||
case 'string':
|
||||
return lc.split('-')[0]
|
||||
}
|
||||
}
|
||||
|
||||
return fallback
|
||||
}
|
||||
|
||||
const i18n = new VueI18n({
|
||||
locale: get_locale(),
|
||||
|
||||
messages: {
|
||||
de: {
|
||||
btnModalOK: 'OK',
|
||||
optKeepSending: 'Position kontinuierlich senden',
|
||||
optKeepSendingSub: '(wenn aktiviert, wird die Position gesendet, solange dieses Fenster offen ist)',
|
||||
optRetainLocation: 'Position auf dem Server speichern',
|
||||
optRetainLocationSub: '(neue Beobachter sehen die Position sofort)',
|
||||
btnShareMyLocation: 'Meine Position senden!',
|
||||
shareSettings: 'Einstellungen',
|
||||
waitingForLocation: 'Warte auf Position...',
|
||||
},
|
||||
en: {
|
||||
btnModalOK: 'OK',
|
||||
optKeepSending: 'Keep sending location',
|
||||
optKeepSendingSub: '(when enabled location is updated as long as this window is open)',
|
||||
optRetainLocation: 'Retain location on server',
|
||||
optRetainLocationSub: '(new viewers instantly see your location)',
|
||||
btnShareMyLocation: 'Share my location!',
|
||||
shareSettings: 'Share-Settings',
|
||||
waitingForLocation: 'Waiting for location...',
|
||||
},
|
||||
},
|
||||
})
|
||||
|
||||
window.app = new Vue({
|
||||
|
||||
created() {
|
||||
|
@ -38,6 +94,8 @@ window.app = new Vue({
|
|||
|
||||
el: '#app',
|
||||
|
||||
i18n,
|
||||
|
||||
methods: {
|
||||
initMap() {
|
||||
this.map = L.map('map')
|
||||
|
@ -72,7 +130,12 @@ window.app = new Vue({
|
|||
this.socket = null
|
||||
}
|
||||
|
||||
this.socket = new WebSocket(`${window.location.href.split('#')[0].replace(/^http/, 'ws')}/ws`)
|
||||
let socketAddr = window.location.href.replace(/^http/, 'ws')
|
||||
socketAddr = socketAddr.split('#')[0]
|
||||
socketAddr = socketAddr.split('?')[0]
|
||||
socketAddr = `${socketAddr}/ws`
|
||||
|
||||
this.socket = new WebSocket(socketAddr)
|
||||
this.socket.onclose = () => window.setTimeout(this.subscribe, 1000) // Restart socket
|
||||
this.socket.onmessage = evt => {
|
||||
const loc = JSON.parse(evt.data)
|
||||
|
|
|
@ -20,7 +20,7 @@
|
|||
<div class="text-center">
|
||||
<p class="mb-0">
|
||||
<i class="fa fa-spinner fa-pulse fa-4x mb-3"></i><br>
|
||||
Waiting for location...
|
||||
{{ $t('waitingForLocation') }}
|
||||
</p>
|
||||
<p class="mt-3" v-if="navigator.geolocation">
|
||||
<b-button-group>
|
||||
|
@ -28,7 +28,7 @@
|
|||
@click="shareLocation"
|
||||
variant="primary"
|
||||
>
|
||||
Share my location!
|
||||
{{ $t('btnShareMyLocation') }}
|
||||
</b-btn>
|
||||
|
||||
<b-btn @click="shareSettingsOpen = !shareSettingsOpen">
|
||||
|
@ -41,16 +41,17 @@
|
|||
|
||||
<b-modal
|
||||
centered
|
||||
title="Share-Settings"
|
||||
@hidden="shareSettingsOpen = false"
|
||||
ok-only
|
||||
:ok-title="$t('btnModalOK')"
|
||||
:title="$t('shareSettings')"
|
||||
:visible="shareSettingsOpen"
|
||||
>
|
||||
<b-form-checkbox v-model="shareSettings.continuous" switch>
|
||||
Keep sending location<br><small>(when enabled location is updated as long as this window is open)</small>
|
||||
{{ $t('optKeepSending') }}<br><small>{{ $t('optKeepSendingSub') }}</small>
|
||||
</b-form-checkbox>
|
||||
<b-form-checkbox class="mt-3" v-model="shareSettings.retained" switch>
|
||||
Retain location on server<br><small>(new viewers instantly see your location)</small>
|
||||
{{ $t('optRetainLocation') }}<br><small>{{ $t('optRetainLocationSub') }}</small>
|
||||
</b-form-checkbox>
|
||||
</b-modal>
|
||||
</div>
|
||||
|
|
Loading…
Reference in a new issue