@sapui5/sap.ndc 1.108.21 → 1.108.23
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 +341 -260
- package/src/sap/ndc/BarcodeScannerButton.js +8 -2
- package/src/sap/ndc/BarcodeScannerUIContainer.js +5 -2
- package/src/sap/ndc/css/sapNdcBarcodeScanner.css +0 -1
- package/src/sap/ndc/library.js +1 -1
- package/src/sap/ndc/messagebundle.properties +27 -0
- package/src/sap/ndc/messagebundle_ar.properties +12 -0
- package/src/sap/ndc/messagebundle_bg.properties +12 -0
- package/src/sap/ndc/messagebundle_ca.properties +12 -0
- package/src/sap/ndc/messagebundle_cs.properties +12 -0
- package/src/sap/ndc/messagebundle_cy.properties +12 -0
- package/src/sap/ndc/messagebundle_da.properties +12 -0
- package/src/sap/ndc/messagebundle_de.properties +12 -0
- package/src/sap/ndc/messagebundle_el.properties +12 -0
- package/src/sap/ndc/messagebundle_en.properties +12 -0
- package/src/sap/ndc/messagebundle_en_GB.properties +12 -0
- package/src/sap/ndc/messagebundle_es.properties +12 -0
- package/src/sap/ndc/messagebundle_es_MX.properties +12 -0
- package/src/sap/ndc/messagebundle_et.properties +12 -0
- package/src/sap/ndc/messagebundle_fi.properties +12 -0
- package/src/sap/ndc/messagebundle_fr.properties +12 -0
- package/src/sap/ndc/messagebundle_fr_CA.properties +12 -0
- package/src/sap/ndc/messagebundle_hi.properties +12 -0
- package/src/sap/ndc/messagebundle_hr.properties +12 -0
- package/src/sap/ndc/messagebundle_hu.properties +12 -0
- package/src/sap/ndc/messagebundle_id.properties +12 -0
- package/src/sap/ndc/messagebundle_it.properties +12 -0
- package/src/sap/ndc/messagebundle_iw.properties +12 -0
- package/src/sap/ndc/messagebundle_ja.properties +12 -0
- package/src/sap/ndc/messagebundle_kk.properties +12 -0
- package/src/sap/ndc/messagebundle_ko.properties +12 -0
- package/src/sap/ndc/messagebundle_lt.properties +12 -0
- package/src/sap/ndc/messagebundle_lv.properties +12 -0
- package/src/sap/ndc/messagebundle_mk.properties +20 -0
- package/src/sap/ndc/messagebundle_ms.properties +12 -0
- package/src/sap/ndc/messagebundle_nl.properties +12 -0
- package/src/sap/ndc/messagebundle_no.properties +12 -0
- package/src/sap/ndc/messagebundle_pl.properties +12 -0
- package/src/sap/ndc/messagebundle_pt.properties +12 -0
- package/src/sap/ndc/messagebundle_pt_PT.properties +12 -0
- package/src/sap/ndc/messagebundle_ro.properties +12 -0
- package/src/sap/ndc/messagebundle_ru.properties +12 -0
- package/src/sap/ndc/messagebundle_sh.properties +16 -4
- package/src/sap/ndc/messagebundle_sk.properties +12 -0
- package/src/sap/ndc/messagebundle_sl.properties +12 -0
- package/src/sap/ndc/messagebundle_sr.properties +32 -0
- package/src/sap/ndc/messagebundle_sv.properties +12 -0
- package/src/sap/ndc/messagebundle_th.properties +12 -0
- package/src/sap/ndc/messagebundle_tr.properties +12 -0
- package/src/sap/ndc/messagebundle_uk.properties +12 -0
- package/src/sap/ndc/messagebundle_vi.properties +12 -0
- package/src/sap/ndc/messagebundle_zh_CN.properties +12 -0
- package/src/sap/ndc/messagebundle_zh_TW.properties +12 -0
|
@@ -73,7 +73,12 @@ sap.ui.define([
|
|
|
73
73
|
/**
|
|
74
74
|
* If set to true, the camera should be used for scanning in Zebra Enterprise Browser.
|
|
75
75
|
*/
|
|
76
|
-
keepCameraScan : {type : "boolean", defaultValue : false}
|
|
76
|
+
keepCameraScan : {type : "boolean", defaultValue : false},
|
|
77
|
+
|
|
78
|
+
/**
|
|
79
|
+
* If the value is true, the Barcode input dialog should be hidden.
|
|
80
|
+
*/
|
|
81
|
+
disableBarcodeInputDialog : {type : "boolean", defaultValue : false}
|
|
77
82
|
},
|
|
78
83
|
aggregations : {
|
|
79
84
|
|
|
@@ -156,7 +161,8 @@ sap.ui.define([
|
|
|
156
161
|
this.getProperty("preferFrontCamera"),
|
|
157
162
|
this.getProperty("frameRate"),
|
|
158
163
|
this.getProperty("zoom"),
|
|
159
|
-
this.getProperty("keepCameraScan")
|
|
164
|
+
this.getProperty("keepCameraScan"),
|
|
165
|
+
this.getProperty("disableBarcodeInputDialog")
|
|
160
166
|
);
|
|
161
167
|
};
|
|
162
168
|
|
|
@@ -24,10 +24,13 @@ sap.ui.define([
|
|
|
24
24
|
oRm.openStart("div", oControl);
|
|
25
25
|
oRm.class("sapNdcRTCDialogVideo");
|
|
26
26
|
oRm.openEnd();
|
|
27
|
-
oRm.openStart("
|
|
27
|
+
oRm.openStart("video", oControl.getId() + "-video");
|
|
28
|
+
oRm.attr("autoplay", "autoplay");
|
|
29
|
+
oRm.attr("webkit-playsinline", "webkit-playsinline");
|
|
30
|
+
oRm.attr("playsinline", "playsinline");
|
|
28
31
|
oRm.class("sapNdcRTCDialogVideoContainer");
|
|
29
32
|
oRm.openEnd();
|
|
30
|
-
oRm.close("
|
|
33
|
+
oRm.close("video");
|
|
31
34
|
oRm.close("div");
|
|
32
35
|
|
|
33
36
|
// Overlay that is used to mark scan area
|
package/src/sap/ndc/library.js
CHANGED
|
@@ -30,3 +30,30 @@ BARCODE_DIALOG_BUSY_TITLE=Loading Libraries
|
|
|
30
30
|
|
|
31
31
|
#XTXT: text of loading zxing-cpp in the scan bar busy dialog
|
|
32
32
|
BARCODE_DIALOG_BUSY_TEXT_ZXINGCPP=Loading ZXing-cpp library...
|
|
33
|
+
|
|
34
|
+
#XMSG: error message for the stream of Camera
|
|
35
|
+
BARCODE_DIALOG_CAMERA_STREAM_ERROR_MSG=Unable to obtain stream.
|
|
36
|
+
|
|
37
|
+
#XMSG: error message for User Media
|
|
38
|
+
BARCODE_DIALOG_CAMERA_OTHER_ERROR_MSG=The getUserMedia method encountered an error. {0}
|
|
39
|
+
|
|
40
|
+
#XMSG: AbortError message for User Media
|
|
41
|
+
BARCODE_DIALOG_CAMERA_ABORTERROR_ERROR_MSG=AbortError: Device usage prevented by an issue.
|
|
42
|
+
|
|
43
|
+
#XMSG: NotAllowedError message for User Media
|
|
44
|
+
BARCODE_DIALOG_CAMERA_NOTALLOWEDERROR_ERROR_MSG=NotAllowedError: Permission denied.
|
|
45
|
+
|
|
46
|
+
#XMSG: NotFoundError message for User Media
|
|
47
|
+
BARCODE_DIALOG_CAMERA_NOTFOUNDERROR_ERROR_MSG=NotFoundError: Requested device not found.
|
|
48
|
+
|
|
49
|
+
#XMSG: NotReadableError message for User Media
|
|
50
|
+
BARCODE_DIALOG_CAMERA_NOTREADABLEERROR_ERROR_MSG=NotReadableError: Device in use.
|
|
51
|
+
|
|
52
|
+
#XMSG: OverconstrainedError message for User Media
|
|
53
|
+
BARCODE_DIALOG_CAMERA_OVERCONSTRAINEDERROR_ERROR_MSG=OverconstrainedError: Constraints could not be satisfied.
|
|
54
|
+
|
|
55
|
+
#XMSG: SecurityError message for User Media
|
|
56
|
+
BARCODE_DIALOG_CAMERA_SECURITYERROR_ERROR_MSG=SecurityError: User media support disabled on Document.
|
|
57
|
+
|
|
58
|
+
#XMSG: TypeError message for User Media
|
|
59
|
+
BARCODE_DIALOG_CAMERA_TYPEERROR_ERROR_MSG=TypeError: Empty constraint list or all constraints set to false, or getUserMedia method called in insecure context.
|
|
@@ -1,20 +1,32 @@
|
|
|
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=\u0625\u062F\u062E\u0627\u0644 \u0634\u0631\u064A\u0637 \u0627\u0644\u0631\u0645\u0648\u0632
|
|
3
6
|
|
|
7
|
+
#XBUT: OK button in the manual barcode input dialog
|
|
4
8
|
BARCODE_DIALOG_OK=\u0645\u0648\u0627\u0641\u0642
|
|
5
9
|
|
|
10
|
+
#XBUT: Cancel button in the manual barcode input dialog
|
|
6
11
|
BARCODE_DIALOG_CANCEL=\u0625\u0644\u063A\u0627\u0621
|
|
7
12
|
|
|
13
|
+
#XFLD: Placeholder of the barcode input field
|
|
8
14
|
BARCODE_DIALOG_PLACEHOLDER=\u0625\u062F\u062E\u0627\u0644 \u0634\u0631\u064A\u0637 \u0627\u0644\u0631\u0645\u0648\u0632
|
|
9
15
|
|
|
16
|
+
#YMSG: Message in the manual barcode input dialog
|
|
10
17
|
BARCODE_DIALOG_MSG=\u0627\u0644\u0645\u0627\u0633\u062D \u0627\u0644\u0636\u0648\u0626\u064A \u063A\u064A\u0631 \u0645\u062A\u0648\u0641\u0631
|
|
11
18
|
|
|
19
|
+
#XMSG: error message for updating parameter of Camera
|
|
12
20
|
BARCODE_DIALOG_CAMERA_UPDATE_PARAMETER_ERROR_MSG=\u0627\u0644\u0645\u0639\u0627\u0645\u0644 {0} \u062E\u0627\u0631\u062C \u0627\u0644\u0646\u0637\u0627\u0642.
|
|
13
21
|
|
|
22
|
+
#XTIT: title of the scan barcode dialog
|
|
14
23
|
BARCODE_DIALOG_SCANNING_TITLE=\u0645\u0633\u062D \u0634\u0631\u064A\u0637 \u0627\u0644\u0631\u0645\u0648\u0632 \u0636\u0648\u0626\u064A\u064B\u0627
|
|
15
24
|
|
|
25
|
+
#XTOL: Barcode Scanner Button tooltip
|
|
16
26
|
BARCODE_SCANNER_BUTTON_TOOLTIP=\u0632\u0631 \u0645\u0627\u0633\u062D \u0634\u0631\u064A\u0637 \u0627\u0644\u0631\u0645\u0648\u0632 \u0627\u0644\u0636\u0648\u0626\u064A
|
|
17
27
|
|
|
28
|
+
#XTIT: title of the scan bar busy dialog
|
|
18
29
|
BARCODE_DIALOG_BUSY_TITLE=\u062C\u0627\u0631\u064D \u062A\u062D\u0645\u064A\u0644 \u0627\u0644\u0645\u0643\u062A\u0628\u0627\u062A
|
|
19
30
|
|
|
31
|
+
#XTXT: text of loading zxing-cpp in the scan bar busy dialog
|
|
20
32
|
BARCODE_DIALOG_BUSY_TEXT_ZXINGCPP=\u062C\u0627\u0631\u064D \u062A\u062D\u0645\u064A\u0644 \u0645\u0643\u062A\u0628\u0629 ZXing-cpp...
|
|
@@ -1,20 +1,32 @@
|
|
|
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=\u0412\u044A\u0432\u0435\u0436\u0434\u0430\u043D\u0435 \u043D\u0430 \u0431\u0430\u0440\u043A\u043E\u0434
|
|
3
6
|
|
|
7
|
+
#XBUT: OK button in the manual barcode input dialog
|
|
4
8
|
BARCODE_DIALOG_OK=OK
|
|
5
9
|
|
|
10
|
+
#XBUT: Cancel button in the manual barcode input dialog
|
|
6
11
|
BARCODE_DIALOG_CANCEL=\u041E\u0442\u043A\u0430\u0437
|
|
7
12
|
|
|
13
|
+
#XFLD: Placeholder of the barcode input field
|
|
8
14
|
BARCODE_DIALOG_PLACEHOLDER=\u0412\u044A\u0432\u0435\u0436\u0434\u0430\u043D\u0435 \u043D\u0430 \u0431\u0430\u0440\u043A\u043E\u0434
|
|
9
15
|
|
|
16
|
+
#YMSG: Message in the manual barcode input dialog
|
|
10
17
|
BARCODE_DIALOG_MSG=\u0421\u043A\u0435\u043D\u0435\u0440 \u043D\u0435 \u0435 \u0434\u043E\u0441\u0442\u044A\u043F\u0435\u043D
|
|
11
18
|
|
|
19
|
+
#XMSG: error message for updating parameter of Camera
|
|
12
20
|
BARCODE_DIALOG_CAMERA_UPDATE_PARAMETER_ERROR_MSG=\u041F\u0430\u0440\u0430\u043C\u0435\u0442\u044A\u0440 {0} \u0435 \u0438\u0437\u0432\u044A\u043D \u0434\u0438\u0430\u043F\u0430\u0437\u043E\u043D\u0430.
|
|
13
21
|
|
|
22
|
+
#XTIT: title of the scan barcode dialog
|
|
14
23
|
BARCODE_DIALOG_SCANNING_TITLE=\u0421\u043A\u0430\u043D\u0438\u0440\u0430\u043D\u0435 \u0431\u0430\u0440\u043A\u043E\u0434
|
|
15
24
|
|
|
25
|
+
#XTOL: Barcode Scanner Button tooltip
|
|
16
26
|
BARCODE_SCANNER_BUTTON_TOOLTIP=\u0411\u0443\u0442\u043E\u043D \u0437\u0430 \u0441\u043A\u0430\u043D\u0438\u0440\u0430\u043D\u0435 \u043D\u0430 \u0431\u0430\u0440\u043A\u043E\u0434
|
|
17
27
|
|
|
28
|
+
#XTIT: title of the scan bar busy dialog
|
|
18
29
|
BARCODE_DIALOG_BUSY_TITLE=\u0417\u0430\u0440\u0435\u0436\u0434\u0430\u043D\u0435 \u043D\u0430 \u0431\u0438\u0431\u043B\u0438\u043E\u0442\u0435\u043A\u0438
|
|
19
30
|
|
|
31
|
+
#XTXT: text of loading zxing-cpp in the scan bar busy dialog
|
|
20
32
|
BARCODE_DIALOG_BUSY_TEXT_ZXINGCPP=\u0417\u0430\u0440\u0435\u0436\u0434\u0430\u043D\u0435 \u043D\u0430 \u0431\u0438\u0431\u043B\u0438\u043E\u0442\u0435\u043A\u0430 ZXing-cpp...
|
|
@@ -1,20 +1,32 @@
|
|
|
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=Introduir codi de barres
|
|
3
6
|
|
|
7
|
+
#XBUT: OK button in the manual barcode input dialog
|
|
4
8
|
BARCODE_DIALOG_OK=D'acord
|
|
5
9
|
|
|
10
|
+
#XBUT: Cancel button in the manual barcode input dialog
|
|
6
11
|
BARCODE_DIALOG_CANCEL=Cancel\u00B7lar
|
|
7
12
|
|
|
13
|
+
#XFLD: Placeholder of the barcode input field
|
|
8
14
|
BARCODE_DIALOG_PLACEHOLDER=Introdu\u00EFr codi de barres
|
|
9
15
|
|
|
16
|
+
#YMSG: Message in the manual barcode input dialog
|
|
10
17
|
BARCODE_DIALOG_MSG=L'esc\u00E0ner no est\u00E0 disponible
|
|
11
18
|
|
|
19
|
+
#XMSG: error message for updating parameter of Camera
|
|
12
20
|
BARCODE_DIALOG_CAMERA_UPDATE_PARAMETER_ERROR_MSG=El par\u00E0metre {0} est\u00E0 fora de l''interval.
|
|
13
21
|
|
|
22
|
+
#XTIT: title of the scan barcode dialog
|
|
14
23
|
BARCODE_DIALOG_SCANNING_TITLE=Escanejar codi de barres
|
|
15
24
|
|
|
25
|
+
#XTOL: Barcode Scanner Button tooltip
|
|
16
26
|
BARCODE_SCANNER_BUTTON_TOOLTIP=Bot\u00F3 d'esc\u00E0ner de codis de barres
|
|
17
27
|
|
|
28
|
+
#XTIT: title of the scan bar busy dialog
|
|
18
29
|
BARCODE_DIALOG_BUSY_TITLE=Carregant biblioteques
|
|
19
30
|
|
|
31
|
+
#XTXT: text of loading zxing-cpp in the scan bar busy dialog
|
|
20
32
|
BARCODE_DIALOG_BUSY_TEXT_ZXINGCPP=S'est\u00E0 carregant la biblioteca ZXing-cpp...
|
|
@@ -1,20 +1,32 @@
|
|
|
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=Zadejte \u010D\u00E1rov\u00FD k\u00F3d
|
|
3
6
|
|
|
7
|
+
#XBUT: OK button in the manual barcode input dialog
|
|
4
8
|
BARCODE_DIALOG_OK=OK
|
|
5
9
|
|
|
10
|
+
#XBUT: Cancel button in the manual barcode input dialog
|
|
6
11
|
BARCODE_DIALOG_CANCEL=Zru\u0161it
|
|
7
12
|
|
|
13
|
+
#XFLD: Placeholder of the barcode input field
|
|
8
14
|
BARCODE_DIALOG_PLACEHOLDER=Zadejte \u010D\u00E1rov\u00FD k\u00F3d
|
|
9
15
|
|
|
16
|
+
#YMSG: Message in the manual barcode input dialog
|
|
10
17
|
BARCODE_DIALOG_MSG=Skener nen\u00ED k dispozici
|
|
11
18
|
|
|
19
|
+
#XMSG: error message for updating parameter of Camera
|
|
12
20
|
BARCODE_DIALOG_CAMERA_UPDATE_PARAMETER_ERROR_MSG=Parametr {0} je mimo rozsah.
|
|
13
21
|
|
|
22
|
+
#XTIT: title of the scan barcode dialog
|
|
14
23
|
BARCODE_DIALOG_SCANNING_TITLE=Skenovat \u010D\u00E1rov\u00FD k\u00F3d
|
|
15
24
|
|
|
25
|
+
#XTOL: Barcode Scanner Button tooltip
|
|
16
26
|
BARCODE_SCANNER_BUTTON_TOOLTIP=Tla\u010D\u00EDtko skenov\u00E1n\u00ED \u010D\u00E1rov\u00E9ho k\u00F3du
|
|
17
27
|
|
|
28
|
+
#XTIT: title of the scan bar busy dialog
|
|
18
29
|
BARCODE_DIALOG_BUSY_TITLE=Zav\u00E1d\u011Bn\u00ED knihoven
|
|
19
30
|
|
|
31
|
+
#XTXT: text of loading zxing-cpp in the scan bar busy dialog
|
|
20
32
|
BARCODE_DIALOG_BUSY_TEXT_ZXINGCPP=Zav\u00E1d\u011Bn\u00ED knihovny ZXing-cpp...
|
|
@@ -1,20 +1,32 @@
|
|
|
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=Rhowch God Bar
|
|
3
6
|
|
|
7
|
+
#XBUT: OK button in the manual barcode input dialog
|
|
4
8
|
BARCODE_DIALOG_OK=Iawn
|
|
5
9
|
|
|
10
|
+
#XBUT: Cancel button in the manual barcode input dialog
|
|
6
11
|
BARCODE_DIALOG_CANCEL=Canslo
|
|
7
12
|
|
|
13
|
+
#XFLD: Placeholder of the barcode input field
|
|
8
14
|
BARCODE_DIALOG_PLACEHOLDER=Rhowch god bar
|
|
9
15
|
|
|
16
|
+
#YMSG: Message in the manual barcode input dialog
|
|
10
17
|
BARCODE_DIALOG_MSG=Dydy\u2019r sganiwr ddim ar gael
|
|
11
18
|
|
|
19
|
+
#XMSG: error message for updating parameter of Camera
|
|
12
20
|
BARCODE_DIALOG_CAMERA_UPDATE_PARAMETER_ERROR_MSG=Dydy paramedr {0} ddim yn yr ystod.
|
|
13
21
|
|
|
22
|
+
#XTIT: title of the scan barcode dialog
|
|
14
23
|
BARCODE_DIALOG_SCANNING_TITLE=Sganio Cod Bar
|
|
15
24
|
|
|
25
|
+
#XTOL: Barcode Scanner Button tooltip
|
|
16
26
|
BARCODE_SCANNER_BUTTON_TOOLTIP=Botwm Sganiwr Cod Bar
|
|
17
27
|
|
|
28
|
+
#XTIT: title of the scan bar busy dialog
|
|
18
29
|
BARCODE_DIALOG_BUSY_TITLE=Wrthi'n Llwytho Llyfrgelloedd
|
|
19
30
|
|
|
31
|
+
#XTXT: text of loading zxing-cpp in the scan bar busy dialog
|
|
20
32
|
BARCODE_DIALOG_BUSY_TEXT_ZXINGCPP=Wrthi'n llwytho llyfrgell ZXing-cpp...
|
|
@@ -1,20 +1,32 @@
|
|
|
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=Indtast stregkode
|
|
3
6
|
|
|
7
|
+
#XBUT: OK button in the manual barcode input dialog
|
|
4
8
|
BARCODE_DIALOG_OK=OK
|
|
5
9
|
|
|
10
|
+
#XBUT: Cancel button in the manual barcode input dialog
|
|
6
11
|
BARCODE_DIALOG_CANCEL=Afbryd
|
|
7
12
|
|
|
13
|
+
#XFLD: Placeholder of the barcode input field
|
|
8
14
|
BARCODE_DIALOG_PLACEHOLDER=Indtast stregkode
|
|
9
15
|
|
|
16
|
+
#YMSG: Message in the manual barcode input dialog
|
|
10
17
|
BARCODE_DIALOG_MSG=Scanner ikke tilg\u00E6ngelig
|
|
11
18
|
|
|
19
|
+
#XMSG: error message for updating parameter of Camera
|
|
12
20
|
BARCODE_DIALOG_CAMERA_UPDATE_PARAMETER_ERROR_MSG=Den {0} parameter er uden for omr\u00E5de.
|
|
13
21
|
|
|
22
|
+
#XTIT: title of the scan barcode dialog
|
|
14
23
|
BARCODE_DIALOG_SCANNING_TITLE=Scan stregkode
|
|
15
24
|
|
|
25
|
+
#XTOL: Barcode Scanner Button tooltip
|
|
16
26
|
BARCODE_SCANNER_BUTTON_TOOLTIP=Knappen Stregkodescanner
|
|
17
27
|
|
|
28
|
+
#XTIT: title of the scan bar busy dialog
|
|
18
29
|
BARCODE_DIALOG_BUSY_TITLE=Indl\u00E6ser biblioteker
|
|
19
30
|
|
|
31
|
+
#XTXT: text of loading zxing-cpp in the scan bar busy dialog
|
|
20
32
|
BARCODE_DIALOG_BUSY_TEXT_ZXINGCPP=Indl\u00E6ser ZXing-cpp-bibliotek...
|
|
@@ -1,20 +1,32 @@
|
|
|
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=Barcode eingeben
|
|
3
6
|
|
|
7
|
+
#XBUT: OK button in the manual barcode input dialog
|
|
4
8
|
BARCODE_DIALOG_OK=OK
|
|
5
9
|
|
|
10
|
+
#XBUT: Cancel button in the manual barcode input dialog
|
|
6
11
|
BARCODE_DIALOG_CANCEL=Abbrechen
|
|
7
12
|
|
|
13
|
+
#XFLD: Placeholder of the barcode input field
|
|
8
14
|
BARCODE_DIALOG_PLACEHOLDER=Barcode eingeben
|
|
9
15
|
|
|
16
|
+
#YMSG: Message in the manual barcode input dialog
|
|
10
17
|
BARCODE_DIALOG_MSG=Scanner nicht verf\u00FCgbar
|
|
11
18
|
|
|
19
|
+
#XMSG: error message for updating parameter of Camera
|
|
12
20
|
BARCODE_DIALOG_CAMERA_UPDATE_PARAMETER_ERROR_MSG=Der Parameter {0} liegt nicht im zul\u00E4ssigen Bereich.
|
|
13
21
|
|
|
22
|
+
#XTIT: title of the scan barcode dialog
|
|
14
23
|
BARCODE_DIALOG_SCANNING_TITLE=Barcode scannen
|
|
15
24
|
|
|
25
|
+
#XTOL: Barcode Scanner Button tooltip
|
|
16
26
|
BARCODE_SCANNER_BUTTON_TOOLTIP=Barcodescanner-Button
|
|
17
27
|
|
|
28
|
+
#XTIT: title of the scan bar busy dialog
|
|
18
29
|
BARCODE_DIALOG_BUSY_TITLE=Bibliotheken werden geladen
|
|
19
30
|
|
|
31
|
+
#XTXT: text of loading zxing-cpp in the scan bar busy dialog
|
|
20
32
|
BARCODE_DIALOG_BUSY_TEXT_ZXINGCPP=ZXing-cpp-Bibliothek wird geladen...
|
|
@@ -1,20 +1,32 @@
|
|
|
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=\u0395\u03B9\u03C3\u03AC\u03B3\u03B5\u03C4\u03B5 \u03A1\u03B1\u03B2\u03B4\u03BF\u03BA\u03CE\u03B4\u03B9\u03BA\u03B1
|
|
3
6
|
|
|
7
|
+
#XBUT: OK button in the manual barcode input dialog
|
|
4
8
|
BARCODE_DIALOG_OK=\u039F\u039A
|
|
5
9
|
|
|
10
|
+
#XBUT: Cancel button in the manual barcode input dialog
|
|
6
11
|
BARCODE_DIALOG_CANCEL=\u0391\u03BA\u03CD\u03C1\u03C9\u03C3\u03B7
|
|
7
12
|
|
|
13
|
+
#XFLD: Placeholder of the barcode input field
|
|
8
14
|
BARCODE_DIALOG_PLACEHOLDER=\u0395\u03B9\u03C3\u03AC\u03B3\u03B5\u03C4\u03B5 \u03C1\u03B1\u03B2\u03B4\u03BF\u03BA\u03CE\u03B4\u03B9\u03BA\u03B1
|
|
9
15
|
|
|
16
|
+
#YMSG: Message in the manual barcode input dialog
|
|
10
17
|
BARCODE_DIALOG_MSG=\u039F \u03C3\u03B1\u03C1\u03C9\u03C4\u03AE\u03C2 \u03B4\u03B5\u03BD \u03B5\u03AF\u03BD\u03B1\u03B9 \u03B4\u03B9\u03B1\u03B8\u03AD\u03C3\u03B9\u03BC\u03BF\u03C2
|
|
11
18
|
|
|
19
|
+
#XMSG: error message for updating parameter of Camera
|
|
12
20
|
BARCODE_DIALOG_CAMERA_UPDATE_PARAMETER_ERROR_MSG=\u0397 \u03C0\u03B1\u03C1\u03AC\u03BC\u03B5\u03C4\u03C1\u03BF\u03C2 {0} \u03B5\u03AF\u03BD\u03B1\u03B9 \u03B5\u03BA\u03C4\u03CC\u03C2 \u03B5\u03CD\u03C1\u03BF\u03C5\u03C2.
|
|
13
21
|
|
|
22
|
+
#XTIT: title of the scan barcode dialog
|
|
14
23
|
BARCODE_DIALOG_SCANNING_TITLE=\u03A3\u03AC\u03C1\u03C9\u03C3\u03B7 \u03A1\u03B1\u03B2\u03B4\u03BF\u03BA\u03CE\u03B4\u03B9\u03BA\u03B1
|
|
15
24
|
|
|
25
|
+
#XTOL: Barcode Scanner Button tooltip
|
|
16
26
|
BARCODE_SCANNER_BUTTON_TOOLTIP=\u039A\u03BF\u03C5\u03BC\u03C0\u03AF \u03A3\u03AC\u03C1\u03C9\u03C3\u03B7\u03C2 \u03A1\u03B1\u03B2\u03B4\u03BF\u03BA\u03CE\u03B4\u03B9\u03BA\u03B1
|
|
17
27
|
|
|
28
|
+
#XTIT: title of the scan bar busy dialog
|
|
18
29
|
BARCODE_DIALOG_BUSY_TITLE=\u03A6\u03CC\u03C1\u03C4\u03C9\u03C3\u03B7 \u0392\u03B9\u03B2\u03BB\u03B9\u03BF\u03B8\u03B7\u03BA\u03CE\u03BD
|
|
19
30
|
|
|
31
|
+
#XTXT: text of loading zxing-cpp in the scan bar busy dialog
|
|
20
32
|
BARCODE_DIALOG_BUSY_TEXT_ZXINGCPP=\u03A6\u03CC\u03C1\u03C4\u03C9\u03C3\u03B7 \u03B2\u03B9\u03B2\u03BB\u03B9\u03BF\u03B8\u03AE\u03BA\u03B7\u03C2 ZXing-cpp...
|
|
@@ -1,20 +1,32 @@
|
|
|
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=Enter Barcode
|
|
3
6
|
|
|
7
|
+
#XBUT: OK button in the manual barcode input dialog
|
|
4
8
|
BARCODE_DIALOG_OK=OK
|
|
5
9
|
|
|
10
|
+
#XBUT: Cancel button in the manual barcode input dialog
|
|
6
11
|
BARCODE_DIALOG_CANCEL=Cancel
|
|
7
12
|
|
|
13
|
+
#XFLD: Placeholder of the barcode input field
|
|
8
14
|
BARCODE_DIALOG_PLACEHOLDER=Enter barcode
|
|
9
15
|
|
|
16
|
+
#YMSG: Message in the manual barcode input dialog
|
|
10
17
|
BARCODE_DIALOG_MSG=Scanner is not available
|
|
11
18
|
|
|
19
|
+
#XMSG: error message for updating parameter of Camera
|
|
12
20
|
BARCODE_DIALOG_CAMERA_UPDATE_PARAMETER_ERROR_MSG=The {0} parameter is out of range.
|
|
13
21
|
|
|
22
|
+
#XTIT: title of the scan barcode dialog
|
|
14
23
|
BARCODE_DIALOG_SCANNING_TITLE=Scan Barcode
|
|
15
24
|
|
|
25
|
+
#XTOL: Barcode Scanner Button tooltip
|
|
16
26
|
BARCODE_SCANNER_BUTTON_TOOLTIP=Bar Code Scanner Button
|
|
17
27
|
|
|
28
|
+
#XTIT: title of the scan bar busy dialog
|
|
18
29
|
BARCODE_DIALOG_BUSY_TITLE=Loading Libraries
|
|
19
30
|
|
|
31
|
+
#XTXT: text of loading zxing-cpp in the scan bar busy dialog
|
|
20
32
|
BARCODE_DIALOG_BUSY_TEXT_ZXINGCPP=Loading ZXing-cpp library...
|
|
@@ -1,20 +1,32 @@
|
|
|
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=Enter Barcode
|
|
3
6
|
|
|
7
|
+
#XBUT: OK button in the manual barcode input dialog
|
|
4
8
|
BARCODE_DIALOG_OK=OK
|
|
5
9
|
|
|
10
|
+
#XBUT: Cancel button in the manual barcode input dialog
|
|
6
11
|
BARCODE_DIALOG_CANCEL=Cancel
|
|
7
12
|
|
|
13
|
+
#XFLD: Placeholder of the barcode input field
|
|
8
14
|
BARCODE_DIALOG_PLACEHOLDER=Enter barcode
|
|
9
15
|
|
|
16
|
+
#YMSG: Message in the manual barcode input dialog
|
|
10
17
|
BARCODE_DIALOG_MSG=Scanner is not available
|
|
11
18
|
|
|
19
|
+
#XMSG: error message for updating parameter of Camera
|
|
12
20
|
BARCODE_DIALOG_CAMERA_UPDATE_PARAMETER_ERROR_MSG=The {0} parameter is out of range.
|
|
13
21
|
|
|
22
|
+
#XTIT: title of the scan barcode dialog
|
|
14
23
|
BARCODE_DIALOG_SCANNING_TITLE=Scan Barcode
|
|
15
24
|
|
|
25
|
+
#XTOL: Barcode Scanner Button tooltip
|
|
16
26
|
BARCODE_SCANNER_BUTTON_TOOLTIP=Bar Code Scanner Button
|
|
17
27
|
|
|
28
|
+
#XTIT: title of the scan bar busy dialog
|
|
18
29
|
BARCODE_DIALOG_BUSY_TITLE=Loading Libraries
|
|
19
30
|
|
|
31
|
+
#XTXT: text of loading zxing-cpp in the scan bar busy dialog
|
|
20
32
|
BARCODE_DIALOG_BUSY_TEXT_ZXINGCPP=Loading ZXing-cpp library...
|
|
@@ -1,20 +1,32 @@
|
|
|
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=Introducir c\u00F3digo de barras
|
|
3
6
|
|
|
7
|
+
#XBUT: OK button in the manual barcode input dialog
|
|
4
8
|
BARCODE_DIALOG_OK=OK
|
|
5
9
|
|
|
10
|
+
#XBUT: Cancel button in the manual barcode input dialog
|
|
6
11
|
BARCODE_DIALOG_CANCEL=Cancelar
|
|
7
12
|
|
|
13
|
+
#XFLD: Placeholder of the barcode input field
|
|
8
14
|
BARCODE_DIALOG_PLACEHOLDER=Introducir c\u00F3digo de barras
|
|
9
15
|
|
|
16
|
+
#YMSG: Message in the manual barcode input dialog
|
|
10
17
|
BARCODE_DIALOG_MSG=Esc\u00E1ner no disponible
|
|
11
18
|
|
|
19
|
+
#XMSG: error message for updating parameter of Camera
|
|
12
20
|
BARCODE_DIALOG_CAMERA_UPDATE_PARAMETER_ERROR_MSG=El par\u00E1metro {0} est\u00E1 fuera de intervalo.
|
|
13
21
|
|
|
22
|
+
#XTIT: title of the scan barcode dialog
|
|
14
23
|
BARCODE_DIALOG_SCANNING_TITLE=Escanear c\u00F3digo de barras
|
|
15
24
|
|
|
25
|
+
#XTOL: Barcode Scanner Button tooltip
|
|
16
26
|
BARCODE_SCANNER_BUTTON_TOOLTIP=Bot\u00F3n del scanner de c\u00F3digos de barras
|
|
17
27
|
|
|
28
|
+
#XTIT: title of the scan bar busy dialog
|
|
18
29
|
BARCODE_DIALOG_BUSY_TITLE=Cargando bibliotecas
|
|
19
30
|
|
|
31
|
+
#XTXT: text of loading zxing-cpp in the scan bar busy dialog
|
|
20
32
|
BARCODE_DIALOG_BUSY_TEXT_ZXINGCPP=Cargando biblioteca ZXing-cpp...
|
|
@@ -1,20 +1,32 @@
|
|
|
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=Ingresar c\u00F3digo de barras
|
|
3
6
|
|
|
7
|
+
#XBUT: OK button in the manual barcode input dialog
|
|
4
8
|
BARCODE_DIALOG_OK=Aceptar
|
|
5
9
|
|
|
10
|
+
#XBUT: Cancel button in the manual barcode input dialog
|
|
6
11
|
BARCODE_DIALOG_CANCEL=Cancelar
|
|
7
12
|
|
|
13
|
+
#XFLD: Placeholder of the barcode input field
|
|
8
14
|
BARCODE_DIALOG_PLACEHOLDER=Ingresar c\u00F3digo de barras
|
|
9
15
|
|
|
16
|
+
#YMSG: Message in the manual barcode input dialog
|
|
10
17
|
BARCODE_DIALOG_MSG=El esc\u00E1ner no est\u00E1 disponible
|
|
11
18
|
|
|
19
|
+
#XMSG: error message for updating parameter of Camera
|
|
12
20
|
BARCODE_DIALOG_CAMERA_UPDATE_PARAMETER_ERROR_MSG=El par\u00E1metro {0} est\u00E1 fuera de intervalo.
|
|
13
21
|
|
|
22
|
+
#XTIT: title of the scan barcode dialog
|
|
14
23
|
BARCODE_DIALOG_SCANNING_TITLE=Escanear c\u00F3digo de barras
|
|
15
24
|
|
|
25
|
+
#XTOL: Barcode Scanner Button tooltip
|
|
16
26
|
BARCODE_SCANNER_BUTTON_TOOLTIP=Bot\u00F3n de escanear c\u00F3digo de barras
|
|
17
27
|
|
|
28
|
+
#XTIT: title of the scan bar busy dialog
|
|
18
29
|
BARCODE_DIALOG_BUSY_TITLE=Cargando bibliotecas
|
|
19
30
|
|
|
31
|
+
#XTXT: text of loading zxing-cpp in the scan bar busy dialog
|
|
20
32
|
BARCODE_DIALOG_BUSY_TEXT_ZXINGCPP=Cargando bibliotecas ZXing-cpp...
|
|
@@ -1,20 +1,32 @@
|
|
|
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=Sisestage v\u00F6\u00F6tkood
|
|
3
6
|
|
|
7
|
+
#XBUT: OK button in the manual barcode input dialog
|
|
4
8
|
BARCODE_DIALOG_OK=OK
|
|
5
9
|
|
|
10
|
+
#XBUT: Cancel button in the manual barcode input dialog
|
|
6
11
|
BARCODE_DIALOG_CANCEL=T\u00FChista
|
|
7
12
|
|
|
13
|
+
#XFLD: Placeholder of the barcode input field
|
|
8
14
|
BARCODE_DIALOG_PLACEHOLDER=Sisestage v\u00F6\u00F6tkood
|
|
9
15
|
|
|
16
|
+
#YMSG: Message in the manual barcode input dialog
|
|
10
17
|
BARCODE_DIALOG_MSG=Skanner pole saadaval
|
|
11
18
|
|
|
19
|
+
#XMSG: error message for updating parameter of Camera
|
|
12
20
|
BARCODE_DIALOG_CAMERA_UPDATE_PARAMETER_ERROR_MSG=Parameeter {0} pole vahemikus.
|
|
13
21
|
|
|
22
|
+
#XTIT: title of the scan barcode dialog
|
|
14
23
|
BARCODE_DIALOG_SCANNING_TITLE=Skaneeri v\u00F6\u00F6tkood
|
|
15
24
|
|
|
25
|
+
#XTOL: Barcode Scanner Button tooltip
|
|
16
26
|
BARCODE_SCANNER_BUTTON_TOOLTIP=V\u00F6\u00F6tkoodi skanneri nupp
|
|
17
27
|
|
|
28
|
+
#XTIT: title of the scan bar busy dialog
|
|
18
29
|
BARCODE_DIALOG_BUSY_TITLE=Teekide laadimine
|
|
19
30
|
|
|
31
|
+
#XTXT: text of loading zxing-cpp in the scan bar busy dialog
|
|
20
32
|
BARCODE_DIALOG_BUSY_TEXT_ZXINGCPP=ZXing-cpp teegi laadimine...
|
|
@@ -1,20 +1,32 @@
|
|
|
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=Sy\u00F6t\u00E4 viivakoodi
|
|
3
6
|
|
|
7
|
+
#XBUT: OK button in the manual barcode input dialog
|
|
4
8
|
BARCODE_DIALOG_OK=OK
|
|
5
9
|
|
|
10
|
+
#XBUT: Cancel button in the manual barcode input dialog
|
|
6
11
|
BARCODE_DIALOG_CANCEL=Keskeyt\u00E4
|
|
7
12
|
|
|
13
|
+
#XFLD: Placeholder of the barcode input field
|
|
8
14
|
BARCODE_DIALOG_PLACEHOLDER=Sy\u00F6t\u00E4 viivakoodi
|
|
9
15
|
|
|
16
|
+
#YMSG: Message in the manual barcode input dialog
|
|
10
17
|
BARCODE_DIALOG_MSG=Skanneri ei ole k\u00E4ytett\u00E4viss\u00E4
|
|
11
18
|
|
|
19
|
+
#XMSG: error message for updating parameter of Camera
|
|
12
20
|
BARCODE_DIALOG_CAMERA_UPDATE_PARAMETER_ERROR_MSG=Parametri {0} ei ole alueella.
|
|
13
21
|
|
|
22
|
+
#XTIT: title of the scan barcode dialog
|
|
14
23
|
BARCODE_DIALOG_SCANNING_TITLE=Lue viivakoodi
|
|
15
24
|
|
|
25
|
+
#XTOL: Barcode Scanner Button tooltip
|
|
16
26
|
BARCODE_SCANNER_BUTTON_TOOLTIP=Viivakoodinlukijan painike
|
|
17
27
|
|
|
28
|
+
#XTIT: title of the scan bar busy dialog
|
|
18
29
|
BARCODE_DIALOG_BUSY_TITLE=Ladataan kirjastoja
|
|
19
30
|
|
|
31
|
+
#XTXT: text of loading zxing-cpp in the scan bar busy dialog
|
|
20
32
|
BARCODE_DIALOG_BUSY_TEXT_ZXINGCPP=Ladataan ZXing-cpp-kirjasto...
|
|
@@ -1,20 +1,32 @@
|
|
|
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=Entrer code-barres
|
|
3
6
|
|
|
7
|
+
#XBUT: OK button in the manual barcode input dialog
|
|
4
8
|
BARCODE_DIALOG_OK=OK
|
|
5
9
|
|
|
10
|
+
#XBUT: Cancel button in the manual barcode input dialog
|
|
6
11
|
BARCODE_DIALOG_CANCEL=Annuler
|
|
7
12
|
|
|
13
|
+
#XFLD: Placeholder of the barcode input field
|
|
8
14
|
BARCODE_DIALOG_PLACEHOLDER=Entrer code-barres
|
|
9
15
|
|
|
16
|
+
#YMSG: Message in the manual barcode input dialog
|
|
10
17
|
BARCODE_DIALOG_MSG=Scanner indisponible
|
|
11
18
|
|
|
19
|
+
#XMSG: error message for updating parameter of Camera
|
|
12
20
|
BARCODE_DIALOG_CAMERA_UPDATE_PARAMETER_ERROR_MSG=Le param\u00E8tre {0} est en dehors de la plage.
|
|
13
21
|
|
|
22
|
+
#XTIT: title of the scan barcode dialog
|
|
14
23
|
BARCODE_DIALOG_SCANNING_TITLE=Scanner code-barres
|
|
15
24
|
|
|
25
|
+
#XTOL: Barcode Scanner Button tooltip
|
|
16
26
|
BARCODE_SCANNER_BUTTON_TOOLTIP=Bouton Scanner code-barres
|
|
17
27
|
|
|
28
|
+
#XTIT: title of the scan bar busy dialog
|
|
18
29
|
BARCODE_DIALOG_BUSY_TITLE=Chargement des biblioth\u00E8ques en cours
|
|
19
30
|
|
|
31
|
+
#XTXT: text of loading zxing-cpp in the scan bar busy dialog
|
|
20
32
|
BARCODE_DIALOG_BUSY_TEXT_ZXINGCPP=Chargement des biblioth\u00E8ques Zxing-cpp en cours...
|
|
@@ -1,20 +1,32 @@
|
|
|
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=Saisie du code \u00E0 barres
|
|
3
6
|
|
|
7
|
+
#XBUT: OK button in the manual barcode input dialog
|
|
4
8
|
BARCODE_DIALOG_OK=OK
|
|
5
9
|
|
|
10
|
+
#XBUT: Cancel button in the manual barcode input dialog
|
|
6
11
|
BARCODE_DIALOG_CANCEL=Annuler
|
|
7
12
|
|
|
13
|
+
#XFLD: Placeholder of the barcode input field
|
|
8
14
|
BARCODE_DIALOG_PLACEHOLDER=Saisir le code \u00E0 barres
|
|
9
15
|
|
|
16
|
+
#YMSG: Message in the manual barcode input dialog
|
|
10
17
|
BARCODE_DIALOG_MSG=Scanneur indisponible
|
|
11
18
|
|
|
19
|
+
#XMSG: error message for updating parameter of Camera
|
|
12
20
|
BARCODE_DIALOG_CAMERA_UPDATE_PARAMETER_ERROR_MSG=Le param\u00E8tre {0} est en dehors de la plage.
|
|
13
21
|
|
|
22
|
+
#XTIT: title of the scan barcode dialog
|
|
14
23
|
BARCODE_DIALOG_SCANNING_TITLE=Scanner le code \u00E0 barres
|
|
15
24
|
|
|
25
|
+
#XTOL: Barcode Scanner Button tooltip
|
|
16
26
|
BARCODE_SCANNER_BUTTON_TOOLTIP=Bouton Scanner code \u00E0 barres
|
|
17
27
|
|
|
28
|
+
#XTIT: title of the scan bar busy dialog
|
|
18
29
|
BARCODE_DIALOG_BUSY_TITLE=Chargement des biblioth\u00E8ques en cours
|
|
19
30
|
|
|
31
|
+
#XTXT: text of loading zxing-cpp in the scan bar busy dialog
|
|
20
32
|
BARCODE_DIALOG_BUSY_TEXT_ZXINGCPP=Chargement de la biblioth\u00E8que Zxing-cpp en cours...
|
|
@@ -1,20 +1,32 @@
|
|
|
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=\u092C\u093E\u0930 \u0915\u094B\u0921 \u0926\u0930\u094D\u091C \u0915\u0930\u0947\u0902
|
|
3
6
|
|
|
7
|
+
#XBUT: OK button in the manual barcode input dialog
|
|
4
8
|
BARCODE_DIALOG_OK=\u0920\u0940\u0915
|
|
5
9
|
|
|
10
|
+
#XBUT: Cancel button in the manual barcode input dialog
|
|
6
11
|
BARCODE_DIALOG_CANCEL=\u0930\u0926\u094D\u0926 \u0915\u0930\u0947\u0902
|
|
7
12
|
|
|
13
|
+
#XFLD: Placeholder of the barcode input field
|
|
8
14
|
BARCODE_DIALOG_PLACEHOLDER=\u092C\u093E\u0930\u0915\u094B\u0921 \u0926\u0930\u094D\u091C \u0915\u0930\u0947\u0902
|
|
9
15
|
|
|
16
|
+
#YMSG: Message in the manual barcode input dialog
|
|
10
17
|
BARCODE_DIALOG_MSG=\u0938\u094D\u0915\u0948\u0928\u0930 \u0909\u092A\u0932\u092C\u094D\u0918 \u0928\u0939\u0940\u0902
|
|
11
18
|
|
|
19
|
+
#XMSG: error message for updating parameter of Camera
|
|
12
20
|
BARCODE_DIALOG_CAMERA_UPDATE_PARAMETER_ERROR_MSG={0} \u092A\u0948\u0930\u093E\u092E\u0940\u091F\u0930 \u0936\u094D\u0930\u0947\u0923\u0940 \u0915\u0947 \u092C\u093E\u0939\u0930 \u0939\u0948.
|
|
13
21
|
|
|
22
|
+
#XTIT: title of the scan barcode dialog
|
|
14
23
|
BARCODE_DIALOG_SCANNING_TITLE=\u092C\u093E\u0930\u0915\u094B\u0921 \u0938\u094D\u0915\u0948\u0928 \u0915\u0930\u0947\u0902
|
|
15
24
|
|
|
25
|
+
#XTOL: Barcode Scanner Button tooltip
|
|
16
26
|
BARCODE_SCANNER_BUTTON_TOOLTIP=\u092C\u093E\u0930 \u0915\u094B\u0921 \u0938\u094D\u0915\u0948\u0928\u0930 \u092C\u091F\u0928
|
|
17
27
|
|
|
28
|
+
#XTIT: title of the scan bar busy dialog
|
|
18
29
|
BARCODE_DIALOG_BUSY_TITLE=\u0932\u093E\u0907\u092C\u094D\u0930\u0947\u0930\u0940 \u0932\u094B\u0921 \u0915\u0930\u0947\u0902
|
|
19
30
|
|
|
31
|
+
#XTXT: text of loading zxing-cpp in the scan bar busy dialog
|
|
20
32
|
BARCODE_DIALOG_BUSY_TEXT_ZXINGCPP=ZXing-cpp \u0932\u093E\u0907\u092C\u094D\u0930\u0947\u0930\u0940 \u0932\u094B\u0921 \u0939\u094B \u0930\u0939\u0940 \u0939\u0948...
|