Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions messages/de.json
Original file line number Diff line number Diff line change
Expand Up @@ -3078,8 +3078,8 @@
}
},
"hub": {
"eyebrow": "IT-Hilfe",
"title": "Computer reparieren, OS neu installieren, IT-Probleme lösen",
"eyebrow": "Techniker finden",
"title": "Jemanden finden, der es repariert",
"subtitle": "evig verbindet dich mit Technikerinnen und Technikern in deiner Nähe — über die Community gratis oder fair bezahlt.",
"paths": {
"request": {
Expand Down
4 changes: 2 additions & 2 deletions messages/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -3078,8 +3078,8 @@
}
},
"hub": {
"eyebrow": "IT Help",
"title": "Fix your computer, reinstall your OS, solve any IT problem",
"eyebrow": "Find a technician",
"title": "Find someone who will fix it",
"subtitle": "evig connects you with technicians near you — free through the community or fairly paid.",
"paths": {
"request": {
Expand Down
4 changes: 2 additions & 2 deletions messages/es.json
Original file line number Diff line number Diff line change
Expand Up @@ -2540,8 +2540,8 @@
}
},
"hub": {
"eyebrow": "IT Help",
"title": "Fix your computer, reinstall your OS, solve any IT problem",
"eyebrow": "Encontrar técnico",
"title": "Encontrar a quien lo repare",
"subtitle": "evig te conecta con técnicos cerca de ti: gratis a través de la comunidad o con pago justo.",
"paths": {
"request": {
Expand Down
4 changes: 2 additions & 2 deletions messages/fr.json
Original file line number Diff line number Diff line change
Expand Up @@ -3077,8 +3077,8 @@
}
},
"hub": {
"eyebrow": "IT Help",
"title": "Fix your computer, reinstall your OS, solve any IT problem",
"eyebrow": "Trouver un technicien",
"title": "Trouver quelqu’un qui le répare",
"subtitle": "evig vous met en relation avec des techniciennes et techniciens près de chez vous — gratuitement via la communauté ou rémunéré équitablement.",
"paths": {
"request": {
Expand Down
4 changes: 2 additions & 2 deletions messages/it.json
Original file line number Diff line number Diff line change
Expand Up @@ -2540,8 +2540,8 @@
}
},
"hub": {
"eyebrow": "IT Help",
"title": "Fix your computer, reinstall your OS, solve any IT problem",
"eyebrow": "Trovare un tecnico",
"title": "Trovare qualcuno che lo ripari",
"subtitle": "evig ti mette in contatto con tecniche e tecnici vicino a te: gratis tramite la community o pagato equamente.",
"paths": {
"request": {
Expand Down
4 changes: 2 additions & 2 deletions messages/ja.json
Original file line number Diff line number Diff line change
Expand Up @@ -2540,8 +2540,8 @@
}
},
"hub": {
"eyebrow": "IT Help",
"title": "Fix your computer, reinstall your OS, solve any IT problem",
"eyebrow": "技術者を探す",
"title": "直してくれる人を見つける",
"subtitle": "evig はあなたの近くの技術者とつなぎます——コミュニティを通じて無料で、あるいは正当な報酬で。",
"paths": {
"request": {
Expand Down
4 changes: 2 additions & 2 deletions messages/ko.json
Original file line number Diff line number Diff line change
Expand Up @@ -2540,8 +2540,8 @@
}
},
"hub": {
"eyebrow": "IT Help",
"title": "Fix your computer, reinstall your OS, solve any IT problem",
"eyebrow": "기술자 찾기",
"title": "고쳐 줄 사람을 찾기",
"subtitle": "evig가 가까운 기술자와 연결해 드립니다 — 커뮤니티를 통해 무료로, 또는 정당한 보수로.",
"paths": {
"request": {
Expand Down
4 changes: 2 additions & 2 deletions messages/ru.json
Original file line number Diff line number Diff line change
Expand Up @@ -3081,8 +3081,8 @@
}
},
"hub": {
"eyebrow": "IT-помощь",
"title": "Ремонт компьютеров, переустановка ОС, решение IT-проблем",
"eyebrow": "Найти мастера",
"title": "Найти того, кто починит",
"subtitle": "evig связывает вас с мастерами поблизости — бесплатно через сообщество или за справедливую оплату.",
"paths": {
"request": {
Expand Down
6 changes: 5 additions & 1 deletion src/app/[locale]/abos/PoolCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,11 @@ export function PoolCard({ pool, userId, onJoin, onLeave, myPoolIds }: Props) {
</div>
</div>
<div className="text-right">
<div className="text-lg font-bold text-action">
{/* A price must not wrap. "CHF 300.00" broke across two lines on a
390px card, which reads as a layout bug rather than a number.
The title beside it may wrap instead — that is the right thing
to give way. */}
<div className="text-lg font-bold text-action whitespace-nowrap tabular-nums">
CHF {Number(pool.costPerMemberChf).toFixed(2)}
</div>
<div className="text-xs text-text-tertiary">{t('perMonthPerson')}</div>
Expand Down
Loading