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": "Počisti filter",
|
|
4
|
+
"filterDefDialogTitle": "Filter",
|
|
5
|
+
"defaultRuleTitle": "Pravilo",
|
|
6
|
+
"ruleTitleTemplate": "Pravilo ${ruleNumber}",
|
|
7
|
+
"noFilterApplied": "Uporabljen ni noben filter.",
|
|
8
|
+
"defineFilter": "Definiraj filter",
|
|
9
|
+
"conditionEqual": "je enako",
|
|
10
|
+
"conditionNotEqual": "ni enako",
|
|
11
|
+
"conditionLess": "je manjše kot",
|
|
12
|
+
"conditionLessEqual": "je manjše kot ali enako",
|
|
13
|
+
"conditionGreater": "je večje kot",
|
|
14
|
+
"conditionGreaterEqual": "je večje kot ali enako",
|
|
15
|
+
"conditionContain": "vsebuje",
|
|
16
|
+
"conditionIs": "je",
|
|
17
|
+
"conditionStartWith": "se začne s",
|
|
18
|
+
"conditionEndWith": "se konča s",
|
|
19
|
+
"conditionNotContain": "ne vsebuje",
|
|
20
|
+
"conditionIsNot": "ni",
|
|
21
|
+
"conditionNotStartWith": "se ne začne s",
|
|
22
|
+
"conditionNotEndWith": "se ne konča s",
|
|
23
|
+
"conditionBefore": "pred",
|
|
24
|
+
"conditionAfter": "za",
|
|
25
|
+
"conditionRange": "obseg",
|
|
26
|
+
"conditionIsEmpty": "je prazno",
|
|
27
|
+
"all": "vse",
|
|
28
|
+
"any": "kateri koli",
|
|
29
|
+
"relationAll": "vsa pravila",
|
|
30
|
+
"waiRelAll": "Ujema se z vsemi od naslednjih pravil:",
|
|
31
|
+
"relationAny": "katerakoli pravila",
|
|
32
|
+
"waiRelAny": "Ujema se s katerimkoli od naslednjih pravil:",
|
|
33
|
+
"relationMsgFront": "Ujemanje",
|
|
34
|
+
"relationMsgTail": "",
|
|
35
|
+
"and": "in",
|
|
36
|
+
"or": "ali",
|
|
37
|
+
"addRuleButton": "Dodaj pravilo",
|
|
38
|
+
"waiAddRuleButton": "Dodaj novo pravilo",
|
|
39
|
+
"removeRuleButton": "Odstrani pravilo",
|
|
40
|
+
"waiRemoveRuleButtonTemplate": "Odstrani pravilo ${0}",
|
|
41
|
+
"addRuleButton": "Dodaj pravilo filtra",
|
|
42
|
+
"cancelButton": "Prekliči",
|
|
43
|
+
"waiCancelButton": "Prekliči to pogovorno okno",
|
|
44
|
+
"clearButton": "Počisti",
|
|
45
|
+
"waiClearButton": "Počisti filter",
|
|
46
|
+
"filterButton": "Filter",
|
|
47
|
+
"waiFilterButton": "Predloži filter",
|
|
48
|
+
"columnSelectLabel": "Stolpec",
|
|
49
|
+
"waiColumnSelectTemplate": "Stolpec za pravilo ${0}",
|
|
50
|
+
"conditionSelectLabel": "Pogoj",
|
|
51
|
+
"waiConditionSelectTemplate": "Pogoj za pravilo ${0}",
|
|
52
|
+
"valueBoxLabel": "Vrednost",
|
|
53
|
+
"waiValueBoxTemplate": "Vnesite vrednost za filter pravila ${0}",
|
|
54
|
+
"rangeTo": "do",
|
|
55
|
+
"rangeTemplate": "od ${0} do ${1}",
|
|
56
|
+
"statusTipHeaderColumn": "Stolpec",
|
|
57
|
+
"statusTipHeaderCondition": "Pravila",
|
|
58
|
+
"statusTipTitle": "Vrstica za filtriranje",
|
|
59
|
+
"statusTipMsg": "Kliknite vrstico za filtriranje tukaj, da prefiltrirate vrednosti v ${0}.",
|
|
60
|
+
"anycolumn": "katerikoli stolpec",
|
|
61
|
+
"statusTipTitleNoFilter": "Vrstica za filtriranje",
|
|
62
|
+
"statusTipTitleHasFilter": "Filter",
|
|
63
|
+
"statusTipRelPre": "Ujemanje",
|
|
64
|
+
"statusTipRelPost": "pravil.",
|
|
65
|
+
"statusTipHeaderAll": "Ujemanje vseh pravil.",
|
|
66
|
+
"statusTipHeaderAny": "Ujemanje vseh pravil.",
|
|
67
|
+
"defaultItemsName": "postavke",
|
|
68
|
+
"filterBarMsgHasFilterTemplate": "Prikazanih je ${0} od ${1} ${2}.",
|
|
69
|
+
"filterBarMsgNoFilterTemplate": "Uveljavljen ni noben filter.",
|
|
70
|
+
"filterBarDefButton": "Definiraj filter",
|
|
71
|
+
"waiFilterBarDefButton": "Filtriraj tabelo",
|
|
72
|
+
"a11yFilterBarDefButton": "Filtriraj ...",
|
|
73
|
+
"filterBarClearButton": "Počisti filter",
|
|
74
|
+
"waiFilterBarClearButton": "Počisti filter",
|
|
75
|
+
"closeFilterBarBtn": "Zapri vrstico za filtriranje",
|
|
76
|
+
"clearFilterMsg": "S tem boste odstranili filter in prikazali se bodo vsi razpoložljivi zapisi.",
|
|
77
|
+
"anyColumnOption": "Katerikoli stolpec",
|
|
78
|
+
"trueLabel": "True",
|
|
79
|
+
"falseLabel": "False",
|
|
80
|
+
"radioTrueLabel": "Vrednost True",
|
|
81
|
+
"radioFalseLabel": "Vrednost False",
|
|
82
|
+
"beginTimeRangeLabel": "Začetek vrednosti časovnega obsega",
|
|
83
|
+
"endTimeRangeLabel": "Konec vrednosti časovnega obsega",
|
|
84
|
+
"beginDateRangeLabel": "Začetek vrednosti datumskega obsega",
|
|
85
|
+
"endDateRangeLabel": "Konec vrednosti datumskega obsega",
|
|
86
|
+
"startsWithExpr": "${0}*"
|
|
87
|
+
//end v1.x content
|
|
88
|
+
});
|
|
89
|
+
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
define({
|
|
2
|
+
singleSort: "Enostavno razvrščanje",
|
|
3
|
+
nestedSort: "Ugnezdeno razvrščanje",
|
|
4
|
+
ascending: "Kliknite, če želite zagnati naraščajoče razvrščanje",
|
|
5
|
+
descending: "Kliknite, če želite zagnati padajoče razvrščanje",
|
|
6
|
+
sortingState: "${0} - ${1}",
|
|
7
|
+
unsorted: "Ne razvrščaj tega stolpca",
|
|
8
|
+
waiSingleSortLabel: "${0} - je razvrščen glede na ${1}. Izberi razvrščanje glede na ${2}",
|
|
9
|
+
waiNestedSortLabel:"${0} - je ugnezden glede na ${1}. Izberi ugnezditev glede na ${2}"
|
|
10
|
+
});
|
|
11
|
+
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
define({
|
|
2
|
+
pagerWai: 'Pozivnik',
|
|
3
|
+
|
|
4
|
+
pageIndex: '${0}',
|
|
5
|
+
pageIndexTitle: 'Stran ${0}',
|
|
6
|
+
|
|
7
|
+
firstPageTitle: 'Prva stran',
|
|
8
|
+
prevPageTitle: 'Prejšnja stran',
|
|
9
|
+
nextPageTitle: 'Naslednja stran',
|
|
10
|
+
lastPageTitle: 'Zadnja stran',
|
|
11
|
+
|
|
12
|
+
pageSize: '${0}',
|
|
13
|
+
pageSizeTitle: '${0} postavk na stran',
|
|
14
|
+
pageSizeAll: 'Vse',
|
|
15
|
+
pageSizeAllTitle: 'Vse postavke',
|
|
16
|
+
|
|
17
|
+
description: '${0}-${1} od ${2} postavk.',
|
|
18
|
+
descriptionEmpty: 'Mreža je prazna.',
|
|
19
|
+
|
|
20
|
+
summary: 'Skupaj: ${0}',
|
|
21
|
+
summaryWithSelection: 'Skupaj: ${0} Izbranih: ${1}',
|
|
22
|
+
|
|
23
|
+
gotoBtnTitle: 'Pojdi na specifično stran',
|
|
24
|
+
|
|
25
|
+
gotoDialogTitle: 'Pojdi na stran',
|
|
26
|
+
gotoDialogMainMsg: 'Navedite številko strani:',
|
|
27
|
+
gotoDialogPageCount: '(${0} strani)',
|
|
28
|
+
gotoDialogOKBtn: 'Pojdi',
|
|
29
|
+
gotoDialogCancelBtn: 'Prekliči',
|
|
30
|
+
// for drop down pagination bar
|
|
31
|
+
pageLabel: 'Stran',
|
|
32
|
+
pageSizeLabel: 'Vrstice'
|
|
33
|
+
});
|
|
34
|
+
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
define(
|
|
2
|
+
({
|
|
3
|
+
loadingInfo: "Läser in...",
|
|
4
|
+
emptyInfo: "Det finns inga objekt att visa",
|
|
5
|
+
loadFailInfo: "Det gick inte att läsa in data!",
|
|
6
|
+
loadMore: "Läs in mer",
|
|
7
|
+
loadMoreLoading: "Läser in...",
|
|
8
|
+
loadPrevious: "Läs in föregående",
|
|
9
|
+
loadPreviousLoading: "Läser in..."
|
|
10
|
+
})
|
|
11
|
+
);
|
|
@@ -0,0 +1,89 @@
|
|
|
1
|
+
define({
|
|
2
|
+
//begin v1.x content
|
|
3
|
+
"clearFilterDialogTitle": "Rensa filter",
|
|
4
|
+
"filterDefDialogTitle": "Filter",
|
|
5
|
+
"defaultRuleTitle": "Regel",
|
|
6
|
+
"ruleTitleTemplate": "Regel ${ruleNumber}",
|
|
7
|
+
"noFilterApplied": "Inget filter tillämpat.",
|
|
8
|
+
"defineFilter": "Definiera filter",
|
|
9
|
+
"conditionEqual": "lika med",
|
|
10
|
+
"conditionNotEqual": "inte lika med",
|
|
11
|
+
"conditionLess": "är mindre än",
|
|
12
|
+
"conditionLessEqual": "mindre eller lika med",
|
|
13
|
+
"conditionGreater": "är större än",
|
|
14
|
+
"conditionGreaterEqual": "större än eller lika med",
|
|
15
|
+
"conditionContain": "innehåller",
|
|
16
|
+
"conditionIs": "är",
|
|
17
|
+
"conditionStartWith": "börjar med",
|
|
18
|
+
"conditionEndWith": "slutar med",
|
|
19
|
+
"conditionNotContain": "innehåller inte",
|
|
20
|
+
"conditionIsNot": "är inte",
|
|
21
|
+
"conditionNotStartWith": "börjar inte med",
|
|
22
|
+
"conditionNotEndWith": "slutar inte med",
|
|
23
|
+
"conditionBefore": "före",
|
|
24
|
+
"conditionAfter": "efter",
|
|
25
|
+
"conditionRange": "intervall",
|
|
26
|
+
"conditionIsEmpty": "är tom",
|
|
27
|
+
"all": "alla",
|
|
28
|
+
"any": "någon",
|
|
29
|
+
"relationAll": "alla regler",
|
|
30
|
+
"waiRelAll": "Matcha alla följande regler:",
|
|
31
|
+
"relationAny": "någon regel",
|
|
32
|
+
"waiRelAny": "Matcha någon av följande regler:",
|
|
33
|
+
"relationMsgFront": "Matcha",
|
|
34
|
+
"relationMsgTail": "",
|
|
35
|
+
"and": "och",
|
|
36
|
+
"or": "eller",
|
|
37
|
+
"addRuleButton": "Lägg till regel",
|
|
38
|
+
"waiAddRuleButton": "Lägg till en ny regel",
|
|
39
|
+
"removeRuleButton": "Ta bort regel",
|
|
40
|
+
"waiRemoveRuleButtonTemplate": "Ta bort regel ${0}",
|
|
41
|
+
"addRuleButton": "Lägg till filterregel",
|
|
42
|
+
"cancelButton": "Avbryt",
|
|
43
|
+
"waiCancelButton": "Avbryt dialogen",
|
|
44
|
+
"clearButton": "Rensa",
|
|
45
|
+
"waiClearButton": "Rensa filtret",
|
|
46
|
+
"filterButton": "Filter",
|
|
47
|
+
"waiFilterButton": "Filtrera",
|
|
48
|
+
"columnSelectLabel": "Kolumn",
|
|
49
|
+
"waiColumnSelectTemplate": "Kolumn för regel ${0}",
|
|
50
|
+
"conditionSelectLabel": "Villkor",
|
|
51
|
+
"waiConditionSelectTemplate": "Villkor för regel ${0}",
|
|
52
|
+
"valueBoxLabel": "Värde",
|
|
53
|
+
"waiValueBoxTemplate": "Ange värde för filtrering efter regeln ${0}",
|
|
54
|
+
"rangeTo": "till",
|
|
55
|
+
"rangeTemplate": "från ${0} till ${1}",
|
|
56
|
+
"statusTipHeaderColumn": "Kolumn",
|
|
57
|
+
"statusTipHeaderCondition": "Regler",
|
|
58
|
+
"statusTipTitle": "Filterfält",
|
|
59
|
+
"statusTipMsg": "Klicka på filterfältet om du vill filtrera värden i ${0}.",
|
|
60
|
+
"anycolumn": "alla kolumner",
|
|
61
|
+
"statusTipTitleNoFilter": "Filterfält",
|
|
62
|
+
"statusTipTitleHasFilter": "Filter",
|
|
63
|
+
"statusTipRelPre": "Matcha",
|
|
64
|
+
"statusTipRelPost": "regler.",
|
|
65
|
+
"statusTipHeaderAll": "Matcha alla regler.",
|
|
66
|
+
"statusTipHeaderAny": "Matcha någon av reglerna.",
|
|
67
|
+
"defaultItemsName": "objekt",
|
|
68
|
+
"filterBarMsgHasFilterTemplate": "${0} av ${1} ${2} visas.",
|
|
69
|
+
"filterBarMsgNoFilterTemplate": "Inget filter tillämpat",
|
|
70
|
+
"filterBarDefButton": "Definiera filter",
|
|
71
|
+
"waiFilterBarDefButton": "Filtrera tabellen",
|
|
72
|
+
"a11yFilterBarDefButton": "Filter...",
|
|
73
|
+
"filterBarClearButton": "Rensa filter",
|
|
74
|
+
"waiFilterBarClearButton": "Rensa filtret",
|
|
75
|
+
"closeFilterBarBtn": "Stäng filterfält",
|
|
76
|
+
"clearFilterMsg": "Tar bort filtret och visar alla tillgängliga poster.",
|
|
77
|
+
"anyColumnOption": "Någon kolumn",
|
|
78
|
+
"trueLabel": "Sant",
|
|
79
|
+
"falseLabel": "Falskt",
|
|
80
|
+
"radioTrueLabel": "Värdet Sant",
|
|
81
|
+
"radioFalseLabel": "Värdet Falskt",
|
|
82
|
+
"beginTimeRangeLabel": "Startvärde för tidsintervall",
|
|
83
|
+
"endTimeRangeLabel": "Slutvärde för tidsintervall",
|
|
84
|
+
"beginDateRangeLabel": "Startvärde för datumintervall",
|
|
85
|
+
"endDateRangeLabel": "Slutvärde för datumintervall",
|
|
86
|
+
"startsWithExpr": "${0}*"
|
|
87
|
+
//end v1.x content
|
|
88
|
+
});
|
|
89
|
+
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
define({
|
|
2
|
+
singleSort: "Enkel sortering",
|
|
3
|
+
nestedSort: "Nästlad sortering",
|
|
4
|
+
ascending: "Klicka för att sortera i stigande ordning",
|
|
5
|
+
descending: "Klicka för att sortera i fallande ordning",
|
|
6
|
+
sortingState: "${0} - ${1}",
|
|
7
|
+
unsorted: "Sortera inte den här kolumnen",
|
|
8
|
+
waiSingleSortLabel: "${0} - är sorterad efter ${1}. Välj att sortera efter ${2}",
|
|
9
|
+
waiNestedSortLabel:"${0} - är sorterat nästlat efter ${1}. Välj att sortera nästlat efter ${2}"
|
|
10
|
+
});
|
|
11
|
+
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
define({
|
|
2
|
+
pagerWai: 'Sidindelning',
|
|
3
|
+
|
|
4
|
+
pageIndex: '${0}',
|
|
5
|
+
pageIndexTitle: 'Sida ${0}',
|
|
6
|
+
|
|
7
|
+
firstPageTitle: 'Första sidan',
|
|
8
|
+
prevPageTitle: 'Föregående sida',
|
|
9
|
+
nextPageTitle: 'Nästa sida',
|
|
10
|
+
lastPageTitle: 'Sista sidan',
|
|
11
|
+
|
|
12
|
+
pageSize: '${0}',
|
|
13
|
+
pageSizeTitle: '${0} objekt per sida',
|
|
14
|
+
pageSizeAll: 'Alla',
|
|
15
|
+
pageSizeAllTitle: 'Alla objekt',
|
|
16
|
+
|
|
17
|
+
description: '${0} - ${1} av ${2} objekt.',
|
|
18
|
+
descriptionEmpty: 'Rutnätet är tomt.',
|
|
19
|
+
|
|
20
|
+
summary: 'Totalt: ${0}',
|
|
21
|
+
summaryWithSelection: 'Totalt: ${0} Valda: ${1}',
|
|
22
|
+
|
|
23
|
+
gotoBtnTitle: 'Gå till en viss sida',
|
|
24
|
+
|
|
25
|
+
gotoDialogTitle: 'Gå till sidan',
|
|
26
|
+
gotoDialogMainMsg: 'Ange sidnumret:',
|
|
27
|
+
gotoDialogPageCount: ' (${0} sidor)',
|
|
28
|
+
gotoDialogOKBtn: 'Gå',
|
|
29
|
+
gotoDialogCancelBtn: 'Avbryt',
|
|
30
|
+
// for drop down pagination bar
|
|
31
|
+
pageLabel: 'Sida',
|
|
32
|
+
pageSizeLabel: 'Rader'
|
|
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
|
+
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
define(
|
|
2
|
+
({
|
|
3
|
+
loadingInfo: "Yükleniyor...",
|
|
4
|
+
emptyInfo: "Görüntülenecek öğe yok",
|
|
5
|
+
loadFailInfo: "Veriler yüklenemedi!",
|
|
6
|
+
loadMore: "Daha Fazla Yükle",
|
|
7
|
+
loadMoreLoading: "Yükleniyor...",
|
|
8
|
+
loadPrevious: "Öncekini Yükle",
|
|
9
|
+
loadPreviousLoading: "Yükleniyor..."
|
|
10
|
+
})
|
|
11
|
+
);
|
|
@@ -0,0 +1,89 @@
|
|
|
1
|
+
define({
|
|
2
|
+
//begin v1.x content
|
|
3
|
+
"clearFilterDialogTitle": "Süzgeci Kaldır",
|
|
4
|
+
"filterDefDialogTitle": "Süzgeç",
|
|
5
|
+
"defaultRuleTitle": "Kural",
|
|
6
|
+
"ruleTitleTemplate": "Kural ${ruleNumber}",
|
|
7
|
+
"noFilterApplied": "Süzgeç uygulanmadı.",
|
|
8
|
+
"defineFilter": "Süzgeç tanımla",
|
|
9
|
+
"conditionEqual": "eşittir",
|
|
10
|
+
"conditionNotEqual": "eşit değildir",
|
|
11
|
+
"conditionLess": "küçüktür",
|
|
12
|
+
"conditionLessEqual": "küçüktür veya eşittir",
|
|
13
|
+
"conditionGreater": "büyüktür",
|
|
14
|
+
"conditionGreaterEqual": "büyüktür veya eşittir",
|
|
15
|
+
"conditionContain": "içerir",
|
|
16
|
+
"conditionIs": "şudur",
|
|
17
|
+
"conditionStartWith": "şununla başlar",
|
|
18
|
+
"conditionEndWith": "şununla biter",
|
|
19
|
+
"conditionNotContain": "içermez",
|
|
20
|
+
"conditionIsNot": "şu değildir",
|
|
21
|
+
"conditionNotStartWith": "şununla başlamaz",
|
|
22
|
+
"conditionNotEndWith": "şununla bitmez",
|
|
23
|
+
"conditionBefore": "önce",
|
|
24
|
+
"conditionAfter": "sonra",
|
|
25
|
+
"conditionRange": "aralık",
|
|
26
|
+
"conditionIsEmpty": "boş",
|
|
27
|
+
"all": "tümü",
|
|
28
|
+
"any": "herhangi biri",
|
|
29
|
+
"relationAll": "tüm kurallar",
|
|
30
|
+
"waiRelAll": "Aşağıdaki tüm kurallarla eşleştir",
|
|
31
|
+
"relationAny": "kuralların herhangi biri",
|
|
32
|
+
"waiRelAny": "Aşağıdaki kuralların herhangi biri ile eşleştir",
|
|
33
|
+
"relationMsgFront": "Eşleştir",
|
|
34
|
+
"relationMsgTail": "",
|
|
35
|
+
"and": "ve",
|
|
36
|
+
"or": "veya",
|
|
37
|
+
"addRuleButton": "Kural Ekle",
|
|
38
|
+
"waiAddRuleButton": "Yeni bir kural ekle",
|
|
39
|
+
"removeRuleButton": "Kuralı Kaldır",
|
|
40
|
+
"waiRemoveRuleButtonTemplate": "${0} kuralını kaldır",
|
|
41
|
+
"addRuleButton": "Süzgeç Kuralı Ekle",
|
|
42
|
+
"cancelButton": "İptal",
|
|
43
|
+
"waiCancelButton": "Bu iletişim kutusunu iptal et",
|
|
44
|
+
"clearButton": "Kaldır",
|
|
45
|
+
"waiClearButton": "Süzgeci kaldır",
|
|
46
|
+
"filterButton": "Süzgeç",
|
|
47
|
+
"waiFilterButton": "Süzgeci gönder",
|
|
48
|
+
"columnSelectLabel": "Sütun",
|
|
49
|
+
"waiColumnSelectTemplate": "${0} kuralı için sütun",
|
|
50
|
+
"conditionSelectLabel": "Koşul",
|
|
51
|
+
"waiConditionSelectTemplate": "${0} kuralı için koşul",
|
|
52
|
+
"valueBoxLabel": "Değer",
|
|
53
|
+
"waiValueBoxTemplate": "${0} kuralı için süzülecek değeri girin",
|
|
54
|
+
"rangeTo": "bitiş",
|
|
55
|
+
"rangeTemplate": "${0} - ${1}",
|
|
56
|
+
"statusTipHeaderColumn": "Sütun",
|
|
57
|
+
"statusTipHeaderCondition": "Kurallar",
|
|
58
|
+
"statusTipTitle": "Süzgeç Çubuğu",
|
|
59
|
+
"statusTipMsg": "${0} içindeki değerlere göre süzmek için burada süzgeç çubuğunu tıklatın.",
|
|
60
|
+
"anycolumn": "herhangi bir sütun",
|
|
61
|
+
"statusTipTitleNoFilter": "Süzgeç Çubuğu",
|
|
62
|
+
"statusTipTitleHasFilter": "Süzgeç",
|
|
63
|
+
"statusTipRelPre": "Eşleştir",
|
|
64
|
+
"statusTipRelPost": "kural.",
|
|
65
|
+
"statusTipHeaderAll": "Tüm kuralları eşleştir.",
|
|
66
|
+
"statusTipHeaderAny": "Herhangi bir kuralı eşleştir.",
|
|
67
|
+
"defaultItemsName": "öğe",
|
|
68
|
+
"filterBarMsgHasFilterTemplate": "${0} / ${1} ${2} gösteriliyor.",
|
|
69
|
+
"filterBarMsgNoFilterTemplate": "Süzgeç uygulanmadı",
|
|
70
|
+
"filterBarDefButton": "Süzgeç tanımla",
|
|
71
|
+
"waiFilterBarDefButton": "Tabloyu süz",
|
|
72
|
+
"a11yFilterBarDefButton": "Süz...",
|
|
73
|
+
"filterBarClearButton": "Süzgeci kaldır",
|
|
74
|
+
"waiFilterBarClearButton": "Süzgeci kaldır",
|
|
75
|
+
"closeFilterBarBtn": "Süzgeç çubuğunu kapat",
|
|
76
|
+
"clearFilterMsg": "Bu seçenek süzgeci kaldırır ve tüm kullanılabilir kayıtları gösterir.",
|
|
77
|
+
"anyColumnOption": "Herhangi Bir Sütun",
|
|
78
|
+
"trueLabel": "Doğru",
|
|
79
|
+
"falseLabel": "Yanlış",
|
|
80
|
+
"radioTrueLabel": "Değer Doğru",
|
|
81
|
+
"radioFalseLabel": "Değer Yanlış",
|
|
82
|
+
"beginTimeRangeLabel": "Saat Aralığı Başlangıç Değeri",
|
|
83
|
+
"endTimeRangeLabel": "Saat Aralığı Bitiş Değeri",
|
|
84
|
+
"beginDateRangeLabel": "Tarih Aralığı Başlangıç Değeri",
|
|
85
|
+
"endDateRangeLabel": "Tarih Aralığı Bitiş Değeri",
|
|
86
|
+
"startsWithExpr": "${0}*"
|
|
87
|
+
//end v1.x content
|
|
88
|
+
});
|
|
89
|
+
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
define({
|
|
2
|
+
singleSort: "Tekli Sıralama",
|
|
3
|
+
nestedSort: "İç İçe Sıralama",
|
|
4
|
+
ascending: "Artan düzende sıralamak için tıklatın",
|
|
5
|
+
descending: "Azalan düzende sıralamak için tıklatın",
|
|
6
|
+
sortingState: "${0} - ${1}",
|
|
7
|
+
unsorted: "Bu sütunu sıralama",
|
|
8
|
+
waiSingleSortLabel: "${0} - ${1} öğesine göre sıralı. ${2} öğesine göre sıralamak için bu seçeneği belirleyin",
|
|
9
|
+
waiNestedSortLabel:"${0} - ${1} öğesine göre iç içe sıralı. ${2} öğesine göre iç içe sıralamak için bu seçeneği belirleyin"
|
|
10
|
+
});
|
|
11
|
+
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
define({
|
|
2
|
+
pagerWai: 'Sayfalayıcı',
|
|
3
|
+
|
|
4
|
+
pageIndex: '${0}',
|
|
5
|
+
pageIndexTitle: 'Sayfa ${0}',
|
|
6
|
+
|
|
7
|
+
firstPageTitle: 'İlk sayfa',
|
|
8
|
+
prevPageTitle: 'Önceki sayfa',
|
|
9
|
+
nextPageTitle: 'Sonraki sayfa',
|
|
10
|
+
lastPageTitle: 'Son sayfa',
|
|
11
|
+
|
|
12
|
+
pageSize: '${0}',
|
|
13
|
+
pageSizeTitle: 'Sayfa başına ${0} öğe',
|
|
14
|
+
pageSizeAll: 'Tümü',
|
|
15
|
+
pageSizeAllTitle: 'Tüm öğeler',
|
|
16
|
+
|
|
17
|
+
description: '${0} - ${1} / ${2} öğe.',
|
|
18
|
+
descriptionEmpty: 'Kılavuz boş.',
|
|
19
|
+
|
|
20
|
+
summary: 'Toplam: ${0}',
|
|
21
|
+
summaryWithSelection: 'Toplam: ${0} Seçilen: ${1}',
|
|
22
|
+
|
|
23
|
+
gotoBtnTitle: 'Belirli bir sayfaya git',
|
|
24
|
+
|
|
25
|
+
gotoDialogTitle: 'Sayfaya Git',
|
|
26
|
+
gotoDialogMainMsg: 'Sayfa numarasını belirtin:',
|
|
27
|
+
gotoDialogPageCount: '(${0} sayfa)',
|
|
28
|
+
gotoDialogOKBtn: 'Git',
|
|
29
|
+
gotoDialogCancelBtn: 'İptal',
|
|
30
|
+
// for drop down pagination bar
|
|
31
|
+
pageLabel: 'Sayfa',
|
|
32
|
+
pageSizeLabel: 'Satırlar'
|
|
33
|
+
});
|
|
34
|
+
|