Index: backoffice/js/languageConfig.js =================================================================== diff -u -rb2af5eef60b0cc50cc3982a901a3a393b2889fe8 -rb931ef02b95c27c61d598768ef2c6f1e752dcd73 --- backoffice/js/languageConfig.js (.../languageConfig.js) (revision b2af5eef60b0cc50cc3982a901a3a393b2889fe8) +++ backoffice/js/languageConfig.js (.../languageConfig.js) (revision b931ef02b95c27c61d598768ef2c6f1e752dcd73) @@ -103,11 +103,11 @@ // 컬럼 설정 var columnList = [ - { type: "text", title: "설명", wRatio: 0.16}, - { type: "text", title: "리눅스", wRatio: 0.21}, - { type: "text", title: "윈도우", wRatio: 0.21}, - { type: "text", title: "윈도우 2008 R2 & SP2", wRatio: 0.21}, - { type: "text", title: "유닉스", wRatio: 0.20}, + { type: "text", title: "구분", wRatio: 0.16}, + { type: "text", title: "키 (ID)", wRatio: 0.21}, + { type: "text", title: "KR (한국어)", wRatio: 0.21}, + { type: "text", title: "EN (영어)", wRatio: 0.21}, + { type: "text", title: "JP (일본어)", wRatio: 0.20}, ]; SpreadSheetFunctions.setColumns(columnList); @@ -123,7 +123,7 @@ SpreadSheetFunctions.setOptions(customOption); let data; - $.getJSON('./mock/engine_command.json', function(jsonData) { + $.getJSON('./mock/language_config.json', function(jsonData) { data = jsonData.map(arr => arr.slice(0,-1)); $($targetId).spreadsheet($.extend({}, { Index: backoffice/mock/language_config.json =================================================================== diff -u --- backoffice/mock/language_config.json (revision 0) +++ backoffice/mock/language_config.json (revision b931ef02b95c27c61d598768ef2c6f1e752dcd73) @@ -0,0 +1,23 @@ +[ + [ "Dashboard", + "Dashboard.Header", + "대시 보드", + "Dashboard", + "ダッシュボード", + "1" + ], + [ "Dashboard", + "Dashboard.Header.detail", + "통계 및 개요", + "Statistics and more", + "統計と概要", + "2" + ], + [ "Dashboard", + "Dashboard.Section.Header", + "통합 현황", + "Integration status", + "統合状況", + "3" + ] +] \ No newline at end of file