1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
|
# Localization of the module hdf5
# Please see in SCI/tools/localization for localization management
# Copyright (C) 2007-2008 - INRIA
# Copyright (C) 2008-2011 - DIGITEO
# Copyright (C) 2012-2014 - Scilab-Enterprises
# This file is distributed under the same license as the Scilab package.
#
msgid ""
msgstr ""
"Project-Id-Version: Scilab\n"
"Report-Msgid-Bugs-To: <localization@lists.scilab.org>\n"
"POT-Creation-Date: 2013-04-16 17:44+0100\n"
"Last-Translator: Vincent COUVERT <vincent.couvert@scilab-enterprises.com>\n"
"Language-Team: Scilab Localization <localization@lists.scilab.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=ISO-8859-1\n"
"Content-Transfer-Encoding: 8bit\n"
"Revision-Date: 2015-03-27 13:54+0100\n"
# File: sci_gateway/cpp/sci_export_to_hdf5.cpp, line: 103
#, c-format
msgid "%s: Wrong value for input argument #%d: Defined variable expected.\n"
msgstr ""
#
# File: sci_gateway/cpp/sci_export_to_hdf5.cpp, line: 132
#, c-format
msgid "%s: Wrong value for input argument #%d: \"%s\" is a directory"
msgstr ""
#
# File: sci_gateway/cpp/sci_export_to_hdf5.cpp, line: 136
#, c-format
msgid "%s: Cannot open file %s.\n"
msgstr ""
#
# File: sci_gateway/cpp/sci_export_to_hdf5.cpp, line: 152
#, c-format
msgid "%s: Wrong SOD file format version. Expected: %d Found: %d\n"
msgstr ""
#
# File: sci_gateway/cpp/sci_export_to_hdf5.cpp, line: 175
#, c-format
msgid "%s: Unable to delete existing variable \"%s\"."
msgstr ""
#
# File: sci_gateway/cpp/sci_export_to_hdf5.cpp, line: 185
#, c-format
msgid ""
"%s: Variable '%s' already exists in file '%s'\n"
"Use -append option to replace existing variable\n"
"."
msgstr ""
#
# File: sci_gateway/cpp/sci_export_to_hdf5.cpp, line: 206
#, c-format
msgid "%s: Unable to update Scilab version in \"%s\"."
msgstr ""
#
# File: sci_gateway/cpp/sci_export_to_hdf5.cpp, line: 216
#, c-format
msgid "%s: Unable to update HDF5 format version in \"%s\"."
msgstr ""
#
# File: sci_gateway/cpp/sci_export_to_hdf5.cpp, line: 852
# File: sci_gateway/cpp/sci_h5attr.cpp, line: 94
# File: sci_gateway/cpp/sci_h5attr.cpp, line: 117
# File: sci_gateway/cpp/sci_h5cp.cpp, line: 80
# File: sci_gateway/cpp/sci_h5cp.cpp, line: 117
# File: sci_gateway/cpp/sci_h5cp.cpp, line: 154
# File: sci_gateway/cpp/sci_h5cp.cpp, line: 197
# File: sci_gateway/cpp/sci_h5dataset.cpp, line: 108
# File: sci_gateway/cpp/sci_h5delete.cpp, line: 73
# File: sci_gateway/cpp/sci_h5dump.cpp, line: 67
# File: sci_gateway/cpp/sci_h5dump.cpp, line: 119
# File: sci_gateway/cpp/sci_h5exists.cpp, line: 80
# File: sci_gateway/cpp/sci_h5exists.cpp, line: 106
# File: sci_gateway/cpp/sci_h5exists.cpp, line: 139
# File: sci_gateway/cpp/sci_h5get.cpp, line: 82
# File: sci_gateway/cpp/sci_h5group.cpp, line: 81
# File: sci_gateway/cpp/sci_h5group.cpp, line: 107
# File: sci_gateway/cpp/sci_h5label.cpp, line: 111
# File: sci_gateway/cpp/sci_h5link.cpp, line: 79
# File: sci_gateway/cpp/sci_h5link.cpp, line: 113
# File: sci_gateway/cpp/sci_h5ln.cpp, line: 84
# File: sci_gateway/cpp/sci_h5ln.cpp, line: 110
# File: sci_gateway/cpp/sci_h5ln.cpp, line: 151
# File: sci_gateway/cpp/sci_h5ls.cpp, line: 75
# File: sci_gateway/cpp/sci_h5ls.cpp, line: 102
# File: sci_gateway/cpp/sci_h5ls.cpp, line: 127
# File: sci_gateway/cpp/sci_h5mount.cpp, line: 79
# File: sci_gateway/cpp/sci_h5mv.cpp, line: 80
# File: sci_gateway/cpp/sci_h5mv.cpp, line: 123
# File: sci_gateway/cpp/sci_h5mv.cpp, line: 160
# File: sci_gateway/cpp/sci_h5mv.cpp, line: 203
# File: sci_gateway/cpp/sci_h5open.cpp, line: 57
# File: sci_gateway/cpp/sci_h5open.cpp, line: 83
# File: sci_gateway/cpp/sci_h5open.cpp, line: 114
# File: sci_gateway/cpp/sci_h5read.cpp, line: 93
# File: sci_gateway/cpp/sci_h5readattr.cpp, line: 72
# File: sci_gateway/cpp/sci_h5readattr.cpp, line: 106
# File: sci_gateway/cpp/sci_h5readattr.cpp, line: 137
# File: sci_gateway/cpp/sci_h5rm.cpp, line: 105
# File: sci_gateway/cpp/sci_h5umount.cpp, line: 72
# File: sci_gateway/cpp/sci_h5write.cpp, line: 129
#, c-format
msgid "%s: Wrong type for input argument #%d: A string expected.\n"
msgstr ""
#
# File: sci_gateway/cpp/sci_h5attr.cpp, line: 53
# File: sci_gateway/cpp/sci_h5attr.cpp, line: 88
# File: sci_gateway/cpp/sci_h5attr.cpp, line: 111
# File: sci_gateway/cpp/sci_h5attr.cpp, line: 136
# File: sci_gateway/cpp/sci_h5close.cpp, line: 56
# File: sci_gateway/cpp/sci_h5cp.cpp, line: 63
# File: sci_gateway/cpp/sci_h5cp.cpp, line: 100
# File: sci_gateway/cpp/sci_h5cp.cpp, line: 137
# File: sci_gateway/cpp/sci_h5cp.cpp, line: 191
# File: sci_gateway/cpp/sci_h5dataset.cpp, line: 67
# File: sci_gateway/cpp/sci_h5dataset.cpp, line: 102
# File: sci_gateway/cpp/sci_h5dataset.cpp, line: 125
# File: sci_gateway/cpp/sci_h5dataset.cpp, line: 139
# File: sci_gateway/cpp/sci_h5dataset.cpp, line: 155
# File: sci_gateway/cpp/sci_h5dataset.cpp, line: 184
# File: sci_gateway/cpp/sci_h5dataset.cpp, line: 199
# File: sci_gateway/cpp/sci_h5dataset.cpp, line: 221
# File: sci_gateway/cpp/sci_h5delete.cpp, line: 45
# File: sci_gateway/cpp/sci_h5delete.cpp, line: 67
# File: sci_gateway/cpp/sci_h5dump.cpp, line: 61
# File: sci_gateway/cpp/sci_h5dump.cpp, line: 85
# File: sci_gateway/cpp/sci_h5exists.cpp, line: 63
# File: sci_gateway/cpp/sci_h5exists.cpp, line: 100
# File: sci_gateway/cpp/sci_h5exists.cpp, line: 132
# File: sci_gateway/cpp/sci_h5flush.cpp, line: 50
# File: sci_gateway/cpp/sci_h5flush.cpp, line: 75
# File: sci_gateway/cpp/sci_h5get.cpp, line: 53
# File: sci_gateway/cpp/sci_h5get.cpp, line: 76
# File: sci_gateway/cpp/sci_h5get.cpp, line: 101
# File: sci_gateway/cpp/sci_h5group.cpp, line: 56
# File: sci_gateway/cpp/sci_h5group.cpp, line: 75
# File: sci_gateway/cpp/sci_h5group.cpp, line: 101
# File: sci_gateway/cpp/sci_h5isfoo.cpp, line: 44
# File: sci_gateway/cpp/sci_h5label.cpp, line: 60
# File: sci_gateway/cpp/sci_h5label.cpp, line: 79
# File: sci_gateway/cpp/sci_h5label.cpp, line: 105
# File: sci_gateway/cpp/sci_h5label.cpp, line: 128
# File: sci_gateway/cpp/sci_h5label.cpp, line: 143
# File: sci_gateway/cpp/sci_h5label.cpp, line: 166
# File: sci_gateway/cpp/sci_h5link.cpp, line: 51
# File: sci_gateway/cpp/sci_h5link.cpp, line: 73
# File: sci_gateway/cpp/sci_h5link.cpp, line: 96
# File: sci_gateway/cpp/sci_h5link.cpp, line: 133
# File: sci_gateway/cpp/sci_h5ln.cpp, line: 67
# File: sci_gateway/cpp/sci_h5ln.cpp, line: 104
# File: sci_gateway/cpp/sci_h5ln.cpp, line: 134
# File: sci_gateway/cpp/sci_h5ln.cpp, line: 178
# File: sci_gateway/cpp/sci_h5ln.cpp, line: 225
# File: sci_gateway/cpp/sci_h5ls.cpp, line: 58
# File: sci_gateway/cpp/sci_h5ls.cpp, line: 96
# File: sci_gateway/cpp/sci_h5ls.cpp, line: 121
# File: sci_gateway/cpp/sci_h5mount.cpp, line: 50
# File: sci_gateway/cpp/sci_h5mount.cpp, line: 73
# File: sci_gateway/cpp/sci_h5mount.cpp, line: 96
# File: sci_gateway/cpp/sci_h5mv.cpp, line: 63
# File: sci_gateway/cpp/sci_h5mv.cpp, line: 100
# File: sci_gateway/cpp/sci_h5mv.cpp, line: 143
# File: sci_gateway/cpp/sci_h5mv.cpp, line: 197
# File: sci_gateway/cpp/sci_h5open.cpp, line: 51
# File: sci_gateway/cpp/sci_h5open.cpp, line: 77
# File: sci_gateway/cpp/sci_h5open.cpp, line: 108
# File: sci_gateway/cpp/sci_h5open.cpp, line: 139
# File: sci_gateway/cpp/sci_h5open.cpp, line: 181
# File: sci_gateway/cpp/sci_h5read.cpp, line: 70
# File: sci_gateway/cpp/sci_h5read.cpp, line: 121
# File: sci_gateway/cpp/sci_h5read.cpp, line: 187
# File: sci_gateway/cpp/sci_h5readattr.cpp, line: 55
# File: sci_gateway/cpp/sci_h5readattr.cpp, line: 100
# File: sci_gateway/cpp/sci_h5readattr.cpp, line: 131
# File: sci_gateway/cpp/sci_h5rm.cpp, line: 56
# File: sci_gateway/cpp/sci_h5rm.cpp, line: 99
# File: sci_gateway/cpp/sci_h5umount.cpp, line: 43
# File: sci_gateway/cpp/sci_h5umount.cpp, line: 66
# File: sci_gateway/cpp/sci_h5write.cpp, line: 88
# File: sci_gateway/cpp/sci_h5write.cpp, line: 123
# File: sci_gateway/cpp/sci_h5write.cpp, line: 148
# File: sci_gateway/cpp/sci_h5write.cpp, line: 180
# File: sci_gateway/cpp/sci_percent_H5Object_e.cpp, line: 117
# File: sci_gateway/cpp/sci_percent_H5Object_fieldnames.cpp, line: 42
# File: sci_gateway/cpp/sci_percent_H5Object_p.cpp, line: 42
#, c-format
msgid "%s: Can not read input argument #%d.\n"
msgstr ""
#
# File: sci_gateway/cpp/sci_h5attr.cpp, line: 62
# File: sci_gateway/cpp/sci_h5cp.cpp, line: 72
# File: sci_gateway/cpp/sci_h5cp.cpp, line: 109
# File: sci_gateway/cpp/sci_h5cp.cpp, line: 146
# File: sci_gateway/cpp/sci_h5dataset.cpp, line: 76
# File: sci_gateway/cpp/sci_h5dump.cpp, line: 94
# File: sci_gateway/cpp/sci_h5exists.cpp, line: 72
# File: sci_gateway/cpp/sci_h5flush.cpp, line: 59
# File: sci_gateway/cpp/sci_h5get.cpp, line: 62
# File: sci_gateway/cpp/sci_h5group.cpp, line: 65
# File: sci_gateway/cpp/sci_h5label.cpp, line: 69
# File: sci_gateway/cpp/sci_h5mount.cpp, line: 59
# File: sci_gateway/cpp/sci_h5mount.cpp, line: 105
# File: sci_gateway/cpp/sci_h5mv.cpp, line: 72
# File: sci_gateway/cpp/sci_h5mv.cpp, line: 109
# File: sci_gateway/cpp/sci_h5mv.cpp, line: 152
# File: sci_gateway/cpp/sci_h5readattr.cpp, line: 64
# File: sci_gateway/cpp/sci_h5rm.cpp, line: 65
# File: sci_gateway/cpp/sci_h5umount.cpp, line: 52
# File: sci_gateway/cpp/sci_h5write.cpp, line: 97
# File: sci_gateway/cpp/sci_percent_H5Object_e.cpp, line: 130
# File: sci_gateway/cpp/sci_percent_H5Object_fieldnames.cpp, line: 49
#, c-format
msgid "%s: Invalid H5Object.\n"
msgstr ""
#
# File: sci_gateway/cpp/sci_h5attr.cpp, line: 70
# File: sci_gateway/cpp/sci_h5dataset.cpp, line: 84
# File: sci_gateway/cpp/sci_h5label.cpp, line: 85
# File: sci_gateway/cpp/sci_h5rm.cpp, line: 73
# File: sci_gateway/cpp/sci_h5write.cpp, line: 105
#, c-format
msgid ""
"%s: Wrong type for input argument #%d: A string or a H5Object expected.\n"
msgstr ""
#
# File: sci_gateway/cpp/sci_h5attr.cpp, line: 76
# File: sci_gateway/cpp/sci_h5attr.cpp, line: 100
# File: sci_gateway/cpp/sci_h5attr.cpp, line: 123
# File: sci_gateway/cpp/sci_h5attr.cpp, line: 148
# File: sci_gateway/cpp/sci_h5cp.cpp, line: 86
# File: sci_gateway/cpp/sci_h5cp.cpp, line: 123
# File: sci_gateway/cpp/sci_h5cp.cpp, line: 160
# File: sci_gateway/cpp/sci_h5cp.cpp, line: 203
# File: sci_gateway/cpp/sci_h5dataset.cpp, line: 90
# File: sci_gateway/cpp/sci_h5dataset.cpp, line: 114
# File: sci_gateway/cpp/sci_h5dataset.cpp, line: 169
# File: sci_gateway/cpp/sci_h5dataset.cpp, line: 233
# File: sci_gateway/cpp/sci_h5delete.cpp, line: 79
# File: sci_gateway/cpp/sci_h5dump.cpp, line: 73
# File: sci_gateway/cpp/sci_h5dump.cpp, line: 125
# File: sci_gateway/cpp/sci_h5exists.cpp, line: 86
# File: sci_gateway/cpp/sci_h5exists.cpp, line: 112
# File: sci_gateway/cpp/sci_h5exists.cpp, line: 146
# File: sci_gateway/cpp/sci_h5flush.cpp, line: 87
# File: sci_gateway/cpp/sci_h5get.cpp, line: 88
# File: sci_gateway/cpp/sci_h5get.cpp, line: 113
# File: sci_gateway/cpp/sci_h5group.cpp, line: 87
# File: sci_gateway/cpp/sci_h5group.cpp, line: 113
# File: sci_gateway/cpp/sci_h5label.cpp, line: 91
# File: sci_gateway/cpp/sci_h5label.cpp, line: 117
# File: sci_gateway/cpp/sci_h5label.cpp, line: 180
# File: sci_gateway/cpp/sci_h5link.cpp, line: 85
# File: sci_gateway/cpp/sci_h5link.cpp, line: 119
# File: sci_gateway/cpp/sci_h5link.cpp, line: 147
# File: sci_gateway/cpp/sci_h5link.cpp, line: 157
# File: sci_gateway/cpp/sci_h5ln.cpp, line: 90
# File: sci_gateway/cpp/sci_h5ln.cpp, line: 116
# File: sci_gateway/cpp/sci_h5ln.cpp, line: 157
# File: sci_gateway/cpp/sci_h5ln.cpp, line: 192
# File: sci_gateway/cpp/sci_h5ln.cpp, line: 202
# File: sci_gateway/cpp/sci_h5ln.cpp, line: 239
# File: sci_gateway/cpp/sci_h5ln.cpp, line: 249
# File: sci_gateway/cpp/sci_h5ls.cpp, line: 81
# File: sci_gateway/cpp/sci_h5ls.cpp, line: 108
# File: sci_gateway/cpp/sci_h5ls.cpp, line: 133
# File: sci_gateway/cpp/sci_h5mount.cpp, line: 85
# File: sci_gateway/cpp/sci_h5mv.cpp, line: 86
# File: sci_gateway/cpp/sci_h5mv.cpp, line: 129
# File: sci_gateway/cpp/sci_h5mv.cpp, line: 166
# File: sci_gateway/cpp/sci_h5mv.cpp, line: 209
# File: sci_gateway/cpp/sci_h5open.cpp, line: 63
# File: sci_gateway/cpp/sci_h5open.cpp, line: 89
# File: sci_gateway/cpp/sci_h5open.cpp, line: 120
# File: sci_gateway/cpp/sci_h5open.cpp, line: 153
# File: sci_gateway/cpp/sci_h5open.cpp, line: 169
# File: sci_gateway/cpp/sci_h5open.cpp, line: 193
# File: sci_gateway/cpp/sci_h5read.cpp, line: 99
# File: sci_gateway/cpp/sci_h5read.cpp, line: 129
# File: sci_gateway/cpp/sci_h5readattr.cpp, line: 78
# File: sci_gateway/cpp/sci_h5readattr.cpp, line: 112
# File: sci_gateway/cpp/sci_h5readattr.cpp, line: 143
# File: sci_gateway/cpp/sci_h5rm.cpp, line: 79
# File: sci_gateway/cpp/sci_h5rm.cpp, line: 111
# File: sci_gateway/cpp/sci_h5umount.cpp, line: 78
# File: sci_gateway/cpp/sci_h5write.cpp, line: 111
# File: sci_gateway/cpp/sci_h5write.cpp, line: 135
# File: sci_gateway/cpp/sci_h5write.cpp, line: 162
# File: sci_gateway/cpp/sci_percent_H5Object_e.cpp, line: 77
# File: sci_gateway/cpp/sci_percent_H5Object_e.cpp, line: 102
#, c-format
msgid "%s: No more memory.\n"
msgstr ""
#
# File: sci_gateway/cpp/sci_h5attr.cpp, line: 142
# File: sci_gateway/cpp/sci_h5write.cpp, line: 156
# File: sci_gateway/cpp/sci_import_from_hdf5.cpp, line: 76
# File: sci_gateway/cpp/sci_import_from_hdf5.cpp, line: 135
# File: sci_gateway/cpp/sci_is_hdf5_file.cpp, line: 49
# File: sci_gateway/cpp/sci_listvar_in_hdf5.cpp, line: 91
# File: src/cpp/import_from_hdf5_v1.cpp, line: 83
# File: src/cpp/import_from_hdf5_v1.cpp, line: 121
# File: src/cpp/listvar_in_hdf5_v1.cpp, line: 84
#, c-format
msgid "%s: Wrong size for input argument #%d: A string expected.\n"
msgstr ""
#
# File: sci_gateway/cpp/sci_h5attr.cpp, line: 169
# File: sci_gateway/cpp/sci_h5cp.cpp, line: 239
# File: sci_gateway/cpp/sci_h5dataset.cpp, line: 289
# File: sci_gateway/cpp/sci_h5delete.cpp, line: 89
# File: sci_gateway/cpp/sci_h5dump.cpp, line: 106
# File: sci_gateway/cpp/sci_h5dump.cpp, line: 146
# File: sci_gateway/cpp/sci_h5dump.cpp, line: 161
# File: sci_gateway/cpp/sci_h5exists.cpp, line: 177
# File: sci_gateway/cpp/sci_h5flush.cpp, line: 100
# File: sci_gateway/cpp/sci_h5get.cpp, line: 126
# File: sci_gateway/cpp/sci_h5group.cpp, line: 132
# File: sci_gateway/cpp/sci_h5label.cpp, line: 209
# File: sci_gateway/cpp/sci_h5link.cpp, line: 191
# File: sci_gateway/cpp/sci_h5ln.cpp, line: 299
# File: sci_gateway/cpp/sci_h5ls.cpp, line: 169
# File: sci_gateway/cpp/sci_h5mount.cpp, line: 121
# File: sci_gateway/cpp/sci_h5mv.cpp, line: 248
# File: sci_gateway/cpp/sci_h5open.cpp, line: 220
# File: sci_gateway/cpp/sci_h5open.cpp, line: 230
# File: sci_gateway/cpp/sci_h5read.cpp, line: 235
# File: sci_gateway/cpp/sci_h5readattr.cpp, line: 165
# File: sci_gateway/cpp/sci_h5rm.cpp, line: 137
# File: sci_gateway/cpp/sci_h5umount.cpp, line: 91
# File: sci_gateway/cpp/sci_h5write.cpp, line: 256
# File: sci_gateway/cpp/sci_percent_H5Object_fieldnames.cpp, line: 65
#, c-format
msgid "%s: %s\n"
msgstr ""
#
# File: sci_gateway/cpp/sci_h5close.cpp, line: 77
# File: sci_gateway/cpp/sci_h5get.cpp, line: 68
# File: sci_gateway/cpp/sci_h5link.cpp, line: 66
# File: sci_gateway/cpp/sci_h5mount.cpp, line: 65
# File: sci_gateway/cpp/sci_h5mount.cpp, line: 111
# File: sci_gateway/cpp/sci_h5umount.cpp, line: 58
# File: sci_gateway/cpp/sci_percent_H5Object_e.cpp, line: 140
#, c-format
msgid "%s: Wrong type for input argument #%d: A H5Object expected.\n"
msgstr ""
#
# File: sci_gateway/cpp/sci_h5close.cpp, line: 83
#, c-format
msgid "%s: Cannot remove H5Object.\n"
msgstr ""
#
# File: sci_gateway/cpp/sci_h5dataset.cpp, line: 131
# File: sci_gateway/cpp/sci_h5dataset.cpp, line: 191
#, c-format
msgid "%s: Wrong type for input argument #%d: A double matrix expected.\n"
msgstr ""
#
# File: sci_gateway/cpp/sci_h5dataset.cpp, line: 145
#, c-format
msgid "%s: Wrong size for input argument #%d: Five row vector expected.\n"
msgstr ""
#
# File: sci_gateway/cpp/sci_h5dataset.cpp, line: 163
# File: sci_gateway/cpp/sci_h5dataset.cpp, line: 227
#, c-format
msgid "%s: Wrong type for input argument #%d: A single string expected.\n"
msgstr ""
#
# File: sci_gateway/cpp/sci_h5dataset.cpp, line: 205
#, c-format
msgid "%s: Wrong size for input argument #%d: six row vector expected.\n"
msgstr ""
#
# File: sci_gateway/cpp/sci_h5dataset.cpp, line: 211
#, c-format
msgid "%s: Wrong size for input argument #%d: %d column vector expected.\n"
msgstr ""
#
# File: sci_gateway/cpp/sci_h5delete.cpp, line: 54
# File: sci_gateway/cpp/sci_h5link.cpp, line: 60
# File: sci_gateway/cpp/sci_h5ln.cpp, line: 76
# File: sci_gateway/cpp/sci_h5ls.cpp, line: 67
# File: sci_gateway/cpp/sci_h5read.cpp, line: 79
# File: sci_gateway/cpp/sci_percent_H5Object_p.cpp, line: 64
#, c-format
msgid "%s: Can not print H5Object: invalid object.\n"
msgstr ""
#
# File: sci_gateway/cpp/sci_h5delete.cpp, line: 60
#, c-format
msgid "%s: Wrong type for input argument #%d: a H5Object expected.\n"
msgstr ""
#
# File: sci_gateway/cpp/sci_h5exists.cpp, line: 119
#, c-format
msgid "%s: Wrong size for argument #%d: A string expected.\n"
msgstr ""
#
# File: sci_gateway/cpp/sci_h5exists.cpp, line: 194
# File: sci_gateway/cpp/sci_h5isfoo.cpp, line: 74
#, c-format
msgid "%s: Can not create output argument.\n"
msgstr ""
#
# File: sci_gateway/cpp/sci_h5flush.cpp, line: 65
#, c-format
msgid "%s: Wrong type for input argument #%d: A HDF5 object expected.\n"
msgstr ""
#
# File: sci_gateway/cpp/sci_h5flush.cpp, line: 81
# File: sci_gateway/cpp/sci_h5open.cpp, line: 147
#, c-format
msgid "%s: Wrong type for input argument #%d: A boolean expected.\n"
msgstr ""
#
# File: sci_gateway/cpp/sci_h5get.cpp, line: 107
# File: sci_gateway/cpp/sci_h5link.cpp, line: 139
# File: sci_gateway/cpp/sci_h5ln.cpp, line: 184
# File: sci_gateway/cpp/sci_h5ln.cpp, line: 231
#, c-format
msgid "%s: Wrong size for input argument #%d.\n"
msgstr ""
#
# File: sci_gateway/cpp/sci_h5label.cpp, line: 135
# File: sci_gateway/cpp/sci_h5read.cpp, line: 175
# File: sci_gateway/cpp/sci_h5read.cpp, line: 211
# File: sci_gateway/cpp/sci_h5write.cpp, line: 211
#, c-format
msgid "%s: Wrong type for input argument #%d: Real row vector expected.\n"
msgstr ""
#
# File: sci_gateway/cpp/sci_h5label.cpp, line: 149
# File: sci_gateway/cpp/sci_h5read.cpp, line: 157
# File: sci_gateway/cpp/sci_h5read.cpp, line: 195
# File: sci_gateway/cpp/sci_h5write.cpp, line: 188
#, c-format
msgid ""
"%s: Wrong size for input argument #%d: Real row or column vector expected.\n"
msgstr ""
#
# File: sci_gateway/cpp/sci_h5label.cpp, line: 173
#, c-format
msgid "%s: Wrong type for input argument #%d: Row array of strings expected.\n"
msgstr ""
#
# File: sci_gateway/cpp/sci_h5label.cpp, line: 188
#, c-format
msgid ""
"%s: Wrong size for input argument #%d: A row or column vector expected.\n"
msgstr ""
#
# File: sci_gateway/cpp/sci_h5link.cpp, line: 105
# File: sci_gateway/cpp/sci_h5ln.cpp, line: 143
#, c-format
msgid "%s: Can not use H5Object: invalid object.\n"
msgstr ""
#
# File: sci_gateway/cpp/sci_h5link.cpp, line: 166
# File: sci_gateway/cpp/sci_h5ln.cpp, line: 215
# File: sci_gateway/cpp/sci_h5ln.cpp, line: 259
#, c-format
msgid ""
"%s: Wrong type for input argument #%d: A string or a boolean expected.\n"
msgstr ""
#
# File: sci_gateway/cpp/sci_h5mv.cpp, line: 117
#, c-format
msgid "%s: Invalid number of arguments: more than %d expected.\n"
msgstr ""
#
# File: sci_gateway/cpp/sci_h5open.cpp, line: 95
#, c-format
msgid "%s: Invalid access mode: %s.\n"
msgstr ""
#
# File: sci_gateway/cpp/sci_h5open.cpp, line: 130
#, c-format
msgid "%s: Invalid number of input arguments.\n"
msgstr ""
#
# File: sci_gateway/cpp/sci_h5open.cpp, line: 163
# File: sci_gateway/cpp/sci_h5open.cpp, line: 187
#, c-format
msgid "%s: Wrong type for input argument #%d: A double expected.\n"
msgstr ""
#
# File: sci_gateway/cpp/sci_h5read.cpp, line: 87
# File: sci_gateway/cpp/sci_h5read.cpp, line: 146
#, c-format
msgid "%s: Invalid number of input argument.\n"
msgstr ""
#
# File: sci_gateway/cpp/sci_h5read.cpp, line: 110
#, c-format
msgid "%s: Invalid path: cannot be empty.\n"
msgstr ""
#
# File: sci_gateway/cpp/sci_h5read.cpp, line: 140
#, c-format
msgid "%s: Second argument must be a dataset name.\n"
msgstr ""
#
# File: sci_gateway/cpp/sci_h5read.cpp, line: 167
# File: sci_gateway/cpp/sci_h5read.cpp, line: 205
# File: sci_gateway/cpp/sci_h5write.cpp, line: 200
#, c-format
msgid ""
"%s: Wrong size for input argument #%d: Same size as the data expected.\n"
msgstr ""
#
# File: sci_gateway/cpp/sci_h5read.cpp, line: 218
# File: sci_gateway/cpp/sci_h5write.cpp, line: 218
#, c-format
msgid "%s: Argument 'count' is missing.\n"
msgstr ""
#
# File: sci_gateway/cpp/sci_h5readattr.cpp, line: 89
#, c-format
msgid "%s: Invalid number of argument(s): %d expected.\n"
msgstr ""
#
# File: sci_gateway/cpp/sci_h5rm.cpp, line: 88
#, c-format
msgid "%s: Wrong number of input arguments: %d expected.\n"
msgstr ""
#
# File: sci_gateway/cpp/sci_import_from_hdf5.cpp, line: 85
# File: sci_gateway/cpp/sci_listvar_in_hdf5.cpp, line: 99
# File: src/cpp/import_from_hdf5_v1.cpp, line: 93
# File: src/cpp/listvar_in_hdf5_v1.cpp, line: 93
#, c-format
msgid "%s: Unable to open file: %s\n"
msgstr ""
#
# File: sci_gateway/cpp/sci_import_from_hdf5.cpp, line: 101
# File: sci_gateway/cpp/sci_listvar_in_hdf5.cpp, line: 116
#, c-format
msgid "%s: Wrong SOD file format version. Max Expected: %d Found: %d\n"
msgstr ""
#
# File: sci_gateway/cpp/sci_import_from_hdf5.cpp, line: 276
# File: sci_gateway/cpp/sci_listvar_in_hdf5.cpp, line: 319
# File: src/cpp/import_from_hdf5_v1.cpp, line: 262
# File: src/cpp/listvar_in_hdf5_v1.cpp, line: 290
#, c-format
msgid "%s: Invalid HDF5 Scilab format.\n"
msgstr ""
#
# File: sci_gateway/cpp/sci_percent_H5Object_e.cpp, line: 45
#, c-format
msgid "%s: Wrong number of input arguments: More than %d expected.\n"
msgstr ""
#
# File: sci_gateway/cpp/sci_percent_H5Object_e.cpp, line: 64
#, c-format
msgid "%s: Wrong type for input argument #%d: A string or a double expected.\n"
msgstr ""
#
# File: sci_gateway/cpp/sci_percent_H5Object_e.cpp, line: 72
#, c-format
msgid "%s: Only one field can be requested.\n"
msgstr ""
#
# File: sci_gateway/cpp/sci_percent_H5Object_e.cpp, line: 178
#, c-format
msgid ""
"%s: Error in retrieving field content:\n"
"%s\n"
msgstr ""
#
# File: sci_gateway/cpp/sci_percent_H5Object_fieldnames.cpp, line: 55
#, c-format
msgid "%s: Not an H5 Compound object.\n"
msgstr ""
#
# File: sci_gateway/cpp/sci_percent_H5Object_p.cpp, line: 53
#, c-format
msgid "%s: Can not print H5Object.\n"
msgstr ""
#
# File: src/cpp/H5ArrayData.cpp, line: 65
# File: src/cpp/H5CompoundData.cpp, line: 100
# File: src/cpp/H5ReferenceData.cpp, line: 77
# File: src/cpp/H5VlenData.cpp, line: 54
msgid "Invalid index."
msgstr ""
#
# File: src/cpp/H5ArrayData.cpp, line: 77
# File: src/cpp/H5CompoundData.cpp, line: 127
# File: src/cpp/H5Dataspace.cpp, line: 251
# File: src/cpp/H5ReferenceData.cpp, line: 149
# File: src/cpp/H5VlenData.cpp, line: 70
msgid "Dimensions"
msgstr ""
#
# File: src/cpp/H5Attribute.cpp, line: 24
# File: src/cpp/H5Attribute.cpp, line: 30
#, c-format
msgid "Cannot open attribute: %s"
msgstr ""
#
# File: src/cpp/H5Attribute.cpp, line: 57
msgid "Cannot get the attribute type"
msgstr ""
#
# File: src/cpp/H5Attribute.cpp, line: 68
msgid "Cannot get the attribute dataspace"
msgstr ""
#
# File: src/cpp/H5Attribute.cpp, line: 132
# File: src/cpp/H5Dataset.cpp, line: 238
msgid "Error in retrieving data."
msgstr ""
#
# File: src/cpp/H5Attribute.cpp, line: 183
#, c-format
msgid "Attribute %s already exists."
msgstr ""
#
# File: src/cpp/H5Attribute.cpp, line: 189
msgid "Cannot create a new attribute."
msgstr ""
#
# File: src/cpp/H5Attribute.cpp, line: 196
msgid "Cannot write data in the attribute."
msgstr ""
#
# File: src/cpp/H5Attribute.cpp, line: 214
# File: src/cpp/H5Attribute.cpp, line: 223
msgid "Cannot copy the attribute"
msgstr ""
#
# File: src/cpp/H5Attribute.cpp, line: 244
msgid "Cannot read attribute data."
msgstr ""
#
# File: src/cpp/H5AttributesList.cpp, line: 38
msgid "Cannot get the size of attribute list."
msgstr ""
#
# File: src/cpp/H5AttributesList.cpp, line: 72
# File: src/cpp/H5GroupsList.cpp, line: 71
# File: src/cpp/H5LinksList.cpp, line: 51
#, c-format
msgid "Invalid index %d: must be between 0 and %d."
msgstr ""
#
# File: src/cpp/H5AttributesList.cpp, line: 84
#, c-format
msgid "Cannot open attribute at position %d."
msgstr ""
#
# File: src/cpp/H5AttributesList.cpp, line: 120
# File: src/cpp/H5ExternalLink.cpp, line: 142
# File: src/cpp/H5HardLink.cpp, line: 100
# File: src/cpp/H5NamedObjectsList.hxx, line: 230
# File: src/cpp/H5SoftLink.cpp, line: 115
msgid "Filename"
msgstr ""
#
# File: src/cpp/H5AttributesList.cpp, line: 121
msgid "Number of elements"
msgstr ""
#
# File: src/cpp/H5BasicData.hxx, line: 135
msgid "Cannot copy data to an empty pointer"
msgstr ""
#
# File: src/cpp/H5BasicData.hxx, line: 207
# File: src/cpp/H5Dataset.cpp, line: 388
msgid "Wrong dimensions."
msgstr ""
#
# File: src/cpp/H5CompoundData.cpp, line: 84
#, c-format
msgid "Invalid field name: %s"
msgstr ""
#
# File: src/cpp/H5CompoundData.cpp, line: 146
msgid "Fields Names"
msgstr ""
#
# File: src/cpp/H5Data.hxx, line: 89
# File: src/cpp/H5Data.hxx, line: 95
# File: src/cpp/H5Data.hxx, line: 102
# File: src/cpp/H5DataConverter.cpp, line: 26
# File: src/cpp/H5DataConverter.cpp, line: 32
# File: src/cpp/H5DataConverter.cpp, line: 40
# File: src/cpp/H5DataConverter.cpp, line: 49
msgid "Cannot create an hypermatrix on the stack"
msgstr ""
#
# File: src/cpp/H5DataFactory.cpp, line: 30
msgid "Cannot get the data type"
msgstr ""
#
# File: src/cpp/H5DataFactory.cpp, line: 114
msgid "Unknown integer datatype."
msgstr ""
#
# File: src/cpp/H5DataFactory.cpp, line: 128
msgid "Unknown floating-point datatype."
msgstr ""
#
# File: src/cpp/H5DataFactory.cpp, line: 154
msgid "Bitfield is too big"
msgstr ""
#
# File: src/cpp/H5DataFactory.cpp, line: 216
# File: src/cpp/H5DataFactory.cpp, line: 219
msgid "Cannot get data from an unknown data type."
msgstr ""
#
# File: src/cpp/H5DataFactory.cpp, line: 289
msgid "Memory to allocate is too big"
msgstr ""
#
# File: src/cpp/H5DataFactory.cpp, line: 314
# File: src/cpp/H5DataFactory.cpp, line: 326
msgid "Cannot allocate memory to get the data"
msgstr ""
#
# File: src/cpp/H5DataFactory.cpp, line: 358
msgid "Cannot retrieve the data from the attribute"
msgstr ""
#
# File: src/cpp/H5Dataset.cpp, line: 27
#, c-format
msgid "Cannot open the given dataset %s."
msgstr ""
#
# File: src/cpp/H5Dataset.cpp, line: 64
# File: src/cpp/H5Dataset.cpp, line: 75
# File: src/cpp/H5Dataset.cpp, line: 176
# File: src/cpp/H5Dataset.cpp, line: 356
#, c-format
msgid "Cannot get the dataspace associated with dataset named %s."
msgstr ""
#
# File: src/cpp/H5Dataset.cpp, line: 100
msgid "Invalid layout"
msgstr ""
#
# File: src/cpp/H5Dataset.cpp, line: 187
#, c-format
msgid "Only %d dimensions."
msgstr ""
#
# File: src/cpp/H5Dataset.cpp, line: 300
msgid "Cannot list dataset attributes."
msgstr ""
#
# File: src/cpp/H5Dataset.cpp, line: 348
#, c-format
msgid "Cannot open the dataset: %s"
msgstr ""
#
# File: src/cpp/H5Dataset.cpp, line: 370
msgid "Invalid source space"
msgstr ""
#
# File: src/cpp/H5Dataset.cpp, line: 375
# File: src/cpp/H5Dataset.cpp, line: 434
msgid "Invalid target space"
msgstr ""
#
# File: src/cpp/H5Dataset.cpp, line: 396
msgid "Cannot modify maximum dimensions."
msgstr ""
#
# File: src/cpp/H5Dataset.cpp, line: 403
#, c-format
msgid "Cannot modify dimension %d."
msgstr ""
#
# File: src/cpp/H5Dataset.cpp, line: 448
#, c-format
msgid "Cannot set the chunk dimensions: %s"
msgstr ""
#
# File: src/cpp/H5Dataset.cpp, line: 461
#, c-format
msgid "Cannot create the dataset: %s"
msgstr ""
#
# File: src/cpp/H5Dataset.cpp, line: 468
msgid "Cannot write data in the dataset."
msgstr ""
#
# File: src/cpp/H5Dataspace.cpp, line: 50
# File: src/cpp/H5Dataspace.cpp, line: 234
msgid "unknown dataspace"
msgstr ""
#
# File: src/cpp/H5Dataspace.cpp, line: 86
msgid "Unknown dataspace: cannot get its dimensions"
msgstr ""
#
# File: src/cpp/H5Dataspace.cpp, line: 97
msgid "Cannot select all."
msgstr ""
#
# File: src/cpp/H5Dataspace.cpp, line: 113
# File: src/cpp/H5Dataspace.cpp, line: 124
# File: src/cpp/H5File.cpp, line: 384
msgid "Cannot create an array of integer on the stack."
msgstr ""
#
# File: src/cpp/H5Dataspace.cpp, line: 136
# File: src/cpp/H5ExternalLink.cpp, line: 77
# File: src/cpp/H5ExternalLink.cpp, line: 93
# File: src/cpp/H5File.cpp, line: 361
# File: src/cpp/H5HardLink.cpp, line: 66
# File: src/cpp/H5Object.cpp, line: 122
# File: src/cpp/H5Object.cpp, line: 134
# File: src/cpp/H5SoftLink.cpp, line: 62
# File: src/cpp/H5SoftLink.cpp, line: 74
# File: src/cpp/H5Type.cpp, line: 801
# File: src/cpp/H5Type.cpp, line: 813
# File: src/cpp/H5Type.cpp, line: 836
msgid "Cannot create a string on the stack."
msgstr ""
#
# File: src/cpp/H5Dataspace.cpp, line: 194
msgid "Unknown dataspace"
msgstr ""
#
# File: src/cpp/H5Dataspace.cpp, line: 252
msgid "Extents"
msgstr ""
#
# File: src/cpp/H5Dataspace.hxx, line: 65
msgid "Invalid selection rank."
msgstr ""
#
# File: src/cpp/H5Dataspace.hxx, line: 92
# File: src/cpp/H5Dataspace.hxx, line: 99
# File: src/cpp/H5Dataspace.hxx, line: 116
# File: src/cpp/H5Dataspace.hxx, line: 122
msgid "Invalid selection."
msgstr ""
#
# File: src/cpp/H5Exception.hxx, line: 81
msgid "Cannot get the current stack of errors."
msgstr ""
#
# File: src/cpp/H5Exception.hxx, line: 111
msgid "HDF5 description"
msgstr ""
#
# File: src/cpp/H5Exception.hxx, line: 128
msgid "Exception thrown in file"
msgstr ""
#
# File: src/cpp/H5Exception.hxx, line: 128
msgid "at line"
msgstr ""
#
# File: src/cpp/H5ExternalLink.cpp, line: 30
# File: src/cpp/H5HardLink.cpp, line: 28
# File: src/cpp/H5Link.cpp, line: 49
# File: src/cpp/H5SoftLink.cpp, line: 28
msgid "Cannot get the link info"
msgstr ""
#
# File: src/cpp/H5ExternalLink.cpp, line: 38
# File: src/cpp/H5ExternalLink.cpp, line: 47
# File: src/cpp/H5SoftLink.cpp, line: 35
msgid "Cannot get the link target"
msgstr ""
#
# File: src/cpp/H5ExternalLink.cpp, line: 143
# File: src/cpp/H5HardLink.cpp, line: 101
# File: src/cpp/H5SoftLink.cpp, line: 116
msgid "Link type"
msgstr ""
#
# File: src/cpp/H5ExternalLink.cpp, line: 144
# File: src/cpp/H5HardLink.cpp, line: 102
# File: src/cpp/H5SoftLink.cpp, line: 117
msgid "Link name"
msgstr ""
#
# File: src/cpp/H5ExternalLink.cpp, line: 145
# File: src/cpp/H5HardLink.cpp, line: 103
# File: src/cpp/H5SoftLink.cpp, line: 118
msgid "Link path"
msgstr ""
#
# File: src/cpp/H5ExternalLink.cpp, line: 146
msgid "Link target file"
msgstr ""
#
# File: src/cpp/H5ExternalLink.cpp, line: 147
msgid "Link target path"
msgstr ""
#
# File: src/cpp/H5File.cpp, line: 35
msgid "Invalid hdf5 file: empty filename."
msgstr ""
#
# File: src/cpp/H5File.cpp, line: 43
# File: src/cpp/H5File.cpp, line: 57
#, c-format
msgid "Invalid hdf5 file: %s."
msgstr ""
#
# File: src/cpp/H5File.cpp, line: 49
# File: src/cpp/H5File.cpp, line: 63
# File: src/cpp/H5File.cpp, line: 91
#, c-format
msgid "Cannot open the given hdf5 file: %s."
msgstr ""
#
# File: src/cpp/H5File.cpp, line: 72
# File: src/cpp/H5File.cpp, line: 80
# File: src/cpp/H5File.cpp, line: 113
#, c-format
msgid "Cannot create the given hdf5 file: %s."
msgstr ""
#
# File: src/cpp/H5File.cpp, line: 102
#, c-format
msgid ""
"Cannot open the file: %s, an empty file with the same name already exists."
msgstr ""
#
# File: src/cpp/H5File.cpp, line: 105
#, c-format
msgid "Cannot append the file (not HDF5): %s."
msgstr ""
#
# File: src/cpp/H5File.cpp, line: 118
msgid "Invalid flag."
msgstr ""
#
# File: src/cpp/H5File.cpp, line: 124
# File: src/cpp/H5File.cpp, line: 270
#, c-format
msgid "Invalid path: %s"
msgstr ""
#
# File: src/cpp/H5File.cpp, line: 181
msgid "Cannot set 'core' as driver."
msgstr ""
#
# File: src/cpp/H5File.cpp, line: 204
#, c-format
msgid "Invalid filename: must contain a '%d'."
msgstr ""
#
# File: src/cpp/H5File.cpp, line: 217
msgid "Cannot set 'family' as driver."
msgstr ""
#
# File: src/cpp/H5File.cpp, line: 261
msgid "Error in flushing the file."
msgstr ""
#
# File: src/cpp/H5File.cpp, line: 297
# File: src/cpp/H5File.cpp, line: 439
#, c-format
msgid "Cannot retrieve file size: %s"
msgstr ""
#
# File: src/cpp/H5File.cpp, line: 308
#, c-format
msgid "Cannot retrieve file version: %s"
msgstr ""
#
# File: src/cpp/H5File.cpp, line: 372
# File: src/cpp/H5Type.cpp, line: 824
# File: src/cpp/H5Type.cpp, line: 847
msgid "Cannot create an integer on the stack."
msgstr ""
#
# File: src/cpp/H5File.cpp, line: 396
#, c-format
msgid "Invalid field %s."
msgstr ""
#
# File: src/cpp/H5Group.cpp, line: 30
#, c-format
msgid "Cannot open the group %s."
msgstr ""
#
# File: src/cpp/H5Group.cpp, line: 100
msgid "Cannot get the links number"
msgstr ""
#
# File: src/cpp/H5Group.cpp, line: 213
msgid "Cannot create a column of strings on the stack."
msgstr ""
#
# File: src/cpp/H5Group.cpp, line: 241
msgid "Cannot list group links."
msgstr ""
#
# File: src/cpp/H5Group.cpp, line: 248
msgid "Cannot list group attributes."
msgstr ""
#
# File: src/cpp/H5Group.cpp, line: 320
# File: src/cpp/H5Object.cpp, line: 494
msgid "Cannot list group contents"
msgstr ""
#
# File: src/cpp/H5Group.cpp, line: 465
#, c-format
msgid "The group already exists: %s."
msgstr ""
#
# File: src/cpp/H5Group.cpp, line: 471
#, c-format
msgid "Cannot create the group: %s."
msgstr ""
#
# File: src/cpp/H5GroupsList.cpp, line: 31
# File: src/cpp/H5GroupsList.cpp, line: 78
msgid "Cannot get the number of groups."
msgstr ""
#
# File: src/cpp/H5HardLink.cpp, line: 34
msgid "Cannot get linked object"
msgstr ""
#
# File: src/cpp/H5HardLink.cpp, line: 104
msgid "Link target name"
msgstr ""
#
# File: src/cpp/H5Link.cpp, line: 26
#, c-format
msgid "The link %s does not exist."
msgstr ""
#
# File: src/cpp/H5Link.cpp, line: 65
#, c-format
msgid "Invalid link type: %s."
msgstr ""
#
# File: src/cpp/H5LinksList.cpp, line: 28
msgid "Cannot get the number of links."
msgstr ""
#
# File: src/cpp/H5ListObject.hxx, line: 48
# File: src/cpp/H5Object.hxx, line: 229
# File: src/cpp/H5Object.hxx, line: 234
# File: src/cpp/H5Object.hxx, line: 239
msgid "Invalid operation"
msgstr ""
#
# File: src/cpp/H5NamedObjectsList.hxx, line: 58
#, c-format
msgid "Invalid index at position %d"
msgstr ""
#
# File: src/cpp/H5NamedObjectsList.hxx, line: 188
msgid "Cannot get the number of objects."
msgstr ""
#
# File: src/cpp/H5NamedObjectsList.hxx, line: 231
msgid "Parent group name"
msgstr ""
#
# File: src/cpp/H5NamedObjectsList.hxx, line: 232
msgid "Parent group path"
msgstr ""
#
# File: src/cpp/H5NamedObjectsList.hxx, line: 233
msgid "Elements type"
msgstr ""
#
# File: src/cpp/H5NamedObjectsList.hxx, line: 234
msgid "Size"
msgstr ""
#
# File: src/cpp/H5NamedObjectsList.hxx, line: 261
#, c-format
msgid "Invalid index: %d."
msgstr ""
#
# File: src/cpp/H5NamedObjectsList.hxx, line: 289
#, c-format
msgid "Cannot get object at position %d."
msgstr ""
#
# File: src/cpp/H5NamedObjectsList.hxx, line: 301
# File: src/cpp/H5NamedObjectsList.hxx, line: 307
# File: src/cpp/H5Object.cpp, line: 279
# File: src/cpp/H5Object.cpp, line: 289
# File: src/cpp/H5Object.cpp, line: 322
# File: src/cpp/H5Object.cpp, line: 335
# File: src/cpp/H5Object.cpp, line: 342
# File: src/cpp/H5Object.cpp, line: 348
#, c-format
msgid "Invalid name: %s."
msgstr ""
#
# File: src/cpp/H5NamedObjectsList.hxx, line: 315
# File: src/cpp/H5Object.cpp, line: 304
# File: src/cpp/H5Object.cpp, line: 363
msgid "Invalid HDF5 object"
msgstr ""
#
# File: src/cpp/H5Object.cpp, line: 140
#, c-format
msgid "Invalid field: %s"
msgstr ""
#
# File: src/cpp/H5Object.cpp, line: 159
# File: src/cpp/H5Object.cpp, line: 165
# File: src/cpp/H5Object.cpp, line: 171
# File: src/cpp/H5Object.cpp, line: 186
# File: src/cpp/H5Object.cpp, line: 192
# File: src/cpp/H5Object.cpp, line: 198
msgid "Cannot create a mlist on the stack."
msgstr ""
#
# File: src/cpp/H5Object.cpp, line: 224
msgid "Cannot list names."
msgstr ""
#
# File: src/cpp/H5Object.cpp, line: 239
msgid "Cannot retrieve information about the object"
msgstr ""
#
# File: src/cpp/H5Object.cpp, line: 258
# File: src/cpp/H5ReferenceData.cpp, line: 111
# File: src/cpp/H5ReferenceData.cpp, line: 219
msgid "Unknown HDF5 object"
msgstr ""
#
# File: src/cpp/H5Object.hxx, line: 156
msgid "Cannot retrieve numeric index."
msgstr ""
#
# File: src/cpp/H5Options.hxx, line: 59
# File: src/cpp/H5Options.hxx, line: 72
msgid "Invalid option: must be C or FORTRAN."
msgstr ""
#
# File: src/cpp/H5ReferenceData.cpp, line: 87
msgid "Cannot open object at the given position."
msgstr ""
#
# File: src/cpp/H5SoftLink.cpp, line: 119
msgid "Link target"
msgstr ""
#
# File: src/cpp/H5StringData.cpp, line: 64
msgid "Cannot free the memory associated with String data"
msgstr ""
#
# File: src/cpp/H5Type.cpp, line: 25
#, c-format
msgid "Invalid H5Type name: %s."
msgstr ""
#
# File: src/cpp/H5Type.cpp, line: 727
# File: src/cpp/H5Type.cpp, line: 1686
msgid "Unknown datatype"
msgstr ""
#
# File: src/cpp/HDF5Scilab.cpp, line: 44
msgid "Cannot get H5Object id"
msgstr ""
#
# File: src/cpp/HDF5Scilab.cpp, line: 229
msgid "Invalid object: not a dataset."
msgstr ""
#
# File: src/cpp/HDF5Scilab.cpp, line: 304
msgid "Cannot remove a file."
msgstr ""
#
# File: src/cpp/HDF5Scilab.cpp, line: 315
msgid "Cannot remove root element."
msgstr ""
#
# File: src/cpp/HDF5Scilab.cpp, line: 322
#, c-format
msgid "The name doesn't exist: %s."
msgstr ""
#
# File: src/cpp/HDF5Scilab.cpp, line: 328
#, c-format
msgid "Cannot remove the attribute: %s."
msgstr ""
#
# File: src/cpp/HDF5Scilab.cpp, line: 337
#, c-format
msgid "Cannot remove the link: %s."
msgstr ""
#
# File: src/cpp/HDF5Scilab.cpp, line: 371
# File: src/cpp/HDF5Scilab.cpp, line: 417
#, c-format
msgid "The link already exists: %s."
msgstr ""
#
# File: src/cpp/HDF5Scilab.cpp, line: 387
#, c-format
msgid "Cannot create the hard link: %s."
msgstr ""
#
# File: src/cpp/HDF5Scilab.cpp, line: 391
#, c-format
msgid "Cannot create the soft link: %s."
msgstr ""
#
# File: src/cpp/HDF5Scilab.cpp, line: 406
#, c-format
msgid "Cannot create a hard link to the external object: %s."
msgstr ""
#
# File: src/cpp/HDF5Scilab.cpp, line: 423
#, c-format
msgid "Cannot create the external link: %s."
msgstr ""
#
# File: src/cpp/HDF5Scilab.cpp, line: 520
msgid "Cannot copy object."
msgstr ""
#
# File: src/cpp/HDF5Scilab.cpp, line: 650
msgid "Invalid filter"
msgstr ""
#
# File: src/cpp/HDF5Scilab.cpp, line: 780
msgid "Can only label a dataset"
msgstr ""
#
# File: src/cpp/HDF5Scilab.cpp, line: 870
msgid "Target object is not a file"
msgstr ""
#
# File: src/cpp/HDF5Scilab.cpp, line: 875
# File: src/cpp/HDF5Scilab.cpp, line: 895
msgid "Invalid location"
msgstr ""
#
# File: src/cpp/HDF5Scilab.cpp, line: 880
#, c-format
msgid "Invalid location: %s"
msgstr ""
#
# File: src/cpp/HDF5Scilab.cpp, line: 886
#, c-format
msgid "Cannot mount the file: %s"
msgstr ""
#
# File: src/cpp/HDF5Scilab.cpp, line: 901
#, c-format
msgid "Cannot unmount the file at location: %s"
msgstr ""
#
# File: src/cpp/HDF5Scilab.cpp, line: 913
#, c-format
msgid "Can not read input argument #%d."
msgstr ""
#
# File: src/cpp/HDF5Scilab.cpp, line: 932
#, c-format
msgid "Can not get the type of input argument #%d."
msgstr ""
#
# File: src/cpp/HDF5Scilab.cpp, line: 952
# File: src/cpp/HDF5Scilab.cpp, line: 976
# File: src/cpp/HDF5Scilab.cpp, line: 995
# File: src/cpp/HDF5Scilab.cpp, line: 1004
# File: src/cpp/HDF5Scilab.cpp, line: 1012
# File: src/cpp/HDF5Scilab.cpp, line: 1020
# File: src/cpp/HDF5Scilab.cpp, line: 1028
# File: src/cpp/HDF5Scilab.cpp, line: 1036
# File: src/cpp/HDF5Scilab.cpp, line: 1044
# File: src/cpp/HDF5Scilab.cpp, line: 1054
# File: src/cpp/HDF5Scilab.cpp, line: 1062
# File: src/cpp/HDF5Scilab.cpp, line: 1081
# File: src/cpp/HDF5Scilab.cpp, line: 1100
# File: src/cpp/HDF5Scilab.cpp, line: 1121
# File: src/cpp/HDF5Scilab.cpp, line: 1133
#, c-format
msgid "%s: Can not read input argument #%d."
msgstr ""
#
# File: src/cpp/HDF5Scilab.cpp, line: 1155
# File: src/cpp/HDF5Scilab.cpp, line: 1161
#, c-format
msgid "%s: Datatype not handled for now."
msgstr ""
#
# File: src/cpp/HDF5Scilab.hxx, line: 155
#, c-format
msgid "Invalid rank, must be in the interval [0, %d]."
msgstr ""
#
# File: src/cpp/HDF5Scilab.hxx, line: 170
msgid "No converter found for the specified target datatype."
msgstr ""
#
# File: src/cpp/HDF5Scilab.hxx, line: 177
# File: src/cpp/HDF5Scilab.hxx, line: 224
msgid "Cannot create a new dataspace."
msgstr ""
#
# File: src/cpp/HDF5Scilab.hxx, line: 202
msgid "Invalid target dataspace."
msgstr ""
#
# File: src/cpp/HDF5Scilab.hxx, line: 326
msgid "Cannot create the target type."
msgstr ""
#
# File: src/cpp/HDF5Scilab.hxx, line: 357
msgid "Incompatible dimensions"
msgstr ""
#
# File: src/cpp/HDF5Scilab.hxx, line: 378
msgid "References must be given as strings"
msgstr ""
#
# File: src/cpp/HDF5Scilab.hxx, line: 391
#, c-format
msgid "Invalid path: %s."
msgstr ""
# File: demos/hdf5.dem.gateway.sce, line: 10
msgid "HDF5"
msgstr ""
#
# File: demos/hdf5.dem.gateway.sce, line: 12
msgid "Ring resonator (HDF5 data source)"
msgstr ""
#
# File: demos/resonator.dem.sce, line: 12
msgid "Ring Resonator from a HDF5 file"
msgstr ""
#
# File: demos/resonator.dem.sce, line: 26
msgid "X position [a]"
msgstr ""
#
# File: demos/resonator.dem.sce, line: 27
msgid "Y position [a]"
msgstr ""
#
# File: demos/resonator.dem.sce, line: 28
msgid "Permittivity"
msgstr ""
#
# File: demos/resonator.dem.sce, line: 32
msgid "Ring Resonator"
msgstr ""
|