We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4921567 commit 6f02342Copy full SHA for 6f02342
1 file changed
adminforth/modules/restApi.ts
@@ -1614,7 +1614,7 @@ export default class AdminForthRestAPI implements IAdminForthRestAPI {
1614
return { error: await tr(`Action {actionId} not found`, 'errors', { actionId }) };
1615
}
1616
if (!action.bulkHandler) {
1617
- return { error: `Action "${actionId}" has no bulkHandler` };
+ return { error: await tr(`Action "{actionId}" has no bulkHandler`, 'errors', { actionId }) };
1618
1619
if (action.allowed) {
1620
const execAllowed = await action.allowed({ adminUser, standardAllowedActions: allowedActions });
0 commit comments