@pipedream/weglot
Version:
Pipedream Weglot Components
47 lines (45 loc) • 919 B
JavaScript
const WORD_TYPES = [
{
value: 1,
label: "TEXT - General text (used most of the time)",
},
{
value: 2,
label: "VALUE - The value of an input tag's value attribute",
},
{
value: 3,
label: "PLACEHOLDER - The value of an input tag's placeholder attribute",
},
{
value: 4,
label: "META_CONTENT - The value of a meta tags' content attribute",
},
{
value: 5,
label: "IFRAME_SRC - The src link to a page used in an iframe",
},
{
value: 6,
label: "IMG_SRC - The srcvalue of an img tag",
},
{
value: 7,
label: "IMG_ALT - The alt value of an img tag",
},
{
value: 8,
label: "PDF_HREF - A URL pointing to a PDF document",
},
{
value: 9,
label: "PAGE_TITLE - Text from title tag",
},
{
value: 10,
label: "EXTERNAL_LINK - External links when dashboard option is enabled",
},
];
export default {
WORD_TYPES,
};