This commit is contained in:
@@ -113,7 +113,7 @@ export default {
|
||||
return v;
|
||||
},
|
||||
formats: {
|
||||
decimalSeparator: ".",
|
||||
DecimalSeparator: ".",
|
||||
currencySymbol: "$",
|
||||
shortDate: "YYYY-MM-DD",
|
||||
shortTime: "hh:mm:ss A",
|
||||
|
||||
@@ -30,6 +30,33 @@
|
||||
<span class="body-2">{{ this.$gzlocale.timeZoneOffset }}</span>
|
||||
</div>
|
||||
|
||||
<div>
|
||||
<span class="ml-4 body-1">{{ this.$gzlocale.get("DecimalSeparator") }}:</span>
|
||||
<span class="body-2">{{ this.$gzlocale.formats.DecimalSeparator }}</span>
|
||||
</div>
|
||||
|
||||
<div>
|
||||
<span class="ml-4 body-1">{{ this.$gzlocale.get("CurrencySymbol") }}:</span>
|
||||
<span class="body-2">{{ this.$gzlocale.formats.currencySymbol }}</span>
|
||||
</div>
|
||||
|
||||
<div>
|
||||
<span class="ml-4 body-1">{{ this.$gzlocale.get("ShortDateFormat") }}:</span>
|
||||
<span class="body-2">{{ this.$gzlocale.formats.shortDate }}</span>
|
||||
</div>
|
||||
|
||||
<div>
|
||||
<span class="ml-4 body-1">{{ this.$gzlocale.get("ShortTimeFormat") }}:</span>
|
||||
<span class="body-2">{{ this.$gzlocale.formats.shortTime }}</span>
|
||||
</div>
|
||||
|
||||
<div>
|
||||
<span class="ml-4 body-1">{{ this.$gzlocale.get("ShortDateAndTimeFormat") }}:</span>
|
||||
<span class="body-2">{{ this.$gzlocale.formats.shortDateAndTime }}</span>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<v-divider class="mt-4"></v-divider>
|
||||
<v-subheader>{{ this.$gzlocale.get("Browser") }}</v-subheader>
|
||||
<div v-for="(value, name) in clientInfo.browser" :key="name">
|
||||
@@ -182,7 +209,12 @@ export default {
|
||||
"Log",
|
||||
"User",
|
||||
"Browser",
|
||||
"UserTimeZoneOffset"
|
||||
"UserTimeZoneOffset",
|
||||
"DecimalSeparator",
|
||||
"CurrencySymbol",
|
||||
"ShortDateFormat",
|
||||
"ShortTimeFormat",
|
||||
"ShortDateAndTimeFormat"
|
||||
])
|
||||
.then(function() {
|
||||
vm.formState.ready = true;
|
||||
|
||||
Reference in New Issue
Block a user