gridx-rails 1.2.1 → 1.3.0.pre.alpha
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 +9 -9
- data/app/assets/images/gridx/resources/images/headershadow.png +0 -0
- data/app/assets/images/gridx/resources/images/rowback.png +0 -0
- data/app/assets/images/gridx/resources/images/sprite.png +0 -0
- data/app/assets/javascripts/gridx/Grid.js +20 -3
- data/app/assets/javascripts/gridx/allModules.js +18 -4
- data/app/assets/javascripts/gridx/core/Core.js +36 -6
- data/app/assets/javascripts/gridx/core/model/Model.js +6 -5
- data/app/assets/javascripts/gridx/core/model/cache/Async.js +9 -7
- data/app/assets/javascripts/gridx/core/model/cache/Sync.js +414 -12
- data/app/assets/javascripts/gridx/core/model/extensions/Mark.js +14 -20
- data/app/assets/javascripts/gridx/core/model/extensions/Modify.js +3 -10
- data/app/assets/javascripts/gridx/modules/AutoPagedBody.js +100 -0
- data/app/assets/javascripts/gridx/modules/AutoScroll.js +92 -23
- data/app/assets/javascripts/gridx/modules/Bar.js +14 -1
- data/app/assets/javascripts/gridx/modules/Body.js +64 -29
- data/app/assets/javascripts/gridx/modules/CellWidget.js +5 -2
- data/app/assets/javascripts/gridx/modules/ColumnLock.js +1 -2
- data/app/assets/javascripts/gridx/modules/ColumnWidth.js +4 -1
- data/app/assets/javascripts/gridx/modules/Dod.js +216 -12
- data/app/assets/javascripts/gridx/modules/Edit.js +143 -68
- data/app/assets/javascripts/gridx/modules/ExpandableColumn.js +292 -0
- data/app/assets/javascripts/gridx/modules/Filter.js +14 -0
- data/app/assets/javascripts/gridx/modules/Focus.js +9 -3
- data/app/assets/javascripts/gridx/modules/Header.js +22 -12
- data/app/assets/javascripts/gridx/modules/HeaderRegions.js +23 -8
- data/app/assets/javascripts/gridx/modules/IndirectSelect.js +6 -7
- data/app/assets/javascripts/gridx/modules/IndirectSelectColumn.js +1 -1
- data/app/assets/javascripts/gridx/modules/Layer.js +358 -0
- data/app/assets/javascripts/gridx/modules/NestedSort.js +8 -10
- data/app/assets/javascripts/gridx/modules/PagedBody.js +22 -323
- data/app/assets/javascripts/gridx/modules/Puller.js +113 -0
- data/app/assets/javascripts/gridx/modules/RowHeader.js +7 -6
- data/app/assets/javascripts/gridx/modules/RowLock.js +49 -19
- data/app/assets/javascripts/gridx/modules/SlantedHeader.js +46 -0
- data/app/assets/javascripts/gridx/modules/Sort.js +417 -0
- data/app/assets/javascripts/gridx/modules/StructureSwitch.js +143 -0
- data/app/assets/javascripts/gridx/modules/SummaryBar.js +6 -1
- data/app/assets/javascripts/gridx/modules/TouchVScroller.js +36 -13
- data/app/assets/javascripts/gridx/modules/Tree.js +6 -8
- data/app/assets/javascripts/gridx/modules/VScroller.js +1 -1
- data/app/assets/javascripts/gridx/modules/View.js +25 -18
- data/app/assets/javascripts/gridx/modules/VirtualVScroller.js +23 -11
- data/app/assets/javascripts/gridx/modules/_PagedBodyMixin.js +351 -0
- data/app/assets/javascripts/gridx/modules/dnd/Avatar.js +1 -1
- data/app/assets/javascripts/gridx/modules/dnd/_Dnd.js +1 -0
- data/app/assets/javascripts/gridx/modules/extendedSelect/Row.js +8 -5
- data/app/assets/javascripts/gridx/modules/filter/FilterBar.js +24 -17
- data/app/assets/javascripts/gridx/modules/filter/FilterConfirmDialog.js +3 -1
- data/app/assets/javascripts/gridx/modules/filter/FilterDialog.js +2 -2
- data/app/assets/javascripts/gridx/modules/filter/FilterPane.js +4 -5
- data/app/assets/javascripts/gridx/modules/filter/FilterTooltip.js +1 -1
- data/app/assets/javascripts/gridx/modules/filter/QuickFilter.js +32 -9
- data/app/assets/javascripts/gridx/modules/pagination/_PaginationBarBase.js +4 -1
- data/app/assets/javascripts/gridx/modules/select/Row.js +8 -4
- data/app/assets/javascripts/gridx/nls/ar/{FilterBar.js → gridx.js} +77 -5
- data/app/assets/javascripts/gridx/nls/bg/{FilterBar.js → gridx.js} +71 -5
- data/app/assets/javascripts/gridx/nls/ca/{FilterBar.js → gridx.js} +71 -5
- data/app/assets/javascripts/gridx/nls/cs/{FilterBar.js → gridx.js} +77 -5
- data/app/assets/javascripts/gridx/nls/da/{FilterBar.js → gridx.js} +77 -5
- data/app/assets/javascripts/gridx/nls/de/{FilterBar.js → gridx.js} +77 -5
- data/app/assets/javascripts/gridx/nls/el/{FilterBar.js → gridx.js} +77 -5
- data/app/assets/javascripts/gridx/nls/es/{FilterBar.js → gridx.js} +71 -5
- data/app/assets/javascripts/gridx/nls/fi/{FilterBar.js → gridx.js} +77 -5
- data/app/assets/javascripts/gridx/nls/fr/{FilterBar.js → gridx.js} +77 -5
- data/app/assets/javascripts/gridx/nls/{FilterBar.js → gridx.js} +80 -4
- data/app/assets/javascripts/gridx/nls/he/{FilterBar.js → gridx.js} +77 -5
- data/app/assets/javascripts/gridx/nls/hr/{FilterBar.js → gridx.js} +77 -5
- data/app/assets/javascripts/gridx/nls/hu/{FilterBar.js → gridx.js} +77 -5
- data/app/assets/javascripts/gridx/nls/it/{FilterBar.js → gridx.js} +77 -5
- data/app/assets/javascripts/gridx/nls/ja/{FilterBar.js → gridx.js} +77 -5
- data/app/assets/javascripts/gridx/nls/kk/{FilterBar.js → gridx.js} +76 -5
- data/app/assets/javascripts/gridx/nls/ko/{FilterBar.js → gridx.js} +81 -5
- data/app/assets/javascripts/gridx/nls/nb/{FilterBar.js → gridx.js} +77 -5
- data/app/assets/javascripts/gridx/nls/nl/{FilterBar.js → gridx.js} +77 -5
- data/app/assets/javascripts/gridx/nls/pl/{FilterBar.js → gridx.js} +77 -5
- data/app/assets/javascripts/gridx/nls/pt/{FilterBar.js → gridx.js} +71 -5
- data/app/assets/javascripts/gridx/nls/pt-pt/{FilterBar.js → gridx.js} +71 -5
- data/app/assets/javascripts/gridx/nls/ro/{FilterBar.js → gridx.js} +71 -5
- data/app/assets/javascripts/gridx/nls/ru/{FilterBar.js → gridx.js} +77 -5
- data/app/assets/javascripts/gridx/nls/sk/{FilterBar.js → gridx.js} +71 -5
- data/app/assets/javascripts/gridx/nls/sl/{FilterBar.js → gridx.js} +77 -5
- data/app/assets/javascripts/gridx/nls/sv/{FilterBar.js → gridx.js} +77 -5
- data/app/assets/javascripts/gridx/nls/th/{FilterBar.js → gridx.js} +77 -5
- data/app/assets/javascripts/gridx/nls/tr/{FilterBar.js → gridx.js} +77 -5
- data/app/assets/javascripts/gridx/nls/uk/{FilterBar.js → gridx.js} +71 -5
- data/app/assets/javascripts/gridx/nls/zh/{FilterBar.js → gridx.js} +77 -5
- data/app/assets/javascripts/gridx/nls/zh-tw/{FilterBar.js → gridx.js} +77 -5
- data/app/assets/javascripts/gridx/nls/zz-ZZ/gridx.js +173 -0
- data/app/assets/javascripts/gridx/support/DropDownPager.js +3 -5
- data/app/assets/javascripts/gridx/support/DropDownSizer.js +3 -5
- data/app/assets/javascripts/gridx/support/GotoPagePane.js +3 -5
- data/app/assets/javascripts/gridx/support/QuickFilter.js +3 -5
- data/app/assets/javascripts/gridx/support/Summary.js +32 -10
- data/app/assets/javascripts/gridx/support/_LinkPageBase.js +3 -5
- data/app/assets/javascripts/gridx/support/query.js +47 -0
- data/app/assets/javascripts/gridx/templates/FilterBar.html +1 -1
- data/app/assets/javascripts/gridx/templates/QuickFilter.html +3 -3
- data/app/assets/stylesheets/gridx/resources/Gridx.css +1 -10
- data/app/assets/stylesheets/gridx/resources/claro/Gridx.css +1 -16
- data/app/assets/stylesheets/gridx/resources/slantedHeader.css +90 -0
- data/lib/gridx-rails/version.rb +1 -1
- data/lib/tasks/gridx-rails_tasks.rake +1 -1
- data/test/dummy/log/test.log +5 -0
- metadata +52 -260
- 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/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/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/javascripts/gridx/core/model/cache/_Cache.js +0 -403
- data/app/assets/javascripts/gridx/core/util.js +0 -13
- data/app/assets/javascripts/gridx/modules/Printer.js +0 -49
- data/app/assets/javascripts/gridx/modules/TitleBar.js +0 -51
- data/app/assets/javascripts/gridx/modules/barPlugins/DropDownPager.js +0 -16
- data/app/assets/javascripts/gridx/modules/barPlugins/DropDownSizer.js +0 -16
- data/app/assets/javascripts/gridx/modules/barPlugins/GotoPageButton.js +0 -16
- data/app/assets/javascripts/gridx/modules/barPlugins/LinkPager.js +0 -16
- data/app/assets/javascripts/gridx/modules/barPlugins/LinkSizer.js +0 -16
- data/app/assets/javascripts/gridx/modules/barPlugins/Summary.js +0 -16
- data/app/assets/javascripts/gridx/modules/exporter/CSV.js +0 -43
- data/app/assets/javascripts/gridx/modules/exporter/Exporter.js +0 -34
- data/app/assets/javascripts/gridx/modules/exporter/Table.js +0 -42
- data/app/assets/javascripts/gridx/modules/filter/Filter.js +0 -16
- data/app/assets/javascripts/gridx/modules/pagination/Pagination.js +0 -16
- data/app/assets/javascripts/gridx/nls/Body.js +0 -47
- data/app/assets/javascripts/gridx/nls/NestedSort.js +0 -45
- data/app/assets/javascripts/gridx/nls/PaginationBar.js +0 -68
- data/app/assets/javascripts/gridx/nls/QuickFilter.js +0 -40
- data/app/assets/javascripts/gridx/nls/SummaryBar.js +0 -38
- data/app/assets/javascripts/gridx/nls/ar/Body.js +0 -11
- data/app/assets/javascripts/gridx/nls/ar/NestedSort.js +0 -11
- data/app/assets/javascripts/gridx/nls/ar/PaginationBar.js +0 -34
- data/app/assets/javascripts/gridx/nls/ar/QuickFilter.js +0 -7
- data/app/assets/javascripts/gridx/nls/ar/SummaryBar.js +0 -5
- data/app/assets/javascripts/gridx/nls/bg/Body.js +0 -11
- data/app/assets/javascripts/gridx/nls/bg/NestedSort.js +0 -12
- data/app/assets/javascripts/gridx/nls/bg/PaginationBar.js +0 -28
- data/app/assets/javascripts/gridx/nls/bg/QuickFilter.js +0 -8
- data/app/assets/javascripts/gridx/nls/bg/SummaryBar.js +0 -6
- data/app/assets/javascripts/gridx/nls/ca/Body.js +0 -11
- data/app/assets/javascripts/gridx/nls/ca/NestedSort.js +0 -13
- data/app/assets/javascripts/gridx/nls/ca/PaginationBar.js +0 -30
- data/app/assets/javascripts/gridx/nls/ca/QuickFilter.js +0 -9
- data/app/assets/javascripts/gridx/nls/ca/SummaryBar.js +0 -7
- data/app/assets/javascripts/gridx/nls/cs/Body.js +0 -11
- data/app/assets/javascripts/gridx/nls/cs/NestedSort.js +0 -11
- data/app/assets/javascripts/gridx/nls/cs/PaginationBar.js +0 -34
- data/app/assets/javascripts/gridx/nls/cs/QuickFilter.js +0 -7
- data/app/assets/javascripts/gridx/nls/cs/SummaryBar.js +0 -5
- data/app/assets/javascripts/gridx/nls/da/Body.js +0 -11
- data/app/assets/javascripts/gridx/nls/da/NestedSort.js +0 -11
- data/app/assets/javascripts/gridx/nls/da/PaginationBar.js +0 -34
- data/app/assets/javascripts/gridx/nls/da/QuickFilter.js +0 -7
- data/app/assets/javascripts/gridx/nls/da/SummaryBar.js +0 -5
- data/app/assets/javascripts/gridx/nls/de/Body.js +0 -11
- data/app/assets/javascripts/gridx/nls/de/NestedSort.js +0 -11
- data/app/assets/javascripts/gridx/nls/de/PaginationBar.js +0 -34
- data/app/assets/javascripts/gridx/nls/de/QuickFilter.js +0 -7
- data/app/assets/javascripts/gridx/nls/de/SummaryBar.js +0 -5
- data/app/assets/javascripts/gridx/nls/el/Body.js +0 -11
- data/app/assets/javascripts/gridx/nls/el/NestedSort.js +0 -11
- data/app/assets/javascripts/gridx/nls/el/PaginationBar.js +0 -34
- data/app/assets/javascripts/gridx/nls/el/QuickFilter.js +0 -7
- data/app/assets/javascripts/gridx/nls/el/SummaryBar.js +0 -5
- data/app/assets/javascripts/gridx/nls/es/Body.js +0 -11
- data/app/assets/javascripts/gridx/nls/es/NestedSort.js +0 -13
- data/app/assets/javascripts/gridx/nls/es/PaginationBar.js +0 -30
- data/app/assets/javascripts/gridx/nls/es/QuickFilter.js +0 -9
- data/app/assets/javascripts/gridx/nls/es/SummaryBar.js +0 -7
- data/app/assets/javascripts/gridx/nls/fi/Body.js +0 -11
- data/app/assets/javascripts/gridx/nls/fi/NestedSort.js +0 -11
- data/app/assets/javascripts/gridx/nls/fi/PaginationBar.js +0 -34
- data/app/assets/javascripts/gridx/nls/fi/QuickFilter.js +0 -7
- data/app/assets/javascripts/gridx/nls/fi/SummaryBar.js +0 -5
- data/app/assets/javascripts/gridx/nls/fr/Body.js +0 -11
- data/app/assets/javascripts/gridx/nls/fr/NestedSort.js +0 -11
- data/app/assets/javascripts/gridx/nls/fr/PaginationBar.js +0 -34
- data/app/assets/javascripts/gridx/nls/fr/QuickFilter.js +0 -7
- data/app/assets/javascripts/gridx/nls/fr/SummaryBar.js +0 -5
- data/app/assets/javascripts/gridx/nls/he/Body.js +0 -11
- data/app/assets/javascripts/gridx/nls/he/NestedSort.js +0 -11
- data/app/assets/javascripts/gridx/nls/he/PaginationBar.js +0 -34
- data/app/assets/javascripts/gridx/nls/he/QuickFilter.js +0 -6
- data/app/assets/javascripts/gridx/nls/he/SummaryBar.js +0 -5
- data/app/assets/javascripts/gridx/nls/hr/Body.js +0 -11
- data/app/assets/javascripts/gridx/nls/hr/NestedSort.js +0 -11
- data/app/assets/javascripts/gridx/nls/hr/PaginationBar.js +0 -34
- data/app/assets/javascripts/gridx/nls/hr/QuickFilter.js +0 -7
- data/app/assets/javascripts/gridx/nls/hr/SummaryBar.js +0 -5
- data/app/assets/javascripts/gridx/nls/hu/Body.js +0 -11
- data/app/assets/javascripts/gridx/nls/hu/NestedSort.js +0 -11
- data/app/assets/javascripts/gridx/nls/hu/PaginationBar.js +0 -33
- data/app/assets/javascripts/gridx/nls/hu/QuickFilter.js +0 -7
- data/app/assets/javascripts/gridx/nls/hu/SummaryBar.js +0 -5
- data/app/assets/javascripts/gridx/nls/it/Body.js +0 -11
- data/app/assets/javascripts/gridx/nls/it/NestedSort.js +0 -11
- data/app/assets/javascripts/gridx/nls/it/PaginationBar.js +0 -34
- data/app/assets/javascripts/gridx/nls/it/QuickFilter.js +0 -7
- data/app/assets/javascripts/gridx/nls/it/SummaryBar.js +0 -5
- data/app/assets/javascripts/gridx/nls/ja/Body.js +0 -11
- data/app/assets/javascripts/gridx/nls/ja/NestedSort.js +0 -11
- data/app/assets/javascripts/gridx/nls/ja/PaginationBar.js +0 -34
- data/app/assets/javascripts/gridx/nls/ja/QuickFilter.js +0 -7
- data/app/assets/javascripts/gridx/nls/ja/SummaryBar.js +0 -5
- data/app/assets/javascripts/gridx/nls/kk/Body.js +0 -11
- data/app/assets/javascripts/gridx/nls/kk/NestedSort.js +0 -13
- data/app/assets/javascripts/gridx/nls/kk/PaginationBar.js +0 -30
- data/app/assets/javascripts/gridx/nls/kk/QuickFilter.js +0 -9
- data/app/assets/javascripts/gridx/nls/kk/SummaryBar.js +0 -7
- data/app/assets/javascripts/gridx/nls/ko/Body.js +0 -11
- data/app/assets/javascripts/gridx/nls/ko/NestedSort.js +0 -11
- data/app/assets/javascripts/gridx/nls/ko/PaginationBar.js +0 -34
- data/app/assets/javascripts/gridx/nls/ko/QuickFilter.js +0 -7
- data/app/assets/javascripts/gridx/nls/ko/SummaryBar.js +0 -5
- data/app/assets/javascripts/gridx/nls/nb/Body.js +0 -11
- data/app/assets/javascripts/gridx/nls/nb/NestedSort.js +0 -11
- data/app/assets/javascripts/gridx/nls/nb/PaginationBar.js +0 -34
- data/app/assets/javascripts/gridx/nls/nb/QuickFilter.js +0 -7
- data/app/assets/javascripts/gridx/nls/nb/SummaryBar.js +0 -5
- data/app/assets/javascripts/gridx/nls/nl/Body.js +0 -11
- data/app/assets/javascripts/gridx/nls/nl/NestedSort.js +0 -11
- data/app/assets/javascripts/gridx/nls/nl/PaginationBar.js +0 -34
- data/app/assets/javascripts/gridx/nls/nl/QuickFilter.js +0 -7
- data/app/assets/javascripts/gridx/nls/nl/SummaryBar.js +0 -5
- data/app/assets/javascripts/gridx/nls/pl/Body.js +0 -11
- data/app/assets/javascripts/gridx/nls/pl/NestedSort.js +0 -11
- data/app/assets/javascripts/gridx/nls/pl/PaginationBar.js +0 -34
- data/app/assets/javascripts/gridx/nls/pl/QuickFilter.js +0 -7
- data/app/assets/javascripts/gridx/nls/pl/SummaryBar.js +0 -5
- data/app/assets/javascripts/gridx/nls/pt/Body.js +0 -11
- data/app/assets/javascripts/gridx/nls/pt/NestedSort.js +0 -13
- data/app/assets/javascripts/gridx/nls/pt/PaginationBar.js +0 -30
- data/app/assets/javascripts/gridx/nls/pt/QuickFilter.js +0 -9
- data/app/assets/javascripts/gridx/nls/pt/SummaryBar.js +0 -7
- data/app/assets/javascripts/gridx/nls/pt-br/Body.js +0 -6
- data/app/assets/javascripts/gridx/nls/pt-br/FilterBar.js +0 -89
- data/app/assets/javascripts/gridx/nls/pt-br/NestedSort.js +0 -11
- data/app/assets/javascripts/gridx/nls/pt-br/PaginationBar.js +0 -34
- data/app/assets/javascripts/gridx/nls/pt-br/QuickFilter.js +0 -7
- data/app/assets/javascripts/gridx/nls/pt-br/SummaryBar.js +0 -5
- data/app/assets/javascripts/gridx/nls/pt-pt/Body.js +0 -11
- data/app/assets/javascripts/gridx/nls/pt-pt/NestedSort.js +0 -13
- data/app/assets/javascripts/gridx/nls/pt-pt/PaginationBar.js +0 -30
- data/app/assets/javascripts/gridx/nls/pt-pt/QuickFilter.js +0 -9
- data/app/assets/javascripts/gridx/nls/pt-pt/SummaryBar.js +0 -7
- data/app/assets/javascripts/gridx/nls/ro/Body.js +0 -11
- data/app/assets/javascripts/gridx/nls/ro/NestedSort.js +0 -13
- data/app/assets/javascripts/gridx/nls/ro/PaginationBar.js +0 -30
- data/app/assets/javascripts/gridx/nls/ro/QuickFilter.js +0 -9
- data/app/assets/javascripts/gridx/nls/ro/SummaryBar.js +0 -7
- data/app/assets/javascripts/gridx/nls/ru/Body.js +0 -11
- data/app/assets/javascripts/gridx/nls/ru/NestedSort.js +0 -11
- data/app/assets/javascripts/gridx/nls/ru/PaginationBar.js +0 -34
- data/app/assets/javascripts/gridx/nls/ru/QuickFilter.js +0 -7
- data/app/assets/javascripts/gridx/nls/ru/SummaryBar.js +0 -5
- data/app/assets/javascripts/gridx/nls/sk/Body.js +0 -11
- data/app/assets/javascripts/gridx/nls/sk/NestedSort.js +0 -13
- data/app/assets/javascripts/gridx/nls/sk/PaginationBar.js +0 -30
- data/app/assets/javascripts/gridx/nls/sk/QuickFilter.js +0 -9
- data/app/assets/javascripts/gridx/nls/sk/SummaryBar.js +0 -7
- data/app/assets/javascripts/gridx/nls/sl/Body.js +0 -11
- data/app/assets/javascripts/gridx/nls/sl/NestedSort.js +0 -11
- data/app/assets/javascripts/gridx/nls/sl/PaginationBar.js +0 -34
- data/app/assets/javascripts/gridx/nls/sl/QuickFilter.js +0 -7
- data/app/assets/javascripts/gridx/nls/sl/SummaryBar.js +0 -5
- data/app/assets/javascripts/gridx/nls/sv/Body.js +0 -11
- data/app/assets/javascripts/gridx/nls/sv/NestedSort.js +0 -11
- data/app/assets/javascripts/gridx/nls/sv/PaginationBar.js +0 -34
- data/app/assets/javascripts/gridx/nls/sv/QuickFilter.js +0 -7
- data/app/assets/javascripts/gridx/nls/sv/SummaryBar.js +0 -5
- data/app/assets/javascripts/gridx/nls/th/Body.js +0 -11
- data/app/assets/javascripts/gridx/nls/th/NestedSort.js +0 -11
- data/app/assets/javascripts/gridx/nls/th/PaginationBar.js +0 -34
- data/app/assets/javascripts/gridx/nls/th/QuickFilter.js +0 -7
- data/app/assets/javascripts/gridx/nls/th/SummaryBar.js +0 -5
- data/app/assets/javascripts/gridx/nls/tr/Body.js +0 -11
- data/app/assets/javascripts/gridx/nls/tr/NestedSort.js +0 -11
- data/app/assets/javascripts/gridx/nls/tr/PaginationBar.js +0 -34
- data/app/assets/javascripts/gridx/nls/tr/QuickFilter.js +0 -7
- data/app/assets/javascripts/gridx/nls/tr/SummaryBar.js +0 -5
- data/app/assets/javascripts/gridx/nls/uk/Body.js +0 -11
- data/app/assets/javascripts/gridx/nls/uk/NestedSort.js +0 -12
- data/app/assets/javascripts/gridx/nls/uk/PaginationBar.js +0 -28
- data/app/assets/javascripts/gridx/nls/uk/QuickFilter.js +0 -8
- data/app/assets/javascripts/gridx/nls/uk/SummaryBar.js +0 -6
- data/app/assets/javascripts/gridx/nls/zh/Body.js +0 -11
- data/app/assets/javascripts/gridx/nls/zh/NestedSort.js +0 -11
- data/app/assets/javascripts/gridx/nls/zh/PaginationBar.js +0 -34
- data/app/assets/javascripts/gridx/nls/zh/QuickFilter.js +0 -7
- data/app/assets/javascripts/gridx/nls/zh/SummaryBar.js +0 -5
- data/app/assets/javascripts/gridx/nls/zh-tw/Body.js +0 -11
- data/app/assets/javascripts/gridx/nls/zh-tw/NestedSort.js +0 -11
- data/app/assets/javascripts/gridx/nls/zh-tw/PaginationBar.js +0 -34
- data/app/assets/javascripts/gridx/nls/zh-tw/QuickFilter.js +0 -7
- data/app/assets/javascripts/gridx/nls/zh-tw/SummaryBar.js +0 -5
- data/app/assets/stylesheets/gridx/resources/Dod.css +0 -39
- data/app/assets/stylesheets/gridx/resources/Gridx_rtl.css +0 -5
- data/app/assets/stylesheets/gridx/resources/Tree.css +0 -46
- data/app/assets/stylesheets/gridx/resources/Tree_rtl.css +0 -4
- data/app/assets/stylesheets/gridx/resources/bar.css +0 -24
- data/app/assets/stylesheets/gridx/resources/basic.css +0 -482
- data/app/assets/stylesheets/gridx/resources/basic_rtl.css +0 -37
- data/app/assets/stylesheets/gridx/resources/claro/Gridx_rtl.css +0 -7
- data/app/assets/stylesheets/gridx/resources/claro/basic.css +0 -109
- data/app/assets/stylesheets/gridx/resources/claro/basic_rtl.css +0 -21
- data/app/assets/stylesheets/gridx/resources/claro/filter.css +0 -47
- data/app/assets/stylesheets/gridx/resources/claro/lock.css +0 -19
- data/app/assets/stylesheets/gridx/resources/claro/pagination.css +0 -33
- data/app/assets/stylesheets/gridx/resources/claro/select.css +0 -20
- data/app/assets/stylesheets/gridx/resources/dnd.css +0 -108
- data/app/assets/stylesheets/gridx/resources/filter.css +0 -321
- data/app/assets/stylesheets/gridx/resources/filter_rtl.css +0 -38
- data/app/assets/stylesheets/gridx/resources/lock.css +0 -20
- data/app/assets/stylesheets/gridx/resources/pagination.css +0 -142
- data/app/assets/stylesheets/gridx/resources/pagination_rtl.css +0 -54
- data/app/assets/stylesheets/gridx/resources/select.css +0 -39
- data/app/assets/stylesheets/gridx/resources/sort.css +0 -154
- data/app/assets/stylesheets/gridx/resources/sort_rtl.css +0 -51
|
@@ -1,6 +1,15 @@
|
|
|
1
|
-
define({
|
|
2
|
-
//begin v1.x content
|
|
1
|
+
define({root:
|
|
3
2
|
({
|
|
3
|
+
//Body
|
|
4
|
+
loadingInfo: "Loading...",
|
|
5
|
+
emptyInfo: "No items to display",
|
|
6
|
+
loadFailInfo: "Failed to load data!",
|
|
7
|
+
loadMore: "Load More",
|
|
8
|
+
loadMoreLoading: "Loading...",
|
|
9
|
+
loadPrevious: "Load Previous",
|
|
10
|
+
loadPreviousLoading: "Loading...",
|
|
11
|
+
|
|
12
|
+
//FilterBar
|
|
4
13
|
"clearFilterDialogTitle": "Clear Filter",
|
|
5
14
|
"filterDefDialogTitle": "Filter",
|
|
6
15
|
"defaultRuleTitle": "Rule",
|
|
@@ -95,9 +104,75 @@ define({ root:
|
|
|
95
104
|
"endTimeRangeLabel": "Time Range Value End",
|
|
96
105
|
"beginDateRangeLabel": "Date Range Value Start",
|
|
97
106
|
"endDateRangeLabel": "Date Range Value End",
|
|
98
|
-
"startsWithExpr": "${0}*"
|
|
107
|
+
"startsWithExpr": "${0}*",
|
|
108
|
+
|
|
109
|
+
//NestedSort
|
|
110
|
+
singleSort: "Single Sort",
|
|
111
|
+
nestedSort: "Nested Sort",
|
|
112
|
+
ascending: "Click to sort Ascending",
|
|
113
|
+
descending: "Click to sort Descending",
|
|
114
|
+
sortingState: "${0} - ${1}",
|
|
115
|
+
unsorted: "Do not sort this column",
|
|
116
|
+
|
|
117
|
+
waiSingleSortLabel: "${0} - is sorted by ${1}. Choose to sort by ${2}",
|
|
118
|
+
waiNestedSortLabel:"${0} - is nested sorted by ${1}. Choose to nested sort by ${2}",
|
|
119
|
+
|
|
120
|
+
//PaginationBar
|
|
121
|
+
pagerWai: 'Pager',
|
|
122
|
+
|
|
123
|
+
pageIndex: '${0}',
|
|
124
|
+
pageIndexTitle: 'Page ${0}',
|
|
125
|
+
|
|
126
|
+
firstPageTitle: 'First page',
|
|
127
|
+
prevPageTitle: 'Previous page',
|
|
128
|
+
nextPageTitle: 'Next page',
|
|
129
|
+
lastPageTitle: 'Last page',
|
|
130
|
+
|
|
131
|
+
pageSize: '${0}',
|
|
132
|
+
pageSizeTitle: '${0} items per page',
|
|
133
|
+
pageSizeAll: 'All',
|
|
134
|
+
pageSizeAllTitle: 'All items',
|
|
135
|
+
|
|
136
|
+
description: '${0} - ${1} of ${2} items.',
|
|
137
|
+
descriptionEmpty: 'Grid is empty.',
|
|
138
|
+
|
|
139
|
+
summary: 'Total: ${0}',
|
|
140
|
+
summaryWithSelection: 'Total: ${0} Selected: ${1}',
|
|
141
|
+
|
|
142
|
+
gotoBtnTitle: 'Go to a specific page',
|
|
143
|
+
|
|
144
|
+
gotoDialogTitle: 'Go to Page',
|
|
145
|
+
gotoDialogMainMsg: 'Specify the page number:',
|
|
146
|
+
gotoDialogPageCount: '(${0} pages)',
|
|
147
|
+
gotoDialogOKBtn: 'Go',
|
|
148
|
+
gotoDialogCancelBtn: 'Cancel',
|
|
149
|
+
|
|
150
|
+
// for drop down pagination bar
|
|
151
|
+
pageLabel: 'Page',
|
|
152
|
+
pageSizeLabel: 'Rows',
|
|
153
|
+
|
|
154
|
+
//QuickFilter
|
|
155
|
+
filterLabel: 'Filter',
|
|
156
|
+
clearButtonTitle: 'Clear Filter',
|
|
157
|
+
buildFilterMenuLabel: 'Build Filter…',
|
|
158
|
+
apply: 'Apply Filter',
|
|
159
|
+
|
|
160
|
+
//Sort
|
|
161
|
+
helpMsg: '${0} - Click to sort or control-click to add to sort',
|
|
162
|
+
singleHelpMsg: '${0} - Click to sort',
|
|
163
|
+
priorityOrder: 'sort priority ${0}',
|
|
164
|
+
|
|
165
|
+
//SummaryBar
|
|
166
|
+
summaryTotal: 'Total: ${0}',
|
|
167
|
+
summarySelected: 'Selected: ${0}',
|
|
168
|
+
summaryRange: 'Range: ${0}-${1}', //need translation
|
|
169
|
+
|
|
170
|
+
//Other
|
|
171
|
+
indirectSelectAll: "Press SPACE to select all.", //need translation
|
|
172
|
+
indirectDeselectAll: "Press SPACE to deselect all.", //need translation
|
|
173
|
+
treeExpanded: "Control + left arrow key to collapse this row.", //need translation
|
|
174
|
+
treeCollapsed: "Control + right arrow key to expand this row." //need translation
|
|
99
175
|
}),
|
|
100
|
-
//end v1.x content
|
|
101
176
|
"ar": true,
|
|
102
177
|
"bg": true,
|
|
103
178
|
"ca": true,
|
|
@@ -120,6 +195,7 @@ define({ root:
|
|
|
120
195
|
"pl": true,
|
|
121
196
|
"pt": true,
|
|
122
197
|
"pt-pt": true,
|
|
198
|
+
"pt-br": true,
|
|
123
199
|
"ro": true,
|
|
124
200
|
"ru": true,
|
|
125
201
|
"sk": true,
|
|
@@ -1,5 +1,14 @@
|
|
|
1
|
-
define({
|
|
2
|
-
//
|
|
1
|
+
define({
|
|
2
|
+
//Body
|
|
3
|
+
loadingInfo: "טעינה בביצוע...",
|
|
4
|
+
emptyInfo: "אין פריטים להצגה",
|
|
5
|
+
loadFailInfo: "כשל בטעינת הנתונים!",
|
|
6
|
+
loadMore: "טעינת עוד",
|
|
7
|
+
loadMoreLoading: "טעינה בביצוע...",
|
|
8
|
+
loadPrevious: "טעינת הקודם ",
|
|
9
|
+
loadPreviousLoading: "טעינה בביצוע...",
|
|
10
|
+
|
|
11
|
+
//FilterBar
|
|
3
12
|
"clearFilterDialogTitle": "ניקוי מסנן",
|
|
4
13
|
"filterDefDialogTitle": "מסנן",
|
|
5
14
|
"defaultRuleTitle": "כלל",
|
|
@@ -83,7 +92,70 @@ define({
|
|
|
83
92
|
"endTimeRangeLabel": "סיום ערך של טווח זמן",
|
|
84
93
|
"beginDateRangeLabel": "התחלת ערך של טווח תאריכים",
|
|
85
94
|
"endDateRangeLabel": "סיום ערך של טווח תאריכים",
|
|
86
|
-
"startsWithExpr": "${0}*"
|
|
87
|
-
|
|
88
|
-
|
|
95
|
+
"startsWithExpr": "${0}*",
|
|
96
|
+
|
|
97
|
+
//NestedSort
|
|
98
|
+
singleSort: "מיון יחיד",
|
|
99
|
+
nestedSort: "מיון מקונן",
|
|
100
|
+
ascending: "יש ללחוץ כדי למיין בסדר עולה",
|
|
101
|
+
descending: "יש ללחוץ כדי למיין בסדר יורד",
|
|
102
|
+
sortingState: "${0} - ${1}",
|
|
103
|
+
unsorted: "אין למיין עמודה זו",
|
|
104
|
+
waiSingleSortLabel: "${0} - ממוין לפי ${1}. יש לבחור למיין לפי ${2}",
|
|
105
|
+
waiNestedSortLabel:"${0} - מסודר במיון מקונן לפי ${1}. יש לבחור לבצע מיון מקונן לפי ${2}",
|
|
106
|
+
|
|
107
|
+
//PaginationBar
|
|
108
|
+
pagerWai: 'רכיב עימוד',
|
|
109
|
+
|
|
110
|
+
pageIndex: '${0}',
|
|
111
|
+
pageIndexTitle: 'עמוד ${0}',
|
|
112
|
+
|
|
113
|
+
firstPageTitle: 'עמוד ראשון',
|
|
114
|
+
prevPageTitle: 'העמוד הקודם',
|
|
115
|
+
nextPageTitle: 'העמוד הבא',
|
|
116
|
+
lastPageTitle: 'עמוד אחרון',
|
|
117
|
+
|
|
118
|
+
pageSize: '${0}',
|
|
119
|
+
pageSizeTitle: '${0} פריטים לעמוד',
|
|
120
|
+
pageSizeAll: 'הכל',
|
|
121
|
+
pageSizeAllTitle: 'כל הפריטים',
|
|
122
|
+
|
|
123
|
+
description: '${0} - ${1} מתוך ${2} פריטים.',
|
|
124
|
+
descriptionEmpty: 'הרשת ריקה.',
|
|
89
125
|
|
|
126
|
+
summary: 'סך הכל: ${0}',
|
|
127
|
+
summaryWithSelection: 'סך הכל: ${0} נבחרו: ${1}',
|
|
128
|
+
|
|
129
|
+
gotoBtnTitle: 'מעבר לעמוד ספציפי',
|
|
130
|
+
|
|
131
|
+
gotoDialogTitle: 'מעבר לעמוד',
|
|
132
|
+
gotoDialogMainMsg: 'ציינו את מספר העמוד:',
|
|
133
|
+
gotoDialogPageCount: '(${0} עמודים)',
|
|
134
|
+
gotoDialogOKBtn: 'ביצוע',
|
|
135
|
+
gotoDialogCancelBtn: 'ביטול',
|
|
136
|
+
// for drop down pagination bar
|
|
137
|
+
pageLabel: 'עמוד',
|
|
138
|
+
pageSizeLabel: 'שורות',
|
|
139
|
+
|
|
140
|
+
//QuickFilter
|
|
141
|
+
filterLabel: 'מסנן',
|
|
142
|
+
clearButtonTitle: 'ניקוי מסנן',
|
|
143
|
+
buildFilterMenuLabel: 'בניית מסנן…',
|
|
144
|
+
apply: 'החלת מסנן',
|
|
145
|
+
|
|
146
|
+
//Sort
|
|
147
|
+
helpMsg: '${0} - Click to sort or control-click to add to sort', //need translation
|
|
148
|
+
singleHelpMsg: '${0} - Click to sort', //need translation
|
|
149
|
+
priorityOrder: 'sort priority ${0}', //need translation
|
|
150
|
+
|
|
151
|
+
//SummaryBar
|
|
152
|
+
summaryTotal: 'סך הכל: ${0}',
|
|
153
|
+
summarySelected: 'נבחרו: ${0}',
|
|
154
|
+
summaryRange: 'Range: ${0}-${1}', //need translation
|
|
155
|
+
|
|
156
|
+
//Other
|
|
157
|
+
indirectSelectAll: "Press SPACE to select all.", //need translation
|
|
158
|
+
indirectDeselectAll: "Press SPACE to deselect all.", //need translation
|
|
159
|
+
treeExpanded: "Control + left arrow key to collapse this row.", //need translation
|
|
160
|
+
treeCollapsed: "Control + right arrow key to expand this row." //need translation
|
|
161
|
+
});
|
|
@@ -1,5 +1,14 @@
|
|
|
1
|
-
define({
|
|
2
|
-
//
|
|
1
|
+
define({
|
|
2
|
+
//Body
|
|
3
|
+
loadingInfo: "Učitavanje...",
|
|
4
|
+
emptyInfo: "Nema stavki za prikaz",
|
|
5
|
+
loadFailInfo: "Učitavanje podataka nije uspjelo!",
|
|
6
|
+
loadMore: "Učitaj više",
|
|
7
|
+
loadMoreLoading: "Učitavanje...",
|
|
8
|
+
loadPrevious: "Učitaj prethodno",
|
|
9
|
+
loadPreviousLoading: "Učitavanje...",
|
|
10
|
+
|
|
11
|
+
//FilterBar
|
|
3
12
|
"clearFilterDialogTitle": "Brisanje filtera",
|
|
4
13
|
"filterDefDialogTitle": "Filter",
|
|
5
14
|
"defaultRuleTitle": "Pravilo",
|
|
@@ -83,7 +92,70 @@ define({
|
|
|
83
92
|
"endTimeRangeLabel": "Završna vrijednost raspona vremena",
|
|
84
93
|
"beginDateRangeLabel": "Početna vrijednost raspona datuma",
|
|
85
94
|
"endDateRangeLabel": "Završna vrijednost raspona datuma",
|
|
86
|
-
"startsWithExpr": "${0}*"
|
|
87
|
-
|
|
88
|
-
|
|
95
|
+
"startsWithExpr": "${0}*",
|
|
96
|
+
|
|
97
|
+
//NestedSort
|
|
98
|
+
singleSort: "Jedan sort",
|
|
99
|
+
nestedSort: "Ugniježđeni sort",
|
|
100
|
+
ascending: "Klik za sort uzlazno",
|
|
101
|
+
descending: "Klik za sort silazno",
|
|
102
|
+
sortingState: "${0} - ${1}",
|
|
103
|
+
unsorted: "Ne sortiraj ovaj stupac",
|
|
104
|
+
waiSingleSortLabel: "${0} - sortirano po ${1}. Odaberite sortiranje po ${2}",
|
|
105
|
+
waiNestedSortLabel:"${0} - ugniježđeno sortirano po ${1}. Odaberite ugniježđeno sortiranje po ${2}",
|
|
106
|
+
|
|
107
|
+
//PaginationBar
|
|
108
|
+
pagerWai: 'Pager',
|
|
109
|
+
|
|
110
|
+
pageIndex: '${0}',
|
|
111
|
+
pageIndexTitle: 'Strana ${0}',
|
|
112
|
+
|
|
113
|
+
firstPageTitle: 'Prva stranica',
|
|
114
|
+
prevPageTitle: 'Prethodna stranica',
|
|
115
|
+
nextPageTitle: 'Sljedeća stranica',
|
|
116
|
+
lastPageTitle: 'Posljednja stranica',
|
|
117
|
+
|
|
118
|
+
pageSize: '${0}',
|
|
119
|
+
pageSizeTitle: '${0} stavki po stranici',
|
|
120
|
+
pageSizeAll: 'Sve',
|
|
121
|
+
pageSizeAllTitle: 'Sve stavke',
|
|
122
|
+
|
|
123
|
+
description: '${0} - ${1} od ${2} stavki.',
|
|
124
|
+
descriptionEmpty: 'Mreža je prazna.',
|
|
89
125
|
|
|
126
|
+
summary: 'Ukupno: ${0}',
|
|
127
|
+
summaryWithSelection: 'Ukupno: ${0} Odabrano: ${1}',
|
|
128
|
+
|
|
129
|
+
gotoBtnTitle: 'Idi na određenu stranicu',
|
|
130
|
+
|
|
131
|
+
gotoDialogTitle: 'Idi na stranicu',
|
|
132
|
+
gotoDialogMainMsg: 'Navedite broj stranice:',
|
|
133
|
+
gotoDialogPageCount: '(${0} stranica)',
|
|
134
|
+
gotoDialogOKBtn: 'Kreni',
|
|
135
|
+
gotoDialogCancelBtn: 'Opoziv',
|
|
136
|
+
// for drop down pagination bar
|
|
137
|
+
pageLabel: 'Stranica',
|
|
138
|
+
pageSizeLabel: 'Redovi',
|
|
139
|
+
|
|
140
|
+
//QuickFilter
|
|
141
|
+
filterLabel: 'Filter',
|
|
142
|
+
clearButtonTitle: 'Brisanje filtera',
|
|
143
|
+
buildFilterMenuLabel: 'Kreiranje filtera…',
|
|
144
|
+
apply: 'Primjena filtera',
|
|
145
|
+
|
|
146
|
+
//Sort
|
|
147
|
+
helpMsg: '${0} - Click to sort or control-click to add to sort', //need translation
|
|
148
|
+
singleHelpMsg: '${0} - Click to sort', //need translation
|
|
149
|
+
priorityOrder: 'sort priority ${0}', //need translation
|
|
150
|
+
|
|
151
|
+
//SummaryBar
|
|
152
|
+
summaryTotal: 'Ukupno: ${0}',
|
|
153
|
+
summarySelected: 'Odabrano: ${0}',
|
|
154
|
+
summaryRange: 'Range: ${0}-${1}', //need translation
|
|
155
|
+
|
|
156
|
+
//Other
|
|
157
|
+
indirectSelectAll: "Press SPACE to select all.", //need translation
|
|
158
|
+
indirectDeselectAll: "Press SPACE to deselect all.", //need translation
|
|
159
|
+
treeExpanded: "Control + left arrow key to collapse this row.", //need translation
|
|
160
|
+
treeCollapsed: "Control + right arrow key to expand this row." //need translation
|
|
161
|
+
});
|
|
@@ -1,5 +1,14 @@
|
|
|
1
|
-
define({
|
|
2
|
-
//
|
|
1
|
+
define({
|
|
2
|
+
//Body
|
|
3
|
+
loadingInfo: "Betöltés...",
|
|
4
|
+
emptyInfo: "Nincsenek megjeleníthető elemek.",
|
|
5
|
+
loadFailInfo: "Nem sikerült az adatok betöltése!",
|
|
6
|
+
loadMore: "Továbbiak betöltése",
|
|
7
|
+
loadMoreLoading: "Betöltés...",
|
|
8
|
+
loadPrevious: "Előző betöltése",
|
|
9
|
+
loadPreviousLoading: "Betöltés...",
|
|
10
|
+
|
|
11
|
+
//FilterBar
|
|
3
12
|
"clearFilterDialogTitle": "Szűrő törlése",
|
|
4
13
|
"filterDefDialogTitle": "Szűrő",
|
|
5
14
|
"defaultRuleTitle": "Szabály",
|
|
@@ -83,7 +92,70 @@ define({
|
|
|
83
92
|
"endTimeRangeLabel": "Időtartam érték vége",
|
|
84
93
|
"beginDateRangeLabel": "Dátumtartomány érték kezdete",
|
|
85
94
|
"endDateRangeLabel": "Dátumtartomány érték vége",
|
|
86
|
-
"startsWithExpr": "${0}*"
|
|
87
|
-
|
|
88
|
-
|
|
95
|
+
"startsWithExpr": "${0}*",
|
|
96
|
+
|
|
97
|
+
//NestedSort
|
|
98
|
+
singleSort: "Egyszerű rendezés",
|
|
99
|
+
nestedSort: "Beágyazott rendezés",
|
|
100
|
+
ascending: "Kattintson ide a növekvő rendezéshez",
|
|
101
|
+
descending: "Kattintson ide a csökkenő rendezéshez",
|
|
102
|
+
sortingState: "${0} - ${1}",
|
|
103
|
+
unsorted: "Ne rendezze ezt az oszlopot",
|
|
104
|
+
waiSingleSortLabel: "${0} - ${1} alapján van rendezve. Válassza ezt, ha ${2} alapján akarja rendezni.",
|
|
105
|
+
waiNestedSortLabel:"${0} - ${1} alapján van beágyazottan rendezve. Válassza ezt, ha ${2} alapján akarja beágyazottan rendezni.",
|
|
106
|
+
|
|
107
|
+
//PaginationBar
|
|
108
|
+
pagerWai: 'Oldalakra töldelés',
|
|
109
|
+
|
|
110
|
+
pageIndex: '${0}',
|
|
111
|
+
pageIndexTitle: '${0}. oldal',
|
|
112
|
+
|
|
113
|
+
firstPageTitle: 'Első oldal',
|
|
114
|
+
prevPageTitle: 'Előző oldal',
|
|
115
|
+
nextPageTitle: 'Következő oldal',
|
|
116
|
+
lastPageTitle: 'Utolsó oldal',
|
|
117
|
+
|
|
118
|
+
pageSize: '${0}',
|
|
119
|
+
pageSizeTitle: '${0} elem oldalanként',
|
|
120
|
+
pageSizeAll: 'Mind',
|
|
121
|
+
pageSizeAllTitle: 'Összes elem',
|
|
122
|
+
|
|
123
|
+
description: '${0} - ${1} elem ${2} közül.',
|
|
124
|
+
descriptionEmpty: 'A rács üres.',
|
|
89
125
|
|
|
126
|
+
summary: 'Összesen: ${0}',
|
|
127
|
+
summaryWithSelection: 'Összesen: ${0} Kiválasztott: ${1}',
|
|
128
|
+
|
|
129
|
+
gotoBtnTitle: 'Ugrás adott oldalra',
|
|
130
|
+
|
|
131
|
+
gotoDialogTitle: 'Ugrás adott oldalra',
|
|
132
|
+
gotoDialogMainMsg: 'Adja meg az oldalszámot:',
|
|
133
|
+
gotoDialogPageCount: '(${0} oldal)',
|
|
134
|
+
gotoDialogOKBtn: 'Mehet',
|
|
135
|
+
gotoDialogCancelBtn: 'Mégse',
|
|
136
|
+
// for drop down pagination bar
|
|
137
|
+
pageLabel: 'Oldal',
|
|
138
|
+
pageSizeLabel: 'Sorok',
|
|
139
|
+
|
|
140
|
+
//QuickFilter
|
|
141
|
+
filterLabel: 'Szűrő',
|
|
142
|
+
clearButtonTitle: 'Szűrő törlése',
|
|
143
|
+
buildFilterMenuLabel: 'Szűrő összeállítása…',
|
|
144
|
+
apply: 'Szűrő alkalmazása',
|
|
145
|
+
|
|
146
|
+
//Sort
|
|
147
|
+
helpMsg: '${0} - Kattintson ide a rendezéshez, vagy használja a Ctrl-kattintás kombinációt a rendezéshez hozzáadáshoz',
|
|
148
|
+
singleHelpMsg: '${0} - Kattintson ide a rendezéshez',
|
|
149
|
+
priorityOrder: 'rendezési prioritás: ${0}',
|
|
150
|
+
|
|
151
|
+
//SummaryBar
|
|
152
|
+
summaryTotal: 'Összesen: ${0}',
|
|
153
|
+
summarySelected: 'Kiválasztott: ${0}',
|
|
154
|
+
summaryRange: 'Range: ${0}-${1}', //need translation
|
|
155
|
+
|
|
156
|
+
//Other
|
|
157
|
+
indirectSelectAll: "Press SPACE to select all.", //need translation
|
|
158
|
+
indirectDeselectAll: "Press SPACE to deselect all.", //need translation
|
|
159
|
+
treeExpanded: "Control + left arrow key to collapse this row.", //need translation
|
|
160
|
+
treeCollapsed: "Control + right arrow key to expand this row." //need translation
|
|
161
|
+
});
|
|
@@ -1,5 +1,14 @@
|
|
|
1
|
-
define({
|
|
2
|
-
//
|
|
1
|
+
define({
|
|
2
|
+
//Body
|
|
3
|
+
loadingInfo: "Caricamento in corso...",
|
|
4
|
+
emptyInfo: "Nessun elemento da visualizzare",
|
|
5
|
+
loadFailInfo: "Impossibile caricare i dati.",
|
|
6
|
+
loadMore: "Carica altro",
|
|
7
|
+
loadMoreLoading: "Caricamento in corso...",
|
|
8
|
+
loadPrevious: "Carica precedente",
|
|
9
|
+
loadPreviousLoading: "Caricamento in corso...",
|
|
10
|
+
|
|
11
|
+
//FilterBar
|
|
3
12
|
"clearFilterDialogTitle": "Cancella filtro",
|
|
4
13
|
"filterDefDialogTitle": "Filtro",
|
|
5
14
|
"defaultRuleTitle": "Regola",
|
|
@@ -83,7 +92,70 @@ define({
|
|
|
83
92
|
"endTimeRangeLabel": "Valore finale intervallo di tempo",
|
|
84
93
|
"beginDateRangeLabel": "Valore iniziale intervallo di date",
|
|
85
94
|
"endDateRangeLabel": "Valore finale intervallo di date",
|
|
86
|
-
"startsWithExpr": "${0}*"
|
|
87
|
-
|
|
88
|
-
|
|
95
|
+
"startsWithExpr": "${0}*",
|
|
96
|
+
|
|
97
|
+
//NestedSort
|
|
98
|
+
singleSort: "Ordine singolo",
|
|
99
|
+
nestedSort: "Ordine nidificato",
|
|
100
|
+
ascending: "Fare clic per ordinare in ordine Ascendente",
|
|
101
|
+
descending: "Fare clic per ordinare in ordine Discendente",
|
|
102
|
+
sortingState: "${0} - ${1}",
|
|
103
|
+
unsorted: "Non ordinare questa colonna",
|
|
104
|
+
waiSingleSortLabel: "${0} - è ordinato in base a ${1}. Scegliere l'ordinamento in base a ${2}",
|
|
105
|
+
waiNestedSortLabel:"${0} - è ordinato e nidificato in base a ${1}. Scegliere l'ordinamento nidificato in base a ${2}",
|
|
106
|
+
|
|
107
|
+
//PaginationBar
|
|
108
|
+
pagerWai: 'Cercapersone',
|
|
109
|
+
|
|
110
|
+
pageIndex: '${0}',
|
|
111
|
+
pageIndexTitle: 'Pagina ${0}',
|
|
112
|
+
|
|
113
|
+
firstPageTitle: 'Prima pagina',
|
|
114
|
+
prevPageTitle: 'Pagina precedente',
|
|
115
|
+
nextPageTitle: 'Pagina successiva',
|
|
116
|
+
lastPageTitle: 'Ultima pagina',
|
|
117
|
+
|
|
118
|
+
pageSize: '${0}',
|
|
119
|
+
pageSizeTitle: '${0} elementi per pagina',
|
|
120
|
+
pageSizeAll: 'Tutto',
|
|
121
|
+
pageSizeAllTitle: 'Tutti gli elementi',
|
|
122
|
+
|
|
123
|
+
description: '${0} - ${1} di ${2} elementi.',
|
|
124
|
+
descriptionEmpty: 'La griglia è vuota.',
|
|
89
125
|
|
|
126
|
+
summary: 'Totale: ${0}',
|
|
127
|
+
summaryWithSelection: 'Totale: ${0} Selezionato: ${1}',
|
|
128
|
+
|
|
129
|
+
gotoBtnTitle: 'Vai a una pagina specifica',
|
|
130
|
+
|
|
131
|
+
gotoDialogTitle: 'Vai alla pagina',
|
|
132
|
+
gotoDialogMainMsg: 'Specificare il numero di pagina:',
|
|
133
|
+
gotoDialogPageCount: '(${0} pagine)',
|
|
134
|
+
gotoDialogOKBtn: 'Vai',
|
|
135
|
+
gotoDialogCancelBtn: 'Annulla',
|
|
136
|
+
// for drop down pagination bar
|
|
137
|
+
pageLabel: 'Pagina',
|
|
138
|
+
pageSizeLabel: 'Righe',
|
|
139
|
+
|
|
140
|
+
//QuickFilter
|
|
141
|
+
filterLabel: 'Filtro',
|
|
142
|
+
clearButtonTitle: 'Cancella filtro',
|
|
143
|
+
buildFilterMenuLabel: 'Crea filtro…',
|
|
144
|
+
apply: 'Applica filtro',
|
|
145
|
+
|
|
146
|
+
//Sort
|
|
147
|
+
helpMsg: '${0} - Fare clic per ordinare oppure control-clic per aggiungere all\'ordinamento',
|
|
148
|
+
singleHelpMsg: '${0} - Fare clic per ordinare',
|
|
149
|
+
priorityOrder: 'priorità di ordinamento ${0}',
|
|
150
|
+
|
|
151
|
+
//SummaryBar
|
|
152
|
+
summaryTotal: 'Totale: ${0}',
|
|
153
|
+
summarySelected: 'Selezionato: ${0}',
|
|
154
|
+
summaryRange: 'Range: ${0}-${1}', //need translation
|
|
155
|
+
|
|
156
|
+
//Other
|
|
157
|
+
indirectSelectAll: "Press SPACE to select all.", //need translation
|
|
158
|
+
indirectDeselectAll: "Press SPACE to deselect all.", //need translation
|
|
159
|
+
treeExpanded: "Control + left arrow key to collapse this row.", //need translation
|
|
160
|
+
treeCollapsed: "Control + right arrow key to expand this row." //need translation
|
|
161
|
+
});
|
|
@@ -1,5 +1,14 @@
|
|
|
1
|
-
define({
|
|
2
|
-
//
|
|
1
|
+
define({
|
|
2
|
+
//Body
|
|
3
|
+
loadingInfo: "ロード中...",
|
|
4
|
+
emptyInfo: "表示する項目がありません",
|
|
5
|
+
loadFailInfo: "データのロードに失敗しました!",
|
|
6
|
+
loadMore: "さらにロード",
|
|
7
|
+
loadMoreLoading: "ロード中...",
|
|
8
|
+
loadPrevious: "前の項目をロード",
|
|
9
|
+
loadPreviousLoading: "ロード中...",
|
|
10
|
+
|
|
11
|
+
//FilterBar
|
|
3
12
|
"clearFilterDialogTitle": "フィルターのクリア",
|
|
4
13
|
"filterDefDialogTitle": "フィルター",
|
|
5
14
|
"defaultRuleTitle": "ルール",
|
|
@@ -83,7 +92,70 @@ define({
|
|
|
83
92
|
"endTimeRangeLabel": "時刻範囲値の終わり",
|
|
84
93
|
"beginDateRangeLabel": "日付範囲値の始まり",
|
|
85
94
|
"endDateRangeLabel": "日付範囲値の終わり",
|
|
86
|
-
"startsWithExpr": "${0}*"
|
|
87
|
-
|
|
88
|
-
|
|
95
|
+
"startsWithExpr": "${0}*",
|
|
96
|
+
|
|
97
|
+
//NestedSort
|
|
98
|
+
singleSort: "単一ソート",
|
|
99
|
+
nestedSort: "ネスト・ソート",
|
|
100
|
+
ascending: "クリックして昇順にソート",
|
|
101
|
+
descending: "クリックして降順にソート",
|
|
102
|
+
sortingState: "${0} - ${1}",
|
|
103
|
+
unsorted: "この列をソートしない",
|
|
104
|
+
waiSingleSortLabel: "${0} - ${1} でソートされています。${2} でのソートを選択してください",
|
|
105
|
+
waiNestedSortLabel:"${0} - ${1} でネスト・ソートされています。${2} でのネスト・ソートを選択してください",
|
|
106
|
+
|
|
107
|
+
//PaginationBar
|
|
108
|
+
pagerWai: 'ページャー',
|
|
109
|
+
|
|
110
|
+
pageIndex: '${0}',
|
|
111
|
+
pageIndexTitle: 'ページ ${0}',
|
|
112
|
+
|
|
113
|
+
firstPageTitle: '最初のページ',
|
|
114
|
+
prevPageTitle: '前のページ',
|
|
115
|
+
nextPageTitle: '次のページ',
|
|
116
|
+
lastPageTitle: '最後のページ',
|
|
117
|
+
|
|
118
|
+
pageSize: '${0}',
|
|
119
|
+
pageSizeTitle: 'ページ当たり ${0} 項目',
|
|
120
|
+
pageSizeAll: 'すべて',
|
|
121
|
+
pageSizeAllTitle: 'すべての項目',
|
|
122
|
+
|
|
123
|
+
description: '${0} - ${1}/${2} 項目。',
|
|
124
|
+
descriptionEmpty: 'グリッドが空です。',
|
|
89
125
|
|
|
126
|
+
summary: '合計: ${0}',
|
|
127
|
+
summaryWithSelection: '合計: ${0} 選択済み: ${1}',
|
|
128
|
+
|
|
129
|
+
gotoBtnTitle: '特定のページに移動',
|
|
130
|
+
|
|
131
|
+
gotoDialogTitle: 'ページに移動',
|
|
132
|
+
gotoDialogMainMsg: 'ページ番号の指定:',
|
|
133
|
+
gotoDialogPageCount: ' (${0} ページ)',
|
|
134
|
+
gotoDialogOKBtn: '移動',
|
|
135
|
+
gotoDialogCancelBtn: 'キャンセル',
|
|
136
|
+
// for drop down pagination bar
|
|
137
|
+
pageLabel: 'ページ',
|
|
138
|
+
pageSizeLabel: '行',
|
|
139
|
+
|
|
140
|
+
//QuickFilter
|
|
141
|
+
filterLabel: 'フィルター',
|
|
142
|
+
clearButtonTitle: 'フィルターのクリア',
|
|
143
|
+
buildFilterMenuLabel: 'フィルターの作成…',
|
|
144
|
+
apply: 'フィルターの適用',
|
|
145
|
+
|
|
146
|
+
//Sort
|
|
147
|
+
helpMsg: '${0} - ソートするにはクリック、ソート項目に追加するには Ctrl とクリック',
|
|
148
|
+
singleHelpMsg: '${0} - ソートするにはクリック',
|
|
149
|
+
priorityOrder: 'ソート優先順位 ${0}',
|
|
150
|
+
|
|
151
|
+
//SummaryBar
|
|
152
|
+
summaryTotal: '合計: ${0}',
|
|
153
|
+
summarySelected: '選択済み: ${0}',
|
|
154
|
+
summaryRange: 'Range: ${0}-${1}', //need translation
|
|
155
|
+
|
|
156
|
+
//Other
|
|
157
|
+
indirectSelectAll: "Press SPACE to select all.", //need translation
|
|
158
|
+
indirectDeselectAll: "Press SPACE to deselect all.", //need translation
|
|
159
|
+
treeExpanded: "Control + left arrow key to collapse this row.", //need translation
|
|
160
|
+
treeCollapsed: "Control + right arrow key to expand this row." //need translation
|
|
161
|
+
});
|
|
@@ -1,5 +1,14 @@
|
|
|
1
|
-
define(
|
|
2
|
-
|
|
1
|
+
define({
|
|
2
|
+
//Body
|
|
3
|
+
loadingInfo: "Қотарылуда...",
|
|
4
|
+
emptyInfo: "Көрсетілетін элементтер жоқ",
|
|
5
|
+
loadFailInfo: "Деректер жүктелмеді!",
|
|
6
|
+
loadMore: "Көбірек қотару",
|
|
7
|
+
loadMoreLoading: "Қотарылуда...",
|
|
8
|
+
loadPrevious: "Алдыңғысын қотару",
|
|
9
|
+
loadPreviousLoading: "Қотарылуда...",
|
|
10
|
+
|
|
11
|
+
//FilterBar
|
|
3
12
|
"clearFilterDialogTitle": "Сүзгіні тазалау",
|
|
4
13
|
"filterDefDialogTitle": "Сүзгі",
|
|
5
14
|
"defaultRuleTitle": "Ереже",
|
|
@@ -83,7 +92,69 @@ define(
|
|
|
83
92
|
"endTimeRangeLabel": "Уақыт ауқымы мәнінің соңы",
|
|
84
93
|
"beginDateRangeLabel": "Күн ауқымы мәнінің басы",
|
|
85
94
|
"endDateRangeLabel": "Күн ауқымы мәнінің соңы",
|
|
86
|
-
"startsWithExpr": "${0}*"
|
|
87
|
-
|
|
88
|
-
|
|
95
|
+
"startsWithExpr": "${0}*",
|
|
96
|
+
|
|
97
|
+
//NestedSort
|
|
98
|
+
singleSort: "Бір рет сұрыптау",
|
|
99
|
+
nestedSort: "Кірістірілген сұрыптау",
|
|
100
|
+
ascending: "Артуы бойынша сұрыптауды басу",
|
|
101
|
+
descending: "Кемуі бойынша сұрыптауды басу",
|
|
102
|
+
sortingState: "${0} - ${1}",
|
|
103
|
+
unsorted: "Бұл бағанды сұрыптамау",
|
|
104
|
+
waiSingleSortLabel: "${0} келесі бойынша сұрыпталды: ${1}. Келесі бойынша сұрыптауды бастау: ${2}",
|
|
105
|
+
waiNestedSortLabel:"${0} - келесі бойынша біріктіріліп сұрыпталды: ${1}. Келесі бойынша біріктіріп сұрыптауды таңдау: ${2}",
|
|
106
|
+
|
|
107
|
+
//PaginationBar
|
|
108
|
+
pagerWai: 'Пейджер',
|
|
109
|
+
pageIndex: '${0}',
|
|
110
|
+
pageIndexTitle: '${0}-бет',
|
|
111
|
+
firstPageTitle: 'Бірінші бет',
|
|
112
|
+
prevPageTitle: 'Алдыңғы бет',
|
|
113
|
+
nextPageTitle: 'Келесі бет',
|
|
114
|
+
lastPageTitle: 'Соңғы бет',
|
|
115
|
+
pageSize: '${0}',
|
|
116
|
+
pageSizeTitle: 'Бетіне ${0} элемент',
|
|
117
|
+
pageSizeAll: 'Барлығы',
|
|
118
|
+
pageSizeAllTitle: 'Барлық элементтер',
|
|
119
|
+
description: '${0} - ${2} элементтің ${1} элементі.',
|
|
120
|
+
descriptionEmpty: 'Тор – бос.',
|
|
121
|
+
// OneUI blueprint
|
|
122
|
+
summary: 'Барлығы: ${0}',
|
|
123
|
+
summaryWithSelection: 'Барлығы: ${0} Таңдалды: ${1}',
|
|
124
|
+
gotoBtnTitle: 'Белгілі бір бетке өту',
|
|
125
|
+
gotoDialogTitle: 'Бетке өту',
|
|
126
|
+
gotoDialogMainMsg: 'Бет санын көрсетіңіз:',
|
|
127
|
+
gotoDialogPageCount: ' (${0} бет)',
|
|
128
|
+
gotoDialogOKBtn: 'Өту',
|
|
129
|
+
gotoDialogCancelBtn: 'Болдырмау',
|
|
130
|
+
// for drop down pagination bar
|
|
131
|
+
pageLabel: 'Бет',
|
|
132
|
+
pageSizeLabel: 'Жолдар',
|
|
133
|
+
|
|
134
|
+
//QuickFilter
|
|
135
|
+
filterLabel: 'Сүзгі',
|
|
136
|
+
clearButtonTitle: 'Сүзгіні тазалау',
|
|
137
|
+
buildFilterMenuLabel: 'Сүзгі жасау…',
|
|
138
|
+
apply: 'Сүзгі қолдану',
|
|
139
|
+
|
|
140
|
+
//Sort
|
|
141
|
+
helpMsg: '${0} - Сұрыптау мақсатында қосу үшін сұрыптау түймешігін немесе басқару элементін басыңыз',
|
|
142
|
+
singleHelpMsg: '${0} - Сұрыптау үшін басыңыз',
|
|
143
|
+
priorityOrder: 'Басымдылықты сұрыптау ${0}',
|
|
144
|
+
|
|
145
|
+
//Sort
|
|
146
|
+
helpMsg: '${0} - Сұрыптау мақсатында қосу үшін сұрыптау түймешігін немесе басқару элементін басыңыз',
|
|
147
|
+
singleHelpMsg: '${0} - Сұрыптау үшін басыңыз',
|
|
148
|
+
priorityOrder: 'Басымдылықты сұрыптау ${0}',
|
|
149
|
+
|
|
150
|
+
//SummaryBar
|
|
151
|
+
summaryTotal: 'Барлығы: ${0}',
|
|
152
|
+
summarySelected: 'Таңдалды: ${0}',
|
|
153
|
+
summaryRange: 'Range: ${0}-${1}', //need translation
|
|
89
154
|
|
|
155
|
+
//Other
|
|
156
|
+
indirectSelectAll: "Press SPACE to select all.", //need translation
|
|
157
|
+
indirectDeselectAll: "Press SPACE to deselect all.", //need translation
|
|
158
|
+
treeExpanded: "Control + left arrow key to collapse this row.", //need translation
|
|
159
|
+
treeCollapsed: "Control + right arrow key to expand this row." //need translation
|
|
160
|
+
});
|