mirror of https://github.com/artf/grapesjs.git
108 changed files with 1324 additions and 1414 deletions
@ -1,5 +1,5 @@ |
|||
import ComponentView from './ComponentView'; |
|||
|
|||
export default ComponentView.extend({ |
|||
events: {} |
|||
events: {}, |
|||
}); |
|||
|
|||
@ -1,117 +1,117 @@ |
|||
const traitInputAttr = { placeholder: 'eg. 텍스트 입력' }; |
|||
|
|||
export default { |
|||
assetManager: { |
|||
addButton: '이미지 추가', |
|||
inputPlh: 'http://path/to/the/image.jpg', |
|||
modalTitle: '이미지 선택', |
|||
uploadTitle: '원하는 파일을 여기에 놓거나 업로드를 위해 클릭' |
|||
}, |
|||
// Here just as a reference, GrapesJS core doesn't contain any block,
|
|||
// so this should be omitted from other local files
|
|||
blockManager: { |
|||
labels: { |
|||
// 'block-id': 'Block Label',
|
|||
}, |
|||
categories: { |
|||
// 'category-id': 'Category Label',
|
|||
} |
|||
}, |
|||
domComponents: { |
|||
names: { |
|||
'': '상자', |
|||
wrapper: 'Body', |
|||
text: '텍스트', |
|||
comment: 'Comment', |
|||
image: '이미지', |
|||
video: '동영상', |
|||
label: 'Label', |
|||
link: '링크', |
|||
map: '지도', |
|||
tfoot: 'Table foot', |
|||
tbody: 'Table body', |
|||
thead: 'Table head', |
|||
table: 'Table', |
|||
row: 'Table row', |
|||
cell: 'Table cell' |
|||
} |
|||
}, |
|||
deviceManager: { |
|||
device: 'Device', |
|||
devices: { |
|||
desktop: '데스크탑', |
|||
tablet: '태블릿', |
|||
mobileLandscape: '모바일 환경', |
|||
mobilePortrait: '모바일 Portrait' |
|||
} |
|||
}, |
|||
panels: { |
|||
buttons: { |
|||
titles: { |
|||
preview: '미리보기', |
|||
fullscreen: '전체화면', |
|||
'sw-visibility': 'components 보기', |
|||
'export-template': '코드 보기', |
|||
'open-sm': 'Style Manager 열기', |
|||
'open-tm': '설정', |
|||
'open-layers': 'Layer Manager 열기', |
|||
'open-blocks': 'Blocks 열기' |
|||
} |
|||
} |
|||
}, |
|||
selectorManager: { |
|||
label: 'Classes', |
|||
selected: '선택된', |
|||
emptyState: '- 상태 -', |
|||
states: { |
|||
hover: 'Hover', |
|||
active: 'Click', |
|||
'nth-of-type(2n)': '짝수/홀수' |
|||
} |
|||
}, |
|||
styleManager: { |
|||
empty: 'Style Manager 사용하려면, 먼저 element를 선택해주세요', |
|||
layer: '레이어', |
|||
fileButton: 'Images', |
|||
sectors: { |
|||
general: '기본설정', |
|||
layout: '레이아웃', |
|||
typography: '글꼴', |
|||
decorations: '꾸미기', |
|||
extra: 'Extra', |
|||
flex: 'Flex', |
|||
dimension: '크기 및 위치' |
|||
}, |
|||
// The core library generates the name by their `property` name
|
|||
properties: { |
|||
// float: 'Float',
|
|||
} |
|||
}, |
|||
traitManager: { |
|||
empty: 'Trait Manager 사용하려면, 먼저 element를 선택해주세요', |
|||
label: 'Component 설정', |
|||
traits: { |
|||
// The core library generates the name by their `name` property
|
|||
labels: { |
|||
// id: 'Id',
|
|||
// alt: 'Alt',
|
|||
// title: 'Title',
|
|||
// href: 'Href',
|
|||
}, |
|||
// In a simple trait, like text input, these are used on input attributes
|
|||
attributes: { |
|||
id: traitInputAttr, |
|||
alt: traitInputAttr, |
|||
title: traitInputAttr, |
|||
href: { placeholder: 'eg. https://google.com' } |
|||
}, |
|||
// In a trait like select, these are used to translate option names
|
|||
options: { |
|||
target: { |
|||
false: '현재 창', |
|||
_blank: '새 창' |
|||
} |
|||
} |
|||
} |
|||
} |
|||
}; |
|||
const traitInputAttr = { placeholder: 'eg. 텍스트 입력' }; |
|||
|
|||
export default { |
|||
assetManager: { |
|||
addButton: '이미지 추가', |
|||
inputPlh: 'http://path/to/the/image.jpg', |
|||
modalTitle: '이미지 선택', |
|||
uploadTitle: '원하는 파일을 여기에 놓거나 업로드를 위해 클릭', |
|||
}, |
|||
// Here just as a reference, GrapesJS core doesn't contain any block,
|
|||
// so this should be omitted from other local files
|
|||
blockManager: { |
|||
labels: { |
|||
// 'block-id': 'Block Label',
|
|||
}, |
|||
categories: { |
|||
// 'category-id': 'Category Label',
|
|||
}, |
|||
}, |
|||
domComponents: { |
|||
names: { |
|||
'': '상자', |
|||
wrapper: 'Body', |
|||
text: '텍스트', |
|||
comment: 'Comment', |
|||
image: '이미지', |
|||
video: '동영상', |
|||
label: 'Label', |
|||
link: '링크', |
|||
map: '지도', |
|||
tfoot: 'Table foot', |
|||
tbody: 'Table body', |
|||
thead: 'Table head', |
|||
table: 'Table', |
|||
row: 'Table row', |
|||
cell: 'Table cell', |
|||
}, |
|||
}, |
|||
deviceManager: { |
|||
device: 'Device', |
|||
devices: { |
|||
desktop: '데스크탑', |
|||
tablet: '태블릿', |
|||
mobileLandscape: '모바일 환경', |
|||
mobilePortrait: '모바일 Portrait', |
|||
}, |
|||
}, |
|||
panels: { |
|||
buttons: { |
|||
titles: { |
|||
preview: '미리보기', |
|||
fullscreen: '전체화면', |
|||
'sw-visibility': 'components 보기', |
|||
'export-template': '코드 보기', |
|||
'open-sm': 'Style Manager 열기', |
|||
'open-tm': '설정', |
|||
'open-layers': 'Layer Manager 열기', |
|||
'open-blocks': 'Blocks 열기', |
|||
}, |
|||
}, |
|||
}, |
|||
selectorManager: { |
|||
label: 'Classes', |
|||
selected: '선택된', |
|||
emptyState: '- 상태 -', |
|||
states: { |
|||
hover: 'Hover', |
|||
active: 'Click', |
|||
'nth-of-type(2n)': '짝수/홀수', |
|||
}, |
|||
}, |
|||
styleManager: { |
|||
empty: 'Style Manager 사용하려면, 먼저 element를 선택해주세요', |
|||
layer: '레이어', |
|||
fileButton: 'Images', |
|||
sectors: { |
|||
general: '기본설정', |
|||
layout: '레이아웃', |
|||
typography: '글꼴', |
|||
decorations: '꾸미기', |
|||
extra: 'Extra', |
|||
flex: 'Flex', |
|||
dimension: '크기 및 위치', |
|||
}, |
|||
// The core library generates the name by their `property` name
|
|||
properties: { |
|||
// float: 'Float',
|
|||
}, |
|||
}, |
|||
traitManager: { |
|||
empty: 'Trait Manager 사용하려면, 먼저 element를 선택해주세요', |
|||
label: 'Component 설정', |
|||
traits: { |
|||
// The core library generates the name by their `name` property
|
|||
labels: { |
|||
// id: 'Id',
|
|||
// alt: 'Alt',
|
|||
// title: 'Title',
|
|||
// href: 'Href',
|
|||
}, |
|||
// In a simple trait, like text input, these are used on input attributes
|
|||
attributes: { |
|||
id: traitInputAttr, |
|||
alt: traitInputAttr, |
|||
title: traitInputAttr, |
|||
href: { placeholder: 'eg. https://google.com' }, |
|||
}, |
|||
// In a trait like select, these are used to translate option names
|
|||
options: { |
|||
target: { |
|||
false: '현재 창', |
|||
_blank: '새 창', |
|||
}, |
|||
}, |
|||
}, |
|||
}, |
|||
}; |
|||
|
|||
@ -1,200 +1,200 @@ |
|||
const traitInputAttr = { placeholder: 'ex: Insira o texto' }; |
|||
|
|||
export default { |
|||
assetManager: { |
|||
addButton: 'Adicionar imagem', |
|||
inputPlh: 'http://caminho/para/a/imagem.jpg', |
|||
modalTitle: 'Selecionar imagem', |
|||
uploadTitle: 'Solte os arquivos aqui ou clique para enviar' |
|||
}, |
|||
// Here just as a reference, GrapesJS core doesn't contain any block,
|
|||
// so this should be omitted from other local files
|
|||
blockManager: { |
|||
labels: { |
|||
// 'block-id': 'Block Label',
|
|||
}, |
|||
categories: { |
|||
// 'category-id': 'Category Label',
|
|||
} |
|||
}, |
|||
domComponents: { |
|||
names: { |
|||
'': 'Box', |
|||
wrapper: 'Corpo', |
|||
text: 'Texto', |
|||
comment: 'Comentário', |
|||
image: 'Imagem', |
|||
video: 'Vídeo', |
|||
label: 'Label', |
|||
link: 'Link', |
|||
map: 'Mapa', |
|||
tfoot: 'Rodapé da tabela', |
|||
tbody: 'Corpo da tabela', |
|||
thead: 'Cabeçalho da tabela', |
|||
table: 'Tabela', |
|||
row: 'Linha da tabela', |
|||
cell: 'Célula da tabela', |
|||
section: 'Seção', |
|||
body: 'Corpo' |
|||
} |
|||
}, |
|||
deviceManager: { |
|||
device: 'Dispositivo', |
|||
devices: { |
|||
desktop: 'Desktop', |
|||
tablet: 'Tablet', |
|||
mobileLandscape: 'Celular, modo panorâmico', |
|||
mobilePortrait: 'Celular, modo retrato' |
|||
} |
|||
}, |
|||
panels: { |
|||
buttons: { |
|||
titles: { |
|||
preview: 'Pré-visualização', |
|||
fullscreen: 'Tela cheia', |
|||
'sw-visibility': 'Ver componentes', |
|||
'export-template': 'Ver código', |
|||
'open-sm': 'Abrir gerenciador de estilos', |
|||
'open-tm': 'Configurações', |
|||
'open-layers': 'Abrir gerenciador de camadas', |
|||
'open-blocks': 'Abrir blocos' |
|||
} |
|||
} |
|||
}, |
|||
selectorManager: { |
|||
label: 'Classes', |
|||
selected: 'Selecionado', |
|||
emptyState: '- Estado -', |
|||
states: { |
|||
hover: 'Hover', |
|||
active: 'Click', |
|||
'nth-of-type(2n)': 'Even/Odd' |
|||
} |
|||
}, |
|||
styleManager: { |
|||
empty: 'Selecione um elemento para usar o gerenciador de estilos', |
|||
layer: 'Camada', |
|||
fileButton: 'Imagens', |
|||
sectors: { |
|||
general: 'Geral', |
|||
layout: 'Disposição', |
|||
typography: 'Tipografia', |
|||
decorations: 'Decorações', |
|||
extra: 'Extra', |
|||
flex: 'Flex', |
|||
dimension: 'Dimensão' |
|||
}, |
|||
// The core library generates the name by their `property` name
|
|||
properties: { |
|||
float: 'Float', |
|||
display: 'Exibição', |
|||
position: 'Posição', |
|||
top: 'Topo', |
|||
right: 'Direita', |
|||
left: 'Esquerda', |
|||
bottom: 'Inferior', |
|||
width: 'Largura', |
|||
height: 'Altura', |
|||
'max-width': 'Largura Max.', |
|||
'max-height': 'Altura Max.', |
|||
margin: 'Margem', |
|||
'margin-top': 'Margem Superior', |
|||
'margin-right': 'Margem a Direita', |
|||
'margin-left': 'Margem a Esquerda', |
|||
'margin-bottom': 'Margem Inferior', |
|||
padding: 'Padding', |
|||
'padding-top': 'Padding Superior', |
|||
'padding-left': 'Padding a Esquerda', |
|||
'padding-right': 'Padding a Direita', |
|||
'padding-bottom': 'Padding Inferior', |
|||
'font-family': 'Tipo de letra', |
|||
'font-size': 'Tamanho da fonte', |
|||
'font-weight': 'Espessura da fonte', |
|||
'letter-spacing': 'Espaço entre letras', |
|||
color: 'Cor', |
|||
'line-height': 'Altura da linha', |
|||
'text-align': 'Alinhamento do texto', |
|||
'text-shadow': 'Sombra do texto', |
|||
'text-shadow-h': 'Sombra do texto: horizontal', |
|||
'text-shadow-v': 'Sombra do texto: vertical', |
|||
'text-shadow-blur': 'Desfoque da sombra do texto', |
|||
'text-shadow-color': 'Cor da sombra da fonte', |
|||
'border-top-left': 'Borda superior a esquerda', |
|||
'border-top-right': 'Borda superior a direita', |
|||
'border-bottom-left': 'Borda inferior a esquerda', |
|||
'border-bottom-right': 'Borda inferior a direita', |
|||
'border-radius-top-left': 'Raio da borda superior esquerda', |
|||
'border-radius-top-right': 'Raio da borda superior direita', |
|||
'border-radius-bottom-left': 'Raio da borda inferior esquerda', |
|||
'border-radius-bottom-right': 'Raio da borda inferior direita', |
|||
'border-radius': 'Raio da borda', |
|||
border: 'Borda', |
|||
'border-width': 'Largura da borda', |
|||
'border-style': 'Estilo da borda', |
|||
'border-color': 'Cor da borda', |
|||
'box-shadow': 'Sombra da box', |
|||
'box-shadow-h': 'Sombra da box: horizontal', |
|||
'box-shadow-v': 'Sombra da box: vertical', |
|||
'box-shadow-blur': 'Desfoque da sombra da box', |
|||
'box-shadow-spread': 'Extensão da sombra da box', |
|||
'box-shadow-color': 'Cor da sombra da box', |
|||
'box-shadow-type': 'Tipo de sombra da box', |
|||
background: 'Fundo', |
|||
'background-color': 'Cor de fundo', |
|||
'background-image': 'Imagem de fundo', |
|||
'background-repeat': 'Repetir fundo', |
|||
'background-position': 'Posição do fundo', |
|||
'background-attachment': 'Plugin de fundo', |
|||
'background-size': 'Tamanho do fundo', |
|||
transition: 'Transição', |
|||
'transition-property': 'Tipo de transição', |
|||
'transition-duration': 'Tempo de transição', |
|||
'transition-timing-function': 'Função do tempo da transição', |
|||
perspective: 'Perspectiva', |
|||
transform: 'Transformação', |
|||
'transform-rotate-x': 'Rotacionar horizontalmente', |
|||
'transform-rotate-y': 'Rotacionar verticalmente', |
|||
'transform-rotate-z': 'Rotacionar profundidade', |
|||
'transform-scale-x': 'Escalar horizontalmente', |
|||
'transform-scale-y': 'Escalar verticalmente', |
|||
'transform-scale-z': 'Escalar profundidade', |
|||
'flex-direction': 'Direção Flex', |
|||
'flex-wrap': 'Flex wrap', |
|||
'justify-content': 'Ajustar conteúdo', |
|||
'align-items': 'Alinhar elementos', |
|||
'align-content': 'Alinhar conteúdo', |
|||
order: 'Ordem', |
|||
'flex-basis': 'Base Flex', |
|||
'flex-grow': 'Crescimento Flex', |
|||
'flex-shrink': 'Contração Flex', |
|||
'align-self': 'Alinhar-se', |
|||
} |
|||
}, |
|||
traitManager: { |
|||
empty: 'Selecione um elemento para usar o gerenciador de características', |
|||
label: 'Configurações do componente', |
|||
traits: { |
|||
// The core library generates the name by their `name` property
|
|||
labels: { |
|||
// id: 'Id',
|
|||
// alt: 'Alt',
|
|||
// title: 'Title',
|
|||
// href: 'Href',
|
|||
}, |
|||
// In a simple trait, like text input, these are used on input attributes
|
|||
attributes: { |
|||
id: traitInputAttr, |
|||
alt: traitInputAttr, |
|||
title: traitInputAttr, |
|||
href: { placeholder: 'ex: https://google.com' } |
|||
}, |
|||
// In a trait like select, these are used to translate option names
|
|||
options: { |
|||
target: { |
|||
false: 'Esta janela', |
|||
_blank: 'Nova janela' |
|||
} |
|||
} |
|||
} |
|||
} |
|||
assetManager: { |
|||
addButton: 'Adicionar imagem', |
|||
inputPlh: 'http://caminho/para/a/imagem.jpg', |
|||
modalTitle: 'Selecionar imagem', |
|||
uploadTitle: 'Solte os arquivos aqui ou clique para enviar', |
|||
}, |
|||
// Here just as a reference, GrapesJS core doesn't contain any block,
|
|||
// so this should be omitted from other local files
|
|||
blockManager: { |
|||
labels: { |
|||
// 'block-id': 'Block Label',
|
|||
}, |
|||
categories: { |
|||
// 'category-id': 'Category Label',
|
|||
}, |
|||
}, |
|||
domComponents: { |
|||
names: { |
|||
'': 'Box', |
|||
wrapper: 'Corpo', |
|||
text: 'Texto', |
|||
comment: 'Comentário', |
|||
image: 'Imagem', |
|||
video: 'Vídeo', |
|||
label: 'Label', |
|||
link: 'Link', |
|||
map: 'Mapa', |
|||
tfoot: 'Rodapé da tabela', |
|||
tbody: 'Corpo da tabela', |
|||
thead: 'Cabeçalho da tabela', |
|||
table: 'Tabela', |
|||
row: 'Linha da tabela', |
|||
cell: 'Célula da tabela', |
|||
section: 'Seção', |
|||
body: 'Corpo', |
|||
}, |
|||
}, |
|||
deviceManager: { |
|||
device: 'Dispositivo', |
|||
devices: { |
|||
desktop: 'Desktop', |
|||
tablet: 'Tablet', |
|||
mobileLandscape: 'Celular, modo panorâmico', |
|||
mobilePortrait: 'Celular, modo retrato', |
|||
}, |
|||
}, |
|||
panels: { |
|||
buttons: { |
|||
titles: { |
|||
preview: 'Pré-visualização', |
|||
fullscreen: 'Tela cheia', |
|||
'sw-visibility': 'Ver componentes', |
|||
'export-template': 'Ver código', |
|||
'open-sm': 'Abrir gerenciador de estilos', |
|||
'open-tm': 'Configurações', |
|||
'open-layers': 'Abrir gerenciador de camadas', |
|||
'open-blocks': 'Abrir blocos', |
|||
}, |
|||
}, |
|||
}, |
|||
selectorManager: { |
|||
label: 'Classes', |
|||
selected: 'Selecionado', |
|||
emptyState: '- Estado -', |
|||
states: { |
|||
hover: 'Hover', |
|||
active: 'Click', |
|||
'nth-of-type(2n)': 'Even/Odd', |
|||
}, |
|||
}, |
|||
styleManager: { |
|||
empty: 'Selecione um elemento para usar o gerenciador de estilos', |
|||
layer: 'Camada', |
|||
fileButton: 'Imagens', |
|||
sectors: { |
|||
general: 'Geral', |
|||
layout: 'Disposição', |
|||
typography: 'Tipografia', |
|||
decorations: 'Decorações', |
|||
extra: 'Extra', |
|||
flex: 'Flex', |
|||
dimension: 'Dimensão', |
|||
}, |
|||
// The core library generates the name by their `property` name
|
|||
properties: { |
|||
float: 'Float', |
|||
display: 'Exibição', |
|||
position: 'Posição', |
|||
top: 'Topo', |
|||
right: 'Direita', |
|||
left: 'Esquerda', |
|||
bottom: 'Inferior', |
|||
width: 'Largura', |
|||
height: 'Altura', |
|||
'max-width': 'Largura Max.', |
|||
'max-height': 'Altura Max.', |
|||
margin: 'Margem', |
|||
'margin-top': 'Margem Superior', |
|||
'margin-right': 'Margem a Direita', |
|||
'margin-left': 'Margem a Esquerda', |
|||
'margin-bottom': 'Margem Inferior', |
|||
padding: 'Padding', |
|||
'padding-top': 'Padding Superior', |
|||
'padding-left': 'Padding a Esquerda', |
|||
'padding-right': 'Padding a Direita', |
|||
'padding-bottom': 'Padding Inferior', |
|||
'font-family': 'Tipo de letra', |
|||
'font-size': 'Tamanho da fonte', |
|||
'font-weight': 'Espessura da fonte', |
|||
'letter-spacing': 'Espaço entre letras', |
|||
color: 'Cor', |
|||
'line-height': 'Altura da linha', |
|||
'text-align': 'Alinhamento do texto', |
|||
'text-shadow': 'Sombra do texto', |
|||
'text-shadow-h': 'Sombra do texto: horizontal', |
|||
'text-shadow-v': 'Sombra do texto: vertical', |
|||
'text-shadow-blur': 'Desfoque da sombra do texto', |
|||
'text-shadow-color': 'Cor da sombra da fonte', |
|||
'border-top-left': 'Borda superior a esquerda', |
|||
'border-top-right': 'Borda superior a direita', |
|||
'border-bottom-left': 'Borda inferior a esquerda', |
|||
'border-bottom-right': 'Borda inferior a direita', |
|||
'border-radius-top-left': 'Raio da borda superior esquerda', |
|||
'border-radius-top-right': 'Raio da borda superior direita', |
|||
'border-radius-bottom-left': 'Raio da borda inferior esquerda', |
|||
'border-radius-bottom-right': 'Raio da borda inferior direita', |
|||
'border-radius': 'Raio da borda', |
|||
border: 'Borda', |
|||
'border-width': 'Largura da borda', |
|||
'border-style': 'Estilo da borda', |
|||
'border-color': 'Cor da borda', |
|||
'box-shadow': 'Sombra da box', |
|||
'box-shadow-h': 'Sombra da box: horizontal', |
|||
'box-shadow-v': 'Sombra da box: vertical', |
|||
'box-shadow-blur': 'Desfoque da sombra da box', |
|||
'box-shadow-spread': 'Extensão da sombra da box', |
|||
'box-shadow-color': 'Cor da sombra da box', |
|||
'box-shadow-type': 'Tipo de sombra da box', |
|||
background: 'Fundo', |
|||
'background-color': 'Cor de fundo', |
|||
'background-image': 'Imagem de fundo', |
|||
'background-repeat': 'Repetir fundo', |
|||
'background-position': 'Posição do fundo', |
|||
'background-attachment': 'Plugin de fundo', |
|||
'background-size': 'Tamanho do fundo', |
|||
transition: 'Transição', |
|||
'transition-property': 'Tipo de transição', |
|||
'transition-duration': 'Tempo de transição', |
|||
'transition-timing-function': 'Função do tempo da transição', |
|||
perspective: 'Perspectiva', |
|||
transform: 'Transformação', |
|||
'transform-rotate-x': 'Rotacionar horizontalmente', |
|||
'transform-rotate-y': 'Rotacionar verticalmente', |
|||
'transform-rotate-z': 'Rotacionar profundidade', |
|||
'transform-scale-x': 'Escalar horizontalmente', |
|||
'transform-scale-y': 'Escalar verticalmente', |
|||
'transform-scale-z': 'Escalar profundidade', |
|||
'flex-direction': 'Direção Flex', |
|||
'flex-wrap': 'Flex wrap', |
|||
'justify-content': 'Ajustar conteúdo', |
|||
'align-items': 'Alinhar elementos', |
|||
'align-content': 'Alinhar conteúdo', |
|||
order: 'Ordem', |
|||
'flex-basis': 'Base Flex', |
|||
'flex-grow': 'Crescimento Flex', |
|||
'flex-shrink': 'Contração Flex', |
|||
'align-self': 'Alinhar-se', |
|||
}, |
|||
}, |
|||
traitManager: { |
|||
empty: 'Selecione um elemento para usar o gerenciador de características', |
|||
label: 'Configurações do componente', |
|||
traits: { |
|||
// The core library generates the name by their `name` property
|
|||
labels: { |
|||
// id: 'Id',
|
|||
// alt: 'Alt',
|
|||
// title: 'Title',
|
|||
// href: 'Href',
|
|||
}, |
|||
// In a simple trait, like text input, these are used on input attributes
|
|||
attributes: { |
|||
id: traitInputAttr, |
|||
alt: traitInputAttr, |
|||
title: traitInputAttr, |
|||
href: { placeholder: 'ex: https://google.com' }, |
|||
}, |
|||
// In a trait like select, these are used to translate option names
|
|||
options: { |
|||
target: { |
|||
false: 'Esta janela', |
|||
_blank: 'Nova janela', |
|||
}, |
|||
}, |
|||
}, |
|||
}, |
|||
}; |
|||
|
|||
@ -1,3 +1,3 @@ |
|||
export default { |
|||
plugins: [] |
|||
plugins: [], |
|||
}; |
|||
|
|||
Some files were not shown because too many files changed in this diff
Loading…
Reference in new issue