@pepperi-addons/ngx-lib 0.4.2-storybook.1 → 0.5.0-ng15.2
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.
- package/address/address.component.d.ts +1 -1
- package/attachment/attachment.component.d.ts +2 -1
- package/bread-crumbs/bread-crumbs.component.d.ts +1 -1
- package/bread-crumbs/bread-crumbs.model.d.ts +1 -1
- package/button/button.component.d.ts +1 -1
- package/carousel/carousel-item.directive.d.ts +1 -1
- package/carousel/carousel.component.d.ts +1 -1
- package/checkbox/checkbox.component.d.ts +2 -1
- package/chips/chips.component.d.ts +4 -5
- package/chips/chips.component.theme.scss +15 -5
- package/chips/chips.model.d.ts +2 -2
- package/chips/chips.service.d.ts +0 -3
- package/color/color-picker.component.d.ts +1 -1
- package/color/color-picker.component.theme.scss +2 -1
- package/color/color.component.d.ts +1 -1
- package/color/color.model.d.ts +1 -1
- package/core/clipboard/clipboard.directive.d.ts +1 -1
- package/core/common/directives/auto-width.directive.d.ts +1 -1
- package/core/common/directives/base-destroyer.directive.d.ts +10 -0
- package/core/common/directives/button-blur.directive.d.ts +1 -1
- package/core/common/directives/button-loader.directive.d.ts +1 -1
- package/core/common/directives/data-qa.directive.d.ts +1 -1
- package/core/common/directives/div-loader.directive.d.ts +1 -1
- package/core/common/directives/menu-blur.directive.d.ts +1 -1
- package/core/common/directives/prevent-multi-click.directive.d.ts +1 -1
- package/core/common/directives/print.directive.d.ts +1 -1
- package/core/common/directives/public-api.d.ts +1 -0
- package/core/common/pipes/common-pipes.d.ts +5 -2
- package/core/common/services/addon.service.d.ts +6 -4
- package/core/common/services/file.service.d.ts +1 -1
- package/core/common/services/utilities.service.d.ts +4 -4
- package/core/customization/customization.model.d.ts +15 -12
- package/core/customization/customization.service.d.ts +4 -0
- package/core/layout/layout.service.d.ts +1 -1
- package/core/layout/rtl.directive.d.ts +2 -2
- package/core/portal/attach.directive.d.ts +1 -1
- package/core/portal/target.directive.d.ts +1 -1
- package/date/date.component.d.ts +4 -2
- package/dialog/default-dialog.component.d.ts +1 -1
- package/dialog/dialog.component.d.ts +1 -1
- package/dialog/dialog.model.d.ts +2 -2
- package/draggable-items/draggable-item/draggable-item.component.d.ts +16 -2
- package/draggable-items/draggable-items.component.d.ts +4 -7
- package/draggable-items/draggable-items.model.d.ts +2 -2
- package/draggable-items/draggable-items.module.d.ts +4 -3
- package/esm2020/address/address.component.mjs +16 -16
- package/esm2020/address/address.module.mjs +5 -5
- package/esm2020/attachment/attachment.component.mjs +58 -49
- package/esm2020/attachment/attachment.module.mjs +5 -5
- package/esm2020/bread-crumbs/bread-crumbs.component.mjs +15 -15
- package/esm2020/bread-crumbs/bread-crumbs.module.mjs +5 -5
- package/esm2020/button/button.component.mjs +23 -23
- package/esm2020/button/button.module.mjs +5 -5
- package/esm2020/carousel/carousel-item.directive.mjs +9 -9
- package/esm2020/carousel/carousel.component.mjs +52 -52
- package/esm2020/carousel/carousel.module.mjs +5 -5
- package/esm2020/checkbox/checkbox.component.mjs +40 -31
- package/esm2020/checkbox/checkbox.module.mjs +5 -5
- package/esm2020/chips/chips.component.mjs +26 -28
- package/esm2020/chips/chips.module.mjs +5 -5
- package/esm2020/chips/chips.service.mjs +5 -14
- package/esm2020/color/color-picker.component.mjs +5 -5
- package/esm2020/color/color.component.mjs +5 -5
- package/esm2020/color/color.module.mjs +5 -5
- package/esm2020/core/clipboard/clipboard.directive.mjs +4 -4
- package/esm2020/core/clipboard/clipboard.service.mjs +4 -4
- package/esm2020/core/common/directives/auto-width.directive.mjs +4 -4
- package/esm2020/core/common/directives/base-destroyer.directive.mjs +22 -0
- package/esm2020/core/common/directives/button-blur.directive.mjs +4 -4
- package/esm2020/core/common/directives/button-loader.directive.mjs +10 -10
- package/esm2020/core/common/directives/data-qa.directive.mjs +4 -4
- package/esm2020/core/common/directives/div-loader.directive.mjs +4 -4
- package/esm2020/core/common/directives/menu-blur.directive.mjs +4 -4
- package/esm2020/core/common/directives/prevent-multi-click.directive.mjs +4 -4
- package/esm2020/core/common/directives/print.directive.mjs +4 -4
- package/esm2020/core/common/directives/public-api.mjs +2 -1
- package/esm2020/core/common/pipes/common-pipes.mjs +47 -37
- package/esm2020/core/common/pipes/date-ago.pipe.mjs +4 -4
- package/esm2020/core/common/services/addon.service.mjs +36 -12
- package/esm2020/core/common/services/color.service.mjs +4 -4
- package/esm2020/core/common/services/cookie.service.mjs +4 -4
- package/esm2020/core/common/services/data-convertor.service.mjs +6 -6
- package/esm2020/core/common/services/file.service.mjs +4 -4
- package/esm2020/core/common/services/jwt-helper.service.mjs +4 -4
- package/esm2020/core/common/services/session.service.mjs +4 -4
- package/esm2020/core/common/services/translate.service.mjs +4 -4
- package/esm2020/core/common/services/utilities.service.mjs +10 -10
- package/esm2020/core/common/services/validator.service.mjs +4 -4
- package/esm2020/core/common/services/window-scrolling.service.mjs +4 -4
- package/esm2020/core/customization/customization.model.mjs +40 -5
- package/esm2020/core/customization/customization.service.mjs +23 -4
- package/esm2020/core/http/interceptors/error.interceptor.mjs +4 -4
- package/esm2020/core/http/interceptors/loader.interceptor.mjs +4 -4
- package/esm2020/core/http/interceptors/profiler.interceptor.mjs +4 -4
- package/esm2020/core/http/services/http.service.mjs +4 -4
- package/esm2020/core/http/services/loader.service.mjs +10 -10
- package/esm2020/core/layout/layout.service.mjs +12 -12
- package/esm2020/core/layout/rtl.directive.mjs +7 -7
- package/esm2020/core/portal/attach.directive.mjs +4 -4
- package/esm2020/core/portal/portal.service.mjs +4 -4
- package/esm2020/core/portal/target.directive.mjs +4 -4
- package/esm2020/core/scroll-to/scroll-to.service.mjs +4 -4
- package/esm2020/date/date.component.mjs +81 -59
- package/esm2020/date/date.model.mjs +7 -7
- package/esm2020/date/date.module.mjs +5 -5
- package/esm2020/dialog/default-dialog.component.mjs +4 -4
- package/esm2020/dialog/dialog.component.mjs +4 -4
- package/esm2020/dialog/dialog.module.mjs +5 -5
- package/esm2020/dialog/dialog.service.mjs +4 -4
- package/esm2020/draggable-items/draggable-item/draggable-item.component.mjs +46 -6
- package/esm2020/draggable-items/draggable-items.component.mjs +21 -29
- package/esm2020/draggable-items/draggable-items.module.mjs +9 -5
- package/esm2020/field-title/field-title.component.mjs +8 -5
- package/esm2020/field-title/field-title.module.mjs +5 -5
- package/esm2020/files-uploader/files-uploader.component.mjs +12 -12
- package/esm2020/files-uploader/files-uploader.module.mjs +5 -5
- package/esm2020/form/field-generator.component.mjs +5 -5
- package/esm2020/form/form.component.mjs +30 -28
- package/esm2020/form/form.module.mjs +5 -5
- package/esm2020/form/indicators.component.mjs +4 -4
- package/esm2020/form/internal-button.component.mjs +17 -17
- package/esm2020/form/internal-carusel.component.mjs +24 -20
- package/esm2020/form/internal-carusel.service.mjs +4 -4
- package/esm2020/form/internal-field-generator.component.mjs +5 -5
- package/esm2020/form/internal-form.component.mjs +30 -28
- package/esm2020/form/internal-list.component.mjs +7 -7
- package/esm2020/form/internal-menu.component.mjs +6 -8
- package/esm2020/form/internal-page.component.mjs +4 -4
- package/esm2020/form/internal-page.service.mjs +4 -4
- package/esm2020/group-buttons/group-buttons.component.mjs +5 -5
- package/esm2020/group-buttons/group-buttons.module.mjs +5 -5
- package/esm2020/icon/icon-registry.service.mjs +4 -4
- package/esm2020/icon/icon.component.mjs +11 -11
- package/esm2020/icon/icon.module.mjs +5 -5
- package/esm2020/icon/icon.service.mjs +4 -4
- package/esm2020/image/image.component.mjs +52 -43
- package/esm2020/image/image.module.mjs +5 -5
- package/esm2020/image/image.service.mjs +4 -4
- package/esm2020/images-filmstrip/images-filmstrip.component.mjs +26 -25
- package/esm2020/images-filmstrip/images-filmstrip.module.mjs +5 -5
- package/esm2020/link/link.component.mjs +65 -50
- package/esm2020/link/link.module.mjs +5 -5
- package/esm2020/link/link.pipes.mjs +4 -4
- package/esm2020/list/list-actions.component.mjs +6 -6
- package/esm2020/list/list-carousel.component.mjs +20 -20
- package/esm2020/list/list-chooser.component.mjs +6 -6
- package/esm2020/list/list-pager.component.mjs +12 -12
- package/esm2020/list/list-sorting.component.mjs +6 -6
- package/esm2020/list/list-total.component.mjs +9 -6
- package/esm2020/list/list-views.component.mjs +6 -6
- package/esm2020/list/list.component.mjs +151 -72
- package/esm2020/list/list.module.mjs +5 -5
- package/esm2020/list/list.pipes.mjs +7 -7
- package/esm2020/list/virtual-scroller.mjs +58 -58
- package/esm2020/menu/menu-item.component.mjs +5 -5
- package/esm2020/menu/menu.component.mjs +15 -12
- package/esm2020/menu/menu.model.mjs +2 -1
- package/esm2020/menu/menu.module.mjs +5 -5
- package/esm2020/ngx-lib.module.mjs +5 -5
- package/esm2020/page-layout/page-layout.component.mjs +4 -4
- package/esm2020/page-layout/page-layout.module.mjs +5 -5
- package/esm2020/profile-data-views-list/profile-data-view/profile-data-view.component.mjs +4 -4
- package/esm2020/profile-data-views-list/profile-data-views-card/profile-data-views-card.component.mjs +27 -11
- package/esm2020/profile-data-views-list/profile-data-views-list.component.mjs +70 -38
- package/esm2020/profile-data-views-list/profile-data-views-list.model.mjs +1 -1
- package/esm2020/profile-data-views-list/profile-data-views-list.module.mjs +5 -5
- package/esm2020/quantity-selector/quantity-selector-validation.directive.mjs +4 -4
- package/esm2020/quantity-selector/quantity-selector.component.mjs +102 -89
- package/esm2020/quantity-selector/quantity-selector.module.mjs +5 -5
- package/esm2020/quantity-selector/quantity-selector.pipes.mjs +4 -4
- package/esm2020/query-builder/common/model/legacy.mjs +1 -1
- package/esm2020/query-builder/common/model/operator.mjs +72 -62
- package/esm2020/query-builder/common/services/output-query.service.mjs +8 -6
- package/esm2020/query-builder/common/services/query-structure.service.mjs +37 -5
- package/esm2020/query-builder/common/services/type-convertor.service.mjs +10 -10
- package/esm2020/query-builder/query-builder-item/query-builder-item.component.mjs +25 -23
- package/esm2020/query-builder/query-builder-section/query-builder-section.component.mjs +5 -5
- package/esm2020/query-builder/query-builder.component.mjs +19 -19
- package/esm2020/query-builder/query-builder.module.mjs +17 -6
- package/esm2020/query-builder/query-builder.service.mjs +5 -5
- package/esm2020/remote-loader/addon-block-loader.component.mjs +45 -35
- package/esm2020/remote-loader/addon-block-loader.service.mjs +8 -5
- package/esm2020/remote-loader/remote-loader-element.component.mjs +81 -26
- package/esm2020/remote-loader/remote-loader.component.mjs +13 -13
- package/esm2020/remote-loader/remote-loader.model.mjs +1 -1
- package/esm2020/remote-loader/remote-loader.module.mjs +5 -5
- package/esm2020/remote-loader/remote-loader.service.mjs +38 -15
- package/esm2020/rich-html-textarea/rich-html-textarea.component.mjs +52 -36
- package/esm2020/rich-html-textarea/rich-html-textarea.module.mjs +5 -5
- package/esm2020/search/search.component.mjs +35 -35
- package/esm2020/search/search.module.mjs +5 -5
- package/esm2020/select/select.component.mjs +89 -45
- package/esm2020/select/select.module.mjs +5 -5
- package/esm2020/select-panel/select-panel.component.mjs +26 -28
- package/esm2020/select-panel/select-panel.module.mjs +5 -5
- package/esm2020/separator/separator.component.mjs +16 -16
- package/esm2020/separator/separator.module.mjs +5 -5
- package/esm2020/side-bar/side-bar.component.mjs +29 -15
- package/esm2020/side-bar/side-bar.module.mjs +5 -5
- package/esm2020/signature/signature-dialog.component.mjs +4 -4
- package/esm2020/signature/signature.component.mjs +41 -32
- package/esm2020/signature/signature.module.mjs +5 -5
- package/esm2020/size-detector/size-detector.component.mjs +15 -13
- package/esm2020/size-detector/size-detector.module.mjs +5 -5
- package/esm2020/skeleton-loader/public-api.mjs +2 -2
- package/esm2020/skeleton-loader/skeleton-loader.component.mjs +5 -5
- package/esm2020/skeleton-loader/skeleton-loader.module.mjs +5 -5
- package/esm2020/slider/slider.component.mjs +21 -21
- package/esm2020/slider/slider.module.mjs +5 -5
- package/esm2020/smart-filters/boolean-filter/boolean-filter.component.mjs +4 -4
- package/esm2020/smart-filters/common/filter-actions.component.mjs +4 -4
- package/esm2020/smart-filters/common/model/base-filter-component.mjs +28 -34
- package/esm2020/smart-filters/common/model/field.mjs +7 -7
- package/esm2020/smart-filters/common/model/operator.mjs +15 -6
- package/esm2020/smart-filters/common/model/type.mjs +1 -1
- package/esm2020/smart-filters/date-filter/date-filter.component.mjs +4 -4
- package/esm2020/smart-filters/multi-select-filter/multi-select-filter.component.mjs +5 -5
- package/esm2020/smart-filters/number-filter/number-filter.component.mjs +4 -4
- package/esm2020/smart-filters/smart-filters.component.mjs +19 -19
- package/esm2020/smart-filters/smart-filters.module.mjs +5 -5
- package/esm2020/smart-filters/text-filter/text-filter.component.mjs +29 -9
- package/esm2020/snack-bar/default-snack-bar.component.mjs +4 -4
- package/esm2020/snack-bar/snack-bar.component.mjs +4 -4
- package/esm2020/snack-bar/snack-bar.module.mjs +5 -5
- package/esm2020/snack-bar/snack-bar.service.mjs +4 -4
- package/esm2020/textarea/textarea.component.mjs +40 -31
- package/esm2020/textarea/textarea.module.mjs +5 -5
- package/esm2020/textbox/textbox-validation.directive.mjs +5 -5
- package/esm2020/textbox/textbox.component.mjs +171 -115
- package/esm2020/textbox/textbox.module.mjs +5 -5
- package/esm2020/textbox-icon/textbox-icon.component.mjs +4 -4
- package/esm2020/textbox-icon/textbox-icon.module.mjs +5 -5
- package/esm2020/top-bar/top-bar.component.mjs +5 -5
- package/esm2020/top-bar/top-bar.module.mjs +5 -5
- package/fesm2015/pepperi-addons-ngx-lib-address.mjs +19 -19
- package/fesm2015/pepperi-addons-ngx-lib-address.mjs.map +1 -1
- package/fesm2015/pepperi-addons-ngx-lib-attachment.mjs +61 -52
- package/fesm2015/pepperi-addons-ngx-lib-attachment.mjs.map +1 -1
- package/fesm2015/pepperi-addons-ngx-lib-bread-crumbs.mjs +18 -18
- package/fesm2015/pepperi-addons-ngx-lib-bread-crumbs.mjs.map +1 -1
- package/fesm2015/pepperi-addons-ngx-lib-button.mjs +26 -26
- package/fesm2015/pepperi-addons-ngx-lib-button.mjs.map +1 -1
- package/fesm2015/pepperi-addons-ngx-lib-carousel.mjs +63 -63
- package/fesm2015/pepperi-addons-ngx-lib-carousel.mjs.map +1 -1
- package/fesm2015/pepperi-addons-ngx-lib-checkbox.mjs +43 -34
- package/fesm2015/pepperi-addons-ngx-lib-checkbox.mjs.map +1 -1
- package/fesm2015/pepperi-addons-ngx-lib-chips.mjs +33 -44
- package/fesm2015/pepperi-addons-ngx-lib-chips.mjs.map +1 -1
- package/fesm2015/pepperi-addons-ngx-lib-color.mjs +12 -12
- package/fesm2015/pepperi-addons-ngx-lib-color.mjs.map +1 -1
- package/fesm2015/pepperi-addons-ngx-lib-date.mjs +91 -68
- package/fesm2015/pepperi-addons-ngx-lib-date.mjs.map +1 -1
- package/fesm2015/pepperi-addons-ngx-lib-dialog.mjs +13 -13
- package/fesm2015/pepperi-addons-ngx-lib-dialog.mjs.map +1 -1
- package/fesm2015/pepperi-addons-ngx-lib-draggable-items.mjs +75 -40
- package/fesm2015/pepperi-addons-ngx-lib-draggable-items.mjs.map +1 -1
- package/fesm2015/pepperi-addons-ngx-lib-field-title.mjs +11 -8
- package/fesm2015/pepperi-addons-ngx-lib-field-title.mjs.map +1 -1
- package/fesm2015/pepperi-addons-ngx-lib-files-uploader.mjs +15 -15
- package/fesm2015/pepperi-addons-ngx-lib-files-uploader.mjs.map +1 -1
- package/fesm2015/pepperi-addons-ngx-lib-form.mjs +132 -126
- package/fesm2015/pepperi-addons-ngx-lib-form.mjs.map +1 -1
- package/fesm2015/pepperi-addons-ngx-lib-group-buttons.mjs +8 -8
- package/fesm2015/pepperi-addons-ngx-lib-group-buttons.mjs.map +1 -1
- package/fesm2015/pepperi-addons-ngx-lib-icon.mjs +20 -20
- package/fesm2015/pepperi-addons-ngx-lib-icon.mjs.map +1 -1
- package/fesm2015/pepperi-addons-ngx-lib-image.mjs +58 -49
- package/fesm2015/pepperi-addons-ngx-lib-image.mjs.map +1 -1
- package/fesm2015/pepperi-addons-ngx-lib-images-filmstrip.mjs +29 -28
- package/fesm2015/pepperi-addons-ngx-lib-images-filmstrip.mjs.map +1 -1
- package/fesm2015/pepperi-addons-ngx-lib-link.mjs +71 -56
- package/fesm2015/pepperi-addons-ngx-lib-link.mjs.map +1 -1
- package/fesm2015/pepperi-addons-ngx-lib-list.mjs +276 -192
- package/fesm2015/pepperi-addons-ngx-lib-list.mjs.map +1 -1
- package/fesm2015/pepperi-addons-ngx-lib-menu.mjs +23 -19
- package/fesm2015/pepperi-addons-ngx-lib-menu.mjs.map +1 -1
- package/fesm2015/pepperi-addons-ngx-lib-page-layout.mjs +7 -7
- package/fesm2015/pepperi-addons-ngx-lib-page-layout.mjs.map +1 -1
- package/fesm2015/pepperi-addons-ngx-lib-profile-data-views-list.mjs +102 -54
- package/fesm2015/pepperi-addons-ngx-lib-profile-data-views-list.mjs.map +1 -1
- package/fesm2015/pepperi-addons-ngx-lib-quantity-selector.mjs +110 -97
- package/fesm2015/pepperi-addons-ngx-lib-quantity-selector.mjs.map +1 -1
- package/fesm2015/pepperi-addons-ngx-lib-query-builder.mjs +191 -132
- package/fesm2015/pepperi-addons-ngx-lib-query-builder.mjs.map +1 -1
- package/fesm2015/pepperi-addons-ngx-lib-remote-loader.mjs +197 -108
- package/fesm2015/pepperi-addons-ngx-lib-remote-loader.mjs.map +1 -1
- package/fesm2015/pepperi-addons-ngx-lib-rich-html-textarea.mjs +55 -39
- package/fesm2015/pepperi-addons-ngx-lib-rich-html-textarea.mjs.map +1 -1
- package/fesm2015/pepperi-addons-ngx-lib-search.mjs +38 -38
- package/fesm2015/pepperi-addons-ngx-lib-search.mjs.map +1 -1
- package/fesm2015/pepperi-addons-ngx-lib-select-panel.mjs +29 -31
- package/fesm2015/pepperi-addons-ngx-lib-select-panel.mjs.map +1 -1
- package/fesm2015/pepperi-addons-ngx-lib-select.mjs +92 -48
- package/fesm2015/pepperi-addons-ngx-lib-select.mjs.map +1 -1
- package/fesm2015/pepperi-addons-ngx-lib-separator.mjs +19 -19
- package/fesm2015/pepperi-addons-ngx-lib-separator.mjs.map +1 -1
- package/fesm2015/pepperi-addons-ngx-lib-side-bar.mjs +32 -18
- package/fesm2015/pepperi-addons-ngx-lib-side-bar.mjs.map +1 -1
- package/fesm2015/pepperi-addons-ngx-lib-signature.mjs +48 -38
- package/fesm2015/pepperi-addons-ngx-lib-signature.mjs.map +1 -1
- package/fesm2015/pepperi-addons-ngx-lib-size-detector.mjs +18 -16
- package/fesm2015/pepperi-addons-ngx-lib-size-detector.mjs.map +1 -1
- package/fesm2015/pepperi-addons-ngx-lib-skeleton-loader.mjs +9 -9
- package/fesm2015/pepperi-addons-ngx-lib-skeleton-loader.mjs.map +1 -1
- package/fesm2015/pepperi-addons-ngx-lib-slider.mjs +24 -24
- package/fesm2015/pepperi-addons-ngx-lib-slider.mjs.map +1 -1
- package/fesm2015/pepperi-addons-ngx-lib-smart-filters.mjs +114 -91
- package/fesm2015/pepperi-addons-ngx-lib-smart-filters.mjs.map +1 -1
- package/fesm2015/pepperi-addons-ngx-lib-snack-bar.mjs +13 -13
- package/fesm2015/pepperi-addons-ngx-lib-snack-bar.mjs.map +1 -1
- package/fesm2015/pepperi-addons-ngx-lib-textarea.mjs +43 -34
- package/fesm2015/pepperi-addons-ngx-lib-textarea.mjs.map +1 -1
- package/fesm2015/pepperi-addons-ngx-lib-textbox-icon.mjs +7 -7
- package/fesm2015/pepperi-addons-ngx-lib-textbox-icon.mjs.map +1 -1
- package/fesm2015/pepperi-addons-ngx-lib-textbox.mjs +181 -123
- package/fesm2015/pepperi-addons-ngx-lib-textbox.mjs.map +1 -1
- package/fesm2015/pepperi-addons-ngx-lib-top-bar.mjs +8 -8
- package/fesm2015/pepperi-addons-ngx-lib-top-bar.mjs.map +1 -1
- package/fesm2015/pepperi-addons-ngx-lib.mjs +760 -653
- package/fesm2015/pepperi-addons-ngx-lib.mjs.map +1 -1
- package/fesm2020/pepperi-addons-ngx-lib-address.mjs +19 -19
- package/fesm2020/pepperi-addons-ngx-lib-address.mjs.map +1 -1
- package/fesm2020/pepperi-addons-ngx-lib-attachment.mjs +61 -52
- package/fesm2020/pepperi-addons-ngx-lib-attachment.mjs.map +1 -1
- package/fesm2020/pepperi-addons-ngx-lib-bread-crumbs.mjs +18 -18
- package/fesm2020/pepperi-addons-ngx-lib-bread-crumbs.mjs.map +1 -1
- package/fesm2020/pepperi-addons-ngx-lib-button.mjs +26 -26
- package/fesm2020/pepperi-addons-ngx-lib-button.mjs.map +1 -1
- package/fesm2020/pepperi-addons-ngx-lib-carousel.mjs +63 -63
- package/fesm2020/pepperi-addons-ngx-lib-carousel.mjs.map +1 -1
- package/fesm2020/pepperi-addons-ngx-lib-checkbox.mjs +43 -34
- package/fesm2020/pepperi-addons-ngx-lib-checkbox.mjs.map +1 -1
- package/fesm2020/pepperi-addons-ngx-lib-chips.mjs +33 -44
- package/fesm2020/pepperi-addons-ngx-lib-chips.mjs.map +1 -1
- package/fesm2020/pepperi-addons-ngx-lib-color.mjs +12 -12
- package/fesm2020/pepperi-addons-ngx-lib-color.mjs.map +1 -1
- package/fesm2020/pepperi-addons-ngx-lib-date.mjs +90 -68
- package/fesm2020/pepperi-addons-ngx-lib-date.mjs.map +1 -1
- package/fesm2020/pepperi-addons-ngx-lib-dialog.mjs +13 -13
- package/fesm2020/pepperi-addons-ngx-lib-dialog.mjs.map +1 -1
- package/fesm2020/pepperi-addons-ngx-lib-draggable-items.mjs +74 -39
- package/fesm2020/pepperi-addons-ngx-lib-draggable-items.mjs.map +1 -1
- package/fesm2020/pepperi-addons-ngx-lib-field-title.mjs +11 -8
- package/fesm2020/pepperi-addons-ngx-lib-field-title.mjs.map +1 -1
- package/fesm2020/pepperi-addons-ngx-lib-files-uploader.mjs +15 -15
- package/fesm2020/pepperi-addons-ngx-lib-files-uploader.mjs.map +1 -1
- package/fesm2020/pepperi-addons-ngx-lib-form.mjs +132 -126
- package/fesm2020/pepperi-addons-ngx-lib-form.mjs.map +1 -1
- package/fesm2020/pepperi-addons-ngx-lib-group-buttons.mjs +8 -8
- package/fesm2020/pepperi-addons-ngx-lib-group-buttons.mjs.map +1 -1
- package/fesm2020/pepperi-addons-ngx-lib-icon.mjs +20 -20
- package/fesm2020/pepperi-addons-ngx-lib-icon.mjs.map +1 -1
- package/fesm2020/pepperi-addons-ngx-lib-image.mjs +58 -49
- package/fesm2020/pepperi-addons-ngx-lib-image.mjs.map +1 -1
- package/fesm2020/pepperi-addons-ngx-lib-images-filmstrip.mjs +29 -28
- package/fesm2020/pepperi-addons-ngx-lib-images-filmstrip.mjs.map +1 -1
- package/fesm2020/pepperi-addons-ngx-lib-link.mjs +71 -56
- package/fesm2020/pepperi-addons-ngx-lib-link.mjs.map +1 -1
- package/fesm2020/pepperi-addons-ngx-lib-list.mjs +274 -192
- package/fesm2020/pepperi-addons-ngx-lib-list.mjs.map +1 -1
- package/fesm2020/pepperi-addons-ngx-lib-menu.mjs +23 -19
- package/fesm2020/pepperi-addons-ngx-lib-menu.mjs.map +1 -1
- package/fesm2020/pepperi-addons-ngx-lib-page-layout.mjs +7 -7
- package/fesm2020/pepperi-addons-ngx-lib-page-layout.mjs.map +1 -1
- package/fesm2020/pepperi-addons-ngx-lib-profile-data-views-list.mjs +102 -54
- package/fesm2020/pepperi-addons-ngx-lib-profile-data-views-list.mjs.map +1 -1
- package/fesm2020/pepperi-addons-ngx-lib-quantity-selector.mjs +110 -97
- package/fesm2020/pepperi-addons-ngx-lib-quantity-selector.mjs.map +1 -1
- package/fesm2020/pepperi-addons-ngx-lib-query-builder.mjs +187 -131
- package/fesm2020/pepperi-addons-ngx-lib-query-builder.mjs.map +1 -1
- package/fesm2020/pepperi-addons-ngx-lib-remote-loader.mjs +184 -93
- package/fesm2020/pepperi-addons-ngx-lib-remote-loader.mjs.map +1 -1
- package/fesm2020/pepperi-addons-ngx-lib-rich-html-textarea.mjs +55 -39
- package/fesm2020/pepperi-addons-ngx-lib-rich-html-textarea.mjs.map +1 -1
- package/fesm2020/pepperi-addons-ngx-lib-search.mjs +38 -38
- package/fesm2020/pepperi-addons-ngx-lib-search.mjs.map +1 -1
- package/fesm2020/pepperi-addons-ngx-lib-select-panel.mjs +29 -31
- package/fesm2020/pepperi-addons-ngx-lib-select-panel.mjs.map +1 -1
- package/fesm2020/pepperi-addons-ngx-lib-select.mjs +92 -48
- package/fesm2020/pepperi-addons-ngx-lib-select.mjs.map +1 -1
- package/fesm2020/pepperi-addons-ngx-lib-separator.mjs +19 -19
- package/fesm2020/pepperi-addons-ngx-lib-separator.mjs.map +1 -1
- package/fesm2020/pepperi-addons-ngx-lib-side-bar.mjs +32 -18
- package/fesm2020/pepperi-addons-ngx-lib-side-bar.mjs.map +1 -1
- package/fesm2020/pepperi-addons-ngx-lib-signature.mjs +47 -38
- package/fesm2020/pepperi-addons-ngx-lib-signature.mjs.map +1 -1
- package/fesm2020/pepperi-addons-ngx-lib-size-detector.mjs +18 -16
- package/fesm2020/pepperi-addons-ngx-lib-size-detector.mjs.map +1 -1
- package/fesm2020/pepperi-addons-ngx-lib-skeleton-loader.mjs +9 -9
- package/fesm2020/pepperi-addons-ngx-lib-skeleton-loader.mjs.map +1 -1
- package/fesm2020/pepperi-addons-ngx-lib-slider.mjs +24 -24
- package/fesm2020/pepperi-addons-ngx-lib-slider.mjs.map +1 -1
- package/fesm2020/pepperi-addons-ngx-lib-smart-filters.mjs +114 -91
- package/fesm2020/pepperi-addons-ngx-lib-smart-filters.mjs.map +1 -1
- package/fesm2020/pepperi-addons-ngx-lib-snack-bar.mjs +13 -13
- package/fesm2020/pepperi-addons-ngx-lib-snack-bar.mjs.map +1 -1
- package/fesm2020/pepperi-addons-ngx-lib-textarea.mjs +43 -34
- package/fesm2020/pepperi-addons-ngx-lib-textarea.mjs.map +1 -1
- package/fesm2020/pepperi-addons-ngx-lib-textbox-icon.mjs +7 -7
- package/fesm2020/pepperi-addons-ngx-lib-textbox-icon.mjs.map +1 -1
- package/fesm2020/pepperi-addons-ngx-lib-textbox.mjs +179 -123
- package/fesm2020/pepperi-addons-ngx-lib-textbox.mjs.map +1 -1
- package/fesm2020/pepperi-addons-ngx-lib-top-bar.mjs +8 -8
- package/fesm2020/pepperi-addons-ngx-lib-top-bar.mjs.map +1 -1
- package/fesm2020/pepperi-addons-ngx-lib.mjs +780 -674
- package/fesm2020/pepperi-addons-ngx-lib.mjs.map +1 -1
- package/field-title/field-title.component.d.ts +2 -1
- package/files-uploader/files-uploader.component.d.ts +1 -1
- package/form/field-generator.component.d.ts +1 -1
- package/form/form.component.d.ts +1 -1
- package/form/indicators.component.d.ts +1 -1
- package/form/internal-button.component.d.ts +1 -1
- package/form/internal-carusel.component.d.ts +2 -1
- package/form/internal-field-generator.component.d.ts +1 -1
- package/form/internal-form.component.d.ts +1 -1
- package/form/internal-list.component.d.ts +2 -2
- package/form/internal-menu.component.d.ts +1 -2
- package/form/internal-page.component.d.ts +1 -1
- package/group-buttons/group-buttons.component.d.ts +2 -2
- package/icon/icon-generated.model.d.ts +2 -2
- package/icon/icon.component.d.ts +1 -1
- package/image/image.component.d.ts +2 -1
- package/image/image.component.theme.scss +4 -2
- package/images-filmstrip/images-filmstrip.component.d.ts +1 -1
- package/link/link.component.d.ts +4 -1
- package/list/list-actions.component.d.ts +1 -1
- package/list/list-carousel.component.d.ts +2 -2
- package/list/list-chooser.component.d.ts +1 -1
- package/list/list-pager.component.d.ts +1 -1
- package/list/list-sorting.component.d.ts +1 -1
- package/list/list-total.component.d.ts +2 -1
- package/list/list-views.component.d.ts +2 -2
- package/list/list.component.d.ts +9 -3
- package/list/list.model.d.ts +6 -6
- package/list/virtual-scroller.d.ts +2 -2
- package/menu/menu-item.component.d.ts +1 -1
- package/menu/menu.component.d.ts +2 -1
- package/menu/menu.model.d.ts +4 -3
- package/package.json +11 -11
- package/page-layout/page-layout.component.d.ts +1 -1
- package/profile-data-views-list/profile-data-view/profile-data-view.component.d.ts +4 -4
- package/profile-data-views-list/profile-data-views-card/profile-data-views-card.component.d.ts +5 -4
- package/profile-data-views-list/profile-data-views-list.component.d.ts +13 -10
- package/profile-data-views-list/profile-data-views-list.model.d.ts +8 -0
- package/quantity-selector/quantity-selector-validation.directive.d.ts +1 -1
- package/quantity-selector/quantity-selector.component.d.ts +8 -9
- package/quantity-selector/quantity-selector.component.theme.scss +12 -6
- package/query-builder/common/model/legacy.d.ts +2 -0
- package/query-builder/common/model/operator.d.ts +11 -1
- package/query-builder/common/services/query-structure.service.d.ts +1 -0
- package/query-builder/query-builder-item/query-builder-item.component.d.ts +4 -2
- package/query-builder/query-builder-section/query-builder-section.component.d.ts +1 -1
- package/query-builder/query-builder.component.d.ts +1 -1
- package/query-builder/query-builder.module.d.ts +7 -3
- package/remote-loader/addon-block-loader.component.d.ts +4 -2
- package/remote-loader/remote-loader-element.component.d.ts +9 -2
- package/remote-loader/remote-loader.component.d.ts +1 -1
- package/remote-loader/remote-loader.model.d.ts +3 -2
- package/remote-loader/remote-loader.service.d.ts +2 -0
- package/rich-html-textarea/rich-html-textarea.component.d.ts +4 -1
- package/rich-html-textarea/rich-html-textarea.component.theme.scss +8 -5
- package/search/search.component.d.ts +1 -1
- package/search/search.model.d.ts +4 -4
- package/select/select.component.d.ts +9 -1
- package/select/select.component.theme.scss +22 -11
- package/select-panel/select-panel.component.d.ts +1 -2
- package/select-panel/select-panel.component.theme.scss +0 -2
- package/separator/separator.component.d.ts +1 -1
- package/side-bar/side-bar.component.d.ts +4 -1
- package/side-bar/side-bar.model.d.ts +1 -1
- package/signature/signature-dialog.component.d.ts +2 -2
- package/signature/signature.component.d.ts +2 -1
- package/size-detector/size-detector.component.d.ts +1 -1
- package/skeleton-loader/skeleton-loader.component.d.ts +4 -4
- package/slider/slider.component.d.ts +1 -1
- package/slider/slider.component.theme.scss +15 -5
- package/smart-filters/boolean-filter/boolean-filter.component.d.ts +4 -1
- package/smart-filters/common/filter-actions.component.d.ts +1 -1
- package/smart-filters/common/model/base-filter-component.d.ts +3 -5
- package/smart-filters/common/model/operator.d.ts +3 -0
- package/smart-filters/common/model/type.d.ts +4 -4
- package/smart-filters/date-filter/date-filter.component.d.ts +4 -1
- package/smart-filters/multi-select-filter/multi-select-filter.component.d.ts +4 -1
- package/smart-filters/number-filter/number-filter.component.d.ts +4 -1
- package/smart-filters/smart-filters.component.d.ts +1 -1
- package/smart-filters/text-filter/text-filter.component.d.ts +5 -1
- package/snack-bar/default-snack-bar.component.d.ts +1 -1
- package/snack-bar/snack-bar.component.d.ts +1 -1
- package/src/assets/i18n/ar.ngx-lib.json +180 -0
- package/src/assets/i18n/de.ngx-lib.json +106 -4
- package/src/assets/i18n/en.ngx-lib.json +10 -3
- package/src/assets/i18n/es.ngx-lib.json +113 -11
- package/src/assets/i18n/fr.ngx-lib.json +105 -4
- package/src/assets/i18n/he.ngx-lib.json +105 -4
- package/src/assets/i18n/it.ngx-lib.json +114 -13
- package/src/assets/i18n/ja.ngx-lib.json +105 -4
- package/src/assets/i18n/pl.ngx-lib.json +105 -4
- package/src/assets/i18n/pt.ngx-lib.json +105 -4
- package/src/assets/i18n/sr.ngx-lib.json +180 -0
- package/src/assets/i18n/zh.ngx-lib.json +105 -2
- package/src/core/style/abstracts/mixins.scss +157 -37
- package/src/core/style/abstracts/variables.scss +10 -1
- package/src/core/style/base/Spacing.stories.mdx +22 -22
- package/src/core/style/base/base.scss +219 -117
- package/src/core/style/base/typography.scss +2 -1
- package/src/core/style/components/button.scss +52 -19
- package/src/core/style/components/checkbox.scss +132 -128
- package/src/core/style/components/file.scss +13 -9
- package/src/core/style/components/general.scss +149 -65
- package/src/core/style/components/radio-button.scss +50 -23
- package/src/core/style/components/textarea.scss +69 -30
- package/textarea/textarea.component.d.ts +2 -1
- package/textbox/textbox-validation.directive.d.ts +1 -1
- package/textbox/textbox.component.d.ts +4 -1
- package/textbox-icon/textbox-icon.component.d.ts +1 -1
- package/theming-offline.scss +2 -1
- package/theming.scss +7 -2
- package/top-bar/top-bar.component.d.ts +1 -1
- package/top-bar/top-bar.model.d.ts +1 -1
- package/src/assets/images/sail-away.jpg +0 -0
|
@@ -11,6 +11,9 @@
|
|
|
11
11
|
"TRUE": "True",
|
|
12
12
|
"FALSE": "False"
|
|
13
13
|
},
|
|
14
|
+
"CHIPS": {
|
|
15
|
+
"ADD_CHIP": "הוסף צ׳יפ"
|
|
16
|
+
},
|
|
14
17
|
"IMAGE": {
|
|
15
18
|
"NO_IMAGE": "אין תמונה",
|
|
16
19
|
"CLICK_TO_ENLARGE": "לחץ להגדלה"
|
|
@@ -26,9 +29,23 @@
|
|
|
26
29
|
"INTERNAL_PAGE": {
|
|
27
30
|
"CLICK_TO_ORDER": "הקליקו להזמנה"
|
|
28
31
|
},
|
|
32
|
+
"PROFILE_DATA_VIEWS_LIST": {
|
|
33
|
+
"ADD_PROFILE": "הוסף פרופיל",
|
|
34
|
+
"SELECT_PROFILE_DIALOG_TITLE": "בחר פרופיל",
|
|
35
|
+
"SELECT_PROFILE": "בחר פרופיל",
|
|
36
|
+
"IMPORT_PROFILE_DIALOG_TITLE": "ייבוא ל {{ profileTitle }}",
|
|
37
|
+
"IMPORT_FROM_PROFILE": "ייבוא מ",
|
|
38
|
+
"IMPORT_FROM_PROFILE_DESC": "אתה יכול לבחור פרופיל כדי להעתיק את התצורה שלו לפרופיל שנוסף. השאר אפשרות זו ריקה עבור תצורת ברירת מחדל",
|
|
39
|
+
"DEFAULT_PROFILE": "(פרופיל ברירת המחדל)",
|
|
40
|
+
"NO_FIELDS_ASSIGNED": "לא שויכו שדות"
|
|
41
|
+
},
|
|
29
42
|
"RICH_TEXTAREA": {
|
|
30
43
|
"HINT": "הזן טקסט"
|
|
31
44
|
},
|
|
45
|
+
"SEARCH": {
|
|
46
|
+
"HINT": "חיפוש",
|
|
47
|
+
"MORE_RESULTS": "עוד תוצאות"
|
|
48
|
+
},
|
|
32
49
|
"SELECT": {
|
|
33
50
|
"HINT": "בחר אפשרות"
|
|
34
51
|
},
|
|
@@ -37,26 +54,97 @@
|
|
|
37
54
|
"TAP_TO_SIGN": "הקש כדי לחתום",
|
|
38
55
|
"DIALOG_TITLE": "הוסף חתימה"
|
|
39
56
|
},
|
|
57
|
+
"SMART_FILTERS": {
|
|
58
|
+
"TITLE": "פילטרים חכמים",
|
|
59
|
+
"IS_ON": "מופעל",
|
|
60
|
+
"CHOOSE_TIME": "בחר שעה",
|
|
61
|
+
"AMOUNT": "סכום",
|
|
62
|
+
"VALUE": "ערך",
|
|
63
|
+
"TIME_UNIT": "יחידת זמן",
|
|
64
|
+
"START_DATE": "תאריך התחלה",
|
|
65
|
+
"END_DATE": "תאריך סיום",
|
|
66
|
+
"CHOOSE_DATE": "בחר תאריך",
|
|
67
|
+
"TYPE": "סוג",
|
|
68
|
+
"MIN": "מינימום",
|
|
69
|
+
"MAX": "מקסימום",
|
|
70
|
+
"SEARCH": "חיפוש",
|
|
71
|
+
"NO_SEARCH_RESULTS": "לא נמצאו תוצאות",
|
|
72
|
+
"NO_OPTIONS": "אין אפשרויות בחירה",
|
|
73
|
+
"OPERATORS": {
|
|
74
|
+
"IN_THE_LAST": "האחרון (אחרונים)",
|
|
75
|
+
"IN_THE_LAST_CALENDAR": "האחרון (אחרונים) בלוח שנה",
|
|
76
|
+
"IN_THE_LAST_VARIABLE": "האחרון (אחרונים) משתנה",
|
|
77
|
+
"TODAY": "היום",
|
|
78
|
+
"THIS_WEEK": "השבוע",
|
|
79
|
+
"THIS_MONTH": "החודש",
|
|
80
|
+
"DATE_RANGE": "בין",
|
|
81
|
+
"DATE_RANGE_VARIABLE": "בין (משתנה)",
|
|
82
|
+
"DUE_IN": "לסיום בעוד",
|
|
83
|
+
"ON": "ב-",
|
|
84
|
+
"NOT_IN_THE_LAST": "לא לאחרונה",
|
|
85
|
+
"NOT_IN_THE_LAST_CALENDAR": "לא לאחרונה (לוח שנה)",
|
|
86
|
+
"NOT_DUE_IN": "לא לסיום בעוד",
|
|
87
|
+
"IS_EMPTY": "ריק",
|
|
88
|
+
"IS_NOT_EMPTY": "לא ריק",
|
|
89
|
+
"NOT_EQUAL": "אינו שווה",
|
|
90
|
+
"NOT_EQUAL_TO_VARIABLE": "אינו שווה ל (משתנה)",
|
|
91
|
+
"LESS_THEN_OR_EQUAL": "קטן מ- או שווה ל-",
|
|
92
|
+
"LESS_THEN": "קטן מ",
|
|
93
|
+
"LESS_THAN_VARIABLE": "קטן מ (משתנה)",
|
|
94
|
+
"EQUAL": "שווה",
|
|
95
|
+
"EQUAL_TO_VARIABLE": "שווה (משתנה)",
|
|
96
|
+
"IN_VARIABLE": "בעוד (משתנה)",
|
|
97
|
+
"GREATER_THEN": "גדול מ-",
|
|
98
|
+
"GREATER_THEN_OR_EQUAL": "גדול מ- או שווה ל-",
|
|
99
|
+
"GREATER_THAN_VARIABLE": "גדול מ- (משתנה)",
|
|
100
|
+
"NUMBER_RANGE": "בין",
|
|
101
|
+
"CONTAINS": "מכיל",
|
|
102
|
+
"IN": "בעוד",
|
|
103
|
+
"BEGINS_WITH": "מתחיל ב-",
|
|
104
|
+
"ENDS_WITH": "מסתיים ב-"
|
|
105
|
+
},
|
|
106
|
+
"OPERATOR_UNITS": {
|
|
107
|
+
"DAYS": "ימים",
|
|
108
|
+
"WEEKS": "שבועות",
|
|
109
|
+
"MONTHS": "חודשים",
|
|
110
|
+
"YEARS": "שנים"
|
|
111
|
+
}
|
|
112
|
+
},
|
|
40
113
|
"ACTIONS": {
|
|
41
|
-
"CONTINUE": "המשך",
|
|
42
|
-
"DELETE": "מחק",
|
|
43
114
|
"APPLY": "החל",
|
|
44
115
|
"CANCEL": "בטל",
|
|
45
116
|
"CLEAR": "נקה",
|
|
46
117
|
"CLEAR_ALL": "נקה הכל",
|
|
47
118
|
"CLOSE": "סגירה",
|
|
119
|
+
"CONTINUE": "המשך",
|
|
48
120
|
"CREATE_NEW": "צור חדש",
|
|
121
|
+
"DELETE": "מחק",
|
|
49
122
|
"DONE": "אישור",
|
|
50
123
|
"OK": "אישור",
|
|
51
|
-
"
|
|
124
|
+
"REMOVE": "הסרה",
|
|
125
|
+
"SAVE": "שמירה",
|
|
126
|
+
"IMPORT": "ייבוא"
|
|
52
127
|
},
|
|
53
128
|
"LIST": {
|
|
54
129
|
"ALL": "הכל",
|
|
55
130
|
"NONE": "ללא",
|
|
131
|
+
"PAGER_PREVIOUS": "קודם",
|
|
132
|
+
"PAGER_NEXT": "הבא",
|
|
133
|
+
"PAGER_OUT_OF": "מתוך",
|
|
134
|
+
"PAGER_PAGE": "עמוד",
|
|
56
135
|
"SELECT": "בחר",
|
|
57
136
|
"SELECTED": "נבחרו",
|
|
137
|
+
"SORT_BY": "מיין לפי",
|
|
58
138
|
"SORT_ASC": "סדר עולה",
|
|
59
|
-
"SORT_DESC": "סדר יורד"
|
|
139
|
+
"SORT_DESC": "סדר יורד",
|
|
140
|
+
"TOTAL_RESULTS": "<span class='bold number'>{{ totalRows }}{{ unknownCount }}</span> תוצאות",
|
|
141
|
+
"TOTAL_RESULT": "<span class='bold number'>{{ totalRows }}</span> תוצאה",
|
|
142
|
+
"TOTAL_RESULTS_OUT_OF": "<span class='bold number'>{{ xRows }}</span> מתוך <span class='bold number'>{{ totalRows }}</span> תוצאות",
|
|
143
|
+
"TOTAL_RESULT_OUT_OF_RESULT": "<span class='bold number'>{{ xRows }}</span> מתוך <span class='bold number'>{{ totalRows }}</span> תוצאה",
|
|
144
|
+
"TOTAL_OF": "סהכ: ",
|
|
145
|
+
"NO_DATA_FOUND": "לא נמצאו תוצאות.",
|
|
146
|
+
"NO_DATA_FOUND_SUGGESTIONS_TITLE": "יש לנו כמה הצעות:",
|
|
147
|
+
"NO_DATA_FOUND_SUGGESTIONS_LIST": "<li>וודא שכל המילים מאויתים נכון</li><li>נסה מילות חיפוש שונות.</li><li>נסה מילות חיפוש יותר כלליות.</li>"
|
|
60
148
|
},
|
|
61
149
|
"MESSAGES": {
|
|
62
150
|
"TITLE_NOTICE": "הודעה",
|
|
@@ -71,9 +159,22 @@
|
|
|
71
159
|
"ERROR_MAX_QUANTITY_LIMIT": "כמות מרבית",
|
|
72
160
|
"ERROR_MIN_QUANTITY_LIMIT": "כמות מינימלית",
|
|
73
161
|
"ERROR_RANGE_IS_NOT_VALID": "הערך צריך להיות בין {{min}} ל-{{max}}",
|
|
162
|
+
"ERROR_INVALID_PATTERN": "תו לא חוקי",
|
|
74
163
|
"INFO_LOADING_FILE": "טוען נתונים",
|
|
75
164
|
"INFO_MISSING_FILE": "קובץ חסר",
|
|
76
165
|
"INFO_MISSING_IMAGE": "תמונה חסרה",
|
|
77
166
|
"INFO_MISSING_SIGNATURE": "חתימה חסרה"
|
|
167
|
+
},
|
|
168
|
+
"DATE_AGO": {
|
|
169
|
+
"JUST_NOW": "זה עתה",
|
|
170
|
+
"SECOND": "שניה",
|
|
171
|
+
"MINUTE": "דקה",
|
|
172
|
+
"HOUR": "שעה",
|
|
173
|
+
"DAY": "יום",
|
|
174
|
+
"WEEK": "שבוע",
|
|
175
|
+
"MONTH": "חודש",
|
|
176
|
+
"YEAR": "שנה",
|
|
177
|
+
"SINGULAR": " לפני",
|
|
178
|
+
"PLURAL": "לפני"
|
|
78
179
|
}
|
|
79
180
|
}
|
|
@@ -1,15 +1,18 @@
|
|
|
1
1
|
{
|
|
2
2
|
"COLOR": {
|
|
3
3
|
"AA_COMPLIENT": "Conforme a AA",
|
|
4
|
-
"ADD_VALUE_HERE": "
|
|
5
|
-
"CHANGE_HUE": "
|
|
6
|
-
"CHANGE_SATURATION": "
|
|
7
|
-
"CHANGE_LIGHTNESS": "
|
|
8
|
-
"DIALOG_TITLE": "
|
|
4
|
+
"ADD_VALUE_HERE": "Oppure aggiungi (hsl, reg, hex)",
|
|
5
|
+
"CHANGE_HUE": "Cambia tonalità",
|
|
6
|
+
"CHANGE_SATURATION": "Cambia saturazione",
|
|
7
|
+
"CHANGE_LIGHTNESS": "Cambia luminosità",
|
|
8
|
+
"DIALOG_TITLE": "Selettore colore"
|
|
9
9
|
},
|
|
10
10
|
"CHECKBOX": {
|
|
11
|
-
"TRUE": "
|
|
12
|
-
"FALSE": "
|
|
11
|
+
"TRUE": "Vero",
|
|
12
|
+
"FALSE": "Falso"
|
|
13
|
+
},
|
|
14
|
+
"CHIPS": {
|
|
15
|
+
"ADD_CHIP": "Aggiungi chip"
|
|
13
16
|
},
|
|
14
17
|
"IMAGE": {
|
|
15
18
|
"NO_IMAGE": "Nessuna immagine",
|
|
@@ -26,37 +29,122 @@
|
|
|
26
29
|
"INTERNAL_PAGE": {
|
|
27
30
|
"CLICK_TO_ORDER": "Cliccare per ordinare"
|
|
28
31
|
},
|
|
32
|
+
"PROFILE_DATA_VIEWS_LIST": {
|
|
33
|
+
"ADD_PROFILE": "Aggiungi profilo",
|
|
34
|
+
"SELECT_PROFILE_DIALOG_TITLE": "Seleziona profilo",
|
|
35
|
+
"SELECT_PROFILE": "Seleziona un profilo",
|
|
36
|
+
"IMPORT_PROFILE_DIALOG_TITLE": "Importa in {{ profileTitle }}",
|
|
37
|
+
"IMPORT_FROM_PROFILE": "Importa da",
|
|
38
|
+
"IMPORT_FROM_PROFILE_DESC": "È possibile selezionare un profilo per copiarne la configurazione nel profilo aggiunto. Lasciare questa opzione vuota per una configurazione della gerarchia del profilo predefinita",
|
|
39
|
+
"DEFAULT_PROFILE": "(Profilo base)",
|
|
40
|
+
"NO_FIELDS_ASSIGNED": "Nessun campo è stato assegnato"
|
|
41
|
+
},
|
|
29
42
|
"RICH_TEXTAREA": {
|
|
30
43
|
"HINT": "Inserire Testo"
|
|
31
44
|
},
|
|
45
|
+
"SEARCH": {
|
|
46
|
+
"HINT": "Ricerca",
|
|
47
|
+
"MORE_RESULTS": "Più Risultati"
|
|
48
|
+
},
|
|
32
49
|
"SELECT": {
|
|
33
50
|
"HINT": "Seleziona un'opzione"
|
|
34
51
|
},
|
|
35
52
|
"SIGNATURE": {
|
|
36
|
-
"HINT": "
|
|
53
|
+
"HINT": "Firma",
|
|
37
54
|
"TAP_TO_SIGN": "Fare tap sullo schermo per immettere la firma",
|
|
38
55
|
"DIALOG_TITLE": "Inserire la firma qui"
|
|
39
56
|
},
|
|
57
|
+
"SMART_FILTERS": {
|
|
58
|
+
"TITLE": "Filtri intelligenti",
|
|
59
|
+
"IS_ON": "Attivo",
|
|
60
|
+
"CHOOSE_TIME": "Scegli l'orario",
|
|
61
|
+
"AMOUNT": "Importo",
|
|
62
|
+
"VALUE": "Valore",
|
|
63
|
+
"TIME_UNIT": "Unità di tempo",
|
|
64
|
+
"START_DATE": "Data di inizio",
|
|
65
|
+
"END_DATE": "Data di scadenza",
|
|
66
|
+
"CHOOSE_DATE": "Scegli una data",
|
|
67
|
+
"TYPE": "Tipologia",
|
|
68
|
+
"MIN": "Min",
|
|
69
|
+
"MAX": "Max",
|
|
70
|
+
"SEARCH": "Ricerca",
|
|
71
|
+
"NO_SEARCH_RESULTS": "Nessun risultato trovato",
|
|
72
|
+
"NO_OPTIONS": "Nessuna opzione",
|
|
73
|
+
"OPERATORS": {
|
|
74
|
+
"IN_THE_LAST": "Nello scorso",
|
|
75
|
+
"IN_THE_LAST_CALENDAR": "Nello scorso (calendario)",
|
|
76
|
+
"IN_THE_LAST_VARIABLE": "Nello scorso (variabile)",
|
|
77
|
+
"TODAY": "Oggi",
|
|
78
|
+
"THIS_WEEK": "Questa settimana",
|
|
79
|
+
"THIS_MONTH": "Questo mese",
|
|
80
|
+
"DATE_RANGE": "Tra",
|
|
81
|
+
"DATE_RANGE_VARIABLE": "Tra (variabile)",
|
|
82
|
+
"DUE_IN": "Previsto entro",
|
|
83
|
+
"ON": "Acceso",
|
|
84
|
+
"NOT_IN_THE_LAST": "Non nello scorso",
|
|
85
|
+
"NOT_IN_THE_LAST_CALENDAR": "Non nello scorso (calendario)",
|
|
86
|
+
"NOT_DUE_IN": "Non previsto entro",
|
|
87
|
+
"IS_EMPTY": "È vuoto",
|
|
88
|
+
"IS_NOT_EMPTY": "Non è vuoto",
|
|
89
|
+
"NOT_EQUAL": "Non uguale",
|
|
90
|
+
"NOT_EQUAL_TO_VARIABLE": "Non uguale a (variabile)",
|
|
91
|
+
"LESS_THEN_OR_EQUAL": "Minore o uguale a",
|
|
92
|
+
"LESS_THEN": "Inferiore di",
|
|
93
|
+
"LESS_THAN_VARIABLE": "Minore a (variabile)",
|
|
94
|
+
"EQUAL": "Uguale",
|
|
95
|
+
"EQUAL_TO_VARIABLE": "Uguale a (variabile)",
|
|
96
|
+
"IN_VARIABLE": "In (variabile)",
|
|
97
|
+
"GREATER_THEN": "Maggiore di",
|
|
98
|
+
"GREATER_THEN_OR_EQUAL": "Maggiore o uguale a",
|
|
99
|
+
"GREATER_THAN_VARIABLE": "Maggiore a (variabile)",
|
|
100
|
+
"NUMBER_RANGE": "Tra",
|
|
101
|
+
"CONTAINS": "Contiene",
|
|
102
|
+
"IN": "In",
|
|
103
|
+
"BEGINS_WITH": "Inizia con",
|
|
104
|
+
"ENDS_WITH": "Finisce con"
|
|
105
|
+
},
|
|
106
|
+
"OPERATOR_UNITS": {
|
|
107
|
+
"DAYS": "giorni",
|
|
108
|
+
"WEEKS": "Settimane",
|
|
109
|
+
"MONTHS": "Mesi",
|
|
110
|
+
"YEARS": "Anni"
|
|
111
|
+
}
|
|
112
|
+
},
|
|
40
113
|
"ACTIONS": {
|
|
41
|
-
"CONTINUE": "Continue",
|
|
42
|
-
"DELETE": "Delete",
|
|
43
114
|
"APPLY": "Applica",
|
|
44
115
|
"CANCEL": "Annulla",
|
|
45
116
|
"CLEAR": "Elimina",
|
|
46
117
|
"CLEAR_ALL": "Elimina tutto",
|
|
47
118
|
"CLOSE": "Chiudi",
|
|
119
|
+
"CONTINUE": "Continua",
|
|
48
120
|
"CREATE_NEW": "Crea nuovo",
|
|
121
|
+
"DELETE": "Eliminare",
|
|
49
122
|
"DONE": "Fatto",
|
|
50
|
-
"OK": "
|
|
51
|
-
"
|
|
123
|
+
"OK": "OK",
|
|
124
|
+
"REMOVE": "Eliminare",
|
|
125
|
+
"SAVE": "Salvare",
|
|
126
|
+
"IMPORT": "Importa"
|
|
52
127
|
},
|
|
53
128
|
"LIST": {
|
|
54
129
|
"ALL": "Tutto",
|
|
55
130
|
"NONE": "Niente",
|
|
131
|
+
"PAGER_PREVIOUS": "Precedente",
|
|
132
|
+
"PAGER_NEXT": "Avanti",
|
|
133
|
+
"PAGER_OUT_OF": "Di",
|
|
134
|
+
"PAGER_PAGE": "Pagina",
|
|
56
135
|
"SELECT": "Selezionare",
|
|
57
136
|
"SELECTED": "selezionato",
|
|
137
|
+
"SORT_BY": "Ordina per",
|
|
58
138
|
"SORT_ASC": "Crescente",
|
|
59
|
-
"SORT_DESC": "Decrescente"
|
|
139
|
+
"SORT_DESC": "Decrescente",
|
|
140
|
+
"TOTAL_RESULTS": "<span class='bold number'>{{ totalRows }}{{ unknownCount }}</span> risultati",
|
|
141
|
+
"TOTAL_RESULT": "<span class='bold number'>{{ totalRows }}</span> risultato",
|
|
142
|
+
"TOTAL_RESULTS_OUT_OF": "<span class='bold number'>{{ xRows }}</span> of <span class='bold number'>{{ totalRows }}</span> risultati",
|
|
143
|
+
"TOTAL_RESULT_OUT_OF_RESULT": "<span class='bold number'>{{ xRows }}</span> de <span class='bold number'>{{ totalRows }}</span> risultato",
|
|
144
|
+
"TOTAL_OF": "Un totale di: ",
|
|
145
|
+
"NO_DATA_FOUND": "Nessun risultato trovato.",
|
|
146
|
+
"NO_DATA_FOUND_SUGGESTIONS_TITLE": "Alcuni suggerimenti:",
|
|
147
|
+
"NO_DATA_FOUND_SUGGESTIONS_LIST": "<li>Assicurati che tutte le parole siano scritte correttamente.</li><li>Prova parole chiave diverse.</li><li>Prova parole chiave più generiche.</li>"
|
|
60
148
|
},
|
|
61
149
|
"MESSAGES": {
|
|
62
150
|
"TITLE_NOTICE": "Avviso",
|
|
@@ -71,9 +159,22 @@
|
|
|
71
159
|
"ERROR_MAX_QUANTITY_LIMIT": "Quantità Max",
|
|
72
160
|
"ERROR_MIN_QUANTITY_LIMIT": "Quantità min",
|
|
73
161
|
"ERROR_RANGE_IS_NOT_VALID": "I valori dovrebbero essere compresi tra {{min}} e {{max}}",
|
|
162
|
+
"ERROR_INVALID_PATTERN": "Carattere non valido",
|
|
74
163
|
"INFO_LOADING_FILE": "Caricamento in corso",
|
|
75
164
|
"INFO_MISSING_FILE": "File Mancante",
|
|
76
165
|
"INFO_MISSING_IMAGE": "Immagine Mancante",
|
|
77
166
|
"INFO_MISSING_SIGNATURE": "Firma dimenticata"
|
|
167
|
+
},
|
|
168
|
+
"DATE_AGO": {
|
|
169
|
+
"JUST_NOW": "In questo momento",
|
|
170
|
+
"SECOND": "secondo",
|
|
171
|
+
"MINUTE": "minuto",
|
|
172
|
+
"HOUR": "ora",
|
|
173
|
+
"DAY": "giorno",
|
|
174
|
+
"WEEK": "settimana",
|
|
175
|
+
"MONTH": "mese",
|
|
176
|
+
"YEAR": "anno",
|
|
177
|
+
"SINGULAR": " fa",
|
|
178
|
+
"PLURAL": "fa"
|
|
78
179
|
}
|
|
79
180
|
}
|
|
@@ -11,6 +11,9 @@
|
|
|
11
11
|
"TRUE": "True",
|
|
12
12
|
"FALSE": "False"
|
|
13
13
|
},
|
|
14
|
+
"CHIPS": {
|
|
15
|
+
"ADD_CHIP": "クリップを追加"
|
|
16
|
+
},
|
|
14
17
|
"IMAGE": {
|
|
15
18
|
"NO_IMAGE": "画像なし",
|
|
16
19
|
"CLICK_TO_ENLARGE": "クリックして拡大"
|
|
@@ -26,9 +29,23 @@
|
|
|
26
29
|
"INTERNAL_PAGE": {
|
|
27
30
|
"CLICK_TO_ORDER": "クリックして注文"
|
|
28
31
|
},
|
|
32
|
+
"PROFILE_DATA_VIEWS_LIST": {
|
|
33
|
+
"ADD_PROFILE": "プロファイルを追加",
|
|
34
|
+
"SELECT_PROFILE_DIALOG_TITLE": "プロファイルを選択",
|
|
35
|
+
"SELECT_PROFILE": "プロファイルを選択",
|
|
36
|
+
"IMPORT_PROFILE_DIALOG_TITLE": "{{ profileTitle }}にインポート",
|
|
37
|
+
"IMPORT_FROM_PROFILE": "インポート - インポート元:",
|
|
38
|
+
"IMPORT_FROM_PROFILE_DESC": "プロファイルを選択し、その構成を追加したプロファイルにコピーできます。デフォルトのプロファイルの階層構造に対してこのオプションは使用しないでください。",
|
|
39
|
+
"DEFAULT_PROFILE": "(デフォルトのプロファイル)",
|
|
40
|
+
"NO_FIELDS_ASSIGNED": "フィールドが割り当てられていません"
|
|
41
|
+
},
|
|
29
42
|
"RICH_TEXTAREA": {
|
|
30
43
|
"HINT": "テキストを入力"
|
|
31
44
|
},
|
|
45
|
+
"SEARCH": {
|
|
46
|
+
"HINT": "検索",
|
|
47
|
+
"MORE_RESULTS": "さらに結果を表示"
|
|
48
|
+
},
|
|
32
49
|
"SELECT": {
|
|
33
50
|
"HINT": "オプションを選択してください"
|
|
34
51
|
},
|
|
@@ -37,26 +54,97 @@
|
|
|
37
54
|
"TAP_TO_SIGN": "タップして署名",
|
|
38
55
|
"DIALOG_TITLE": "ここに署名を追加"
|
|
39
56
|
},
|
|
57
|
+
"SMART_FILTERS": {
|
|
58
|
+
"TITLE": "スマートフィルター",
|
|
59
|
+
"IS_ON": "オンに設定されています",
|
|
60
|
+
"CHOOSE_TIME": "時間を選択",
|
|
61
|
+
"AMOUNT": "金額",
|
|
62
|
+
"VALUE": "値",
|
|
63
|
+
"TIME_UNIT": "時間単位",
|
|
64
|
+
"START_DATE": "開始日",
|
|
65
|
+
"END_DATE": "終了日",
|
|
66
|
+
"CHOOSE_DATE": "日付を選択",
|
|
67
|
+
"TYPE": "タイプ",
|
|
68
|
+
"MIN": "最小",
|
|
69
|
+
"MAX": "最大",
|
|
70
|
+
"SEARCH": "検索",
|
|
71
|
+
"NO_SEARCH_RESULTS": "結果が見つかりません",
|
|
72
|
+
"NO_OPTIONS": "オプションがありません",
|
|
73
|
+
"OPERATORS": {
|
|
74
|
+
"IN_THE_LAST": "過去",
|
|
75
|
+
"IN_THE_LAST_CALENDAR": "過去(カレンダー)",
|
|
76
|
+
"IN_THE_LAST_VARIABLE": "過去(変数)",
|
|
77
|
+
"TODAY": "今日",
|
|
78
|
+
"THIS_WEEK": "今週",
|
|
79
|
+
"THIS_MONTH": "今月",
|
|
80
|
+
"DATE_RANGE": "期間",
|
|
81
|
+
"DATE_RANGE_VARIABLE": "期間(変数)",
|
|
82
|
+
"DUE_IN": "期日:",
|
|
83
|
+
"ON": "オン",
|
|
84
|
+
"NOT_IN_THE_LAST": "以下に該当しない - 過去:",
|
|
85
|
+
"NOT_IN_THE_LAST_CALENDAR": "以下に該当しない - 過去(カレンダー)",
|
|
86
|
+
"NOT_DUE_IN": "以下に該当しない - 期日まで残り:",
|
|
87
|
+
"IS_EMPTY": "空白",
|
|
88
|
+
"IS_NOT_EMPTY": "空白でない",
|
|
89
|
+
"NOT_EQUAL": "次の値と等しくない",
|
|
90
|
+
"NOT_EQUAL_TO_VARIABLE": "(変数)と等しくない",
|
|
91
|
+
"LESS_THEN_OR_EQUAL": "次の値以下:",
|
|
92
|
+
"LESS_THEN": "次の値より小さい:",
|
|
93
|
+
"LESS_THAN_VARIABLE": "(変数)より小さい",
|
|
94
|
+
"EQUAL": "次の値と等しい:",
|
|
95
|
+
"EQUAL_TO_VARIABLE": "(変数)と等しい",
|
|
96
|
+
"IN_VARIABLE": "(変数)",
|
|
97
|
+
"GREATER_THEN": "次の値より大きい:",
|
|
98
|
+
"GREATER_THEN_OR_EQUAL": "次の値以上:",
|
|
99
|
+
"GREATER_THAN_VARIABLE": "(変数)より大きい",
|
|
100
|
+
"NUMBER_RANGE": "間",
|
|
101
|
+
"CONTAINS": "対象を含む - 対象:",
|
|
102
|
+
"IN": "In",
|
|
103
|
+
"BEGINS_WITH": "始まりが",
|
|
104
|
+
"ENDS_WITH": "終わりが"
|
|
105
|
+
},
|
|
106
|
+
"OPERATOR_UNITS": {
|
|
107
|
+
"DAYS": "日",
|
|
108
|
+
"WEEKS": "週",
|
|
109
|
+
"MONTHS": "月",
|
|
110
|
+
"YEARS": "年"
|
|
111
|
+
}
|
|
112
|
+
},
|
|
40
113
|
"ACTIONS": {
|
|
41
|
-
"CONTINUE": "Continue",
|
|
42
|
-
"DELETE": "Delete",
|
|
43
114
|
"APPLY": "適用",
|
|
44
115
|
"CANCEL": "キャンセル",
|
|
45
116
|
"CLEAR": "クリア",
|
|
46
117
|
"CLEAR_ALL": "すべてクリア",
|
|
47
118
|
"CLOSE": "閉じる",
|
|
119
|
+
"CONTINUE": "Continue",
|
|
48
120
|
"CREATE_NEW": "新規作成",
|
|
121
|
+
"DELETE": "Delete",
|
|
49
122
|
"DONE": "終了",
|
|
50
123
|
"OK": "Ok",
|
|
51
|
-
"
|
|
124
|
+
"REMOVE": "削除",
|
|
125
|
+
"SAVE": "保存",
|
|
126
|
+
"IMPORT": "インポート"
|
|
52
127
|
},
|
|
53
128
|
"LIST": {
|
|
54
129
|
"ALL": "すべて",
|
|
55
130
|
"NONE": "なし",
|
|
131
|
+
"PAGER_PREVIOUS": "前へ",
|
|
132
|
+
"PAGER_NEXT": "次へ",
|
|
133
|
+
"PAGER_OUT_OF": "次の範囲外:",
|
|
134
|
+
"PAGER_PAGE": "ページ",
|
|
56
135
|
"SELECT": "選択",
|
|
57
136
|
"SELECTED": "選択済み",
|
|
137
|
+
"SORT_BY": "並べ替え条件:",
|
|
58
138
|
"SORT_ASC": "昇順",
|
|
59
|
-
"SORT_DESC": "降順"
|
|
139
|
+
"SORT_DESC": "降順",
|
|
140
|
+
"TOTAL_RESULTS": "結果:<span class='bold number'>{{ totalRows }}{{ unknownCount }}</span>件",
|
|
141
|
+
"TOTAL_RESULT": "結果:<span class='bold number'>{{ totalRows }}</span>件",
|
|
142
|
+
"TOTAL_RESULTS_OUT_OF": "結果<span class='bold number'>{{ xRows }}</span>/<span class='bold number'>{{ totalRows }}</span>件",
|
|
143
|
+
"TOTAL_RESULT_OUT_OF_RESULT": "結果:<span class='bold number'>{{ xRows }}</span>/<span class='bold number'>{{ totalRows }}</span>件",
|
|
144
|
+
"TOTAL_OF": "合計:",
|
|
145
|
+
"NO_DATA_FOUND": "結果が見つかりませんでした。",
|
|
146
|
+
"NO_DATA_FOUND_SUGGESTIONS_TITLE": "いくつか提案があります:",
|
|
147
|
+
"NO_DATA_FOUND_SUGGESTIONS_LIST": "<li>すべてのキーワードが正確に入力されていることを確認してください。</li><li>別のキーワードをお試しください。</li><li>より一般的なキーワードでお試しください。</li>"
|
|
60
148
|
},
|
|
61
149
|
"MESSAGES": {
|
|
62
150
|
"TITLE_NOTICE": "通知",
|
|
@@ -71,9 +159,22 @@
|
|
|
71
159
|
"ERROR_MAX_QUANTITY_LIMIT": "最大数量",
|
|
72
160
|
"ERROR_MIN_QUANTITY_LIMIT": "最小数量",
|
|
73
161
|
"ERROR_RANGE_IS_NOT_VALID": "値は {{min}} ~ {{max}} でなければなりません",
|
|
162
|
+
"ERROR_INVALID_PATTERN": "文字が無効です",
|
|
74
163
|
"INFO_LOADING_FILE": "読み込み中",
|
|
75
164
|
"INFO_MISSING_FILE": "ファイルがありません",
|
|
76
165
|
"INFO_MISSING_IMAGE": "画像がありません",
|
|
77
166
|
"INFO_MISSING_SIGNATURE": "署名がありません"
|
|
167
|
+
},
|
|
168
|
+
"DATE_AGO": {
|
|
169
|
+
"JUST_NOW": "たった今",
|
|
170
|
+
"SECOND": "秒",
|
|
171
|
+
"MINUTE": "分",
|
|
172
|
+
"HOUR": "時間",
|
|
173
|
+
"DAY": "日",
|
|
174
|
+
"WEEK": "週",
|
|
175
|
+
"MONTH": "月",
|
|
176
|
+
"YEAR": "年",
|
|
177
|
+
"SINGULAR": "前",
|
|
178
|
+
"PLURAL": "前"
|
|
78
179
|
}
|
|
79
180
|
}
|
|
@@ -11,6 +11,9 @@
|
|
|
11
11
|
"TRUE": "True",
|
|
12
12
|
"FALSE": "False"
|
|
13
13
|
},
|
|
14
|
+
"CHIPS": {
|
|
15
|
+
"ADD_CHIP": "Add Chip"
|
|
16
|
+
},
|
|
14
17
|
"IMAGE": {
|
|
15
18
|
"NO_IMAGE": "Brak obrazu",
|
|
16
19
|
"CLICK_TO_ENLARGE": "Kliknij, aby powiększyć"
|
|
@@ -26,9 +29,23 @@
|
|
|
26
29
|
"INTERNAL_PAGE": {
|
|
27
30
|
"CLICK_TO_ORDER": "Kliknij, aby zamówić"
|
|
28
31
|
},
|
|
32
|
+
"PROFILE_DATA_VIEWS_LIST": {
|
|
33
|
+
"ADD_PROFILE": "Add profile",
|
|
34
|
+
"SELECT_PROFILE_DIALOG_TITLE": "Select profile",
|
|
35
|
+
"SELECT_PROFILE": "Select a profile",
|
|
36
|
+
"IMPORT_PROFILE_DIALOG_TITLE": "Import to {{ profileTitle }}",
|
|
37
|
+
"IMPORT_FROM_PROFILE": "Import from",
|
|
38
|
+
"IMPORT_FROM_PROFILE_DESC": "You can select a profile to copy its configuration to the added profile. Leave this option empty for a default profile hierarchy configuration",
|
|
39
|
+
"DEFAULT_PROFILE": "(Default profile)",
|
|
40
|
+
"NO_FIELDS_ASSIGNED": "No fields were assigned"
|
|
41
|
+
},
|
|
29
42
|
"RICH_TEXTAREA": {
|
|
30
43
|
"HINT": "Enter Text"
|
|
31
44
|
},
|
|
45
|
+
"SEARCH": {
|
|
46
|
+
"HINT": "Search",
|
|
47
|
+
"MORE_RESULTS": "More Results"
|
|
48
|
+
},
|
|
32
49
|
"SELECT": {
|
|
33
50
|
"HINT": "Please select an option"
|
|
34
51
|
},
|
|
@@ -37,26 +54,97 @@
|
|
|
37
54
|
"TAP_TO_SIGN": "Tapnij, aby podpisać",
|
|
38
55
|
"DIALOG_TITLE": "Add signature here"
|
|
39
56
|
},
|
|
57
|
+
"SMART_FILTERS": {
|
|
58
|
+
"TITLE": "Smart filters",
|
|
59
|
+
"IS_ON": "Is on",
|
|
60
|
+
"CHOOSE_TIME": "Choose time",
|
|
61
|
+
"AMOUNT": "Amount",
|
|
62
|
+
"VALUE": "Value",
|
|
63
|
+
"TIME_UNIT": "Time unit",
|
|
64
|
+
"START_DATE": "Start date",
|
|
65
|
+
"END_DATE": "End date",
|
|
66
|
+
"CHOOSE_DATE": "Choose a date",
|
|
67
|
+
"TYPE": "Type",
|
|
68
|
+
"MIN": "Min",
|
|
69
|
+
"MAX": "Max",
|
|
70
|
+
"SEARCH": "Search",
|
|
71
|
+
"NO_SEARCH_RESULTS": "No results found",
|
|
72
|
+
"NO_OPTIONS": "No options",
|
|
73
|
+
"OPERATORS": {
|
|
74
|
+
"IN_THE_LAST": "In the last",
|
|
75
|
+
"IN_THE_LAST_CALENDAR": "In the last (calendar)",
|
|
76
|
+
"IN_THE_LAST_VARIABLE": "In the last (variable)",
|
|
77
|
+
"TODAY": "Today",
|
|
78
|
+
"THIS_WEEK": "This week",
|
|
79
|
+
"THIS_MONTH": "This month",
|
|
80
|
+
"DATE_RANGE": "Between",
|
|
81
|
+
"DATE_RANGE_VARIABLE": "Between (variable)",
|
|
82
|
+
"DUE_IN": "Due in",
|
|
83
|
+
"ON": "On",
|
|
84
|
+
"NOT_IN_THE_LAST": "Not in the last",
|
|
85
|
+
"NOT_IN_THE_LAST_CALENDAR": "Not in the last (calendar)",
|
|
86
|
+
"NOT_DUE_IN": "Not due in",
|
|
87
|
+
"IS_EMPTY": "Is empty",
|
|
88
|
+
"IS_NOT_EMPTY": "Is not empty",
|
|
89
|
+
"NOT_EQUAL": "Not equal",
|
|
90
|
+
"NOT_EQUAL_TO_VARIABLE": "Not equal to (variable)",
|
|
91
|
+
"LESS_THEN_OR_EQUAL": "Less than or equal to",
|
|
92
|
+
"LESS_THEN": "Less than",
|
|
93
|
+
"LESS_THAN_VARIABLE": "Less than (variable)",
|
|
94
|
+
"EQUAL": "Equal",
|
|
95
|
+
"EQUAL_TO_VARIABLE": "Equal to (variable)",
|
|
96
|
+
"IN_VARIABLE": "In (variable)",
|
|
97
|
+
"GREATER_THEN": "Greater than",
|
|
98
|
+
"GREATER_THEN_OR_EQUAL": "Greater than or equal to",
|
|
99
|
+
"GREATER_THAN_VARIABLE": "Greater than (variable)",
|
|
100
|
+
"NUMBER_RANGE": "Between",
|
|
101
|
+
"CONTAINS": "Contains",
|
|
102
|
+
"IN": "In",
|
|
103
|
+
"BEGINS_WITH": "Begins with",
|
|
104
|
+
"ENDS_WITH": "Ends with"
|
|
105
|
+
},
|
|
106
|
+
"OPERATOR_UNITS": {
|
|
107
|
+
"DAYS": "Days",
|
|
108
|
+
"WEEKS": "Weeks",
|
|
109
|
+
"MONTHS": "Months",
|
|
110
|
+
"YEARS": "Years"
|
|
111
|
+
}
|
|
112
|
+
},
|
|
40
113
|
"ACTIONS": {
|
|
41
|
-
"CONTINUE": "Continue",
|
|
42
|
-
"DELETE": "Delete",
|
|
43
114
|
"APPLY": "Zastosuj",
|
|
44
115
|
"CANCEL": "Anuluj",
|
|
45
116
|
"CLEAR": "Wyczyść",
|
|
46
117
|
"CLEAR_ALL": "Wyczyść Wszystko",
|
|
47
118
|
"CLOSE": "Zamknij",
|
|
119
|
+
"CONTINUE": "Continue",
|
|
48
120
|
"CREATE_NEW": "Utwórz nowy",
|
|
121
|
+
"DELETE": "Delete",
|
|
49
122
|
"DONE": "Gotowe",
|
|
50
123
|
"OK": "Ok",
|
|
51
|
-
"
|
|
124
|
+
"REMOVE": "Remove",
|
|
125
|
+
"SAVE": "Zapisz",
|
|
126
|
+
"IMPORT": "Import"
|
|
52
127
|
},
|
|
53
128
|
"LIST": {
|
|
54
129
|
"ALL": "Wszystko",
|
|
55
130
|
"NONE": "Żaden",
|
|
131
|
+
"PAGER_PREVIOUS": "Previous",
|
|
132
|
+
"PAGER_NEXT": "Next",
|
|
133
|
+
"PAGER_OUT_OF": "Out of",
|
|
134
|
+
"PAGER_PAGE": "Page",
|
|
56
135
|
"SELECT": "Wybierz",
|
|
57
136
|
"SELECTED": "wybrane",
|
|
137
|
+
"SORT_BY": "Sort by",
|
|
58
138
|
"SORT_ASC": "Rosnąco",
|
|
59
|
-
"SORT_DESC": "Malejąco"
|
|
139
|
+
"SORT_DESC": "Malejąco",
|
|
140
|
+
"TOTAL_RESULTS": "<span class='bold number'>{{ totalRows }}{{ unknownCount }}</span> results",
|
|
141
|
+
"TOTAL_RESULT": "<span class='bold number'>{{ totalRows }}</span> result",
|
|
142
|
+
"TOTAL_RESULTS_OUT_OF": "<span class='bold number'>{{ xRows }}</span> of <span class='bold number'>{{ totalRows }}</span> results",
|
|
143
|
+
"TOTAL_RESULT_OUT_OF_RESULT": "<span class='bold number'>{{ xRows }}</span> of <span class='bold number'>{{ totalRows }}</span> result",
|
|
144
|
+
"TOTAL_OF": "At total of: ",
|
|
145
|
+
"NO_DATA_FOUND": "No results were found.",
|
|
146
|
+
"NO_DATA_FOUND_SUGGESTIONS_TITLE": "We have some suggestions:",
|
|
147
|
+
"NO_DATA_FOUND_SUGGESTIONS_LIST": "<li>Make sure that all words are spelled correctly.</li><li>Try different keywords.</li><li>Try more general keywords.</li>"
|
|
60
148
|
},
|
|
61
149
|
"MESSAGES": {
|
|
62
150
|
"TITLE_NOTICE": "Powiadom",
|
|
@@ -71,9 +159,22 @@
|
|
|
71
159
|
"ERROR_MAX_QUANTITY_LIMIT": "Max ilość",
|
|
72
160
|
"ERROR_MIN_QUANTITY_LIMIT": "Ilość min",
|
|
73
161
|
"ERROR_RANGE_IS_NOT_VALID": "Value should be between {{min}} and {{max}}",
|
|
162
|
+
"ERROR_INVALID_PATTERN": "Invalid Character",
|
|
74
163
|
"INFO_LOADING_FILE": "Wgrywanie",
|
|
75
164
|
"INFO_MISSING_FILE": "Missing file",
|
|
76
165
|
"INFO_MISSING_IMAGE": "Missing image",
|
|
77
166
|
"INFO_MISSING_SIGNATURE": "Signature missing"
|
|
167
|
+
},
|
|
168
|
+
"DATE_AGO": {
|
|
169
|
+
"JUST_NOW": "Just now",
|
|
170
|
+
"SECOND": "second",
|
|
171
|
+
"MINUTE": "minute",
|
|
172
|
+
"HOUR": "hour",
|
|
173
|
+
"DAY": "day",
|
|
174
|
+
"WEEK": "week",
|
|
175
|
+
"MONTH": "month",
|
|
176
|
+
"YEAR": "year",
|
|
177
|
+
"SINGULAR": " ago",
|
|
178
|
+
"PLURAL": "'s ago"
|
|
78
179
|
}
|
|
79
180
|
}
|