mirror of
https://github.com/alam00000/bentopdf.git
synced 2026-08-20 06:35:47 +02:00
9 lines
187 B
TypeScript
9 lines
187 B
TypeScript
import { t } from '../i18n/i18n';
|
|
|
|
export function wfError(
|
|
key: string,
|
|
params?: Record<string, string | number>
|
|
): string {
|
|
return t(`tools:pdfWorkflow.errors.${key}`, params);
|
|
}
|