@igo2/core 1.9.4 → 1.11.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/__ivy_ngcc__/locale/en.core.json +6 -0
- package/__ivy_ngcc__/locale/en.geo.json +31 -9
- package/__ivy_ngcc__/locale/en.integration.json +3 -1
- package/__ivy_ngcc__/locale/en.json +38 -8
- package/__ivy_ngcc__/locale/fr.core.json +6 -0
- package/__ivy_ngcc__/locale/fr.geo.json +28 -6
- package/__ivy_ngcc__/locale/fr.integration.json +3 -1
- package/__ivy_ngcc__/locale/fr.json +35 -5
- package/bundles/igo2-core.umd.js +120 -138
- package/bundles/igo2-core.umd.js.map +1 -1
- package/esm2015/lib/config/version.js +3 -3
- package/esm2015/lib/message/index.js +1 -2
- package/esm2015/lib/message/message.module.js +38 -9
- package/esm2015/lib/message/shared/index.js +1 -1
- package/esm2015/lib/message/shared/message.enum.js +3 -2
- package/esm2015/lib/message/shared/message.interface.js +1 -1
- package/esm2015/lib/message/shared/message.service.js +55 -72
- package/esm2015/lib/network/network.service.js +11 -3
- package/fesm2015/igo2-core.js +107 -126
- package/fesm2015/igo2-core.js.map +1 -1
- package/lib/message/index.d.ts +0 -1
- package/lib/message/message.module.d.ts +3 -4
- package/lib/message/shared/index.d.ts +1 -1
- package/lib/message/shared/message.enum.d.ts +2 -1
- package/lib/message/shared/message.interface.d.ts +4 -4
- package/lib/message/shared/message.service.d.ts +14 -11
- package/lib/network/network.service.d.ts +1 -0
- package/locale/en.core.json +6 -0
- package/locale/en.geo.json +31 -9
- package/locale/en.integration.json +3 -1
- package/locale/en.json +38 -8
- package/locale/fr.core.json +6 -0
- package/locale/fr.geo.json +28 -6
- package/locale/fr.integration.json +3 -1
- package/locale/fr.json +35 -5
- package/package.json +4 -4
- package/style/core.theming.scss +3 -1
- package/style/index.theming.scss +228 -36
- package/esm2015/lib/message/message-center/index.js +0 -2
- package/esm2015/lib/message/message-center/message-center.component.js +0 -43
- package/lib/message/message-center/index.d.ts +0 -1
- package/lib/message/message-center/message-center.component.d.ts +0 -19
|
@@ -49,12 +49,12 @@
|
|
|
49
49
|
"title": "Nothing to import"
|
|
50
50
|
},
|
|
51
51
|
"success": {
|
|
52
|
-
"text": "
|
|
53
|
-
"title": "
|
|
52
|
+
"text": "The layer '{{value}}' was added to the map",
|
|
53
|
+
"title": "Imported file"
|
|
54
54
|
},
|
|
55
55
|
"unreadable": {
|
|
56
|
-
"text": "
|
|
57
|
-
"title": "
|
|
56
|
+
"text": "The file '{{value}}' is unreadable",
|
|
57
|
+
"title": "Unreadable file"
|
|
58
58
|
},
|
|
59
59
|
"tooLarge": {
|
|
60
60
|
"text": "The file '{{value}}' is too large (Max: {{size}} MB)",
|
|
@@ -113,16 +113,18 @@
|
|
|
113
113
|
"encoding": {
|
|
114
114
|
"LATIN1": "LATIN-1",
|
|
115
115
|
"UTF8": "UTF-8"
|
|
116
|
-
}
|
|
116
|
+
},
|
|
117
|
+
"combinedLayers": "combinedLayers"
|
|
117
118
|
},
|
|
118
119
|
"importExportForm": {
|
|
119
120
|
"exportButton": "Export",
|
|
120
121
|
"exportButtonLink": "Open the link",
|
|
121
122
|
"exportButtonLinks": "Open the links",
|
|
122
|
-
"
|
|
123
|
+
"exportCombineResults": "Combine layers into one file",
|
|
123
124
|
"exportFormatPlaceholder": "Format",
|
|
124
125
|
"exportLayerPlaceholder": "Layer",
|
|
125
126
|
"exportFileNamePlaceholder": "Filename",
|
|
127
|
+
"exportSeparator": "Insert separator (empty row) between layers",
|
|
126
128
|
"encodingPlaceholder": "Encoding",
|
|
127
129
|
"exportTabTitle": "Export",
|
|
128
130
|
"exportFeatureInExtent": "Export only features in map extent",
|
|
@@ -186,7 +188,7 @@
|
|
|
186
188
|
"selectField": "Choose a field"
|
|
187
189
|
},
|
|
188
190
|
"filter": {
|
|
189
|
-
"resetFilters": "
|
|
191
|
+
"resetFilters": "Reset default values",
|
|
190
192
|
"addFilter": "Add an empty filter to the current list",
|
|
191
193
|
"removeFilter": "Remove the current filter from the filters's list",
|
|
192
194
|
"toggleFilterState": "Enable/disable the current filter",
|
|
@@ -263,6 +265,7 @@
|
|
|
263
265
|
"mapButtons": {
|
|
264
266
|
"baselayerSwitcher": "Change base layer",
|
|
265
267
|
"geolocate": "Geolocate",
|
|
268
|
+
"home-extent": "Go to the home map extent",
|
|
266
269
|
"offline": "Offline mode",
|
|
267
270
|
"online": "Online mode",
|
|
268
271
|
"zoomIn": "Zoom in ({{zoom}})",
|
|
@@ -382,8 +385,8 @@
|
|
|
382
385
|
"notification": "notification ...",
|
|
383
386
|
"uturnText": "Make u-turn and head {{translatedDirection}} on {{route}}",
|
|
384
387
|
"unknown": "???",
|
|
385
|
-
|
|
386
|
-
"cntSuffix": {
|
|
388
|
+
|
|
389
|
+
"cntSuffix": {
|
|
387
390
|
"first": "st",
|
|
388
391
|
"secondAndMore": "rd"
|
|
389
392
|
},
|
|
@@ -545,6 +548,8 @@
|
|
|
545
548
|
"Address": "Addresses",
|
|
546
549
|
"Thematics": "Thematics",
|
|
547
550
|
"searchResults": "Search Results",
|
|
551
|
+
"showSearchResults": "Show search results",
|
|
552
|
+
"hideSearchResults": "Hide search results",
|
|
548
553
|
"type": "Type",
|
|
549
554
|
"radius": "Radius",
|
|
550
555
|
"radiusAlert": "Radius must be between 0 and 100 kilometers (or 100 000 meters)",
|
|
@@ -697,8 +702,25 @@
|
|
|
697
702
|
}
|
|
698
703
|
},
|
|
699
704
|
"workspace": {
|
|
705
|
+
"deleteConfirmation": "Do you really want to delete this entity?",
|
|
706
|
+
"addConfirmation": "Do you really wish to add an entity?",
|
|
707
|
+
"modifyConfirmation": "Do you really wish to modify this entity?",
|
|
708
|
+
"deleteSuccess": "Entity has been deleted.",
|
|
709
|
+
"addSuccess": "Entity has been added.",
|
|
710
|
+
"modifySuccess": "Entity has been modified.",
|
|
711
|
+
"deleteError": "An error has occured. Entity could not be deleted.",
|
|
712
|
+
"addError": "An error has occured. Entity could not be added.",
|
|
713
|
+
"modifyError": "An error has occured. Entity could not be modified.",
|
|
714
|
+
"cancel": "Cancel",
|
|
700
715
|
"inMapExtent.active.tooltip": "Ne montrer que les entités contenues dans la carte",
|
|
701
716
|
"inMapExtent.inactive.tooltip": "Montrer tous les entités"
|
|
717
|
+
},
|
|
718
|
+
"formValidation": {
|
|
719
|
+
"mandatory": "{{column}} is mandatory",
|
|
720
|
+
"minValue": "{{column}} is smaller than {{value}}",
|
|
721
|
+
"maxValue": "{{column}} is bigger than {{value}}",
|
|
722
|
+
"minLength": "{{column}} is shorter than {{value}} characters",
|
|
723
|
+
"maxLength": "{{column}} is longer than {{value}} characters"
|
|
702
724
|
}
|
|
703
725
|
}
|
|
704
726
|
}
|
|
@@ -96,7 +96,9 @@
|
|
|
96
96
|
"copyTitle": "Coordinates of cetre",
|
|
97
97
|
"center": "Center",
|
|
98
98
|
"coordSystem": "Systeme of coordinates",
|
|
99
|
-
"zoom": "Current zoom
|
|
99
|
+
"zoom": "Current zoom level: ",
|
|
100
|
+
"scale": "Current scale: ",
|
|
101
|
+
"resolution": "Current resolution: "
|
|
100
102
|
}
|
|
101
103
|
}
|
|
102
104
|
}
|
|
@@ -258,6 +258,12 @@
|
|
|
258
258
|
}
|
|
259
259
|
},
|
|
260
260
|
"core": {
|
|
261
|
+
"message": {
|
|
262
|
+
"success": "Success",
|
|
263
|
+
"error": "Error",
|
|
264
|
+
"info": "Info",
|
|
265
|
+
"alert": "Alert"
|
|
266
|
+
},
|
|
261
267
|
"errors": {
|
|
262
268
|
"uncaught": {
|
|
263
269
|
"message": "Sorry, service is currently not available. Please try again later",
|
|
@@ -324,12 +330,12 @@
|
|
|
324
330
|
"title": "Nothing to import"
|
|
325
331
|
},
|
|
326
332
|
"success": {
|
|
327
|
-
"text": "
|
|
328
|
-
"title": "
|
|
333
|
+
"text": "The layer '{{value}}' was added to the map",
|
|
334
|
+
"title": "Imported file"
|
|
329
335
|
},
|
|
330
336
|
"unreadable": {
|
|
331
|
-
"text": "
|
|
332
|
-
"title": "
|
|
337
|
+
"text": "The file '{{value}}' is unreadable",
|
|
338
|
+
"title": "Unreadable file"
|
|
333
339
|
},
|
|
334
340
|
"tooLarge": {
|
|
335
341
|
"text": "The file '{{value}}' is too large (Max: {{size}} MB)",
|
|
@@ -388,16 +394,18 @@
|
|
|
388
394
|
"encoding": {
|
|
389
395
|
"LATIN1": "LATIN-1",
|
|
390
396
|
"UTF8": "UTF-8"
|
|
391
|
-
}
|
|
397
|
+
},
|
|
398
|
+
"combinedLayers": "combinedLayers"
|
|
392
399
|
},
|
|
393
400
|
"importExportForm": {
|
|
394
401
|
"exportButton": "Export",
|
|
395
402
|
"exportButtonLink": "Open the link",
|
|
396
403
|
"exportButtonLinks": "Open the links",
|
|
397
|
-
"
|
|
404
|
+
"exportCombineResults": "Combine layers into one file",
|
|
398
405
|
"exportFormatPlaceholder": "Format",
|
|
399
406
|
"exportLayerPlaceholder": "Layer",
|
|
400
407
|
"exportFileNamePlaceholder": "Filename",
|
|
408
|
+
"exportSeparator": "Insert separator (empty row) between layers",
|
|
401
409
|
"encodingPlaceholder": "Encoding",
|
|
402
410
|
"exportTabTitle": "Export",
|
|
403
411
|
"exportFeatureInExtent": "Export only features in map extent",
|
|
@@ -460,7 +468,7 @@
|
|
|
460
468
|
"selectField": "Choose a field"
|
|
461
469
|
},
|
|
462
470
|
"filter": {
|
|
463
|
-
"resetFilters": "
|
|
471
|
+
"resetFilters": "Reset default values",
|
|
464
472
|
"addFilter": "Add an empty filter to the current list",
|
|
465
473
|
"removeFilter": "Remove the current filter from the filters's list",
|
|
466
474
|
"toggleFilterState": "Enable/disable the current filter",
|
|
@@ -537,6 +545,7 @@
|
|
|
537
545
|
"mapButtons": {
|
|
538
546
|
"baselayerSwitcher": "Change base layer",
|
|
539
547
|
"geolocate": "Geolocate",
|
|
548
|
+
"home-extent": "Go to the home map extent",
|
|
540
549
|
"offline": "Offline mode",
|
|
541
550
|
"online": "Online mode",
|
|
542
551
|
"zoomIn": "Zoom in ({{zoom}})",
|
|
@@ -818,6 +827,8 @@
|
|
|
818
827
|
"Address": "Addresses",
|
|
819
828
|
"Thematics": "Thematics",
|
|
820
829
|
"searchResults": "Search Results",
|
|
830
|
+
"showSearchResults": "Show search results",
|
|
831
|
+
"hideSearchResults": "Hide search results",
|
|
821
832
|
"type": "Type",
|
|
822
833
|
"radius": "Radius",
|
|
823
834
|
"radiusAlert": "Radius must be between 0 and 100 kilometers (or 100 000 meters)",
|
|
@@ -970,8 +981,25 @@
|
|
|
970
981
|
}
|
|
971
982
|
},
|
|
972
983
|
"workspace": {
|
|
984
|
+
"deleteConfirmation": "Do you really want to delete this entity?",
|
|
985
|
+
"addConfirmation": "Do you really wish to add an entity?",
|
|
986
|
+
"modifyConfirmation": "Do you really wish to modify this entity?",
|
|
987
|
+
"deleteSuccess": "Entity has been deleted.",
|
|
988
|
+
"addSuccess": "Entity has been added.",
|
|
989
|
+
"modifySuccess": "Entity has been modified.",
|
|
990
|
+
"deleteError": "An error has occured. Entity could not be deleted.",
|
|
991
|
+
"addError": "An error has occured. Entity could not be added.",
|
|
992
|
+
"modifyError": "An error has occured. Entity could not be modified.",
|
|
993
|
+
"cancel": "Cancel",
|
|
973
994
|
"inMapExtent.active.tooltip": "Ne montrer que les entités contenues dans la carte",
|
|
974
995
|
"inMapExtent.inactive.tooltip": "Montrer tous les entités"
|
|
996
|
+
},
|
|
997
|
+
"formValidation": {
|
|
998
|
+
"mandatory": "{{column}} is mandatory",
|
|
999
|
+
"minValue": "{{column}} is smaller than {{value}}",
|
|
1000
|
+
"maxValue": "{{column}} is bigger than {{value}}",
|
|
1001
|
+
"minLength": "{{column}} is shorter than {{value}} characters",
|
|
1002
|
+
"maxLength": "{{column}} is longer than {{value}} characters"
|
|
975
1003
|
}
|
|
976
1004
|
},
|
|
977
1005
|
"integration": {
|
|
@@ -1070,7 +1098,9 @@
|
|
|
1070
1098
|
"copyTitle": "Coordinates of cetre",
|
|
1071
1099
|
"center": "Center",
|
|
1072
1100
|
"coordSystem": "Systeme of coordinates",
|
|
1073
|
-
"zoom": "Current zoom
|
|
1101
|
+
"zoom": "Current zoom level: ",
|
|
1102
|
+
"scale": "Current scale: ",
|
|
1103
|
+
"resolution": "Current resolution: "
|
|
1074
1104
|
}
|
|
1075
1105
|
}
|
|
1076
1106
|
}
|
|
@@ -113,16 +113,18 @@
|
|
|
113
113
|
"encoding": {
|
|
114
114
|
"LATIN1": "LATIN-1",
|
|
115
115
|
"UTF8": "UTF-8"
|
|
116
|
-
}
|
|
116
|
+
},
|
|
117
|
+
"combinedLayers": "couchesCombinees"
|
|
117
118
|
},
|
|
118
119
|
"importExportForm": {
|
|
119
120
|
"exportButton": "Exporter",
|
|
120
121
|
"exportButtonLink": "Ouvrir le lien",
|
|
121
122
|
"exportButtonLinks": "Ouvrir les liens",
|
|
122
|
-
"
|
|
123
|
+
"exportCombineResults": "Combiner les couches dans un seul fichier",
|
|
123
124
|
"exportFormatPlaceholder": "Format",
|
|
124
125
|
"exportLayerPlaceholder": "Couche(s)",
|
|
125
126
|
"exportFileNamePlaceholder": "Nom du fichier",
|
|
127
|
+
"exportSeparator": "Insérer un séparateur (ligne vide) entre les couches",
|
|
126
128
|
"encodingPlaceholder": "Encodage",
|
|
127
129
|
"exportTabTitle": "Exporter",
|
|
128
130
|
"exportFeatureInExtent": "Seulement les entités contenues dans la carte",
|
|
@@ -185,7 +187,7 @@
|
|
|
185
187
|
"selectField": "Choisir un champ"
|
|
186
188
|
},
|
|
187
189
|
"filter": {
|
|
188
|
-
"resetFilters": "
|
|
190
|
+
"resetFilters": "Réinitialiser les valeurs par défaut",
|
|
189
191
|
"addFilter": "Ajouter un filtre vide à la liste courante",
|
|
190
192
|
"removeFilter": "Supprimer le présent filtre à la liste des filtres",
|
|
191
193
|
"toggleFilterState": "Activer/désactiver le présent filtre",
|
|
@@ -262,6 +264,7 @@
|
|
|
262
264
|
"mapButtons": {
|
|
263
265
|
"baselayerSwitcher": "Changer le fond de carte",
|
|
264
266
|
"geolocate": "Afficher votre position",
|
|
267
|
+
"home-extent": "Aller à l'étendue de la carte",
|
|
265
268
|
"offline": "Passer en mode hors-ligne",
|
|
266
269
|
"online": "Passer en mode en ligne",
|
|
267
270
|
"zoomIn": "Zoomer ({{zoom}})",
|
|
@@ -381,8 +384,8 @@
|
|
|
381
384
|
"notification": "notification ...",
|
|
382
385
|
"uturnText": "Faire demi-tour et continuer en direction {{translatedDirection}} sur {{route}}",
|
|
383
386
|
"unknown": "???",
|
|
384
|
-
|
|
385
|
-
"cntSuffix": {
|
|
387
|
+
|
|
388
|
+
"cntSuffix": {
|
|
386
389
|
"first": "ère",
|
|
387
390
|
"secondAndMore": "e"
|
|
388
391
|
},
|
|
@@ -541,10 +544,12 @@
|
|
|
541
544
|
"removeLayer": "Retirer les résultats",
|
|
542
545
|
"exportLayer": "Exporter les résultats",
|
|
543
546
|
"clearForm": "Retirer le dessin",
|
|
544
|
-
"clearSearch": "Réinitialiser
|
|
547
|
+
"clearSearch": "Réinitialiser",
|
|
545
548
|
"Address": "Adresses",
|
|
546
549
|
"Thematics": "Thématiques",
|
|
547
550
|
"searchResults": "Résultats de la recherche",
|
|
551
|
+
"showSearchResults": "Afficher les résultats de la recherche",
|
|
552
|
+
"hideSearchResults": "Masquer les résultats de la recherche",
|
|
548
553
|
"type": "Type",
|
|
549
554
|
"radius": "Rayon",
|
|
550
555
|
"radiusAlert": "Le rayon doit être compris entre 0 et 100 kilomètres (ou 100 000 mètres)",
|
|
@@ -697,8 +702,25 @@
|
|
|
697
702
|
}
|
|
698
703
|
},
|
|
699
704
|
"workspace": {
|
|
705
|
+
"deleteConfirmation": "Voulez-vous vraiment supprimer cette entité?",
|
|
706
|
+
"addConfirmation": "Voulez-vous vraiment ajouter une entité?",
|
|
707
|
+
"modifyConfirmation": "Voulez-vous vraiment modifier une entité?",
|
|
708
|
+
"deleteSuccess": "L'entité a été supprimée.",
|
|
709
|
+
"addSuccess": "L'entité a été ajoutée.",
|
|
710
|
+
"modifySuccess": "L'entité a été modifiée.",
|
|
711
|
+
"deleteError": "Un problème est survenu. L'entité n'a pas pu être supprimée.",
|
|
712
|
+
"addError": "Un problème est survenu. L'entité n'a pas pu être ajoutée.",
|
|
713
|
+
"modifyError": "Un problème est survenu. L'entité n'a pas pu être modifiée.",
|
|
714
|
+
"cancel": "Annuler",
|
|
700
715
|
"inMapExtent.active.tooltip": "Ne montrer que les enregistrements contenus dans la carte",
|
|
701
716
|
"inMapExtent.inactive.tooltip": "Montrer tous les enregistrements"
|
|
717
|
+
},
|
|
718
|
+
"formValidation": {
|
|
719
|
+
"mandatory": "{{column}}est un champ obligatoire",
|
|
720
|
+
"minValue": "{{column}} doit être plus grand que {{value}}",
|
|
721
|
+
"maxValue": "{{column}}doit être plus petit que {{value}}",
|
|
722
|
+
"minLength": "{{column}} doit être plus long que {{value}} caractères",
|
|
723
|
+
"maxLength": "{{column}} doit être plus court que {{value}} caractères"
|
|
702
724
|
}
|
|
703
725
|
}
|
|
704
726
|
}
|
|
@@ -96,7 +96,9 @@
|
|
|
96
96
|
"copyTitle": "Coordonnées du centre",
|
|
97
97
|
"center": "Centre",
|
|
98
98
|
"coordSystem": "Système de coordonnées",
|
|
99
|
-
"zoom": "Niveau de zoom courant: "
|
|
99
|
+
"zoom": "Niveau de zoom courant: ",
|
|
100
|
+
"scale": "Échelle cartographique: ",
|
|
101
|
+
"resolution": "Résolution cartographique: "
|
|
100
102
|
}
|
|
101
103
|
|
|
102
104
|
}
|
|
@@ -262,6 +262,12 @@
|
|
|
262
262
|
}
|
|
263
263
|
},
|
|
264
264
|
"core": {
|
|
265
|
+
"message": {
|
|
266
|
+
"success": "Succès",
|
|
267
|
+
"error": "Erreur",
|
|
268
|
+
"info": "Info",
|
|
269
|
+
"alert": "Alerte"
|
|
270
|
+
},
|
|
265
271
|
"errors": {
|
|
266
272
|
"uncaught": {
|
|
267
273
|
"message": "Désolé! Le service que vous voulez utiliser n’est malheureusement pas disponible pour le moment. Essayez plus tard!",
|
|
@@ -392,16 +398,18 @@
|
|
|
392
398
|
"encoding": {
|
|
393
399
|
"LATIN1": "LATIN-1",
|
|
394
400
|
"UTF8": "UTF-8"
|
|
395
|
-
}
|
|
401
|
+
},
|
|
402
|
+
"combinedLayers": "couchesCombinees"
|
|
396
403
|
},
|
|
397
404
|
"importExportForm": {
|
|
398
405
|
"exportButton": "Exporter",
|
|
399
406
|
"exportButtonLink": "Ouvrir le lien",
|
|
400
407
|
"exportButtonLinks": "Ouvrir les liens",
|
|
401
|
-
"
|
|
408
|
+
"exportCombineResults": "Combiner les couches dans un seul fichier",
|
|
402
409
|
"exportFormatPlaceholder": "Format",
|
|
403
410
|
"exportLayerPlaceholder": "Couche(s)",
|
|
404
411
|
"exportFileNamePlaceholder": "Nom du fichier",
|
|
412
|
+
"exportSeparator": "Insérer un séparateur (ligne vide) entre les couches",
|
|
405
413
|
"encodingPlaceholder": "Encodage",
|
|
406
414
|
"exportTabTitle": "Exporter",
|
|
407
415
|
"exportFeatureInExtent": "Seulement les entités contenues dans la carte",
|
|
@@ -464,7 +472,7 @@
|
|
|
464
472
|
"selectField": "Choisir un champ"
|
|
465
473
|
},
|
|
466
474
|
"filter": {
|
|
467
|
-
"resetFilters": "
|
|
475
|
+
"resetFilters": "Réinitialiser les valeurs par défaut",
|
|
468
476
|
"addFilter": "Ajouter un filtre vide à la liste courante",
|
|
469
477
|
"removeFilter": "Supprimer le présent filtre à la liste des filtres",
|
|
470
478
|
"toggleFilterState": "Activer/désactiver le présent filtre",
|
|
@@ -541,6 +549,7 @@
|
|
|
541
549
|
"mapButtons": {
|
|
542
550
|
"baselayerSwitcher": "Changer le fond de carte",
|
|
543
551
|
"geolocate": "Afficher votre position",
|
|
552
|
+
"home-extent": "Aller à l'étendue de la carte",
|
|
544
553
|
"offline": "Passer en mode hors-ligne",
|
|
545
554
|
"online": "Passer en mode en ligne",
|
|
546
555
|
"zoomIn": "Zoomer ({{zoom}})",
|
|
@@ -819,10 +828,12 @@
|
|
|
819
828
|
"removeLayer": "Retirer les résultats",
|
|
820
829
|
"exportLayer": "Exporter les résultats",
|
|
821
830
|
"clearForm": "Retirer le dessin",
|
|
822
|
-
"clearSearch": "Réinitialiser
|
|
831
|
+
"clearSearch": "Réinitialiser",
|
|
823
832
|
"Address": "Adresses",
|
|
824
833
|
"Thematics": "Thématiques",
|
|
825
834
|
"searchResults": "Résultats de la recherche",
|
|
835
|
+
"showSearchResults": "Afficher les résultats de la recherche",
|
|
836
|
+
"hideSearchResults": "Masquer les résultats de la recherche",
|
|
826
837
|
"type": "Type",
|
|
827
838
|
"radius": "Rayon",
|
|
828
839
|
"radiusAlert": "Le rayon doit être compris entre 0 et 100 kilomètres (ou 100 000 mètres)",
|
|
@@ -975,8 +986,25 @@
|
|
|
975
986
|
}
|
|
976
987
|
},
|
|
977
988
|
"workspace": {
|
|
989
|
+
"deleteConfirmation": "Voulez-vous vraiment supprimer cette entité?",
|
|
990
|
+
"addConfirmation": "Voulez-vous vraiment ajouter une entité?",
|
|
991
|
+
"modifyConfirmation": "Voulez-vous vraiment modifier une entité?",
|
|
992
|
+
"deleteSuccess": "L'entité a été supprimée.",
|
|
993
|
+
"addSuccess": "L'entité a été ajoutée.",
|
|
994
|
+
"modifySuccess": "L'entité a été modifiée.",
|
|
995
|
+
"deleteError": "Un problème est survenu. L'entité n'a pas pu être supprimée.",
|
|
996
|
+
"addError": "Un problème est survenu. L'entité n'a pas pu être ajoutée.",
|
|
997
|
+
"modifyError": "Un problème est survenu. L'entité n'a pas pu être modifiée.",
|
|
998
|
+
"cancel": "Annuler",
|
|
978
999
|
"inMapExtent.active.tooltip": "Ne montrer que les enregistrements contenus dans la carte",
|
|
979
1000
|
"inMapExtent.inactive.tooltip": "Montrer tous les enregistrements"
|
|
1001
|
+
},
|
|
1002
|
+
"formValidation": {
|
|
1003
|
+
"mandatory": "{{column}}est un champ obligatoire",
|
|
1004
|
+
"minValue": "{{column}} doit être plus grand que {{value}}",
|
|
1005
|
+
"maxValue": "{{column}}doit être plus petit que {{value}}",
|
|
1006
|
+
"minLength": "{{column}} doit être plus long que {{value}} caractères",
|
|
1007
|
+
"maxLength": "{{column}} doit être plus court que {{value}} caractères"
|
|
980
1008
|
}
|
|
981
1009
|
},
|
|
982
1010
|
"integration": {
|
|
@@ -1075,7 +1103,9 @@
|
|
|
1075
1103
|
"copyTitle": "Coordonnées du centre",
|
|
1076
1104
|
"center": "Centre",
|
|
1077
1105
|
"coordSystem": "Système de coordonnées",
|
|
1078
|
-
"zoom": "Niveau de zoom courant: "
|
|
1106
|
+
"zoom": "Niveau de zoom courant: ",
|
|
1107
|
+
"scale": "Échelle cartographique: ",
|
|
1108
|
+
"resolution": "Résolution cartographique: "
|
|
1079
1109
|
}
|
|
1080
1110
|
}
|
|
1081
1111
|
}
|