@sapui5/sap.ndc 1.120.7 → 1.120.9

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.
Files changed (49) hide show
  1. package/package.json +1 -1
  2. package/src/sap/ndc/.library +1 -1
  3. package/src/sap/ndc/BarcodeScanner.js +14 -7
  4. package/src/sap/ndc/library.js +1 -1
  5. package/src/sap/ndc/messagebundle_ar.properties +54 -0
  6. package/src/sap/ndc/messagebundle_bg.properties +54 -0
  7. package/src/sap/ndc/messagebundle_cs.properties +54 -0
  8. package/src/sap/ndc/messagebundle_cy.properties +54 -0
  9. package/src/sap/ndc/messagebundle_da.properties +54 -0
  10. package/src/sap/ndc/messagebundle_de.properties +54 -0
  11. package/src/sap/ndc/messagebundle_el.properties +54 -0
  12. package/src/sap/ndc/messagebundle_en_GB.properties +54 -0
  13. package/src/sap/ndc/messagebundle_es.properties +54 -0
  14. package/src/sap/ndc/messagebundle_es_MX.properties +54 -0
  15. package/src/sap/ndc/messagebundle_et.properties +54 -0
  16. package/src/sap/ndc/messagebundle_fi.properties +54 -0
  17. package/src/sap/ndc/messagebundle_fr.properties +54 -0
  18. package/src/sap/ndc/messagebundle_fr_CA.properties +54 -0
  19. package/src/sap/ndc/messagebundle_hi.properties +54 -0
  20. package/src/sap/ndc/messagebundle_hr.properties +54 -0
  21. package/src/sap/ndc/messagebundle_hu.properties +54 -0
  22. package/src/sap/ndc/messagebundle_id.properties +54 -0
  23. package/src/sap/ndc/messagebundle_it.properties +54 -0
  24. package/src/sap/ndc/messagebundle_iw.properties +54 -0
  25. package/src/sap/ndc/messagebundle_ja.properties +54 -0
  26. package/src/sap/ndc/messagebundle_kk.properties +54 -0
  27. package/src/sap/ndc/messagebundle_ko.properties +54 -0
  28. package/src/sap/ndc/messagebundle_lt.properties +54 -0
  29. package/src/sap/ndc/messagebundle_lv.properties +54 -0
  30. package/src/sap/ndc/messagebundle_mk.properties +54 -0
  31. package/src/sap/ndc/messagebundle_ms.properties +54 -0
  32. package/src/sap/ndc/messagebundle_nl.properties +54 -0
  33. package/src/sap/ndc/messagebundle_no.properties +54 -0
  34. package/src/sap/ndc/messagebundle_pl.properties +54 -0
  35. package/src/sap/ndc/messagebundle_pt.properties +54 -0
  36. package/src/sap/ndc/messagebundle_pt_PT.properties +54 -0
  37. package/src/sap/ndc/messagebundle_ro.properties +54 -0
  38. package/src/sap/ndc/messagebundle_ru.properties +54 -0
  39. package/src/sap/ndc/messagebundle_sh.properties +55 -1
  40. package/src/sap/ndc/messagebundle_sk.properties +54 -0
  41. package/src/sap/ndc/messagebundle_sl.properties +54 -0
  42. package/src/sap/ndc/messagebundle_sr.properties +104 -0
  43. package/src/sap/ndc/messagebundle_sv.properties +54 -0
  44. package/src/sap/ndc/messagebundle_th.properties +54 -0
  45. package/src/sap/ndc/messagebundle_tr.properties +54 -0
  46. package/src/sap/ndc/messagebundle_uk.properties +54 -0
  47. package/src/sap/ndc/messagebundle_vi.properties +54 -0
  48. package/src/sap/ndc/messagebundle_zh_CN.properties +54 -0
  49. package/src/sap/ndc/messagebundle_zh_TW.properties +54 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sapui5/sap.ndc",
3
- "version": "1.120.7",
3
+ "version": "1.120.9",
4
4
  "description": "SAPUI5 Library sap.ndc",
5
5
  "homepage": "https://sap.github.io/ui5-tooling/pages/SAPUI5/",
6
6
  "author": "SAP SE (https://www.sap.com)",
@@ -5,7 +5,7 @@
5
5
  <vendor>SAP SE</vendor>
6
6
  <copyright>SAPUI5
7
7
  * (c) Copyright 2009-2023 SAP SE. All rights reserved.</copyright>
8
- <version>1.120.7</version>
8
+ <version>1.120.9</version>
9
9
 
10
10
  <documentation>SAPUI5 library with controls with native device capabilities.</documentation>
11
11
 
@@ -122,7 +122,6 @@ sap.ui.define([
122
122
  title: "", //oDialogTitle
123
123
  onLiveUpdate: null, //Live update function
124
124
  barcodeOverlaySetup: false,
125
- isNoScanner: false,
126
125
  scanningStartTime: 0,
127
126
  keepCameraScan: false,
128
127
  isDecodePaused: false,
@@ -390,8 +389,16 @@ sap.ui.define([
390
389
  // set the feature available to false since the feature flag is false
391
390
  oModel.setProperty("/available", false);
392
391
  oStatusModel.setProperty("/available", false);
392
+ disableZXingCPP();
393
+ }
394
+
395
+ /**
396
+ * Disable ZXingCPP
397
+ * @private
398
+ */
399
+ function disableZXingCPP() {
393
400
  setScannerAPIUnAvailable("ZXingCPP");
394
- Log.debug("BarcodeScanner.disableFeatureAPIs: Set status of Feature scanner APIs (ZXingCPP) to unavailable!");
401
+ Log.debug("BarcodeScanner.disableZXingCPP: Set status of Feature scanner APIs (ZXingCPP) to unavailable!");
395
402
  }
396
403
 
397
404
  /**
@@ -411,7 +418,7 @@ sap.ui.define([
411
418
  }
412
419
  Log.debug("BarcodeScanner.initScannerAPIs: Cordova BarcodeScanner plugin is available!");
413
420
  // disable feature scanner APIs (ZXingCPP)
414
- disableFeatureAPIs();
421
+ disableZXingCPP();
415
422
  } else {
416
423
  Log.debug("BarcodeScanner.initScannerAPIs: Cordova BarcodeScanner plugin is unavailable!");
417
424
  setScannerAPIUnAvailable("Cordova");
@@ -1386,7 +1393,7 @@ sap.ui.define([
1386
1393
  if (oStream) {
1387
1394
  playbackVideoAndDecode(bAttachOrientationChangeListener);
1388
1395
  } else {
1389
- oModel.setProperty("/scanDialog/isNoScanner", true);
1396
+ oScanDialog && oScanDialog.getModel().setProperty("/isNoScanner", true);
1390
1397
  openBarcodeInputDialog(oResourceModel.getResourceBundle().getText('BARCODE_DIALOG_CAMERA_STREAM_ERROR_MSG'));
1391
1398
  }
1392
1399
  }
@@ -1399,7 +1406,7 @@ sap.ui.define([
1399
1406
  delete oModel.getProperty("/config/defaultConstraints/video").zoom;
1400
1407
  openCamera();
1401
1408
  } else {
1402
- oModel.setProperty("/scanDialog/isNoScanner", true);
1409
+ oScanDialog && oScanDialog.getModel().setProperty("/isNoScanner", true);
1403
1410
  openBarcodeInputDialog(error);
1404
1411
  }
1405
1412
  }
@@ -1561,9 +1568,9 @@ sap.ui.define([
1561
1568
  oModel.setProperty("/scanDialog/barcodeOverlaySetup", false);
1562
1569
  } else {
1563
1570
  if (oModel.getProperty("/available")) {
1564
- oModel.setProperty("/scanDialog/isNoScanner", false);
1571
+ oScanDialog.getModel().setProperty("/isNoScanner", false);
1565
1572
  } else {
1566
- oModel.setProperty("/scanDialog/isNoScanner", true);
1573
+ oScanDialog.getModel().setProperty("/isNoScanner", true);
1567
1574
  }
1568
1575
  openBarcodeInputDialog();
1569
1576
  }
@@ -32,7 +32,7 @@ sap.ui.define([
32
32
  ],
33
33
  elements: [],
34
34
  noLibraryCSS: true,
35
- version: "1.120.7"
35
+ version: "1.120.9"
36
36
  });
37
37
 
38
38
  return thisLib;
@@ -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=\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=\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...
21
33
 
34
+ #XMSG: error message for opening flashlight
22
35
  BARCODE_DIALOG_OPEN_FLASHLIGHT_ERROR_MSG=\u062A\u0639\u0630\u0631 \u0641\u062A\u062D \u0627\u0644\u0645\u0635\u0628\u0627\u062D \u0627\u0644\u0643\u0627\u0634\u0641
23
36
 
37
+ #XMSG: error message for closing flashlight
24
38
  BARCODE_DIALOG_CLOSE_FLASHLIGHT_ERROR_MSG=\u062A\u0639\u0630\u0631 \u0625\u063A\u0644\u0627\u0642 \u0627\u0644\u0645\u0635\u0628\u0627\u062D \u0627\u0644\u0643\u0627\u0634\u0641
25
39
 
40
+ #XTOL: Barcode Scanner Stop Scanning Button tooltip
26
41
  BARCODE_DIALOG_STOP_SCANNING_BUTTON_TOOLTIP=\u0625\u064A\u0642\u0627\u0641 \u0627\u0644\u0645\u0633\u062D \u0627\u0644\u0636\u0648\u0626\u064A \u0648\u0625\u063A\u0644\u0627\u0642 \u0627\u0644\u0643\u0627\u0645\u064A\u0631\u0627
27
42
 
43
+ #XTOL: Barcode Scanner scan result Button tooltip
28
44
  BARCODE_DIALOG_SCAN_RESULT_BUTTON_TOOLTIP=\u0646\u062A\u064A\u062C\u0629 \u0627\u0644\u0645\u0633\u062D \u0627\u0644\u0636\u0648\u0626\u064A {0}
29
45
 
46
+ #XTOL: Barcode Scanner Select Image Button tooltip
30
47
  BARCODE_DIALOG_SELECT_IMAGE_BUTTON_TOOLTIP=\u062A\u062D\u062F\u064A\u062F \u0635\u0648\u0631\u0629 \u0644\u0641\u062D\u0635\u0647\u0627
31
48
 
49
+ #XTOL: Barcode Scanner Scan Button tooltip
32
50
  BARCODE_DIALOG_SCAN_BUTTON_TOOLTIP_START=\u0628\u062F\u0621 \u0627\u0644\u0645\u0633\u062D \u0627\u0644\u0636\u0648\u0626\u064A \u0628\u0627\u0644\u0643\u0627\u0645\u064A\u0631\u0627
33
51
 
52
+ #XTOL: Barcode Scanner Scan Button tooltip
34
53
  BARCODE_DIALOG_SCAN_BUTTON_TOOLTIP_PAUSE=\u0625\u064A\u0642\u0627\u0641 \u0627\u0644\u0645\u0633\u062D \u0627\u0644\u0636\u0648\u0626\u064A \u0628\u0627\u0644\u0643\u0627\u0645\u064A\u0631\u0627 \u0645\u0624\u0642\u062A\u064B\u0627
35
54
 
55
+ #XTIT: title of the scan image busy dialog
36
56
  BARCODE_DIALOG_SCAN_IMAGE_BUSY_TITLE=\u062C\u0627\u0631\u064D \u0641\u062D\u0635 \u0627\u0644\u0635\u0648\u0631\u0629 \u0627\u0644\u0645\u062D\u062F\u062F\u0629
37
57
 
58
+ #XMSG: error message for loading image failed
38
59
  BARCODE_DIALOG_SCAN_IMAGE_LOAD_FAILED_MSG=\u062A\u0639\u0630\u0631 \u062A\u062D\u0645\u064A\u0644 \u0627\u0644\u0635\u0648\u0631\u0629
39
60
 
61
+ #XMSG: error message for compressing image failed
40
62
  BARCODE_DIALOG_SCAN_IMAGE_COMPRESS_FAILED_MSG=\u062A\u0639\u0630\u0631 \u0636\u063A\u0637 \u0627\u0644\u0635\u0648\u0631\u0629
41
63
 
64
+ #XMSG: error message for scanning image
42
65
  BARCODE_DIALOG_SCAN_IMAGE_ERROR_MSG=\u0644\u0627 \u064A\u0645\u0643\u0646 \u0641\u062D\u0635 \u0627\u0644\u0635\u0648\u0631\u0629 \u0627\u0644\u0645\u062D\u062F\u062F\u0629
43
66
 
67
+ #XMSG: message for use original image data to decode
44
68
  BARCODE_DIALOG_SCAN_WITH_ORIGINAL_IMAGE_CONFIRM_MSG=\u0641\u0634\u0644 \u0641\u062D\u0635 \u0627\u0644\u0635\u0648\u0631\u0629 \u0628\u0627\u0644\u0628\u064A\u0627\u0646\u0627\u062A \u0627\u0644\u0645\u0636\u063A\u0648\u0637\u0629. \u0647\u0644 \u062A\u0631\u064A\u062F \u0641\u062D\u0635 \u0627\u0644\u0635\u0648\u0631\u0629 \u0645\u0631\u0629 \u0623\u062E\u0631\u0649 \u0628\u0627\u0644\u0628\u064A\u0627\u0646\u0627\u062A \u0627\u0644\u0623\u0635\u0644\u064A\u0629\u061F \u0644\u0627\u062D\u0638 \u0623\u0646 \u0647\u0630\u0627 \u0633\u064A\u0633\u062A\u063A\u0631\u0642 \u0648\u0642\u062A\u064B\u0627 \u0623\u0637\u0648\u0644 \u0628\u0643\u062B\u064A\u0631 \u0645\u0646 \u0627\u0644\u0628\u064A\u0627\u0646\u0627\u062A \u0627\u0644\u0645\u0636\u063A\u0648\u0637\u0629.
45
69
 
70
+ #XTOL: Barcode Scanner flashlight Button tooltip OPEN
46
71
  BARCODE_DIALOG_SELECT_FLASHLIGHT_BUTTON_TOOLTIP_OPEN=\u0641\u062A\u062D \u0627\u0644\u0645\u0635\u0628\u0627\u062D \u0627\u0644\u0643\u0627\u0634\u0641
47
72
 
73
+ #XTOL: Barcode Scanner flashlight Button tooltip CLOSE
48
74
  BARCODE_DIALOG_SELECT_FLASHLIGHT_BUTTON_TOOLTIP_CLOSE=\u0625\u063A\u0644\u0627\u0642 \u0627\u0644\u0645\u0635\u0628\u0627\u062D \u0627\u0644\u0643\u0627\u0634\u0641
49
75
 
76
+ #XTXT: text of multi barcodes label
50
77
  BARCODE_DIALOG_MULTI_BARCODES_LABEL_TEXT=\u062A\u0645 \u0645\u0633\u062D \u0627\u0644\u0639\u062F\u064A\u062F \u0645\u0646 \u0623\u0634\u0631\u0637\u0629 \u0627\u0644\u0631\u0645\u0648\u0632 \u0636\u0648\u0626\u064A\u064B\u0627. \u062D\u062F\u062F \u0634\u0631\u064A\u0637 \u0631\u0645\u0648\u0632 \u0648\u0627\u062D\u062F\u064B\u0627 \u0644\u0641\u062A\u062D\u0647.
78
+
79
+ #XMSG: error message for the stream of Camera
80
+ BARCODE_DIALOG_CAMERA_STREAM_ERROR_MSG=\u0644\u0627 \u064A\u0645\u0643\u0646 \u0627\u0644\u062D\u0635\u0648\u0644 \u0639\u0644\u0649 \u0627\u0644\u062A\u062F\u0641\u0642.
81
+
82
+ #XMSG: error message for User Media
83
+ BARCODE_DIALOG_CAMERA_OTHER_ERROR_MSG=\u0648\u0627\u062C\u0647 \u0627\u0644\u0623\u0633\u0644\u0648\u0628 getUserMedia \u062E\u0637\u0623. {0}
84
+
85
+ #XMSG: AbortError message for User Media
86
+ BARCODE_DIALOG_CAMERA_ABORTERROR_ERROR_MSG=AbortError\: \u062A\u0645 \u0645\u0646\u0639 \u0627\u0633\u062A\u062E\u062F\u0627\u0645 \u0627\u0644\u062C\u0647\u0627\u0632 \u0644\u0648\u062C\u0648\u062F \u0645\u0634\u0643\u0644\u0629.
87
+
88
+ #XMSG: NotAllowedError message for User Media
89
+ BARCODE_DIALOG_CAMERA_NOTALLOWEDERROR_ERROR_MSG=NotAllowedError\: \u062A\u0645 \u0631\u0641\u0636 \u0627\u0644\u0625\u0630\u0646.
90
+
91
+ #XMSG: NotFoundError message for User Media
92
+ BARCODE_DIALOG_CAMERA_NOTFOUNDERROR_ERROR_MSG=NotFoundError\: \u0644\u0645 \u064A\u062A\u0645 \u0627\u0644\u0639\u062B\u0648\u0631 \u0639\u0644\u0649 \u0627\u0644\u062C\u0647\u0627\u0632 \u0627\u0644\u0645\u0637\u0644\u0648\u0628.
93
+
94
+ #XMSG: NotReadableError message for User Media
95
+ BARCODE_DIALOG_CAMERA_NOTREADABLEERROR_ERROR_MSG=NotReadableError\: \u0627\u0644\u062C\u0647\u0627\u0632 \u0642\u064A\u062F \u0627\u0644\u0627\u0633\u062A\u062E\u062F\u0627\u0645.
96
+
97
+ #XMSG: OverconstrainedError message for User Media
98
+ BARCODE_DIALOG_CAMERA_OVERCONSTRAINEDERROR_ERROR_MSG=OverconstrainedError\: \u062A\u0639\u0630\u0631 \u0627\u0633\u062A\u064A\u0641\u0627\u0621 \u0627\u0644\u0642\u064A\u0648\u062F.
99
+
100
+ #XMSG: SecurityError message for User Media
101
+ BARCODE_DIALOG_CAMERA_SECURITYERROR_ERROR_MSG=SecurityError\: \u062A\u0645 \u062A\u0639\u0637\u064A\u0644 \u062F\u0639\u0645 \u0648\u0633\u0627\u0626\u0637 \u0627\u0644\u0645\u0633\u062A\u062E\u062F\u0645 \u0641\u064A \u0627\u0644\u0645\u0633\u062A\u0646\u062F.
102
+
103
+ #XMSG: TypeError message for User Media
104
+ BARCODE_DIALOG_CAMERA_TYPEERROR_ERROR_MSG=TypeError\: \u0642\u0627\u0626\u0645\u0629 \u0627\u0644\u0642\u064A\u0648\u062F \u0641\u0627\u0631\u063A\u0629 \u0623\u0648 \u062A\u0645 \u062A\u0639\u064A\u064A\u0646 \u062C\u0645\u064A\u0639 \u0627\u0644\u0642\u064A\u0648\u062F \u0639\u0644\u0649 "\u062E\u0637\u0623"\u060C \u0623\u0648 \u062A\u0645 \u0627\u0633\u062A\u062F\u0639\u0627\u0621 \u0627\u0644\u0623\u0633\u0644\u0648\u0628 getUserMedia \u0641\u064A \u0633\u064A\u0627\u0642 \u063A\u064A\u0631 \u0622\u0645\u0646.
@@ -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=\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\u0430\u0440\u043A\u043E\u0434 \u0441\u043A\u0435\u043D\u0435\u0440
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...
21
33
 
34
+ #XMSG: error message for opening flashlight
22
35
  BARCODE_DIALOG_OPEN_FLASHLIGHT_ERROR_MSG=\u0424\u0435\u043D\u0435\u0440\u0447\u0435\u0442\u043E \u043D\u0435 \u043C\u043E\u0436\u0435 \u0434\u0430 \u0431\u044A\u0434\u0435 \u043E\u0442\u0432\u043E\u0440\u0435\u043D\u043E
23
36
 
37
+ #XMSG: error message for closing flashlight
24
38
  BARCODE_DIALOG_CLOSE_FLASHLIGHT_ERROR_MSG=\u0424\u0435\u043D\u0435\u0440\u0447\u0435\u0442\u043E \u043D\u0435 \u043C\u043E\u0436\u0435 \u0434\u0430 \u0431\u044A\u0434\u0435 \u0437\u0430\u0442\u0432\u043E\u0440\u0435\u043D\u043E
25
39
 
40
+ #XTOL: Barcode Scanner Stop Scanning Button tooltip
26
41
  BARCODE_DIALOG_STOP_SCANNING_BUTTON_TOOLTIP=\u0421\u043F\u0440\u0435\u0442\u0435 \u0441\u043A\u0430\u043D\u0438\u0440\u0430\u043D\u0435\u0442\u043E \u0438 \u0437\u0430\u0442\u0432\u043E\u0440\u0435\u0442\u0435 \u043A\u0430\u043C\u0435\u0440\u0430\u0442\u0430
27
42
 
43
+ #XTOL: Barcode Scanner scan result Button tooltip
28
44
  BARCODE_DIALOG_SCAN_RESULT_BUTTON_TOOLTIP=\u0420\u0435\u0437\u0443\u043B\u0442\u0430\u0442 \u043E\u0442 \u0441\u043A\u0430\u043D\u0438\u0440\u0430\u043D\u0435 {0}
29
45
 
46
+ #XTOL: Barcode Scanner Select Image Button tooltip
30
47
  BARCODE_DIALOG_SELECT_IMAGE_BUTTON_TOOLTIP=\u0418\u0437\u0431\u0435\u0440\u0435\u0442\u0435 \u0438\u0437\u043E\u0431\u0440\u0430\u0436\u0435\u043D\u0438\u0435 \u0437\u0430 \u0441\u043A\u0430\u043D\u0438\u0440\u0430\u043D\u0435
31
48
 
49
+ #XTOL: Barcode Scanner Scan Button tooltip
32
50
  BARCODE_DIALOG_SCAN_BUTTON_TOOLTIP_START=\u041D\u0430\u0447\u0430\u043B\u043E \u043D\u0430 \u0441\u043A\u0430\u043D\u0438\u0440\u0430\u043D\u0435\u0442\u043E \u043D\u0430 \u043A\u0430\u043C\u0435\u0440\u0430\u0442\u0430
33
51
 
52
+ #XTOL: Barcode Scanner Scan Button tooltip
34
53
  BARCODE_DIALOG_SCAN_BUTTON_TOOLTIP_PAUSE=\u041F\u0430\u0443\u0437\u0430 \u043D\u0430 \u0441\u043A\u0430\u043D\u0438\u0440\u0430\u043D\u0435\u0442\u043E \u043D\u0430 \u043A\u0430\u043C\u0435\u0440\u0430\u0442\u0430
35
54
 
55
+ #XTIT: title of the scan image busy dialog
36
56
  BARCODE_DIALOG_SCAN_IMAGE_BUSY_TITLE=\u0421\u043A\u0430\u043D\u0438\u0440\u0430\u043D\u0435 \u043D\u0430 \u0438\u0437\u0431\u0440\u0430\u043D\u043E\u0442\u043E \u0438\u0437\u043E\u0431\u0440\u0430\u0436\u0435\u043D\u0438\u0435
37
57
 
58
+ #XMSG: error message for loading image failed
38
59
  BARCODE_DIALOG_SCAN_IMAGE_LOAD_FAILED_MSG=\u0418\u0437\u043E\u0431\u0440\u0430\u0436\u0435\u043D\u0438\u0435 \u043D\u0435 \u043C\u043E\u0436\u0435 \u0434\u0430 \u0431\u044A\u0434\u0435 \u0437\u0430\u0440\u0435\u0434\u0435\u043D\u043E
39
60
 
61
+ #XMSG: error message for compressing image failed
40
62
  BARCODE_DIALOG_SCAN_IMAGE_COMPRESS_FAILED_MSG=\u0418\u0437\u043E\u0431\u0440\u0430\u0436\u0435\u043D\u0438\u0435\u0442\u043E \u043D\u0435 \u043C\u043E\u0436\u0435 \u0434\u0430 \u0431\u044A\u0434\u0435 \u043A\u043E\u043C\u043F\u0440\u0435\u0441\u0438\u0440\u0430\u043D\u043E
41
63
 
64
+ #XMSG: error message for scanning image
42
65
  BARCODE_DIALOG_SCAN_IMAGE_ERROR_MSG=\u0418\u0437\u0431\u0440\u0430\u043D\u043E\u0442\u043E \u0438\u0437\u043E\u0431\u0440\u0430\u0436\u0435\u043D\u0438\u0435 \u043D\u0435 \u043C\u043E\u0436\u0435 \u0434\u0430 \u0431\u044A\u0434\u0435 \u0441\u043A\u0430\u043D\u0438\u0440\u0430\u043D\u043E
43
66
 
67
+ #XMSG: message for use original image data to decode
44
68
  BARCODE_DIALOG_SCAN_WITH_ORIGINAL_IMAGE_CONFIRM_MSG=\u0421\u043A\u0430\u043D\u0438\u0440\u0430\u043D\u0435\u0442\u043E \u043D\u0430 \u0438\u0437\u043E\u0431\u0440\u0430\u0436\u0435\u043D\u0438\u0435\u0442\u043E \u0441 \u043A\u043E\u043C\u043F\u0440\u0435\u0441\u0438\u0440\u0430\u043D\u0438 \u0434\u0430\u043D\u043D\u0438 \u0435 \u043D\u0435\u0443\u0441\u043F\u0435\u0448\u043D\u043E. \u0416\u0435\u043B\u0430\u0435\u0442\u0435 \u043B\u0438 \u0434\u0430 \u0441\u043A\u0430\u043D\u0438\u0440\u0430\u0442\u0435 \u0438\u0437\u043E\u0431\u0440\u0430\u0436\u0435\u043D\u0438\u0435\u0442\u043E \u043E\u0442\u043D\u043E\u0432\u043E \u0441 \u043F\u044A\u0440\u0432\u043E\u043D\u0430\u0447\u0430\u043B\u043D\u0438\u0442\u0435 \u0434\u0430\u043D\u043D\u0438? \u0418\u043C\u0430\u0439\u0442\u0435 \u043F\u0440\u0435\u0434\u0432\u0438\u0434, \u0447\u0435 \u0442\u043E\u0432\u0430 \u0449\u0435 \u043E\u0442\u043D\u0435\u043C\u0435 \u043F\u043E\u0432\u0435\u0447\u0435 \u043E\u0442\u043A\u043E\u043B\u043A\u043E\u0442\u043E \u0441 \u043A\u043E\u043C\u043F\u0440\u0435\u0441\u0438\u0440\u0430\u043D\u0438\u0442\u0435 \u0434\u0430\u043D\u043D\u0438.
45
69
 
70
+ #XTOL: Barcode Scanner flashlight Button tooltip OPEN
46
71
  BARCODE_DIALOG_SELECT_FLASHLIGHT_BUTTON_TOOLTIP_OPEN=\u041E\u0442\u0432\u0430\u0440\u044F\u043D\u0435 \u043D\u0430 \u0444\u0435\u043D\u0435\u0440\u0447\u0435
47
72
 
73
+ #XTOL: Barcode Scanner flashlight Button tooltip CLOSE
48
74
  BARCODE_DIALOG_SELECT_FLASHLIGHT_BUTTON_TOOLTIP_CLOSE=\u0417\u0430\u0442\u0432\u0430\u0440\u044F\u043D\u0435 \u043D\u0430 \u0444\u0435\u043D\u0435\u0440\u0447\u0435
49
75
 
76
+ #XTXT: text of multi barcodes label
50
77
  BARCODE_DIALOG_MULTI_BARCODES_LABEL_TEXT=\u0421\u043A\u0430\u043D\u0438\u0440\u0430\u043D\u0435 \u043D\u0430 \u043C\u043D\u043E\u0436\u0435\u0441\u0442\u0432\u043E \u0431\u0430\u0440\u043A\u043E\u0434\u043E\u0432\u0435. \u0418\u0437\u0431\u0435\u0440\u0435\u0442\u0435 \u0435\u0434\u0438\u043D, \u0437\u0430 \u0434\u0430 \u0433\u043E \u043E\u0442\u0432\u043E\u0440\u0438\u0442\u0435.
78
+
79
+ #XMSG: error message for the stream of Camera
80
+ BARCODE_DIALOG_CAMERA_STREAM_ERROR_MSG=\u041D\u0435 \u0435 \u0432\u044A\u0437\u043C\u043E\u0436\u043D\u043E \u0434\u0430 \u0441\u0435 \u043F\u043E\u043B\u0443\u0447\u0438 \u043F\u043E\u0442\u043E\u043A\u0430.
81
+
82
+ #XMSG: error message for User Media
83
+ BARCODE_DIALOG_CAMERA_OTHER_ERROR_MSG=\u0412\u044A\u0437\u043D\u0438\u043A\u043D\u0430 \u0433\u0440\u0435\u0448\u043A\u0430 \u0437\u0430 \u043C\u0435\u0442\u043E\u0434\u0430 getUserMedia. {0}
84
+
85
+ #XMSG: AbortError message for User Media
86
+ BARCODE_DIALOG_CAMERA_ABORTERROR_ERROR_MSG=AbortError\: \u041F\u0440\u043E\u0431\u043B\u0435\u043C \u043F\u0440\u0435\u0447\u0438 \u043D\u0430 \u0438\u0437\u043F\u043E\u043B\u0437\u0432\u0430\u043D\u0435\u0442\u043E \u043D\u0430 \u0443\u0441\u0442\u0440\u043E\u0439\u0441\u0442\u0432\u043E\u0442\u043E.
87
+
88
+ #XMSG: NotAllowedError message for User Media
89
+ BARCODE_DIALOG_CAMERA_NOTALLOWEDERROR_ERROR_MSG=NotAllowedError\: \u0420\u0430\u0437\u0440\u0435\u0448\u0435\u043D\u0438\u0435\u0442\u043E \u0435 \u043E\u0442\u043A\u0430\u0437\u0430\u043D\u043E.
90
+
91
+ #XMSG: NotFoundError message for User Media
92
+ BARCODE_DIALOG_CAMERA_NOTFOUNDERROR_ERROR_MSG=NotFoundError\: \u0422\u044A\u0440\u0441\u0435\u043D\u043E\u0442\u043E \u0443\u0441\u0442\u0440\u043E\u0439\u0441\u0442\u0432\u043E \u043D\u0435 \u0435 \u043D\u0430\u043C\u0435\u0440\u0435\u043D\u043E.
93
+
94
+ #XMSG: NotReadableError message for User Media
95
+ BARCODE_DIALOG_CAMERA_NOTREADABLEERROR_ERROR_MSG=NotReadableError\: \u0423\u0441\u0442\u0440\u043E\u0439\u0441\u0442\u0432\u043E\u0442\u043E \u0441\u0435 \u0438\u0437\u043F\u043E\u043B\u0437\u0432\u0430.
96
+
97
+ #XMSG: OverconstrainedError message for User Media
98
+ BARCODE_DIALOG_CAMERA_OVERCONSTRAINEDERROR_ERROR_MSG=OverconstrainedError\: \u041E\u0433\u0440\u0430\u043D\u0438\u0447\u0435\u043D\u0438\u044F\u0442\u0430 \u043D\u0435 \u0441\u0430 \u0441\u043F\u0430\u0437\u0435\u043D\u0438.
99
+
100
+ #XMSG: SecurityError message for User Media
101
+ BARCODE_DIALOG_CAMERA_SECURITYERROR_ERROR_MSG=SecurityError\: \u041F\u043E\u0434\u0434\u0440\u044A\u0436\u043A\u0430\u0442\u0430 \u043D\u0430 \u043F\u043E\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043B\u0441\u043A\u0438 \u043C\u0435\u0434\u0438\u0438 \u0435 \u0434\u0435\u0437\u0430\u043A\u0442\u0438\u0432\u0438\u0440\u0430\u043D\u0430 \u0432 \u0434\u043E\u043A\u0443\u043C\u0435\u043D\u0442\u0430.
102
+
103
+ #XMSG: TypeError message for User Media
104
+ BARCODE_DIALOG_CAMERA_TYPEERROR_ERROR_MSG=TypeError\: \u041F\u0440\u0430\u0437\u0435\u043D \u0441\u043F\u0438\u0441\u044A\u043A \u0441 \u043E\u0433\u0440\u0430\u043D\u0438\u0447\u0435\u043D\u0438\u044F \u0438\u043B\u0438 \u0437\u0430 \u0432\u0441\u0438\u0447\u043A\u0438 \u043E\u0433\u0440\u0430\u043D\u0438\u0447\u0435\u043D\u0438\u044F \u0435 \u0437\u0430\u0434\u0430\u0434\u0435\u043D\u043E \u201E\u041D\u0435\u0432\u044F\u0440\u043D\u043E\u201D, \u0438\u043B\u0438 \u043C\u0435\u0442\u043E\u0434\u044A\u0442 getUserMedia \u0435 \u0438\u0437\u0432\u0438\u043A\u0430\u043D \u0432 \u043D\u0435\u0441\u0438\u0433\u0443\u0440\u0435\u043D \u043A\u043E\u043D\u0442\u0435\u043A\u0441\u0442.
@@ -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=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=Skener \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...
21
33
 
34
+ #XMSG: error message for opening flashlight
22
35
  BARCODE_DIALOG_OPEN_FLASHLIGHT_ERROR_MSG=Sv\u00EDtilnu nebylo mo\u017En\u00E9 otev\u0159\u00EDt
23
36
 
37
+ #XMSG: error message for closing flashlight
24
38
  BARCODE_DIALOG_CLOSE_FLASHLIGHT_ERROR_MSG=Sv\u00EDtilnu nebylo mo\u017En\u00E9 zav\u0159\u00EDt
25
39
 
40
+ #XTOL: Barcode Scanner Stop Scanning Button tooltip
26
41
  BARCODE_DIALOG_STOP_SCANNING_BUTTON_TOOLTIP=Zastavte skenov\u00E1n\u00ED a zav\u0159ete kameru
27
42
 
43
+ #XTOL: Barcode Scanner scan result Button tooltip
28
44
  BARCODE_DIALOG_SCAN_RESULT_BUTTON_TOOLTIP=V\u00FDsledek skenov\u00E1n\u00ED {0}
29
45
 
46
+ #XTOL: Barcode Scanner Select Image Button tooltip
30
47
  BARCODE_DIALOG_SELECT_IMAGE_BUTTON_TOOLTIP=Vyberte obr\u00E1zek ke skenov\u00E1n\u00ED
31
48
 
49
+ #XTOL: Barcode Scanner Scan Button tooltip
32
50
  BARCODE_DIALOG_SCAN_BUTTON_TOOLTIP_START=Spus\u0165te skenov\u00E1n\u00ED kamerou
33
51
 
52
+ #XTOL: Barcode Scanner Scan Button tooltip
34
53
  BARCODE_DIALOG_SCAN_BUTTON_TOOLTIP_PAUSE=Pozastavte skenov\u00E1n\u00ED kamerou
35
54
 
55
+ #XTIT: title of the scan image busy dialog
36
56
  BARCODE_DIALOG_SCAN_IMAGE_BUSY_TITLE=Skenov\u00E1n\u00ED vybran\u00E9ho obr\u00E1zku
37
57
 
58
+ #XMSG: error message for loading image failed
38
59
  BARCODE_DIALOG_SCAN_IMAGE_LOAD_FAILED_MSG=Obr\u00E1zek nelze zav\u00E9st
39
60
 
61
+ #XMSG: error message for compressing image failed
40
62
  BARCODE_DIALOG_SCAN_IMAGE_COMPRESS_FAILED_MSG=Obr\u00E1zek nelze zkomprimovat
41
63
 
64
+ #XMSG: error message for scanning image
42
65
  BARCODE_DIALOG_SCAN_IMAGE_ERROR_MSG=Nelze skenovat vybran\u00FD obr\u00E1zek
43
66
 
67
+ #XMSG: message for use original image data to decode
44
68
  BARCODE_DIALOG_SCAN_WITH_ORIGINAL_IMAGE_CONFIRM_MSG=Skenov\u00E1n\u00ED obr\u00E1zku s komprimovan\u00FDmi daty se nezda\u0159ilo. Chcete obr\u00E1zek skenovat znovu s p\u016Fvodn\u00EDmi daty? Uv\u011Bdomte si, \u017Ee to bude trvat mnohem d\u00E9le ne\u017E s komprimovan\u00FDmi daty.
45
69
 
70
+ #XTOL: Barcode Scanner flashlight Button tooltip OPEN
46
71
  BARCODE_DIALOG_SELECT_FLASHLIGHT_BUTTON_TOOLTIP_OPEN=Otev\u0159\u00EDt sv\u00EDtilnu
47
72
 
73
+ #XTOL: Barcode Scanner flashlight Button tooltip CLOSE
48
74
  BARCODE_DIALOG_SELECT_FLASHLIGHT_BUTTON_TOOLTIP_CLOSE=Zav\u0159\u00EDt sv\u00EDtilnu
49
75
 
76
+ #XTXT: text of multi barcodes label
50
77
  BARCODE_DIALOG_MULTI_BARCODES_LABEL_TEXT=Naskenov\u00E1no v\u00EDce \u010D\u00E1rov\u00FDch k\u00F3d\u016F. Vyberte jeden pro otev\u0159en\u00ED.
78
+
79
+ #XMSG: error message for the stream of Camera
80
+ BARCODE_DIALOG_CAMERA_STREAM_ERROR_MSG=Nelze z\u00EDskat datov\u00FD proud
81
+
82
+ #XMSG: error message for User Media
83
+ BARCODE_DIALOG_CAMERA_OTHER_ERROR_MSG=Metoda getUserMedia narazila na chybu. {0}
84
+
85
+ #XMSG: AbortError message for User Media
86
+ BARCODE_DIALOG_CAMERA_ABORTERROR_ERROR_MSG=AbortError\: Pou\u017Eit\u00ED za\u0159\u00EDzen\u00ED br\u00E1n\u00ED probl\u00E9m.
87
+
88
+ #XMSG: NotAllowedError message for User Media
89
+ BARCODE_DIALOG_CAMERA_NOTALLOWEDERROR_ERROR_MSG=NotAllowedError\: Povolen\u00ED bylo odep\u0159eno.
90
+
91
+ #XMSG: NotFoundError message for User Media
92
+ BARCODE_DIALOG_CAMERA_NOTFOUNDERROR_ERROR_MSG=NotFoundError\: Po\u017Eadovan\u00E9 za\u0159\u00EDzen\u00ED nenalezeno.
93
+
94
+ #XMSG: NotReadableError message for User Media
95
+ BARCODE_DIALOG_CAMERA_NOTREADABLEERROR_ERROR_MSG=NotReadableError\: Za\u0159\u00EDzen\u00ED se pou\u017E\u00EDv\u00E1.
96
+
97
+ #XMSG: OverconstrainedError message for User Media
98
+ BARCODE_DIALOG_CAMERA_OVERCONSTRAINEDERROR_ERROR_MSG=OverconstrainedError\: Omezen\u00ED nelze splnit.
99
+
100
+ #XMSG: SecurityError message for User Media
101
+ BARCODE_DIALOG_CAMERA_SECURITYERROR_ERROR_MSG=SecurityError\: Podpora u\u017Eivatelsk\u00FDch m\u00E9di\u00ED je v dokumentu zak\u00E1z\u00E1na.
102
+
103
+ #XMSG: TypeError message for User Media
104
+ BARCODE_DIALOG_CAMERA_TYPEERROR_ERROR_MSG=TypeError\: Pr\u00E1zdn\u00FD seznam omezen\u00ED nebo v\u0161echna omezen\u00ED nastavena na false, nebo metoda getUserMedia vyvol\u00E1na v nezabezpe\u010Den\u00E9m kontextu.
@@ -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=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=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...
21
33
 
34
+ #XMSG: error message for opening flashlight
22
35
  BARCODE_DIALOG_OPEN_FLASHLIGHT_ERROR_MSG=Doedd dim modd agor y fflacholau
23
36
 
37
+ #XMSG: error message for closing flashlight
24
38
  BARCODE_DIALOG_CLOSE_FLASHLIGHT_ERROR_MSG=Doedd dim modd cau'r fflacholau
25
39
 
40
+ #XTOL: Barcode Scanner Stop Scanning Button tooltip
26
41
  BARCODE_DIALOG_STOP_SCANNING_BUTTON_TOOLTIP=Stopio sganio a chau\u2019r camera
27
42
 
43
+ #XTOL: Barcode Scanner scan result Button tooltip
28
44
  BARCODE_DIALOG_SCAN_RESULT_BUTTON_TOOLTIP=Sganio canlyniadau {0}
29
45
 
46
+ #XTOL: Barcode Scanner Select Image Button tooltip
30
47
  BARCODE_DIALOG_SELECT_IMAGE_BUTTON_TOOLTIP=Dewis delwedd i'w sganio
31
48
 
49
+ #XTOL: Barcode Scanner Scan Button tooltip
32
50
  BARCODE_DIALOG_SCAN_BUTTON_TOOLTIP_START=Dechrau sganio camera
33
51
 
52
+ #XTOL: Barcode Scanner Scan Button tooltip
34
53
  BARCODE_DIALOG_SCAN_BUTTON_TOOLTIP_PAUSE=Rhewi sganio camera
35
54
 
55
+ #XTIT: title of the scan image busy dialog
36
56
  BARCODE_DIALOG_SCAN_IMAGE_BUSY_TITLE=Wrthi'n sganio'r ddelwedd a ddewiswyd
37
57
 
58
+ #XMSG: error message for loading image failed
38
59
  BARCODE_DIALOG_SCAN_IMAGE_LOAD_FAILED_MSG=Doedd dim modd llwytho\u2019r ddelwedd
39
60
 
61
+ #XMSG: error message for compressing image failed
40
62
  BARCODE_DIALOG_SCAN_IMAGE_COMPRESS_FAILED_MSG=Doedd dim modd crebachu\u2019r ddelwedd
41
63
 
64
+ #XMSG: error message for scanning image
42
65
  BARCODE_DIALOG_SCAN_IMAGE_ERROR_MSG=Methu sganio'r ddelwedd a ddewiswyd
43
66
 
67
+ #XMSG: message for use original image data to decode
44
68
  BARCODE_DIALOG_SCAN_WITH_ORIGINAL_IMAGE_CONFIRM_MSG=Wedi methu sganio'r ddelwedd gyda data cywasgedig. Ydych chi am sganio'r ddelwedd eto gyda'r data gwreiddiol? Bydd hyn yn cymryd llawer mwy o amser na gyda data cywasgedig.
45
69
 
70
+ #XTOL: Barcode Scanner flashlight Button tooltip OPEN
46
71
  BARCODE_DIALOG_SELECT_FLASHLIGHT_BUTTON_TOOLTIP_OPEN=Agor y fflacholau
47
72
 
73
+ #XTOL: Barcode Scanner flashlight Button tooltip CLOSE
48
74
  BARCODE_DIALOG_SELECT_FLASHLIGHT_BUTTON_TOOLTIP_CLOSE=Cau'r fflacholau
49
75
 
76
+ #XTXT: text of multi barcodes label
50
77
  BARCODE_DIALOG_MULTI_BARCODES_LABEL_TEXT=Mwy nag un cod bar wedi cael eu sganio. Dewiswch un i\u2019w agor.
78
+
79
+ #XMSG: error message for the stream of Camera
80
+ BARCODE_DIALOG_CAMERA_STREAM_ERROR_MSG=Methu cael ffrwd.
81
+
82
+ #XMSG: error message for User Media
83
+ BARCODE_DIALOG_CAMERA_OTHER_ERROR_MSG=Gwall wedi digwydd gyda dull getUserMedia. {0}
84
+
85
+ #XMSG: AbortError message for User Media
86
+ BARCODE_DIALOG_CAMERA_ABORTERROR_ERROR_MSG=AbortError\: Problem wedi atal defnydd dyfais.
87
+
88
+ #XMSG: NotAllowedError message for User Media
89
+ BARCODE_DIALOG_CAMERA_NOTALLOWEDERROR_ERROR_MSG=NotAllowedError\: Hawl wedi'i gwrthod.
90
+
91
+ #XMSG: NotFoundError message for User Media
92
+ BARCODE_DIALOG_CAMERA_NOTFOUNDERROR_ERROR_MSG=NotFoundError\: Heb ddod o hyd i'r ddyfais y gofynnwyd amdani.
93
+
94
+ #XMSG: NotReadableError message for User Media
95
+ BARCODE_DIALOG_CAMERA_NOTREADABLEERROR_ERROR_MSG=NotReadableError\: Dyfais yn cael ei defnyddio.
96
+
97
+ #XMSG: OverconstrainedError message for User Media
98
+ BARCODE_DIALOG_CAMERA_OVERCONSTRAINEDERROR_ERROR_MSG=OverconstrainedError\: Doedd dim modd bodloni cyfyngiadau.
99
+
100
+ #XMSG: SecurityError message for User Media
101
+ BARCODE_DIALOG_CAMERA_SECURITYERROR_ERROR_MSG=SecurityError\: Cymorth cyfryngau i ddefnyddiwr wedi'i analluogi ar ddogfen.
102
+
103
+ #XMSG: TypeError message for User Media
104
+ BARCODE_DIALOG_CAMERA_TYPEERROR_ERROR_MSG=TypeError\: Rhestr gyfyngiadau wag neu mae'r holl gyfyngiadau wedi'u gosod i gau, neu mae dull getUserMedia wedi galw cyd-destun anniogel.
@@ -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=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=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...
21
33
 
34
+ #XMSG: error message for opening flashlight
22
35
  BARCODE_DIALOG_OPEN_FLASHLIGHT_ERROR_MSG=Lommelygte kunne ikke \u00E5bnes
23
36
 
37
+ #XMSG: error message for closing flashlight
24
38
  BARCODE_DIALOG_CLOSE_FLASHLIGHT_ERROR_MSG=Lommelygte kunne ikke lukkes
25
39
 
40
+ #XTOL: Barcode Scanner Stop Scanning Button tooltip
26
41
  BARCODE_DIALOG_STOP_SCANNING_BUTTON_TOOLTIP=Stop scanning, og luk kamera
27
42
 
43
+ #XTOL: Barcode Scanner scan result Button tooltip
28
44
  BARCODE_DIALOG_SCAN_RESULT_BUTTON_TOOLTIP=Scan resultat {0}
29
45
 
46
+ #XTOL: Barcode Scanner Select Image Button tooltip
30
47
  BARCODE_DIALOG_SELECT_IMAGE_BUTTON_TOOLTIP=V\u00E6lg et billede at scanne
31
48
 
49
+ #XTOL: Barcode Scanner Scan Button tooltip
32
50
  BARCODE_DIALOG_SCAN_BUTTON_TOOLTIP_START=Start kamerascanning
33
51
 
52
+ #XTOL: Barcode Scanner Scan Button tooltip
34
53
  BARCODE_DIALOG_SCAN_BUTTON_TOOLTIP_PAUSE=S\u00E6t kamerascanning p\u00E5 pause
35
54
 
55
+ #XTIT: title of the scan image busy dialog
36
56
  BARCODE_DIALOG_SCAN_IMAGE_BUSY_TITLE=Scanner valgt billede
37
57
 
58
+ #XMSG: error message for loading image failed
38
59
  BARCODE_DIALOG_SCAN_IMAGE_LOAD_FAILED_MSG=Billede kunne ikke indl\u00E6ses
39
60
 
61
+ #XMSG: error message for compressing image failed
40
62
  BARCODE_DIALOG_SCAN_IMAGE_COMPRESS_FAILED_MSG=Billede kaunne ikke komprimeres
41
63
 
64
+ #XMSG: error message for scanning image
42
65
  BARCODE_DIALOG_SCAN_IMAGE_ERROR_MSG=Kan ikke scanne valgt billede
43
66
 
67
+ #XMSG: message for use original image data to decode
44
68
  BARCODE_DIALOG_SCAN_WITH_ORIGINAL_IMAGE_CONFIRM_MSG=Kunne ikke scanne billedet med komprimerede data. Vil du scanne billedet igen med de oprindelige data? Bem\u00E6rk, at dette vil tage meget l\u00E6ngere tid med komprimerede data.
45
69
 
70
+ #XTOL: Barcode Scanner flashlight Button tooltip OPEN
46
71
  BARCODE_DIALOG_SELECT_FLASHLIGHT_BUTTON_TOOLTIP_OPEN=\u00C5bn lommelygte
47
72
 
73
+ #XTOL: Barcode Scanner flashlight Button tooltip CLOSE
48
74
  BARCODE_DIALOG_SELECT_FLASHLIGHT_BUTTON_TOOLTIP_CLOSE=Luk lommelygte
49
75
 
76
+ #XTXT: text of multi barcodes label
50
77
  BARCODE_DIALOG_MULTI_BARCODES_LABEL_TEXT=Flere stregkoder scannet. V\u00E6lg en for at \u00E5bne den.
78
+
79
+ #XMSG: error message for the stream of Camera
80
+ BARCODE_DIALOG_CAMERA_STREAM_ERROR_MSG=Kan ikke skaffe stream.
81
+
82
+ #XMSG: error message for User Media
83
+ BARCODE_DIALOG_CAMERA_OTHER_ERROR_MSG=Metoden getUserMedia st\u00F8dte p\u00E5 en fejl. {0}
84
+
85
+ #XMSG: AbortError message for User Media
86
+ BARCODE_DIALOG_CAMERA_ABORTERROR_ERROR_MSG=AbortError\: Enhedsbrug forhindret af et problem.
87
+
88
+ #XMSG: NotAllowedError message for User Media
89
+ BARCODE_DIALOG_CAMERA_NOTALLOWEDERROR_ERROR_MSG=NotAllowedError\: Tilladelse n\u00E6gtet.
90
+
91
+ #XMSG: NotFoundError message for User Media
92
+ BARCODE_DIALOG_CAMERA_NOTFOUNDERROR_ERROR_MSG=NotFoundError\: Anmodet enhed ikke fundet.
93
+
94
+ #XMSG: NotReadableError message for User Media
95
+ BARCODE_DIALOG_CAMERA_NOTREADABLEERROR_ERROR_MSG=NotReadableError\: Enhed i brug.
96
+
97
+ #XMSG: OverconstrainedError message for User Media
98
+ BARCODE_DIALOG_CAMERA_OVERCONSTRAINEDERROR_ERROR_MSG=OverconstrainedError\: Begr\u00E6nsninger kunne ikke opfyldes.
99
+
100
+ #XMSG: SecurityError message for User Media
101
+ BARCODE_DIALOG_CAMERA_SECURITYERROR_ERROR_MSG=SecurityError\: Underst\u00F8ttelse af brugermedier deaktiveret p\u00E5 dokument.
102
+
103
+ #XMSG: TypeError message for User Media
104
+ BARCODE_DIALOG_CAMERA_TYPEERROR_ERROR_MSG=TypeError\: Tom begr\u00E6nsningsliste eller alle begr\u00E6nsninger indstillet til falsk, eller metoden getUserMedia kaldt i usikker kontekst.