Skip to content

Commit

Permalink
Fixed #337
Browse files Browse the repository at this point in the history
  • Loading branch information
brandonkelly committed Dec 10, 2024
1 parent 5b219fe commit edfac1a
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Release Notes for CKEditor for Craft CMS

## Unreleased

- Fixed a bug where “Edit entry” buttons were only partially translated. ([#337](https://github.com/craftcms/ckeditor/issues/337))

## 4.4.0 - 2024-11-12

- When saving a nested entry within a CKEditor field, the changes are now saved to a draft of the owner element, rather than published immediately. ([craftcms/cms#16002](https://github.com/craftcms/cms/pull/16002), [#308](https://github.com/craftcms/ckeditor/pull/308))
Expand Down
2 changes: 1 addition & 1 deletion src/web/assets/ckeditor/dist/ckeditor5-craftcms.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/web/assets/ckeditor/dist/ckeditor5-craftcms.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/web/assets/ckeditor/src/entries/entriesui.js
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ export default class CraftEntriesUI extends Plugin {
button.set({
isEnabled: true,
label: Craft.t('app', 'Edit {type}', {
type: Craft.t('app', 'entry'),
type: Craft.elementTypeNames['craft\\elements\\Entry'][2],
}),
tooltip: true,
withText: true,
Expand Down

0 comments on commit edfac1a

Please sign in to comment.