Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
## [Unreleased]


### Fixed
- Make app compatible with PHP 7.4
[#1931](https://github.com/nextcloud/cookbook/pull/1931) @christianlupus
- Allow translation of string _Enable debugging_ in settings
[#1947](https://github.com/nextcloud/cookbook/pull/1947) @christianlupus

### Maintenance
- Add PHP lint checker to ensure valid (legacy) PHP syntax
[#1931](https://github.com/nextcloud/cookbook/pull/1931) @christianlupus
Expand Down
4 changes: 3 additions & 1 deletion src/components/Modals/SettingsDialog.vue
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,9 @@
t('cookbook', 'This allows to temporarily enable logging in the browser console in case of problems. You will not need these settings by default.')
}}
</legend>
<NcButton @click="enableLogger">Enable debugging</NcButton>
<NcButton @click="enableLogger">{{
t('cookbook', 'Enable debugging')
}}</NcButton>
</NcAppSettingsSection>
</NcAppSettingsDialog>
</template>
Expand Down