@sapui5/sap.ndc 1.126.1 → 1.127.1
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/package.json +1 -1
- package/src/sap/ndc/.library +1 -1
- package/src/sap/ndc/BarcodeScanner.js +37 -0
- package/src/sap/ndc/BarcodeScannerButton.js +2 -0
- package/src/sap/ndc/library.js +1 -1
- package/src/sap/ndc/messagebundle_en_US_sappsd.properties +60 -6
- package/src/sap/ndc/messagebundle_en_US_saptrc.properties +79 -25
package/package.json
CHANGED
package/src/sap/ndc/.library
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
<vendor>SAP SE</vendor>
|
|
6
6
|
<copyright>SAPUI5
|
|
7
7
|
* (c) Copyright 2009-2024 SAP SE. All rights reserved.</copyright>
|
|
8
|
-
<version>1.
|
|
8
|
+
<version>1.127.1</version>
|
|
9
9
|
|
|
10
10
|
<documentation>SAPUI5 library with controls with native device capabilities.</documentation>
|
|
11
11
|
|
|
@@ -97,6 +97,7 @@ sap.ui.define([
|
|
|
97
97
|
oBarcodeImageDOM,
|
|
98
98
|
oBarcodeImageCanvasDOM,
|
|
99
99
|
oBarcodeOverlayDOM,
|
|
100
|
+
oFocusedInstance,
|
|
100
101
|
oScannerAPIStatus = {
|
|
101
102
|
Initial: "Initial",
|
|
102
103
|
Loading: "Loading",
|
|
@@ -1436,6 +1437,12 @@ sap.ui.define([
|
|
|
1436
1437
|
oScanDialog.destroy();
|
|
1437
1438
|
}
|
|
1438
1439
|
oScanDialog = null;
|
|
1440
|
+
|
|
1441
|
+
//refocused related element
|
|
1442
|
+
if (typeof oFocusedInstance === 'object') {
|
|
1443
|
+
jQuery(oFocusedInstance).focus();
|
|
1444
|
+
jQuery(oFocusedInstance).on("blur", customBlurHandler);
|
|
1445
|
+
}
|
|
1439
1446
|
}
|
|
1440
1447
|
});
|
|
1441
1448
|
oScanDialog.setEscapeHandler(function(promise) {
|
|
@@ -2598,6 +2605,14 @@ sap.ui.define([
|
|
|
2598
2605
|
oModel.setProperty("/apis/BluetoothScanner/", oBluetoothScanner);
|
|
2599
2606
|
}
|
|
2600
2607
|
|
|
2608
|
+
function customBlurHandler() {
|
|
2609
|
+
Log.debug("The custom Blur handler is called");
|
|
2610
|
+
if (typeof oFocusedInstance === "object") {
|
|
2611
|
+
oFocusedInstance.focus();
|
|
2612
|
+
jQuery(oFocusedInstance).off("blur", customBlurHandler);
|
|
2613
|
+
}
|
|
2614
|
+
}
|
|
2615
|
+
|
|
2601
2616
|
/* =========================================================== */
|
|
2602
2617
|
/* API methods */
|
|
2603
2618
|
/* =========================================================== */
|
|
@@ -3039,6 +3054,28 @@ sap.ui.define([
|
|
|
3039
3054
|
setScannerAPIUnAvailable("BluetoothScanner", true);
|
|
3040
3055
|
};
|
|
3041
3056
|
|
|
3057
|
+
/**
|
|
3058
|
+
* Set the sId of the element to be focused, which will then be used to retrieve the instance of the focused SAP UI5 element.
|
|
3059
|
+
*
|
|
3060
|
+
* @param {string} [sId] Defines the sId for the focused element.
|
|
3061
|
+
* @returns {boolean} Return True if set success.
|
|
3062
|
+
*
|
|
3063
|
+
* @public
|
|
3064
|
+
* @static
|
|
3065
|
+
*/
|
|
3066
|
+
BarcodeScanner.setFocusedInstanceId = function (sId) {
|
|
3067
|
+
var oState = false;
|
|
3068
|
+
oFocusedInstance = jQuery.sap.byId(sId);
|
|
3069
|
+
if (oFocusedInstance[0]) {
|
|
3070
|
+
oState = true;
|
|
3071
|
+
Log.debug("The sId has been successful set, and the instance of the focused SAP UI5 element is now available.");
|
|
3072
|
+
} else {
|
|
3073
|
+
oFocusedInstance = undefined;
|
|
3074
|
+
Log.warning("The sId is not available.");
|
|
3075
|
+
}
|
|
3076
|
+
return oState;
|
|
3077
|
+
};
|
|
3078
|
+
|
|
3042
3079
|
init(); //must be called to enable control if no feature vector is available.
|
|
3043
3080
|
return BarcodeScanner;
|
|
3044
3081
|
|
|
@@ -153,6 +153,8 @@ sap.ui.define([
|
|
|
153
153
|
};
|
|
154
154
|
|
|
155
155
|
BarcodeScannerButton.prototype._onBtnPressed = function (oEvent) {
|
|
156
|
+
var focusedElement = this.getAggregation("_btn");
|
|
157
|
+
BarcodeScanner.setFocusedInstanceId(focusedElement.sId);
|
|
156
158
|
BarcodeScanner.scan(
|
|
157
159
|
this._onScanSuccess.bind(this),
|
|
158
160
|
this._onScanFail.bind(this),
|
package/src/sap/ndc/library.js
CHANGED
|
@@ -1,50 +1,104 @@
|
|
|
1
|
+
#This is the resource bundle for the sap.ndc library
|
|
2
|
+
#
|
|
1
3
|
|
|
4
|
+
#XTIT: title of the manual barcode input
|
|
2
5
|
BARCODE_DIALOG_TITLE=[[[\u0114\u014B\u0163\u0113\u0157 \u0181\u0105\u0157\u010B\u014F\u018C\u0113\u2219\u2219\u2219\u2219\u2219\u2219]]]
|
|
3
6
|
|
|
7
|
+
#XBUT: OK button in the manual barcode input dialog
|
|
4
8
|
BARCODE_DIALOG_OK=[[[\u014E\u0136\u2219\u2219]]]
|
|
5
9
|
|
|
10
|
+
#XBUT: Cancel button in the manual barcode input dialog
|
|
6
11
|
BARCODE_DIALOG_CANCEL=[[[\u0108\u0105\u014B\u010B\u0113\u013A\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219]]]
|
|
7
12
|
|
|
13
|
+
#XFLD: Placeholder of the barcode input field
|
|
8
14
|
BARCODE_DIALOG_PLACEHOLDER=[[[\u0114\u014B\u0163\u0113\u0157 \u0183\u0105\u0157\u010B\u014F\u018C\u0113\u2219\u2219\u2219\u2219\u2219\u2219]]]
|
|
9
15
|
|
|
16
|
+
#YMSG: Message in the manual barcode input dialog
|
|
10
17
|
BARCODE_DIALOG_MSG=[[[\u015C\u010B\u0105\u014B\u014B\u0113\u0157 \u012F\u015F \u014B\u014F\u0163 \u0105\u028B\u0105\u012F\u013A\u0105\u0183\u013A\u0113\u2219\u2219\u2219\u2219\u2219\u2219]]]
|
|
11
18
|
|
|
19
|
+
#XMSG: error message for updating parameter of Camera
|
|
12
20
|
BARCODE_DIALOG_CAMERA_UPDATE_PARAMETER_ERROR_MSG=[[[\u0162\u0125\u0113 {0} \u03C1\u0105\u0157\u0105\u0271\u0113\u0163\u0113\u0157 \u012F\u015F \u014F\u0171\u0163 \u014F\u0192 \u0157\u0105\u014B\u011F\u0113.]]]
|
|
13
21
|
|
|
22
|
+
#XTIT: title of the scan barcode dialog
|
|
14
23
|
BARCODE_DIALOG_SCANNING_TITLE=[[[\u015C\u010B\u0105\u014B \u0181\u0105\u0157\u010B\u014F\u018C\u0113\u2219\u2219\u2219\u2219\u2219\u2219\u2219]]]
|
|
15
24
|
|
|
25
|
+
#XTOL: Barcode Scanner Button tooltip
|
|
16
26
|
BARCODE_SCANNER_BUTTON_TOOLTIP=[[[\u0181\u0105\u0157\u010B\u014F\u018C\u0113 \u015C\u010B\u0105\u014B\u014B\u0113\u0157\u2219\u2219\u2219\u2219]]]
|
|
17
27
|
|
|
28
|
+
#XTIT: title of the scan bar busy dialog
|
|
18
29
|
BARCODE_DIALOG_BUSY_TITLE=[[[\u013B\u014F\u0105\u018C\u012F\u014B\u011F \u013B\u012F\u0183\u0157\u0105\u0157\u012F\u0113\u015F\u2219\u2219\u2219\u2219\u2219\u2219\u2219]]]
|
|
19
30
|
|
|
31
|
+
#XTXT: text of loading zxing-cpp in the scan bar busy dialog
|
|
20
32
|
BARCODE_DIALOG_BUSY_TEXT_ZXINGCPP=[[[\u013B\u014F\u0105\u018C\u012F\u014B\u011F \u017B\u03A7\u012F\u014B\u011F-\u010B\u03C1\u03C1 \u013A\u012F\u0183\u0157\u0105\u0157\u0177...\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219]]]
|
|
21
33
|
|
|
22
|
-
|
|
34
|
+
#XMSG: error message for opening flashlight
|
|
35
|
+
BARCODE_DIALOG_OPEN_FLASHLIGHT_ERROR_MSG=[[[\u0191\u013A\u0105\u015F\u0125\u013A\u012F\u011F\u0125\u0163 \u010B\u014F\u0171\u013A\u018C \u014B\u014F\u0163 \u0183\u0113 \u014F\u03C1\u0113\u014B\u0113\u018C\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219]]]
|
|
23
36
|
|
|
24
|
-
|
|
37
|
+
#XMSG: error message for closing flashlight
|
|
38
|
+
BARCODE_DIALOG_CLOSE_FLASHLIGHT_ERROR_MSG=[[[\u0191\u013A\u0105\u015F\u0125\u013A\u012F\u011F\u0125\u0163 \u010B\u014F\u0171\u013A\u018C \u014B\u014F\u0163 \u0183\u0113 \u010B\u013A\u014F\u015F\u0113\u018C\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219]]]
|
|
25
39
|
|
|
40
|
+
#XTOL: Barcode Scanner Stop Scanning Button tooltip
|
|
26
41
|
BARCODE_DIALOG_STOP_SCANNING_BUTTON_TOOLTIP=[[[\u015C\u0163\u014F\u03C1 \u015F\u010B\u0105\u014B\u014B\u012F\u014B\u011F \u0105\u014B\u018C \u010B\u013A\u014F\u015F\u0113 \u010B\u0105\u0271\u0113\u0157\u0105\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219]]]
|
|
27
42
|
|
|
43
|
+
#XTOL: Barcode Scanner scan result Button tooltip
|
|
28
44
|
BARCODE_DIALOG_SCAN_RESULT_BUTTON_TOOLTIP=[[[\u015C\u010B\u0105\u014B \u0157\u0113\u015F\u0171\u013A\u0163 {0}]]]
|
|
29
45
|
|
|
46
|
+
#XTOL: Barcode Scanner Select Image Button tooltip
|
|
30
47
|
BARCODE_DIALOG_SELECT_IMAGE_BUTTON_TOOLTIP=[[[\u015C\u0113\u013A\u0113\u010B\u0163 \u0105\u014B \u012F\u0271\u0105\u011F\u0113 \u0163\u014F \u015F\u010B\u0105\u014B\u2219\u2219\u2219\u2219\u2219\u2219]]]
|
|
31
48
|
|
|
49
|
+
#XTOL: Barcode Scanner Scan Button tooltip
|
|
32
50
|
BARCODE_DIALOG_SCAN_BUTTON_TOOLTIP_START=[[[\u015C\u0163\u0105\u0157\u0163 \u010B\u0105\u0271\u0113\u0157\u0105 \u015F\u010B\u0105\u014B\u014B\u012F\u014B\u011F\u2219\u2219\u2219\u2219\u2219]]]
|
|
33
51
|
|
|
52
|
+
#XTOL: Barcode Scanner Scan Button tooltip
|
|
34
53
|
BARCODE_DIALOG_SCAN_BUTTON_TOOLTIP_PAUSE=[[[\u01A4\u0105\u0171\u015F\u0113 \u010B\u0105\u0271\u0113\u0157\u0105 \u015F\u010B\u0105\u014B\u014B\u012F\u014B\u011F\u2219\u2219\u2219\u2219\u2219]]]
|
|
35
54
|
|
|
55
|
+
#XTIT: title of the scan image busy dialog
|
|
36
56
|
BARCODE_DIALOG_SCAN_IMAGE_BUSY_TITLE=[[[\u015C\u010B\u0105\u014B\u014B\u012F\u014B\u011F \u015F\u0113\u013A\u0113\u010B\u0163\u0113\u018C \u012F\u0271\u0105\u011F\u0113\u2219\u2219\u2219\u2219\u2219\u2219]]]
|
|
37
57
|
|
|
38
|
-
|
|
58
|
+
#XMSG: error message for loading image failed
|
|
59
|
+
BARCODE_DIALOG_SCAN_IMAGE_LOAD_FAILED_MSG=[[[\u012C\u0271\u0105\u011F\u0113 \u010B\u014F\u0171\u013A\u018C \u014B\u014F\u0163 \u0183\u0113 \u013A\u014F\u0105\u018C\u0113\u018C\u2219\u2219\u2219\u2219\u2219\u2219\u2219]]]
|
|
39
60
|
|
|
40
|
-
|
|
61
|
+
#XMSG: error message for compressing image failed
|
|
62
|
+
BARCODE_DIALOG_SCAN_IMAGE_COMPRESS_FAILED_MSG=[[[\u012C\u0271\u0105\u011F\u0113 \u010B\u014F\u0171\u013A\u018C \u014B\u014F\u0163 \u0183\u0113 \u010B\u014F\u0271\u03C1\u0157\u0113\u015F\u015F\u0113\u018C\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219]]]
|
|
41
63
|
|
|
42
|
-
|
|
64
|
+
#XMSG: error message for scanning image
|
|
65
|
+
BARCODE_DIALOG_SCAN_IMAGE_ERROR_MSG=[[[\u0108\u0105\u014B\u014B\u014F\u0163 \u015F\u010B\u0105\u014B \u0163\u0125\u0113 \u015F\u0113\u013A\u0113\u010B\u0163\u0113\u018C \u012F\u0271\u0105\u011F\u0113\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219]]]
|
|
43
66
|
|
|
44
|
-
|
|
67
|
+
#XMSG: message for use original image data to decode
|
|
68
|
+
BARCODE_DIALOG_SCAN_WITH_ORIGINAL_IMAGE_CONFIRM_MSG=[[[\u015C\u010B\u0105\u014B\u014B\u012F\u014B\u011F \u0163\u0125\u0113 \u012F\u0271\u0105\u011F\u0113 \u0175\u012F\u0163\u0125 \u010B\u014F\u0271\u03C1\u0157\u0113\u015F\u015F\u0113\u018C \u018C\u0105\u0163\u0105 \u0192\u0105\u012F\u013A\u0113\u018C. \u010E\u014F \u0177\u014F\u0171 \u0175\u0105\u014B\u0163 \u0163\u014F \u015F\u010B\u0105\u014B \u0163\u0125\u0113 \u012F\u0271\u0105\u011F\u0113 \u0105\u011F\u0105\u012F\u014B \u0175\u012F\u0163\u0125 \u0163\u0125\u0113 \u014F\u0157\u012F\u011F\u012F\u014B\u0105\u013A \u018C\u0105\u0163\u0105? \u0143\u014F\u0163\u0113 \u0163\u0125\u0105\u0163 \u0163\u0125\u012F\u015F \u0175\u012F\u013A\u013A \u0163\u0105\u0137\u0113 \u0192\u0105\u0157 \u013A\u014F\u014B\u011F\u0113\u0157 \u0163\u0125\u0105\u014B \u0175\u012F\u0163\u0125 \u010B\u014F\u0271\u03C1\u0157\u0113\u015F\u015F\u0113\u018C \u018C\u0105\u0163\u0105.\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219]]]
|
|
45
69
|
|
|
70
|
+
#XTOL: Barcode Scanner flashlight Button tooltip OPEN
|
|
46
71
|
BARCODE_DIALOG_SELECT_FLASHLIGHT_BUTTON_TOOLTIP_OPEN=[[[\u014E\u03C1\u0113\u014B \u0192\u013A\u0105\u015F\u0125\u013A\u012F\u011F\u0125\u0163\u2219\u2219\u2219\u2219]]]
|
|
47
72
|
|
|
73
|
+
#XTOL: Barcode Scanner flashlight Button tooltip CLOSE
|
|
48
74
|
BARCODE_DIALOG_SELECT_FLASHLIGHT_BUTTON_TOOLTIP_CLOSE=[[[\u0108\u013A\u014F\u015F\u0113 \u0192\u013A\u0105\u015F\u0125\u013A\u012F\u011F\u0125\u0163\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219]]]
|
|
49
75
|
|
|
76
|
+
#XTXT: text of multi barcodes label
|
|
50
77
|
BARCODE_DIALOG_MULTI_BARCODES_LABEL_TEXT=[[[\u039C\u0171\u013A\u0163\u012F\u03C1\u013A\u0113 \u0183\u0105\u0157\u010B\u014F\u018C\u0113\u015F \u015F\u010B\u0105\u014B\u014B\u0113\u018C. \u015C\u0113\u013A\u0113\u010B\u0163 \u014F\u014B\u0113 \u0163\u014F \u014F\u03C1\u0113\u014B.\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219]]]
|
|
78
|
+
|
|
79
|
+
#XMSG: error message for the stream of Camera
|
|
80
|
+
BARCODE_DIALOG_CAMERA_STREAM_ERROR_MSG=[[[\u016E\u014B\u0105\u0183\u013A\u0113 \u0163\u014F \u014F\u0183\u0163\u0105\u012F\u014B \u015F\u0163\u0157\u0113\u0105\u0271.\u2219\u2219\u2219\u2219\u2219\u2219]]]
|
|
81
|
+
|
|
82
|
+
#XMSG: error message for User Media
|
|
83
|
+
BARCODE_DIALOG_CAMERA_OTHER_ERROR_MSG=[[[\u0162\u0125\u0113 \u011F\u0113\u0163\u016E\u015F\u0113\u0157\u039C\u0113\u018C\u012F\u0105 \u0271\u0113\u0163\u0125\u014F\u018C \u0113\u014B\u010B\u014F\u0171\u014B\u0163\u0113\u0157\u0113\u018C \u0105\u014B \u0113\u0157\u0157\u014F\u0157. {0}]]]
|
|
84
|
+
|
|
85
|
+
#XMSG: AbortError message for User Media
|
|
86
|
+
BARCODE_DIALOG_CAMERA_ABORTERROR_ERROR_MSG=[[[\u0100\u0183\u014F\u0157\u0163\u0114\u0157\u0157\u014F\u0157\: \u010E\u0113\u028B\u012F\u010B\u0113 \u0171\u015F\u0105\u011F\u0113 \u03C1\u0157\u0113\u028B\u0113\u014B\u0163\u0113\u018C \u0183\u0177 \u0105\u014B \u012F\u015F\u015F\u0171\u0113.\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219]]]
|
|
87
|
+
|
|
88
|
+
#XMSG: NotAllowedError message for User Media
|
|
89
|
+
BARCODE_DIALOG_CAMERA_NOTALLOWEDERROR_ERROR_MSG=[[[\u0143\u014F\u0163\u0100\u013A\u013A\u014F\u0175\u0113\u018C\u0114\u0157\u0157\u014F\u0157\: \u01A4\u0113\u0157\u0271\u012F\u015F\u015F\u012F\u014F\u014B \u018C\u0113\u014B\u012F\u0113\u018C.\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219]]]
|
|
90
|
+
|
|
91
|
+
#XMSG: NotFoundError message for User Media
|
|
92
|
+
BARCODE_DIALOG_CAMERA_NOTFOUNDERROR_ERROR_MSG=[[[\u0143\u014F\u0163\u0191\u014F\u0171\u014B\u018C\u0114\u0157\u0157\u014F\u0157\: \u0158\u0113\u01A3\u0171\u0113\u015F\u0163\u0113\u018C \u018C\u0113\u028B\u012F\u010B\u0113 \u014B\u014F\u0163 \u0192\u014F\u0171\u014B\u018C.\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219]]]
|
|
93
|
+
|
|
94
|
+
#XMSG: NotReadableError message for User Media
|
|
95
|
+
BARCODE_DIALOG_CAMERA_NOTREADABLEERROR_ERROR_MSG=[[[\u0143\u014F\u0163\u0158\u0113\u0105\u018C\u0105\u0183\u013A\u0113\u0114\u0157\u0157\u014F\u0157\: \u010E\u0113\u028B\u012F\u010B\u0113 \u012F\u014B \u0171\u015F\u0113.\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219]]]
|
|
96
|
+
|
|
97
|
+
#XMSG: OverconstrainedError message for User Media
|
|
98
|
+
BARCODE_DIALOG_CAMERA_OVERCONSTRAINEDERROR_ERROR_MSG=[[[\u014E\u028B\u0113\u0157\u010B\u014F\u014B\u015F\u0163\u0157\u0105\u012F\u014B\u0113\u018C\u0114\u0157\u0157\u014F\u0157\: \u0108\u014F\u014B\u015F\u0163\u0157\u0105\u012F\u014B\u0163\u015F \u010B\u014F\u0171\u013A\u018C \u014B\u014F\u0163 \u0183\u0113 \u015F\u0105\u0163\u012F\u015F\u0192\u012F\u0113\u018C.\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219]]]
|
|
99
|
+
|
|
100
|
+
#XMSG: SecurityError message for User Media
|
|
101
|
+
BARCODE_DIALOG_CAMERA_SECURITYERROR_ERROR_MSG=[[[\u015C\u0113\u010B\u0171\u0157\u012F\u0163\u0177\u0114\u0157\u0157\u014F\u0157\: \u016E\u015F\u0113\u0157 \u0271\u0113\u018C\u012F\u0105 \u015F\u0171\u03C1\u03C1\u014F\u0157\u0163 \u018C\u012F\u015F\u0105\u0183\u013A\u0113\u018C \u014F\u014B \u018C\u014F\u010B\u0171\u0271\u0113\u014B\u0163.\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219]]]
|
|
102
|
+
|
|
103
|
+
#XMSG: TypeError message for User Media
|
|
104
|
+
BARCODE_DIALOG_CAMERA_TYPEERROR_ERROR_MSG=[[[\u0162\u0177\u03C1\u0113\u0114\u0157\u0157\u014F\u0157\: \u0114\u0271\u03C1\u0163\u0177 \u010B\u014F\u014B\u015F\u0163\u0157\u0105\u012F\u014B\u0163 \u013A\u012F\u015F\u0163 \u014F\u0157 \u0105\u013A\u013A \u010B\u014F\u014B\u015F\u0163\u0157\u0105\u012F\u014B\u0163\u015F \u015F\u0113\u0163 \u0163\u014F \u0192\u0105\u013A\u015F\u0113, \u014F\u0157 \u011F\u0113\u0163\u016E\u015F\u0113\u0157\u039C\u0113\u018C\u012F\u0105 \u0271\u0113\u0163\u0125\u014F\u018C \u010B\u0105\u013A\u013A\u0113\u018C \u012F\u014B \u012F\u014B\u015F\u0113\u010B\u0171\u0157\u0113 \u010B\u014F\u014B\u0163\u0113\u03C7\u0163.\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219]]]
|
|
@@ -1,50 +1,104 @@
|
|
|
1
|
+
#This is the resource bundle for the sap.ndc library
|
|
2
|
+
#
|
|
1
3
|
|
|
2
|
-
|
|
4
|
+
#XTIT: title of the manual barcode input
|
|
5
|
+
BARCODE_DIALOG_TITLE=LSzokPhUBGSB4EGzhoMncg_Enter Barcode
|
|
3
6
|
|
|
4
|
-
|
|
7
|
+
#XBUT: OK button in the manual barcode input dialog
|
|
8
|
+
BARCODE_DIALOG_OK=7kJvrQHte4xKlwYDRWuaAA_OK
|
|
5
9
|
|
|
6
|
-
|
|
10
|
+
#XBUT: Cancel button in the manual barcode input dialog
|
|
11
|
+
BARCODE_DIALOG_CANCEL=9NqeiGMwqvhswigPemlgmw_Cancel
|
|
7
12
|
|
|
8
|
-
|
|
13
|
+
#XFLD: Placeholder of the barcode input field
|
|
14
|
+
BARCODE_DIALOG_PLACEHOLDER=ugsKidvQmP+UxPhgv//mkA_Enter barcode
|
|
9
15
|
|
|
10
|
-
|
|
16
|
+
#YMSG: Message in the manual barcode input dialog
|
|
17
|
+
BARCODE_DIALOG_MSG=p1eJ5w0Ya9Ylggh4+Ex9zw_Scanner is not available
|
|
11
18
|
|
|
12
|
-
|
|
19
|
+
#XMSG: error message for updating parameter of Camera
|
|
20
|
+
BARCODE_DIALOG_CAMERA_UPDATE_PARAMETER_ERROR_MSG=OpVht/7+H/ZmLEqKv7uTMQ_The {0} parameter is out of range.
|
|
13
21
|
|
|
14
|
-
|
|
22
|
+
#XTIT: title of the scan barcode dialog
|
|
23
|
+
BARCODE_DIALOG_SCANNING_TITLE=XUCWbwgX4AGlB7f818qbdg_Scan Barcode
|
|
15
24
|
|
|
16
|
-
|
|
25
|
+
#XTOL: Barcode Scanner Button tooltip
|
|
26
|
+
BARCODE_SCANNER_BUTTON_TOOLTIP=NRFnB+JM06ZYClEJgQnNzA_Barcode Scanner
|
|
17
27
|
|
|
18
|
-
|
|
28
|
+
#XTIT: title of the scan bar busy dialog
|
|
29
|
+
BARCODE_DIALOG_BUSY_TITLE=ab+53gO7/n5ukm2y+8I6AA_Loading Libraries
|
|
19
30
|
|
|
20
|
-
|
|
31
|
+
#XTXT: text of loading zxing-cpp in the scan bar busy dialog
|
|
32
|
+
BARCODE_DIALOG_BUSY_TEXT_ZXINGCPP=Dq2eIX9sBcmJ25/fL51SWA_Loading ZXing-cpp library...
|
|
21
33
|
|
|
22
|
-
|
|
34
|
+
#XMSG: error message for opening flashlight
|
|
35
|
+
BARCODE_DIALOG_OPEN_FLASHLIGHT_ERROR_MSG=v4F+HY9yEjT0WKyMQkffaw_Flashlight could not be opened
|
|
23
36
|
|
|
24
|
-
|
|
37
|
+
#XMSG: error message for closing flashlight
|
|
38
|
+
BARCODE_DIALOG_CLOSE_FLASHLIGHT_ERROR_MSG=YmwdRHEagfoflctUM/3PVg_Flashlight could not be closed
|
|
25
39
|
|
|
26
|
-
|
|
40
|
+
#XTOL: Barcode Scanner Stop Scanning Button tooltip
|
|
41
|
+
BARCODE_DIALOG_STOP_SCANNING_BUTTON_TOOLTIP=Ydvm2HM4ZuD2RzLJVse57Q_Stop scanning and close camera
|
|
27
42
|
|
|
28
|
-
|
|
43
|
+
#XTOL: Barcode Scanner scan result Button tooltip
|
|
44
|
+
BARCODE_DIALOG_SCAN_RESULT_BUTTON_TOOLTIP=pjfvxUh0RM26FK95HjP5lQ_Scan result {0}
|
|
29
45
|
|
|
30
|
-
|
|
46
|
+
#XTOL: Barcode Scanner Select Image Button tooltip
|
|
47
|
+
BARCODE_DIALOG_SELECT_IMAGE_BUTTON_TOOLTIP=BVKZf/qAN6Cin6j1ZlMb4g_Select an image to scan
|
|
31
48
|
|
|
32
|
-
|
|
49
|
+
#XTOL: Barcode Scanner Scan Button tooltip
|
|
50
|
+
BARCODE_DIALOG_SCAN_BUTTON_TOOLTIP_START=EtYmmx5+bx2OOFomWlIOiQ_Start camera scanning
|
|
33
51
|
|
|
34
|
-
|
|
52
|
+
#XTOL: Barcode Scanner Scan Button tooltip
|
|
53
|
+
BARCODE_DIALOG_SCAN_BUTTON_TOOLTIP_PAUSE=XYd0HLUW9MWB97H65Vw8Eg_Pause camera scanning
|
|
35
54
|
|
|
36
|
-
|
|
55
|
+
#XTIT: title of the scan image busy dialog
|
|
56
|
+
BARCODE_DIALOG_SCAN_IMAGE_BUSY_TITLE=V2dnsVMK8iY2UpfVLaHJLQ_Scanning selected image
|
|
37
57
|
|
|
38
|
-
|
|
58
|
+
#XMSG: error message for loading image failed
|
|
59
|
+
BARCODE_DIALOG_SCAN_IMAGE_LOAD_FAILED_MSG=P1mKmeUVyCRna0PUM4eAoA_Image could not be loaded
|
|
39
60
|
|
|
40
|
-
|
|
61
|
+
#XMSG: error message for compressing image failed
|
|
62
|
+
BARCODE_DIALOG_SCAN_IMAGE_COMPRESS_FAILED_MSG=leyd+r3QZaYI5O+G0eYrwQ_Image could not be compressed
|
|
41
63
|
|
|
42
|
-
|
|
64
|
+
#XMSG: error message for scanning image
|
|
65
|
+
BARCODE_DIALOG_SCAN_IMAGE_ERROR_MSG=fWvAGFkUpwyY+6KPNLCAvA_Cannot scan the selected image
|
|
43
66
|
|
|
44
|
-
|
|
67
|
+
#XMSG: message for use original image data to decode
|
|
68
|
+
BARCODE_DIALOG_SCAN_WITH_ORIGINAL_IMAGE_CONFIRM_MSG=OThmJT5tZ8FWVqYtqisvZQ_Scanning the image with compressed data failed. Do you want to scan the image again with the original data? Note that this will take far longer than with compressed data.
|
|
45
69
|
|
|
46
|
-
|
|
70
|
+
#XTOL: Barcode Scanner flashlight Button tooltip OPEN
|
|
71
|
+
BARCODE_DIALOG_SELECT_FLASHLIGHT_BUTTON_TOOLTIP_OPEN=aePaSegST0ESNrkS9VoDjQ_Open flashlight
|
|
47
72
|
|
|
48
|
-
|
|
73
|
+
#XTOL: Barcode Scanner flashlight Button tooltip CLOSE
|
|
74
|
+
BARCODE_DIALOG_SELECT_FLASHLIGHT_BUTTON_TOOLTIP_CLOSE=hUOPbtQLwrPeuz2EafkY0A_Close flashlight
|
|
49
75
|
|
|
50
|
-
|
|
76
|
+
#XTXT: text of multi barcodes label
|
|
77
|
+
BARCODE_DIALOG_MULTI_BARCODES_LABEL_TEXT=cx0Z7y8h9FeWBhB2uCdwmg_Multiple barcodes scanned. Select one to open.
|
|
78
|
+
|
|
79
|
+
#XMSG: error message for the stream of Camera
|
|
80
|
+
BARCODE_DIALOG_CAMERA_STREAM_ERROR_MSG=LVZMpnWSq7/C8nS+kZboCQ_Unable to obtain stream.
|
|
81
|
+
|
|
82
|
+
#XMSG: error message for User Media
|
|
83
|
+
BARCODE_DIALOG_CAMERA_OTHER_ERROR_MSG=j9n0jCp+ajMJzKDcTewMxg_The getUserMedia method encountered an error. {0}
|
|
84
|
+
|
|
85
|
+
#XMSG: AbortError message for User Media
|
|
86
|
+
BARCODE_DIALOG_CAMERA_ABORTERROR_ERROR_MSG=DhKzhK8Bb2HxEn8NDFlTzw_AbortError\: Device usage prevented by an issue.
|
|
87
|
+
|
|
88
|
+
#XMSG: NotAllowedError message for User Media
|
|
89
|
+
BARCODE_DIALOG_CAMERA_NOTALLOWEDERROR_ERROR_MSG=scglnyfDnq6qHt7FJBdPEg_NotAllowedError\: Permission denied.
|
|
90
|
+
|
|
91
|
+
#XMSG: NotFoundError message for User Media
|
|
92
|
+
BARCODE_DIALOG_CAMERA_NOTFOUNDERROR_ERROR_MSG=XsNYHSGXbyZrzAejqaN8Ew_NotFoundError\: Requested device not found.
|
|
93
|
+
|
|
94
|
+
#XMSG: NotReadableError message for User Media
|
|
95
|
+
BARCODE_DIALOG_CAMERA_NOTREADABLEERROR_ERROR_MSG=cwV/VdNVexLwBAiU3eBGmw_NotReadableError\: Device in use.
|
|
96
|
+
|
|
97
|
+
#XMSG: OverconstrainedError message for User Media
|
|
98
|
+
BARCODE_DIALOG_CAMERA_OVERCONSTRAINEDERROR_ERROR_MSG=cWQWGgo1FezhWpqm6RlR4A_OverconstrainedError\: Constraints could not be satisfied.
|
|
99
|
+
|
|
100
|
+
#XMSG: SecurityError message for User Media
|
|
101
|
+
BARCODE_DIALOG_CAMERA_SECURITYERROR_ERROR_MSG=q7CtGJ+KFtwXOWtMeKN05Q_SecurityError\: User media support disabled on document.
|
|
102
|
+
|
|
103
|
+
#XMSG: TypeError message for User Media
|
|
104
|
+
BARCODE_DIALOG_CAMERA_TYPEERROR_ERROR_MSG=bu/2vI1z9FKJhytgKiWTRw_TypeError\: Empty constraint list or all constraints set to false, or getUserMedia method called in insecure context.
|