This commit is contained in:
@@ -24,6 +24,13 @@
|
||||
<span class="body-2">{{ this.$store.state.userName }}</span>
|
||||
</div>
|
||||
|
||||
<div>
|
||||
<span class="ml-6 body-1">{{ lt("Language") }}:</span>
|
||||
<span class="body-2">
|
||||
{{ ltFormat().tag }}
|
||||
</span>
|
||||
</div>
|
||||
|
||||
<div>
|
||||
<span class="ml-6 body-1">{{ lt("UserTimeZoneOffset") }}:</span>
|
||||
<span class="body-2">
|
||||
|
||||
@@ -1,14 +1,20 @@
|
||||
<template>
|
||||
<UnderConstruction />
|
||||
<div>
|
||||
User's preferred language:
|
||||
{{ userLanguage }}
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import UnderConstruction from "../components/underconstruction.vue";
|
||||
|
||||
export default {
|
||||
components: {
|
||||
UnderConstruction
|
||||
data() {
|
||||
return {
|
||||
userLanguage: window.$gz.locale.getFirstBrowserLanguage()
|
||||
};
|
||||
},
|
||||
components: {},
|
||||
beforeCreate() {
|
||||
window.$gz.eventBus.$emit("menu-change", {
|
||||
isMain: true,
|
||||
|
||||
Reference in New Issue
Block a user