nodebb-plugin-onekite-calendar 2.0.54 → 2.0.55

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/lib/widgets.js CHANGED
@@ -331,7 +331,7 @@ dateClick: function() { window.location.href = calUrl; },
331
331
  const title = (ep.itemNameLine || ep.title || ev.title || '').toString();
332
332
  const statusLabel = (function(s){
333
333
  const map = {
334
- pending: 'En attente de validation',
334
+ pending: 'En attente de validation de validation',
335
335
  awaiting_payment: 'Validée – paiement en attente',
336
336
  paid: 'Payée',
337
337
  rejected: 'Rejetée',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "nodebb-plugin-onekite-calendar",
3
- "version": "2.0.54",
3
+ "version": "2.0.55",
4
4
  "description": "FullCalendar-based equipment reservation workflow with admin approval & HelloAsso payment for NodeBB",
5
5
  "main": "library.js",
6
6
  "license": "MIT",
package/plugin.json CHANGED
@@ -39,5 +39,5 @@
39
39
  "acpScripts": [
40
40
  "public/admin.js"
41
41
  ],
42
- "version": "2.0.54"
42
+ "version": "2.0.55"
43
43
  }
package/public/client.js CHANGED
@@ -549,7 +549,7 @@ define('forum/calendar-onekite', ['alerts', 'bootbox', 'hooks'], function (alert
549
549
 
550
550
  function statusLabel(s) {
551
551
  const map = {
552
- pending: 'En attente de validation',
552
+ pending: 'En attente de validation de validation',
553
553
  awaiting_payment: 'Validée – paiement en attente',
554
554
  paid: 'Payée',
555
555
  rejected: 'Rejetée',
@@ -3,7 +3,7 @@
3
3
  <div class="col-12">
4
4
  <h1>Calendrier</h1>
5
5
  <div class="onekite-calendar-legend" aria-label="Légende des couleurs" style="margin:.25rem 0 .75rem;">
6
- <span class="onekite-legend-item"><span class="onekite-legend-dot" style="background:#f39c12"></span>En attente</span>
6
+ <span class="onekite-legend-item"><span class="onekite-legend-dot" style="background:#f39c12"></span>En attente de validation</span>
7
7
  <span class="onekite-legend-item"><span class="onekite-legend-dot" style="background:#d35400"></span>Paiement en attente</span>
8
8
  <span class="onekite-legend-item"><span class="onekite-legend-dot" style="background:#27ae60"></span>Payée</span>
9
9
  <span class="onekite-legend-item"><span class="onekite-legend-dot" style="background:#8e44ad"></span>Évènement</span>