Skip to content

Commit

Permalink
Interpolate sidebar logo alt with theme name
Browse files Browse the repository at this point in the history
  • Loading branch information
pascalwengerter committed Aug 3, 2021
1 parent 418a6cd commit 34ba09a
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion packages/web-runtime/src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,11 @@ export default {
},
sidebarLogoAlt() {
return this.$gettext('Logo ownCloud, navigate to all files page')
return this.$gettextInterpolate(
this.$gettext('Logo %{name}, navigate to all files page'),
{ name: this.configuration.theme.general.name },
false
)
},
sidebarNavItems() {
Expand Down

0 comments on commit 34ba09a

Please sign in to comment.