모듈:Message box/localize: 두 판 사이의 차이

이삭위키
둘러보기로 이동 검색으로 이동
(새 문서: -- localize param, message return { msgi18n = {}, argi18n = { demospace = '데모공간', ["type"] = '종류', image = '그림', imageright = '오른쪽그림', style = '...)
 
편집 요약 없음
1번째 줄: 1번째 줄:
-- localize param, message
-- localize param, message
return {
return {
msgi18n = {},
type_map = {
argi18n = {
['신속'] = 'speedy',
demospace = '데모공간',
['삭제'] = 'delete',
["type"] = '종류',
['내용'] = 'content',
image = '그림',
['모양'] = 'style',
imageright = '오른쪽그림',
['이동'] = 'move',
style = '모양',
['보호'] = 'protection',
textstyle = '본문모양',
['안내'] = 'notice',     
text = '본문',
},
-- 'small' = '작게'
arg_map = {
-- ... = '크기'
['데모공간'] = 'demospace',
smallimage = '작은그림',
['종류'] = 'type',
smallimageright = '작은오른쪽그림',
['그림'] = 'image',
smalltext = '작은본문',
['오른쪽그림'] = 'imageright',
['모양'] = 'style',
['본문모양'] = 'textstyle',
['본문'] = 'text',
['작게'] = 'small',
['크기'] = 'small',
['작은그림'] = 'smallimage',
['작은오른쪽그림'] = 'smallimageright',
['작은본문'] = 'smalltext',
}
}
}
}

2015년 11월 9일 (월) 19:08 판

이 모듈에 대한 설명문서는 모듈:Message box/localize/설명문서에서 만들 수 있습니다

-- localize param, message
return {
	type_map = {
		['신속'] = 'speedy',
		['삭제'] = 'delete',
		['내용'] = 'content',
		['모양'] = 'style',
		['이동'] = 'move',
		['보호'] = 'protection',
		['안내'] = 'notice',      		
		},
	arg_map = {
		['데모공간'] = 'demospace',
		['종류'] = 'type',
		['그림'] = 'image',
		['오른쪽그림'] = 'imageright',
		['모양'] = 'style',
		['본문모양'] = 'textstyle',
		['본문'] = 'text',
		['작게'] = 'small',
		['크기'] = 'small',
		['작은그림'] = 'smallimage',
		['작은오른쪽그림'] = 'smallimageright',
		['작은본문'] = 'smalltext',
	}
}