Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Status
colourYellow
title릴리즈 RELEASE 2.7.0 이상

에디터에서 사용할 메세지 리소스를 추가합니다.

동일한 키의 메세지가 있는 경우 덮어쓰기 됩니다

OR ABOVE


Add a message resource to be used in the editor.


If there is a message with the same key, it is overwritten..



Parameters:

NameTypeDescription
languageString메세지를 추가할 언어입니다. The language in which to add the message. ('ko', 'en', ... )
messagesObjectkey: 메세지 키Message key, value: 메세지 내용Message details


Example:

Code Block
languagejs
themeEmacs
var koMessages = {
	'myPlugin.message.synap': '사이냅',
	'myPlugin.message.editor': '에디터'
};
var enMessages = {
	'myPlugin.message.synap': 'Synap',
	'myPlugin.message.editor': 'Editor'
};
 
SynapEditor.addMessages('ko', koMessages);
SynapEditor.addMessages('en', enMessages);

...