You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
387 lines
16 KiB
JavaScript
387 lines
16 KiB
JavaScript
var WebSquareLang = {
|
|
|
|
//core.js
|
|
E_core_lee: " 이정인 ",
|
|
|
|
//Actions.js
|
|
E_Actions_fileuploadPopupName: "File Uploading : %1",
|
|
|
|
//date.js
|
|
E_date_ShouldBeyyMMddFormat: "Input in yyyyMMdd format. Your input is %1.",
|
|
E_date_month_ShouldBeyyMMFormat: "Input in yyyyMM format. Your input is %1.",
|
|
E_date_hour_ShouldBeyyMMddHHFormat: "Input in yyyyMMddHH format. Your input is %1.",
|
|
E_date_minute_ShouldBeyyMMddHHmmFormat: "Input in yyyyMMddHHmm format. Your input is %1.",
|
|
E_date_minute_ShouldBeHHmmssFormat: "Input in HHmmss format. Your input is %1.",
|
|
E_date_minute_ShouldBeHHmmFormat: "Input in HHmm format. Your input is %1.",
|
|
E_date_ShouldBeNumberFormat: "Input numeric values. Your input is %1.",
|
|
E_date_YearRange: "Input the year between %1 and %2. Your input is %3.",
|
|
E_date_MonthRange: "Input the month between %1 and %2. Your input is %3.",
|
|
E_date_DayRange: "Input the day between %1 and %2. Your input is %3.",
|
|
E_date_HourRange: "Input the hour between %1 and %2. Your input is %3.",
|
|
E_date_MinuteRange: "Input the minute between %1 and %2. Your input is %3.",
|
|
E_date_SecondRange: "Input the second between %1 and %2. Your input is %3.",
|
|
|
|
//exception.js
|
|
E_exception_ErrorOccursSeeLog: "An error occurred. See the following messages.\n%1",
|
|
E_exception_IERuntimeError: "Runtime Error\n Line No. : %1 \n Character : %2 \n Code : %3 \n URL : %4 \n Error : %5 \n Original Text : %6 ",
|
|
E_exception_FFRuntimeError: "Runtime Error\n Line No. : %1 \n URL : %2 \n Error : %3 \n Original Text : %4 ",
|
|
|
|
//form.js
|
|
E_form_TimeKeyUpWrongHourFormat: "Invalid hour format.",
|
|
E_form_TimeKeyUpWrongMinuteFormat: "Invalid minute format.",
|
|
|
|
//initializer.js
|
|
E_initializer_XMLLoadFailError: "Fail to read the WebSquare XML File. Please check the URL. [ %1 ]",
|
|
E_initializer_XMLLoadFailError1: "Fail to process the WebSquare XML File. [ %1 ]",
|
|
|
|
//logger.js
|
|
E_logger_ContextmenuSeeLog: "View logs",
|
|
E_logger_ContextmenuSeePerformanceLog: "View performance logs",
|
|
E_logger_ContextmenuSeeAddress: "Address",
|
|
E_logger_ContextmenuSeeSource: "View source",
|
|
E_logger_ContextmenuSeeCollection: "View dataCollection",
|
|
E_logger_ContextmenuSeeInstance: "View Instance",
|
|
E_logger_ContextmenuSeeFiddle: "View fiddle",
|
|
E_logger_ContextmenuStopDebugOnScreen: "Stop debugging on this screen",
|
|
E_logger_ContextmenuStartDebugOnScreen: "Start debugging on this screen",
|
|
E_logger_ContextmenuStopDebugOnSystem: "Stop debugging on the system",
|
|
E_logger_ContextmenuStartDebugOnSystem: "Start debugging on the system",
|
|
E_logger_ContextmenuPrint: "Print",
|
|
E_logger_ContextmenuRefresh: "Refresh",
|
|
E_logger_ContextmenuPageReload: "Refresh All",
|
|
E_logger_ContextmenuPageReloadWframe: "Refresh",
|
|
E_logger_ContextmenuBrowserReload: "Reset Browser",
|
|
E_logger_ContectmenuFileInfo: "File Info",
|
|
E_logger_ContextmenuVersion: "Version",
|
|
E_logger_ContextmenuChangeClientName: "Change Client Name",
|
|
E_logger_EnterPassword: "Please enter the password.",
|
|
E_logger_IncorrectPassword: "The password is incorrect.",
|
|
E_logger_ObjectDisabled: "The object is disabled.",
|
|
E_logger_UsedXSLInfo: "XSL : %1",
|
|
E_logger_NoUsedXSLInfo: "There is no XSL File to draw this component.",
|
|
E_logger_InnerBlindObject: "[This object cannot attach inner structure.]\n\n",
|
|
E_logger_InitDueToOverline: "%1 [%2] Logs exceeded 500 lines. Initializing logs.",
|
|
E_logger_ObjectInfo: "Object Information",
|
|
E_logger_XSLInfo: "XSL Information",
|
|
E_logger_changeClientName: "Please enter the name of the client for remote debugging.",
|
|
|
|
//Model.js
|
|
E_Model_NoChildNodeOfInstance: "The instance does not have a child node.",
|
|
|
|
//ModelUtil.js
|
|
E_ModelUtil_NoSubmissionObjectWithID: "The submission object [%1] does not exist.",
|
|
E_ModelUtil_NoSubmissionObject: "The submission object does not exist.",
|
|
|
|
//net.js
|
|
E_net_PopupBlocked: "Pop-ups are blocked.",
|
|
|
|
//Parser.js
|
|
E_Parser_MoreThanOneHeadError: "WebSquare allows only one <head> tag in the XML file. \n But this file has '%1' <head> tags.",
|
|
E_Parser_MoreThanOneBodyError: "WebSquare allows only one <body> tag in the XML file. \n But this file has '%1' <body> tags.",
|
|
|
|
//WebSquareDocument.js
|
|
E_WebSquareDocument_MoreThanOneBodyError: "WebSquare allows only one <body> tag in the XML file. \n But this file has '%1' <body> tags.",
|
|
|
|
//xml.js
|
|
E_xml_XMLUnsupportedBrowser: "The current browser does not support XML.",
|
|
E_xml_ErrorOccurLoadingXMLWithURL: "An error occurred during XML loading.\n\nURL : %1",
|
|
E_xml_ErrorOccurLoadingXML: "An error occurred during XML loading.\n",
|
|
E_xml_ErrorOccurParsingXML: "An error occurred during XML parsing.\n",
|
|
|
|
//core.js
|
|
E_core_AjaxUnsupportedBrowser: "The current browser does not support Ajax.",
|
|
E_core_NoPluginError: "Plugin[ %1 ] does not exist.",
|
|
E_core_NoModuleError: "Module[ %1 ] does not exist.",
|
|
|
|
//event.js
|
|
E_event_AddEventError: "Error: an HTML object doesn't have ID or the current version does not support the action[ %1 ].",
|
|
|
|
E_dc_duplicated_Msg: "id[%1] is duplicated. The existing %2 has been deleted and newly created.",
|
|
|
|
E_comp_duplicated_Msg: "id[%1] is duplicated. Check the source code.",
|
|
|
|
//logMsg.html
|
|
E_logMsg_LogInfo: "Log Information.",
|
|
E_logMsg_LogAutoRenewal: "Auto updating...",
|
|
E_logMsg_LogAutoRenewalStop: "Stopped auto updating.",
|
|
|
|
//viewSource.html
|
|
E_viewSource_title: "Source Information.",
|
|
|
|
//viewCollection.html
|
|
E_viewCollection_title: "Collection Information.",
|
|
|
|
//viewInstance.html
|
|
E_viewInstance_title: "Instance Information.",
|
|
|
|
//debugMsg.html
|
|
E_debugMsg_DebugInfo: "Debug Information.",
|
|
|
|
//processMsg.html
|
|
E_processMsg_Processing: "Processing...",
|
|
|
|
//errorMsg.html
|
|
E_errorMsg_ErrorInfo: "Error Information.",
|
|
|
|
//validator
|
|
V_error_minLength: "Enter minimum %1 digit(s).",
|
|
V_error_maxLength: "Enter not more than %1 digit(s).",
|
|
V_error_minByteLength: "Enter minimum %1 byte(s).",
|
|
V_error_maxByteLength: "Enter not more than %1 byte(s).",
|
|
V_error_validCondition: "The execution conditions of the validator are not satisfied.",
|
|
V_error_no_valiator: "Validator does not exist or it is not an object.",
|
|
V_error_mandatory: "Mandatory",
|
|
V_error_allowChar: "String %1 is allowed.",
|
|
V_error_ignoreChar: "String %1 is not allowed.",
|
|
V_error_date: "Invalid date format",
|
|
V_error_float: "Invalid float format",
|
|
AllText: "all",
|
|
|
|
//formatter
|
|
F_dateFormat_daynames_abbr: "Mon,Tue,Wed,Thu,Fri,Sat,Sun",
|
|
F_dateFormat_daynames_full: "Monday,Tuesday,Wednesday,Thursday,Friday,Saturday,Sunday",
|
|
|
|
IC_Mask: "yyyy-MM-dd",
|
|
IC_Delimiter: "-",
|
|
IC_invalidCalendarSelect: "Invalid date format",
|
|
|
|
GRID_noResultMsg: "There is no search result.",
|
|
GRID_useFilterEmptyMsg: " Empty",
|
|
|
|
SelectBox_all: "-all-",
|
|
SelectBox_choose: "-choose-",
|
|
|
|
//CheckCombobox
|
|
CheckCombobox_all: "choose all",
|
|
CheckCombobox_choose: "choose",
|
|
CheckCombobox_allOption_label: "choose all",
|
|
|
|
// Calendar
|
|
Calendar_select_year: "Select year",
|
|
Calendar_select_month: "Select month",
|
|
Calendar_select_hour: "Select hour",
|
|
Calendar_valuetype_hour: "h",
|
|
Calendar_select_minute: "Select minute",
|
|
Calendar_valuetype_minute: "m",
|
|
Calendar_select_second: "Select second",
|
|
Calendar_valuetype_second: "s",
|
|
Calendar_previous_year: "Previous Year",
|
|
Calendar_previous_month: "Previous Month",
|
|
Calendar_next_year: "Next Year",
|
|
Calendar_next_month: "Next Month",
|
|
Calendar_ok: "OK",
|
|
Calendar_open: "Calendar",
|
|
Calendar_close: "Close",
|
|
Calendar_cancel: "Cancel",
|
|
Calendar_today: "Today",
|
|
Calendar_name: "Calendar",
|
|
Calendar_caption: "Calendar",
|
|
Calendar_summary: "Calendar: Select the date.",
|
|
Calendar_weekdaynames_0: "Sunday",
|
|
Calendar_weekdaynames_1: "Monday",
|
|
Calendar_weekdaynames_2: "Tuesday",
|
|
Calendar_weekdaynames_3: "Wednesday",
|
|
Calendar_weekdaynames_4: "Thursday",
|
|
Calendar_weekdaynames_5: "Friday",
|
|
Calendar_weekdaynames_6: "Saturday",
|
|
Calendar_tooltip: "%2-%3-%1",
|
|
Calendar_select_title: "selected date",
|
|
Calendar_start: "calendar start",
|
|
|
|
//date
|
|
Date_err_1900: "Year starts from 1900.",
|
|
Date_err_12: "Month cannot be greater than 12.",
|
|
Date_err_31: "Day cannot be greater than 31.",
|
|
Date_err_29: "February has 29 days.",
|
|
Date_err_28: "February has 28 days.",
|
|
Date_err_30: "has 30 days.",
|
|
|
|
//multiupload
|
|
MultiUpload_all: "All files",
|
|
MultiUpload_image: "Pictures",
|
|
MultiUpload_err_fileExist: "File already exists (%1)",
|
|
MultiUpload_err_maxCountExceed: "The upload count is limited to %1.",
|
|
MultiUpload_err_fileSizeExceed: "Upload file size is limited to %1 ",
|
|
MultiUpload_err_HTTPExcpetion: "HTTP error occured. (status : %1)",
|
|
|
|
// Pagelist
|
|
Pagelist_first_page: "First Page",
|
|
Pagelist_previous_page: "Previous Page",
|
|
Pagelist_previous: "Previous",
|
|
Pagelist_next_page: "Next Page",
|
|
Pagelist_next: "Next",
|
|
pagelist_nextList_page: "Next list of pages",
|
|
pagelist_previousList_page: "Previous list of pages",
|
|
Pagelist_last_page: "Last Page",
|
|
Pagelist_selected: "%1 selected",
|
|
|
|
// slider
|
|
Slider_warning1: "Enter a value between %1 and %2.",
|
|
Slider_warning2: "Increase the value between %1 and %2 by %3.",
|
|
|
|
// Window
|
|
Window_minimize: "Minimize",
|
|
Window_restore: "Restore",
|
|
Window_close: "Close",
|
|
Window_popup: "Popup",
|
|
Window_statusMsg: "Loading...",
|
|
Window_popup_start: "popup start",
|
|
|
|
// WindowContainer
|
|
WindowContainer_controlIcon_maximize: "Maximize/Restore",
|
|
WindowContainer_controlIcon_vertical: "Tile Vertically",
|
|
WindowContainer_controlIcon_horizontal: "Tile Horizontally",
|
|
WindowContainer_controlIcon_cascade: "Cascade",
|
|
WindowContainer_controlIcon_sequential: "Grid",
|
|
WindowContainer_controlIcon_closeAll: "Close All",
|
|
WindowContainer_controlIcon_closeOthers: "Close All except Active window",
|
|
WindowContainer_controlIcon_windowList: "Open the list of windows",
|
|
WindowContainer_maxNum_warning: "Maximum %1 screens can be displayed.",
|
|
|
|
// WidgetContainer
|
|
WidgetContainer_setCols_warning: "Invalid cols.",
|
|
|
|
// DatePicker
|
|
DatePicker_yearSuffix: "$blank",
|
|
DatePicker_monthNames: "Jan,Feb,Mar,Apr,May,Jun,Jul,Aug,Sep,Oct,Nov,Dec",
|
|
DatePicker_dateSuffix: "$blank",
|
|
DatePicker_ampm: "am,pm",
|
|
|
|
// chart
|
|
Chart_context_chartType: "Chart Type",
|
|
Chart_context_chartOption: "Chart Option",
|
|
Chart_context_chartStyle: "Chart Style",
|
|
Chart_context_seriseOption: "Series Option",
|
|
Chart_main_axis: "Main Axis",
|
|
Chart_auxiliary_axis: "Auxiliary Axis",
|
|
Chart_warning_msg1: "Incorrect data",
|
|
|
|
// tabControl
|
|
TabControl_maxNum_warning: "Maximum %1 tabs are allowed",
|
|
TabControl_close: "close",
|
|
TabControl_right_corner: "Right-corner Image",
|
|
TabControl_left_corner: "Left-corner Image",
|
|
TabControl_warning1: "[#title] already exists. Click OK to use the existing tab, or click Cancel to create a new tab.",
|
|
TabControl_previous_tab: "previous tab",
|
|
TabControl_next_tab: "next tab",
|
|
TabControl_tab_list: "list of tab",
|
|
|
|
//autoComplete
|
|
AutoComplete_addItem_invalid: "An item value is already in %2 at %1. Item value should be unique.",
|
|
AutoComplete_all: "-all-",
|
|
AutoComplete_choose: "-choose-",
|
|
// grid
|
|
Grid_sort_none: "Unsort",
|
|
Grid_sort_asc: "Ascending Sort",
|
|
Grid_sort_desc: "Descending Sort",
|
|
|
|
Grid_filter_title: "Filter",
|
|
Grid_filter_search_label: "Search",
|
|
Grid_filter_condition1: "Start character",
|
|
Grid_filter_condition2: "Start character to be excluded",
|
|
Grid_filter_condition3: "End characters",
|
|
Grid_filter_condition4: "End character to be excluded",
|
|
Grid_filter_condition5: "Include",
|
|
Grid_filter_condition6: "Exclude",
|
|
Grid_filter_info_Label1: "? Symbol can represent a single character.",
|
|
Grid_filter_info_Label2: "* Symbol can represent multiple characters.",
|
|
Grid_filter_confirm: "OK",
|
|
Grid_filter_cancel: "Cancel",
|
|
Grid_Customized_Filter: "Customized Filter",
|
|
|
|
Grid_column_hide: "Hide",
|
|
Grid_column_showAll: "Show All Columns",
|
|
Grid_column_fix: "Fix",
|
|
Grid_column_unfix: "Unfix All Columns",
|
|
Grid_column_adjustWidth: "Adjust Width",
|
|
Grid_column_adjustAuto: "Adjust All Column Widths",
|
|
Grid_fold_all: "Fold All",
|
|
Grid_unfold_all: "Unfold All",
|
|
Grid_ungroup_all: "Ungroup All",
|
|
Grid_ungroup: "Ungroup",
|
|
Grid_group: "Group",
|
|
Grid_noResultMessage: "No search result.",
|
|
Grid_scrollMsg: "Updating...",
|
|
Grid_all: "-all-",
|
|
Grid_checked_all: "choose all",
|
|
|
|
Grid_warning1: "The selected column is not a check box.",
|
|
Grid_warning2: "Incorrect data format. Input true or false.",
|
|
Grid_warning3: "Not a check box nor radio button.",
|
|
Grid_warning4: "[%1] Cannot change %2",
|
|
Grid_warning5: " %1 This grid does not support the adaptive mode.",
|
|
Grid_warning6: "[%1] The groupby is enabled and the lazyDrawHiddenColumn is disabled.",
|
|
Grid_warning7: "%1 : rowSpan is enabled the lazyDrawHiddenColumn is disabled.",
|
|
Grid_warning8: "Cell count exceeding the limit.\n limit : %1",
|
|
Grid_warning9: "Data size exceeding the limit.\n limit : %1 byte",
|
|
Grid_warning10: "Row count exceeding the limit.\n limit : %1",
|
|
Grid_caption: " displayed in the table",
|
|
Grid_caption2: " is ",
|
|
Grid_footer_caption: "total is displayed in the table",
|
|
Grid_title: " checked",
|
|
Grid_title_not_choose: " unchecked",
|
|
Grid_button: " button",
|
|
Grid_select: " select",
|
|
Grid_calendar: " calendar",
|
|
Grid_secret: " secret",
|
|
Grid_text: "text",
|
|
Grid_link: " link",
|
|
|
|
Grid_rowStatus_initialValue: "initial value",
|
|
Grid_rowStatus_update: "updated",
|
|
Grid_rowStatus_insert: "inserted",
|
|
Grid_rowStatus_delete: "deleted",
|
|
Grid_rowStatus_D_After_C: "deleted after insertion",
|
|
|
|
//fwGanttChart
|
|
fwGanttChart_ampm: "AM,PM",
|
|
fwGanttChart_yearSuffix: "$blank",
|
|
fwGanttChart_monthSuffix: "$blank",
|
|
fwGanttChart_dateSuffix: "$blank",
|
|
fwGanttChart_timeGap3Label: "midnight,am 3,am 6,am 9,noon,pm 3,pm 6,pm 9",
|
|
fwGanttChart_timeGap6Label: "midnight,am 6,noon,pm 6",
|
|
fwGanttChart_quarterNames: "Q1,Q2,Q3,Q4",
|
|
fwGanttChart_monthNames: "Jan,Feb,Mar,Apr,May,Jun,Jul,Aug,Sep,Oct,Nov,Dec",
|
|
|
|
// upload
|
|
Upload_ignore_spaces: "Ignore blank spaces",
|
|
Upload_include_spaces: "Include blank spaces",
|
|
Upload_advanced: "Advanced",
|
|
Upload_hidden_values: "Hidden values",
|
|
Upload_include: "Include",
|
|
Upload_not_include: "Not include",
|
|
Upload_fill_hidden: "Fill Hidden",
|
|
Upload_sheet_no: "Sheet No",
|
|
Upload_starting_row: "Start row",
|
|
Upload_starting_col: "Start col",
|
|
Upload_header: "Header",
|
|
Upload_footer: "Footer",
|
|
Upload_file: "Upload File",
|
|
Upload_fill: "fill",
|
|
Upload_ignore: "ignore",
|
|
Upload_pwd: "Password",
|
|
|
|
Upload_msg1: "Temporary Frame for File Uploading",
|
|
Upload_msg2: "File size exceeding the limit.",
|
|
Upload_msg3: "Normal processing failed.",
|
|
Upload_msg4: "Check the file extension.",
|
|
Upload_msg5: "Failed to reflect on the grid.",
|
|
Upload_msg6: "Collecting data..",
|
|
Upload_msg7: "Data conversion completed.",
|
|
Upload_msg8: "The password is incorrect.",
|
|
Upload_msg9: "Check the file extension.",
|
|
Upload_msg10: "An error occurred during DRM.",
|
|
Upload_msg11: "Row count exceeding the limit.",
|
|
Upload_msg12: "Invalid file format.",
|
|
Upload_msg13: "Invalid cell format",
|
|
Upload_msg14: "Cell count exceeding the limit.",
|
|
Upload_msg15: "This file is encryped.",
|
|
Upload_msg16: "Not support Excel 5.0/7.0",
|
|
Upload_msg17: "Does not sheet number.",
|
|
Upload_warning1: "Inaccessible for security purposes.",
|
|
//itemTable
|
|
itemTable_confirm: "confirm",
|
|
itemTable_cancel: "cancel",
|
|
//pivot
|
|
Pivot_canNotMoveToHiddenList: "This Column can not move to Hidden List."
|
|
}; |