diff --git a/apps/dashboard/src/DashboardApp.vue b/apps/dashboard/src/DashboardApp.vue index afc874be2c946..f7ff79966e93e 100644 --- a/apps/dashboard/src/DashboardApp.vue +++ b/apps/dashboard/src/DashboardApp.vue @@ -100,7 +100,7 @@

{{ t('dashboard', 'Weather service') }}

- {{ t('dashboard', 'For your privacy, the weather data is requested by your Nextcloud server on your behalf so the weather service receives no personal information.') }} + {{ t('dashboard', 'For your privacy, the weather data is requested by your {productName} server on your behalf so the weather service receives no personal information.', { productName }) }}

{{ t('dashboard', 'Weather data from Met.no') }}, @@ -156,6 +156,12 @@ export default { isMobile, ], + setup() { + return { + productName: window.OC.theme.productName, + } + }, + data() { return { isAdmin: getCurrentUser().isAdmin, diff --git a/apps/federatedfilesharing/src/components/PersonalSettings.vue b/apps/federatedfilesharing/src/components/PersonalSettings.vue index f68b755425d66..6dd79541b21b3 100644 --- a/apps/federatedfilesharing/src/components/PersonalSettings.vue +++ b/apps/federatedfilesharing/src/components/PersonalSettings.vue @@ -5,7 +5,7 @@