This commit is contained in:
2019-05-29 22:37:01 +00:00
parent 4f4252a947
commit 871a5da022
7 changed files with 78 additions and 48 deletions

View File

@@ -29,48 +29,50 @@
<span class="ml-4 body-1"
>{{ this.$gzlocale.get("UserTimeZoneOffset") }}:</span
>
<span class="body-2">{{ this.$gzlocale.timeZoneOffset }}</span>
<span class="body-2">{{
this.$gzlocale.format().timeZoneOffset
}}</span>
</div>
<div>
<span class="ml-4 body-1"
>{{ this.$gzlocale.get("DecimalSeparator") }}:</span
>
<span class="body-2">{{
this.$gzlocale.formats.DecimalSeparator
}}</span>
<span class="body-2">
{{ this.$gzlocale.format().decimalSeparator }}
</span>
</div>
<div>
<span class="ml-4 body-1"
>{{ this.$gzlocale.get("CurrencySymbol") }}:</span
>
<span class="body-2">{{
this.$gzlocale.formats.currencySymbol
}}</span>
<span class="body-2">
{{ this.$gzlocale.format().currencySymbol }}
</span>
</div>
<div>
<span class="ml-4 body-1"
>{{ this.$gzlocale.get("ShortDateFormat") }}:</span
>
<span class="body-2">{{ this.$gzlocale.formats.shortDate }}</span>
<span class="body-2">{{ this.$gzlocale.format().shortDate }}</span>
</div>
<div>
<span class="ml-4 body-1"
>{{ this.$gzlocale.get("ShortTimeFormat") }}:</span
>
<span class="body-2">{{ this.$gzlocale.formats.shortTime }}</span>
<span class="body-2">{{ this.$gzlocale.format().shortTime }}</span>
</div>
<div>
<span class="ml-4 body-1"
>{{ this.$gzlocale.get("ShortDateAndTimeFormat") }}:</span
>
<span class="body-2">{{
this.$gzlocale.formats.shortDateAndTime
}}</span>
<span class="body-2">
{{ this.$gzlocale.format().shortDateAndTime }}
</span>
</div>
<v-divider class="mt-4"></v-divider>
@@ -115,9 +117,9 @@
<span class="ml-4 body-1"
>{{ this.$gzlocale.get("RegisteredUser") }}:</span
>
<span class="body-2">{{
serverInfo.license.license.licensedTo
}}</span>
<span class="body-2">
{{ serverInfo.license.license.licensedTo }}
</span>
</div>
<div>
<span class="ml-4 body-1"
@@ -135,17 +137,17 @@
<span class="ml-4 body-1"
>{{ this.$gzlocale.get("LicenseExpiration") }}:</span
>
<span class="body-2">{{
serverInfo.license.license.licenseExpiration
}}</span>
<span class="body-2">
{{ serverInfo.license.license.licenseExpiration }}
</span>
</div>
<div>
<span class="ml-4 body-1"
>{{ this.$gzlocale.get("SupportedUntil") }}:</span
>
<span class="body-2">{{
serverInfo.license.license.maintenanceExpiration
}}</span>
<span class="body-2">
{{ serverInfo.license.license.maintenanceExpiration }}
</span>
</div>
<v-divider class="mt-4"></v-divider>

View File

@@ -13,7 +13,8 @@
transition="scale-transition"
class="multi-line"
outline
>{{ formState.errorBoxMessage }}</v-alert>
>{{ formState.errorBoxMessage }}</v-alert
>
</v-flex>
<v-flex xs12 sm6 lg4 xl3 px-2>
<v-text-field
@@ -70,7 +71,7 @@
<v-text-field
v-model="obj.dollarAmount"
:readonly="this.formState.readOnly"
:prefix="this.$gzlocale.formats.currencySymbol"
:prefix="this.$gzlocale.format().currencySymbol"
:label="this.$gzlocale.get('WidgetDollarAmount')"
ref="dollarAmount"
required