Skip to content

Commit 6f47ce9

Browse files
committed
Merge branch 'develop' of github.com:HiEventsDev/hi.events into develop
2 parents 1d9bdd3 + a174efa commit 6f47ce9

File tree

4 files changed

+23
-8
lines changed

4 files changed

+23
-8
lines changed

frontend/src/components/common/AttendeeTicket/AttendeeTicket.module.scss

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,10 @@
5252
@media print {
5353
background: #ffffff;
5454
border-bottom: 2px solid #e0e0e0;
55-
padding: 0 0 30px 0;
56-
margin-bottom: 30px;
55+
padding: 15px 0;
56+
margin-bottom: 20px;
57+
display: flex;
58+
justify-content: center;
5759
}
5860
}
5961

@@ -62,6 +64,7 @@
6264
align-items: center;
6365
justify-content: space-between;
6466
gap: 24px;
67+
width: 100%;
6568

6669
@include mixins.respond-below(sm) {
6770
flex-direction: column;
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
.title {
2+
text-align: center;
3+
color: #000;
4+
font-size: 24px;
5+
font-weight: 600;
6+
margin-bottom: 40px;
7+
8+
@media print {
9+
display: none;
10+
}
11+
}

frontend/src/components/routes/product-widget/AttendeeProductAndInformation/index.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ import {Container} from "@mantine/core";
77
import {t} from "@lingui/macro";
88
import {PoweredByFooter} from "../../../common/PoweredByFooter";
99
import {OnlineEventDetails} from "../../../common/OnlineEventDetails";
10+
import classes from './AttendeeProductAndInformation.module.scss';
1011

1112
export const AttendeeProductAndInformation = () => {
1213
const {eventId, attendeeShortId} = useParams();
@@ -32,7 +33,7 @@ export const AttendeeProductAndInformation = () => {
3233
*/
3334
return (
3435
<Container>
35-
<h2>{t`Your ticket for`} {event.title}</h2>
36+
<h2 className={classes.title}>{t`Your ticket for`} {event.title}</h2>
3637

3738
<AttendeeTicket
3839
attendee={attendee as Attendee}

frontend/src/locales/it.po

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -102,8 +102,8 @@ msgid "<0>Capacity assignments let you manage capacity across tickets or an enti
102102
msgstr "<0>Le assegnazioni di capacità ti permettono di gestire la capacità tra biglietti o un intero evento. Ideale per eventi di più giorni, workshop e altro, dove il controllo delle presenze è cruciale.</0><1>Ad esempio, puoi associare un'assegnazione di capacità con i biglietti <2>Primo Giorno</2> e <3>Tutti i Giorni</3>. Una volta raggiunta la capacità, entrambi i biglietti smetteranno automaticamente di essere disponibili per la vendita.</1>"
103103

104104
#: src/components/common/CheckInListList/index.tsx:49
105-
msgid "<0>Check-in lists help you manage event entry by day, area, or ticket type. You can link tickets to specific lists such as VIP zones or Day 1 passes and share a secure check-in link with staff. No account is required. Check-in works on mobile, desktop, or tablet, using a device camera or HID USB scanner. </0>"
106-
msgstr ""
105+
msgid "<0>Check-in lists help you manage event entry by day, area, or ticket type. You can link tickets to specific lists such as VIP zones or Day 1 passes and share a secure check-in link with staff. No account is required. Check-in works on mobile, desktop, or tablet, using a device camera or HID USB scanner.
106+
msgstr "<0>Le liste di check-in ti aiutano a gestire l'accesso all'evento in base al giorno, all'area o al tipo di biglietto. Puoi collegare i biglietti a liste specifiche, come le zone VIP o i pass per il primo giorno, e condividere un link di check-in sicuro con il personale. Non è richiesto alcun account. Il check-in funziona su dispositivi mobili, desktop o tablet, utilizzando la fotocamera del dispositivo o uno scanner USB HID."
107107

108108
#: src/components/common/WidgetEditor/index.tsx:324
109109
msgid "<0>https://</0>your-website.com"
@@ -1079,7 +1079,7 @@ msgstr "Registrazione Eliminata"
10791079

10801080
#: src/components/forms/CheckInListForm/index.tsx:35
10811081
msgid "Check-In List"
1082-
msgstr ""
1082+
msgstr "Lista di check-in"
10831083

10841084
#: src/components/modals/CheckInListSuccessModal/index.tsx:20
10851085
msgid "Check-In List Created"
@@ -1117,7 +1117,7 @@ msgstr "URL di Registrazione copiato negli appunti"
11171117

11181118
#: src/components/common/AttendeeDetails/index.tsx:47
11191119
msgid "Check-Ins"
1120-
msgstr ""
1120+
msgstr "Check-in"
11211121

11221122
#: src/components/forms/QuestionForm/index.tsx:114
11231123
msgid "Checkbox options allow multiple selections"
@@ -2188,7 +2188,7 @@ msgstr "Editor"
21882188

21892189
#: src/constants/eventCategories.ts:19
21902190
msgid "Education"
2191-
msgstr "Educazione"
2191+
msgstr "Istruzione"
21922192

21932193
#: src/components/forms/TaxAndFeeForm/index.tsx:74
21942194
msgid "eg. 2.50 for $2.50"

0 commit comments

Comments
 (0)