ru + en lang
This commit is contained in:
@@ -0,0 +1,36 @@
|
||||
export interface Locale {
|
||||
settings: {
|
||||
title: string;
|
||||
description: string;
|
||||
};
|
||||
modules: {
|
||||
'attachment-clean-paste': {
|
||||
name: string;
|
||||
description: string;
|
||||
descriptionShort: string;
|
||||
extensionsLabel: string;
|
||||
extensionsDesc: string;
|
||||
extensionsPlaceholder: string;
|
||||
};
|
||||
};
|
||||
}
|
||||
|
||||
export const en: Locale = {
|
||||
settings: {
|
||||
title: 'ZeroQ QoL Modules',
|
||||
description: 'Enable or disable modules as you wish.',
|
||||
},
|
||||
modules: {
|
||||
'attachment-clean-paste': {
|
||||
name: 'Attachment Clean Paste',
|
||||
description:
|
||||
'Replaces ![[embed]] with [[path/file|name]] for configured file extensions on paste/drop',
|
||||
descriptionShort:
|
||||
'Replaces ![[embed]] with [[path/file|name]] for specified file extensions.',
|
||||
extensionsLabel: 'File extensions',
|
||||
extensionsDesc:
|
||||
'Comma-separated extensions (e.g.: png, jpg, pdf, mp3). Files with these extensions will be inserted as [[path/file|name]] instead of ![[path/file]].',
|
||||
extensionsPlaceholder: 'png, jpg, jpeg, gif, svg, webp, pdf',
|
||||
},
|
||||
},
|
||||
};
|
||||
Reference in New Issue
Block a user