diff --git a/ayanova/src/views/ay-about.vue b/ayanova/src/views/ay-about.vue
index 13fdd7f9..8a94741d 100644
--- a/ayanova/src/views/ay-about.vue
+++ b/ayanova/src/views/ay-about.vue
@@ -103,6 +103,14 @@
serverInfo.license.license.keySerial
}}
+
+ {{ $ay.t("LicenseType") }}:
+ {{
+ serverInfo.license.license.perpetual
+ ? $ay.t("LicenseTypePerpetual")
+ : $ay.t("LicenseTypeSubscription")
+ }}
+
{{ $ay.t("LicenseExpiration") }}:
@@ -317,7 +325,10 @@ async function fetchTranslatedText() {
"CurrencyCode",
"ViewEULA",
"DarkMode",
- "NativeDateTimeInput"
+ "NativeDateTimeInput",
+ "LicenseType",
+ "LicenseTypeSubscription",
+ "LicenseTypePerpetual"
]);
}