(options: BatchContextMenuOptions)
| 50 | private options: BatchContextMenuOptions; |
| 51 | |
| 52 | constructor(options: BatchContextMenuOptions) { |
| 53 | this.menu = new ContextMenu(); |
| 54 | this.options = options; |
| 55 | this.buildMenu(); |
| 56 | } |
| 57 | |
| 58 | private t(key: string, params?: Record<string, string | number>): string { |
| 59 | return this.options.plugin.i18n.translate(key, params); |