Skip to content

Commit

Permalink
fix: closes #12126, fix language keys
Browse files Browse the repository at this point in the history
  • Loading branch information
barisusakli committed Oct 25, 2023
1 parent b1b3dcb commit 668a355
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/controllers/admin/settings.js
Expand Up @@ -49,7 +49,7 @@ settingsController.user = async (req, res) => {
const notificationTypes = await notifications.getAllNotificationTypes();
const notificationSettings = notificationTypes.map(type => ({
name: type,
label: `[[notifications:${type}]]`,
label: `[[notifications:${type.replace(/_/g, '-')}]]`,
}));
res.render('admin/settings/user', {
title: '[[admin/menu:settings/user]]',
Expand Down

0 comments on commit 668a355

Please sign in to comment.