Browse Source

fix: i18n for Topbar

pull/6512/head
Muhammed Mustafa 12 months ago
parent
commit
1142488659
  1. 6
      packages/nc-gui/components/general/OpenLeftSidebarBtn.vue

6
packages/nc-gui/components/general/OpenLeftSidebarBtn.vue

@ -21,11 +21,7 @@ const onClick = () => {
}"
>
<template #title>
{{
isLeftSidebarOpen
? `${$t('general.hide')} ${$t('objects.sidebar').toLowerCase()}`
: `${$t('general.show')} ${$t('objects.sidebar').toLowerCase()}`
}}
{{ isLeftSidebarOpen ? `${$t('title.hideSidebar')}` : `${$t('title.showSidebar')}` }}
</template>
<NcButton
:type="isMobileMode ? 'secondary' : 'text'"

Loading…
Cancel
Save