@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 +1 -0
- package/locales/en.json +1 -0
- package/locales/es.json +1 -0
- package/locales/pt-BR.json +1 -0
- package/locales/ro.json +1 -0
- package/package.json +1 -1
- package/pages/key-campaigns/[slug].vue +3 -1
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",
|
package/locales/pt-BR.json
CHANGED
|
@@ -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
|
@@ -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
|
-
?
|
|
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
|