/* EN */ export const GRID_OPERATORS = { string: { eq: "Is equal to", neq: "Is not equal to", startswith: "Starts with", contains: "Contains", doesnotcontain: "Does not contain", endswith: "Ends with" }, number: { eq: "Is equal to", neq: "Is not equal to", gte: "Is greater than or equal to", gt: "Is greater than", lte: "Is less than or equal to", lt: "Is less than" }, date: { eq: "Is equal to", neq: "Is not equal to", gte: "Is after or equal to", gt: "Is after", lte: "Is before or equal to", lt: "Is before" }, enums: { eq: "Is equal to", neq: "Is not equal to" } } export const GRID_GROUPING_MESSAGE = { empty: "Drag a column header and drop it here to group by that column" } export const GRID_PAGER_MESSAGES = { /* PAGER MESSAGES ****************************************************************************/ display: "{0} - {1} of {2} items", empty: "No items to display", page: "Page", of: "of {0}", itemsPerPage: "items per page", first: "Go to the first page", previous: "Go to the previous page", next: "Go to the next page", last: "Go to the last page", refresh: "Refresh", allPages: "All" /***************************************************************************/ } /* Ar */ export const GRID_COLUM_MENU_MESSAGE = { /* COLUMN MENU MESSAGES ****************************************************************************/ sortAscending: "Sort Ascending", sortDescending: "Sort Descending", filter: "Filter", columns: "Columns" /***************************************************************************/ } export const GRID_FILTER_MENU_MESSAGE = { /* FILTER MENU MESSAGES ***************************************************************************/ info: "Show items with value that:", // sets the text on top of the filter menu isTrue: "is true", // sets the text for "isTrue" radio button isFalse: "is false", // sets the text for "isFalse" radio button filter: "Filter", // sets the text for the "Filter" button clear: "Clear", // sets the text for the "Clear" button and: "And", or: "Or", selectValue: "-Select value-" /***************************************************************************/ } export const GRID_VALIDATOR_MESSAGES = { /* VALIDATOR MESSAGES ****************************************************************************/ required: "{0} is required", pattern: "{0} is not valid", min: "{0} should be greater than or equal to {1}", max: "{0} should be smaller than or equal to {1}", step: "{0} is not valid", email: "{0} is not valid email", url: "{0} is not valid URL", date: "{0} is not valid date" /***************************************************************************/ } export const GRID_IMAGE_BROWSER_MESSAGES = { /* IMAGE BROWSER MESSAGES ****************************************************************************/ uploadFile: "Upload", orderBy: "Arrange by", orderByName: "Name", orderBySize: "Size", directoryNotFound: "A directory with this name was not found.", emptyFolder: "Empty Folder", deleteFile: 'Are you sure you want to delete "{0}"?', invalidFileType: "The selected file \"{0}\" is not valid. Supported file types are {1}.", overwriteFile: "A file with name \"{0}\" already exists in the current directory. Do you want to overwrite it?", dropFilesHere: "drop files here to upload" /***************************************************************************/ } export const GRID_EDITOR_MESSAGES = { /* EDITOR MESSAGES ****************************************************************************/ bold: "Bold", italic: "Italic", underline: "Underline", strikethrough: "Strikethrough", superscript: "Superscript", subscript: "Subscript", justifyCenter: "Center text", justifyLeft: "Align text left", justifyRight: "Align text right", justifyFull: "Justify", insertUnorderedList: "Insert unordered list", insertOrderedList: "Insert ordered list", indent: "Indent", outdent: "Outdent", createLink: "Insert hyperlink", unlink: "Remove hyperlink", insertImage: "Insert image", insertHtml: "Insert HTML", fontName: "Select font family", fontNameInherit: "(inherited font)", fontSize: "Select font size", fontSizeInherit: "(inherited size)", formatBlock: "Format", foreColor: "Color", backColor: "Background color", style: "Styles", emptyFolder: "Empty Folder", uploadFile: "Upload", orderBy: "Arrange by:", orderBySize: "Size", orderByName: "Name", invalidFileType: "The selected file \"{0}\" is not valid. Supported file types are {1}.", deleteFile: 'Are you sure you want to delete "{0}"?', overwriteFile: 'A file with name "{0}" already exists in the current directory. Do you want to overwrite it?', directoryNotFound: "A directory with this name was not found.", imageWebAddress: "Web address", imageAltText: "Alternate text", dialogInsert: "Insert", dialogButtonSeparator: "or", dialogCancel: "Cancel" /***************************************************************************/ } export const GRID_SELECTED_ITEMS_MESSAGE = { selectedItems: "Selected Items" }