Skip to content

Commit 8ebd549

Browse files
fix copy for QF changes on project card
1 parent 39fc87e commit 8ebd549

File tree

4 files changed

+5
-7
lines changed

4 files changed

+5
-7
lines changed

lang/ca.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -760,7 +760,7 @@
760760
"label.publish_edited_project": "Publicar el projecte editat",
761761
"label.publish_project": "PUBLICAR PROJECTE",
762762
"label.purchase_with_credit_debit": "Compra amb crèdit, dèbit, Visa o Mastercard",
763-
"label.qf_eligibility": "Elegibilitat QF",
763+
"label.qf_eligibility": "Actualment en ronda de QF",
764764
"label.qf_no_donations": "No hi ha hagut donacions en aquesta ronda.",
765765
"label.qf_round_projects": "Projectes de la ronda QF",
766766
"label.quadratic_funding": "Finançament quadràtic",

lang/en.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -760,7 +760,7 @@
760760
"label.publish_edited_project": "Publish edited project",
761761
"label.publish_project": "PUBLISH PROJECT",
762762
"label.purchase_with_credit_debit": "Purchase with Credit, Debit, Visa, or Mastercard",
763-
"label.qf_eligibility": "QF Eligibility",
763+
"label.qf_eligibility": "Currently in QF round",
764764
"label.qf_no_donations": "There were no donations in this round.",
765765
"label.qf_round_projects": "QF round's projects",
766766
"label.quadratic_funding": "Quadratic Funding",

lang/es.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -760,7 +760,7 @@
760760
"label.publish_edited_project": "Publicar proyecto editado",
761761
"label.publish_project": "PUBLICAR PROYECTO",
762762
"label.purchase_with_credit_debit": "Compra con crédito, débito, Visa o Mastercard",
763-
"label.qf_eligibility": "Elegibilidad para QF",
763+
"label.qf_eligibility": "Actualmente en ronda de QF",
764764
"label.qf_no_donations": "No hubo donaciones en esta ronda.",
765765
"label.qf_round_projects": "Proyectos de la ronda QF",
766766
"label.quadratic_funding": "Financiamiento cuadrático",
@@ -817,7 +817,7 @@
817817
"label.rounds_to_lock": "Rondas a bloquear",
818818
"label.round_ends_in": "La ronda termina en",
819819
"label.round_starts_in": "La ronda comienza en",
820-
"label.runout_info": "{symbol} se quedará sin fondos el ",
820+
"label.runout_info": "se quedará sin fondos el ",
821821
"label.runout_info_topup": "¡Recarga antes de entonces!",
822822
"label.runs_out_in": "Se agota en",
823823
"label.save": "Guardar",

src/components/views/userProfile/projectsTab/ProjectQFStatus.tsx

+1-3
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,7 @@ const ProjectQFStatus = ({
2424
? `Eligible for QF round #${activeStartedRound?.id}`
2525
: 'Not eligible';
2626

27-
const roundNameText = isRoundActive
28-
? activeStartedRound?.name
29-
: 'Not eligible';
27+
const roundNameText = isRoundActive ? activeStartedRound?.name : 'None';
3028

3129
return (
3230
<StatusBadge $isRoundActive={isRoundActive}>

0 commit comments

Comments
 (0)