codevdesign 2.0.2 → 2.0.3
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/composants/csqcAide.vue +345 -55
- package/composants/csqcRecherche.vue +219 -214
- package/composants/csqcTable/csqcTable.vue +847 -677
- package/locales/en.json +5 -0
- package/locales/fr.json +5 -0
- package/package.json +2 -2
package/locales/en.json
CHANGED
|
@@ -74,6 +74,11 @@
|
|
|
74
74
|
"rechercheAvanceeDefaut": "Advanced search",
|
|
75
75
|
"rechercher": "Search"
|
|
76
76
|
},
|
|
77
|
+
"pagination": {
|
|
78
|
+
"elementsParPage": "Items per page:",
|
|
79
|
+
"tous": "All",
|
|
80
|
+
"total": "items"
|
|
81
|
+
},
|
|
77
82
|
"message": {
|
|
78
83
|
"chaiseSelection": "No selection for this unit",
|
|
79
84
|
"chaiseSelectionToutes": "Please make a selection for all units.",
|
package/locales/fr.json
CHANGED
|
@@ -91,6 +91,11 @@
|
|
|
91
91
|
"rechercheAvanceeDefaut": "Recherche avancée",
|
|
92
92
|
"rechercher": "Rechercher"
|
|
93
93
|
},
|
|
94
|
+
"pagination": {
|
|
95
|
+
"elementsParPage": "Éléments par page :",
|
|
96
|
+
"tous": "Tous",
|
|
97
|
+
"total": "éléments"
|
|
98
|
+
},
|
|
94
99
|
"message": {
|
|
95
100
|
"chaiseSelection": "Aucune sélection pour cette unité",
|
|
96
101
|
"chaiseSelectionToutes": "Veuillez faire une sélection pour toutes les unités.",
|
package/package.json
CHANGED