translations

// Define language translations
const trans = {
    'cn': {
        downloadImage: '下载图片',
        copyImage: '复制图片',
        imageCopied: '图片已复制到剪贴板',
        unsupported: '该图像格式无法复制到剪贴板'
    },
    'en': {
        downloadImage: 'Download Image',
        copyImage: 'Copy Image',
        imageCopied: 'Image has been copied to the clipboard',
        unsupported: 'This image format cannot get copied to the clipboard'
    },
    'de': {
        downloadImage: 'Bild herunterladen',
        copyImage: 'Bild kopieren',
        imageCopied: 'Bild wurde in die Zwischenablage kopiert',
        unsupported: 'Dieses Bildformat kann nicht in die Zwischenablage kopiert werden'
    }
};

module.exports = {
    trans
}