@polar/plugin-export
Version:
Export plugin for POLAR that adds export functionality in various formats to retrieve a screenshot-like graphic of the map without the buttons.
41 lines (36 loc) • 720 B
text/typescript
import { Locale } from '@polar/lib-custom-types'
export const resourcesDe = {
plugins: {
export: {
buttons: {
jpg: 'Als .jpeg exportieren.',
pdf: 'Als .pdf exportieren.',
png: 'Als .png exportieren.',
toggle: 'Exportieren ...',
},
},
},
} as const
export const resourcesEn = {
plugins: {
export: {
buttons: {
jpg: 'Export as a .jpeg-file.',
pdf: 'Export as a .pdf-file.',
png: 'Export as a .png-file.',
toggle: 'Export ...',
},
},
},
} as const
const locales: Locale[] = [
{
type: 'de',
resources: resourcesDe,
},
{
type: 'en',
resources: resourcesEn,
},
]
export default locales