Skip to content

Commit

Permalink
[i18n] improved some string(for deleting wiki page) (#7284)
Browse files Browse the repository at this point in the history
  • Loading branch information
llj authored Dec 30, 2024
1 parent 50887d2 commit 7bd6ad5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/pages/wiki2/side-panel.js
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ class SidePanel extends PureComponent {
this.props.updateWikiConfig(config);
toaster.success(
<span>
{gettext('Page xxx deleted.').replace('xxx', deletePageName)}
{gettext('Page {name_placeholder} deleted.').replace('{name_placeholder}', deletePageName)}
<CommonUndoTool onUndoOperation={() => this.revertWikiPage(pageId)} />
</span>
);
Expand Down

0 comments on commit 7bd6ad5

Please sign in to comment.