gridx-rails 1.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +15 -0
- data/LICENSE +2 -0
- data/README.md +18 -0
- data/Rakefile +36 -0
- data/app/assets/images/gridx/mobile/themes/iphone/images/ajax-loader.gif +0 -0
- data/app/assets/images/gridx/mobile/themes/iphone/images/arrow.png +0 -0
- data/app/assets/images/gridx/resources/images/checkboxpartial.png +0 -0
- data/app/assets/images/gridx/resources/images/checkboxpartialdisabled.png +0 -0
- data/app/assets/images/gridx/resources/images/claro-grid-header-onepixel.bmp +0 -0
- data/app/assets/images/gridx/resources/images/dndCopy.png +0 -0
- data/app/assets/images/gridx/resources/images/dndMove.png +0 -0
- data/app/assets/images/gridx/resources/images/dndNoCopy.png +0 -0
- data/app/assets/images/gridx/resources/images/dndNoMove.png +0 -0
- data/app/assets/images/gridx/resources/images/gridxCellChanged.png +0 -0
- data/app/assets/images/gridx/resources/images/header.png +0 -0
- data/app/assets/images/gridx/resources/images/header_shadow.png +0 -0
- data/app/assets/images/gridx/resources/images/loadingAnimation.gif +0 -0
- data/app/assets/images/gridx/resources/images/row_back.png +0 -0
- data/app/assets/images/gridx/resources/images/row_back_changed.png +0 -0
- data/app/assets/images/gridx/resources/images/sprite_icons.png +0 -0
- data/app/assets/images/gridx/resources/images/treeExpandImages.png +0 -0
- data/app/assets/images/gridx/resources/images/treeExpand_loading.gif +0 -0
- data/app/assets/javascripts/gridx/Grid.js +224 -0
- data/app/assets/javascripts/gridx/GridCommon.js +52 -0
- data/app/assets/javascripts/gridx/allModules.js +105 -0
- data/app/assets/javascripts/gridx/core/Cell.js +86 -0
- data/app/assets/javascripts/gridx/core/Column.js +183 -0
- data/app/assets/javascripts/gridx/core/Core.js +447 -0
- data/app/assets/javascripts/gridx/core/Row.js +174 -0
- data/app/assets/javascripts/gridx/core/_Module.js +285 -0
- data/app/assets/javascripts/gridx/core/model/Model.js +495 -0
- data/app/assets/javascripts/gridx/core/model/_Extension.js +84 -0
- data/app/assets/javascripts/gridx/core/model/cache/Async.js +469 -0
- data/app/assets/javascripts/gridx/core/model/cache/Sync.js +59 -0
- data/app/assets/javascripts/gridx/core/model/cache/_Cache.js +386 -0
- data/app/assets/javascripts/gridx/core/model/extensions/ClientFilter.js +303 -0
- data/app/assets/javascripts/gridx/core/model/extensions/FormatSort.js +103 -0
- data/app/assets/javascripts/gridx/core/model/extensions/Mark.js +370 -0
- data/app/assets/javascripts/gridx/core/model/extensions/Modify.js +418 -0
- data/app/assets/javascripts/gridx/core/model/extensions/Move.js +429 -0
- data/app/assets/javascripts/gridx/core/model/extensions/Query.js +50 -0
- data/app/assets/javascripts/gridx/core/model/extensions/Sort.js +81 -0
- data/app/assets/javascripts/gridx/core/util.js +13 -0
- data/app/assets/javascripts/gridx/mobile/Grid.js +300 -0
- data/app/assets/javascripts/gridx/mobile/LazyLoad.js +88 -0
- data/app/assets/javascripts/gridx/mobile/PullRefresh.js +117 -0
- data/app/assets/javascripts/gridx/mobile/Sort.js +66 -0
- data/app/assets/javascripts/gridx/mobile/nls/LazyLoad.js +38 -0
- data/app/assets/javascripts/gridx/mobile/nls/PullRefresh.js +39 -0
- data/app/assets/javascripts/gridx/mobile/nls/ar/LazyLoad.js +6 -0
- data/app/assets/javascripts/gridx/mobile/nls/ar/PullRefresh.js +7 -0
- data/app/assets/javascripts/gridx/mobile/nls/ar/common.js +5 -0
- data/app/assets/javascripts/gridx/mobile/nls/bg/LazyLoad.js +6 -0
- data/app/assets/javascripts/gridx/mobile/nls/bg/PullRefresh.js +7 -0
- data/app/assets/javascripts/gridx/mobile/nls/bg/common.js +5 -0
- data/app/assets/javascripts/gridx/mobile/nls/ca/LazyLoad.js +6 -0
- data/app/assets/javascripts/gridx/mobile/nls/ca/PullRefresh.js +7 -0
- data/app/assets/javascripts/gridx/mobile/nls/ca/common.js +5 -0
- data/app/assets/javascripts/gridx/mobile/nls/common.js +37 -0
- data/app/assets/javascripts/gridx/mobile/nls/cs/LazyLoad.js +6 -0
- data/app/assets/javascripts/gridx/mobile/nls/cs/PullRefresh.js +7 -0
- data/app/assets/javascripts/gridx/mobile/nls/cs/common.js +5 -0
- data/app/assets/javascripts/gridx/mobile/nls/da/LazyLoad.js +6 -0
- data/app/assets/javascripts/gridx/mobile/nls/da/PullRefresh.js +7 -0
- data/app/assets/javascripts/gridx/mobile/nls/da/common.js +5 -0
- data/app/assets/javascripts/gridx/mobile/nls/de/LazyLoad.js +6 -0
- data/app/assets/javascripts/gridx/mobile/nls/de/PullRefresh.js +7 -0
- data/app/assets/javascripts/gridx/mobile/nls/de/common.js +5 -0
- data/app/assets/javascripts/gridx/mobile/nls/el/LazyLoad.js +6 -0
- data/app/assets/javascripts/gridx/mobile/nls/el/PullRefresh.js +7 -0
- data/app/assets/javascripts/gridx/mobile/nls/el/common.js +5 -0
- data/app/assets/javascripts/gridx/mobile/nls/es/LazyLoad.js +6 -0
- data/app/assets/javascripts/gridx/mobile/nls/es/PullRefresh.js +7 -0
- data/app/assets/javascripts/gridx/mobile/nls/es/common.js +5 -0
- data/app/assets/javascripts/gridx/mobile/nls/fi/LazyLoad.js +6 -0
- data/app/assets/javascripts/gridx/mobile/nls/fi/PullRefresh.js +7 -0
- data/app/assets/javascripts/gridx/mobile/nls/fi/common.js +5 -0
- data/app/assets/javascripts/gridx/mobile/nls/fr/LazyLoad.js +6 -0
- data/app/assets/javascripts/gridx/mobile/nls/fr/PullRefresh.js +7 -0
- data/app/assets/javascripts/gridx/mobile/nls/fr/common.js +5 -0
- data/app/assets/javascripts/gridx/mobile/nls/he/LazyLoad.js +6 -0
- data/app/assets/javascripts/gridx/mobile/nls/he/PullRefresh.js +7 -0
- data/app/assets/javascripts/gridx/mobile/nls/he/common.js +5 -0
- data/app/assets/javascripts/gridx/mobile/nls/hr/LazyLoad.js +6 -0
- data/app/assets/javascripts/gridx/mobile/nls/hr/PullRefresh.js +7 -0
- data/app/assets/javascripts/gridx/mobile/nls/hr/common.js +5 -0
- data/app/assets/javascripts/gridx/mobile/nls/hu/LazyLoad.js +6 -0
- data/app/assets/javascripts/gridx/mobile/nls/hu/PullRefresh.js +7 -0
- data/app/assets/javascripts/gridx/mobile/nls/hu/common.js +5 -0
- data/app/assets/javascripts/gridx/mobile/nls/it/LazyLoad.js +6 -0
- data/app/assets/javascripts/gridx/mobile/nls/it/PullRefresh.js +7 -0
- data/app/assets/javascripts/gridx/mobile/nls/it/common.js +5 -0
- data/app/assets/javascripts/gridx/mobile/nls/ja/LazyLoad.js +6 -0
- data/app/assets/javascripts/gridx/mobile/nls/ja/PullRefresh.js +7 -0
- data/app/assets/javascripts/gridx/mobile/nls/ja/common.js +5 -0
- data/app/assets/javascripts/gridx/mobile/nls/kk/LazyLoad.js +6 -0
- data/app/assets/javascripts/gridx/mobile/nls/kk/PullRefresh.js +7 -0
- data/app/assets/javascripts/gridx/mobile/nls/kk/common.js +5 -0
- data/app/assets/javascripts/gridx/mobile/nls/ko/LazyLoad.js +6 -0
- data/app/assets/javascripts/gridx/mobile/nls/ko/PullRefresh.js +7 -0
- data/app/assets/javascripts/gridx/mobile/nls/ko/common.js +5 -0
- data/app/assets/javascripts/gridx/mobile/nls/nb/LazyLoad.js +6 -0
- data/app/assets/javascripts/gridx/mobile/nls/nb/PullRefresh.js +7 -0
- data/app/assets/javascripts/gridx/mobile/nls/nb/common.js +5 -0
- data/app/assets/javascripts/gridx/mobile/nls/nl/LazyLoad.js +6 -0
- data/app/assets/javascripts/gridx/mobile/nls/nl/PullRefresh.js +7 -0
- data/app/assets/javascripts/gridx/mobile/nls/nl/common.js +5 -0
- data/app/assets/javascripts/gridx/mobile/nls/pl/LazyLoad.js +6 -0
- data/app/assets/javascripts/gridx/mobile/nls/pl/PullRefresh.js +7 -0
- data/app/assets/javascripts/gridx/mobile/nls/pl/common.js +5 -0
- data/app/assets/javascripts/gridx/mobile/nls/pt/LazyLoad.js +6 -0
- data/app/assets/javascripts/gridx/mobile/nls/pt/PullRefresh.js +7 -0
- data/app/assets/javascripts/gridx/mobile/nls/pt/common.js +5 -0
- data/app/assets/javascripts/gridx/mobile/nls/pt-pt/LazyLoad.js +6 -0
- data/app/assets/javascripts/gridx/mobile/nls/pt-pt/PullRefresh.js +7 -0
- data/app/assets/javascripts/gridx/mobile/nls/pt-pt/common.js +5 -0
- data/app/assets/javascripts/gridx/mobile/nls/ro/LazyLoad.js +6 -0
- data/app/assets/javascripts/gridx/mobile/nls/ro/PullRefresh.js +7 -0
- data/app/assets/javascripts/gridx/mobile/nls/ro/common.js +5 -0
- data/app/assets/javascripts/gridx/mobile/nls/ru/LazyLoad.js +6 -0
- data/app/assets/javascripts/gridx/mobile/nls/ru/PullRefresh.js +7 -0
- data/app/assets/javascripts/gridx/mobile/nls/ru/common.js +5 -0
- data/app/assets/javascripts/gridx/mobile/nls/sk/LazyLoad.js +6 -0
- data/app/assets/javascripts/gridx/mobile/nls/sk/PullRefresh.js +7 -0
- data/app/assets/javascripts/gridx/mobile/nls/sk/common.js +5 -0
- data/app/assets/javascripts/gridx/mobile/nls/sl/LazyLoad.js +6 -0
- data/app/assets/javascripts/gridx/mobile/nls/sl/PullRefresh.js +7 -0
- data/app/assets/javascripts/gridx/mobile/nls/sl/common.js +5 -0
- data/app/assets/javascripts/gridx/mobile/nls/sv/LazyLoad.js +6 -0
- data/app/assets/javascripts/gridx/mobile/nls/sv/PullRefresh.js +7 -0
- data/app/assets/javascripts/gridx/mobile/nls/sv/common.js +5 -0
- data/app/assets/javascripts/gridx/mobile/nls/th/LazyLoad.js +6 -0
- data/app/assets/javascripts/gridx/mobile/nls/th/PullRefresh.js +7 -0
- data/app/assets/javascripts/gridx/mobile/nls/th/common.js +5 -0
- data/app/assets/javascripts/gridx/mobile/nls/tr/LazyLoad.js +6 -0
- data/app/assets/javascripts/gridx/mobile/nls/tr/PullRefresh.js +7 -0
- data/app/assets/javascripts/gridx/mobile/nls/tr/common.js +5 -0
- data/app/assets/javascripts/gridx/mobile/nls/uk/LazyLoad.js +6 -0
- data/app/assets/javascripts/gridx/mobile/nls/uk/PullRefresh.js +7 -0
- data/app/assets/javascripts/gridx/mobile/nls/uk/common.js +5 -0
- data/app/assets/javascripts/gridx/mobile/nls/zh/LazyLoad.js +6 -0
- data/app/assets/javascripts/gridx/mobile/nls/zh/PullRefresh.js +7 -0
- data/app/assets/javascripts/gridx/mobile/nls/zh/common.js +5 -0
- data/app/assets/javascripts/gridx/mobile/nls/zh-tw/LazyLoad.js +6 -0
- data/app/assets/javascripts/gridx/mobile/nls/zh-tw/PullRefresh.js +7 -0
- data/app/assets/javascripts/gridx/mobile/nls/zh-tw/common.js +5 -0
- data/app/assets/javascripts/gridx/modules/AutoScroll.js +100 -0
- data/app/assets/javascripts/gridx/modules/Bar.js +322 -0
- data/app/assets/javascripts/gridx/modules/Body.js +1059 -0
- data/app/assets/javascripts/gridx/modules/CellWidget.js +538 -0
- data/app/assets/javascripts/gridx/modules/ColumnLock.js +254 -0
- data/app/assets/javascripts/gridx/modules/ColumnResizer.js +278 -0
- data/app/assets/javascripts/gridx/modules/ColumnWidth.js +320 -0
- data/app/assets/javascripts/gridx/modules/Dod.js +368 -0
- data/app/assets/javascripts/gridx/modules/Edit.js +1024 -0
- data/app/assets/javascripts/gridx/modules/Filter.js +482 -0
- data/app/assets/javascripts/gridx/modules/Focus.js +439 -0
- data/app/assets/javascripts/gridx/modules/GroupHeader.js +437 -0
- data/app/assets/javascripts/gridx/modules/HLayout.js +139 -0
- data/app/assets/javascripts/gridx/modules/HScroller.js +172 -0
- data/app/assets/javascripts/gridx/modules/Header.js +289 -0
- data/app/assets/javascripts/gridx/modules/HeaderMenu.js +63 -0
- data/app/assets/javascripts/gridx/modules/HeaderRegions.js +201 -0
- data/app/assets/javascripts/gridx/modules/HiddenColumns.js +274 -0
- data/app/assets/javascripts/gridx/modules/IndirectSelect.js +287 -0
- data/app/assets/javascripts/gridx/modules/IndirectSelectColumn.js +277 -0
- data/app/assets/javascripts/gridx/modules/Menu.js +167 -0
- data/app/assets/javascripts/gridx/modules/NavigableCell.js +170 -0
- data/app/assets/javascripts/gridx/modules/NestedSort.js +280 -0
- data/app/assets/javascripts/gridx/modules/PagedBody.js +409 -0
- data/app/assets/javascripts/gridx/modules/Pagination.js +293 -0
- data/app/assets/javascripts/gridx/modules/Persist.js +266 -0
- data/app/assets/javascripts/gridx/modules/Printer.js +49 -0
- data/app/assets/javascripts/gridx/modules/RowHeader.js +412 -0
- data/app/assets/javascripts/gridx/modules/RowLock.js +143 -0
- data/app/assets/javascripts/gridx/modules/SingleSort.js +276 -0
- data/app/assets/javascripts/gridx/modules/SummaryBar.js +33 -0
- data/app/assets/javascripts/gridx/modules/TitleBar.js +51 -0
- data/app/assets/javascripts/gridx/modules/ToolBar.js +55 -0
- data/app/assets/javascripts/gridx/modules/TouchScroll.js +103 -0
- data/app/assets/javascripts/gridx/modules/TouchVScroller.js +89 -0
- data/app/assets/javascripts/gridx/modules/Traverse.js +159 -0
- data/app/assets/javascripts/gridx/modules/Tree.js +646 -0
- data/app/assets/javascripts/gridx/modules/VLayout.js +152 -0
- data/app/assets/javascripts/gridx/modules/VScroller.js +342 -0
- data/app/assets/javascripts/gridx/modules/View.js +540 -0
- data/app/assets/javascripts/gridx/modules/VirtualVScroller.js +445 -0
- data/app/assets/javascripts/gridx/modules/barPlugins/DropDownPager.js +16 -0
- data/app/assets/javascripts/gridx/modules/barPlugins/DropDownSizer.js +16 -0
- data/app/assets/javascripts/gridx/modules/barPlugins/GotoPageButton.js +16 -0
- data/app/assets/javascripts/gridx/modules/barPlugins/LinkPager.js +16 -0
- data/app/assets/javascripts/gridx/modules/barPlugins/LinkSizer.js +16 -0
- data/app/assets/javascripts/gridx/modules/barPlugins/Summary.js +16 -0
- data/app/assets/javascripts/gridx/modules/dnd/Avatar.js +45 -0
- data/app/assets/javascripts/gridx/modules/dnd/Column.js +210 -0
- data/app/assets/javascripts/gridx/modules/dnd/Row.js +286 -0
- data/app/assets/javascripts/gridx/modules/dnd/_Base.js +60 -0
- data/app/assets/javascripts/gridx/modules/dnd/_Dnd.js +371 -0
- data/app/assets/javascripts/gridx/modules/exporter/CSV.js +43 -0
- data/app/assets/javascripts/gridx/modules/exporter/Exporter.js +34 -0
- data/app/assets/javascripts/gridx/modules/exporter/Table.js +42 -0
- data/app/assets/javascripts/gridx/modules/extendedSelect/Cell.js +491 -0
- data/app/assets/javascripts/gridx/modules/extendedSelect/Column.js +290 -0
- data/app/assets/javascripts/gridx/modules/extendedSelect/Row.js +458 -0
- data/app/assets/javascripts/gridx/modules/extendedSelect/_Base.js +244 -0
- data/app/assets/javascripts/gridx/modules/extendedSelect/_RowCellBase.js +35 -0
- data/app/assets/javascripts/gridx/modules/filter/DistinctComboBoxMenu.js +22 -0
- data/app/assets/javascripts/gridx/modules/filter/Filter.js +16 -0
- data/app/assets/javascripts/gridx/modules/filter/FilterBar.js +649 -0
- data/app/assets/javascripts/gridx/modules/filter/FilterConfirmDialog.js +33 -0
- data/app/assets/javascripts/gridx/modules/filter/FilterDialog.js +179 -0
- data/app/assets/javascripts/gridx/modules/filter/FilterPane.js +340 -0
- data/app/assets/javascripts/gridx/modules/filter/FilterTooltip.js +103 -0
- data/app/assets/javascripts/gridx/modules/filter/QuickFilter.js +33 -0
- data/app/assets/javascripts/gridx/modules/move/Column.js +223 -0
- data/app/assets/javascripts/gridx/modules/move/Row.js +154 -0
- data/app/assets/javascripts/gridx/modules/pagination/Pagination.js +16 -0
- data/app/assets/javascripts/gridx/modules/pagination/PaginationBar.js +68 -0
- data/app/assets/javascripts/gridx/modules/pagination/PaginationBarDD.js +40 -0
- data/app/assets/javascripts/gridx/modules/pagination/_PaginationBarBase.js +105 -0
- data/app/assets/javascripts/gridx/modules/select/Cell.js +229 -0
- data/app/assets/javascripts/gridx/modules/select/Column.js +209 -0
- data/app/assets/javascripts/gridx/modules/select/Row.js +302 -0
- data/app/assets/javascripts/gridx/modules/select/_Base.js +99 -0
- data/app/assets/javascripts/gridx/modules/select/_RowCellBase.js +51 -0
- data/app/assets/javascripts/gridx/nls/Body.js +47 -0
- data/app/assets/javascripts/gridx/nls/FilterBar.js +133 -0
- data/app/assets/javascripts/gridx/nls/NestedSort.js +45 -0
- data/app/assets/javascripts/gridx/nls/PaginationBar.js +68 -0
- data/app/assets/javascripts/gridx/nls/QuickFilter.js +40 -0
- data/app/assets/javascripts/gridx/nls/SummaryBar.js +38 -0
- data/app/assets/javascripts/gridx/nls/ar/Body.js +11 -0
- data/app/assets/javascripts/gridx/nls/ar/FilterBar.js +89 -0
- data/app/assets/javascripts/gridx/nls/ar/NestedSort.js +11 -0
- data/app/assets/javascripts/gridx/nls/ar/PaginationBar.js +34 -0
- data/app/assets/javascripts/gridx/nls/ar/QuickFilter.js +7 -0
- data/app/assets/javascripts/gridx/nls/ar/SummaryBar.js +5 -0
- data/app/assets/javascripts/gridx/nls/bg/Body.js +11 -0
- data/app/assets/javascripts/gridx/nls/bg/FilterBar.js +88 -0
- data/app/assets/javascripts/gridx/nls/bg/NestedSort.js +12 -0
- data/app/assets/javascripts/gridx/nls/bg/PaginationBar.js +28 -0
- data/app/assets/javascripts/gridx/nls/bg/QuickFilter.js +8 -0
- data/app/assets/javascripts/gridx/nls/bg/SummaryBar.js +6 -0
- data/app/assets/javascripts/gridx/nls/ca/Body.js +11 -0
- data/app/assets/javascripts/gridx/nls/ca/FilterBar.js +89 -0
- data/app/assets/javascripts/gridx/nls/ca/NestedSort.js +13 -0
- data/app/assets/javascripts/gridx/nls/ca/PaginationBar.js +30 -0
- data/app/assets/javascripts/gridx/nls/ca/QuickFilter.js +9 -0
- data/app/assets/javascripts/gridx/nls/ca/SummaryBar.js +7 -0
- data/app/assets/javascripts/gridx/nls/cs/Body.js +11 -0
- data/app/assets/javascripts/gridx/nls/cs/FilterBar.js +89 -0
- data/app/assets/javascripts/gridx/nls/cs/NestedSort.js +11 -0
- data/app/assets/javascripts/gridx/nls/cs/PaginationBar.js +34 -0
- data/app/assets/javascripts/gridx/nls/cs/QuickFilter.js +7 -0
- data/app/assets/javascripts/gridx/nls/cs/SummaryBar.js +5 -0
- data/app/assets/javascripts/gridx/nls/da/Body.js +11 -0
- data/app/assets/javascripts/gridx/nls/da/FilterBar.js +89 -0
- data/app/assets/javascripts/gridx/nls/da/NestedSort.js +11 -0
- data/app/assets/javascripts/gridx/nls/da/PaginationBar.js +34 -0
- data/app/assets/javascripts/gridx/nls/da/QuickFilter.js +7 -0
- data/app/assets/javascripts/gridx/nls/da/SummaryBar.js +5 -0
- data/app/assets/javascripts/gridx/nls/de/Body.js +11 -0
- data/app/assets/javascripts/gridx/nls/de/FilterBar.js +89 -0
- data/app/assets/javascripts/gridx/nls/de/NestedSort.js +11 -0
- data/app/assets/javascripts/gridx/nls/de/PaginationBar.js +34 -0
- data/app/assets/javascripts/gridx/nls/de/QuickFilter.js +7 -0
- data/app/assets/javascripts/gridx/nls/de/SummaryBar.js +5 -0
- data/app/assets/javascripts/gridx/nls/el/Body.js +11 -0
- data/app/assets/javascripts/gridx/nls/el/FilterBar.js +89 -0
- data/app/assets/javascripts/gridx/nls/el/NestedSort.js +11 -0
- data/app/assets/javascripts/gridx/nls/el/PaginationBar.js +34 -0
- data/app/assets/javascripts/gridx/nls/el/QuickFilter.js +7 -0
- data/app/assets/javascripts/gridx/nls/el/SummaryBar.js +5 -0
- data/app/assets/javascripts/gridx/nls/es/Body.js +11 -0
- data/app/assets/javascripts/gridx/nls/es/FilterBar.js +89 -0
- data/app/assets/javascripts/gridx/nls/es/NestedSort.js +13 -0
- data/app/assets/javascripts/gridx/nls/es/PaginationBar.js +30 -0
- data/app/assets/javascripts/gridx/nls/es/QuickFilter.js +9 -0
- data/app/assets/javascripts/gridx/nls/es/SummaryBar.js +7 -0
- data/app/assets/javascripts/gridx/nls/fi/Body.js +11 -0
- data/app/assets/javascripts/gridx/nls/fi/FilterBar.js +89 -0
- data/app/assets/javascripts/gridx/nls/fi/NestedSort.js +11 -0
- data/app/assets/javascripts/gridx/nls/fi/PaginationBar.js +34 -0
- data/app/assets/javascripts/gridx/nls/fi/QuickFilter.js +7 -0
- data/app/assets/javascripts/gridx/nls/fi/SummaryBar.js +5 -0
- data/app/assets/javascripts/gridx/nls/fr/Body.js +11 -0
- data/app/assets/javascripts/gridx/nls/fr/FilterBar.js +89 -0
- data/app/assets/javascripts/gridx/nls/fr/NestedSort.js +11 -0
- data/app/assets/javascripts/gridx/nls/fr/PaginationBar.js +34 -0
- data/app/assets/javascripts/gridx/nls/fr/QuickFilter.js +7 -0
- data/app/assets/javascripts/gridx/nls/fr/SummaryBar.js +5 -0
- data/app/assets/javascripts/gridx/nls/he/Body.js +11 -0
- data/app/assets/javascripts/gridx/nls/he/FilterBar.js +89 -0
- data/app/assets/javascripts/gridx/nls/he/NestedSort.js +11 -0
- data/app/assets/javascripts/gridx/nls/he/PaginationBar.js +34 -0
- data/app/assets/javascripts/gridx/nls/he/QuickFilter.js +6 -0
- data/app/assets/javascripts/gridx/nls/he/SummaryBar.js +5 -0
- data/app/assets/javascripts/gridx/nls/hr/Body.js +11 -0
- data/app/assets/javascripts/gridx/nls/hr/FilterBar.js +89 -0
- data/app/assets/javascripts/gridx/nls/hr/NestedSort.js +11 -0
- data/app/assets/javascripts/gridx/nls/hr/PaginationBar.js +34 -0
- data/app/assets/javascripts/gridx/nls/hr/QuickFilter.js +7 -0
- data/app/assets/javascripts/gridx/nls/hr/SummaryBar.js +5 -0
- data/app/assets/javascripts/gridx/nls/hu/Body.js +11 -0
- data/app/assets/javascripts/gridx/nls/hu/FilterBar.js +89 -0
- data/app/assets/javascripts/gridx/nls/hu/NestedSort.js +11 -0
- data/app/assets/javascripts/gridx/nls/hu/PaginationBar.js +33 -0
- data/app/assets/javascripts/gridx/nls/hu/QuickFilter.js +7 -0
- data/app/assets/javascripts/gridx/nls/hu/SummaryBar.js +5 -0
- data/app/assets/javascripts/gridx/nls/it/Body.js +11 -0
- data/app/assets/javascripts/gridx/nls/it/FilterBar.js +89 -0
- data/app/assets/javascripts/gridx/nls/it/NestedSort.js +11 -0
- data/app/assets/javascripts/gridx/nls/it/PaginationBar.js +34 -0
- data/app/assets/javascripts/gridx/nls/it/QuickFilter.js +7 -0
- data/app/assets/javascripts/gridx/nls/it/SummaryBar.js +5 -0
- data/app/assets/javascripts/gridx/nls/ja/Body.js +11 -0
- data/app/assets/javascripts/gridx/nls/ja/FilterBar.js +89 -0
- data/app/assets/javascripts/gridx/nls/ja/NestedSort.js +11 -0
- data/app/assets/javascripts/gridx/nls/ja/PaginationBar.js +34 -0
- data/app/assets/javascripts/gridx/nls/ja/QuickFilter.js +7 -0
- data/app/assets/javascripts/gridx/nls/ja/SummaryBar.js +5 -0
- data/app/assets/javascripts/gridx/nls/kk/Body.js +11 -0
- data/app/assets/javascripts/gridx/nls/kk/FilterBar.js +89 -0
- data/app/assets/javascripts/gridx/nls/kk/NestedSort.js +13 -0
- data/app/assets/javascripts/gridx/nls/kk/PaginationBar.js +30 -0
- data/app/assets/javascripts/gridx/nls/kk/QuickFilter.js +9 -0
- data/app/assets/javascripts/gridx/nls/kk/SummaryBar.js +7 -0
- data/app/assets/javascripts/gridx/nls/ko/Body.js +11 -0
- data/app/assets/javascripts/gridx/nls/ko/FilterBar.js +89 -0
- data/app/assets/javascripts/gridx/nls/ko/NestedSort.js +11 -0
- data/app/assets/javascripts/gridx/nls/ko/PaginationBar.js +34 -0
- data/app/assets/javascripts/gridx/nls/ko/QuickFilter.js +7 -0
- data/app/assets/javascripts/gridx/nls/ko/SummaryBar.js +5 -0
- data/app/assets/javascripts/gridx/nls/nb/Body.js +11 -0
- data/app/assets/javascripts/gridx/nls/nb/FilterBar.js +89 -0
- data/app/assets/javascripts/gridx/nls/nb/NestedSort.js +11 -0
- data/app/assets/javascripts/gridx/nls/nb/PaginationBar.js +34 -0
- data/app/assets/javascripts/gridx/nls/nb/QuickFilter.js +7 -0
- data/app/assets/javascripts/gridx/nls/nb/SummaryBar.js +5 -0
- data/app/assets/javascripts/gridx/nls/nl/Body.js +11 -0
- data/app/assets/javascripts/gridx/nls/nl/FilterBar.js +89 -0
- data/app/assets/javascripts/gridx/nls/nl/NestedSort.js +11 -0
- data/app/assets/javascripts/gridx/nls/nl/PaginationBar.js +34 -0
- data/app/assets/javascripts/gridx/nls/nl/QuickFilter.js +7 -0
- data/app/assets/javascripts/gridx/nls/nl/SummaryBar.js +5 -0
- data/app/assets/javascripts/gridx/nls/pl/Body.js +11 -0
- data/app/assets/javascripts/gridx/nls/pl/FilterBar.js +89 -0
- data/app/assets/javascripts/gridx/nls/pl/NestedSort.js +11 -0
- data/app/assets/javascripts/gridx/nls/pl/PaginationBar.js +34 -0
- data/app/assets/javascripts/gridx/nls/pl/QuickFilter.js +7 -0
- data/app/assets/javascripts/gridx/nls/pl/SummaryBar.js +5 -0
- data/app/assets/javascripts/gridx/nls/pt/Body.js +11 -0
- data/app/assets/javascripts/gridx/nls/pt/FilterBar.js +89 -0
- data/app/assets/javascripts/gridx/nls/pt/NestedSort.js +13 -0
- data/app/assets/javascripts/gridx/nls/pt/PaginationBar.js +30 -0
- data/app/assets/javascripts/gridx/nls/pt/QuickFilter.js +9 -0
- data/app/assets/javascripts/gridx/nls/pt/SummaryBar.js +7 -0
- data/app/assets/javascripts/gridx/nls/pt-br/Body.js +6 -0
- data/app/assets/javascripts/gridx/nls/pt-br/FilterBar.js +89 -0
- data/app/assets/javascripts/gridx/nls/pt-br/NestedSort.js +11 -0
- data/app/assets/javascripts/gridx/nls/pt-br/PaginationBar.js +34 -0
- data/app/assets/javascripts/gridx/nls/pt-br/QuickFilter.js +7 -0
- data/app/assets/javascripts/gridx/nls/pt-br/SummaryBar.js +5 -0
- data/app/assets/javascripts/gridx/nls/pt-pt/Body.js +11 -0
- data/app/assets/javascripts/gridx/nls/pt-pt/FilterBar.js +89 -0
- data/app/assets/javascripts/gridx/nls/pt-pt/NestedSort.js +13 -0
- data/app/assets/javascripts/gridx/nls/pt-pt/PaginationBar.js +30 -0
- data/app/assets/javascripts/gridx/nls/pt-pt/QuickFilter.js +9 -0
- data/app/assets/javascripts/gridx/nls/pt-pt/SummaryBar.js +7 -0
- data/app/assets/javascripts/gridx/nls/ro/Body.js +11 -0
- data/app/assets/javascripts/gridx/nls/ro/FilterBar.js +89 -0
- data/app/assets/javascripts/gridx/nls/ro/NestedSort.js +13 -0
- data/app/assets/javascripts/gridx/nls/ro/PaginationBar.js +30 -0
- data/app/assets/javascripts/gridx/nls/ro/QuickFilter.js +9 -0
- data/app/assets/javascripts/gridx/nls/ro/SummaryBar.js +7 -0
- data/app/assets/javascripts/gridx/nls/ru/Body.js +11 -0
- data/app/assets/javascripts/gridx/nls/ru/FilterBar.js +89 -0
- data/app/assets/javascripts/gridx/nls/ru/NestedSort.js +11 -0
- data/app/assets/javascripts/gridx/nls/ru/PaginationBar.js +34 -0
- data/app/assets/javascripts/gridx/nls/ru/QuickFilter.js +7 -0
- data/app/assets/javascripts/gridx/nls/ru/SummaryBar.js +5 -0
- data/app/assets/javascripts/gridx/nls/sk/Body.js +11 -0
- data/app/assets/javascripts/gridx/nls/sk/FilterBar.js +89 -0
- data/app/assets/javascripts/gridx/nls/sk/NestedSort.js +13 -0
- data/app/assets/javascripts/gridx/nls/sk/PaginationBar.js +30 -0
- data/app/assets/javascripts/gridx/nls/sk/QuickFilter.js +9 -0
- data/app/assets/javascripts/gridx/nls/sk/SummaryBar.js +7 -0
- data/app/assets/javascripts/gridx/nls/sl/Body.js +11 -0
- data/app/assets/javascripts/gridx/nls/sl/FilterBar.js +89 -0
- data/app/assets/javascripts/gridx/nls/sl/NestedSort.js +11 -0
- data/app/assets/javascripts/gridx/nls/sl/PaginationBar.js +34 -0
- data/app/assets/javascripts/gridx/nls/sl/QuickFilter.js +7 -0
- data/app/assets/javascripts/gridx/nls/sl/SummaryBar.js +5 -0
- data/app/assets/javascripts/gridx/nls/sv/Body.js +11 -0
- data/app/assets/javascripts/gridx/nls/sv/FilterBar.js +89 -0
- data/app/assets/javascripts/gridx/nls/sv/NestedSort.js +11 -0
- data/app/assets/javascripts/gridx/nls/sv/PaginationBar.js +34 -0
- data/app/assets/javascripts/gridx/nls/sv/QuickFilter.js +7 -0
- data/app/assets/javascripts/gridx/nls/sv/SummaryBar.js +5 -0
- data/app/assets/javascripts/gridx/nls/th/Body.js +11 -0
- data/app/assets/javascripts/gridx/nls/th/FilterBar.js +89 -0
- data/app/assets/javascripts/gridx/nls/th/NestedSort.js +11 -0
- data/app/assets/javascripts/gridx/nls/th/PaginationBar.js +34 -0
- data/app/assets/javascripts/gridx/nls/th/QuickFilter.js +7 -0
- data/app/assets/javascripts/gridx/nls/th/SummaryBar.js +5 -0
- data/app/assets/javascripts/gridx/nls/tr/Body.js +11 -0
- data/app/assets/javascripts/gridx/nls/tr/FilterBar.js +89 -0
- data/app/assets/javascripts/gridx/nls/tr/NestedSort.js +11 -0
- data/app/assets/javascripts/gridx/nls/tr/PaginationBar.js +34 -0
- data/app/assets/javascripts/gridx/nls/tr/QuickFilter.js +7 -0
- data/app/assets/javascripts/gridx/nls/tr/SummaryBar.js +5 -0
- data/app/assets/javascripts/gridx/nls/uk/Body.js +11 -0
- data/app/assets/javascripts/gridx/nls/uk/FilterBar.js +88 -0
- data/app/assets/javascripts/gridx/nls/uk/NestedSort.js +12 -0
- data/app/assets/javascripts/gridx/nls/uk/PaginationBar.js +28 -0
- data/app/assets/javascripts/gridx/nls/uk/QuickFilter.js +8 -0
- data/app/assets/javascripts/gridx/nls/uk/SummaryBar.js +6 -0
- data/app/assets/javascripts/gridx/nls/zh/Body.js +11 -0
- data/app/assets/javascripts/gridx/nls/zh/FilterBar.js +89 -0
- data/app/assets/javascripts/gridx/nls/zh/NestedSort.js +11 -0
- data/app/assets/javascripts/gridx/nls/zh/PaginationBar.js +34 -0
- data/app/assets/javascripts/gridx/nls/zh/QuickFilter.js +7 -0
- data/app/assets/javascripts/gridx/nls/zh/SummaryBar.js +5 -0
- data/app/assets/javascripts/gridx/nls/zh-tw/Body.js +11 -0
- data/app/assets/javascripts/gridx/nls/zh-tw/FilterBar.js +89 -0
- data/app/assets/javascripts/gridx/nls/zh-tw/NestedSort.js +11 -0
- data/app/assets/javascripts/gridx/nls/zh-tw/PaginationBar.js +34 -0
- data/app/assets/javascripts/gridx/nls/zh-tw/QuickFilter.js +7 -0
- data/app/assets/javascripts/gridx/nls/zh-tw/SummaryBar.js +5 -0
- data/app/assets/javascripts/gridx/support/DropDownPager.js +111 -0
- data/app/assets/javascripts/gridx/support/DropDownSizer.js +112 -0
- data/app/assets/javascripts/gridx/support/GotoPageButton.js +92 -0
- data/app/assets/javascripts/gridx/support/GotoPagePane.js +61 -0
- data/app/assets/javascripts/gridx/support/LinkPager.js +180 -0
- data/app/assets/javascripts/gridx/support/LinkSizer.js +138 -0
- data/app/assets/javascripts/gridx/support/QuickFilter.js +138 -0
- data/app/assets/javascripts/gridx/support/Summary.js +49 -0
- data/app/assets/javascripts/gridx/support/_LinkPageBase.js +92 -0
- data/app/assets/javascripts/gridx/support/exporter/exporter.js +350 -0
- data/app/assets/javascripts/gridx/support/exporter/toCSV.js +75 -0
- data/app/assets/javascripts/gridx/support/exporter/toTable.js +92 -0
- data/app/assets/javascripts/gridx/support/menu/AZFilterMenu.js +57 -0
- data/app/assets/javascripts/gridx/support/menu/NumberFilterMenu.js +87 -0
- data/app/assets/javascripts/gridx/support/menu/_FilterMenuBase.js +83 -0
- data/app/assets/javascripts/gridx/support/printer.js +157 -0
- data/app/assets/javascripts/gridx/templates/FilterBar.html +8 -0
- data/app/assets/javascripts/gridx/templates/FilterConfirmDialog.html +5 -0
- data/app/assets/javascripts/gridx/templates/FilterDialog.html +19 -0
- data/app/assets/javascripts/gridx/templates/FilterPane.html +64 -0
- data/app/assets/javascripts/gridx/templates/GotoPagePane.html +28 -0
- data/app/assets/javascripts/gridx/templates/Grid.html +19 -0
- data/app/assets/javascripts/gridx/templates/LinkPager.html +24 -0
- data/app/assets/javascripts/gridx/templates/PaginationBar.html +60 -0
- data/app/assets/javascripts/gridx/templates/PaginationBarDD.html +23 -0
- data/app/assets/javascripts/gridx/templates/QuickFilter.html +38 -0
- data/app/assets/stylesheets/gridx/mobile/themes/iphone/Grid.css +107 -0
- data/app/assets/stylesheets/gridx/resources/Dod.css +39 -0
- data/app/assets/stylesheets/gridx/resources/Gridx.css +10 -0
- data/app/assets/stylesheets/gridx/resources/Gridx_rtl.css +5 -0
- data/app/assets/stylesheets/gridx/resources/Tree.css +46 -0
- data/app/assets/stylesheets/gridx/resources/Tree_rtl.css +4 -0
- data/app/assets/stylesheets/gridx/resources/bar.css +24 -0
- data/app/assets/stylesheets/gridx/resources/basic.css +482 -0
- data/app/assets/stylesheets/gridx/resources/basic_rtl.css +37 -0
- data/app/assets/stylesheets/gridx/resources/claro/Gridx.css +16 -0
- data/app/assets/stylesheets/gridx/resources/claro/Gridx_rtl.css +7 -0
- data/app/assets/stylesheets/gridx/resources/claro/basic.css +109 -0
- data/app/assets/stylesheets/gridx/resources/claro/basic_rtl.css +21 -0
- data/app/assets/stylesheets/gridx/resources/claro/filter.css +47 -0
- data/app/assets/stylesheets/gridx/resources/claro/lock.css +19 -0
- data/app/assets/stylesheets/gridx/resources/claro/pagination.css +33 -0
- data/app/assets/stylesheets/gridx/resources/claro/select.css +20 -0
- data/app/assets/stylesheets/gridx/resources/dnd.css +108 -0
- data/app/assets/stylesheets/gridx/resources/filter.css +321 -0
- data/app/assets/stylesheets/gridx/resources/filter_rtl.css +38 -0
- data/app/assets/stylesheets/gridx/resources/lock.css +20 -0
- data/app/assets/stylesheets/gridx/resources/pagination.css +142 -0
- data/app/assets/stylesheets/gridx/resources/pagination_rtl.css +54 -0
- data/app/assets/stylesheets/gridx/resources/select.css +39 -0
- data/app/assets/stylesheets/gridx/resources/sort.css +154 -0
- data/app/assets/stylesheets/gridx/resources/sort_rtl.css +51 -0
- data/lib/gridx-rails/engine.rb +8 -0
- data/lib/gridx-rails/version.rb +3 -0
- data/lib/gridx-rails.rb +4 -0
- data/lib/tasks/gridx-rails_tasks.rake +52 -0
- data/test/dummy/README.rdoc +261 -0
- data/test/dummy/Rakefile +7 -0
- data/test/dummy/app/assets/javascripts/application.js +15 -0
- data/test/dummy/app/assets/stylesheets/application.css +13 -0
- data/test/dummy/app/controllers/application_controller.rb +3 -0
- data/test/dummy/app/helpers/application_helper.rb +2 -0
- data/test/dummy/app/views/layouts/application.html.erb +14 -0
- data/test/dummy/config/application.rb +59 -0
- data/test/dummy/config/boot.rb +10 -0
- data/test/dummy/config/database.yml +25 -0
- data/test/dummy/config/environment.rb +5 -0
- data/test/dummy/config/environments/development.rb +37 -0
- data/test/dummy/config/environments/production.rb +67 -0
- data/test/dummy/config/environments/test.rb +37 -0
- data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
- data/test/dummy/config/initializers/inflections.rb +15 -0
- data/test/dummy/config/initializers/mime_types.rb +5 -0
- data/test/dummy/config/initializers/secret_token.rb +7 -0
- data/test/dummy/config/initializers/session_store.rb +8 -0
- data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
- data/test/dummy/config/locales/en.yml +5 -0
- data/test/dummy/config/routes.rb +58 -0
- data/test/dummy/config.ru +4 -0
- data/test/dummy/db/test.sqlite3 +0 -0
- data/test/dummy/log/test.log +78 -0
- data/test/dummy/public/404.html +26 -0
- data/test/dummy/public/422.html +26 -0
- data/test/dummy/public/500.html +25 -0
- data/test/dummy/public/favicon.ico +0 -0
- data/test/dummy/script/rails +6 -0
- data/test/gridx-rails_test.rb +7 -0
- data/test/test_helper.rb +15 -0
- metadata +621 -0
|
@@ -0,0 +1,89 @@
|
|
|
1
|
+
define({
|
|
2
|
+
//begin v1.x content
|
|
3
|
+
"clearFilterDialogTitle": "Vymazat filtr",
|
|
4
|
+
"filterDefDialogTitle": "Filtr",
|
|
5
|
+
"defaultRuleTitle": "Pravidlo",
|
|
6
|
+
"ruleTitleTemplate": "Pravidlo ${ruleNumber}",
|
|
7
|
+
"noFilterApplied": "Není použitý žádný filtr.",
|
|
8
|
+
"defineFilter": "Definovat filtr",
|
|
9
|
+
"conditionEqual": "rovná se",
|
|
10
|
+
"conditionNotEqual": "nerovná se",
|
|
11
|
+
"conditionLess": "méně než",
|
|
12
|
+
"conditionLessEqual": "méně nebo rovno",
|
|
13
|
+
"conditionGreater": "více než",
|
|
14
|
+
"conditionGreaterEqual": "více nebo rovno",
|
|
15
|
+
"conditionContain": "obsahuje",
|
|
16
|
+
"conditionIs": "je",
|
|
17
|
+
"conditionStartWith": "začíná",
|
|
18
|
+
"conditionEndWith": "končí",
|
|
19
|
+
"conditionNotContain": "neobsahuje",
|
|
20
|
+
"conditionIsNot": "není",
|
|
21
|
+
"conditionNotStartWith": "nezačíná",
|
|
22
|
+
"conditionNotEndWith": "nekončí",
|
|
23
|
+
"conditionBefore": "před",
|
|
24
|
+
"conditionAfter": "po",
|
|
25
|
+
"conditionRange": "rozsah",
|
|
26
|
+
"conditionIsEmpty": "je prázdné",
|
|
27
|
+
"all": "vše",
|
|
28
|
+
"any": "jakékoli",
|
|
29
|
+
"relationAll": "všechna pravidla",
|
|
30
|
+
"waiRelAll": "Porovnat všechna tato pravidla:",
|
|
31
|
+
"relationAny": "jakákoli pravidla",
|
|
32
|
+
"waiRelAny": "Porovnat jakákoli z těchto pravidel:",
|
|
33
|
+
"relationMsgFront": "Shoda",
|
|
34
|
+
"relationMsgTail": "",
|
|
35
|
+
"and": "a",
|
|
36
|
+
"or": "nebo",
|
|
37
|
+
"addRuleButton": "Přidat pravidlo",
|
|
38
|
+
"waiAddRuleButton": "Přidat nové pravidlo",
|
|
39
|
+
"removeRuleButton": "Odebrat pravidlo",
|
|
40
|
+
"waiRemoveRuleButtonTemplate": "Odebrat pravidlo ${0}",
|
|
41
|
+
"addRuleButton": "Přidat pravidlo filtrace",
|
|
42
|
+
"cancelButton": "Storno",
|
|
43
|
+
"waiCancelButton": "Zrušit toto dialogové okno",
|
|
44
|
+
"clearButton": "Vymazat",
|
|
45
|
+
"waiClearButton": "Vymazat filtr",
|
|
46
|
+
"filterButton": "Filtr",
|
|
47
|
+
"waiFilterButton": "Odeslat filtr",
|
|
48
|
+
"columnSelectLabel": "Sloupec",
|
|
49
|
+
"waiColumnSelectTemplate": "Sloupec pro pravidlo ${0}",
|
|
50
|
+
"conditionSelectLabel": "Podmínka",
|
|
51
|
+
"waiConditionSelectTemplate": "Podmínka pro pravidlo ${0}",
|
|
52
|
+
"valueBoxLabel": "Hodnota",
|
|
53
|
+
"waiValueBoxTemplate": "Zadejte hodnotu do filtru pro pravidlo ${0}",
|
|
54
|
+
"rangeTo": "do",
|
|
55
|
+
"rangeTemplate": "z ${0} do ${1}",
|
|
56
|
+
"statusTipHeaderColumn": "Sloupec",
|
|
57
|
+
"statusTipHeaderCondition": "Pravidla",
|
|
58
|
+
"statusTipTitle": "Panel filtrování",
|
|
59
|
+
"statusTipMsg": "Klepněte zde na panel filtrování, abyste filtrovali hodnoty v ${0}.",
|
|
60
|
+
"anycolumn": "jakýkoli sloupec",
|
|
61
|
+
"statusTipTitleNoFilter": "Panel filtrování",
|
|
62
|
+
"statusTipTitleHasFilter": "Filtr",
|
|
63
|
+
"statusTipRelPre": "Shoda",
|
|
64
|
+
"statusTipRelPost": "pravidel.",
|
|
65
|
+
"statusTipHeaderAll": "Shoda se všemi pravidly.",
|
|
66
|
+
"statusTipHeaderAny": "Shoda s libovolnými pravidly.",
|
|
67
|
+
"defaultItemsName": "položek",
|
|
68
|
+
"filterBarMsgHasFilterTemplate": "${0} z ${1} ${2} zobrazeno.",
|
|
69
|
+
"filterBarMsgNoFilterTemplate": "Není použitý žádný filtr",
|
|
70
|
+
"filterBarDefButton": "Definovat filtr",
|
|
71
|
+
"waiFilterBarDefButton": "Filtrovat tabulku",
|
|
72
|
+
"a11yFilterBarDefButton": "Filtrovat...",
|
|
73
|
+
"filterBarClearButton": "Vymazat filtr",
|
|
74
|
+
"waiFilterBarClearButton": "Vymazat filtr",
|
|
75
|
+
"closeFilterBarBtn": "Zavřít panel filtrování",
|
|
76
|
+
"clearFilterMsg": "Tímto se odebere filtr a zobrazí všechny dostupné záznamy.",
|
|
77
|
+
"anyColumnOption": "Jakýkoli sloupec",
|
|
78
|
+
"trueLabel": "Pravda",
|
|
79
|
+
"falseLabel": "Nepravda",
|
|
80
|
+
"radioTrueLabel": "Hodnota Pravda",
|
|
81
|
+
"radioFalseLabel": "Hodnota Nepravda",
|
|
82
|
+
"beginTimeRangeLabel": "Počáteční hodnota rozsahu času",
|
|
83
|
+
"endTimeRangeLabel": "Koncová hodnota rozsahu času",
|
|
84
|
+
"beginDateRangeLabel": "Počáteční hodnota rozsahu data",
|
|
85
|
+
"endDateRangeLabel": "Koncová hodnota rozsahu data",
|
|
86
|
+
"startsWithExpr": "${0}*"
|
|
87
|
+
//end v1.x content
|
|
88
|
+
});
|
|
89
|
+
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
define({
|
|
2
|
+
singleSort: "Jednotlivé řazení",
|
|
3
|
+
nestedSort: "Vnořené řazení",
|
|
4
|
+
ascending: "Klepnutím seřadit vzestupně",
|
|
5
|
+
descending: "Klepnutím seřadit sestupně",
|
|
6
|
+
sortingState: "${0} - ${1}",
|
|
7
|
+
unsorted: "Neřadit tento sloupec",
|
|
8
|
+
waiSingleSortLabel: "${0} - řadí se podle ${1}. Při výběru se bude řadit podle ${2}.",
|
|
9
|
+
waiNestedSortLabel:"${0} - vnořené řazení podle ${1}. Při výběru se provede vnořené řazení podle ${2}."
|
|
10
|
+
});
|
|
11
|
+
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
define({
|
|
2
|
+
pagerWai: 'Pager',
|
|
3
|
+
|
|
4
|
+
pageIndex: '${0}',
|
|
5
|
+
pageIndexTitle: 'Stránka ${0}',
|
|
6
|
+
|
|
7
|
+
firstPageTitle: 'První stránka',
|
|
8
|
+
prevPageTitle: 'Předchozí stránka',
|
|
9
|
+
nextPageTitle: 'Další stránka',
|
|
10
|
+
lastPageTitle: 'Poslední stránka',
|
|
11
|
+
|
|
12
|
+
pageSize: '${0}',
|
|
13
|
+
pageSizeTitle: '${0} položek na stránce',
|
|
14
|
+
pageSizeAll: 'Vše',
|
|
15
|
+
pageSizeAllTitle: 'Všechny položky',
|
|
16
|
+
|
|
17
|
+
description: '${0} - ${1} z ${2} položek.',
|
|
18
|
+
descriptionEmpty: 'Mřížka je prázdná.',
|
|
19
|
+
|
|
20
|
+
summary: 'Celkem: ${0}',
|
|
21
|
+
summaryWithSelection: 'Celkem: ${0}, vybráno: ${1}',
|
|
22
|
+
|
|
23
|
+
gotoBtnTitle: 'Přejít na specifickou stránku',
|
|
24
|
+
|
|
25
|
+
gotoDialogTitle: 'Přejít na stránku',
|
|
26
|
+
gotoDialogMainMsg: 'Zadejte číslo stránky:',
|
|
27
|
+
gotoDialogPageCount: '(${0} stránek)',
|
|
28
|
+
gotoDialogOKBtn: 'Přejít',
|
|
29
|
+
gotoDialogCancelBtn: 'Storno',
|
|
30
|
+
// for drop down pagination bar
|
|
31
|
+
pageLabel: 'Stránka',
|
|
32
|
+
pageSizeLabel: 'Řádky'
|
|
33
|
+
});
|
|
34
|
+
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
define(
|
|
2
|
+
({
|
|
3
|
+
loadingInfo: "Indlæser...",
|
|
4
|
+
emptyInfo: "Der er ingen elementer at vise",
|
|
5
|
+
loadFailInfo: "Kan ikke indlæse data.",
|
|
6
|
+
loadMore: "Indlæs mere",
|
|
7
|
+
loadMoreLoading: "Indlæser...",
|
|
8
|
+
loadPrevious: "Indlæs forrige",
|
|
9
|
+
loadPreviousLoading: "Indlæser..."
|
|
10
|
+
})
|
|
11
|
+
);
|
|
@@ -0,0 +1,89 @@
|
|
|
1
|
+
define({
|
|
2
|
+
//begin v1.x content
|
|
3
|
+
"clearFilterDialogTitle": "Ryd filter",
|
|
4
|
+
"filterDefDialogTitle": "Filter",
|
|
5
|
+
"defaultRuleTitle": "Regel",
|
|
6
|
+
"ruleTitleTemplate": "Regel ${ruleNumber}",
|
|
7
|
+
"noFilterApplied": "Intet filter anvendt.",
|
|
8
|
+
"defineFilter": "Definér filter",
|
|
9
|
+
"conditionEqual": "lig med",
|
|
10
|
+
"conditionNotEqual": "er forskellig fra",
|
|
11
|
+
"conditionLess": "er mindre end",
|
|
12
|
+
"conditionLessEqual": "mindre end eller lig med",
|
|
13
|
+
"conditionGreater": "er større end",
|
|
14
|
+
"conditionGreaterEqual": "større end eller lig med",
|
|
15
|
+
"conditionContain": "indeholder",
|
|
16
|
+
"conditionIs": "er",
|
|
17
|
+
"conditionStartWith": "begynder med",
|
|
18
|
+
"conditionEndWith": "slutter med",
|
|
19
|
+
"conditionNotContain": "indeholder ikke",
|
|
20
|
+
"conditionIsNot": "er ikke",
|
|
21
|
+
"conditionNotStartWith": "begynder ikke med",
|
|
22
|
+
"conditionNotEndWith": "slutter ikke med",
|
|
23
|
+
"conditionBefore": "før",
|
|
24
|
+
"conditionAfter": "efter",
|
|
25
|
+
"conditionRange": "interval",
|
|
26
|
+
"conditionIsEmpty": "er tom",
|
|
27
|
+
"all": "alle",
|
|
28
|
+
"any": "vilkårlige",
|
|
29
|
+
"relationAll": "alle regler",
|
|
30
|
+
"waiRelAll": "Matcher alle følgende regler:",
|
|
31
|
+
"relationAny": "vilkårlige regler",
|
|
32
|
+
"waiRelAny": "Matcher en eller flere af følgende regler:",
|
|
33
|
+
"relationMsgFront": "Match",
|
|
34
|
+
"relationMsgTail": "",
|
|
35
|
+
"and": "og",
|
|
36
|
+
"or": "eller",
|
|
37
|
+
"addRuleButton": "Tilføj regel",
|
|
38
|
+
"waiAddRuleButton": "Tilføj en ny regel",
|
|
39
|
+
"removeRuleButton": "Fjern regel",
|
|
40
|
+
"waiRemoveRuleButtonTemplate": "Fjern reglen ${0}",
|
|
41
|
+
"addRuleButton": "Tilføj filterregel",
|
|
42
|
+
"cancelButton": "Annullér",
|
|
43
|
+
"waiCancelButton": "Annullér denne dialogboks",
|
|
44
|
+
"clearButton": "Ryd",
|
|
45
|
+
"waiClearButton": "Ryd filteret",
|
|
46
|
+
"filterButton": "Filter",
|
|
47
|
+
"waiFilterButton": "Send filteret",
|
|
48
|
+
"columnSelectLabel": "Kolonne",
|
|
49
|
+
"waiColumnSelectTemplate": "Kolonne for reglen ${0}",
|
|
50
|
+
"conditionSelectLabel": "Betingelse",
|
|
51
|
+
"waiConditionSelectTemplate": "Betingelse for reglen ${0}",
|
|
52
|
+
"valueBoxLabel": "Værdi",
|
|
53
|
+
"waiValueBoxTemplate": "Angiv værdi, der skal filtreres efter for reglen ${0}",
|
|
54
|
+
"rangeTo": "til",
|
|
55
|
+
"rangeTemplate": "fra ${0} til ${1}",
|
|
56
|
+
"statusTipHeaderColumn": "Kolonne",
|
|
57
|
+
"statusTipHeaderCondition": "Regler",
|
|
58
|
+
"statusTipTitle": "Filterlinje",
|
|
59
|
+
"statusTipMsg": "Klik på filterlinjen for at filtrere efter værdier i ${0}.",
|
|
60
|
+
"anycolumn": "vilkårlig kolonne",
|
|
61
|
+
"statusTipTitleNoFilter": "Filterlinje",
|
|
62
|
+
"statusTipTitleHasFilter": "Filter",
|
|
63
|
+
"statusTipRelPre": "Matcher",
|
|
64
|
+
"statusTipRelPost": "regler.",
|
|
65
|
+
"statusTipHeaderAll": "Matcher alle regler.",
|
|
66
|
+
"statusTipHeaderAny": "Matcher en hvilken som helst regel.",
|
|
67
|
+
"defaultItemsName": "elementer",
|
|
68
|
+
"filterBarMsgHasFilterTemplate": "${0} af ${1} ${2} vist.",
|
|
69
|
+
"filterBarMsgNoFilterTemplate": "Intet filter anvendt",
|
|
70
|
+
"filterBarDefButton": "Definér filter",
|
|
71
|
+
"waiFilterBarDefButton": "Filtrér tabellen",
|
|
72
|
+
"a11yFilterBarDefButton": "Filtrér...",
|
|
73
|
+
"filterBarClearButton": "Ryd filter",
|
|
74
|
+
"waiFilterBarClearButton": "Ryd filteret",
|
|
75
|
+
"closeFilterBarBtn": "Luk filterlinje",
|
|
76
|
+
"clearFilterMsg": "Denne funktion fjerner filteret og viser alle tilgængelige records.",
|
|
77
|
+
"anyColumnOption": "Vilkårlig kolonne",
|
|
78
|
+
"trueLabel": "Sand",
|
|
79
|
+
"falseLabel": "Falsk",
|
|
80
|
+
"radioTrueLabel": "Værdi sand",
|
|
81
|
+
"radioFalseLabel": "Værdi falsk",
|
|
82
|
+
"beginTimeRangeLabel": "Startværdi for klokkeslætsinterval",
|
|
83
|
+
"endTimeRangeLabel": "Slutværdi for klokkeslætsinterval",
|
|
84
|
+
"beginDateRangeLabel": "Startværdi for datointerval",
|
|
85
|
+
"endDateRangeLabel": "Slutværdi for datointerval",
|
|
86
|
+
"startsWithExpr": "${0}*"
|
|
87
|
+
//end v1.x content
|
|
88
|
+
});
|
|
89
|
+
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
define({
|
|
2
|
+
singleSort: "Enkelt sortering",
|
|
3
|
+
nestedSort: "Indlejret sortering",
|
|
4
|
+
ascending: "Klik for at sortere stigende",
|
|
5
|
+
descending: "Klik for at sortere faldende",
|
|
6
|
+
sortingState: "${0} - ${1}",
|
|
7
|
+
unsorted: "Sortér ikke denne kolonne",
|
|
8
|
+
waiSingleSortLabel: "${0} - er sorteret efter ${1}. Vælg for at sortere efter ${2}",
|
|
9
|
+
waiNestedSortLabel:"${0} - er sorteret indlejret efter ${1}. Vælg for at sortere indlejret efter ${2}"
|
|
10
|
+
});
|
|
11
|
+
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
define({
|
|
2
|
+
pagerWai: 'Sideinddeling',
|
|
3
|
+
|
|
4
|
+
pageIndex: '${0}',
|
|
5
|
+
pageIndexTitle: 'Side ${0}',
|
|
6
|
+
|
|
7
|
+
firstPageTitle: 'Første side',
|
|
8
|
+
prevPageTitle: 'Forrige side',
|
|
9
|
+
nextPageTitle: 'Næste side',
|
|
10
|
+
lastPageTitle: 'Sidste side',
|
|
11
|
+
|
|
12
|
+
pageSize: '${0}',
|
|
13
|
+
pageSizeTitle: '${0} elementer pr. side',
|
|
14
|
+
pageSizeAll: 'Alle',
|
|
15
|
+
pageSizeAllTitle: 'Alle elementer',
|
|
16
|
+
|
|
17
|
+
description: '${0} - ${1} af ${2} elementer.',
|
|
18
|
+
descriptionEmpty: 'Gitter er tomt.',
|
|
19
|
+
|
|
20
|
+
summary: 'I alt: ${0}',
|
|
21
|
+
summaryWithSelection: 'I alt: ${0} Valgt: ${1}',
|
|
22
|
+
|
|
23
|
+
gotoBtnTitle: 'Gå til en bestemt side',
|
|
24
|
+
|
|
25
|
+
gotoDialogTitle: 'Gå til side',
|
|
26
|
+
gotoDialogMainMsg: 'Angiv sidenummeret:',
|
|
27
|
+
gotoDialogPageCount: ' (${0} sider)',
|
|
28
|
+
gotoDialogOKBtn: 'Udfør',
|
|
29
|
+
gotoDialogCancelBtn: 'Annullér',
|
|
30
|
+
// for drop down pagination bar
|
|
31
|
+
pageLabel: 'Side',
|
|
32
|
+
pageSizeLabel: 'Rækker'
|
|
33
|
+
});
|
|
34
|
+
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
define(
|
|
2
|
+
({
|
|
3
|
+
loadingInfo: "Ladevorgang läuft...",
|
|
4
|
+
emptyInfo: "Es sind keine anzuzeigenden Elemente vorhanden.",
|
|
5
|
+
loadFailInfo: "Fehler beim Laden der Daten!",
|
|
6
|
+
loadMore: "Weitere laden",
|
|
7
|
+
loadMoreLoading: "Ladevorgang läuft...",
|
|
8
|
+
loadPrevious: "Vorherige laden",
|
|
9
|
+
loadPreviousLoading: "Ladevorgang läuft..."
|
|
10
|
+
})
|
|
11
|
+
);
|
|
@@ -0,0 +1,89 @@
|
|
|
1
|
+
define({
|
|
2
|
+
//begin v1.x content
|
|
3
|
+
"clearFilterDialogTitle": "Filter aufheben",
|
|
4
|
+
"filterDefDialogTitle": "Filtern",
|
|
5
|
+
"defaultRuleTitle": "Regel",
|
|
6
|
+
"ruleTitleTemplate": "Regel ${ruleNumber}",
|
|
7
|
+
"noFilterApplied": "Kein Filter angewendet.",
|
|
8
|
+
"defineFilter": "Filter definieren",
|
|
9
|
+
"conditionEqual": "gleich",
|
|
10
|
+
"conditionNotEqual": "ungleich",
|
|
11
|
+
"conditionLess": "kleiner als",
|
|
12
|
+
"conditionLessEqual": "kleiner oder gleich",
|
|
13
|
+
"conditionGreater": "größer als",
|
|
14
|
+
"conditionGreaterEqual": "größer oder gleich",
|
|
15
|
+
"conditionContain": "enthält",
|
|
16
|
+
"conditionIs": "ist",
|
|
17
|
+
"conditionStartWith": "beginnt mit",
|
|
18
|
+
"conditionEndWith": "endet mit",
|
|
19
|
+
"conditionNotContain": "enthält nicht",
|
|
20
|
+
"conditionIsNot": "ist nicht",
|
|
21
|
+
"conditionNotStartWith": "beginnt nicht mit",
|
|
22
|
+
"conditionNotEndWith": "endet nicht mit",
|
|
23
|
+
"conditionBefore": "vor",
|
|
24
|
+
"conditionAfter": "nach",
|
|
25
|
+
"conditionRange": "Bereich",
|
|
26
|
+
"conditionIsEmpty": "ist leer",
|
|
27
|
+
"all": "alle",
|
|
28
|
+
"any": "beliebige",
|
|
29
|
+
"relationAll": "alle Regeln",
|
|
30
|
+
"waiRelAll": "Übereinstimmung mit allen folgenden Regeln:",
|
|
31
|
+
"relationAny": "beliebige Regel(n)",
|
|
32
|
+
"waiRelAny": "Übereinstimmung mit einer oder mehreren der folgenden Regeln:",
|
|
33
|
+
"relationMsgFront": "Übereinstimmung",
|
|
34
|
+
"relationMsgTail": "",
|
|
35
|
+
"and": "und",
|
|
36
|
+
"or": "oder",
|
|
37
|
+
"addRuleButton": "Regel hinzufügen",
|
|
38
|
+
"waiAddRuleButton": "Neue Regel hinzufügen",
|
|
39
|
+
"removeRuleButton": "Regel entfernen",
|
|
40
|
+
"waiRemoveRuleButtonTemplate": "Regel entfernen: ${0}",
|
|
41
|
+
"addRuleButton": "Filterregel hinzufügen",
|
|
42
|
+
"cancelButton": "Abbrechen",
|
|
43
|
+
"waiCancelButton": "Diesen Dialog abbrechen",
|
|
44
|
+
"clearButton": "Aufheben",
|
|
45
|
+
"waiClearButton": "Den Filter aufheben",
|
|
46
|
+
"filterButton": "Filtern",
|
|
47
|
+
"waiFilterButton": "Filter übergeben",
|
|
48
|
+
"columnSelectLabel": "Säule",
|
|
49
|
+
"waiColumnSelectTemplate": "Spalte für Regel ${0}",
|
|
50
|
+
"conditionSelectLabel": "Bedingung",
|
|
51
|
+
"waiConditionSelectTemplate": "Bedingung für Regel ${0}",
|
|
52
|
+
"valueBoxLabel": "Wert",
|
|
53
|
+
"waiValueBoxTemplate": "Filterwert für Regel ${0} eingeben",
|
|
54
|
+
"rangeTo": "bis",
|
|
55
|
+
"rangeTemplate": "von ${0} bis ${1}",
|
|
56
|
+
"statusTipHeaderColumn": "Säule",
|
|
57
|
+
"statusTipHeaderCondition": "Regeln",
|
|
58
|
+
"statusTipTitle": "Filterleiste",
|
|
59
|
+
"statusTipMsg": "Hier in der Filterleiste klicken, um nach Werten in ${0} zu filtern.",
|
|
60
|
+
"anycolumn": "beliebige Spalte",
|
|
61
|
+
"statusTipTitleNoFilter": "Filterleiste",
|
|
62
|
+
"statusTipTitleHasFilter": "Filtern",
|
|
63
|
+
"statusTipRelPre": "Übereinstimmung",
|
|
64
|
+
"statusTipRelPost": "mit Regeln.",
|
|
65
|
+
"statusTipHeaderAll": "Übereinstimmung mit allen Regeln.",
|
|
66
|
+
"statusTipHeaderAny": "Übereinstimmung mit einer oder mehreren beliebigen Regeln.",
|
|
67
|
+
"defaultItemsName": "Elemente",
|
|
68
|
+
"filterBarMsgHasFilterTemplate": "${0} von ${1} ${2} werden angezeigt.",
|
|
69
|
+
"filterBarMsgNoFilterTemplate": "Kein Filter angewendet",
|
|
70
|
+
"filterBarDefButton": "Filter definieren",
|
|
71
|
+
"waiFilterBarDefButton": "Tabelle filtern",
|
|
72
|
+
"a11yFilterBarDefButton": "Filtern...",
|
|
73
|
+
"filterBarClearButton": "Filter aufheben",
|
|
74
|
+
"waiFilterBarClearButton": "Den Filter aufheben",
|
|
75
|
+
"closeFilterBarBtn": "Filterleiste schließen",
|
|
76
|
+
"clearFilterMsg": "Entfernt den Filter und zeigt alle verfügbaren Datensätze an.",
|
|
77
|
+
"anyColumnOption": "Beliebige Spalte",
|
|
78
|
+
"trueLabel": "Wahr",
|
|
79
|
+
"falseLabel": "Falsch",
|
|
80
|
+
"radioTrueLabel": "Wert wahr",
|
|
81
|
+
"radioFalseLabel": "Wert falsch",
|
|
82
|
+
"beginTimeRangeLabel": "Zeitbereichswert - Beginn",
|
|
83
|
+
"endTimeRangeLabel": "Zeitbereichswert - Ende",
|
|
84
|
+
"beginDateRangeLabel": "Datumsbereichswert - Beginn",
|
|
85
|
+
"endDateRangeLabel": "Datumsbereichswert - Ende",
|
|
86
|
+
"startsWithExpr": "${0}*"
|
|
87
|
+
//end v1.x content
|
|
88
|
+
});
|
|
89
|
+
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
define({
|
|
2
|
+
singleSort: "Einzelne Sortierung",
|
|
3
|
+
nestedSort: "Verschachtelte Sortierung",
|
|
4
|
+
ascending: "Für aufsteigende Sortierung klicken",
|
|
5
|
+
descending: "Für absteigende Sortierung klicken",
|
|
6
|
+
sortingState: "${0} - ${1}",
|
|
7
|
+
unsorted: "Diese Spalte nicht sortieren",
|
|
8
|
+
waiSingleSortLabel: "${0} - wird sortiert nach ${1}. Auswahl der Sortierung nach ${2}",
|
|
9
|
+
waiNestedSortLabel:"${0} - wird verschachtelt sortiert nach ${1}. Auswahl der verschachtelten Sortierung nach ${2}"
|
|
10
|
+
});
|
|
11
|
+
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
define({
|
|
2
|
+
pagerWai: 'Pager',
|
|
3
|
+
|
|
4
|
+
pageIndex: '${0}',
|
|
5
|
+
pageIndexTitle: 'Seite ${0}',
|
|
6
|
+
|
|
7
|
+
firstPageTitle: 'Erste Seite',
|
|
8
|
+
prevPageTitle: 'Vorherige Seite',
|
|
9
|
+
nextPageTitle: 'Nächste Seite',
|
|
10
|
+
lastPageTitle: 'Letzte Seite',
|
|
11
|
+
|
|
12
|
+
pageSize: '${0}',
|
|
13
|
+
pageSizeTitle: '${0} Elemente pro Seite',
|
|
14
|
+
pageSizeAll: 'Alle',
|
|
15
|
+
pageSizeAllTitle: 'Alle Elemente',
|
|
16
|
+
|
|
17
|
+
description: '${0} - ${1} von ${2} Elementen.',
|
|
18
|
+
descriptionEmpty: 'Raster ist leer.',
|
|
19
|
+
|
|
20
|
+
summary: 'Gesamt: ${0}',
|
|
21
|
+
summaryWithSelection: 'Gesamt: ${0} Ausgewählt: ${1}',
|
|
22
|
+
|
|
23
|
+
gotoBtnTitle: 'Bestimmte Seite aufrufen',
|
|
24
|
+
|
|
25
|
+
gotoDialogTitle: 'Zu Seite',
|
|
26
|
+
gotoDialogMainMsg: 'Die Seitennummer angeben:',
|
|
27
|
+
gotoDialogPageCount: '(${0} Seiten)',
|
|
28
|
+
gotoDialogOKBtn: 'Los',
|
|
29
|
+
gotoDialogCancelBtn: 'Abbrechen',
|
|
30
|
+
// for drop down pagination bar
|
|
31
|
+
pageLabel: 'Seite',
|
|
32
|
+
pageSizeLabel: 'Zeilen'
|
|
33
|
+
});
|
|
34
|
+
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
define(
|
|
2
|
+
({
|
|
3
|
+
loadingInfo: "Φόρτωση...",
|
|
4
|
+
emptyInfo: "Δεν υπάρχουν στοιχεία για εμφάνιση.",
|
|
5
|
+
loadFailInfo: "Απέτυχε η φόρτωση δεδομένων!",
|
|
6
|
+
loadMore: "Φόρτωση περισσοτέρων",
|
|
7
|
+
loadMoreLoading: "Φόρτωση...",
|
|
8
|
+
loadPrevious: "Φόρτωση προηγούμενου",
|
|
9
|
+
loadPreviousLoading: "Φόρτωση..."
|
|
10
|
+
})
|
|
11
|
+
);
|
|
@@ -0,0 +1,89 @@
|
|
|
1
|
+
define({
|
|
2
|
+
//begin v1.x content
|
|
3
|
+
"clearFilterDialogTitle": "Εκκαθάριση φίλτρου",
|
|
4
|
+
"filterDefDialogTitle": "Φίλτρο",
|
|
5
|
+
"defaultRuleTitle": "Κανόνας",
|
|
6
|
+
"ruleTitleTemplate": "Κανόνας ${ruleNumber}",
|
|
7
|
+
"noFilterApplied": "Δεν έχει εφαρμοστεί φίλτρο.",
|
|
8
|
+
"defineFilter": "Ορισμός φίλτρου",
|
|
9
|
+
"conditionEqual": "ίσο",
|
|
10
|
+
"conditionNotEqual": "όχι ίσο",
|
|
11
|
+
"conditionLess": "μικρότερο από",
|
|
12
|
+
"conditionLessEqual": "μικρότερο από ή ίσο",
|
|
13
|
+
"conditionGreater": "μεγαλύτερο από",
|
|
14
|
+
"conditionGreaterEqual": "μεγαλύτερο από ή ίσο",
|
|
15
|
+
"conditionContain": "περιέχει",
|
|
16
|
+
"conditionIs": "είναι",
|
|
17
|
+
"conditionStartWith": "αρχίζει από",
|
|
18
|
+
"conditionEndWith": "τελειώνει σε",
|
|
19
|
+
"conditionNotContain": "δεν περιέχει",
|
|
20
|
+
"conditionIsNot": "δεν είναι",
|
|
21
|
+
"conditionNotStartWith": "δεν αρχίζει από",
|
|
22
|
+
"conditionNotEndWith": "δεν τελειώνει σε",
|
|
23
|
+
"conditionBefore": "πριν από",
|
|
24
|
+
"conditionAfter": "μετά",
|
|
25
|
+
"conditionRange": "εύρος",
|
|
26
|
+
"conditionIsEmpty": "είναι κενό",
|
|
27
|
+
"all": "όλα",
|
|
28
|
+
"any": "οποιοδήποτε",
|
|
29
|
+
"relationAll": "όλοι οι κανόνες",
|
|
30
|
+
"waiRelAll": "Ικανοποίηση όλων των ακόλουθων κανόνων:",
|
|
31
|
+
"relationAny": "οποιοσδήποτε κανόνας",
|
|
32
|
+
"waiRelAny": "Ικανοποίηση οποιουδήποτε από τους ακόλουθους κανόνες:",
|
|
33
|
+
"relationMsgFront": "Εντοπισμός",
|
|
34
|
+
"relationMsgTail": "",
|
|
35
|
+
"and": "και",
|
|
36
|
+
"or": "ή",
|
|
37
|
+
"addRuleButton": "Προσθήκη κανόνα",
|
|
38
|
+
"waiAddRuleButton": "Προσθήκη νέου κανόνα",
|
|
39
|
+
"removeRuleButton": "Αφαίρεση κανόνα",
|
|
40
|
+
"waiRemoveRuleButtonTemplate": "Αφαίρεση κανόνα ${0}",
|
|
41
|
+
"addRuleButton": "Προσθήκη κανόνα φιλτραρίσματος",
|
|
42
|
+
"cancelButton": "Ακύρωση",
|
|
43
|
+
"waiCancelButton": "Ακύρωση του πλαισίου διαλόγου",
|
|
44
|
+
"clearButton": "Εκκαθάριση ",
|
|
45
|
+
"waiClearButton": "Εκκαθάριση του φίλτρου",
|
|
46
|
+
"filterButton": "Φίλτρο",
|
|
47
|
+
"waiFilterButton": "Υποβολή του φίλτρου",
|
|
48
|
+
"columnSelectLabel": "Στήλη",
|
|
49
|
+
"waiColumnSelectTemplate": "Στήλη για τον κανόνα ${0}",
|
|
50
|
+
"conditionSelectLabel": "Συνθήκη",
|
|
51
|
+
"waiConditionSelectTemplate": "Συνθήκη για τον κανόνα ${0}",
|
|
52
|
+
"valueBoxLabel": "Τιμή",
|
|
53
|
+
"waiValueBoxTemplate": "Καταχωρήστε τιμή για φιλτράρισμα για τον κανόνα ${0}",
|
|
54
|
+
"rangeTo": "έως",
|
|
55
|
+
"rangeTemplate": "από ${0} έως ${1}",
|
|
56
|
+
"statusTipHeaderColumn": "Στήλη",
|
|
57
|
+
"statusTipHeaderCondition": "Κανόνες",
|
|
58
|
+
"statusTipTitle": "Γραμμή φίλτρου",
|
|
59
|
+
"statusTipMsg": "Πατήστε στη γραμμή φίλτρου για να φιλτράρετε με βάση τιμές στο ${0}.",
|
|
60
|
+
"anycolumn": "οποιαδήποτε στήλη",
|
|
61
|
+
"statusTipTitleNoFilter": "Γραμμή φίλτρου",
|
|
62
|
+
"statusTipTitleHasFilter": "Φίλτρο",
|
|
63
|
+
"statusTipRelPre": "Εντοπισμός",
|
|
64
|
+
"statusTipRelPost": "κανόνες.",
|
|
65
|
+
"statusTipHeaderAll": "Ικανοποίηση όλων των κανόνων.",
|
|
66
|
+
"statusTipHeaderAny": "Ικανοποίηση οποιουδήποτε κανόνα.",
|
|
67
|
+
"defaultItemsName": "στοιχεία",
|
|
68
|
+
"filterBarMsgHasFilterTemplate": "Εμφανίζονται ${0} από ${1} ${2}.",
|
|
69
|
+
"filterBarMsgNoFilterTemplate": "Δεν έχει εφαρμοστεί φίλτρο",
|
|
70
|
+
"filterBarDefButton": "Ορισμός φίλτρου",
|
|
71
|
+
"waiFilterBarDefButton": "Φιλτράρισμα του πίνακα",
|
|
72
|
+
"a11yFilterBarDefButton": "Φιλτράρισμα...",
|
|
73
|
+
"filterBarClearButton": "Εκκαθάριση φίλτρου",
|
|
74
|
+
"waiFilterBarClearButton": "Εκκαθάριση του φίλτρου",
|
|
75
|
+
"closeFilterBarBtn": "Κλείσιμο γραμμής φίλτρου",
|
|
76
|
+
"clearFilterMsg": "Το φίλτρο θα αφαιρεθεί και θα εμφανιστούν όλες οι διαθέσιμες εγγραφές.",
|
|
77
|
+
"anyColumnOption": "Οποιαδήποτε στήλη",
|
|
78
|
+
"trueLabel": "Αληθές",
|
|
79
|
+
"falseLabel": "Ψευδές",
|
|
80
|
+
"radioTrueLabel": "Τιμή Αληθές",
|
|
81
|
+
"radioFalseLabel": "Τιμή Ψευδές",
|
|
82
|
+
"beginTimeRangeLabel": "Αρχική τιμή εύρους ωρών",
|
|
83
|
+
"endTimeRangeLabel": "Τελική τιμή εύρους ωρών",
|
|
84
|
+
"beginDateRangeLabel": "Αρχική τιμή εύρους ημερομηνιών",
|
|
85
|
+
"endDateRangeLabel": "Τελική τιμή εύρους ημερομηνιών",
|
|
86
|
+
"startsWithExpr": "${0}*"
|
|
87
|
+
//end v1.x content
|
|
88
|
+
});
|
|
89
|
+
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
define({
|
|
2
|
+
singleSort: "Ταξινόμηση ενός επιπέδου",
|
|
3
|
+
nestedSort: "Ταξινόμηση πολλαπλών επιπέδων",
|
|
4
|
+
ascending: "Πατήστε για ταξινόμηση με αύξουσα σειρά",
|
|
5
|
+
descending: "Πατήστε για ταξινόμηση με φθίνουσα σειρά",
|
|
6
|
+
sortingState: "${0} - ${1}",
|
|
7
|
+
unsorted: "Να μη γίνει ταξινόμηση σε αυτή τη στήλη",
|
|
8
|
+
waiSingleSortLabel: "${0} - έχει ταξινομηθεί κατά ${1}. Επιλέξτε για ταξινόμηση κατά ${2}",
|
|
9
|
+
waiNestedSortLabel:"${0} - έχει γίνει ταξινόμηση πολλαπλών επιπέδων κατά ${1}. Επιλέξτε ταξινόμηση πολλαπλών επιπέδων κατά ${2}."
|
|
10
|
+
});
|
|
11
|
+
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
define({
|
|
2
|
+
pagerWai: 'Σελιδοποίηση',
|
|
3
|
+
|
|
4
|
+
pageIndex: '${0}',
|
|
5
|
+
pageIndexTitle: 'Σελίδα ${0}',
|
|
6
|
+
|
|
7
|
+
firstPageTitle: 'Πρώτη σελίδα',
|
|
8
|
+
prevPageTitle: 'Προηγούμενη σελίδα',
|
|
9
|
+
nextPageTitle: 'Επόμενη σελίδα',
|
|
10
|
+
lastPageTitle: 'Τελευταία σελίδα',
|
|
11
|
+
|
|
12
|
+
pageSize: '${0}',
|
|
13
|
+
pageSizeTitle: '${0} στοιχεία ανά σελίδα',
|
|
14
|
+
pageSizeAll: 'Όλα',
|
|
15
|
+
pageSizeAllTitle: 'Όλα τα στοιχεία',
|
|
16
|
+
|
|
17
|
+
description: '${0} - ${1} από ${2} στοιχεία.',
|
|
18
|
+
descriptionEmpty: 'Το πλέγμα είναι κενό.',
|
|
19
|
+
|
|
20
|
+
summary: 'Σύνολο: ${0}',
|
|
21
|
+
summaryWithSelection: 'Σύνολο: ${0} Επιλογή: ${1}',
|
|
22
|
+
|
|
23
|
+
gotoBtnTitle: 'Μετάβαση σε συγκεκριμένη σελίδα',
|
|
24
|
+
|
|
25
|
+
gotoDialogTitle: 'Μετάβαση σε σελίδα',
|
|
26
|
+
gotoDialogMainMsg: 'Καθορίστε τον αριθμό σελίδας:',
|
|
27
|
+
gotoDialogPageCount: '(${0} σελίδες)',
|
|
28
|
+
gotoDialogOKBtn: 'Μετάβαση',
|
|
29
|
+
gotoDialogCancelBtn: 'Ακύρωση',
|
|
30
|
+
// for drop down pagination bar
|
|
31
|
+
pageLabel: 'Σελίδα',
|
|
32
|
+
pageSizeLabel: 'Γραμμές'
|
|
33
|
+
});
|
|
34
|
+
|