@mundogamernetwork/shared-ui 1.16.19 → 1.16.21

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/locales/de.json CHANGED
@@ -168,6 +168,7 @@
168
168
  "status_closed_action_pending": "Geschlossen — eine Aktion ist noch nötig",
169
169
  "status_ending": "Ending soon",
170
170
  "status_exhausted": "Keys exhausted",
171
+ "status_exhausted_action_pending": "Ausverkauft — eine Aktion ist noch nötig",
171
172
  "days": "days",
172
173
  "hours": "hours",
173
174
  "minutes": "min",
package/locales/en.json CHANGED
@@ -168,6 +168,7 @@
168
168
  "status_closed_action_pending": "Closed — action needed",
169
169
  "status_ending": "Ending soon",
170
170
  "status_exhausted": "Keys exhausted",
171
+ "status_exhausted_action_pending": "Keys exhausted — action needed",
171
172
  "days": "days",
172
173
  "hours": "hours",
173
174
  "minutes": "min",
package/locales/es.json CHANGED
@@ -168,6 +168,7 @@
168
168
  "status_closed_action_pending": "Cerrada — tienes una acción pendiente",
169
169
  "status_ending": "Terminando pronto",
170
170
  "status_exhausted": "Agotada",
171
+ "status_exhausted_action_pending": "Agotada — tienes una acción pendiente",
171
172
  "days": "días",
172
173
  "hours": "horas",
173
174
  "minutes": "minutos",
@@ -168,6 +168,7 @@
168
168
  "status_closed_action_pending": "Encerrada — falta uma ação sua",
169
169
  "status_ending": "Ending soon",
170
170
  "status_exhausted": "Keys exhausted",
171
+ "status_exhausted_action_pending": "Esgotada — falta uma ação sua",
171
172
  "days": "days",
172
173
  "hours": "hours",
173
174
  "minutes": "min",
package/locales/ro.json CHANGED
@@ -168,6 +168,7 @@
168
168
  "status_closed_action_pending": "Închisă — mai ai o acțiune de făcut",
169
169
  "status_ending": "Ending soon",
170
170
  "status_exhausted": "Keys exhausted",
171
+ "status_exhausted_action_pending": "Epuizată — mai ai o acțiune de făcut",
171
172
  "days": "days",
172
173
  "hours": "hours",
173
174
  "minutes": "min",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mundogamernetwork/shared-ui",
3
- "version": "1.16.19",
3
+ "version": "1.16.21",
4
4
  "description": "Mundo Gamer Network - Shared UI Layer (Nuxt 3)",
5
5
  "type": "module",
6
6
  "main": "./nuxt.config.ts",
@@ -882,7 +882,9 @@ onMounted(async () => {
882
882
  ? $t("keys.campaigns.campaign.status_closed_action_pending")
883
883
  : $t("keys.campaigns.campaign.status_closed"))
884
884
  : (campaign?.available_count ?? 0) === 0
885
- ? $t("keys.campaigns.campaign.status_exhausted")
885
+ ? (hasPendingObligation
886
+ ? $t("keys.campaigns.campaign.status_exhausted_action_pending")
887
+ : $t("keys.campaigns.campaign.status_exhausted"))
886
888
  : hasNoDateLimit
887
889
  ? $t("keys.campaigns.campaign.status_active")
888
890
  : timeValues.days <= 7