@openui5/sap.ui.webc.fiori 1.94.0 → 1.97.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.reuse/dep5 +12 -12
- package/THIRDPARTY.txt +21 -17
- package/package.json +4 -4
- package/src/sap/ui/webc/fiori/.library +1 -1
- package/src/sap/ui/webc/fiori/Bar.js +18 -10
- package/src/sap/ui/webc/fiori/BarcodeScannerDialog.js +104 -0
- package/src/sap/ui/webc/fiori/FilterItem.js +71 -0
- package/src/sap/ui/webc/fiori/FilterItemOption.js +68 -0
- package/src/sap/ui/webc/fiori/FlexibleColumnLayout.js +2 -2
- package/src/sap/ui/webc/fiori/IllustratedMessage.js +114 -0
- package/src/sap/ui/webc/fiori/NotificationAction.js +1 -1
- package/src/sap/ui/webc/fiori/NotificationListGroupItem.js +26 -14
- package/src/sap/ui/webc/fiori/NotificationListItem.js +31 -20
- package/src/sap/ui/webc/fiori/Page.js +1 -1
- package/src/sap/ui/webc/fiori/ProductSwitch.js +1 -1
- package/src/sap/ui/webc/fiori/ProductSwitchItem.js +4 -2
- package/src/sap/ui/webc/fiori/ShellBar.js +1 -1
- package/src/sap/ui/webc/fiori/ShellBarItem.js +1 -1
- package/src/sap/ui/webc/fiori/SideNavigation.js +1 -1
- package/src/sap/ui/webc/fiori/SideNavigationItem.js +1 -1
- package/src/sap/ui/webc/fiori/SideNavigationSubItem.js +1 -1
- package/src/sap/ui/webc/fiori/SortItem.js +68 -0
- package/src/sap/ui/webc/fiori/Timeline.js +19 -1
- package/src/sap/ui/webc/fiori/TimelineItem.js +9 -7
- package/src/sap/ui/webc/fiori/UploadCollection.js +13 -3
- package/src/sap/ui/webc/fiori/UploadCollectionItem.js +24 -16
- package/src/sap/ui/webc/fiori/ViewSettingsDialog.js +132 -0
- package/src/sap/ui/webc/fiori/Wizard.js +17 -9
- package/src/sap/ui/webc/fiori/WizardStep.js +25 -11
- package/src/sap/ui/webc/fiori/library.js +264 -5
- package/src/sap/ui/webc/fiori/thirdparty/Bar.js +32 -2
- package/src/sap/ui/webc/fiori/thirdparty/BarcodeScannerDialog.js +18996 -0
- package/src/sap/ui/webc/fiori/thirdparty/FilterItem.js +45 -0
- package/src/sap/ui/webc/fiori/thirdparty/FilterItemOption.js +31 -0
- package/src/sap/ui/webc/fiori/thirdparty/FlexibleColumnLayout.js +16 -12
- package/src/sap/ui/webc/fiori/thirdparty/IllustratedMessage.js +147 -0
- package/src/sap/ui/webc/fiori/thirdparty/Interfaces.js +6 -0
- package/src/sap/ui/webc/fiori/thirdparty/NotificationListGroupItem.js +14 -17
- package/src/sap/ui/webc/fiori/thirdparty/NotificationListItem.js +33 -34
- package/src/sap/ui/webc/fiori/thirdparty/NotificationListItemBase.js +13 -9
- package/src/sap/ui/webc/fiori/thirdparty/Page.js +20 -1
- package/src/sap/ui/webc/fiori/thirdparty/ProductSwitch.js +6 -3
- package/src/sap/ui/webc/fiori/thirdparty/ProductSwitchItem.js +6 -0
- package/src/sap/ui/webc/fiori/thirdparty/ShellBar.js +52 -24
- package/src/sap/ui/webc/fiori/thirdparty/SideNavigation.js +2 -1
- package/src/sap/ui/webc/fiori/thirdparty/SideNavigationItem.js +6 -0
- package/src/sap/ui/webc/fiori/thirdparty/SideNavigationSubItem.js +6 -0
- package/src/sap/ui/webc/fiori/thirdparty/SortItem.js +31 -0
- package/src/sap/ui/webc/fiori/thirdparty/Timeline.js +47 -4
- package/src/sap/ui/webc/fiori/thirdparty/TimelineItem.js +29 -6
- package/src/sap/ui/webc/fiori/thirdparty/UploadCollection.js +16 -10
- package/src/sap/ui/webc/fiori/thirdparty/UploadCollectionItem.js +77 -79
- package/src/sap/ui/webc/fiori/thirdparty/ViewSettingsDialog.js +376 -0
- package/src/sap/ui/webc/fiori/thirdparty/Wizard.js +29 -16
- package/src/sap/ui/webc/fiori/thirdparty/WizardStep.js +2 -2
- package/src/sap/ui/webc/fiori/thirdparty/css/themes/Bar.css +1 -0
- package/src/sap/ui/webc/fiori/thirdparty/css/themes/BarcodeScannerDialog.css +1 -0
- package/src/sap/ui/webc/fiori/thirdparty/css/themes/FilterItem.css +1 -0
- package/src/sap/ui/webc/fiori/thirdparty/css/themes/FlexibleColumnLayout.css +1 -0
- package/src/sap/ui/webc/fiori/thirdparty/css/themes/IllustratedMessage.css +1 -0
- package/src/sap/ui/webc/fiori/thirdparty/css/themes/InvisibleTextStyles.css +1 -0
- package/src/sap/ui/webc/fiori/thirdparty/css/themes/NotifactionOverflowActionsPopover.css +1 -0
- package/src/sap/ui/webc/fiori/thirdparty/css/themes/NotificationListGroupItem.css +1 -0
- package/src/sap/ui/webc/fiori/thirdparty/css/themes/NotificationListItem.css +1 -0
- package/src/sap/ui/webc/fiori/thirdparty/css/themes/NotificationListItemBase.css +1 -0
- package/src/sap/ui/webc/fiori/thirdparty/css/themes/NotificationPrioIcon.css +1 -0
- package/src/sap/ui/webc/fiori/thirdparty/css/themes/Page.css +1 -0
- package/src/sap/ui/webc/fiori/thirdparty/css/themes/ProductSwitch.css +1 -0
- package/src/sap/ui/webc/fiori/thirdparty/css/themes/ProductSwitchItem.css +1 -0
- package/src/sap/ui/webc/fiori/thirdparty/css/themes/ShellBar.css +1 -0
- package/src/sap/ui/webc/fiori/thirdparty/css/themes/SideNavigation.css +1 -0
- package/src/sap/ui/webc/fiori/thirdparty/css/themes/Timeline.css +1 -0
- package/src/sap/ui/webc/fiori/thirdparty/css/themes/TimelineItem.css +1 -0
- package/src/sap/ui/webc/fiori/thirdparty/css/themes/UploadCollection.css +1 -0
- package/src/sap/ui/webc/fiori/thirdparty/css/themes/UploadCollectionItem.css +1 -0
- package/src/sap/ui/webc/fiori/thirdparty/css/themes/ViewSettingsDialog.css +1 -0
- package/src/sap/ui/webc/fiori/thirdparty/css/themes/Wizard.css +1 -0
- package/src/sap/ui/webc/fiori/thirdparty/css/themes/WizardPopover.css +1 -0
- package/src/sap/ui/webc/fiori/thirdparty/css/themes/WizardTab.css +1 -0
- package/src/sap/ui/webc/fiori/thirdparty/css/themes/sap_belize/parameters-bundle.css +1 -0
- package/src/sap/ui/webc/fiori/thirdparty/css/themes/sap_belize_hcb/parameters-bundle.css +1 -0
- package/src/sap/ui/webc/fiori/thirdparty/css/themes/sap_belize_hcw/parameters-bundle.css +1 -0
- package/src/sap/ui/webc/fiori/thirdparty/css/themes/sap_fiori_3/parameters-bundle.css +1 -0
- package/src/sap/ui/webc/fiori/thirdparty/css/themes/sap_fiori_3_dark/parameters-bundle.css +1 -0
- package/src/sap/ui/webc/fiori/thirdparty/css/themes/sap_fiori_3_hcb/parameters-bundle.css +1 -0
- package/src/sap/ui/webc/fiori/thirdparty/css/themes/sap_fiori_3_hcw/parameters-bundle.css +1 -0
- package/src/sap/ui/webc/fiori/thirdparty/css/themes/sap_horizon/parameters-bundle.css +1 -0
- package/src/sap/ui/webc/fiori/thirdparty/generated/i18n/i18n-defaults.js +37 -1
- package/src/sap/ui/webc/fiori/thirdparty/generated/json-imports/Themes.js +9 -8
- package/src/sap/ui/webc/fiori/thirdparty/generated/json-imports/i18n.js +47 -47
- package/src/sap/ui/webc/fiori/thirdparty/generated/templates/BarTemplate.lit.js +3 -12
- package/src/sap/ui/webc/fiori/thirdparty/generated/templates/BarcodeScannerDialogTemplate.lit.js +7 -0
- package/src/sap/ui/webc/fiori/thirdparty/generated/templates/FilterItemTemplate.lit.js +20 -0
- package/src/sap/ui/webc/fiori/thirdparty/generated/templates/FlexibleColumnLayoutTemplate.lit.js +3 -12
- package/src/sap/ui/webc/fiori/thirdparty/generated/templates/IllustratedMessageTemplate.lit.js +13 -0
- package/src/sap/ui/webc/fiori/thirdparty/generated/templates/NotifactionOverflowActionsPopoverTemplate.lit.js +4 -13
- package/src/sap/ui/webc/fiori/thirdparty/generated/templates/NotificationListGroupItemTemplate.lit.js +13 -22
- package/src/sap/ui/webc/fiori/thirdparty/generated/templates/NotificationListItemTemplate.lit.js +12 -21
- package/src/sap/ui/webc/fiori/thirdparty/generated/templates/PageTemplate.lit.js +3 -8
- package/src/sap/ui/webc/fiori/thirdparty/generated/templates/ProductSwitchItemTemplate.lit.js +13 -22
- package/src/sap/ui/webc/fiori/thirdparty/generated/templates/ProductSwitchTemplate.lit.js +3 -12
- package/src/sap/ui/webc/fiori/thirdparty/generated/templates/ShellBarItemTemplate.lit.js +3 -12
- package/src/sap/ui/webc/fiori/thirdparty/generated/templates/ShellBarPopoverTemplate.lit.js +5 -14
- package/src/sap/ui/webc/fiori/thirdparty/generated/templates/ShellBarTemplate.lit.js +21 -29
- package/src/sap/ui/webc/fiori/thirdparty/generated/templates/SideNavigationItemPopoverContentTemplate.lit.js +4 -13
- package/src/sap/ui/webc/fiori/thirdparty/generated/templates/SideNavigationTemplate.lit.js +12 -21
- package/src/sap/ui/webc/fiori/thirdparty/generated/templates/TimelineItemTemplate.lit.js +9 -17
- package/src/sap/ui/webc/fiori/thirdparty/generated/templates/TimelineTemplate.lit.js +4 -13
- package/src/sap/ui/webc/fiori/thirdparty/generated/templates/UploadCollectionItemTemplate.lit.js +22 -31
- package/src/sap/ui/webc/fiori/thirdparty/generated/templates/UploadCollectionTemplate.lit.js +5 -15
- package/src/sap/ui/webc/fiori/thirdparty/generated/templates/ViewSettingsDialogTemplate.lit.js +18 -0
- package/src/sap/ui/webc/fiori/thirdparty/generated/templates/WizardPopoverTemplate.lit.js +4 -13
- package/src/sap/ui/webc/fiori/thirdparty/generated/templates/WizardTabTemplate.lit.js +7 -16
- package/src/sap/ui/webc/fiori/thirdparty/generated/templates/WizardTemplate.lit.js +5 -14
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/Bar.css.js +3 -3
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/BarcodeScannerDialog.css.js +13 -0
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/FilterItem.css.js +13 -0
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/FlexibleColumnLayout.css.js +3 -3
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/IllustratedMessage.css.js +13 -0
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/InvisibleTextStyles.css.js +3 -3
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/NotifactionOverflowActionsPopover.css.js +3 -3
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/NotificationListGroupItem.css.js +3 -3
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/NotificationListItem.css.js +3 -3
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/NotificationListItemBase.css.js +3 -3
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/NotificationPrioIcon.css.js +3 -3
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/Page.css.js +3 -3
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/ProductSwitch.css.js +3 -3
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/ProductSwitchItem.css.js +3 -3
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/ShellBar.css.js +3 -3
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/SideNavigation.css.js +3 -3
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/Timeline.css.js +3 -3
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/TimelineItem.css.js +3 -3
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/UploadCollection.css.js +3 -3
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/UploadCollectionItem.css.js +3 -3
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/ViewSettingsDialog.css.js +13 -0
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/Wizard.css.js +3 -3
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/WizardPopover.css.js +3 -3
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/WizardTab.css.js +3 -3
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/sap_belize/parameters-bundle.css.js +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/sap_belize_hcb/parameters-bundle.css.js +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/sap_belize_hcw/parameters-bundle.css.js +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/sap_fiori_3/parameters-bundle.css.js +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/sap_fiori_3_dark/parameters-bundle.css.js +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/sap_fiori_3_hcb/parameters-bundle.css.js +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/sap_fiori_3_hcw/parameters-bundle.css.js +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/sap_horizon/parameters-bundle.css.js +7 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/BeforeSearch.js +22 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/NoActivities.js +22 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/NoData.js +22 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/NoEntries.js +22 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/NoMail.js +22 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/NoNotifications.js +22 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/NoSavedItems.js +22 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/NoSearchResults.js +22 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/NoTasks.js +22 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/UnableToLoad.js +22 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/UnableToUpload.js +22 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-BeforeSearch.js +20 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-NoActivities.js +25 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-NoData.js +17 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-NoEntries.js +25 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-NoMail.js +18 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-NoNotifications.js +21 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-NoSavedItems.js +20 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-NoSearchResults.js +22 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-NoTasks.js +25 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-UnableToLoad.js +18 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-UnableToUpload.js +20 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-BeforeSearch.js +38 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-NoActivities.js +35 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-NoData.js +30 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-NoEntries.js +39 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-NoMail.js +30 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-NoNotifications.js +43 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-NoSavedItems.js +42 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-NoSearchResults.js +22 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-NoTasks.js +29 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-UnableToLoad.js +30 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-UnableToUpload.js +20 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-BeforeSearch.js +17 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-NoActivities.js +29 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-NoData.js +15 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-NoEntries.js +28 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-NoMail.js +17 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-NoNotifications.js +21 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-NoSavedItems.js +15 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-NoSearchResults.js +20 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-NoTasks.js +26 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-UnableToLoad.js +17 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-UnableToUpload.js +17 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/CodePlaceholder.js +18 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/Company.js +18 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/ExternalLink.js +18 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/FaceID.js +18 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/Fingerprint.js +18 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/Lock.js +18 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/Mission.js +18 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/NoApplications.js +18 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/NoFlows.js +18 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/NoUsers.js +18 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/Radar.js +18 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/Services.js +18 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/SessionExpired.js +18 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/SessionExpiring.js +18 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/Success.js +18 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/SuccessfulAuth.js +18 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/Unlock.js +18 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/UnsuccessfulAuth.js +18 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Dialog-CodePlaceholder.js +12 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Dialog-Company.js +19 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Dialog-ExternalLink.js +17 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Dialog-FaceID.js +23 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Dialog-Fingerprint.js +22 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Dialog-Lock.js +18 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Dialog-Mission.js +24 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Dialog-NoApplications.js +22 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Dialog-NoFlows.js +18 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Dialog-NoUsers.js +22 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Dialog-Radar.js +21 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Dialog-Services.js +22 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Dialog-SessionExpired.js +17 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Dialog-SessionExpiring.js +16 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Dialog-Success.js +16 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Dialog-SuccessfulAuth.js +16 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Dialog-Unlock.js +18 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Dialog-UnsuccessfulAuth.js +17 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Scene-CodePlaceholder.js +15 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Scene-Company.js +36 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Scene-ExternalLink.js +20 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Scene-FaceID.js +27 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Scene-Fingerprint.js +41 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Scene-Lock.js +28 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Scene-Mission.js +25 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Scene-NoApplications.js +24 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Scene-NoFlows.js +26 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Scene-NoUsers.js +23 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Scene-Radar.js +26 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Scene-Services.js +23 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Scene-SessionExpired.js +24 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Scene-SessionExpiring.js +23 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Scene-Success.js +24 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Scene-SuccessfulAuth.js +26 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Scene-Unlock.js +21 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Scene-UnsuccessfulAuth.js +28 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Spot-CodePlaceholder.js +12 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Spot-Company.js +19 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Spot-ExternalLink.js +15 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Spot-FaceID.js +22 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Spot-Fingerprint.js +16 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Spot-Lock.js +19 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Spot-Mission.js +23 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Spot-NoApplications.js +18 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Spot-NoFlows.js +15 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Spot-NoUsers.js +18 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Spot-Radar.js +20 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Spot-Services.js +21 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Spot-SessionExpired.js +15 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Spot-SessionExpiring.js +15 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Spot-Success.js +15 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Spot-SuccessfulAuth.js +15 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Spot-Unlock.js +17 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Spot-UnsuccessfulAuth.js +16 -0
- package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_ar-59619ddd.js → messagebundle_ar-f55bd0d9.js} +37 -1
- package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_bg-b36e00fa.js → messagebundle_bg-eb73ad77.js} +37 -1
- package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_ca-a103fc34.js → messagebundle_ca-18554b48.js} +37 -1
- package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_cs-d56df98c.js → messagebundle_cs-7c21900b.js} +37 -1
- package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_cy-e28cac51.js → messagebundle_cy-04ebca8d.js} +37 -1
- package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_da-7f08bcaa.js → messagebundle_da-49bb0a1c.js} +37 -1
- package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_de-a43e24f9.js → messagebundle_de-ba618d63.js} +37 -1
- package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_el-8b1bd7a2.js → messagebundle_el-7db9c5fd.js} +37 -1
- package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_en-502be1f9.js → messagebundle_en-d099f44a.js} +37 -1
- package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_en_GB-d28c7c2d.js → messagebundle_en_GB-4887b667.js} +37 -1
- package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_en_US_sappsd-f0f7ff12.js → messagebundle_en_US_sappsd-65b99ab9.js} +37 -1
- package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_en_US_saprigi-f136d08a.js → messagebundle_en_US_saprigi-617e6535.js} +37 -1
- package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_en_US_saptrc-ea579165.js → messagebundle_en_US_saptrc-6d0883b2.js} +37 -1
- package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_es-cf460452.js → messagebundle_es-f7558331.js} +37 -1
- package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_es_MX-b588b49c.js → messagebundle_es_MX-82bc00a1.js} +37 -1
- package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_et-33a3c1a9.js → messagebundle_et-24b4540a.js} +37 -1
- package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_fi-05999936.js → messagebundle_fi-8dc53cb0.js} +37 -1
- package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_fr-6b78c685.js → messagebundle_fr-7e340939.js} +37 -1
- package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_fr_CA-5cd1bb21.js → messagebundle_fr_CA-d3853c9b.js} +37 -1
- package/src/sap/ui/webc/fiori/thirdparty/messagebundle_hi-78b175f0.js +97 -0
- package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_hr-1d544b5e.js → messagebundle_hr-3ed6353c.js} +37 -1
- package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_hu-d9824d87.js → messagebundle_hu-9af2b64b.js} +37 -1
- package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_it-590c03c0.js → messagebundle_it-7968f555.js} +37 -1
- package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_iw-2a4cd300.js → messagebundle_iw-30a93e6c.js} +37 -1
- package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_ja-a2be15f9.js → messagebundle_ja-2b23c18f.js} +37 -1
- package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_kk-d1344aab.js → messagebundle_kk-847a0b84.js} +37 -1
- package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_ko-0da72c2c.js → messagebundle_ko-eaabc5f5.js} +37 -1
- package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_lt-fe9461f4.js → messagebundle_lt-ac869899.js} +37 -1
- package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_lv-217ab319.js → messagebundle_lv-ff63b614.js} +37 -1
- package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_ms-a35de2b8.js → messagebundle_ms-e844b95d.js} +37 -1
- package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_nl-9be8eb5b.js → messagebundle_nl-b644fdd4.js} +37 -1
- package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_no-73f4a816.js → messagebundle_no-aedb265f.js} +37 -1
- package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_pl-c579e301.js → messagebundle_pl-3f303622.js} +37 -1
- package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_pt-407551a4.js → messagebundle_pt-541e1fa1.js} +37 -1
- package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_pt_PT-7d09f65f.js → messagebundle_pt_PT-196ce616.js} +37 -1
- package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_ro-c9bda608.js → messagebundle_ro-cbff6cf1.js} +37 -1
- package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_ru-f4dac468.js → messagebundle_ru-ff1b077c.js} +37 -1
- package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_sh-c66bf858.js → messagebundle_sh-88cafb2d.js} +37 -1
- package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_sk-8df875ec.js → messagebundle_sk-877257e4.js} +37 -1
- package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_sl-b18551b8.js → messagebundle_sl-0504465e.js} +37 -1
- package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_sv-7db1ca43.js → messagebundle_sv-30172f15.js} +37 -1
- package/src/sap/ui/webc/fiori/thirdparty/messagebundle_th-1e8f0c20.js +97 -0
- package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_tr-b6eee8da.js → messagebundle_tr-1739cd9a.js} +38 -2
- package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_uk-6fcd6591.js → messagebundle_uk-b933c172.js} +37 -1
- package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_vi-db4b5291.js → messagebundle_vi-329c5bac.js} +37 -1
- package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_zh_CN-6b87b448.js → messagebundle_zh_CN-4936266e.js} +37 -1
- package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_zh_TW-8b6411cf.js → messagebundle_zh_TW-87ecd6ac.js} +37 -1
- package/src/sap/ui/webc/fiori/thirdparty/parameters-bundle.css-1b65841f.js +13 -0
- package/src/sap/ui/webc/fiori/thirdparty/parameters-bundle.css-7ad9af9f.js +13 -0
- package/src/sap/ui/webc/fiori/thirdparty/parameters-bundle.css-7cb04d8d.js +13 -0
- package/src/sap/ui/webc/fiori/thirdparty/parameters-bundle.css-9b078ef8.js +13 -0
- package/src/sap/ui/webc/fiori/thirdparty/parameters-bundle.css-aed8d630.js +13 -0
- package/src/sap/ui/webc/fiori/thirdparty/parameters-bundle.css-becae35f.js +13 -0
- package/src/sap/ui/webc/fiori/thirdparty/parameters-bundle.css-e0121de4.js +13 -0
- package/src/sap/ui/webc/fiori/thirdparty/parameters-bundle.css-e4fed822.js +13 -0
- package/src/sap/ui/webc/fiori/thirdparty/types/IllustrationMessageType.js +47 -0
- package/src/sap/ui/webc/fiori/thirdparty/types/TimelineLayout.js +20 -0
- package/src/sap/ui/webc/fiori/thirdparty/types/ViewSettingsDialogMode.js +20 -0
- package/ui5.yaml +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/messagebundle_hi-71f54fc7.js +0 -61
- package/src/sap/ui/webc/fiori/thirdparty/messagebundle_th-9445e465.js +0 -61
- package/src/sap/ui/webc/fiori/thirdparty/parameters-bundle.css-062fdbb6.js +0 -9
- package/src/sap/ui/webc/fiori/thirdparty/parameters-bundle.css-17f8bf4e.js +0 -9
- package/src/sap/ui/webc/fiori/thirdparty/parameters-bundle.css-196ef17d.js +0 -9
- package/src/sap/ui/webc/fiori/thirdparty/parameters-bundle.css-8a5a5c79.js +0 -9
- package/src/sap/ui/webc/fiori/thirdparty/parameters-bundle.css-90786b8e.js +0 -9
- package/src/sap/ui/webc/fiori/thirdparty/parameters-bundle.css-d48b31a7.js +0 -9
- package/src/sap/ui/webc/fiori/thirdparty/parameters-bundle.css-dc5c99d6.js +0 -9
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
sap.ui.define(['exports'], function (exports) { 'use strict';
|
|
2
2
|
|
|
3
3
|
var messagebundle_cs = {
|
|
4
|
+
BARCODE_SCANNER_DIALOG_CANCEL_BUTTON_TXT: "Zrušit",
|
|
5
|
+
BARCODE_SCANNER_DIALOG_LOADING_TXT: "Zavádění",
|
|
4
6
|
FCL_START_COLUMN_TXT: "První sloupec",
|
|
5
7
|
FCL_MIDDLE_COLUMN_TXT: "Střední sloupec",
|
|
6
8
|
FCL_END_COLUMN_TXT: "Poslední sloupec",
|
|
@@ -49,11 +51,45 @@ sap.ui.define(['exports'], function (exports) { 'use strict';
|
|
|
49
51
|
SHELLBAR_CANCEL: "Zrušit",
|
|
50
52
|
WIZARD_NAV_ARIA_LABEL: "Lišta postupu průvodce",
|
|
51
53
|
WIZARD_LIST_ARIA_LABEL: "Kroky průvodce",
|
|
54
|
+
WIZARD_LIST_ARIA_DESCRIBEDBY: "Pro aktivaci stiskněte mezerník nebo Enter",
|
|
52
55
|
WIZARD_ACTIONSHEET_STEPS_ARIA_LABEL: "Kroky",
|
|
53
56
|
WIZARD_OPTIONAL_STEP_ARIA_LABEL: "Nepovinné",
|
|
57
|
+
WIZARD_STEP_ACTIVE: "Aktivní",
|
|
58
|
+
WIZARD_STEP_INACTIVE: "Neaktivní",
|
|
54
59
|
WIZARD_STEP_ARIA_LABEL: "Krok {0}",
|
|
55
60
|
WIZARD_NAV_ARIA_ROLE_DESCRIPTION: "Průvodce",
|
|
56
|
-
WIZARD_NAV_STEP_DEFAULT_HEADING: "Krok"
|
|
61
|
+
WIZARD_NAV_STEP_DEFAULT_HEADING: "Krok",
|
|
62
|
+
VSD_DIALOG_TITLE_SORT: "Nastavení zobrazení",
|
|
63
|
+
VSD_SUBMIT_BUTTON: "OK",
|
|
64
|
+
VSD_CANCEL_BUTTON: "Zrušit",
|
|
65
|
+
VSD_RESET_BUTTON: "Reset",
|
|
66
|
+
VSD_SORT_ORDER: "Pořadí třídění",
|
|
67
|
+
VSD_FILTER_BY: "Filtrovat podle",
|
|
68
|
+
VSD_SORT_BY: "Třídit podle",
|
|
69
|
+
VSD_ORDER_ASCENDING: "Vzestupně",
|
|
70
|
+
VSD_ORDER_DESCENDING: "Sestupně",
|
|
71
|
+
IM_TITLE_BEFORESEARCH: "Podívejme se na výsledky",
|
|
72
|
+
IM_SUBTITLE_BEFORESEARCH: "Začněte zadáním vašich kritérií hledání.",
|
|
73
|
+
IM_TITLE_NOACTIVITIES: "Dosud jste nepřidali žádné činnosti",
|
|
74
|
+
IM_SUBTITLE_NOACTIVITIES: "Chcete přidat nějakou nyní?",
|
|
75
|
+
IM_TITLE_NODATA: "Dosud tam nejsou žádná data",
|
|
76
|
+
IM_SUBTITLE_NODATA: "Až tam budou, uvidíte je zde.",
|
|
77
|
+
IM_TITLE_NOMAIL: "Žádný nový e-mail",
|
|
78
|
+
IM_SUBTITLE_NOMAIL: "Zkontrolujte to znovu později.",
|
|
79
|
+
IM_TITLE_NOENTRIES: "Dosud tam nejsou žádné záznamy",
|
|
80
|
+
IM_SUBTITLE_NOENTRIES: "Až tam budou, uvidíte je zde.",
|
|
81
|
+
IM_TITLE_NONOTIFICATIONS: "Nedostali jste žádná nová oznámení",
|
|
82
|
+
IM_SUBTITLE_NONOTIFICATIONS: "Zkontrolujte to znovu později.",
|
|
83
|
+
IM_TITLE_NOSAVEDITEMS: "Dosud jste nepřidali žádné oblíbené položky",
|
|
84
|
+
IM_SUBTITLE_NOSAVEDITEMS: "Chcete nyní vytvořit seznam vašich oblíbených položek?",
|
|
85
|
+
IM_TITLE_NOSEARCHRESULTS: "Nebyly nalezeny výsledky",
|
|
86
|
+
IM_SUBTITLE_NOSEARCHRESULTS: "Zkuste změnit vaše kritéria hledání.",
|
|
87
|
+
IM_TITLE_NOTASKS: "Nedostali jste žádné nové úlohy",
|
|
88
|
+
IM_SUBTITLE_NOTASKS: "Až tam budou, uvidíte je zde.",
|
|
89
|
+
IM_TITLE_UNABLETOLOAD: "Data nelze načíst",
|
|
90
|
+
IM_SUBTITLE_UNABLETOLOAD: "Zkontrolujte vaše internetové připojení. Pokud není, pokuste se je obnovit. Když nepomůže ani to, zkontrolujte to s vaším administrátorem.",
|
|
91
|
+
IM_TITLE_UNABLETOUPLOAD: "Nelze odeslat data",
|
|
92
|
+
IM_SUBTITLE_UNABLETOUPLOAD: "Zkontrolujte vaše internetové připojení. Když to nepomáhá, zkontrolujte formát a velikost souboru. Jinak se spojte s vaším administrátorem."
|
|
57
93
|
};
|
|
58
94
|
|
|
59
95
|
exports.default = messagebundle_cs;
|
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
sap.ui.define(['exports'], function (exports) { 'use strict';
|
|
2
2
|
|
|
3
3
|
var messagebundle_cy = {
|
|
4
|
+
BARCODE_SCANNER_DIALOG_CANCEL_BUTTON_TXT: "Canslo",
|
|
5
|
+
BARCODE_SCANNER_DIALOG_LOADING_TXT: "Wrthi'n llwytho",
|
|
4
6
|
FCL_START_COLUMN_TXT: "Colofn gyntaf",
|
|
5
7
|
FCL_MIDDLE_COLUMN_TXT: "Colofn ganol",
|
|
6
8
|
FCL_END_COLUMN_TXT: "Colofn olaf",
|
|
@@ -49,11 +51,45 @@ sap.ui.define(['exports'], function (exports) { 'use strict';
|
|
|
49
51
|
SHELLBAR_CANCEL: "Canslo",
|
|
50
52
|
WIZARD_NAV_ARIA_LABEL: "Bar Cynnydd Dewin",
|
|
51
53
|
WIZARD_LIST_ARIA_LABEL: "Camau Dewin",
|
|
54
|
+
WIZARD_LIST_ARIA_DESCRIBEDBY: "I ysgogi, pwyswch y bylchwr neu Enter",
|
|
52
55
|
WIZARD_ACTIONSHEET_STEPS_ARIA_LABEL: "Camau",
|
|
53
56
|
WIZARD_OPTIONAL_STEP_ARIA_LABEL: "Opsiynol",
|
|
57
|
+
WIZARD_STEP_ACTIVE: "Gweithredol",
|
|
58
|
+
WIZARD_STEP_INACTIVE: "Anweithredol",
|
|
54
59
|
WIZARD_STEP_ARIA_LABEL: "Cam {0}",
|
|
55
60
|
WIZARD_NAV_ARIA_ROLE_DESCRIPTION: "Dewin",
|
|
56
|
-
WIZARD_NAV_STEP_DEFAULT_HEADING: "Cam"
|
|
61
|
+
WIZARD_NAV_STEP_DEFAULT_HEADING: "Cam",
|
|
62
|
+
VSD_DIALOG_TITLE_SORT: "Gweld Gosodiadau",
|
|
63
|
+
VSD_SUBMIT_BUTTON: "Iawn",
|
|
64
|
+
VSD_CANCEL_BUTTON: "Canslo",
|
|
65
|
+
VSD_RESET_BUTTON: "Ailosod",
|
|
66
|
+
VSD_SORT_ORDER: "Trefn",
|
|
67
|
+
VSD_FILTER_BY: "Hidlo yn ôl",
|
|
68
|
+
VSD_SORT_BY: "Trefnu yn ôl",
|
|
69
|
+
VSD_ORDER_ASCENDING: "O’r dechrau i’r diwedd",
|
|
70
|
+
VSD_ORDER_DESCENDING: "O’r diwedd i’r dechrau",
|
|
71
|
+
IM_TITLE_BEFORESEARCH: "Cael canlyniadau",
|
|
72
|
+
IM_SUBTITLE_BEFORESEARCH: "Dechreuwch drwy roi eich meini prawf chwilio",
|
|
73
|
+
IM_TITLE_NOACTIVITIES: "Dydych chi heb ychwanegu gweithgareddau",
|
|
74
|
+
IM_SUBTITLE_NOACTIVITIES: "Hoffech chi ychwanegu un nawr?",
|
|
75
|
+
IM_TITLE_NODATA: "Does dim data ar hyn o bryd",
|
|
76
|
+
IM_SUBTITLE_NODATA: "Pan mae data ar gael, byddwch yn ei weld yma.",
|
|
77
|
+
IM_TITLE_NOMAIL: "Dim negeseuon newydd",
|
|
78
|
+
IM_SUBTITLE_NOMAIL: "Gwiriwch rhywbryd eto.",
|
|
79
|
+
IM_TITLE_NOENTRIES: "Does dim cofnodion ar hyn o bryd",
|
|
80
|
+
IM_SUBTITLE_NOENTRIES: "Pan mae cofnodion ar gael, byddwch yn eu gweld yma.",
|
|
81
|
+
IM_TITLE_NONOTIFICATIONS: "Does gennych chi ddim hysbysiadau newydd.",
|
|
82
|
+
IM_SUBTITLE_NONOTIFICATIONS: "Gwiriwch rhywbryd eto.",
|
|
83
|
+
IM_TITLE_NOSAVEDITEMS: "Dydych chi heb ychwanegu ffefrynnau",
|
|
84
|
+
IM_SUBTITLE_NOSAVEDITEMS: "Hoffech chi greu rhestr o'ch hoff eitemau nawr?",
|
|
85
|
+
IM_TITLE_NOSEARCHRESULTS: "Heb ddod o hyd i ganlyniadau",
|
|
86
|
+
IM_SUBTITLE_NOSEARCHRESULTS: "Rhowch gynnig ar newid eich meini prawf chwilio.",
|
|
87
|
+
IM_TITLE_NOTASKS: "Does gennych chi ddim tasgau newydd.",
|
|
88
|
+
IM_SUBTITLE_NOTASKS: "Pan fydd gennych, byddwch yn eu gweld yma.",
|
|
89
|
+
IM_TITLE_UNABLETOLOAD: "Dim modd llwytho’r data",
|
|
90
|
+
IM_SUBTITLE_UNABLETOLOAD: "Gwiriwch eich cysylltiad Rhyngrwyd. Os nad yw hynny’n helpu, rhowch gynnig ar ail-lwytho. Os nad yw hynny'n helpu chwaith, gwiriwch â'ch gweinyddwr.",
|
|
91
|
+
IM_TITLE_UNABLETOUPLOAD: "Dim modd llwytho’r data",
|
|
92
|
+
IM_SUBTITLE_UNABLETOUPLOAD: "Gwiriwch eich cysylltiad Rhyngrwyd. Os nad yw hynny’n helpu, gwiriwch fformat a maint y ffeil. Neu cysylltwch â’ch gweinyddwr."
|
|
57
93
|
};
|
|
58
94
|
|
|
59
95
|
exports.default = messagebundle_cy;
|
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
sap.ui.define(['exports'], function (exports) { 'use strict';
|
|
2
2
|
|
|
3
3
|
var messagebundle_da = {
|
|
4
|
+
BARCODE_SCANNER_DIALOG_CANCEL_BUTTON_TXT: "Afbryd",
|
|
5
|
+
BARCODE_SCANNER_DIALOG_LOADING_TXT: "Indlæser",
|
|
4
6
|
FCL_START_COLUMN_TXT: "Første kolonne",
|
|
5
7
|
FCL_MIDDLE_COLUMN_TXT: "Mellemkolonne",
|
|
6
8
|
FCL_END_COLUMN_TXT: "Sidste kolonne",
|
|
@@ -49,11 +51,45 @@ sap.ui.define(['exports'], function (exports) { 'use strict';
|
|
|
49
51
|
SHELLBAR_CANCEL: "Afbryd",
|
|
50
52
|
WIZARD_NAV_ARIA_LABEL: "Statuslinje til guide",
|
|
51
53
|
WIZARD_LIST_ARIA_LABEL: "Guidetrin",
|
|
54
|
+
WIZARD_LIST_ARIA_DESCRIBEDBY: "Klik på mellemrumstasten eller Enter for at aktivere",
|
|
52
55
|
WIZARD_ACTIONSHEET_STEPS_ARIA_LABEL: "Trin",
|
|
53
56
|
WIZARD_OPTIONAL_STEP_ARIA_LABEL: "Valgfri",
|
|
57
|
+
WIZARD_STEP_ACTIVE: "Aktiv",
|
|
58
|
+
WIZARD_STEP_INACTIVE: "Inaktiv",
|
|
54
59
|
WIZARD_STEP_ARIA_LABEL: "Trin {0}",
|
|
55
60
|
WIZARD_NAV_ARIA_ROLE_DESCRIPTION: "Guide",
|
|
56
|
-
WIZARD_NAV_STEP_DEFAULT_HEADING: "Trin"
|
|
61
|
+
WIZARD_NAV_STEP_DEFAULT_HEADING: "Trin",
|
|
62
|
+
VSD_DIALOG_TITLE_SORT: "Vis indstillinger",
|
|
63
|
+
VSD_SUBMIT_BUTTON: "OK",
|
|
64
|
+
VSD_CANCEL_BUTTON: "Afbryd",
|
|
65
|
+
VSD_RESET_BUTTON: "Nulstil",
|
|
66
|
+
VSD_SORT_ORDER: "Sorteringsrækkefølge",
|
|
67
|
+
VSD_FILTER_BY: "Filtrer efter",
|
|
68
|
+
VSD_SORT_BY: "Sortér efter",
|
|
69
|
+
VSD_ORDER_ASCENDING: "Stigende",
|
|
70
|
+
VSD_ORDER_DESCENDING: "Faldende",
|
|
71
|
+
IM_TITLE_BEFORESEARCH: "Lad os få nogle resultater",
|
|
72
|
+
IM_SUBTITLE_BEFORESEARCH: "Start med at angive dine søgekriterier.",
|
|
73
|
+
IM_TITLE_NOACTIVITIES: "Du har endnu ikke tilføjet nogen aktiviteter",
|
|
74
|
+
IM_SUBTITLE_NOACTIVITIES: "Vil du tilføje en nu?",
|
|
75
|
+
IM_TITLE_NODATA: "Der er endnu ingen data",
|
|
76
|
+
IM_SUBTITLE_NODATA: "Når der er, ses de her.",
|
|
77
|
+
IM_TITLE_NOMAIL: "Ingen ny e-mail",
|
|
78
|
+
IM_SUBTITLE_NOMAIL: "Kontroller igen senere.",
|
|
79
|
+
IM_TITLE_NOENTRIES: "Der er endnu ingen entries",
|
|
80
|
+
IM_SUBTITLE_NOENTRIES: "Når der er, ses de her.",
|
|
81
|
+
IM_TITLE_NONOTIFICATIONS: "Du har ikke fået nogen nye notifikationer",
|
|
82
|
+
IM_SUBTITLE_NONOTIFICATIONS: "Kontroller igen senere.",
|
|
83
|
+
IM_TITLE_NOSAVEDITEMS: "Du har endnu ikke tilføjet nogen foretrukne",
|
|
84
|
+
IM_SUBTITLE_NOSAVEDITEMS: "Vil du oprette en liste over dine foretrukne elementer nu?",
|
|
85
|
+
IM_TITLE_NOSEARCHRESULTS: "Ingen resultater fundet",
|
|
86
|
+
IM_SUBTITLE_NOSEARCHRESULTS: "Prøv at ændre dine søgekriterier.",
|
|
87
|
+
IM_TITLE_NOTASKS: "Du har ikke fået nogen nye opgaver",
|
|
88
|
+
IM_SUBTITLE_NOTASKS: "Når du har, ses de her.",
|
|
89
|
+
IM_TITLE_UNABLETOLOAD: "Ikke muligt at indlæse data",
|
|
90
|
+
IM_SUBTITLE_UNABLETOLOAD: "Kontroller din internetforbindelse. Hvis det ikke hjælper, skal du prøve at genindlæse. Kontakt din administrator, hvis det heller ikke hjælper.",
|
|
91
|
+
IM_TITLE_UNABLETOUPLOAD: "Kan ikke uploade data",
|
|
92
|
+
IM_SUBTITLE_UNABLETOUPLOAD: "Kontroller din internetforbindelse. Hvis det ikke hjælper, skal du kontrollere filformatet og filstørrelsen. Kontakt ellers din administrator."
|
|
57
93
|
};
|
|
58
94
|
|
|
59
95
|
exports.default = messagebundle_da;
|
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
sap.ui.define(['exports'], function (exports) { 'use strict';
|
|
2
2
|
|
|
3
3
|
var messagebundle_de = {
|
|
4
|
+
BARCODE_SCANNER_DIALOG_CANCEL_BUTTON_TXT: "Abbrechen",
|
|
5
|
+
BARCODE_SCANNER_DIALOG_LOADING_TXT: "Ladevorgang läuft...",
|
|
4
6
|
FCL_START_COLUMN_TXT: "Erste Spalte",
|
|
5
7
|
FCL_MIDDLE_COLUMN_TXT: "Mittlere Spalte",
|
|
6
8
|
FCL_END_COLUMN_TXT: "Letzte Spalte",
|
|
@@ -49,11 +51,45 @@ sap.ui.define(['exports'], function (exports) { 'use strict';
|
|
|
49
51
|
SHELLBAR_CANCEL: "Abbrechen",
|
|
50
52
|
WIZARD_NAV_ARIA_LABEL: "Fortschrittsbalken im Assistenten",
|
|
51
53
|
WIZARD_LIST_ARIA_LABEL: "Schritte im Assistenten",
|
|
54
|
+
WIZARD_LIST_ARIA_DESCRIBEDBY: "Zum Aktivieren Leertaste oder Enter drücken",
|
|
52
55
|
WIZARD_ACTIONSHEET_STEPS_ARIA_LABEL: "Schritte",
|
|
53
56
|
WIZARD_OPTIONAL_STEP_ARIA_LABEL: "Optional",
|
|
57
|
+
WIZARD_STEP_ACTIVE: "Aktiv",
|
|
58
|
+
WIZARD_STEP_INACTIVE: "Inaktiv",
|
|
54
59
|
WIZARD_STEP_ARIA_LABEL: "Schritt {0}",
|
|
55
60
|
WIZARD_NAV_ARIA_ROLE_DESCRIPTION: "Assistent",
|
|
56
|
-
WIZARD_NAV_STEP_DEFAULT_HEADING: "Schritt"
|
|
61
|
+
WIZARD_NAV_STEP_DEFAULT_HEADING: "Schritt",
|
|
62
|
+
VSD_DIALOG_TITLE_SORT: "Ansichtseinstellungen",
|
|
63
|
+
VSD_SUBMIT_BUTTON: "OK",
|
|
64
|
+
VSD_CANCEL_BUTTON: "Abbrechen",
|
|
65
|
+
VSD_RESET_BUTTON: "Zurücksetzen",
|
|
66
|
+
VSD_SORT_ORDER: "Sortierung",
|
|
67
|
+
VSD_FILTER_BY: "Filtern nach",
|
|
68
|
+
VSD_SORT_BY: "Sortieren nach",
|
|
69
|
+
VSD_ORDER_ASCENDING: "Aufsteigend",
|
|
70
|
+
VSD_ORDER_DESCENDING: "Absteigend",
|
|
71
|
+
IM_TITLE_BEFORESEARCH: "Suchen wir nach Ergebnissen",
|
|
72
|
+
IM_SUBTITLE_BEFORESEARCH: "Legen Sie los, indem Sie Ihre Suchkriterien angeben.",
|
|
73
|
+
IM_TITLE_NOACTIVITIES: "Sie haben noch keine Aktivitäten hinzugefügt",
|
|
74
|
+
IM_SUBTITLE_NOACTIVITIES: "Möchten Sie jetzt eine hinzufügen?",
|
|
75
|
+
IM_TITLE_NODATA: "Es gibt noch keine Daten",
|
|
76
|
+
IM_SUBTITLE_NODATA: "Wenn es welche gibt, sehen Sie sie hier.",
|
|
77
|
+
IM_TITLE_NOMAIL: "Keine neue Mail",
|
|
78
|
+
IM_SUBTITLE_NOMAIL: "Sehen Sie später noch mal nach.",
|
|
79
|
+
IM_TITLE_NOENTRIES: "Es gibt noch keine Einträge",
|
|
80
|
+
IM_SUBTITLE_NOENTRIES: "Wenn es welche gibt, sehen Sie sie hier.",
|
|
81
|
+
IM_TITLE_NONOTIFICATIONS: "Sie haben keine neuen Benachrichtigungen",
|
|
82
|
+
IM_SUBTITLE_NONOTIFICATIONS: "Sehen Sie später noch mal nach.",
|
|
83
|
+
IM_TITLE_NOSAVEDITEMS: "Sie haben noch keine Favoriten hinzugefügt",
|
|
84
|
+
IM_SUBTITLE_NOSAVEDITEMS: "Möchten Sie jetzt eine Liste Ihrer Lieblingselemente anlegen?",
|
|
85
|
+
IM_TITLE_NOSEARCHRESULTS: "Keine Ergebnisse gefunden",
|
|
86
|
+
IM_SUBTITLE_NOSEARCHRESULTS: "Versuchen Sie es mit anderen Suchkriterien.",
|
|
87
|
+
IM_TITLE_NOTASKS: "Sie haben keine neuen Aufgaben",
|
|
88
|
+
IM_SUBTITLE_NOTASKS: "Wenn Sie welche haben, sehen Sie sie hier.",
|
|
89
|
+
IM_TITLE_UNABLETOLOAD: "Daten können nicht geladen werden",
|
|
90
|
+
IM_SUBTITLE_UNABLETOLOAD: "Überprüfen Sie Ihre Internetverbindung. Wenn es nicht daran liegt, versuchen Sie, die Seite neu zu laden. Wenn auch das nicht hilft, fragen Sie Ihren Administrator.",
|
|
91
|
+
IM_TITLE_UNABLETOUPLOAD: "Daten können nicht hochgeladen werden",
|
|
92
|
+
IM_SUBTITLE_UNABLETOUPLOAD: "Überprüfen Sie Ihre Internetverbindung. Wenn es nicht daran liegt, überprüfen Sie das Dateiformat und die Dateigröße. Wenden Sie sich ansonsten an Ihren Administrator."
|
|
57
93
|
};
|
|
58
94
|
|
|
59
95
|
exports.default = messagebundle_de;
|
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
sap.ui.define(['exports'], function (exports) { 'use strict';
|
|
2
2
|
|
|
3
3
|
var messagebundle_el = {
|
|
4
|
+
BARCODE_SCANNER_DIALOG_CANCEL_BUTTON_TXT: "Ακύρωση",
|
|
5
|
+
BARCODE_SCANNER_DIALOG_LOADING_TXT: "Φόρτωση",
|
|
4
6
|
FCL_START_COLUMN_TXT: "Πρώτη στήλη",
|
|
5
7
|
FCL_MIDDLE_COLUMN_TXT: "Μεσαία στήλη",
|
|
6
8
|
FCL_END_COLUMN_TXT: "Τελευταία στήλη",
|
|
@@ -49,11 +51,45 @@ sap.ui.define(['exports'], function (exports) { 'use strict';
|
|
|
49
51
|
SHELLBAR_CANCEL: "Ακύρωση",
|
|
50
52
|
WIZARD_NAV_ARIA_LABEL: "Γραμμή Προόδου Οδηγού",
|
|
51
53
|
WIZARD_LIST_ARIA_LABEL: "Βήματα Προόδου",
|
|
54
|
+
WIZARD_LIST_ARIA_DESCRIBEDBY: "Για ενεργοποίηση, πατήστε τη μπάρα διαστήματος ή Enter",
|
|
52
55
|
WIZARD_ACTIONSHEET_STEPS_ARIA_LABEL: "Βήματα",
|
|
53
56
|
WIZARD_OPTIONAL_STEP_ARIA_LABEL: "Προαιρετικό",
|
|
57
|
+
WIZARD_STEP_ACTIVE: "Ενεργό",
|
|
58
|
+
WIZARD_STEP_INACTIVE: "Aνενεργό",
|
|
54
59
|
WIZARD_STEP_ARIA_LABEL: "Βήμα {0}",
|
|
55
60
|
WIZARD_NAV_ARIA_ROLE_DESCRIPTION: "Οδηγός",
|
|
56
|
-
WIZARD_NAV_STEP_DEFAULT_HEADING: "Βήμα"
|
|
61
|
+
WIZARD_NAV_STEP_DEFAULT_HEADING: "Βήμα",
|
|
62
|
+
VSD_DIALOG_TITLE_SORT: "Ρυθμίσεις Προβολής",
|
|
63
|
+
VSD_SUBMIT_BUTTON: "ΟΚ",
|
|
64
|
+
VSD_CANCEL_BUTTON: "Ακύρωση",
|
|
65
|
+
VSD_RESET_BUTTON: "Επαναφορά",
|
|
66
|
+
VSD_SORT_ORDER: "Σειρά Ταξινόμησης",
|
|
67
|
+
VSD_FILTER_BY: "Φίλτρ.Κατά",
|
|
68
|
+
VSD_SORT_BY: "Ταξινόμηση Κατά",
|
|
69
|
+
VSD_ORDER_ASCENDING: "Αύξουσα",
|
|
70
|
+
VSD_ORDER_DESCENDING: "Φθίνουσα",
|
|
71
|
+
IM_TITLE_BEFORESEARCH: "Εμφάνιση αποτελεσμάτων",
|
|
72
|
+
IM_SUBTITLE_BEFORESEARCH: "Ξεκινήστε παρέχοντας τα κριτήρια αναζήτησης.",
|
|
73
|
+
IM_TITLE_NOACTIVITIES: "Δεν προσθέσατε δραστηριότητες ακόμη.",
|
|
74
|
+
IM_SUBTITLE_NOACTIVITIES: "Θέλετε να προσθέσετε μία τώρα;",
|
|
75
|
+
IM_TITLE_NODATA: "Δεν υπάρχουν δεδομένα ακόμη.",
|
|
76
|
+
IM_SUBTITLE_NODATA: "Μόλις υπάρξουν, θα τα δείτε εδώ.",
|
|
77
|
+
IM_TITLE_NOMAIL: "Κανένα νέο μήνυμα.",
|
|
78
|
+
IM_SUBTITLE_NOMAIL: "Ελέγξτε πάλι αργότερα.",
|
|
79
|
+
IM_TITLE_NOENTRIES: "Δεν υπάρχουν καταχωρίσεις ακόμη",
|
|
80
|
+
IM_SUBTITLE_NOENTRIES: "Μόλις υπάρξουν, θα τις δείτε εδώ.",
|
|
81
|
+
IM_TITLE_NONOTIFICATIONS: "Δεν λάβατε νέες ειδοποιήσεις",
|
|
82
|
+
IM_SUBTITLE_NONOTIFICATIONS: "Ελέγξτε πάλι αργότερα.",
|
|
83
|
+
IM_TITLE_NOSAVEDITEMS: "Δεν προσθέσατε δραστηριότητες και αγαπημένα ακόμη.",
|
|
84
|
+
IM_SUBTITLE_NOSAVEDITEMS: "Θέλετε να δημιουργήσετε μία λίστα με τα αγαπημένα σας είδη τώρα;",
|
|
85
|
+
IM_TITLE_NOSEARCHRESULTS: "Αποτελέσματα δεν βρέθηκαν",
|
|
86
|
+
IM_SUBTITLE_NOSEARCHRESULTS: "Δοκιμάστε να αλλάξετε τα κριτήρια αναζήτησης.",
|
|
87
|
+
IM_TITLE_NOTASKS: "Δεν λάβατε νέες εργασίες",
|
|
88
|
+
IM_SUBTITLE_NOTASKS: "Μόλις υπάρξουν, θα τις δείτε εδώ.",
|
|
89
|
+
IM_TITLE_UNABLETOLOAD: "Αδύνατη η φόρτωση δεδομένων",
|
|
90
|
+
IM_SUBTITLE_UNABLETOLOAD: "Ελέγξτε την σύνδεση διαδικτύου. Εάν το πρόβλημα παραμένει δοκιμάστε επαναφόρτωση. Εάν εξακολουθεί το πρόβλημα, επικοινωνήστε με τον διαχειριστή σας.",
|
|
91
|
+
IM_TITLE_UNABLETOUPLOAD: "Αδύνατη η προσκόμιση δεδομένων",
|
|
92
|
+
IM_SUBTITLE_UNABLETOUPLOAD: "Ελέγξτε την σύνδεση διαδικτύου. Εάν το πρόβλημα παραμένει, ελέγξτε τη μορφή αρχείου και το μέγεθος αρχείου. Διαφορετικά, επικοινωνήστε με το διαχειριστή σας."
|
|
57
93
|
};
|
|
58
94
|
|
|
59
95
|
exports.default = messagebundle_el;
|
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
sap.ui.define(['exports'], function (exports) { 'use strict';
|
|
2
2
|
|
|
3
3
|
var messagebundle_en = {
|
|
4
|
+
BARCODE_SCANNER_DIALOG_CANCEL_BUTTON_TXT: "Cancel",
|
|
5
|
+
BARCODE_SCANNER_DIALOG_LOADING_TXT: "Loading",
|
|
4
6
|
FCL_START_COLUMN_TXT: "First column",
|
|
5
7
|
FCL_MIDDLE_COLUMN_TXT: "Middle column",
|
|
6
8
|
FCL_END_COLUMN_TXT: "Last column",
|
|
@@ -49,11 +51,45 @@ sap.ui.define(['exports'], function (exports) { 'use strict';
|
|
|
49
51
|
SHELLBAR_CANCEL: "Cancel",
|
|
50
52
|
WIZARD_NAV_ARIA_LABEL: "Wizard Progress Bar",
|
|
51
53
|
WIZARD_LIST_ARIA_LABEL: "Wizard Steps",
|
|
54
|
+
WIZARD_LIST_ARIA_DESCRIBEDBY: "To activate, press the space bar or Enter",
|
|
52
55
|
WIZARD_ACTIONSHEET_STEPS_ARIA_LABEL: "Steps",
|
|
53
56
|
WIZARD_OPTIONAL_STEP_ARIA_LABEL: "Optional",
|
|
57
|
+
WIZARD_STEP_ACTIVE: "Active",
|
|
58
|
+
WIZARD_STEP_INACTIVE: "Inactive",
|
|
54
59
|
WIZARD_STEP_ARIA_LABEL: "Step {0}",
|
|
55
60
|
WIZARD_NAV_ARIA_ROLE_DESCRIPTION: "Wizard",
|
|
56
|
-
WIZARD_NAV_STEP_DEFAULT_HEADING: "Step"
|
|
61
|
+
WIZARD_NAV_STEP_DEFAULT_HEADING: "Step",
|
|
62
|
+
VSD_DIALOG_TITLE_SORT: "View Settings",
|
|
63
|
+
VSD_SUBMIT_BUTTON: "OK",
|
|
64
|
+
VSD_CANCEL_BUTTON: "Cancel",
|
|
65
|
+
VSD_RESET_BUTTON: "Reset",
|
|
66
|
+
VSD_SORT_ORDER: "Sort Order",
|
|
67
|
+
VSD_FILTER_BY: "Filter By",
|
|
68
|
+
VSD_SORT_BY: "Sort By",
|
|
69
|
+
VSD_ORDER_ASCENDING: "Ascending",
|
|
70
|
+
VSD_ORDER_DESCENDING: "Descending",
|
|
71
|
+
IM_TITLE_BEFORESEARCH: "Let's get some results",
|
|
72
|
+
IM_SUBTITLE_BEFORESEARCH: "Start by providing your search criteria.",
|
|
73
|
+
IM_TITLE_NOACTIVITIES: "You've not added any activities yet",
|
|
74
|
+
IM_SUBTITLE_NOACTIVITIES: "Would you like to add one now?",
|
|
75
|
+
IM_TITLE_NODATA: "There's no data yet",
|
|
76
|
+
IM_SUBTITLE_NODATA: "When there is, you'll see it here.",
|
|
77
|
+
IM_TITLE_NOMAIL: "No new mail",
|
|
78
|
+
IM_SUBTITLE_NOMAIL: "Check back again later.",
|
|
79
|
+
IM_TITLE_NOENTRIES: "There are no entries yet",
|
|
80
|
+
IM_SUBTITLE_NOENTRIES: "When there are, you'll see them here.",
|
|
81
|
+
IM_TITLE_NONOTIFICATIONS: "You've not got any new notifications",
|
|
82
|
+
IM_SUBTITLE_NONOTIFICATIONS: "Check back again later.",
|
|
83
|
+
IM_TITLE_NOSAVEDITEMS: "You've not added any favorites yet",
|
|
84
|
+
IM_SUBTITLE_NOSAVEDITEMS: "Would you like to create a list of your favorite items now?",
|
|
85
|
+
IM_TITLE_NOSEARCHRESULTS: "No results found",
|
|
86
|
+
IM_SUBTITLE_NOSEARCHRESULTS: "Try changing your search criteria.",
|
|
87
|
+
IM_TITLE_NOTASKS: "You’ve not got any new tasks",
|
|
88
|
+
IM_SUBTITLE_NOTASKS: "When you do, you'll see them here.",
|
|
89
|
+
IM_TITLE_UNABLETOLOAD: "Unable to load data",
|
|
90
|
+
IM_SUBTITLE_UNABLETOLOAD: "Check your Internet connection. If that doesn’t help, try reloading. If that doesn't help either, check with your administrator.",
|
|
91
|
+
IM_TITLE_UNABLETOUPLOAD: "Unable to upload data",
|
|
92
|
+
IM_SUBTITLE_UNABLETOUPLOAD: "Check your Internet connection. If that doesn’t help, check the file format and file size. Otherwise contact your administrator."
|
|
57
93
|
};
|
|
58
94
|
|
|
59
95
|
exports.default = messagebundle_en;
|
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
sap.ui.define(['exports'], function (exports) { 'use strict';
|
|
2
2
|
|
|
3
3
|
var messagebundle_en_GB = {
|
|
4
|
+
BARCODE_SCANNER_DIALOG_CANCEL_BUTTON_TXT: "Cancel",
|
|
5
|
+
BARCODE_SCANNER_DIALOG_LOADING_TXT: "Loading",
|
|
4
6
|
FCL_START_COLUMN_TXT: "First column",
|
|
5
7
|
FCL_MIDDLE_COLUMN_TXT: "Middle column",
|
|
6
8
|
FCL_END_COLUMN_TXT: "Last column",
|
|
@@ -49,11 +51,45 @@ sap.ui.define(['exports'], function (exports) { 'use strict';
|
|
|
49
51
|
SHELLBAR_CANCEL: "Cancel",
|
|
50
52
|
WIZARD_NAV_ARIA_LABEL: "Wizard Progress Bar",
|
|
51
53
|
WIZARD_LIST_ARIA_LABEL: "Wizard Steps",
|
|
54
|
+
WIZARD_LIST_ARIA_DESCRIBEDBY: "To activate, press the space bar or Enter",
|
|
52
55
|
WIZARD_ACTIONSHEET_STEPS_ARIA_LABEL: "Steps",
|
|
53
56
|
WIZARD_OPTIONAL_STEP_ARIA_LABEL: "Optional",
|
|
57
|
+
WIZARD_STEP_ACTIVE: "Active",
|
|
58
|
+
WIZARD_STEP_INACTIVE: "Inactive",
|
|
54
59
|
WIZARD_STEP_ARIA_LABEL: "Step {0}",
|
|
55
60
|
WIZARD_NAV_ARIA_ROLE_DESCRIPTION: "Wizard",
|
|
56
|
-
WIZARD_NAV_STEP_DEFAULT_HEADING: "Step"
|
|
61
|
+
WIZARD_NAV_STEP_DEFAULT_HEADING: "Step",
|
|
62
|
+
VSD_DIALOG_TITLE_SORT: "View Settings",
|
|
63
|
+
VSD_SUBMIT_BUTTON: "OK",
|
|
64
|
+
VSD_CANCEL_BUTTON: "Cancel",
|
|
65
|
+
VSD_RESET_BUTTON: "Reset",
|
|
66
|
+
VSD_SORT_ORDER: "Sort Order",
|
|
67
|
+
VSD_FILTER_BY: "Filter By",
|
|
68
|
+
VSD_SORT_BY: "Sort By",
|
|
69
|
+
VSD_ORDER_ASCENDING: "Ascending",
|
|
70
|
+
VSD_ORDER_DESCENDING: "Descending",
|
|
71
|
+
IM_TITLE_BEFORESEARCH: "Let's get some results",
|
|
72
|
+
IM_SUBTITLE_BEFORESEARCH: "Start by providing your search criteria.",
|
|
73
|
+
IM_TITLE_NOACTIVITIES: "You've not added any activities yet",
|
|
74
|
+
IM_SUBTITLE_NOACTIVITIES: "Would you like to add one now?",
|
|
75
|
+
IM_TITLE_NODATA: "There's no data yet",
|
|
76
|
+
IM_SUBTITLE_NODATA: "When there is, you'll see it here.",
|
|
77
|
+
IM_TITLE_NOMAIL: "No new mail",
|
|
78
|
+
IM_SUBTITLE_NOMAIL: "Check back again later.",
|
|
79
|
+
IM_TITLE_NOENTRIES: "There are no entries yet",
|
|
80
|
+
IM_SUBTITLE_NOENTRIES: "When there are, you'll see them here.",
|
|
81
|
+
IM_TITLE_NONOTIFICATIONS: "You've not got any new notifications",
|
|
82
|
+
IM_SUBTITLE_NONOTIFICATIONS: "Check back again later.",
|
|
83
|
+
IM_TITLE_NOSAVEDITEMS: "You've not added any favourites yet",
|
|
84
|
+
IM_SUBTITLE_NOSAVEDITEMS: "Would you like to create a list of your favourite items now?",
|
|
85
|
+
IM_TITLE_NOSEARCHRESULTS: "No results found",
|
|
86
|
+
IM_SUBTITLE_NOSEARCHRESULTS: "Try changing your search criteria.",
|
|
87
|
+
IM_TITLE_NOTASKS: "You’ve not got any new tasks",
|
|
88
|
+
IM_SUBTITLE_NOTASKS: "When you do, you'll see them here.",
|
|
89
|
+
IM_TITLE_UNABLETOLOAD: "Unable to load data",
|
|
90
|
+
IM_SUBTITLE_UNABLETOLOAD: "Check your Internet connection. If that doesn’t help, try reloading. If that doesn't help either, check with your administrator.",
|
|
91
|
+
IM_TITLE_UNABLETOUPLOAD: "Unable to upload data",
|
|
92
|
+
IM_SUBTITLE_UNABLETOUPLOAD: "Check your Internet connection. If that doesn’t help, check the file format and file size. Otherwise, contact your administrator."
|
|
57
93
|
};
|
|
58
94
|
|
|
59
95
|
exports.default = messagebundle_en_GB;
|
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
sap.ui.define(['exports'], function (exports) { 'use strict';
|
|
2
2
|
|
|
3
3
|
var messagebundle_en_US_sappsd = {
|
|
4
|
+
BARCODE_SCANNER_DIALOG_CANCEL_BUTTON_TXT: "[[[Ĉąŋċēĺ∙∙∙∙∙∙∙∙]]]",
|
|
5
|
+
BARCODE_SCANNER_DIALOG_LOADING_TXT: "[[[Ļŏąƌįŋğ∙∙∙∙∙∙∙]]]",
|
|
4
6
|
FCL_START_COLUMN_TXT: "[[[Ƒįŗşţ ċŏĺűɱŋ∙∙∙∙∙∙∙]]]",
|
|
5
7
|
FCL_MIDDLE_COLUMN_TXT: "[[[Μįƌƌĺē ċŏĺűɱŋ∙∙∙∙∙∙]]]",
|
|
6
8
|
FCL_END_COLUMN_TXT: "[[[Ļąşţ ċŏĺűɱŋ∙∙∙∙∙∙∙∙]]]",
|
|
@@ -49,11 +51,45 @@ sap.ui.define(['exports'], function (exports) { 'use strict';
|
|
|
49
51
|
SHELLBAR_CANCEL: "[[[Ĉąŋċēĺ∙∙∙∙∙∙∙∙]]]",
|
|
50
52
|
WIZARD_NAV_ARIA_LABEL: "[[[Ŵįžąŗƌ Ƥŗŏğŗēşş Ɓąŗ∙∙∙∙∙]]]",
|
|
51
53
|
WIZARD_LIST_ARIA_LABEL: "[[[Ŵįžąŗƌ Ŝţēρş∙∙∙∙∙∙∙]]]",
|
|
54
|
+
WIZARD_LIST_ARIA_DESCRIBEDBY: "[[[Ţŏ ąċţįʋąţē ρŗēşş şρąċē ƃąŗ ŏŗ ēŋţēŗ∙∙∙∙∙∙∙∙∙∙∙∙]]]",
|
|
52
55
|
WIZARD_ACTIONSHEET_STEPS_ARIA_LABEL: "[[[Ŝţēρş∙∙∙∙∙∙∙∙∙]]]",
|
|
53
56
|
WIZARD_OPTIONAL_STEP_ARIA_LABEL: "[[[Ŏρţįŏŋąĺ∙∙∙∙∙∙]]]",
|
|
57
|
+
WIZARD_STEP_ACTIVE: "[[[Āċţįʋē∙∙∙∙∙∙∙∙]]]",
|
|
58
|
+
WIZARD_STEP_INACTIVE: "[[[Ĭŋąċţįʋē∙∙∙∙∙∙]]]",
|
|
54
59
|
WIZARD_STEP_ARIA_LABEL: "[[[Ŝţēρ {0}]]]",
|
|
55
60
|
WIZARD_NAV_ARIA_ROLE_DESCRIPTION: "[[[Ŵįžąŗƌ∙∙∙∙∙∙∙∙]]]",
|
|
56
|
-
WIZARD_NAV_STEP_DEFAULT_HEADING: "[[[Ŝţēρ]]]"
|
|
61
|
+
WIZARD_NAV_STEP_DEFAULT_HEADING: "[[[Ŝţēρ]]]",
|
|
62
|
+
VSD_DIALOG_TITLE_SORT: "[[[Ʋįēŵ Ŝēţţįŋğş∙∙∙∙∙∙]]]",
|
|
63
|
+
VSD_SUBMIT_BUTTON: "[[[ŎĶ∙∙]]]",
|
|
64
|
+
VSD_CANCEL_BUTTON: "[[[Ĉąŋċēĺ∙∙∙∙∙∙∙∙]]]",
|
|
65
|
+
VSD_RESET_BUTTON: "[[[Řēşēţ∙∙∙∙∙∙∙∙∙]]]",
|
|
66
|
+
VSD_SORT_ORDER: "[[[Ŝŏŗţ Ŏŗƌēŗ∙∙∙∙]]]",
|
|
67
|
+
VSD_FILTER_BY: "[[[Ƒįĺţēŗ Ɓŷ∙∙∙∙∙]]]",
|
|
68
|
+
VSD_SORT_BY: "[[[Ŝŏŗţ Ɓŷ∙∙∙∙∙∙∙]]]",
|
|
69
|
+
VSD_ORDER_ASCENDING: "[[[Āşċēŋƌįŋğ∙∙∙∙∙]]]",
|
|
70
|
+
VSD_ORDER_DESCENDING: "[[[Ďēşċēŋƌįŋğ∙∙∙∙]]]",
|
|
71
|
+
IM_TITLE_BEFORESEARCH: "[[[Ļēţ''ş ğēţ şŏɱē ŗēşűĺţş∙∙∙∙∙∙]]]",
|
|
72
|
+
IM_SUBTITLE_BEFORESEARCH: "[[[Ŝţąŗţ ƃŷ ρŗŏʋįƌįŋğ ŷŏűŗ şēąŗċĥ ċŗįţēŗįą.∙∙∙∙∙∙∙∙∙∙∙∙∙∙]]]",
|
|
73
|
+
IM_TITLE_NOACTIVITIES: "[[[Ŷŏű''ʋē ŋŏţ ąƌƌēƌ ąŋŷ ąċţįʋįţįēş ŷēţ∙∙∙∙∙∙∙∙∙∙∙∙]]]",
|
|
74
|
+
IM_SUBTITLE_NOACTIVITIES: "[[[Ŵŏűĺƌ ŷŏű ĺįķē ţŏ ąƌƌ ŏŋē ŋŏŵ?∙∙∙∙∙∙∙∙∙]]]",
|
|
75
|
+
IM_TITLE_NODATA: "[[[Ţĥēŗē''ş ŋŏ ƌąţą ŷēţ∙∙∙∙]]]",
|
|
76
|
+
IM_SUBTITLE_NODATA: "[[[Ŵĥēŋ ţĥēŗē įş, ŷŏű''ĺĺ şēē įţ ĥēŗē.∙∙∙∙∙∙∙∙∙∙∙∙]]]",
|
|
77
|
+
IM_TITLE_NOMAIL: "[[[Ńŏ ŋēŵ ɱąįĺ∙∙∙∙∙∙∙∙]]]",
|
|
78
|
+
IM_SUBTITLE_NOMAIL: "[[[Ĉĥēċķ ƃąċķ ąğąįŋ ĺąţēŗ.∙∙∙∙∙∙]]]",
|
|
79
|
+
IM_TITLE_NOENTRIES: "[[[Ţĥēŗē ąŗē ŋŏ ēŋţŗįēş ŷēţ∙∙∙∙∙∙]]]",
|
|
80
|
+
IM_SUBTITLE_NOENTRIES: "[[[Ŵĥēŋ ţĥēŗē ąŗē, ŷŏű''ĺĺ şēē ţĥēɱ ĥēŗē.∙∙∙∙∙∙∙∙∙∙∙∙∙]]]",
|
|
81
|
+
IM_TITLE_NONOTIFICATIONS: "[[[Ŷŏű''ʋē ŋŏ ŋēŵ ŋŏţįƒįċąţįŏŋş∙∙∙∙∙∙∙∙]]]",
|
|
82
|
+
IM_SUBTITLE_NONOTIFICATIONS: "[[[Ĉĥēċķ ƃąċķ ąğąįŋ ĺąţēŗ.∙∙∙∙∙∙]]]",
|
|
83
|
+
IM_TITLE_NOSAVEDITEMS: "[[[Ŷŏű''ʋē ŋŏţ ąƌƌēƌ ąŋŷ ƒąʋŏŗįţēş ŷēţ∙∙∙∙∙∙∙∙∙∙∙∙]]]",
|
|
84
|
+
IM_SUBTITLE_NOSAVEDITEMS: "[[[Ŵŏűĺƌ ŷŏű ĺįķē ţŏ ċŗēąţē ą ĺįşţ ŏƒ ŷŏűŗ ƒąʋŏŗįţē įţēɱş ŋŏŵ?∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙]]]",
|
|
85
|
+
IM_TITLE_NOSEARCHRESULTS: "[[[Ńŏ ŗēşűĺţş ƒŏűŋƌ∙∙∙∙∙∙∙∙]]]",
|
|
86
|
+
IM_SUBTITLE_NOSEARCHRESULTS: "[[[Ţŗŷ ċĥąŋğįŋğ ŷŏűŗ şēąŗċĥ ċŗįţēŗįą.∙∙∙∙∙∙∙∙∙∙∙]]]",
|
|
87
|
+
IM_TITLE_NOTASKS: "[[[Ŷŏű''ʋē ŋŏ ŋēŵ ţąşķş∙∙∙∙]]]",
|
|
88
|
+
IM_SUBTITLE_NOTASKS: "[[[Ŵĥēŋ ŷŏű ƌŏ, ŷŏű''ĺĺ şēē ţĥēɱ ĥēŗē.∙∙∙∙∙∙∙∙∙∙∙∙]]]",
|
|
89
|
+
IM_TITLE_UNABLETOLOAD: "[[[Ůŋąƃĺē ţŏ ĺŏąƌ ƌąţą∙∙∙∙∙]]]",
|
|
90
|
+
IM_SUBTITLE_UNABLETOLOAD: "[[[Ĉĥēċķ ŷŏűŗ įŋţēŗŋēţ ċŏŋŋēċţįŏŋ. Ĭƒ ţĥąţ''ş ŋŏţ įţ, ţŗŷ ŗēĺŏąƌįŋğ. Ĭƒ ţĥąţ şţįĺĺ ƌŏēşŋ''ţ ĥēĺρ, ċĥēċķ ŵįţĥ ŷŏűŗ ąƌɱįŋįşţŗąţŏŗ.∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙]]]",
|
|
91
|
+
IM_TITLE_UNABLETOUPLOAD: "[[[Ůŋąƃĺē ţŏ űρĺŏąƌ ƌąţą∙∙∙∙∙]]]",
|
|
92
|
+
IM_SUBTITLE_UNABLETOUPLOAD: "[[[Ĉĥēċķ ŷŏűŗ įŋţēŗŋēţ ċŏŋŋēċţįŏŋ. Ĭƒ ţĥąţ''ş ŋŏţ įţ, ċĥēċķ ţĥē ƒįĺē ƒŏŗɱąţ ąŋƌ ƒįĺē şįžē. Ŏţĥēŗŵįşē, ċŏŋţąċţ ŷŏűŗ ąƌɱįŋįşţŗąţŏŗ.∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙]]]"
|
|
57
93
|
};
|
|
58
94
|
|
|
59
95
|
exports.default = messagebundle_en_US_sappsd;
|
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
sap.ui.define(['exports'], function (exports) { 'use strict';
|
|
2
2
|
|
|
3
3
|
var messagebundle_en_US_saprigi = {
|
|
4
|
+
BARCODE_SCANNER_DIALOG_CANCEL_BUTTON_TXT: "Cancel",
|
|
5
|
+
BARCODE_SCANNER_DIALOG_LOADING_TXT: "Loading",
|
|
4
6
|
FCL_START_COLUMN_TXT: "First column",
|
|
5
7
|
FCL_MIDDLE_COLUMN_TXT: "Middle column",
|
|
6
8
|
FCL_END_COLUMN_TXT: "Last column",
|
|
@@ -49,11 +51,45 @@ sap.ui.define(['exports'], function (exports) { 'use strict';
|
|
|
49
51
|
SHELLBAR_CANCEL: "Cancel",
|
|
50
52
|
WIZARD_NAV_ARIA_LABEL: "Wizard Progress Bar",
|
|
51
53
|
WIZARD_LIST_ARIA_LABEL: "Wizard Steps",
|
|
54
|
+
WIZARD_LIST_ARIA_DESCRIBEDBY: "To activate press space bar or enter",
|
|
52
55
|
WIZARD_ACTIONSHEET_STEPS_ARIA_LABEL: "Steps",
|
|
53
56
|
WIZARD_OPTIONAL_STEP_ARIA_LABEL: "Optional",
|
|
57
|
+
WIZARD_STEP_ACTIVE: "Active",
|
|
58
|
+
WIZARD_STEP_INACTIVE: "Inactive",
|
|
54
59
|
WIZARD_STEP_ARIA_LABEL: "Step {0}",
|
|
55
60
|
WIZARD_NAV_ARIA_ROLE_DESCRIPTION: "Wizard",
|
|
56
|
-
WIZARD_NAV_STEP_DEFAULT_HEADING: "Step"
|
|
61
|
+
WIZARD_NAV_STEP_DEFAULT_HEADING: "Step",
|
|
62
|
+
VSD_DIALOG_TITLE_SORT: "View Settings",
|
|
63
|
+
VSD_SUBMIT_BUTTON: "OK",
|
|
64
|
+
VSD_CANCEL_BUTTON: "Cancel",
|
|
65
|
+
VSD_RESET_BUTTON: "Reset",
|
|
66
|
+
VSD_SORT_ORDER: "Sort Order",
|
|
67
|
+
VSD_FILTER_BY: "Filter By",
|
|
68
|
+
VSD_SORT_BY: "Sort By",
|
|
69
|
+
VSD_ORDER_ASCENDING: "Ascending",
|
|
70
|
+
VSD_ORDER_DESCENDING: "Descending",
|
|
71
|
+
IM_TITLE_BEFORESEARCH: "Let's get some results",
|
|
72
|
+
IM_SUBTITLE_BEFORESEARCH: "Start by providing your search criteria.",
|
|
73
|
+
IM_TITLE_NOACTIVITIES: "You've not added any activities yet",
|
|
74
|
+
IM_SUBTITLE_NOACTIVITIES: "Would you like to add one now?",
|
|
75
|
+
IM_TITLE_NODATA: "There's no data yet",
|
|
76
|
+
IM_SUBTITLE_NODATA: "When there is, you'll see it here.",
|
|
77
|
+
IM_TITLE_NOMAIL: "No new mail",
|
|
78
|
+
IM_SUBTITLE_NOMAIL: "Check back again later.",
|
|
79
|
+
IM_TITLE_NOENTRIES: "There are no entries yet",
|
|
80
|
+
IM_SUBTITLE_NOENTRIES: "When there are, you'll see them here.",
|
|
81
|
+
IM_TITLE_NONOTIFICATIONS: "You've no new notifications",
|
|
82
|
+
IM_SUBTITLE_NONOTIFICATIONS: "Check back again later.",
|
|
83
|
+
IM_TITLE_NOSAVEDITEMS: "You've not added any favorites yet",
|
|
84
|
+
IM_SUBTITLE_NOSAVEDITEMS: "Would you like to create a list of your favorite items now?",
|
|
85
|
+
IM_TITLE_NOSEARCHRESULTS: "No results found",
|
|
86
|
+
IM_SUBTITLE_NOSEARCHRESULTS: "Try changing your search criteria.",
|
|
87
|
+
IM_TITLE_NOTASKS: "You've no new tasks",
|
|
88
|
+
IM_SUBTITLE_NOTASKS: "When you do, you'll see them here.",
|
|
89
|
+
IM_TITLE_UNABLETOLOAD: "Unable to load data",
|
|
90
|
+
IM_SUBTITLE_UNABLETOLOAD: "Check your internet connection. If that's not it, try reloading. If that still doesn't help, check with your administrator.",
|
|
91
|
+
IM_TITLE_UNABLETOUPLOAD: "Unable to upload data",
|
|
92
|
+
IM_SUBTITLE_UNABLETOUPLOAD: "Check your internet connection. If that's not it, check the file format and file size. Otherwise, contact your administrator."
|
|
57
93
|
};
|
|
58
94
|
|
|
59
95
|
exports.default = messagebundle_en_US_saprigi;
|
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
sap.ui.define(['exports'], function (exports) { 'use strict';
|
|
2
2
|
|
|
3
3
|
var messagebundle_en_US_saptrc = {
|
|
4
|
+
BARCODE_SCANNER_DIALOG_CANCEL_BUTTON_TXT: "80W2TpeQAH3NIo0lxvHgNg_Cancel",
|
|
5
|
+
BARCODE_SCANNER_DIALOG_LOADING_TXT: "nYPnCFZh8c4jEIHNw+Lm2g_Loading",
|
|
4
6
|
FCL_START_COLUMN_TXT: "3y9Rck+MqVuiUB0V6Bgy4w_First column",
|
|
5
7
|
FCL_MIDDLE_COLUMN_TXT: "k+6faoVgRJPhrB4tXAuu4A_Middle column",
|
|
6
8
|
FCL_END_COLUMN_TXT: "5tUIcm0+sznFBOXlVrdhrA_Last column",
|
|
@@ -49,11 +51,45 @@ sap.ui.define(['exports'], function (exports) { 'use strict';
|
|
|
49
51
|
SHELLBAR_CANCEL: "6lARbGgy0r0fURTT2fV3Yg_Cancel",
|
|
50
52
|
WIZARD_NAV_ARIA_LABEL: "ChLhGHbwlOI6jC26XfOybw_Wizard Progress Bar",
|
|
51
53
|
WIZARD_LIST_ARIA_LABEL: "reYZMGvyx/IjlGoQ3Cm+5Q_Wizard Steps",
|
|
54
|
+
WIZARD_LIST_ARIA_DESCRIBEDBY: "vbPrO9b+4f46rY6JaVANng_To activate press space bar or enter",
|
|
52
55
|
WIZARD_ACTIONSHEET_STEPS_ARIA_LABEL: "yQ7Nsca+1CEl64e40cVqlw_Steps",
|
|
53
56
|
WIZARD_OPTIONAL_STEP_ARIA_LABEL: "ehTLyycsqeYMqBclPn3s5A_Optional",
|
|
57
|
+
WIZARD_STEP_ACTIVE: "9DZaVkzZCeZrf25/mCup+A_Active",
|
|
58
|
+
WIZARD_STEP_INACTIVE: "1lrm2eUKXxNVggVbmWKpsg_Inactive",
|
|
54
59
|
WIZARD_STEP_ARIA_LABEL: "baEgtRpHcU1XsQzgXi7SAQ_Step {0}",
|
|
55
60
|
WIZARD_NAV_ARIA_ROLE_DESCRIPTION: "AyiTyXB43pP6dgJHpsuPag_Wizard",
|
|
56
|
-
WIZARD_NAV_STEP_DEFAULT_HEADING: "JQoo/vjk6ISQlxvuTmBy1w_Step"
|
|
61
|
+
WIZARD_NAV_STEP_DEFAULT_HEADING: "JQoo/vjk6ISQlxvuTmBy1w_Step",
|
|
62
|
+
VSD_DIALOG_TITLE_SORT: "aMQHLgu4PocDWGyZQtjLZA_View Settings",
|
|
63
|
+
VSD_SUBMIT_BUTTON: "8Ytgcm9lgDgzMSPmk58fcQ_OK",
|
|
64
|
+
VSD_CANCEL_BUTTON: "boqgOihhf+F0tsTBdOFjug_Cancel",
|
|
65
|
+
VSD_RESET_BUTTON: "8m0JUHOnT23gM3vjNCoqSg_Reset",
|
|
66
|
+
VSD_SORT_ORDER: "vPicITHBMQbQS+sUnqwDkg_Sort Order",
|
|
67
|
+
VSD_FILTER_BY: "78m0VbnaHua+pabZjFD/LQ_Filter By",
|
|
68
|
+
VSD_SORT_BY: "rblhgGfb1u5bQHdaD5Xu1g_Sort By",
|
|
69
|
+
VSD_ORDER_ASCENDING: "koYnsWZNYumAy5oX5ghCwg_Ascending",
|
|
70
|
+
VSD_ORDER_DESCENDING: "xE1rxDOXR2XKZOSCle2joA_Descending",
|
|
71
|
+
IM_TITLE_BEFORESEARCH: "cEppXFrgilenO2sdw+xUKQ_Let''s get some results",
|
|
72
|
+
IM_SUBTITLE_BEFORESEARCH: "Ur6fbc0ZpkZFWTrUFumkTw_Start by providing your search criteria.",
|
|
73
|
+
IM_TITLE_NOACTIVITIES: "ivtglzB4Q4onNAngkhLEAw_You''ve not added any activities yet",
|
|
74
|
+
IM_SUBTITLE_NOACTIVITIES: "68S4PPmuA0M5XUSP+cCjRA_Would you like to add one now?",
|
|
75
|
+
IM_TITLE_NODATA: "rGxeYTv9zqHOCEks6Bk6zg_There''s no data yet",
|
|
76
|
+
IM_SUBTITLE_NODATA: "ybjPzjpu6GG1FFthjtn6fA_When there is, you''ll see it here.",
|
|
77
|
+
IM_TITLE_NOMAIL: "/BSnJVTj0dF7+tLW8xBWRA_No new mail",
|
|
78
|
+
IM_SUBTITLE_NOMAIL: "YQpMCdVy0a8x6GKfJajOoQ_Check back again later.",
|
|
79
|
+
IM_TITLE_NOENTRIES: "BAvTF8h4IzROnGV1llhF2w_There are no entries yet",
|
|
80
|
+
IM_SUBTITLE_NOENTRIES: "LRygcYCRKHtCLVJZHcdd4Q_When there are, you''ll see them here.",
|
|
81
|
+
IM_TITLE_NONOTIFICATIONS: "1OVJXotCF4Ndazs2uZlkdg_You''ve no new notifications",
|
|
82
|
+
IM_SUBTITLE_NONOTIFICATIONS: "77iCYF1VwNybuz3gNVzPAw_Check back again later.",
|
|
83
|
+
IM_TITLE_NOSAVEDITEMS: "lBFOIxGCcnJRGWcbTILowg_You''ve not added any favorites yet",
|
|
84
|
+
IM_SUBTITLE_NOSAVEDITEMS: "YvIYnypy2n9C998wR80wzQ_Would you like to create a list of your favorite items now?",
|
|
85
|
+
IM_TITLE_NOSEARCHRESULTS: "RcsrAzIXJngG3jG5kKnGUA_No results found",
|
|
86
|
+
IM_SUBTITLE_NOSEARCHRESULTS: "D2uHAVOSYAWCUu2H6ZsPPA_Try changing your search criteria.",
|
|
87
|
+
IM_TITLE_NOTASKS: "yOKUq3upKKzSEfRpBMyVng_You''ve no new tasks",
|
|
88
|
+
IM_SUBTITLE_NOTASKS: "55du9en4BhNwtTCXG4XFPQ_When you do, you''ll see them here.",
|
|
89
|
+
IM_TITLE_UNABLETOLOAD: "UvVlraLgNa4TFudtvPyMmA_Unable to load data",
|
|
90
|
+
IM_SUBTITLE_UNABLETOLOAD: "R3kDRBJh4OI+x3fyHaJNMA_Check your internet connection. If that''s not it, try reloading. If that still doesn''t help, check with your administrator.",
|
|
91
|
+
IM_TITLE_UNABLETOUPLOAD: "gA6pM1xjgxUTXINn1jw9gA_Unable to upload data",
|
|
92
|
+
IM_SUBTITLE_UNABLETOUPLOAD: "ZpXvsKv+/jz7Ivqx1/LSwg_Check your internet connection. If that''s not it, check the file format and file size. Otherwise, contact your administrator."
|
|
57
93
|
};
|
|
58
94
|
|
|
59
95
|
exports.default = messagebundle_en_US_saptrc;
|
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
sap.ui.define(['exports'], function (exports) { 'use strict';
|
|
2
2
|
|
|
3
3
|
var messagebundle_es = {
|
|
4
|
+
BARCODE_SCANNER_DIALOG_CANCEL_BUTTON_TXT: "Cancelar",
|
|
5
|
+
BARCODE_SCANNER_DIALOG_LOADING_TXT: "Cargando",
|
|
4
6
|
FCL_START_COLUMN_TXT: "Primera columna",
|
|
5
7
|
FCL_MIDDLE_COLUMN_TXT: "Columna media",
|
|
6
8
|
FCL_END_COLUMN_TXT: "Última columna",
|
|
@@ -49,11 +51,45 @@ sap.ui.define(['exports'], function (exports) { 'use strict';
|
|
|
49
51
|
SHELLBAR_CANCEL: "Cancelar",
|
|
50
52
|
WIZARD_NAV_ARIA_LABEL: "Barra de progreso del asistente",
|
|
51
53
|
WIZARD_LIST_ARIA_LABEL: "Pasos del asistente",
|
|
54
|
+
WIZARD_LIST_ARIA_DESCRIBEDBY: "Para activarlo, pulse la barra espaciadora o Intro",
|
|
52
55
|
WIZARD_ACTIONSHEET_STEPS_ARIA_LABEL: "Pasos",
|
|
53
56
|
WIZARD_OPTIONAL_STEP_ARIA_LABEL: "Opcional",
|
|
57
|
+
WIZARD_STEP_ACTIVE: "Activo",
|
|
58
|
+
WIZARD_STEP_INACTIVE: "Inactivo",
|
|
54
59
|
WIZARD_STEP_ARIA_LABEL: "Paso {0}",
|
|
55
60
|
WIZARD_NAV_ARIA_ROLE_DESCRIPTION: "Asistente",
|
|
56
|
-
WIZARD_NAV_STEP_DEFAULT_HEADING: "Paso"
|
|
61
|
+
WIZARD_NAV_STEP_DEFAULT_HEADING: "Paso",
|
|
62
|
+
VSD_DIALOG_TITLE_SORT: "Ver opciones",
|
|
63
|
+
VSD_SUBMIT_BUTTON: "OK",
|
|
64
|
+
VSD_CANCEL_BUTTON: "Cancelar",
|
|
65
|
+
VSD_RESET_BUTTON: "Reinicializar",
|
|
66
|
+
VSD_SORT_ORDER: "Orden de clasificación",
|
|
67
|
+
VSD_FILTER_BY: "Filtrar por",
|
|
68
|
+
VSD_SORT_BY: "Clasificar por",
|
|
69
|
+
VSD_ORDER_ASCENDING: "Ascendente",
|
|
70
|
+
VSD_ORDER_DESCENDING: "Descendente",
|
|
71
|
+
IM_TITLE_BEFORESEARCH: "Obtengamos resultados",
|
|
72
|
+
IM_SUBTITLE_BEFORESEARCH: "Comience proporcionando los criterios de búsqueda.",
|
|
73
|
+
IM_TITLE_NOACTIVITIES: "Todavía no ha añadido actividades",
|
|
74
|
+
IM_SUBTITLE_NOACTIVITIES: "¿Desea añadir una ahora?",
|
|
75
|
+
IM_TITLE_NODATA: "Todavía no hay datos",
|
|
76
|
+
IM_SUBTITLE_NODATA: "Cuando haya, los verá aquí.",
|
|
77
|
+
IM_TITLE_NOMAIL: "Ningún correo nuevo",
|
|
78
|
+
IM_SUBTITLE_NOMAIL: "Vuelva a comprobarlo de nuevo más tarde.",
|
|
79
|
+
IM_TITLE_NOENTRIES: "Todavía no hay entradas",
|
|
80
|
+
IM_SUBTITLE_NOENTRIES: "Cuando haya, las verá aquí.",
|
|
81
|
+
IM_TITLE_NONOTIFICATIONS: "No tiene ninguna notificación nueva",
|
|
82
|
+
IM_SUBTITLE_NONOTIFICATIONS: "Vuelva a comprobarlo de nuevo más tarde.",
|
|
83
|
+
IM_TITLE_NOSAVEDITEMS: "Todavía no ha añadido favoritos",
|
|
84
|
+
IM_SUBTITLE_NOSAVEDITEMS: "¿Desea crear una lista de las posiciones favoritas ahora?",
|
|
85
|
+
IM_TITLE_NOSEARCHRESULTS: "No existen resultados",
|
|
86
|
+
IM_SUBTITLE_NOSEARCHRESULTS: "Intente modificar los criterios de búsqueda.",
|
|
87
|
+
IM_TITLE_NOTASKS: "No tiene ninguna tarea nueva",
|
|
88
|
+
IM_SUBTITLE_NOTASKS: "Cuando tenga, las verá aquí.",
|
|
89
|
+
IM_TITLE_UNABLETOLOAD: "No se pueden cargar datos",
|
|
90
|
+
IM_SUBTITLE_UNABLETOLOAD: "Compruebe su conexión a internet. Si esto no funciona, intente volver a cargar la página. Si esto tampoco funciona, verifique con su administrador.",
|
|
91
|
+
IM_TITLE_UNABLETOUPLOAD: "No se pueden cargar datos",
|
|
92
|
+
IM_SUBTITLE_UNABLETOUPLOAD: "Compruebe su conexión a internet. Si esto no funciona, compruebe el formato de fichero y el tamaño de fichero. De lo contrario, póngase en contacto con su administrador."
|
|
57
93
|
};
|
|
58
94
|
|
|
59
95
|
exports.default = messagebundle_es;
|