diff --git a/frontend/src/components/layouts/AppLayout/AppLayout.module.scss b/frontend/src/components/layouts/AppLayout/AppLayout.module.scss index 3fd6635fc..b1d7b54ab 100644 --- a/frontend/src/components/layouts/AppLayout/AppLayout.module.scss +++ b/frontend/src/components/layouts/AppLayout/AppLayout.module.scss @@ -32,6 +32,10 @@ background-color: #f9fafc; @include mixins.scrollbar; + + @media (max-width: 767px) { + padding: 16px 16px 56px; + } } .sidebarOpen { diff --git a/frontend/src/components/layouts/AppLayout/Topbar/Topbar.module.scss b/frontend/src/components/layouts/AppLayout/Topbar/Topbar.module.scss index d770feed1..b71792462 100644 --- a/frontend/src/components/layouts/AppLayout/Topbar/Topbar.module.scss +++ b/frontend/src/components/layouts/AppLayout/Topbar/Topbar.module.scss @@ -13,43 +13,47 @@ .topBarMain { display: flex; align-items: center; - padding: var(--hi-spacing-md); + padding: 0 16px; height: 60px; + + @include mixins.respond-below(md) { + padding: 0 12px; + } } .breadcrumbsRow { - padding: 6px var(--hi-spacing-md) 8px; - padding-top: 7px; + padding: 10px 20px; border-top: 1px solid rgba(0, 0, 0, 0.05); background-color: #fff; backdrop-filter: blur(8px); display: flex; align-items: center; justify-content: space-between; + gap: 12px; border-top-left-radius: var(--hi-radius-md); box-shadow: 3px 0px 8px rgb(0 0 0 / 8%); position: relative; z-index: 5; - min-height: 50px; - - &::before { - content: ''; - position: absolute; - top: -1px; - left: 0; - width: 16px; - height: 16px; - background-color: #fff; - border-top-left-radius: 16px; - z-index: -1; - } + min-height: 44px; @include mixins.respond-below(md) { border-top-left-radius: 0; + padding: 10px 16px; + } + } - &::before { + .breadcrumbContentRight { + flex-shrink: 0; + + @include mixins.respond-below(sm) { + // Hide text in buttons, show only icons on very small screens + :global(.mantine-Button-label) { display: none; } + + :global(.mantine-Button-section) { + margin: 0; + } } } @@ -59,7 +63,8 @@ align-items: center; font-size: 0.85rem; color: var(--hi-text-light); - width: 100%; + flex: 1; + min-width: 0; overflow-x: auto; white-space: nowrap; scrollbar-width: none; @@ -69,10 +74,36 @@ display: none; } + // Mantine Breadcrumbs container + :global(.mantine-Breadcrumbs-root) { + flex-wrap: nowrap; + min-width: 0; + } + + :global(.mantine-Breadcrumbs-breadcrumb) { + @include mixins.ellipsis(); + max-width: 200px; + + @include mixins.respond-below(md) { + max-width: 120px; + } + + @include mixins.respond-below(sm) { + max-width: 80px; + } + + // Don't truncate the last breadcrumb (often an action like "Create Event") + &:last-child { + max-width: none; + flex-shrink: 0; + } + } + a { color: var(--hi-text-light); transition: color 0.2s ease; position: relative; + @include mixins.ellipsis(); &:hover { color: var(--hi-text); diff --git a/frontend/src/components/layouts/AppLayout/Topbar/index.tsx b/frontend/src/components/layouts/AppLayout/Topbar/index.tsx index e9dd8e994..3dfb4dd87 100644 --- a/frontend/src/components/layouts/AppLayout/Topbar/index.tsx +++ b/frontend/src/components/layouts/AppLayout/Topbar/index.tsx @@ -1,7 +1,6 @@ import React from "react"; import {NavLink} from "react-router"; import {Breadcrumbs, Burger} from '@mantine/core'; -import {IconHome} from "@tabler/icons-react"; import classes from './Topbar.module.scss'; import {BreadcrumbItem} from "../types"; import {GlobalMenu} from "../../../common/GlobalMenu"; @@ -55,8 +54,7 @@ export const Topbar: React.FC = ({
- - /}> + /}> {breadcrumbItems.map((item, index) => ( {item.content} diff --git a/frontend/src/components/layouts/Event/index.tsx b/frontend/src/components/layouts/Event/index.tsx index d413eb9de..877818dd7 100644 --- a/frontend/src/components/layouts/Event/index.tsx +++ b/frontend/src/components/layouts/Event/index.tsx @@ -131,23 +131,17 @@ const EventLayout = () => { const screenWidth = useWindowWidth(); const breadcrumbItemsWidth = screenWidth > 1100 ? 60 : 23; - const breadcrumbItems: BreadcrumbItem[] = [ + const breadcrumbItems: BreadcrumbItem[] = isEventFetched ? [ { - link: '/manage/events', - content: t`Home` + link: `/manage/organizer/${event?.organizer?.id}`, + content: }, - ...(isEventFetched ? [ - { - link: `/manage/organizer/${event?.organizer?.id}`, - content: - }, - { - link: `/manage/event/${event?.id}`, - content: - } - ] : [ - {link: '#', content: '...'} - ]) + { + link: `/manage/event/${event?.id}`, + content: + } + ] : [ + {link: '#', content: '...'} ]; const handleStatusToggle = () => { diff --git a/frontend/src/components/layouts/OrganizerLayout/index.tsx b/frontend/src/components/layouts/OrganizerLayout/index.tsx index c19507766..2d8aa3116 100644 --- a/frontend/src/components/layouts/OrganizerLayout/index.tsx +++ b/frontend/src/components/layouts/OrganizerLayout/index.tsx @@ -136,17 +136,13 @@ const OrganizerLayout = () => { }; const breadcrumbItems: BreadcrumbItem[] = [ - { - link: '/manage/events', - content: t`Events` - }, { link: `/manage/organizer/${organizerId}`, content: organizer?.name, }, { content: ( - setShowCreateEventModal(true)} > diff --git a/frontend/src/locales/de.po b/frontend/src/locales/de.po index 919552eda..b189ef7ee 100644 --- a/frontend/src/locales/de.po +++ b/frontend/src/locales/de.po @@ -13,13 +13,13 @@ msgstr "" "Language-Team: \n" "Plural-Forms: \n" -#: src/components/layouts/Event/index.tsx:189 -#: src/components/layouts/OrganizerLayout/index.tsx:207 +#: src/components/layouts/Event/index.tsx:183 +#: src/components/layouts/OrganizerLayout/index.tsx:203 msgid "- Click to Publish" msgstr "- Zum Veröffentlichen klicken" -#: src/components/layouts/Event/index.tsx:191 -#: src/components/layouts/OrganizerLayout/index.tsx:209 +#: src/components/layouts/Event/index.tsx:185 +#: src/components/layouts/OrganizerLayout/index.tsx:205 msgid "- Click to Unpublish" msgstr "- Zum Rückgängigmachen der Veröffentlichung klicken" @@ -273,7 +273,7 @@ msgstr "Eine Standardsteuer wie Mehrwertsteuer oder GST" msgid "Abandoned" msgstr "Abgebrochen" -#: src/components/layouts/EventHomepage/index.tsx:361 +#: src/components/layouts/EventHomepage/index.tsx:375 msgid "About" msgstr "Über" @@ -464,7 +464,7 @@ msgstr "Ebene hinzufügen" #: src/components/common/AddEventToCalendarButton/index.tsx:14 #: src/components/common/AddToCalendarCTA/index.tsx:24 -#: src/components/layouts/EventHomepage/index.tsx:306 +#: src/components/layouts/EventHomepage/index.tsx:320 msgid "Add to Calendar" msgstr "Zum Kalender hinzufügen" @@ -773,12 +773,12 @@ msgstr "Bist du sicher, dass du diesen Webhook löschen möchtest?" msgid "Are you sure you want to leave?" msgstr "Möchten Sie wirklich gehen?" -#: src/components/layouts/Event/index.tsx:155 +#: src/components/layouts/Event/index.tsx:149 #: src/components/routes/event/EventDashboard/index.tsx:71 msgid "Are you sure you want to make this event draft? This will make the event invisible to the public" msgstr "Möchten Sie diese Veranstaltung wirklich als Entwurf speichern? Dadurch wird die Veranstaltung für die Öffentlichkeit unsichtbar." -#: src/components/layouts/Event/index.tsx:156 +#: src/components/layouts/Event/index.tsx:150 #: src/components/routes/event/EventDashboard/index.tsx:72 msgid "Are you sure you want to make this event public? This will make the event visible to the public" msgstr "Möchten Sie diese Veranstaltung wirklich öffentlich machen? Dadurch wird die Veranstaltung für die Öffentlichkeit sichtbar" @@ -1463,7 +1463,7 @@ msgstr "Der Code muss zwischen 3 und 50 Zeichen lang sein" msgid "Code must be no more than 20 characters" msgstr "Code darf maximal 20 Zeichen lang sein" -#: src/components/layouts/OrganizerLayout/index.tsx:163 +#: src/components/layouts/OrganizerLayout/index.tsx:159 msgid "Collaborate with your team to create amazing events together." msgstr "Arbeiten Sie mit Ihrem Team zusammen, um gemeinsam großartige Veranstaltungen zu gestalten." @@ -1645,11 +1645,11 @@ msgstr "Bestätige das Passwort" msgid "Confirm Password" msgstr "Bestätige das Passwort" -#: src/components/layouts/Event/index.tsx:246 +#: src/components/layouts/Event/index.tsx:240 msgid "Confirm your email to access all features." msgstr "Bestätigen Sie Ihre E-Mail-Adresse, um alle Funktionen zu nutzen." -#: src/components/layouts/OrganizerLayout/index.tsx:296 +#: src/components/layouts/OrganizerLayout/index.tsx:292 msgid "Confirmation email sent! Please check your inbox." msgstr "Bestätigungs-E-Mail gesendet! Bitte überprüfen Sie Ihren Posteingang." @@ -1677,8 +1677,8 @@ msgstr "Verbindungsdokumentation" msgid "Connect payment processing" msgstr "Zahlungsabwicklung verbinden" -#: src/components/layouts/OrganizerLayout/index.tsx:176 -#: src/components/layouts/OrganizerLayout/index.tsx:184 +#: src/components/layouts/OrganizerLayout/index.tsx:172 +#: src/components/layouts/OrganizerLayout/index.tsx:180 msgid "Connect Stripe" msgstr "Stripe verbinden" @@ -1698,7 +1698,7 @@ msgstr "Mit Stripe verbinden" msgid "Connect with Stripe" msgstr "Mit Stripe verbinden" -#: src/components/layouts/OrganizerLayout/index.tsx:177 +#: src/components/layouts/OrganizerLayout/index.tsx:173 msgid "Connect your Stripe account to accept payments for tickets and products." msgstr "Verbinden Sie Ihr Stripe-Konto, um Zahlungen für Tickets und Produkte zu akzeptieren." @@ -1727,8 +1727,8 @@ msgstr "Mit Stripe verbunden" msgid "Connection Details" msgstr "Verbindungsdetails" -#: src/components/layouts/EventHomepage/index.tsx:555 -#: src/components/layouts/OrganizerHomepage/index.tsx:232 +#: src/components/layouts/EventHomepage/index.tsx:569 +#: src/components/layouts/OrganizerHomepage/index.tsx:245 msgid "Contact" msgstr "Kontakt" @@ -1973,7 +1973,7 @@ msgid "Create discounts, access codes for hidden tickets, and special offers." msgstr "Erstellen Sie Rabatte, Zugangscodes für versteckte Tickets und Sonderangebote." #: src/components/common/NoEventsBlankSlate/index.tsx:27 -#: src/components/layouts/OrganizerLayout/index.tsx:153 +#: src/components/layouts/OrganizerLayout/index.tsx:149 #: src/components/routes/organizer/Events/index.tsx:62 #: src/components/routes/organizer/OrganizerDashboard/index.tsx:257 msgid "Create Event" @@ -2440,8 +2440,8 @@ msgid "Downloading Invoice" msgstr "Rechnung wird heruntergeladen" #: src/components/common/EventCard/index.tsx:84 -#: src/components/layouts/Event/index.tsx:188 -#: src/components/layouts/OrganizerLayout/index.tsx:206 +#: src/components/layouts/Event/index.tsx:182 +#: src/components/layouts/OrganizerLayout/index.tsx:202 msgid "Draft" msgstr "Entwurf" @@ -2715,7 +2715,7 @@ msgstr "E-Mail-Vorschau" msgid "Email Templates" msgstr "E-Mail-Vorlagen" -#: src/components/layouts/OrganizerLayout/index.tsx:275 +#: src/components/layouts/OrganizerLayout/index.tsx:271 msgid "Email Verification Required" msgstr "E-Mail-Verifizierung erforderlich" @@ -2982,7 +2982,7 @@ msgstr "Veranstaltung nicht verfügbar" msgid "Event organizer name" msgstr "Name des Veranstalters" -#: src/components/layouts/Event/index.tsx:235 +#: src/components/layouts/Event/index.tsx:229 msgid "Event Page" msgstr "Veranstaltungsseite" @@ -2993,7 +2993,7 @@ msgstr "Veranstaltungseinstellungen" #: src/components/common/EventCard/index.tsx:70 #: src/components/common/StatusToggle/index.tsx:59 -#: src/components/layouts/Event/index.tsx:167 +#: src/components/layouts/Event/index.tsx:161 #: src/components/routes/event/EventDashboard/index.tsx:83 #: src/components/routes/event/GettingStarted/index.tsx:63 msgid "Event status update failed. Please try again later" @@ -3001,7 +3001,7 @@ msgstr "Die Aktualisierung des Ereignisstatus ist fehlgeschlagen. Bitte versuche #: src/components/common/EventCard/index.tsx:67 #: src/components/common/StatusToggle/index.tsx:51 -#: src/components/layouts/Event/index.tsx:164 +#: src/components/layouts/Event/index.tsx:158 #: src/components/routes/event/EventDashboard/index.tsx:80 #: src/components/routes/event/GettingStarted/index.tsx:60 msgid "Event status updated" @@ -3041,7 +3041,6 @@ msgstr "Veranstaltungsort" #: src/components/common/AdminAccountsTable/index.tsx:74 #: src/components/layouts/Admin/index.tsx:16 #: src/components/layouts/OrganizerLayout/index.tsx:81 -#: src/components/layouts/OrganizerLayout/index.tsx:141 #: src/components/routes/admin/Accounts/AccountDetail/index.tsx:123 #: src/components/routes/admin/Events/index.tsx:77 #: src/components/routes/organizer/Events/index.tsx:43 @@ -3473,7 +3472,7 @@ msgstr "Code generieren" msgid "German" msgstr "Deutsch" -#: src/components/layouts/EventHomepage/index.tsx:392 +#: src/components/layouts/EventHomepage/index.tsx:406 msgid "Get Directions" msgstr "Wegbeschreibung" @@ -3485,7 +3484,7 @@ msgstr "" msgid "Get started" msgstr "" -#: src/components/layouts/EventHomepage/index.tsx:591 +#: src/components/layouts/EventHomepage/index.tsx:605 msgid "Get Tickets" msgstr "Tickets erhalten" @@ -3678,8 +3677,8 @@ msgid "Highlighted products will have a different background color to make them msgstr "Hervorgehobene Produkte haben eine andere Hintergrundfarbe, um sie auf der Event-Seite hervorzuheben." #: src/components/layouts/Event/index.tsx:137 -msgid "Home" -msgstr "Startseite" +#~ msgid "Home" +#~ msgstr "Startseite" #: src/components/routes/event/HomepageDesigner/index.tsx:160 #: src/components/routes/organizer/OrganizerHomepageDesigner/index.tsx:170 @@ -3926,7 +3925,7 @@ msgstr "Teammitglied einladen" msgid "Invite Team Member" msgstr "Teammitglied einladen" -#: src/components/layouts/OrganizerLayout/index.tsx:165 +#: src/components/layouts/OrganizerLayout/index.tsx:161 msgid "Invite Team Members" msgstr "Teammitglieder einladen" @@ -3938,7 +3937,7 @@ msgstr "" msgid "Invite User" msgstr "Benutzer einladen" -#: src/components/layouts/OrganizerLayout/index.tsx:162 +#: src/components/layouts/OrganizerLayout/index.tsx:158 msgid "Invite Your Team" msgstr "Laden Sie Ihr Team ein" @@ -3996,7 +3995,7 @@ msgstr "John" msgid "Johnson" msgstr "Johnson" -#: src/components/layouts/EventHomepage/index.tsx:320 +#: src/components/layouts/EventHomepage/index.tsx:334 msgid "Join from anywhere" msgstr "Von überall teilnehmen" @@ -4130,8 +4129,8 @@ msgid "LinkedIn" msgstr "LinkedIn" #: src/components/common/EventCard/index.tsx:87 -#: src/components/layouts/Event/index.tsx:190 -#: src/components/layouts/OrganizerLayout/index.tsx:208 +#: src/components/layouts/Event/index.tsx:184 +#: src/components/layouts/OrganizerLayout/index.tsx:204 msgid "Live" msgstr "Live" @@ -4162,7 +4161,7 @@ msgid "Loading..." msgstr "Wird geladen..." #: src/components/common/AttendeeTicket/index.tsx:91 -#: src/components/layouts/EventHomepage/index.tsx:374 +#: src/components/layouts/EventHomepage/index.tsx:388 #: src/components/routes/event/Settings/index.tsx:35 #: src/components/routes/event/Settings/Sections/LocationSettings/index.tsx:84 #: src/components/routes/my-tickets/index.tsx:73 @@ -4597,7 +4596,7 @@ msgstr "Noch keine Bestellungen" msgid "No other organizers available" msgstr "Keine weiteren Veranstalter verfügbar" -#: src/components/layouts/OrganizerHomepage/index.tsx:273 +#: src/components/layouts/OrganizerHomepage/index.tsx:286 msgid "No past events" msgstr "Keine vergangenen Veranstaltungen" @@ -4665,7 +4664,7 @@ msgstr "Es wurden keine Steuern oder Gebühren hinzugefügt." msgid "No Tickets Found" msgstr "Keine Tickets gefunden" -#: src/components/layouts/OrganizerHomepage/index.tsx:273 +#: src/components/layouts/OrganizerHomepage/index.tsx:286 msgid "No upcoming events" msgstr "Keine bevorstehenden Veranstaltungen" @@ -4816,7 +4815,7 @@ msgid "Online" msgstr "Online" #: src/components/layouts/EventHomepage/EventInformation/index.tsx:71 -#: src/components/layouts/EventHomepage/index.tsx:318 +#: src/components/layouts/EventHomepage/index.tsx:332 #: src/components/layouts/OrganizerHomepage/EventCard/index.tsx:167 msgid "Online Event" msgstr "Online-Veranstaltung" @@ -5099,7 +5098,7 @@ msgstr "Organisationsname" #: src/components/common/AdminEventsTable/index.tsx:85 #: src/components/common/AttendeeTicket/index.tsx:82 -#: src/components/layouts/EventHomepage/index.tsx:467 +#: src/components/layouts/EventHomepage/index.tsx:481 #: src/components/modals/EditUserModal/index.tsx:55 #: src/components/modals/InviteUserModal/index.tsx:47 #: src/components/routes/events/Dashboard/index.tsx:193 @@ -5252,12 +5251,12 @@ msgstr "Passwort erfolgreich zurückgesetzt. Bitte melden Sie sich mit Ihrem neu msgid "Passwords are not the same" msgstr "Passwörter sind nicht gleich" -#: src/components/layouts/OrganizerHomepage/index.tsx:265 +#: src/components/layouts/OrganizerHomepage/index.tsx:278 #: src/components/routes/organizer/Reports/EventsPerformanceReport/index.tsx:30 msgid "Past" msgstr "Vergangenheit" -#: src/components/layouts/OrganizerHomepage/index.tsx:252 +#: src/components/layouts/OrganizerHomepage/index.tsx:265 msgid "Past Events" msgstr "Vergangene Veranstaltungen" @@ -5583,8 +5582,8 @@ msgstr "Vorschau" msgid "Preview checkout form" msgstr "Vorschau des Bestellformulars" -#: src/components/layouts/Event/index.tsx:228 -#: src/components/layouts/Event/index.tsx:232 +#: src/components/layouts/Event/index.tsx:222 +#: src/components/layouts/Event/index.tsx:226 msgid "Preview Event page" msgstr "Vorschau der Veranstaltungsseite" @@ -5643,8 +5642,8 @@ msgstr "Tickets drucken" msgid "Print to PDF" msgstr "Als PDF drucken" -#: src/components/layouts/EventHomepage/index.tsx:571 -#: src/components/layouts/OrganizerHomepage/index.tsx:315 +#: src/components/layouts/EventHomepage/index.tsx:585 +#: src/components/layouts/OrganizerHomepage/index.tsx:328 msgid "Privacy Policy" msgstr "Datenschutzerklärung" @@ -5990,11 +5989,11 @@ msgstr "Erforderlich" msgid "Resend code" msgstr "Code erneut senden" -#: src/components/layouts/OrganizerLayout/index.tsx:292 +#: src/components/layouts/OrganizerLayout/index.tsx:288 msgid "Resend Confirmation Email" msgstr "Bestätigungs-E-Mail erneut senden" -#: src/components/layouts/Event/index.tsx:248 +#: src/components/layouts/Event/index.tsx:242 msgid "Resend email" msgstr "E-Mail erneut senden" @@ -6556,8 +6555,8 @@ msgid "Setup & Design" msgstr "Einrichtung & Design" #: src/components/common/ShareIcon/index.tsx:30 -#: src/components/layouts/EventHomepage/index.tsx:279 -#: src/components/layouts/OrganizerLayout/index.tsx:228 +#: src/components/layouts/EventHomepage/index.tsx:293 +#: src/components/layouts/OrganizerLayout/index.tsx:224 #: src/components/modals/ShareModal/index.tsx:37 #: src/components/modals/ShareModal/index.tsx:165 #: src/components/modals/ShareModal/index.tsx:186 @@ -6569,13 +6568,13 @@ msgstr "Teilen" msgid "Share Affiliate Link" msgstr "Partnerlink teilen" +#: src/components/layouts/Event/index.tsx:200 #: src/components/layouts/Event/index.tsx:206 -#: src/components/layouts/Event/index.tsx:212 msgid "Share Event" msgstr "Veranstaltung teilen" -#: src/components/layouts/OrganizerLayout/index.tsx:225 -#: src/components/layouts/OrganizerLayout/index.tsx:260 +#: src/components/layouts/OrganizerLayout/index.tsx:221 +#: src/components/layouts/OrganizerLayout/index.tsx:256 msgid "Share Organizer Page" msgstr "Veranstalterseite teilen" @@ -6673,7 +6672,7 @@ msgid "Sold out" msgstr "Ausverkauft" #: src/components/common/ProductsTable/SortableProduct/index.tsx:81 -#: src/components/layouts/EventHomepage/index.tsx:142 +#: src/components/layouts/EventHomepage/index.tsx:143 msgid "Sold Out" msgstr "Ausverkauft" @@ -7101,8 +7100,8 @@ msgstr "Vorlage erfolgreich gelöscht" msgid "Template saved successfully" msgstr "Vorlage erfolgreich gespeichert" -#: src/components/layouts/EventHomepage/index.tsx:577 -#: src/components/layouts/OrganizerHomepage/index.tsx:322 +#: src/components/layouts/EventHomepage/index.tsx:591 +#: src/components/layouts/OrganizerHomepage/index.tsx:335 msgid "Terms of Service" msgstr "Nutzungsbedingungen" @@ -7529,7 +7528,7 @@ msgstr "Tickets" msgid "Tickets & Products" msgstr "Tickets & Produkte" -#: src/components/layouts/EventHomepage/index.tsx:149 +#: src/components/layouts/EventHomepage/index.tsx:150 msgid "Tickets Available" msgstr "Tickets verfügbar" @@ -7799,12 +7798,12 @@ msgstr "Veranstaltung nicht mehr veröffentlichen" #: src/components/common/EventsDashboardStatusButtons/index.tsx:20 #: src/components/common/EventStatusBadge/index.tsx:16 -#: src/components/layouts/OrganizerHomepage/index.tsx:259 +#: src/components/layouts/OrganizerHomepage/index.tsx:272 #: src/components/routes/organizer/Reports/EventsPerformanceReport/index.tsx:33 msgid "Upcoming" msgstr "Bevorstehende" -#: src/components/layouts/OrganizerHomepage/index.tsx:252 +#: src/components/layouts/OrganizerHomepage/index.tsx:265 #: src/components/routes/organizer/OrganizerDashboard/index.tsx:232 msgid "Upcoming Events" msgstr "Bevorstehende Veranstaltungen" @@ -8046,7 +8045,7 @@ msgstr "Bestätigungscode" msgid "Verify Email" msgstr "E-Mail verifizieren" -#: src/components/layouts/Event/index.tsx:245 +#: src/components/layouts/Event/index.tsx:239 msgid "Verify your email" msgstr "Bestätigen Sie Ihre E-Mail-Adresse" @@ -8100,12 +8099,12 @@ msgstr "Protokolle anzeigen" msgid "View map" msgstr "Ansichts Karte" -#: src/components/layouts/EventHomepage/index.tsx:433 +#: src/components/layouts/EventHomepage/index.tsx:447 msgid "View Map" msgstr "Karte ansehen" #: src/components/layouts/EventHomepage/EventInformation/index.tsx:95 -#: src/components/layouts/EventHomepage/index.tsx:346 +#: src/components/layouts/EventHomepage/index.tsx:360 msgid "View on Google Maps" msgstr "Auf Google Maps anzeigen" @@ -8125,8 +8124,8 @@ msgstr "Bestelldetails anzeigen" msgid "View order details, issue refunds, and resend confirmations." msgstr "Sehen Sie Bestelldetails ein, erstatten Sie Rückzahlungen und senden Sie Bestätigungen erneut." -#: src/components/layouts/OrganizerLayout/index.tsx:243 -#: src/components/layouts/OrganizerLayout/index.tsx:246 +#: src/components/layouts/OrganizerLayout/index.tsx:239 +#: src/components/layouts/OrganizerLayout/index.tsx:242 msgid "View Organizer Homepage" msgstr "Veranstalter-Startseite anzeigen" @@ -8590,7 +8589,7 @@ msgstr "Sie müssen ein Ticket erstellen, bevor Sie einen Teilnehmer manuell hin msgid "You must have at least one price tier" msgstr "Sie müssen mindestens eine Preisstufe haben" -#: src/components/layouts/OrganizerLayout/index.tsx:281 +#: src/components/layouts/OrganizerLayout/index.tsx:277 msgid "You must verify your email address before you can update the organizer status." msgstr "Sie müssen Ihre E-Mail-Adresse bestätigen, bevor Sie den Veranstalterstatus aktualisieren können." diff --git a/frontend/src/locales/en.po b/frontend/src/locales/en.po index 67ea8d2e1..c364776a2 100644 --- a/frontend/src/locales/en.po +++ b/frontend/src/locales/en.po @@ -13,13 +13,13 @@ msgstr "" "Language-Team: \n" "Plural-Forms: \n" -#: src/components/layouts/Event/index.tsx:189 -#: src/components/layouts/OrganizerLayout/index.tsx:207 +#: src/components/layouts/Event/index.tsx:183 +#: src/components/layouts/OrganizerLayout/index.tsx:203 msgid "- Click to Publish" msgstr "- Click to Publish" -#: src/components/layouts/Event/index.tsx:191 -#: src/components/layouts/OrganizerLayout/index.tsx:209 +#: src/components/layouts/Event/index.tsx:185 +#: src/components/layouts/OrganizerLayout/index.tsx:205 msgid "- Click to Unpublish" msgstr "- Click to Unpublish" @@ -273,7 +273,7 @@ msgstr "A standard tax, like VAT or GST" msgid "Abandoned" msgstr "Abandoned" -#: src/components/layouts/EventHomepage/index.tsx:361 +#: src/components/layouts/EventHomepage/index.tsx:375 msgid "About" msgstr "About" @@ -464,7 +464,7 @@ msgstr "Add tier" #: src/components/common/AddEventToCalendarButton/index.tsx:14 #: src/components/common/AddToCalendarCTA/index.tsx:24 -#: src/components/layouts/EventHomepage/index.tsx:306 +#: src/components/layouts/EventHomepage/index.tsx:320 msgid "Add to Calendar" msgstr "Add to Calendar" @@ -773,12 +773,12 @@ msgstr "Are you sure you want to delete this webhook?" msgid "Are you sure you want to leave?" msgstr "Are you sure you want to leave?" -#: src/components/layouts/Event/index.tsx:155 +#: src/components/layouts/Event/index.tsx:149 #: src/components/routes/event/EventDashboard/index.tsx:71 msgid "Are you sure you want to make this event draft? This will make the event invisible to the public" msgstr "Are you sure you want to make this event draft? This will make the event invisible to the public" -#: src/components/layouts/Event/index.tsx:156 +#: src/components/layouts/Event/index.tsx:150 #: src/components/routes/event/EventDashboard/index.tsx:72 msgid "Are you sure you want to make this event public? This will make the event visible to the public" msgstr "Are you sure you want to make this event public? This will make the event visible to the public" @@ -1463,7 +1463,7 @@ msgstr "Code must be between 3 and 50 characters long" msgid "Code must be no more than 20 characters" msgstr "Code must be no more than 20 characters" -#: src/components/layouts/OrganizerLayout/index.tsx:163 +#: src/components/layouts/OrganizerLayout/index.tsx:159 msgid "Collaborate with your team to create amazing events together." msgstr "Collaborate with your team to create amazing events together." @@ -1645,11 +1645,11 @@ msgstr "Confirm password" msgid "Confirm Password" msgstr "Confirm Password" -#: src/components/layouts/Event/index.tsx:246 +#: src/components/layouts/Event/index.tsx:240 msgid "Confirm your email to access all features." msgstr "Confirm your email to access all features." -#: src/components/layouts/OrganizerLayout/index.tsx:296 +#: src/components/layouts/OrganizerLayout/index.tsx:292 msgid "Confirmation email sent! Please check your inbox." msgstr "Confirmation email sent! Please check your inbox." @@ -1677,8 +1677,8 @@ msgstr "Connect Documentation" msgid "Connect payment processing" msgstr "Connect payment processing" -#: src/components/layouts/OrganizerLayout/index.tsx:176 -#: src/components/layouts/OrganizerLayout/index.tsx:184 +#: src/components/layouts/OrganizerLayout/index.tsx:172 +#: src/components/layouts/OrganizerLayout/index.tsx:180 msgid "Connect Stripe" msgstr "Connect Stripe" @@ -1698,7 +1698,7 @@ msgstr "Connect to Stripe" msgid "Connect with Stripe" msgstr "Connect with Stripe" -#: src/components/layouts/OrganizerLayout/index.tsx:177 +#: src/components/layouts/OrganizerLayout/index.tsx:173 msgid "Connect your Stripe account to accept payments for tickets and products." msgstr "Connect your Stripe account to accept payments for tickets and products." @@ -1727,8 +1727,8 @@ msgstr "Connected to Stripe" msgid "Connection Details" msgstr "Connection Details" -#: src/components/layouts/EventHomepage/index.tsx:555 -#: src/components/layouts/OrganizerHomepage/index.tsx:232 +#: src/components/layouts/EventHomepage/index.tsx:569 +#: src/components/layouts/OrganizerHomepage/index.tsx:245 msgid "Contact" msgstr "Contact" @@ -1973,7 +1973,7 @@ msgid "Create discounts, access codes for hidden tickets, and special offers." msgstr "Create discounts, access codes for hidden tickets, and special offers." #: src/components/common/NoEventsBlankSlate/index.tsx:27 -#: src/components/layouts/OrganizerLayout/index.tsx:153 +#: src/components/layouts/OrganizerLayout/index.tsx:149 #: src/components/routes/organizer/Events/index.tsx:62 #: src/components/routes/organizer/OrganizerDashboard/index.tsx:257 msgid "Create Event" @@ -2440,8 +2440,8 @@ msgid "Downloading Invoice" msgstr "Downloading Invoice" #: src/components/common/EventCard/index.tsx:84 -#: src/components/layouts/Event/index.tsx:188 -#: src/components/layouts/OrganizerLayout/index.tsx:206 +#: src/components/layouts/Event/index.tsx:182 +#: src/components/layouts/OrganizerLayout/index.tsx:202 msgid "Draft" msgstr "Draft" @@ -2715,7 +2715,7 @@ msgstr "Email Preview" msgid "Email Templates" msgstr "Email Templates" -#: src/components/layouts/OrganizerLayout/index.tsx:275 +#: src/components/layouts/OrganizerLayout/index.tsx:271 msgid "Email Verification Required" msgstr "Email Verification Required" @@ -2982,7 +2982,7 @@ msgstr "Event Not Available" msgid "Event organizer name" msgstr "Event organizer name" -#: src/components/layouts/Event/index.tsx:235 +#: src/components/layouts/Event/index.tsx:229 msgid "Event Page" msgstr "Event Page" @@ -2993,7 +2993,7 @@ msgstr "Event Settings" #: src/components/common/EventCard/index.tsx:70 #: src/components/common/StatusToggle/index.tsx:59 -#: src/components/layouts/Event/index.tsx:167 +#: src/components/layouts/Event/index.tsx:161 #: src/components/routes/event/EventDashboard/index.tsx:83 #: src/components/routes/event/GettingStarted/index.tsx:63 msgid "Event status update failed. Please try again later" @@ -3001,7 +3001,7 @@ msgstr "Event status update failed. Please try again later" #: src/components/common/EventCard/index.tsx:67 #: src/components/common/StatusToggle/index.tsx:51 -#: src/components/layouts/Event/index.tsx:164 +#: src/components/layouts/Event/index.tsx:158 #: src/components/routes/event/EventDashboard/index.tsx:80 #: src/components/routes/event/GettingStarted/index.tsx:60 msgid "Event status updated" @@ -3041,7 +3041,6 @@ msgstr "Event Venue" #: src/components/common/AdminAccountsTable/index.tsx:74 #: src/components/layouts/Admin/index.tsx:16 #: src/components/layouts/OrganizerLayout/index.tsx:81 -#: src/components/layouts/OrganizerLayout/index.tsx:141 #: src/components/routes/admin/Accounts/AccountDetail/index.tsx:123 #: src/components/routes/admin/Events/index.tsx:77 #: src/components/routes/organizer/Events/index.tsx:43 @@ -3473,7 +3472,7 @@ msgstr "Generate code" msgid "German" msgstr "German" -#: src/components/layouts/EventHomepage/index.tsx:392 +#: src/components/layouts/EventHomepage/index.tsx:406 msgid "Get Directions" msgstr "Get Directions" @@ -3485,7 +3484,7 @@ msgstr "Get paid immediately via Stripe Connect" msgid "Get started" msgstr "Get started" -#: src/components/layouts/EventHomepage/index.tsx:591 +#: src/components/layouts/EventHomepage/index.tsx:605 msgid "Get Tickets" msgstr "Get Tickets" @@ -3678,8 +3677,8 @@ msgid "Highlighted products will have a different background color to make them msgstr "Highlighted products will have a different background color to make them stand out on the event page." #: src/components/layouts/Event/index.tsx:137 -msgid "Home" -msgstr "Home" +#~ msgid "Home" +#~ msgstr "Home" #: src/components/routes/event/HomepageDesigner/index.tsx:160 #: src/components/routes/organizer/OrganizerHomepageDesigner/index.tsx:170 @@ -3926,7 +3925,7 @@ msgstr "Invite a team member" msgid "Invite Team Member" msgstr "Invite Team Member" -#: src/components/layouts/OrganizerLayout/index.tsx:165 +#: src/components/layouts/OrganizerLayout/index.tsx:161 msgid "Invite Team Members" msgstr "Invite Team Members" @@ -3938,7 +3937,7 @@ msgstr "Invite unlimited team members with custom roles" msgid "Invite User" msgstr "Invite User" -#: src/components/layouts/OrganizerLayout/index.tsx:162 +#: src/components/layouts/OrganizerLayout/index.tsx:158 msgid "Invite Your Team" msgstr "Invite Your Team" @@ -3996,7 +3995,7 @@ msgstr "John" msgid "Johnson" msgstr "Johnson" -#: src/components/layouts/EventHomepage/index.tsx:320 +#: src/components/layouts/EventHomepage/index.tsx:334 msgid "Join from anywhere" msgstr "Join from anywhere" @@ -4130,8 +4129,8 @@ msgid "LinkedIn" msgstr "LinkedIn" #: src/components/common/EventCard/index.tsx:87 -#: src/components/layouts/Event/index.tsx:190 -#: src/components/layouts/OrganizerLayout/index.tsx:208 +#: src/components/layouts/Event/index.tsx:184 +#: src/components/layouts/OrganizerLayout/index.tsx:204 msgid "Live" msgstr "Live" @@ -4162,7 +4161,7 @@ msgid "Loading..." msgstr "Loading..." #: src/components/common/AttendeeTicket/index.tsx:91 -#: src/components/layouts/EventHomepage/index.tsx:374 +#: src/components/layouts/EventHomepage/index.tsx:388 #: src/components/routes/event/Settings/index.tsx:35 #: src/components/routes/event/Settings/Sections/LocationSettings/index.tsx:84 #: src/components/routes/my-tickets/index.tsx:73 @@ -4597,7 +4596,7 @@ msgstr "No orders yet" msgid "No other organizers available" msgstr "No other organizers available" -#: src/components/layouts/OrganizerHomepage/index.tsx:273 +#: src/components/layouts/OrganizerHomepage/index.tsx:286 msgid "No past events" msgstr "No past events" @@ -4665,7 +4664,7 @@ msgstr "No Taxes or Fees have been added." msgid "No Tickets Found" msgstr "No Tickets Found" -#: src/components/layouts/OrganizerHomepage/index.tsx:273 +#: src/components/layouts/OrganizerHomepage/index.tsx:286 msgid "No upcoming events" msgstr "No upcoming events" @@ -4816,7 +4815,7 @@ msgid "Online" msgstr "Online" #: src/components/layouts/EventHomepage/EventInformation/index.tsx:71 -#: src/components/layouts/EventHomepage/index.tsx:318 +#: src/components/layouts/EventHomepage/index.tsx:332 #: src/components/layouts/OrganizerHomepage/EventCard/index.tsx:167 msgid "Online Event" msgstr "Online Event" @@ -5099,7 +5098,7 @@ msgstr "Organization Name" #: src/components/common/AdminEventsTable/index.tsx:85 #: src/components/common/AttendeeTicket/index.tsx:82 -#: src/components/layouts/EventHomepage/index.tsx:467 +#: src/components/layouts/EventHomepage/index.tsx:481 #: src/components/modals/EditUserModal/index.tsx:55 #: src/components/modals/InviteUserModal/index.tsx:47 #: src/components/routes/events/Dashboard/index.tsx:193 @@ -5252,12 +5251,12 @@ msgstr "Password reset successfully. Please login with your new password." msgid "Passwords are not the same" msgstr "Passwords are not the same" -#: src/components/layouts/OrganizerHomepage/index.tsx:265 +#: src/components/layouts/OrganizerHomepage/index.tsx:278 #: src/components/routes/organizer/Reports/EventsPerformanceReport/index.tsx:30 msgid "Past" msgstr "Past" -#: src/components/layouts/OrganizerHomepage/index.tsx:252 +#: src/components/layouts/OrganizerHomepage/index.tsx:265 msgid "Past Events" msgstr "Past Events" @@ -5583,8 +5582,8 @@ msgstr "Preview" msgid "Preview checkout form" msgstr "Preview checkout form" -#: src/components/layouts/Event/index.tsx:228 -#: src/components/layouts/Event/index.tsx:232 +#: src/components/layouts/Event/index.tsx:222 +#: src/components/layouts/Event/index.tsx:226 msgid "Preview Event page" msgstr "Preview Event page" @@ -5643,8 +5642,8 @@ msgstr "Print Tickets" msgid "Print to PDF" msgstr "Print to PDF" -#: src/components/layouts/EventHomepage/index.tsx:571 -#: src/components/layouts/OrganizerHomepage/index.tsx:315 +#: src/components/layouts/EventHomepage/index.tsx:585 +#: src/components/layouts/OrganizerHomepage/index.tsx:328 msgid "Privacy Policy" msgstr "Privacy Policy" @@ -5992,11 +5991,11 @@ msgstr "Required" msgid "Resend code" msgstr "Resend code" -#: src/components/layouts/OrganizerLayout/index.tsx:292 +#: src/components/layouts/OrganizerLayout/index.tsx:288 msgid "Resend Confirmation Email" msgstr "Resend Confirmation Email" -#: src/components/layouts/Event/index.tsx:248 +#: src/components/layouts/Event/index.tsx:242 msgid "Resend email" msgstr "Resend email" @@ -6558,8 +6557,8 @@ msgid "Setup & Design" msgstr "Setup & Design" #: src/components/common/ShareIcon/index.tsx:30 -#: src/components/layouts/EventHomepage/index.tsx:279 -#: src/components/layouts/OrganizerLayout/index.tsx:228 +#: src/components/layouts/EventHomepage/index.tsx:293 +#: src/components/layouts/OrganizerLayout/index.tsx:224 #: src/components/modals/ShareModal/index.tsx:37 #: src/components/modals/ShareModal/index.tsx:165 #: src/components/modals/ShareModal/index.tsx:186 @@ -6571,13 +6570,13 @@ msgstr "Share" msgid "Share Affiliate Link" msgstr "Share Affiliate Link" +#: src/components/layouts/Event/index.tsx:200 #: src/components/layouts/Event/index.tsx:206 -#: src/components/layouts/Event/index.tsx:212 msgid "Share Event" msgstr "Share Event" -#: src/components/layouts/OrganizerLayout/index.tsx:225 -#: src/components/layouts/OrganizerLayout/index.tsx:260 +#: src/components/layouts/OrganizerLayout/index.tsx:221 +#: src/components/layouts/OrganizerLayout/index.tsx:256 msgid "Share Organizer Page" msgstr "Share Organizer Page" @@ -6675,7 +6674,7 @@ msgid "Sold out" msgstr "Sold out" #: src/components/common/ProductsTable/SortableProduct/index.tsx:81 -#: src/components/layouts/EventHomepage/index.tsx:142 +#: src/components/layouts/EventHomepage/index.tsx:143 msgid "Sold Out" msgstr "Sold Out" @@ -7103,8 +7102,8 @@ msgstr "Template deleted successfully" msgid "Template saved successfully" msgstr "Template saved successfully" -#: src/components/layouts/EventHomepage/index.tsx:577 -#: src/components/layouts/OrganizerHomepage/index.tsx:322 +#: src/components/layouts/EventHomepage/index.tsx:591 +#: src/components/layouts/OrganizerHomepage/index.tsx:335 msgid "Terms of Service" msgstr "Terms of Service" @@ -7531,7 +7530,7 @@ msgstr "Tickets" msgid "Tickets & Products" msgstr "Tickets & Products" -#: src/components/layouts/EventHomepage/index.tsx:149 +#: src/components/layouts/EventHomepage/index.tsx:150 msgid "Tickets Available" msgstr "Tickets Available" @@ -7801,12 +7800,12 @@ msgstr "Unpublish Event" #: src/components/common/EventsDashboardStatusButtons/index.tsx:20 #: src/components/common/EventStatusBadge/index.tsx:16 -#: src/components/layouts/OrganizerHomepage/index.tsx:259 +#: src/components/layouts/OrganizerHomepage/index.tsx:272 #: src/components/routes/organizer/Reports/EventsPerformanceReport/index.tsx:33 msgid "Upcoming" msgstr "Upcoming" -#: src/components/layouts/OrganizerHomepage/index.tsx:252 +#: src/components/layouts/OrganizerHomepage/index.tsx:265 #: src/components/routes/organizer/OrganizerDashboard/index.tsx:232 msgid "Upcoming Events" msgstr "Upcoming Events" @@ -8048,7 +8047,7 @@ msgstr "Verification code" msgid "Verify Email" msgstr "Verify Email" -#: src/components/layouts/Event/index.tsx:245 +#: src/components/layouts/Event/index.tsx:239 msgid "Verify your email" msgstr "Verify your email" @@ -8102,12 +8101,12 @@ msgstr "View logs" msgid "View map" msgstr "View map" -#: src/components/layouts/EventHomepage/index.tsx:433 +#: src/components/layouts/EventHomepage/index.tsx:447 msgid "View Map" msgstr "View Map" #: src/components/layouts/EventHomepage/EventInformation/index.tsx:95 -#: src/components/layouts/EventHomepage/index.tsx:346 +#: src/components/layouts/EventHomepage/index.tsx:360 msgid "View on Google Maps" msgstr "View on Google Maps" @@ -8127,8 +8126,8 @@ msgstr "View Order Details" msgid "View order details, issue refunds, and resend confirmations." msgstr "View order details, issue refunds, and resend confirmations." -#: src/components/layouts/OrganizerLayout/index.tsx:243 -#: src/components/layouts/OrganizerLayout/index.tsx:246 +#: src/components/layouts/OrganizerLayout/index.tsx:239 +#: src/components/layouts/OrganizerLayout/index.tsx:242 msgid "View Organizer Homepage" msgstr "View Organizer Homepage" @@ -8592,7 +8591,7 @@ msgstr "You must create a ticket before you can manually add an attendee." msgid "You must have at least one price tier" msgstr "You must have at least one price tier" -#: src/components/layouts/OrganizerLayout/index.tsx:281 +#: src/components/layouts/OrganizerLayout/index.tsx:277 msgid "You must verify your email address before you can update the organizer status." msgstr "You must verify your email address before you can update the organizer status." diff --git a/frontend/src/locales/es.po b/frontend/src/locales/es.po index 5a7a853a0..656c13e97 100644 --- a/frontend/src/locales/es.po +++ b/frontend/src/locales/es.po @@ -13,13 +13,13 @@ msgstr "" "Language-Team: \n" "Plural-Forms: \n" -#: src/components/layouts/Event/index.tsx:189 -#: src/components/layouts/OrganizerLayout/index.tsx:207 +#: src/components/layouts/Event/index.tsx:183 +#: src/components/layouts/OrganizerLayout/index.tsx:203 msgid "- Click to Publish" msgstr "- Haz clic para publicar" -#: src/components/layouts/Event/index.tsx:191 -#: src/components/layouts/OrganizerLayout/index.tsx:209 +#: src/components/layouts/Event/index.tsx:185 +#: src/components/layouts/OrganizerLayout/index.tsx:205 msgid "- Click to Unpublish" msgstr "- Haz clic para despublicar" @@ -273,7 +273,7 @@ msgstr "Un impuesto estándar, como el IVA o el GST" msgid "Abandoned" msgstr "Abandonado" -#: src/components/layouts/EventHomepage/index.tsx:361 +#: src/components/layouts/EventHomepage/index.tsx:375 msgid "About" msgstr "Acerca de" @@ -464,7 +464,7 @@ msgstr "Agregar nivel" #: src/components/common/AddEventToCalendarButton/index.tsx:14 #: src/components/common/AddToCalendarCTA/index.tsx:24 -#: src/components/layouts/EventHomepage/index.tsx:306 +#: src/components/layouts/EventHomepage/index.tsx:320 msgid "Add to Calendar" msgstr "Agregar al calendario" @@ -773,12 +773,12 @@ msgstr "¿Estás seguro de que quieres eliminar este webhook?" msgid "Are you sure you want to leave?" msgstr "¿Estás seguro de que quieres salir?" -#: src/components/layouts/Event/index.tsx:155 +#: src/components/layouts/Event/index.tsx:149 #: src/components/routes/event/EventDashboard/index.tsx:71 msgid "Are you sure you want to make this event draft? This will make the event invisible to the public" msgstr "¿Estás seguro de que quieres hacer este borrador de evento? Esto hará que el evento sea invisible para el público." -#: src/components/layouts/Event/index.tsx:156 +#: src/components/layouts/Event/index.tsx:150 #: src/components/routes/event/EventDashboard/index.tsx:72 msgid "Are you sure you want to make this event public? This will make the event visible to the public" msgstr "¿Estás seguro de que quieres hacer público este evento? Esto hará que el evento sea visible para el público." @@ -1463,7 +1463,7 @@ msgstr "El código debe tener entre 3 y 50 caracteres." msgid "Code must be no more than 20 characters" msgstr "El código no debe tener más de 20 caracteres" -#: src/components/layouts/OrganizerLayout/index.tsx:163 +#: src/components/layouts/OrganizerLayout/index.tsx:159 msgid "Collaborate with your team to create amazing events together." msgstr "Colabora con tu equipo para crear eventos increíbles juntos." @@ -1645,11 +1645,11 @@ msgstr "Confirmar Contraseña" msgid "Confirm Password" msgstr "confirmar Contraseña" -#: src/components/layouts/Event/index.tsx:246 +#: src/components/layouts/Event/index.tsx:240 msgid "Confirm your email to access all features." msgstr "Confirma tu correo electrónico para acceder a todas las funciones." -#: src/components/layouts/OrganizerLayout/index.tsx:296 +#: src/components/layouts/OrganizerLayout/index.tsx:292 msgid "Confirmation email sent! Please check your inbox." msgstr "¡Correo de confirmación enviado! Por favor, revisa tu bandeja de entrada." @@ -1677,8 +1677,8 @@ msgstr "Documentación de conexión" msgid "Connect payment processing" msgstr "Conectar procesamiento de pagos" -#: src/components/layouts/OrganizerLayout/index.tsx:176 -#: src/components/layouts/OrganizerLayout/index.tsx:184 +#: src/components/layouts/OrganizerLayout/index.tsx:172 +#: src/components/layouts/OrganizerLayout/index.tsx:180 msgid "Connect Stripe" msgstr "Conectar raya" @@ -1698,7 +1698,7 @@ msgstr "Conectar con Stripe" msgid "Connect with Stripe" msgstr "Conéctate con Stripe" -#: src/components/layouts/OrganizerLayout/index.tsx:177 +#: src/components/layouts/OrganizerLayout/index.tsx:173 msgid "Connect your Stripe account to accept payments for tickets and products." msgstr "Conecta tu cuenta de Stripe para aceptar pagos por entradas y productos." @@ -1727,8 +1727,8 @@ msgstr "Conectado a Stripe" msgid "Connection Details" msgstr "Detalles de conexión" -#: src/components/layouts/EventHomepage/index.tsx:555 -#: src/components/layouts/OrganizerHomepage/index.tsx:232 +#: src/components/layouts/EventHomepage/index.tsx:569 +#: src/components/layouts/OrganizerHomepage/index.tsx:245 msgid "Contact" msgstr "Contacto" @@ -1973,7 +1973,7 @@ msgid "Create discounts, access codes for hidden tickets, and special offers." msgstr "Cree descuentos, códigos de acceso para boletos ocultos y ofertas especiales." #: src/components/common/NoEventsBlankSlate/index.tsx:27 -#: src/components/layouts/OrganizerLayout/index.tsx:153 +#: src/components/layouts/OrganizerLayout/index.tsx:149 #: src/components/routes/organizer/Events/index.tsx:62 #: src/components/routes/organizer/OrganizerDashboard/index.tsx:257 msgid "Create Event" @@ -2440,8 +2440,8 @@ msgid "Downloading Invoice" msgstr "Descargando factura" #: src/components/common/EventCard/index.tsx:84 -#: src/components/layouts/Event/index.tsx:188 -#: src/components/layouts/OrganizerLayout/index.tsx:206 +#: src/components/layouts/Event/index.tsx:182 +#: src/components/layouts/OrganizerLayout/index.tsx:202 msgid "Draft" msgstr "Borrador" @@ -2715,7 +2715,7 @@ msgstr "Vista previa del correo" msgid "Email Templates" msgstr "Plantillas de correo" -#: src/components/layouts/OrganizerLayout/index.tsx:275 +#: src/components/layouts/OrganizerLayout/index.tsx:271 msgid "Email Verification Required" msgstr "Verificación de correo requerida" @@ -2982,7 +2982,7 @@ msgstr "Evento no disponible" msgid "Event organizer name" msgstr "Nombre del organizador del evento" -#: src/components/layouts/Event/index.tsx:235 +#: src/components/layouts/Event/index.tsx:229 msgid "Event Page" msgstr "Página del evento" @@ -2993,7 +2993,7 @@ msgstr "Configuración del evento" #: src/components/common/EventCard/index.tsx:70 #: src/components/common/StatusToggle/index.tsx:59 -#: src/components/layouts/Event/index.tsx:167 +#: src/components/layouts/Event/index.tsx:161 #: src/components/routes/event/EventDashboard/index.tsx:83 #: src/components/routes/event/GettingStarted/index.tsx:63 msgid "Event status update failed. Please try again later" @@ -3001,7 +3001,7 @@ msgstr "Error al actualizar el estado del evento. Por favor, inténtelo de nuevo #: src/components/common/EventCard/index.tsx:67 #: src/components/common/StatusToggle/index.tsx:51 -#: src/components/layouts/Event/index.tsx:164 +#: src/components/layouts/Event/index.tsx:158 #: src/components/routes/event/EventDashboard/index.tsx:80 #: src/components/routes/event/GettingStarted/index.tsx:60 msgid "Event status updated" @@ -3041,7 +3041,6 @@ msgstr "Lugar del Evento" #: src/components/common/AdminAccountsTable/index.tsx:74 #: src/components/layouts/Admin/index.tsx:16 #: src/components/layouts/OrganizerLayout/index.tsx:81 -#: src/components/layouts/OrganizerLayout/index.tsx:141 #: src/components/routes/admin/Accounts/AccountDetail/index.tsx:123 #: src/components/routes/admin/Events/index.tsx:77 #: src/components/routes/organizer/Events/index.tsx:43 @@ -3473,7 +3472,7 @@ msgstr "Generar código" msgid "German" msgstr "Alemán" -#: src/components/layouts/EventHomepage/index.tsx:392 +#: src/components/layouts/EventHomepage/index.tsx:406 msgid "Get Directions" msgstr "Cómo llegar" @@ -3485,7 +3484,7 @@ msgstr "" msgid "Get started" msgstr "" -#: src/components/layouts/EventHomepage/index.tsx:591 +#: src/components/layouts/EventHomepage/index.tsx:605 msgid "Get Tickets" msgstr "Obtener Entradas" @@ -3678,8 +3677,8 @@ msgid "Highlighted products will have a different background color to make them msgstr "Los productos destacados tendrán un color de fondo diferente para resaltar en la página del evento." #: src/components/layouts/Event/index.tsx:137 -msgid "Home" -msgstr "Inicio" +#~ msgid "Home" +#~ msgstr "Inicio" #: src/components/routes/event/HomepageDesigner/index.tsx:160 #: src/components/routes/organizer/OrganizerHomepageDesigner/index.tsx:170 @@ -3926,7 +3925,7 @@ msgstr "Invitar a un miembro del equipo" msgid "Invite Team Member" msgstr "Invitar miembro del equipo" -#: src/components/layouts/OrganizerLayout/index.tsx:165 +#: src/components/layouts/OrganizerLayout/index.tsx:161 msgid "Invite Team Members" msgstr "Invitar miembros del equipo" @@ -3938,7 +3937,7 @@ msgstr "" msgid "Invite User" msgstr "Invitar usuario" -#: src/components/layouts/OrganizerLayout/index.tsx:162 +#: src/components/layouts/OrganizerLayout/index.tsx:158 msgid "Invite Your Team" msgstr "Invita a tu equipo" @@ -3996,7 +3995,7 @@ msgstr "John" msgid "Johnson" msgstr "Johnson" -#: src/components/layouts/EventHomepage/index.tsx:320 +#: src/components/layouts/EventHomepage/index.tsx:334 msgid "Join from anywhere" msgstr "Únete desde cualquier lugar" @@ -4130,8 +4129,8 @@ msgid "LinkedIn" msgstr "LinkedIn" #: src/components/common/EventCard/index.tsx:87 -#: src/components/layouts/Event/index.tsx:190 -#: src/components/layouts/OrganizerLayout/index.tsx:208 +#: src/components/layouts/Event/index.tsx:184 +#: src/components/layouts/OrganizerLayout/index.tsx:204 msgid "Live" msgstr "En vivo" @@ -4162,7 +4161,7 @@ msgid "Loading..." msgstr "Cargando..." #: src/components/common/AttendeeTicket/index.tsx:91 -#: src/components/layouts/EventHomepage/index.tsx:374 +#: src/components/layouts/EventHomepage/index.tsx:388 #: src/components/routes/event/Settings/index.tsx:35 #: src/components/routes/event/Settings/Sections/LocationSettings/index.tsx:84 #: src/components/routes/my-tickets/index.tsx:73 @@ -4597,7 +4596,7 @@ msgstr "Aún no hay pedidos" msgid "No other organizers available" msgstr "No hay otros organizadores disponibles" -#: src/components/layouts/OrganizerHomepage/index.tsx:273 +#: src/components/layouts/OrganizerHomepage/index.tsx:286 msgid "No past events" msgstr "No hay eventos pasados" @@ -4665,7 +4664,7 @@ msgstr "No se han agregado impuestos ni tarifas." msgid "No Tickets Found" msgstr "No se encontraron entradas" -#: src/components/layouts/OrganizerHomepage/index.tsx:273 +#: src/components/layouts/OrganizerHomepage/index.tsx:286 msgid "No upcoming events" msgstr "No hay próximos eventos" @@ -4816,7 +4815,7 @@ msgid "Online" msgstr "En línea" #: src/components/layouts/EventHomepage/EventInformation/index.tsx:71 -#: src/components/layouts/EventHomepage/index.tsx:318 +#: src/components/layouts/EventHomepage/index.tsx:332 #: src/components/layouts/OrganizerHomepage/EventCard/index.tsx:167 msgid "Online Event" msgstr "Evento en línea" @@ -5099,7 +5098,7 @@ msgstr "Nombre de la organización" #: src/components/common/AdminEventsTable/index.tsx:85 #: src/components/common/AttendeeTicket/index.tsx:82 -#: src/components/layouts/EventHomepage/index.tsx:467 +#: src/components/layouts/EventHomepage/index.tsx:481 #: src/components/modals/EditUserModal/index.tsx:55 #: src/components/modals/InviteUserModal/index.tsx:47 #: src/components/routes/events/Dashboard/index.tsx:193 @@ -5252,12 +5251,12 @@ msgstr "Restablecimiento de contraseña exitoso. Por favor inicie sesión con su msgid "Passwords are not the same" msgstr "Las contraseñas no son similares" -#: src/components/layouts/OrganizerHomepage/index.tsx:265 +#: src/components/layouts/OrganizerHomepage/index.tsx:278 #: src/components/routes/organizer/Reports/EventsPerformanceReport/index.tsx:30 msgid "Past" msgstr "Pasado" -#: src/components/layouts/OrganizerHomepage/index.tsx:252 +#: src/components/layouts/OrganizerHomepage/index.tsx:265 msgid "Past Events" msgstr "Eventos pasados" @@ -5583,8 +5582,8 @@ msgstr "Vista Previa" msgid "Preview checkout form" msgstr "Vista previa del formulario de pago" -#: src/components/layouts/Event/index.tsx:228 -#: src/components/layouts/Event/index.tsx:232 +#: src/components/layouts/Event/index.tsx:222 +#: src/components/layouts/Event/index.tsx:226 msgid "Preview Event page" msgstr "Vista previa de la página del evento" @@ -5643,8 +5642,8 @@ msgstr "Imprimir boletos" msgid "Print to PDF" msgstr "Imprimir a PDF" -#: src/components/layouts/EventHomepage/index.tsx:571 -#: src/components/layouts/OrganizerHomepage/index.tsx:315 +#: src/components/layouts/EventHomepage/index.tsx:585 +#: src/components/layouts/OrganizerHomepage/index.tsx:328 msgid "Privacy Policy" msgstr "Política de privacidad" @@ -5990,11 +5989,11 @@ msgstr "Requerido" msgid "Resend code" msgstr "Reenviar código" -#: src/components/layouts/OrganizerLayout/index.tsx:292 +#: src/components/layouts/OrganizerLayout/index.tsx:288 msgid "Resend Confirmation Email" msgstr "Reenviar correo de confirmación" -#: src/components/layouts/Event/index.tsx:248 +#: src/components/layouts/Event/index.tsx:242 msgid "Resend email" msgstr "Reenviar correo" @@ -6556,8 +6555,8 @@ msgid "Setup & Design" msgstr "Configuración y diseño" #: src/components/common/ShareIcon/index.tsx:30 -#: src/components/layouts/EventHomepage/index.tsx:279 -#: src/components/layouts/OrganizerLayout/index.tsx:228 +#: src/components/layouts/EventHomepage/index.tsx:293 +#: src/components/layouts/OrganizerLayout/index.tsx:224 #: src/components/modals/ShareModal/index.tsx:37 #: src/components/modals/ShareModal/index.tsx:165 #: src/components/modals/ShareModal/index.tsx:186 @@ -6569,13 +6568,13 @@ msgstr "Compartir" msgid "Share Affiliate Link" msgstr "Compartir enlace de afiliado" +#: src/components/layouts/Event/index.tsx:200 #: src/components/layouts/Event/index.tsx:206 -#: src/components/layouts/Event/index.tsx:212 msgid "Share Event" msgstr "Compartir evento" -#: src/components/layouts/OrganizerLayout/index.tsx:225 -#: src/components/layouts/OrganizerLayout/index.tsx:260 +#: src/components/layouts/OrganizerLayout/index.tsx:221 +#: src/components/layouts/OrganizerLayout/index.tsx:256 msgid "Share Organizer Page" msgstr "Compartir página del organizador" @@ -6673,7 +6672,7 @@ msgid "Sold out" msgstr "Agotado" #: src/components/common/ProductsTable/SortableProduct/index.tsx:81 -#: src/components/layouts/EventHomepage/index.tsx:142 +#: src/components/layouts/EventHomepage/index.tsx:143 msgid "Sold Out" msgstr "Agotado" @@ -7101,8 +7100,8 @@ msgstr "Plantilla eliminada exitosamente" msgid "Template saved successfully" msgstr "Plantilla guardada exitosamente" -#: src/components/layouts/EventHomepage/index.tsx:577 -#: src/components/layouts/OrganizerHomepage/index.tsx:322 +#: src/components/layouts/EventHomepage/index.tsx:591 +#: src/components/layouts/OrganizerHomepage/index.tsx:335 msgid "Terms of Service" msgstr "Términos del servicio" @@ -7529,7 +7528,7 @@ msgstr "Entradas" msgid "Tickets & Products" msgstr "Entradas y productos" -#: src/components/layouts/EventHomepage/index.tsx:149 +#: src/components/layouts/EventHomepage/index.tsx:150 msgid "Tickets Available" msgstr "Entradas disponibles" @@ -7799,12 +7798,12 @@ msgstr "Despublicar Evento" #: src/components/common/EventsDashboardStatusButtons/index.tsx:20 #: src/components/common/EventStatusBadge/index.tsx:16 -#: src/components/layouts/OrganizerHomepage/index.tsx:259 +#: src/components/layouts/OrganizerHomepage/index.tsx:272 #: src/components/routes/organizer/Reports/EventsPerformanceReport/index.tsx:33 msgid "Upcoming" msgstr "Próximo" -#: src/components/layouts/OrganizerHomepage/index.tsx:252 +#: src/components/layouts/OrganizerHomepage/index.tsx:265 #: src/components/routes/organizer/OrganizerDashboard/index.tsx:232 msgid "Upcoming Events" msgstr "Próximos eventos" @@ -8046,7 +8045,7 @@ msgstr "Código de verificación" msgid "Verify Email" msgstr "Verificar correo" -#: src/components/layouts/Event/index.tsx:245 +#: src/components/layouts/Event/index.tsx:239 msgid "Verify your email" msgstr "Verifica tu correo electrónico" @@ -8100,12 +8099,12 @@ msgstr "Ver registros" msgid "View map" msgstr "Ver el mapa" -#: src/components/layouts/EventHomepage/index.tsx:433 +#: src/components/layouts/EventHomepage/index.tsx:447 msgid "View Map" msgstr "Ver mapa" #: src/components/layouts/EventHomepage/EventInformation/index.tsx:95 -#: src/components/layouts/EventHomepage/index.tsx:346 +#: src/components/layouts/EventHomepage/index.tsx:360 msgid "View on Google Maps" msgstr "Ver en Google Maps" @@ -8125,8 +8124,8 @@ msgstr "Ver detalles del pedido" msgid "View order details, issue refunds, and resend confirmations." msgstr "Vea detalles de pedidos, emita reembolsos y reenvíe confirmaciones." -#: src/components/layouts/OrganizerLayout/index.tsx:243 -#: src/components/layouts/OrganizerLayout/index.tsx:246 +#: src/components/layouts/OrganizerLayout/index.tsx:239 +#: src/components/layouts/OrganizerLayout/index.tsx:242 msgid "View Organizer Homepage" msgstr "Ver página principal del organizador" @@ -8590,7 +8589,7 @@ msgstr "Debe crear un ticket antes de poder agregar manualmente un asistente." msgid "You must have at least one price tier" msgstr "Debes tener al menos un nivel de precios" -#: src/components/layouts/OrganizerLayout/index.tsx:281 +#: src/components/layouts/OrganizerLayout/index.tsx:277 msgid "You must verify your email address before you can update the organizer status." msgstr "Debes verificar tu dirección de correo electrónico antes de poder actualizar el estado del organizador." diff --git a/frontend/src/locales/fr.po b/frontend/src/locales/fr.po index 0301eff69..c931b5e78 100644 --- a/frontend/src/locales/fr.po +++ b/frontend/src/locales/fr.po @@ -13,13 +13,13 @@ msgstr "" "Language-Team: \n" "Plural-Forms: \n" -#: src/components/layouts/Event/index.tsx:189 -#: src/components/layouts/OrganizerLayout/index.tsx:207 +#: src/components/layouts/Event/index.tsx:183 +#: src/components/layouts/OrganizerLayout/index.tsx:203 msgid "- Click to Publish" msgstr "- Cliquez pour publier" -#: src/components/layouts/Event/index.tsx:191 -#: src/components/layouts/OrganizerLayout/index.tsx:209 +#: src/components/layouts/Event/index.tsx:185 +#: src/components/layouts/OrganizerLayout/index.tsx:205 msgid "- Click to Unpublish" msgstr "- Cliquez pour dépublier" @@ -273,7 +273,7 @@ msgstr "Une taxe standard, comme la TVA ou la TPS" msgid "Abandoned" msgstr "Abandonné" -#: src/components/layouts/EventHomepage/index.tsx:361 +#: src/components/layouts/EventHomepage/index.tsx:375 msgid "About" msgstr "À propos" @@ -464,7 +464,7 @@ msgstr "Ajouter un niveau" #: src/components/common/AddEventToCalendarButton/index.tsx:14 #: src/components/common/AddToCalendarCTA/index.tsx:24 -#: src/components/layouts/EventHomepage/index.tsx:306 +#: src/components/layouts/EventHomepage/index.tsx:320 msgid "Add to Calendar" msgstr "Ajouter au calendrier" @@ -773,12 +773,12 @@ msgstr "Êtes-vous sûr de vouloir supprimer ce webhook ?" msgid "Are you sure you want to leave?" msgstr "Êtes-vous sûr de vouloir partir ?" -#: src/components/layouts/Event/index.tsx:155 +#: src/components/layouts/Event/index.tsx:149 #: src/components/routes/event/EventDashboard/index.tsx:71 msgid "Are you sure you want to make this event draft? This will make the event invisible to the public" msgstr "Êtes-vous sûr de vouloir créer un brouillon pour cet événement ? Cela rendra l'événement invisible au public" -#: src/components/layouts/Event/index.tsx:156 +#: src/components/layouts/Event/index.tsx:150 #: src/components/routes/event/EventDashboard/index.tsx:72 msgid "Are you sure you want to make this event public? This will make the event visible to the public" msgstr "Êtes-vous sûr de vouloir rendre cet événement public ? Cela rendra l'événement visible au public" @@ -1463,7 +1463,7 @@ msgstr "Le code doit comporter entre 3 et 50 caractères" msgid "Code must be no more than 20 characters" msgstr "Le code ne doit pas dépasser 20 caractères" -#: src/components/layouts/OrganizerLayout/index.tsx:163 +#: src/components/layouts/OrganizerLayout/index.tsx:159 msgid "Collaborate with your team to create amazing events together." msgstr "Collaborez avec votre équipe pour créer ensemble des événements incroyables." @@ -1645,11 +1645,11 @@ msgstr "Confirmez le mot de passe" msgid "Confirm Password" msgstr "Confirmez le mot de passe" -#: src/components/layouts/Event/index.tsx:246 +#: src/components/layouts/Event/index.tsx:240 msgid "Confirm your email to access all features." msgstr "Confirmez votre e-mail pour accéder à toutes les fonctionnalités." -#: src/components/layouts/OrganizerLayout/index.tsx:296 +#: src/components/layouts/OrganizerLayout/index.tsx:292 msgid "Confirmation email sent! Please check your inbox." msgstr "E-mail de confirmation envoyé ! Veuillez vérifier votre boîte de réception." @@ -1677,8 +1677,8 @@ msgstr "Documentation de connexion" msgid "Connect payment processing" msgstr "Connecter le traitement des paiements" -#: src/components/layouts/OrganizerLayout/index.tsx:176 -#: src/components/layouts/OrganizerLayout/index.tsx:184 +#: src/components/layouts/OrganizerLayout/index.tsx:172 +#: src/components/layouts/OrganizerLayout/index.tsx:180 msgid "Connect Stripe" msgstr "Connecter la bande" @@ -1698,7 +1698,7 @@ msgstr "Se connecter à Stripe" msgid "Connect with Stripe" msgstr "Connectez-vous avec Stripe" -#: src/components/layouts/OrganizerLayout/index.tsx:177 +#: src/components/layouts/OrganizerLayout/index.tsx:173 msgid "Connect your Stripe account to accept payments for tickets and products." msgstr "Connectez votre compte Stripe pour accepter les paiements des billets et produits." @@ -1727,8 +1727,8 @@ msgstr "Connecté à Stripe" msgid "Connection Details" msgstr "Détails de connexion" -#: src/components/layouts/EventHomepage/index.tsx:555 -#: src/components/layouts/OrganizerHomepage/index.tsx:232 +#: src/components/layouts/EventHomepage/index.tsx:569 +#: src/components/layouts/OrganizerHomepage/index.tsx:245 msgid "Contact" msgstr "Contact" @@ -1973,7 +1973,7 @@ msgid "Create discounts, access codes for hidden tickets, and special offers." msgstr "Créez des réductions, des codes d'accès pour les billets cachés et des offres spéciales." #: src/components/common/NoEventsBlankSlate/index.tsx:27 -#: src/components/layouts/OrganizerLayout/index.tsx:153 +#: src/components/layouts/OrganizerLayout/index.tsx:149 #: src/components/routes/organizer/Events/index.tsx:62 #: src/components/routes/organizer/OrganizerDashboard/index.tsx:257 msgid "Create Event" @@ -2440,8 +2440,8 @@ msgid "Downloading Invoice" msgstr "Téléchargement de la facture" #: src/components/common/EventCard/index.tsx:84 -#: src/components/layouts/Event/index.tsx:188 -#: src/components/layouts/OrganizerLayout/index.tsx:206 +#: src/components/layouts/Event/index.tsx:182 +#: src/components/layouts/OrganizerLayout/index.tsx:202 msgid "Draft" msgstr "Brouillon" @@ -2715,7 +2715,7 @@ msgstr "Aperçu de l'e-mail" msgid "Email Templates" msgstr "Modèles d'e-mail" -#: src/components/layouts/OrganizerLayout/index.tsx:275 +#: src/components/layouts/OrganizerLayout/index.tsx:271 msgid "Email Verification Required" msgstr "Vérification de l'e-mail requise" @@ -2982,7 +2982,7 @@ msgstr "Événement non disponible" msgid "Event organizer name" msgstr "Nom de l'organisateur de l'événement" -#: src/components/layouts/Event/index.tsx:235 +#: src/components/layouts/Event/index.tsx:229 msgid "Event Page" msgstr "Page de l'événement" @@ -2993,7 +2993,7 @@ msgstr "Paramètres de l'événement" #: src/components/common/EventCard/index.tsx:70 #: src/components/common/StatusToggle/index.tsx:59 -#: src/components/layouts/Event/index.tsx:167 +#: src/components/layouts/Event/index.tsx:161 #: src/components/routes/event/EventDashboard/index.tsx:83 #: src/components/routes/event/GettingStarted/index.tsx:63 msgid "Event status update failed. Please try again later" @@ -3001,7 +3001,7 @@ msgstr "La mise à jour du statut de l'événement a échoué. Veuillez réessay #: src/components/common/EventCard/index.tsx:67 #: src/components/common/StatusToggle/index.tsx:51 -#: src/components/layouts/Event/index.tsx:164 +#: src/components/layouts/Event/index.tsx:158 #: src/components/routes/event/EventDashboard/index.tsx:80 #: src/components/routes/event/GettingStarted/index.tsx:60 msgid "Event status updated" @@ -3041,7 +3041,6 @@ msgstr "Lieu de l'Événement" #: src/components/common/AdminAccountsTable/index.tsx:74 #: src/components/layouts/Admin/index.tsx:16 #: src/components/layouts/OrganizerLayout/index.tsx:81 -#: src/components/layouts/OrganizerLayout/index.tsx:141 #: src/components/routes/admin/Accounts/AccountDetail/index.tsx:123 #: src/components/routes/admin/Events/index.tsx:77 #: src/components/routes/organizer/Events/index.tsx:43 @@ -3473,7 +3472,7 @@ msgstr "Générer un code" msgid "German" msgstr "Allemand" -#: src/components/layouts/EventHomepage/index.tsx:392 +#: src/components/layouts/EventHomepage/index.tsx:406 msgid "Get Directions" msgstr "Itinéraire" @@ -3485,7 +3484,7 @@ msgstr "" msgid "Get started" msgstr "" -#: src/components/layouts/EventHomepage/index.tsx:591 +#: src/components/layouts/EventHomepage/index.tsx:605 msgid "Get Tickets" msgstr "Obtenir des billets" @@ -3678,8 +3677,8 @@ msgid "Highlighted products will have a different background color to make them msgstr "Les produits mis en avant auront une couleur de fond différente pour se démarquer sur la page de l'événement." #: src/components/layouts/Event/index.tsx:137 -msgid "Home" -msgstr "Accueil" +#~ msgid "Home" +#~ msgstr "Accueil" #: src/components/routes/event/HomepageDesigner/index.tsx:160 #: src/components/routes/organizer/OrganizerHomepageDesigner/index.tsx:170 @@ -3926,7 +3925,7 @@ msgstr "Inviter un membre de l'équipe" msgid "Invite Team Member" msgstr "Inviter un membre de l'équipe" -#: src/components/layouts/OrganizerLayout/index.tsx:165 +#: src/components/layouts/OrganizerLayout/index.tsx:161 msgid "Invite Team Members" msgstr "Inviter des membres de l'équipe" @@ -3938,7 +3937,7 @@ msgstr "" msgid "Invite User" msgstr "Inviter un utilisateur" -#: src/components/layouts/OrganizerLayout/index.tsx:162 +#: src/components/layouts/OrganizerLayout/index.tsx:158 msgid "Invite Your Team" msgstr "Invitez votre équipe" @@ -3996,7 +3995,7 @@ msgstr "John" msgid "Johnson" msgstr "Johnson" -#: src/components/layouts/EventHomepage/index.tsx:320 +#: src/components/layouts/EventHomepage/index.tsx:334 msgid "Join from anywhere" msgstr "Rejoignez de n'importe où" @@ -4130,8 +4129,8 @@ msgid "LinkedIn" msgstr "LinkedIn" #: src/components/common/EventCard/index.tsx:87 -#: src/components/layouts/Event/index.tsx:190 -#: src/components/layouts/OrganizerLayout/index.tsx:208 +#: src/components/layouts/Event/index.tsx:184 +#: src/components/layouts/OrganizerLayout/index.tsx:204 msgid "Live" msgstr "En ligne" @@ -4162,7 +4161,7 @@ msgid "Loading..." msgstr "Chargement..." #: src/components/common/AttendeeTicket/index.tsx:91 -#: src/components/layouts/EventHomepage/index.tsx:374 +#: src/components/layouts/EventHomepage/index.tsx:388 #: src/components/routes/event/Settings/index.tsx:35 #: src/components/routes/event/Settings/Sections/LocationSettings/index.tsx:84 #: src/components/routes/my-tickets/index.tsx:73 @@ -4597,7 +4596,7 @@ msgstr "Aucune commande pour le moment" msgid "No other organizers available" msgstr "Aucun autre organisateur disponible" -#: src/components/layouts/OrganizerHomepage/index.tsx:273 +#: src/components/layouts/OrganizerHomepage/index.tsx:286 msgid "No past events" msgstr "Aucun événement passé" @@ -4665,7 +4664,7 @@ msgstr "Aucune taxe ou frais n'a été ajouté." msgid "No Tickets Found" msgstr "Aucun billet trouvé" -#: src/components/layouts/OrganizerHomepage/index.tsx:273 +#: src/components/layouts/OrganizerHomepage/index.tsx:286 msgid "No upcoming events" msgstr "Aucun événement à venir" @@ -4816,7 +4815,7 @@ msgid "Online" msgstr "En ligne" #: src/components/layouts/EventHomepage/EventInformation/index.tsx:71 -#: src/components/layouts/EventHomepage/index.tsx:318 +#: src/components/layouts/EventHomepage/index.tsx:332 #: src/components/layouts/OrganizerHomepage/EventCard/index.tsx:167 msgid "Online Event" msgstr "Événement en ligne" @@ -5099,7 +5098,7 @@ msgstr "Nom de l'organisation" #: src/components/common/AdminEventsTable/index.tsx:85 #: src/components/common/AttendeeTicket/index.tsx:82 -#: src/components/layouts/EventHomepage/index.tsx:467 +#: src/components/layouts/EventHomepage/index.tsx:481 #: src/components/modals/EditUserModal/index.tsx:55 #: src/components/modals/InviteUserModal/index.tsx:47 #: src/components/routes/events/Dashboard/index.tsx:193 @@ -5252,12 +5251,12 @@ msgstr "Le mot de passe a été réinitialisé avec succès. Veuillez vous conne msgid "Passwords are not the same" msgstr "les mots de passe ne sont pas les mêmes" -#: src/components/layouts/OrganizerHomepage/index.tsx:265 +#: src/components/layouts/OrganizerHomepage/index.tsx:278 #: src/components/routes/organizer/Reports/EventsPerformanceReport/index.tsx:30 msgid "Past" msgstr "Passé" -#: src/components/layouts/OrganizerHomepage/index.tsx:252 +#: src/components/layouts/OrganizerHomepage/index.tsx:265 msgid "Past Events" msgstr "Événements passés" @@ -5583,8 +5582,8 @@ msgstr "Aperçu" msgid "Preview checkout form" msgstr "Aperçu du formulaire de paiement" -#: src/components/layouts/Event/index.tsx:228 -#: src/components/layouts/Event/index.tsx:232 +#: src/components/layouts/Event/index.tsx:222 +#: src/components/layouts/Event/index.tsx:226 msgid "Preview Event page" msgstr "Aperçu de la page de l’événement" @@ -5643,8 +5642,8 @@ msgstr "Imprimer les billets" msgid "Print to PDF" msgstr "Imprimer en PDF" -#: src/components/layouts/EventHomepage/index.tsx:571 -#: src/components/layouts/OrganizerHomepage/index.tsx:315 +#: src/components/layouts/EventHomepage/index.tsx:585 +#: src/components/layouts/OrganizerHomepage/index.tsx:328 msgid "Privacy Policy" msgstr "Politique de confidentialité" @@ -5990,11 +5989,11 @@ msgstr "Requis" msgid "Resend code" msgstr "Renvoyer le code" -#: src/components/layouts/OrganizerLayout/index.tsx:292 +#: src/components/layouts/OrganizerLayout/index.tsx:288 msgid "Resend Confirmation Email" msgstr "Renvoyer l'e-mail de confirmation" -#: src/components/layouts/Event/index.tsx:248 +#: src/components/layouts/Event/index.tsx:242 msgid "Resend email" msgstr "Renvoyer l'e-mail" @@ -6556,8 +6555,8 @@ msgid "Setup & Design" msgstr "Configuration et design" #: src/components/common/ShareIcon/index.tsx:30 -#: src/components/layouts/EventHomepage/index.tsx:279 -#: src/components/layouts/OrganizerLayout/index.tsx:228 +#: src/components/layouts/EventHomepage/index.tsx:293 +#: src/components/layouts/OrganizerLayout/index.tsx:224 #: src/components/modals/ShareModal/index.tsx:37 #: src/components/modals/ShareModal/index.tsx:165 #: src/components/modals/ShareModal/index.tsx:186 @@ -6569,13 +6568,13 @@ msgstr "Partager" msgid "Share Affiliate Link" msgstr "Partager le lien d'affiliation" +#: src/components/layouts/Event/index.tsx:200 #: src/components/layouts/Event/index.tsx:206 -#: src/components/layouts/Event/index.tsx:212 msgid "Share Event" msgstr "Partager l'événement" -#: src/components/layouts/OrganizerLayout/index.tsx:225 -#: src/components/layouts/OrganizerLayout/index.tsx:260 +#: src/components/layouts/OrganizerLayout/index.tsx:221 +#: src/components/layouts/OrganizerLayout/index.tsx:256 msgid "Share Organizer Page" msgstr "Partager la page de l'organisateur" @@ -6673,7 +6672,7 @@ msgid "Sold out" msgstr "Épuisé" #: src/components/common/ProductsTable/SortableProduct/index.tsx:81 -#: src/components/layouts/EventHomepage/index.tsx:142 +#: src/components/layouts/EventHomepage/index.tsx:143 msgid "Sold Out" msgstr "Épuisé" @@ -7101,8 +7100,8 @@ msgstr "Modèle supprimé avec succès" msgid "Template saved successfully" msgstr "Modèle sauvegardé avec succès" -#: src/components/layouts/EventHomepage/index.tsx:577 -#: src/components/layouts/OrganizerHomepage/index.tsx:322 +#: src/components/layouts/EventHomepage/index.tsx:591 +#: src/components/layouts/OrganizerHomepage/index.tsx:335 msgid "Terms of Service" msgstr "Conditions d'utilisation" @@ -7529,7 +7528,7 @@ msgstr "Billets" msgid "Tickets & Products" msgstr "Billets et produits" -#: src/components/layouts/EventHomepage/index.tsx:149 +#: src/components/layouts/EventHomepage/index.tsx:150 msgid "Tickets Available" msgstr "Billets disponibles" @@ -7799,12 +7798,12 @@ msgstr "Annuler la publication de l'événement" #: src/components/common/EventsDashboardStatusButtons/index.tsx:20 #: src/components/common/EventStatusBadge/index.tsx:16 -#: src/components/layouts/OrganizerHomepage/index.tsx:259 +#: src/components/layouts/OrganizerHomepage/index.tsx:272 #: src/components/routes/organizer/Reports/EventsPerformanceReport/index.tsx:33 msgid "Upcoming" msgstr "A venir" -#: src/components/layouts/OrganizerHomepage/index.tsx:252 +#: src/components/layouts/OrganizerHomepage/index.tsx:265 #: src/components/routes/organizer/OrganizerDashboard/index.tsx:232 msgid "Upcoming Events" msgstr "Événements à venir" @@ -8046,7 +8045,7 @@ msgstr "Code de vérification" msgid "Verify Email" msgstr "Vérifier l'e-mail" -#: src/components/layouts/Event/index.tsx:245 +#: src/components/layouts/Event/index.tsx:239 msgid "Verify your email" msgstr "Vérifiez votre e-mail" @@ -8100,12 +8099,12 @@ msgstr "Voir les journaux" msgid "View map" msgstr "Voir la carte" -#: src/components/layouts/EventHomepage/index.tsx:433 +#: src/components/layouts/EventHomepage/index.tsx:447 msgid "View Map" msgstr "Voir la carte" #: src/components/layouts/EventHomepage/EventInformation/index.tsx:95 -#: src/components/layouts/EventHomepage/index.tsx:346 +#: src/components/layouts/EventHomepage/index.tsx:360 msgid "View on Google Maps" msgstr "Afficher sur Google Maps" @@ -8125,8 +8124,8 @@ msgstr "Voir les détails de la commande" msgid "View order details, issue refunds, and resend confirmations." msgstr "Consultez les détails des commandes, effectuez des remboursements et renvoyez les confirmations." -#: src/components/layouts/OrganizerLayout/index.tsx:243 -#: src/components/layouts/OrganizerLayout/index.tsx:246 +#: src/components/layouts/OrganizerLayout/index.tsx:239 +#: src/components/layouts/OrganizerLayout/index.tsx:242 msgid "View Organizer Homepage" msgstr "Voir la page d'accueil de l'organisateur" @@ -8590,7 +8589,7 @@ msgstr "Vous devez créer un ticket avant de pouvoir ajouter manuellement un par msgid "You must have at least one price tier" msgstr "Vous devez avoir au moins un niveau de prix" -#: src/components/layouts/OrganizerLayout/index.tsx:281 +#: src/components/layouts/OrganizerLayout/index.tsx:277 msgid "You must verify your email address before you can update the organizer status." msgstr "Vous devez vérifier votre adresse e-mail avant de pouvoir mettre à jour le statut de l'organisateur." diff --git a/frontend/src/locales/hu.po b/frontend/src/locales/hu.po index bf2c86fbf..11387dfd6 100644 --- a/frontend/src/locales/hu.po +++ b/frontend/src/locales/hu.po @@ -13,13 +13,13 @@ msgstr "" "Language-Team: \n" "Plural-Forms: \n" -#: src/components/layouts/Event/index.tsx:189 -#: src/components/layouts/OrganizerLayout/index.tsx:207 +#: src/components/layouts/Event/index.tsx:183 +#: src/components/layouts/OrganizerLayout/index.tsx:203 msgid "- Click to Publish" msgstr "- Kattintson a közzétételhez" -#: src/components/layouts/Event/index.tsx:191 -#: src/components/layouts/OrganizerLayout/index.tsx:209 +#: src/components/layouts/Event/index.tsx:185 +#: src/components/layouts/OrganizerLayout/index.tsx:205 msgid "- Click to Unpublish" msgstr "- Kattintson a visszavonáshoz" @@ -273,7 +273,7 @@ msgstr "Standard adó, mint az ÁFA vagy a GST" msgid "Abandoned" msgstr "Elhagyott" -#: src/components/layouts/EventHomepage/index.tsx:361 +#: src/components/layouts/EventHomepage/index.tsx:375 msgid "About" msgstr "Rólunk" @@ -464,7 +464,7 @@ msgstr "Szint hozzáadása" #: src/components/common/AddEventToCalendarButton/index.tsx:14 #: src/components/common/AddToCalendarCTA/index.tsx:24 -#: src/components/layouts/EventHomepage/index.tsx:306 +#: src/components/layouts/EventHomepage/index.tsx:320 msgid "Add to Calendar" msgstr "Hozzáadás a naptárhoz" @@ -773,12 +773,12 @@ msgstr "Biztosan törölni szeretné ezt a webhookot?" msgid "Are you sure you want to leave?" msgstr "Biztos, hogy el akarsz menni?" -#: src/components/layouts/Event/index.tsx:155 +#: src/components/layouts/Event/index.tsx:149 #: src/components/routes/event/EventDashboard/index.tsx:71 msgid "Are you sure you want to make this event draft? This will make the event invisible to the public" msgstr "Biztosan piszkozatba szeretné tenni ezt az eseményt? Ezzel az esemény láthatatlanná válik a nyilvánosság számára." -#: src/components/layouts/Event/index.tsx:156 +#: src/components/layouts/Event/index.tsx:150 #: src/components/routes/event/EventDashboard/index.tsx:72 msgid "Are you sure you want to make this event public? This will make the event visible to the public" msgstr "Biztosan nyilvánossá szeretné tenni ezt az eseményt? Ezzel az esemény láthatóvá válik a nyilvánosság számára." @@ -1463,7 +1463,7 @@ msgstr "A kódnak 3 és 50 karakter között kell lennie" msgid "Code must be no more than 20 characters" msgstr "A kód legfeljebb 20 karakter hosszúságú lehet" -#: src/components/layouts/OrganizerLayout/index.tsx:163 +#: src/components/layouts/OrganizerLayout/index.tsx:159 msgid "Collaborate with your team to create amazing events together." msgstr "Kollaboráljon csapatával, hogy csodálatos eseményeket hozzanak létre együtt." @@ -1645,11 +1645,11 @@ msgstr "Jelszó megerősítése" msgid "Confirm Password" msgstr "Jelszó megerősítése" -#: src/components/layouts/Event/index.tsx:246 +#: src/components/layouts/Event/index.tsx:240 msgid "Confirm your email to access all features." msgstr "Erősítse meg e-mail címét az összes funkció eléréséhez." -#: src/components/layouts/OrganizerLayout/index.tsx:296 +#: src/components/layouts/OrganizerLayout/index.tsx:292 msgid "Confirmation email sent! Please check your inbox." msgstr "Megerősítő e-mail elküldve! Kérjük, ellenőrizze postaládáját." @@ -1677,8 +1677,8 @@ msgstr "Dokumentáció csatlakoztatása" msgid "Connect payment processing" msgstr "Fizetésfeldolgozás csatlakoztatása" -#: src/components/layouts/OrganizerLayout/index.tsx:176 -#: src/components/layouts/OrganizerLayout/index.tsx:184 +#: src/components/layouts/OrganizerLayout/index.tsx:172 +#: src/components/layouts/OrganizerLayout/index.tsx:180 msgid "Connect Stripe" msgstr "Stripe csatlakoztatása" @@ -1698,7 +1698,7 @@ msgstr "Csatlakozás a Stripe-hoz" msgid "Connect with Stripe" msgstr "Csatlakozás a Stripe-hoz" -#: src/components/layouts/OrganizerLayout/index.tsx:177 +#: src/components/layouts/OrganizerLayout/index.tsx:173 msgid "Connect your Stripe account to accept payments for tickets and products." msgstr "Csatlakoztassa Stripe fiókját, hogy elfogadja a jegyek és termékek fizetését." @@ -1727,8 +1727,8 @@ msgstr "Csatlakoztatva a Stripe-hoz" msgid "Connection Details" msgstr "Csatlakozási adatok" -#: src/components/layouts/EventHomepage/index.tsx:555 -#: src/components/layouts/OrganizerHomepage/index.tsx:232 +#: src/components/layouts/EventHomepage/index.tsx:569 +#: src/components/layouts/OrganizerHomepage/index.tsx:245 msgid "Contact" msgstr "Kapcsolat" @@ -1973,7 +1973,7 @@ msgid "Create discounts, access codes for hidden tickets, and special offers." msgstr "" #: src/components/common/NoEventsBlankSlate/index.tsx:27 -#: src/components/layouts/OrganizerLayout/index.tsx:153 +#: src/components/layouts/OrganizerLayout/index.tsx:149 #: src/components/routes/organizer/Events/index.tsx:62 #: src/components/routes/organizer/OrganizerDashboard/index.tsx:257 msgid "Create Event" @@ -2440,8 +2440,8 @@ msgid "Downloading Invoice" msgstr "Számla letöltése" #: src/components/common/EventCard/index.tsx:84 -#: src/components/layouts/Event/index.tsx:188 -#: src/components/layouts/OrganizerLayout/index.tsx:206 +#: src/components/layouts/Event/index.tsx:182 +#: src/components/layouts/OrganizerLayout/index.tsx:202 msgid "Draft" msgstr "Piszkozat" @@ -2713,7 +2713,7 @@ msgstr "" msgid "Email Templates" msgstr "" -#: src/components/layouts/OrganizerLayout/index.tsx:275 +#: src/components/layouts/OrganizerLayout/index.tsx:271 msgid "Email Verification Required" msgstr "E-mail ellenőrzés szükséges" @@ -2980,7 +2980,7 @@ msgstr "Esemény nem elérhető" msgid "Event organizer name" msgstr "" -#: src/components/layouts/Event/index.tsx:235 +#: src/components/layouts/Event/index.tsx:229 msgid "Event Page" msgstr "Eseményoldal" @@ -2991,7 +2991,7 @@ msgstr "" #: src/components/common/EventCard/index.tsx:70 #: src/components/common/StatusToggle/index.tsx:59 -#: src/components/layouts/Event/index.tsx:167 +#: src/components/layouts/Event/index.tsx:161 #: src/components/routes/event/EventDashboard/index.tsx:83 #: src/components/routes/event/GettingStarted/index.tsx:63 msgid "Event status update failed. Please try again later" @@ -2999,7 +2999,7 @@ msgstr "Esemény állapotának frissítése sikertelen. Kérjük, próbálja új #: src/components/common/EventCard/index.tsx:67 #: src/components/common/StatusToggle/index.tsx:51 -#: src/components/layouts/Event/index.tsx:164 +#: src/components/layouts/Event/index.tsx:158 #: src/components/routes/event/EventDashboard/index.tsx:80 #: src/components/routes/event/GettingStarted/index.tsx:60 msgid "Event status updated" @@ -3039,7 +3039,6 @@ msgstr "" #: src/components/common/AdminAccountsTable/index.tsx:74 #: src/components/layouts/Admin/index.tsx:16 #: src/components/layouts/OrganizerLayout/index.tsx:81 -#: src/components/layouts/OrganizerLayout/index.tsx:141 #: src/components/routes/admin/Accounts/AccountDetail/index.tsx:123 #: src/components/routes/admin/Events/index.tsx:77 #: src/components/routes/organizer/Events/index.tsx:43 @@ -3471,7 +3470,7 @@ msgstr "Kód generálása" msgid "German" msgstr "Német" -#: src/components/layouts/EventHomepage/index.tsx:392 +#: src/components/layouts/EventHomepage/index.tsx:406 msgid "Get Directions" msgstr "" @@ -3483,7 +3482,7 @@ msgstr "" msgid "Get started" msgstr "" -#: src/components/layouts/EventHomepage/index.tsx:591 +#: src/components/layouts/EventHomepage/index.tsx:605 msgid "Get Tickets" msgstr "" @@ -3676,8 +3675,8 @@ msgid "Highlighted products will have a different background color to make them msgstr "" #: src/components/layouts/Event/index.tsx:137 -msgid "Home" -msgstr "Főoldal" +#~ msgid "Home" +#~ msgstr "Főoldal" #: src/components/routes/event/HomepageDesigner/index.tsx:160 #: src/components/routes/organizer/OrganizerHomepageDesigner/index.tsx:170 @@ -3924,7 +3923,7 @@ msgstr "Csapattag meghívása" msgid "Invite Team Member" msgstr "Csapattag meghívása" -#: src/components/layouts/OrganizerLayout/index.tsx:165 +#: src/components/layouts/OrganizerLayout/index.tsx:161 msgid "Invite Team Members" msgstr "Csapattagok meghívása" @@ -3936,7 +3935,7 @@ msgstr "" msgid "Invite User" msgstr "Felhasználó meghívása" -#: src/components/layouts/OrganizerLayout/index.tsx:162 +#: src/components/layouts/OrganizerLayout/index.tsx:158 msgid "Invite Your Team" msgstr "Hívja meg csapatát" @@ -3994,7 +3993,7 @@ msgstr "János" msgid "Johnson" msgstr "Johnson" -#: src/components/layouts/EventHomepage/index.tsx:320 +#: src/components/layouts/EventHomepage/index.tsx:334 msgid "Join from anywhere" msgstr "" @@ -4128,8 +4127,8 @@ msgid "LinkedIn" msgstr "LinkedIn" #: src/components/common/EventCard/index.tsx:87 -#: src/components/layouts/Event/index.tsx:190 -#: src/components/layouts/OrganizerLayout/index.tsx:208 +#: src/components/layouts/Event/index.tsx:184 +#: src/components/layouts/OrganizerLayout/index.tsx:204 msgid "Live" msgstr "Élő" @@ -4160,7 +4159,7 @@ msgid "Loading..." msgstr "Betöltés..." #: src/components/common/AttendeeTicket/index.tsx:91 -#: src/components/layouts/EventHomepage/index.tsx:374 +#: src/components/layouts/EventHomepage/index.tsx:388 #: src/components/routes/event/Settings/index.tsx:35 #: src/components/routes/event/Settings/Sections/LocationSettings/index.tsx:84 #: src/components/routes/my-tickets/index.tsx:73 @@ -4595,7 +4594,7 @@ msgstr "Még nincsenek megrendelések" msgid "No other organizers available" msgstr "Nincsenek más szervezők" -#: src/components/layouts/OrganizerHomepage/index.tsx:273 +#: src/components/layouts/OrganizerHomepage/index.tsx:286 msgid "No past events" msgstr "Nincsenek múltbeli események" @@ -4663,7 +4662,7 @@ msgstr "Nem adtak hozzá adókat vagy díjakat." msgid "No Tickets Found" msgstr "" -#: src/components/layouts/OrganizerHomepage/index.tsx:273 +#: src/components/layouts/OrganizerHomepage/index.tsx:286 msgid "No upcoming events" msgstr "Nincsenek közelgő események" @@ -4814,7 +4813,7 @@ msgid "Online" msgstr "" #: src/components/layouts/EventHomepage/EventInformation/index.tsx:71 -#: src/components/layouts/EventHomepage/index.tsx:318 +#: src/components/layouts/EventHomepage/index.tsx:332 #: src/components/layouts/OrganizerHomepage/EventCard/index.tsx:167 msgid "Online Event" msgstr "Online esemény" @@ -5097,7 +5096,7 @@ msgstr "Szervezet neve" #: src/components/common/AdminEventsTable/index.tsx:85 #: src/components/common/AttendeeTicket/index.tsx:82 -#: src/components/layouts/EventHomepage/index.tsx:467 +#: src/components/layouts/EventHomepage/index.tsx:481 #: src/components/modals/EditUserModal/index.tsx:55 #: src/components/modals/InviteUserModal/index.tsx:47 #: src/components/routes/events/Dashboard/index.tsx:193 @@ -5250,12 +5249,12 @@ msgstr "Jelszó sikeresen visszaállítva. Kérjük, jelentkezzen be új jelszav msgid "Passwords are not the same" msgstr "A jelszavak nem egyeznek." -#: src/components/layouts/OrganizerHomepage/index.tsx:265 +#: src/components/layouts/OrganizerHomepage/index.tsx:278 #: src/components/routes/organizer/Reports/EventsPerformanceReport/index.tsx:30 msgid "Past" msgstr "Múlt" -#: src/components/layouts/OrganizerHomepage/index.tsx:252 +#: src/components/layouts/OrganizerHomepage/index.tsx:265 msgid "Past Events" msgstr "Múltbeli események" @@ -5581,8 +5580,8 @@ msgstr "Előnézet" msgid "Preview checkout form" msgstr "" -#: src/components/layouts/Event/index.tsx:228 -#: src/components/layouts/Event/index.tsx:232 +#: src/components/layouts/Event/index.tsx:222 +#: src/components/layouts/Event/index.tsx:226 msgid "Preview Event page" msgstr "Eseményoldal előnézete" @@ -5641,8 +5640,8 @@ msgstr "Jegyek nyomtatása" msgid "Print to PDF" msgstr "" -#: src/components/layouts/EventHomepage/index.tsx:571 -#: src/components/layouts/OrganizerHomepage/index.tsx:315 +#: src/components/layouts/EventHomepage/index.tsx:585 +#: src/components/layouts/OrganizerHomepage/index.tsx:328 msgid "Privacy Policy" msgstr "Adatvédelmi irányelvek" @@ -5988,11 +5987,11 @@ msgstr "" msgid "Resend code" msgstr "Kód újraküldése" -#: src/components/layouts/OrganizerLayout/index.tsx:292 +#: src/components/layouts/OrganizerLayout/index.tsx:288 msgid "Resend Confirmation Email" msgstr "Megerősítő e-mail újraküldése" -#: src/components/layouts/Event/index.tsx:248 +#: src/components/layouts/Event/index.tsx:242 msgid "Resend email" msgstr "E-mail újraküldése" @@ -6554,8 +6553,8 @@ msgid "Setup & Design" msgstr "" #: src/components/common/ShareIcon/index.tsx:30 -#: src/components/layouts/EventHomepage/index.tsx:279 -#: src/components/layouts/OrganizerLayout/index.tsx:228 +#: src/components/layouts/EventHomepage/index.tsx:293 +#: src/components/layouts/OrganizerLayout/index.tsx:224 #: src/components/modals/ShareModal/index.tsx:37 #: src/components/modals/ShareModal/index.tsx:165 #: src/components/modals/ShareModal/index.tsx:186 @@ -6567,13 +6566,13 @@ msgstr "Megosztás" msgid "Share Affiliate Link" msgstr "Partnerlink megosztása" +#: src/components/layouts/Event/index.tsx:200 #: src/components/layouts/Event/index.tsx:206 -#: src/components/layouts/Event/index.tsx:212 msgid "Share Event" msgstr "Esemény megosztása" -#: src/components/layouts/OrganizerLayout/index.tsx:225 -#: src/components/layouts/OrganizerLayout/index.tsx:260 +#: src/components/layouts/OrganizerLayout/index.tsx:221 +#: src/components/layouts/OrganizerLayout/index.tsx:256 msgid "Share Organizer Page" msgstr "Szervezői oldal megosztása" @@ -6671,7 +6670,7 @@ msgid "Sold out" msgstr "Elfogyott" #: src/components/common/ProductsTable/SortableProduct/index.tsx:81 -#: src/components/layouts/EventHomepage/index.tsx:142 +#: src/components/layouts/EventHomepage/index.tsx:143 msgid "Sold Out" msgstr "Elfogyott" @@ -7099,8 +7098,8 @@ msgstr "" msgid "Template saved successfully" msgstr "" -#: src/components/layouts/EventHomepage/index.tsx:577 -#: src/components/layouts/OrganizerHomepage/index.tsx:322 +#: src/components/layouts/EventHomepage/index.tsx:591 +#: src/components/layouts/OrganizerHomepage/index.tsx:335 msgid "Terms of Service" msgstr "Szolgáltatási feltételek" @@ -7527,7 +7526,7 @@ msgstr "" msgid "Tickets & Products" msgstr "Jegyek és termékek" -#: src/components/layouts/EventHomepage/index.tsx:149 +#: src/components/layouts/EventHomepage/index.tsx:150 msgid "Tickets Available" msgstr "" @@ -7797,12 +7796,12 @@ msgstr "Esemény visszavonása" #: src/components/common/EventsDashboardStatusButtons/index.tsx:20 #: src/components/common/EventStatusBadge/index.tsx:16 -#: src/components/layouts/OrganizerHomepage/index.tsx:259 +#: src/components/layouts/OrganizerHomepage/index.tsx:272 #: src/components/routes/organizer/Reports/EventsPerformanceReport/index.tsx:33 msgid "Upcoming" msgstr "Közelgő" -#: src/components/layouts/OrganizerHomepage/index.tsx:252 +#: src/components/layouts/OrganizerHomepage/index.tsx:265 #: src/components/routes/organizer/OrganizerDashboard/index.tsx:232 msgid "Upcoming Events" msgstr "Közelgő események" @@ -8044,7 +8043,7 @@ msgstr "Ellenőrző kód" msgid "Verify Email" msgstr "E-mail ellenőrzése" -#: src/components/layouts/Event/index.tsx:245 +#: src/components/layouts/Event/index.tsx:239 msgid "Verify your email" msgstr "Ellenőrizze e-mail címét" @@ -8098,12 +8097,12 @@ msgstr "Naplók megtekintése" msgid "View map" msgstr "Térkép megtekintése" -#: src/components/layouts/EventHomepage/index.tsx:433 +#: src/components/layouts/EventHomepage/index.tsx:447 msgid "View Map" msgstr "" #: src/components/layouts/EventHomepage/EventInformation/index.tsx:95 -#: src/components/layouts/EventHomepage/index.tsx:346 +#: src/components/layouts/EventHomepage/index.tsx:360 msgid "View on Google Maps" msgstr "Megtekintés a Google Térképen" @@ -8123,8 +8122,8 @@ msgstr "" msgid "View order details, issue refunds, and resend confirmations." msgstr "" -#: src/components/layouts/OrganizerLayout/index.tsx:243 -#: src/components/layouts/OrganizerLayout/index.tsx:246 +#: src/components/layouts/OrganizerLayout/index.tsx:239 +#: src/components/layouts/OrganizerLayout/index.tsx:242 msgid "View Organizer Homepage" msgstr "Szervezői honlap megtekintése" @@ -8588,7 +8587,7 @@ msgstr "Jegy létrehozása kötelező, mielőtt manuálisan hozzáadhatna egy r msgid "You must have at least one price tier" msgstr "Legalább egy árszintre szüksége van." -#: src/components/layouts/OrganizerLayout/index.tsx:281 +#: src/components/layouts/OrganizerLayout/index.tsx:277 msgid "You must verify your email address before you can update the organizer status." msgstr "Megerősítenie kell e-mail címét, mielőtt frissítheti a szervezői státuszt." diff --git a/frontend/src/locales/it.po b/frontend/src/locales/it.po index ccef6a61a..c84ea92e3 100644 --- a/frontend/src/locales/it.po +++ b/frontend/src/locales/it.po @@ -13,13 +13,13 @@ msgstr "" "Language-Team: Italian\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: src/components/layouts/Event/index.tsx:189 -#: src/components/layouts/OrganizerLayout/index.tsx:207 +#: src/components/layouts/Event/index.tsx:183 +#: src/components/layouts/OrganizerLayout/index.tsx:203 msgid "- Click to Publish" msgstr "- Clicca per pubblicare" -#: src/components/layouts/Event/index.tsx:191 -#: src/components/layouts/OrganizerLayout/index.tsx:209 +#: src/components/layouts/Event/index.tsx:185 +#: src/components/layouts/OrganizerLayout/index.tsx:205 msgid "- Click to Unpublish" msgstr "- Clicca per annullare la pubblicazione" @@ -273,7 +273,7 @@ msgstr "Un'imposta standard, come IVA o GST" msgid "Abandoned" msgstr "Abbandonato" -#: src/components/layouts/EventHomepage/index.tsx:361 +#: src/components/layouts/EventHomepage/index.tsx:375 msgid "About" msgstr "Informazioni" @@ -464,7 +464,7 @@ msgstr "Aggiungi livello" #: src/components/common/AddEventToCalendarButton/index.tsx:14 #: src/components/common/AddToCalendarCTA/index.tsx:24 -#: src/components/layouts/EventHomepage/index.tsx:306 +#: src/components/layouts/EventHomepage/index.tsx:320 msgid "Add to Calendar" msgstr "Aggiungi al Calendario" @@ -773,12 +773,12 @@ msgstr "Sei sicuro di voler eliminare questo webhook?" msgid "Are you sure you want to leave?" msgstr "Sei sicuro di voler uscire?" -#: src/components/layouts/Event/index.tsx:155 +#: src/components/layouts/Event/index.tsx:149 #: src/components/routes/event/EventDashboard/index.tsx:71 msgid "Are you sure you want to make this event draft? This will make the event invisible to the public" msgstr "Sei sicuro di voler rendere questo evento una bozza? Questo renderà l'evento invisibile al pubblico" -#: src/components/layouts/Event/index.tsx:156 +#: src/components/layouts/Event/index.tsx:150 #: src/components/routes/event/EventDashboard/index.tsx:72 msgid "Are you sure you want to make this event public? This will make the event visible to the public" msgstr "Sei sicuro di voler rendere questo evento pubblico? Questo renderà l'evento visibile al pubblico" @@ -1463,7 +1463,7 @@ msgstr "Il codice deve essere compreso tra 3 e 50 caratteri" msgid "Code must be no more than 20 characters" msgstr "Il codice non deve superare i 20 caratteri" -#: src/components/layouts/OrganizerLayout/index.tsx:163 +#: src/components/layouts/OrganizerLayout/index.tsx:159 msgid "Collaborate with your team to create amazing events together." msgstr "Collabora con il tuo team per creare eventi straordinari insieme." @@ -1645,11 +1645,11 @@ msgstr "Conferma password" msgid "Confirm Password" msgstr "Conferma Password" -#: src/components/layouts/Event/index.tsx:246 +#: src/components/layouts/Event/index.tsx:240 msgid "Confirm your email to access all features." msgstr "Conferma la tua email per accedere a tutte le funzionalità." -#: src/components/layouts/OrganizerLayout/index.tsx:296 +#: src/components/layouts/OrganizerLayout/index.tsx:292 msgid "Confirmation email sent! Please check your inbox." msgstr "Email di conferma inviata! Controlla la tua casella di posta." @@ -1677,8 +1677,8 @@ msgstr "Documentazione di Connessione" msgid "Connect payment processing" msgstr "Connetti elaborazione pagamenti" -#: src/components/layouts/OrganizerLayout/index.tsx:176 -#: src/components/layouts/OrganizerLayout/index.tsx:184 +#: src/components/layouts/OrganizerLayout/index.tsx:172 +#: src/components/layouts/OrganizerLayout/index.tsx:180 msgid "Connect Stripe" msgstr "Connect Stripe" @@ -1698,7 +1698,7 @@ msgstr "Connetti a Stripe" msgid "Connect with Stripe" msgstr "Connetti con Stripe" -#: src/components/layouts/OrganizerLayout/index.tsx:177 +#: src/components/layouts/OrganizerLayout/index.tsx:173 msgid "Connect your Stripe account to accept payments for tickets and products." msgstr "Collega il tuo account Stripe per accettare pagamenti per biglietti e prodotti." @@ -1727,8 +1727,8 @@ msgstr "Connesso a Stripe" msgid "Connection Details" msgstr "Dettagli di Connessione" -#: src/components/layouts/EventHomepage/index.tsx:555 -#: src/components/layouts/OrganizerHomepage/index.tsx:232 +#: src/components/layouts/EventHomepage/index.tsx:569 +#: src/components/layouts/OrganizerHomepage/index.tsx:245 msgid "Contact" msgstr "Contatto" @@ -1973,7 +1973,7 @@ msgid "Create discounts, access codes for hidden tickets, and special offers." msgstr "Crea sconti, codici di accesso per biglietti nascosti e offerte speciali." #: src/components/common/NoEventsBlankSlate/index.tsx:27 -#: src/components/layouts/OrganizerLayout/index.tsx:153 +#: src/components/layouts/OrganizerLayout/index.tsx:149 #: src/components/routes/organizer/Events/index.tsx:62 #: src/components/routes/organizer/OrganizerDashboard/index.tsx:257 msgid "Create Event" @@ -2440,8 +2440,8 @@ msgid "Downloading Invoice" msgstr "Scaricamento Fattura in corso" #: src/components/common/EventCard/index.tsx:84 -#: src/components/layouts/Event/index.tsx:188 -#: src/components/layouts/OrganizerLayout/index.tsx:206 +#: src/components/layouts/Event/index.tsx:182 +#: src/components/layouts/OrganizerLayout/index.tsx:202 msgid "Draft" msgstr "Bozza" @@ -2715,7 +2715,7 @@ msgstr "Anteprima Email" msgid "Email Templates" msgstr "Modelli Email" -#: src/components/layouts/OrganizerLayout/index.tsx:275 +#: src/components/layouts/OrganizerLayout/index.tsx:271 msgid "Email Verification Required" msgstr "Verifica email richiesta" @@ -2982,7 +2982,7 @@ msgstr "Evento Non Disponibile" msgid "Event organizer name" msgstr "Nome organizzatore evento" -#: src/components/layouts/Event/index.tsx:235 +#: src/components/layouts/Event/index.tsx:229 msgid "Event Page" msgstr "Pagina dell'evento" @@ -2993,7 +2993,7 @@ msgstr "Impostazioni evento" #: src/components/common/EventCard/index.tsx:70 #: src/components/common/StatusToggle/index.tsx:59 -#: src/components/layouts/Event/index.tsx:167 +#: src/components/layouts/Event/index.tsx:161 #: src/components/routes/event/EventDashboard/index.tsx:83 #: src/components/routes/event/GettingStarted/index.tsx:63 msgid "Event status update failed. Please try again later" @@ -3001,7 +3001,7 @@ msgstr "Aggiornamento stato evento fallito. Riprova più tardi" #: src/components/common/EventCard/index.tsx:67 #: src/components/common/StatusToggle/index.tsx:51 -#: src/components/layouts/Event/index.tsx:164 +#: src/components/layouts/Event/index.tsx:158 #: src/components/routes/event/EventDashboard/index.tsx:80 #: src/components/routes/event/GettingStarted/index.tsx:60 msgid "Event status updated" @@ -3041,7 +3041,6 @@ msgstr "Sede dell'Evento" #: src/components/common/AdminAccountsTable/index.tsx:74 #: src/components/layouts/Admin/index.tsx:16 #: src/components/layouts/OrganizerLayout/index.tsx:81 -#: src/components/layouts/OrganizerLayout/index.tsx:141 #: src/components/routes/admin/Accounts/AccountDetail/index.tsx:123 #: src/components/routes/admin/Events/index.tsx:77 #: src/components/routes/organizer/Events/index.tsx:43 @@ -3473,7 +3472,7 @@ msgstr "Genera codice" msgid "German" msgstr "Tedesco" -#: src/components/layouts/EventHomepage/index.tsx:392 +#: src/components/layouts/EventHomepage/index.tsx:406 msgid "Get Directions" msgstr "Indicazioni stradali" @@ -3485,7 +3484,7 @@ msgstr "" msgid "Get started" msgstr "" -#: src/components/layouts/EventHomepage/index.tsx:591 +#: src/components/layouts/EventHomepage/index.tsx:605 msgid "Get Tickets" msgstr "Ottieni i biglietti" @@ -3678,8 +3677,8 @@ msgid "Highlighted products will have a different background color to make them msgstr "I prodotti evidenziati avranno un colore di sfondo diverso per farli risaltare nella pagina dell'evento." #: src/components/layouts/Event/index.tsx:137 -msgid "Home" -msgstr "Home" +#~ msgid "Home" +#~ msgstr "Home" #: src/components/routes/event/HomepageDesigner/index.tsx:160 #: src/components/routes/organizer/OrganizerHomepageDesigner/index.tsx:170 @@ -3926,7 +3925,7 @@ msgstr "Invita un membro del team" msgid "Invite Team Member" msgstr "Invita membro del team" -#: src/components/layouts/OrganizerLayout/index.tsx:165 +#: src/components/layouts/OrganizerLayout/index.tsx:161 msgid "Invite Team Members" msgstr "Invita membri del team" @@ -3938,7 +3937,7 @@ msgstr "" msgid "Invite User" msgstr "Invita Utente" -#: src/components/layouts/OrganizerLayout/index.tsx:162 +#: src/components/layouts/OrganizerLayout/index.tsx:158 msgid "Invite Your Team" msgstr "Invita il tuo team" @@ -3996,7 +3995,7 @@ msgstr "John" msgid "Johnson" msgstr "Johnson" -#: src/components/layouts/EventHomepage/index.tsx:320 +#: src/components/layouts/EventHomepage/index.tsx:334 msgid "Join from anywhere" msgstr "Partecipa da ovunque" @@ -4130,8 +4129,8 @@ msgid "LinkedIn" msgstr "LinkedIn" #: src/components/common/EventCard/index.tsx:87 -#: src/components/layouts/Event/index.tsx:190 -#: src/components/layouts/OrganizerLayout/index.tsx:208 +#: src/components/layouts/Event/index.tsx:184 +#: src/components/layouts/OrganizerLayout/index.tsx:204 msgid "Live" msgstr "Online" @@ -4162,7 +4161,7 @@ msgid "Loading..." msgstr "Caricamento..." #: src/components/common/AttendeeTicket/index.tsx:91 -#: src/components/layouts/EventHomepage/index.tsx:374 +#: src/components/layouts/EventHomepage/index.tsx:388 #: src/components/routes/event/Settings/index.tsx:35 #: src/components/routes/event/Settings/Sections/LocationSettings/index.tsx:84 #: src/components/routes/my-tickets/index.tsx:73 @@ -4597,7 +4596,7 @@ msgstr "Nessun ordine disponibile" msgid "No other organizers available" msgstr "Nessun altro organizzatore disponibile" -#: src/components/layouts/OrganizerHomepage/index.tsx:273 +#: src/components/layouts/OrganizerHomepage/index.tsx:286 msgid "No past events" msgstr "Nessun evento passato" @@ -4665,7 +4664,7 @@ msgstr "Nessuna Tassa o Commissione è stata aggiunta." msgid "No Tickets Found" msgstr "Nessun biglietto trovato" -#: src/components/layouts/OrganizerHomepage/index.tsx:273 +#: src/components/layouts/OrganizerHomepage/index.tsx:286 msgid "No upcoming events" msgstr "Nessun evento in arrivo" @@ -4816,7 +4815,7 @@ msgid "Online" msgstr "Online" #: src/components/layouts/EventHomepage/EventInformation/index.tsx:71 -#: src/components/layouts/EventHomepage/index.tsx:318 +#: src/components/layouts/EventHomepage/index.tsx:332 #: src/components/layouts/OrganizerHomepage/EventCard/index.tsx:167 msgid "Online Event" msgstr "Evento online" @@ -5099,7 +5098,7 @@ msgstr "Nome Organizzazione" #: src/components/common/AdminEventsTable/index.tsx:85 #: src/components/common/AttendeeTicket/index.tsx:82 -#: src/components/layouts/EventHomepage/index.tsx:467 +#: src/components/layouts/EventHomepage/index.tsx:481 #: src/components/modals/EditUserModal/index.tsx:55 #: src/components/modals/InviteUserModal/index.tsx:47 #: src/components/routes/events/Dashboard/index.tsx:193 @@ -5252,12 +5251,12 @@ msgstr "Password reimpostata con successo. Accedi con la tua nuova password." msgid "Passwords are not the same" msgstr "Le password non sono uguali" -#: src/components/layouts/OrganizerHomepage/index.tsx:265 +#: src/components/layouts/OrganizerHomepage/index.tsx:278 #: src/components/routes/organizer/Reports/EventsPerformanceReport/index.tsx:30 msgid "Past" msgstr "Passato" -#: src/components/layouts/OrganizerHomepage/index.tsx:252 +#: src/components/layouts/OrganizerHomepage/index.tsx:265 msgid "Past Events" msgstr "Eventi passati" @@ -5583,8 +5582,8 @@ msgstr "Anteprima" msgid "Preview checkout form" msgstr "Anteprima modulo di checkout" -#: src/components/layouts/Event/index.tsx:228 -#: src/components/layouts/Event/index.tsx:232 +#: src/components/layouts/Event/index.tsx:222 +#: src/components/layouts/Event/index.tsx:226 msgid "Preview Event page" msgstr "Anteprima pagina evento" @@ -5643,8 +5642,8 @@ msgstr "Stampa Biglietti" msgid "Print to PDF" msgstr "Stampa in PDF" -#: src/components/layouts/EventHomepage/index.tsx:571 -#: src/components/layouts/OrganizerHomepage/index.tsx:315 +#: src/components/layouts/EventHomepage/index.tsx:585 +#: src/components/layouts/OrganizerHomepage/index.tsx:328 msgid "Privacy Policy" msgstr "Informativa sulla privacy" @@ -5992,11 +5991,11 @@ msgstr "Obbligatorio" msgid "Resend code" msgstr "Reinvia codice" -#: src/components/layouts/OrganizerLayout/index.tsx:292 +#: src/components/layouts/OrganizerLayout/index.tsx:288 msgid "Resend Confirmation Email" msgstr "Invia nuovamente l'email di conferma" -#: src/components/layouts/Event/index.tsx:248 +#: src/components/layouts/Event/index.tsx:242 msgid "Resend email" msgstr "Invia nuovamente l'email" @@ -6558,8 +6557,8 @@ msgid "Setup & Design" msgstr "Configurazione e design" #: src/components/common/ShareIcon/index.tsx:30 -#: src/components/layouts/EventHomepage/index.tsx:279 -#: src/components/layouts/OrganizerLayout/index.tsx:228 +#: src/components/layouts/EventHomepage/index.tsx:293 +#: src/components/layouts/OrganizerLayout/index.tsx:224 #: src/components/modals/ShareModal/index.tsx:37 #: src/components/modals/ShareModal/index.tsx:165 #: src/components/modals/ShareModal/index.tsx:186 @@ -6571,13 +6570,13 @@ msgstr "Condividi" msgid "Share Affiliate Link" msgstr "Condividi link affiliato" +#: src/components/layouts/Event/index.tsx:200 #: src/components/layouts/Event/index.tsx:206 -#: src/components/layouts/Event/index.tsx:212 msgid "Share Event" msgstr "Condividi Evento" -#: src/components/layouts/OrganizerLayout/index.tsx:225 -#: src/components/layouts/OrganizerLayout/index.tsx:260 +#: src/components/layouts/OrganizerLayout/index.tsx:221 +#: src/components/layouts/OrganizerLayout/index.tsx:256 msgid "Share Organizer Page" msgstr "Condividi pagina dell'organizzatore" @@ -6675,7 +6674,7 @@ msgid "Sold out" msgstr "Esaurito" #: src/components/common/ProductsTable/SortableProduct/index.tsx:81 -#: src/components/layouts/EventHomepage/index.tsx:142 +#: src/components/layouts/EventHomepage/index.tsx:143 msgid "Sold Out" msgstr "Esaurito" @@ -7103,8 +7102,8 @@ msgstr "Modello eliminato con successo" msgid "Template saved successfully" msgstr "Modello salvato con successo" -#: src/components/layouts/EventHomepage/index.tsx:577 -#: src/components/layouts/OrganizerHomepage/index.tsx:322 +#: src/components/layouts/EventHomepage/index.tsx:591 +#: src/components/layouts/OrganizerHomepage/index.tsx:335 msgid "Terms of Service" msgstr "Termini di servizio" @@ -7531,7 +7530,7 @@ msgstr "Biglietti" msgid "Tickets & Products" msgstr "Biglietti e prodotti" -#: src/components/layouts/EventHomepage/index.tsx:149 +#: src/components/layouts/EventHomepage/index.tsx:150 msgid "Tickets Available" msgstr "Biglietti disponibili" @@ -7801,12 +7800,12 @@ msgstr "Annulla Pubblicazione Evento" #: src/components/common/EventsDashboardStatusButtons/index.tsx:20 #: src/components/common/EventStatusBadge/index.tsx:16 -#: src/components/layouts/OrganizerHomepage/index.tsx:259 +#: src/components/layouts/OrganizerHomepage/index.tsx:272 #: src/components/routes/organizer/Reports/EventsPerformanceReport/index.tsx:33 msgid "Upcoming" msgstr "In Arrivo" -#: src/components/layouts/OrganizerHomepage/index.tsx:252 +#: src/components/layouts/OrganizerHomepage/index.tsx:265 #: src/components/routes/organizer/OrganizerDashboard/index.tsx:232 msgid "Upcoming Events" msgstr "Eventi in Arrivo" @@ -8048,7 +8047,7 @@ msgstr "Codice di verifica" msgid "Verify Email" msgstr "Verifica email" -#: src/components/layouts/Event/index.tsx:245 +#: src/components/layouts/Event/index.tsx:239 msgid "Verify your email" msgstr "Verifica la tua email" @@ -8102,12 +8101,12 @@ msgstr "Visualizza log" msgid "View map" msgstr "Visualizza mappa" -#: src/components/layouts/EventHomepage/index.tsx:433 +#: src/components/layouts/EventHomepage/index.tsx:447 msgid "View Map" msgstr "Vedi mappa" #: src/components/layouts/EventHomepage/EventInformation/index.tsx:95 -#: src/components/layouts/EventHomepage/index.tsx:346 +#: src/components/layouts/EventHomepage/index.tsx:360 msgid "View on Google Maps" msgstr "Visualizza su Google Maps" @@ -8127,8 +8126,8 @@ msgstr "Visualizza dettagli ordine" msgid "View order details, issue refunds, and resend confirmations." msgstr "Visualizza i dettagli degli ordini, emetti rimborsi e reinvia le conferme." -#: src/components/layouts/OrganizerLayout/index.tsx:243 -#: src/components/layouts/OrganizerLayout/index.tsx:246 +#: src/components/layouts/OrganizerLayout/index.tsx:239 +#: src/components/layouts/OrganizerLayout/index.tsx:242 msgid "View Organizer Homepage" msgstr "Visualizza homepage organizzatore" @@ -8592,7 +8591,7 @@ msgstr "Devi creare un biglietto prima di poter aggiungere manualmente un partec msgid "You must have at least one price tier" msgstr "Devi avere almeno un livello di prezzo" -#: src/components/layouts/OrganizerLayout/index.tsx:281 +#: src/components/layouts/OrganizerLayout/index.tsx:277 msgid "You must verify your email address before you can update the organizer status." msgstr "Devi verificare il tuo indirizzo email prima di poter aggiornare lo stato dell'organizzatore." diff --git a/frontend/src/locales/nl.po b/frontend/src/locales/nl.po index 306eecbad..251d1d838 100644 --- a/frontend/src/locales/nl.po +++ b/frontend/src/locales/nl.po @@ -14,13 +14,13 @@ msgstr "" "Plural-Forms: \n" "X-Generator: Poedit 3.6\n" -#: src/components/layouts/Event/index.tsx:189 -#: src/components/layouts/OrganizerLayout/index.tsx:207 +#: src/components/layouts/Event/index.tsx:183 +#: src/components/layouts/OrganizerLayout/index.tsx:203 msgid "- Click to Publish" msgstr "- Klik om te publiceren" -#: src/components/layouts/Event/index.tsx:191 -#: src/components/layouts/OrganizerLayout/index.tsx:209 +#: src/components/layouts/Event/index.tsx:185 +#: src/components/layouts/OrganizerLayout/index.tsx:205 msgid "- Click to Unpublish" msgstr "- Klik om te verwijderen" @@ -274,7 +274,7 @@ msgstr "Een standaardbelasting, zoals BTW of GST" msgid "Abandoned" msgstr "Verlaten" -#: src/components/layouts/EventHomepage/index.tsx:361 +#: src/components/layouts/EventHomepage/index.tsx:375 msgid "About" msgstr "Over" @@ -465,7 +465,7 @@ msgstr "Niveau toevoegen" #: src/components/common/AddEventToCalendarButton/index.tsx:14 #: src/components/common/AddToCalendarCTA/index.tsx:24 -#: src/components/layouts/EventHomepage/index.tsx:306 +#: src/components/layouts/EventHomepage/index.tsx:320 msgid "Add to Calendar" msgstr "Toevoegen aan kalender" @@ -774,12 +774,12 @@ msgstr "Weet je zeker dat je deze webhook wilt verwijderen?" msgid "Are you sure you want to leave?" msgstr "Weet u zeker dat u wilt vertrekken?" -#: src/components/layouts/Event/index.tsx:155 +#: src/components/layouts/Event/index.tsx:149 #: src/components/routes/event/EventDashboard/index.tsx:71 msgid "Are you sure you want to make this event draft? This will make the event invisible to the public" msgstr "Weet je zeker dat je dit evenement concept wilt maken? Dit maakt het evenement onzichtbaar voor het publiek" -#: src/components/layouts/Event/index.tsx:156 +#: src/components/layouts/Event/index.tsx:150 #: src/components/routes/event/EventDashboard/index.tsx:72 msgid "Are you sure you want to make this event public? This will make the event visible to the public" msgstr "Weet je zeker dat je dit evenement openbaar wilt maken? Hierdoor wordt het evenement zichtbaar voor het publiek" @@ -1464,7 +1464,7 @@ msgstr "De code moet tussen 3 en 50 tekens lang zijn" msgid "Code must be no more than 20 characters" msgstr "Code mag maximaal 20 tekens bevatten" -#: src/components/layouts/OrganizerLayout/index.tsx:163 +#: src/components/layouts/OrganizerLayout/index.tsx:159 msgid "Collaborate with your team to create amazing events together." msgstr "Werk samen met je team om geweldige evenementen te organiseren." @@ -1646,11 +1646,11 @@ msgstr "Wachtwoord bevestigen" msgid "Confirm Password" msgstr "Wachtwoord bevestigen" -#: src/components/layouts/Event/index.tsx:246 +#: src/components/layouts/Event/index.tsx:240 msgid "Confirm your email to access all features." msgstr "Bevestig je e-mailadres om toegang te krijgen tot alle functies." -#: src/components/layouts/OrganizerLayout/index.tsx:296 +#: src/components/layouts/OrganizerLayout/index.tsx:292 msgid "Confirmation email sent! Please check your inbox." msgstr "Bevestigingsmail verzonden! Controleer je inbox." @@ -1678,8 +1678,8 @@ msgstr "Documentatie aansluiten" msgid "Connect payment processing" msgstr "Betalingsverwerking aansluiten" -#: src/components/layouts/OrganizerLayout/index.tsx:176 -#: src/components/layouts/OrganizerLayout/index.tsx:184 +#: src/components/layouts/OrganizerLayout/index.tsx:172 +#: src/components/layouts/OrganizerLayout/index.tsx:180 msgid "Connect Stripe" msgstr "Streep aansluiten" @@ -1699,7 +1699,7 @@ msgstr "Verbinding maken met Stripe" msgid "Connect with Stripe" msgstr "Maak verbinding met Stripe" -#: src/components/layouts/OrganizerLayout/index.tsx:177 +#: src/components/layouts/OrganizerLayout/index.tsx:173 msgid "Connect your Stripe account to accept payments for tickets and products." msgstr "Koppel je Stripe-account om betalingen voor tickets en producten te accepteren." @@ -1728,8 +1728,8 @@ msgstr "Verbonden met Stripe" msgid "Connection Details" msgstr "Details verbinding" -#: src/components/layouts/EventHomepage/index.tsx:555 -#: src/components/layouts/OrganizerHomepage/index.tsx:232 +#: src/components/layouts/EventHomepage/index.tsx:569 +#: src/components/layouts/OrganizerHomepage/index.tsx:245 msgid "Contact" msgstr "Contact" @@ -1974,7 +1974,7 @@ msgid "Create discounts, access codes for hidden tickets, and special offers." msgstr "Maak kortingen, toegangscodes voor verborgen tickets en speciale aanbiedingen." #: src/components/common/NoEventsBlankSlate/index.tsx:27 -#: src/components/layouts/OrganizerLayout/index.tsx:153 +#: src/components/layouts/OrganizerLayout/index.tsx:149 #: src/components/routes/organizer/Events/index.tsx:62 #: src/components/routes/organizer/OrganizerDashboard/index.tsx:257 msgid "Create Event" @@ -2441,8 +2441,8 @@ msgid "Downloading Invoice" msgstr "Factuur downloaden" #: src/components/common/EventCard/index.tsx:84 -#: src/components/layouts/Event/index.tsx:188 -#: src/components/layouts/OrganizerLayout/index.tsx:206 +#: src/components/layouts/Event/index.tsx:182 +#: src/components/layouts/OrganizerLayout/index.tsx:202 msgid "Draft" msgstr "Concept" @@ -2716,7 +2716,7 @@ msgstr "E-mail Voorbeeld" msgid "Email Templates" msgstr "E-mail Sjablonen" -#: src/components/layouts/OrganizerLayout/index.tsx:275 +#: src/components/layouts/OrganizerLayout/index.tsx:271 msgid "Email Verification Required" msgstr "E-mailverificatie vereist" @@ -2983,7 +2983,7 @@ msgstr "Evenement niet beschikbaar" msgid "Event organizer name" msgstr "Evenement organisator naam" -#: src/components/layouts/Event/index.tsx:235 +#: src/components/layouts/Event/index.tsx:229 msgid "Event Page" msgstr "Evenementpagina" @@ -2994,7 +2994,7 @@ msgstr "Evenement instellingen" #: src/components/common/EventCard/index.tsx:70 #: src/components/common/StatusToggle/index.tsx:59 -#: src/components/layouts/Event/index.tsx:167 +#: src/components/layouts/Event/index.tsx:161 #: src/components/routes/event/EventDashboard/index.tsx:83 #: src/components/routes/event/GettingStarted/index.tsx:63 msgid "Event status update failed. Please try again later" @@ -3002,7 +3002,7 @@ msgstr "Update status evenement mislukt. Probeer het later opnieuw" #: src/components/common/EventCard/index.tsx:67 #: src/components/common/StatusToggle/index.tsx:51 -#: src/components/layouts/Event/index.tsx:164 +#: src/components/layouts/Event/index.tsx:158 #: src/components/routes/event/EventDashboard/index.tsx:80 #: src/components/routes/event/GettingStarted/index.tsx:60 msgid "Event status updated" @@ -3042,7 +3042,6 @@ msgstr "Evenementlocatie" #: src/components/common/AdminAccountsTable/index.tsx:74 #: src/components/layouts/Admin/index.tsx:16 #: src/components/layouts/OrganizerLayout/index.tsx:81 -#: src/components/layouts/OrganizerLayout/index.tsx:141 #: src/components/routes/admin/Accounts/AccountDetail/index.tsx:123 #: src/components/routes/admin/Events/index.tsx:77 #: src/components/routes/organizer/Events/index.tsx:43 @@ -3474,7 +3473,7 @@ msgstr "Genereer code" msgid "German" msgstr "Duits" -#: src/components/layouts/EventHomepage/index.tsx:392 +#: src/components/layouts/EventHomepage/index.tsx:406 msgid "Get Directions" msgstr "Routebeschrijving" @@ -3486,7 +3485,7 @@ msgstr "" msgid "Get started" msgstr "" -#: src/components/layouts/EventHomepage/index.tsx:591 +#: src/components/layouts/EventHomepage/index.tsx:605 msgid "Get Tickets" msgstr "Koop Tickets" @@ -3679,8 +3678,8 @@ msgid "Highlighted products will have a different background color to make them msgstr "Gemarkeerde producten krijgen een andere achtergrondkleur om op te vallen op de evenementenpagina." #: src/components/layouts/Event/index.tsx:137 -msgid "Home" -msgstr "Startpagina" +#~ msgid "Home" +#~ msgstr "Startpagina" #: src/components/routes/event/HomepageDesigner/index.tsx:160 #: src/components/routes/organizer/OrganizerHomepageDesigner/index.tsx:170 @@ -3927,7 +3926,7 @@ msgstr "Nodig een teamlid uit" msgid "Invite Team Member" msgstr "Teamlid uitnodigen" -#: src/components/layouts/OrganizerLayout/index.tsx:165 +#: src/components/layouts/OrganizerLayout/index.tsx:161 msgid "Invite Team Members" msgstr "Teamleden uitnodigen" @@ -3939,7 +3938,7 @@ msgstr "" msgid "Invite User" msgstr "Gebruiker uitnodigen" -#: src/components/layouts/OrganizerLayout/index.tsx:162 +#: src/components/layouts/OrganizerLayout/index.tsx:158 msgid "Invite Your Team" msgstr "Nodig je team uit" @@ -3997,7 +3996,7 @@ msgstr "Jan" msgid "Johnson" msgstr "Jansen" -#: src/components/layouts/EventHomepage/index.tsx:320 +#: src/components/layouts/EventHomepage/index.tsx:334 msgid "Join from anywhere" msgstr "Neem overal vandaan deel" @@ -4131,8 +4130,8 @@ msgid "LinkedIn" msgstr "LinkedIn" #: src/components/common/EventCard/index.tsx:87 -#: src/components/layouts/Event/index.tsx:190 -#: src/components/layouts/OrganizerLayout/index.tsx:208 +#: src/components/layouts/Event/index.tsx:184 +#: src/components/layouts/OrganizerLayout/index.tsx:204 msgid "Live" msgstr "Live" @@ -4163,7 +4162,7 @@ msgid "Loading..." msgstr "Aan het laden..." #: src/components/common/AttendeeTicket/index.tsx:91 -#: src/components/layouts/EventHomepage/index.tsx:374 +#: src/components/layouts/EventHomepage/index.tsx:388 #: src/components/routes/event/Settings/index.tsx:35 #: src/components/routes/event/Settings/Sections/LocationSettings/index.tsx:84 #: src/components/routes/my-tickets/index.tsx:73 @@ -4598,7 +4597,7 @@ msgstr "Nog geen bestellingen" msgid "No other organizers available" msgstr "Geen andere organisatoren beschikbaar" -#: src/components/layouts/OrganizerHomepage/index.tsx:273 +#: src/components/layouts/OrganizerHomepage/index.tsx:286 msgid "No past events" msgstr "Geen afgelopen evenementen" @@ -4666,7 +4665,7 @@ msgstr "Er zijn geen belastingen of toeslagen toegevoegd." msgid "No Tickets Found" msgstr "Geen tickets gevonden" -#: src/components/layouts/OrganizerHomepage/index.tsx:273 +#: src/components/layouts/OrganizerHomepage/index.tsx:286 msgid "No upcoming events" msgstr "Geen aankomende evenementen" @@ -4817,7 +4816,7 @@ msgid "Online" msgstr "Online" #: src/components/layouts/EventHomepage/EventInformation/index.tsx:71 -#: src/components/layouts/EventHomepage/index.tsx:318 +#: src/components/layouts/EventHomepage/index.tsx:332 #: src/components/layouts/OrganizerHomepage/EventCard/index.tsx:167 msgid "Online Event" msgstr "Online evenement" @@ -5100,7 +5099,7 @@ msgstr "Naam organisatie" #: src/components/common/AdminEventsTable/index.tsx:85 #: src/components/common/AttendeeTicket/index.tsx:82 -#: src/components/layouts/EventHomepage/index.tsx:467 +#: src/components/layouts/EventHomepage/index.tsx:481 #: src/components/modals/EditUserModal/index.tsx:55 #: src/components/modals/InviteUserModal/index.tsx:47 #: src/components/routes/events/Dashboard/index.tsx:193 @@ -5253,12 +5252,12 @@ msgstr "Wachtwoord opnieuw ingesteld. Log in met je nieuwe wachtwoord." msgid "Passwords are not the same" msgstr "Wachtwoorden zijn niet hetzelfde" -#: src/components/layouts/OrganizerHomepage/index.tsx:265 +#: src/components/layouts/OrganizerHomepage/index.tsx:278 #: src/components/routes/organizer/Reports/EventsPerformanceReport/index.tsx:30 msgid "Past" msgstr "Verleden" -#: src/components/layouts/OrganizerHomepage/index.tsx:252 +#: src/components/layouts/OrganizerHomepage/index.tsx:265 msgid "Past Events" msgstr "Afgelopen evenementen" @@ -5584,8 +5583,8 @@ msgstr "Voorbeeld" msgid "Preview checkout form" msgstr "Voorbeeld afrekenformulier" -#: src/components/layouts/Event/index.tsx:228 -#: src/components/layouts/Event/index.tsx:232 +#: src/components/layouts/Event/index.tsx:222 +#: src/components/layouts/Event/index.tsx:226 msgid "Preview Event page" msgstr "Voorbeeld van de evenementpagina" @@ -5644,8 +5643,8 @@ msgstr "Tickets afdrukken" msgid "Print to PDF" msgstr "Afdrukken naar PDF" -#: src/components/layouts/EventHomepage/index.tsx:571 -#: src/components/layouts/OrganizerHomepage/index.tsx:315 +#: src/components/layouts/EventHomepage/index.tsx:585 +#: src/components/layouts/OrganizerHomepage/index.tsx:328 msgid "Privacy Policy" msgstr "Privacybeleid" @@ -5991,11 +5990,11 @@ msgstr "Verplicht" msgid "Resend code" msgstr "Code opnieuw verzenden" -#: src/components/layouts/OrganizerLayout/index.tsx:292 +#: src/components/layouts/OrganizerLayout/index.tsx:288 msgid "Resend Confirmation Email" msgstr "Bevestigingsmail opnieuw verzenden" -#: src/components/layouts/Event/index.tsx:248 +#: src/components/layouts/Event/index.tsx:242 msgid "Resend email" msgstr "E-mail opnieuw verzenden" @@ -6557,8 +6556,8 @@ msgid "Setup & Design" msgstr "Instellingen & ontwerp" #: src/components/common/ShareIcon/index.tsx:30 -#: src/components/layouts/EventHomepage/index.tsx:279 -#: src/components/layouts/OrganizerLayout/index.tsx:228 +#: src/components/layouts/EventHomepage/index.tsx:293 +#: src/components/layouts/OrganizerLayout/index.tsx:224 #: src/components/modals/ShareModal/index.tsx:37 #: src/components/modals/ShareModal/index.tsx:165 #: src/components/modals/ShareModal/index.tsx:186 @@ -6570,13 +6569,13 @@ msgstr "Deel" msgid "Share Affiliate Link" msgstr "Deel affiliatelink" +#: src/components/layouts/Event/index.tsx:200 #: src/components/layouts/Event/index.tsx:206 -#: src/components/layouts/Event/index.tsx:212 msgid "Share Event" msgstr "Evenement delen" -#: src/components/layouts/OrganizerLayout/index.tsx:225 -#: src/components/layouts/OrganizerLayout/index.tsx:260 +#: src/components/layouts/OrganizerLayout/index.tsx:221 +#: src/components/layouts/OrganizerLayout/index.tsx:256 msgid "Share Organizer Page" msgstr "Deel organisatorpagina" @@ -6674,7 +6673,7 @@ msgid "Sold out" msgstr "Uitverkocht" #: src/components/common/ProductsTable/SortableProduct/index.tsx:81 -#: src/components/layouts/EventHomepage/index.tsx:142 +#: src/components/layouts/EventHomepage/index.tsx:143 msgid "Sold Out" msgstr "Uitverkocht" @@ -7102,8 +7101,8 @@ msgstr "Sjabloon succesvol verwijderd" msgid "Template saved successfully" msgstr "Sjabloon succesvol opgeslagen" -#: src/components/layouts/EventHomepage/index.tsx:577 -#: src/components/layouts/OrganizerHomepage/index.tsx:322 +#: src/components/layouts/EventHomepage/index.tsx:591 +#: src/components/layouts/OrganizerHomepage/index.tsx:335 msgid "Terms of Service" msgstr "Servicevoorwaarden" @@ -7530,7 +7529,7 @@ msgstr "Tickets" msgid "Tickets & Products" msgstr "Tickets en producten" -#: src/components/layouts/EventHomepage/index.tsx:149 +#: src/components/layouts/EventHomepage/index.tsx:150 msgid "Tickets Available" msgstr "Tickets beschikbaar" @@ -7800,12 +7799,12 @@ msgstr "Evenement niet publiceren" #: src/components/common/EventsDashboardStatusButtons/index.tsx:20 #: src/components/common/EventStatusBadge/index.tsx:16 -#: src/components/layouts/OrganizerHomepage/index.tsx:259 +#: src/components/layouts/OrganizerHomepage/index.tsx:272 #: src/components/routes/organizer/Reports/EventsPerformanceReport/index.tsx:33 msgid "Upcoming" msgstr "Komende" -#: src/components/layouts/OrganizerHomepage/index.tsx:252 +#: src/components/layouts/OrganizerHomepage/index.tsx:265 #: src/components/routes/organizer/OrganizerDashboard/index.tsx:232 msgid "Upcoming Events" msgstr "Komende evenementen" @@ -8047,7 +8046,7 @@ msgstr "Verificatiecode" msgid "Verify Email" msgstr "Verifieer e-mail" -#: src/components/layouts/Event/index.tsx:245 +#: src/components/layouts/Event/index.tsx:239 msgid "Verify your email" msgstr "Verifieer je e-mailadres" @@ -8101,12 +8100,12 @@ msgstr "Logboeken bekijken" msgid "View map" msgstr "Kaart bekijken" -#: src/components/layouts/EventHomepage/index.tsx:433 +#: src/components/layouts/EventHomepage/index.tsx:447 msgid "View Map" msgstr "Bekijk kaart" #: src/components/layouts/EventHomepage/EventInformation/index.tsx:95 -#: src/components/layouts/EventHomepage/index.tsx:346 +#: src/components/layouts/EventHomepage/index.tsx:360 msgid "View on Google Maps" msgstr "Bekijk op Google Maps" @@ -8126,8 +8125,8 @@ msgstr "Bekijk bestelgegevens" msgid "View order details, issue refunds, and resend confirmations." msgstr "Bekijk bestellingsdetails, geef terugbetalingen en verstuur bevestigingen opnieuw." -#: src/components/layouts/OrganizerLayout/index.tsx:243 -#: src/components/layouts/OrganizerLayout/index.tsx:246 +#: src/components/layouts/OrganizerLayout/index.tsx:239 +#: src/components/layouts/OrganizerLayout/index.tsx:242 msgid "View Organizer Homepage" msgstr "Bekijk organisator-homepage" @@ -8591,7 +8590,7 @@ msgstr "Je moet een ticket aanmaken voordat je handmatig een genodigde kunt toev msgid "You must have at least one price tier" msgstr "Je moet minstens één prijsniveau hebben" -#: src/components/layouts/OrganizerLayout/index.tsx:281 +#: src/components/layouts/OrganizerLayout/index.tsx:277 msgid "You must verify your email address before you can update the organizer status." msgstr "Je moet je e-mailadres verifiëren voordat je de status van de organisator kunt bijwerken." diff --git a/frontend/src/locales/pt-br.po b/frontend/src/locales/pt-br.po index b447182c7..c90d831e4 100644 --- a/frontend/src/locales/pt-br.po +++ b/frontend/src/locales/pt-br.po @@ -13,13 +13,13 @@ msgstr "" "Language-Team: \n" "Plural-Forms: \n" -#: src/components/layouts/Event/index.tsx:189 -#: src/components/layouts/OrganizerLayout/index.tsx:207 +#: src/components/layouts/Event/index.tsx:183 +#: src/components/layouts/OrganizerLayout/index.tsx:203 msgid "- Click to Publish" msgstr "- Clique para publicar" -#: src/components/layouts/Event/index.tsx:191 -#: src/components/layouts/OrganizerLayout/index.tsx:209 +#: src/components/layouts/Event/index.tsx:185 +#: src/components/layouts/OrganizerLayout/index.tsx:205 msgid "- Click to Unpublish" msgstr "- Clique para despublicar" @@ -273,7 +273,7 @@ msgstr "Um imposto padrão, como IVA ou GST" msgid "Abandoned" msgstr "Abandonado" -#: src/components/layouts/EventHomepage/index.tsx:361 +#: src/components/layouts/EventHomepage/index.tsx:375 msgid "About" msgstr "Sobre" @@ -464,7 +464,7 @@ msgstr "Adicionar nível" #: src/components/common/AddEventToCalendarButton/index.tsx:14 #: src/components/common/AddToCalendarCTA/index.tsx:24 -#: src/components/layouts/EventHomepage/index.tsx:306 +#: src/components/layouts/EventHomepage/index.tsx:320 msgid "Add to Calendar" msgstr "Adicionar ao calendário" @@ -773,12 +773,12 @@ msgstr "Tem certeza de que deseja excluir este webhook?" msgid "Are you sure you want to leave?" msgstr "Tem certeza de que deseja sair?" -#: src/components/layouts/Event/index.tsx:155 +#: src/components/layouts/Event/index.tsx:149 #: src/components/routes/event/EventDashboard/index.tsx:71 msgid "Are you sure you want to make this event draft? This will make the event invisible to the public" msgstr "Tem certeza de que deseja tornar este evento um rascunho? Isso tornará o evento invisível para o público" -#: src/components/layouts/Event/index.tsx:156 +#: src/components/layouts/Event/index.tsx:150 #: src/components/routes/event/EventDashboard/index.tsx:72 msgid "Are you sure you want to make this event public? This will make the event visible to the public" msgstr "Tem certeza de que deseja tornar este evento público? Isso tornará o evento visível para o público" @@ -1463,7 +1463,7 @@ msgstr "O código deve ter entre 3 e 50 caracteres" msgid "Code must be no more than 20 characters" msgstr "O código não deve ter mais de 20 caracteres" -#: src/components/layouts/OrganizerLayout/index.tsx:163 +#: src/components/layouts/OrganizerLayout/index.tsx:159 msgid "Collaborate with your team to create amazing events together." msgstr "Colabore com sua equipe para criar eventos incríveis juntos." @@ -1645,11 +1645,11 @@ msgstr "Confirmar senha" msgid "Confirm Password" msgstr "Confirmar senha" -#: src/components/layouts/Event/index.tsx:246 +#: src/components/layouts/Event/index.tsx:240 msgid "Confirm your email to access all features." msgstr "Confirme seu e-mail para acessar todos os recursos." -#: src/components/layouts/OrganizerLayout/index.tsx:296 +#: src/components/layouts/OrganizerLayout/index.tsx:292 msgid "Confirmation email sent! Please check your inbox." msgstr "E-mail de confirmação enviado! Verifique sua caixa de entrada." @@ -1677,8 +1677,8 @@ msgstr "Documentação de conexão" msgid "Connect payment processing" msgstr "Conectar processamento de pagamento" -#: src/components/layouts/OrganizerLayout/index.tsx:176 -#: src/components/layouts/OrganizerLayout/index.tsx:184 +#: src/components/layouts/OrganizerLayout/index.tsx:172 +#: src/components/layouts/OrganizerLayout/index.tsx:180 msgid "Connect Stripe" msgstr "Conectar faixa" @@ -1698,7 +1698,7 @@ msgstr "Conectar ao Stripe" msgid "Connect with Stripe" msgstr "Conecte-se com o Stripe" -#: src/components/layouts/OrganizerLayout/index.tsx:177 +#: src/components/layouts/OrganizerLayout/index.tsx:173 msgid "Connect your Stripe account to accept payments for tickets and products." msgstr "Conecte sua conta Stripe para aceitar pagamentos de ingressos e produtos." @@ -1727,8 +1727,8 @@ msgstr "Conectado ao Stripe" msgid "Connection Details" msgstr "Detalhes da conexão" -#: src/components/layouts/EventHomepage/index.tsx:555 -#: src/components/layouts/OrganizerHomepage/index.tsx:232 +#: src/components/layouts/EventHomepage/index.tsx:569 +#: src/components/layouts/OrganizerHomepage/index.tsx:245 msgid "Contact" msgstr "Contato" @@ -1973,7 +1973,7 @@ msgid "Create discounts, access codes for hidden tickets, and special offers." msgstr "Crie descontos, códigos de acesso para ingressos ocultos e ofertas especiais." #: src/components/common/NoEventsBlankSlate/index.tsx:27 -#: src/components/layouts/OrganizerLayout/index.tsx:153 +#: src/components/layouts/OrganizerLayout/index.tsx:149 #: src/components/routes/organizer/Events/index.tsx:62 #: src/components/routes/organizer/OrganizerDashboard/index.tsx:257 msgid "Create Event" @@ -2440,8 +2440,8 @@ msgid "Downloading Invoice" msgstr "A baixar fatura" #: src/components/common/EventCard/index.tsx:84 -#: src/components/layouts/Event/index.tsx:188 -#: src/components/layouts/OrganizerLayout/index.tsx:206 +#: src/components/layouts/Event/index.tsx:182 +#: src/components/layouts/OrganizerLayout/index.tsx:202 msgid "Draft" msgstr "Rascunho" @@ -2715,7 +2715,7 @@ msgstr "Visualização do E-mail" msgid "Email Templates" msgstr "Modelos de E-mail" -#: src/components/layouts/OrganizerLayout/index.tsx:275 +#: src/components/layouts/OrganizerLayout/index.tsx:271 msgid "Email Verification Required" msgstr "Verificação de e-mail necessária" @@ -2982,7 +2982,7 @@ msgstr "Evento não disponível" msgid "Event organizer name" msgstr "Nome do organizador do evento" -#: src/components/layouts/Event/index.tsx:235 +#: src/components/layouts/Event/index.tsx:229 msgid "Event Page" msgstr "Página do Evento" @@ -2993,7 +2993,7 @@ msgstr "Configurações do evento" #: src/components/common/EventCard/index.tsx:70 #: src/components/common/StatusToggle/index.tsx:59 -#: src/components/layouts/Event/index.tsx:167 +#: src/components/layouts/Event/index.tsx:161 #: src/components/routes/event/EventDashboard/index.tsx:83 #: src/components/routes/event/GettingStarted/index.tsx:63 msgid "Event status update failed. Please try again later" @@ -3001,7 +3001,7 @@ msgstr "Falha na atualização do status do evento. Tente novamente mais tarde" #: src/components/common/EventCard/index.tsx:67 #: src/components/common/StatusToggle/index.tsx:51 -#: src/components/layouts/Event/index.tsx:164 +#: src/components/layouts/Event/index.tsx:158 #: src/components/routes/event/EventDashboard/index.tsx:80 #: src/components/routes/event/GettingStarted/index.tsx:60 msgid "Event status updated" @@ -3041,7 +3041,6 @@ msgstr "Local do Evento" #: src/components/common/AdminAccountsTable/index.tsx:74 #: src/components/layouts/Admin/index.tsx:16 #: src/components/layouts/OrganizerLayout/index.tsx:81 -#: src/components/layouts/OrganizerLayout/index.tsx:141 #: src/components/routes/admin/Accounts/AccountDetail/index.tsx:123 #: src/components/routes/admin/Events/index.tsx:77 #: src/components/routes/organizer/Events/index.tsx:43 @@ -3473,7 +3472,7 @@ msgstr "Gerar código" msgid "German" msgstr "Alemão" -#: src/components/layouts/EventHomepage/index.tsx:392 +#: src/components/layouts/EventHomepage/index.tsx:406 msgid "Get Directions" msgstr "Como chegar" @@ -3485,7 +3484,7 @@ msgstr "" msgid "Get started" msgstr "" -#: src/components/layouts/EventHomepage/index.tsx:591 +#: src/components/layouts/EventHomepage/index.tsx:605 msgid "Get Tickets" msgstr "Obter Ingressos" @@ -3678,8 +3677,8 @@ msgid "Highlighted products will have a different background color to make them msgstr "Os produtos em destaque terão uma cor de fundo diferente para se destacarem na página do evento." #: src/components/layouts/Event/index.tsx:137 -msgid "Home" -msgstr "Início" +#~ msgid "Home" +#~ msgstr "Início" #: src/components/routes/event/HomepageDesigner/index.tsx:160 #: src/components/routes/organizer/OrganizerHomepageDesigner/index.tsx:170 @@ -3926,7 +3925,7 @@ msgstr "Convidar um membro da equipe" msgid "Invite Team Member" msgstr "Convidar membro da equipe" -#: src/components/layouts/OrganizerLayout/index.tsx:165 +#: src/components/layouts/OrganizerLayout/index.tsx:161 msgid "Invite Team Members" msgstr "Convidar membros da equipe" @@ -3938,7 +3937,7 @@ msgstr "" msgid "Invite User" msgstr "Convidar usuário" -#: src/components/layouts/OrganizerLayout/index.tsx:162 +#: src/components/layouts/OrganizerLayout/index.tsx:158 msgid "Invite Your Team" msgstr "Convide sua equipe" @@ -3996,7 +3995,7 @@ msgstr "João" msgid "Johnson" msgstr "Johnson" -#: src/components/layouts/EventHomepage/index.tsx:320 +#: src/components/layouts/EventHomepage/index.tsx:334 msgid "Join from anywhere" msgstr "Participe de qualquer lugar" @@ -4130,8 +4129,8 @@ msgid "LinkedIn" msgstr "LinkedIn" #: src/components/common/EventCard/index.tsx:87 -#: src/components/layouts/Event/index.tsx:190 -#: src/components/layouts/OrganizerLayout/index.tsx:208 +#: src/components/layouts/Event/index.tsx:184 +#: src/components/layouts/OrganizerLayout/index.tsx:204 msgid "Live" msgstr "Ao vivo" @@ -4162,7 +4161,7 @@ msgid "Loading..." msgstr "Carregando..." #: src/components/common/AttendeeTicket/index.tsx:91 -#: src/components/layouts/EventHomepage/index.tsx:374 +#: src/components/layouts/EventHomepage/index.tsx:388 #: src/components/routes/event/Settings/index.tsx:35 #: src/components/routes/event/Settings/Sections/LocationSettings/index.tsx:84 #: src/components/routes/my-tickets/index.tsx:73 @@ -4597,7 +4596,7 @@ msgstr "Nenhum pedido ainda" msgid "No other organizers available" msgstr "Nenhum outro organizador disponível" -#: src/components/layouts/OrganizerHomepage/index.tsx:273 +#: src/components/layouts/OrganizerHomepage/index.tsx:286 msgid "No past events" msgstr "Nenhum evento passado" @@ -4665,7 +4664,7 @@ msgstr "Nenhum imposto ou taxa foi adicionado." msgid "No Tickets Found" msgstr "Nenhum ingresso encontrado" -#: src/components/layouts/OrganizerHomepage/index.tsx:273 +#: src/components/layouts/OrganizerHomepage/index.tsx:286 msgid "No upcoming events" msgstr "Nenhum evento futuro" @@ -4816,7 +4815,7 @@ msgid "Online" msgstr "Online" #: src/components/layouts/EventHomepage/EventInformation/index.tsx:71 -#: src/components/layouts/EventHomepage/index.tsx:318 +#: src/components/layouts/EventHomepage/index.tsx:332 #: src/components/layouts/OrganizerHomepage/EventCard/index.tsx:167 msgid "Online Event" msgstr "Evento online" @@ -5099,7 +5098,7 @@ msgstr "Nome da organização" #: src/components/common/AdminEventsTable/index.tsx:85 #: src/components/common/AttendeeTicket/index.tsx:82 -#: src/components/layouts/EventHomepage/index.tsx:467 +#: src/components/layouts/EventHomepage/index.tsx:481 #: src/components/modals/EditUserModal/index.tsx:55 #: src/components/modals/InviteUserModal/index.tsx:47 #: src/components/routes/events/Dashboard/index.tsx:193 @@ -5252,12 +5251,12 @@ msgstr "Redefinição de senha bem-sucedida. Faça login com sua nova senha." msgid "Passwords are not the same" msgstr "As senhas não são as mesmas" -#: src/components/layouts/OrganizerHomepage/index.tsx:265 +#: src/components/layouts/OrganizerHomepage/index.tsx:278 #: src/components/routes/organizer/Reports/EventsPerformanceReport/index.tsx:30 msgid "Past" msgstr "Passado" -#: src/components/layouts/OrganizerHomepage/index.tsx:252 +#: src/components/layouts/OrganizerHomepage/index.tsx:265 msgid "Past Events" msgstr "Eventos passados" @@ -5583,8 +5582,8 @@ msgstr "Visualização" msgid "Preview checkout form" msgstr "Pré-visualizar formulário de checkout" -#: src/components/layouts/Event/index.tsx:228 -#: src/components/layouts/Event/index.tsx:232 +#: src/components/layouts/Event/index.tsx:222 +#: src/components/layouts/Event/index.tsx:226 msgid "Preview Event page" msgstr "Pré-visualizar página do evento" @@ -5643,8 +5642,8 @@ msgstr "Imprimir ingressos" msgid "Print to PDF" msgstr "Imprimir para PDF" -#: src/components/layouts/EventHomepage/index.tsx:571 -#: src/components/layouts/OrganizerHomepage/index.tsx:315 +#: src/components/layouts/EventHomepage/index.tsx:585 +#: src/components/layouts/OrganizerHomepage/index.tsx:328 msgid "Privacy Policy" msgstr "Política de Privacidade" @@ -5990,11 +5989,11 @@ msgstr "Obrigatório" msgid "Resend code" msgstr "Reenviar código" -#: src/components/layouts/OrganizerLayout/index.tsx:292 +#: src/components/layouts/OrganizerLayout/index.tsx:288 msgid "Resend Confirmation Email" msgstr "Reenviar e-mail de confirmação" -#: src/components/layouts/Event/index.tsx:248 +#: src/components/layouts/Event/index.tsx:242 msgid "Resend email" msgstr "Reenviar e-mail" @@ -6556,8 +6555,8 @@ msgid "Setup & Design" msgstr "Configuração e design" #: src/components/common/ShareIcon/index.tsx:30 -#: src/components/layouts/EventHomepage/index.tsx:279 -#: src/components/layouts/OrganizerLayout/index.tsx:228 +#: src/components/layouts/EventHomepage/index.tsx:293 +#: src/components/layouts/OrganizerLayout/index.tsx:224 #: src/components/modals/ShareModal/index.tsx:37 #: src/components/modals/ShareModal/index.tsx:165 #: src/components/modals/ShareModal/index.tsx:186 @@ -6569,13 +6568,13 @@ msgstr "Compartilhar" msgid "Share Affiliate Link" msgstr "Partilhar link de afiliado" +#: src/components/layouts/Event/index.tsx:200 #: src/components/layouts/Event/index.tsx:206 -#: src/components/layouts/Event/index.tsx:212 msgid "Share Event" msgstr "Compartilhar evento" -#: src/components/layouts/OrganizerLayout/index.tsx:225 -#: src/components/layouts/OrganizerLayout/index.tsx:260 +#: src/components/layouts/OrganizerLayout/index.tsx:221 +#: src/components/layouts/OrganizerLayout/index.tsx:256 msgid "Share Organizer Page" msgstr "Compartilhar página do organizador" @@ -6673,7 +6672,7 @@ msgid "Sold out" msgstr "Esgotado" #: src/components/common/ProductsTable/SortableProduct/index.tsx:81 -#: src/components/layouts/EventHomepage/index.tsx:142 +#: src/components/layouts/EventHomepage/index.tsx:143 msgid "Sold Out" msgstr "Esgotado" @@ -7101,8 +7100,8 @@ msgstr "Modelo excluído com sucesso" msgid "Template saved successfully" msgstr "Modelo salvo com sucesso" -#: src/components/layouts/EventHomepage/index.tsx:577 -#: src/components/layouts/OrganizerHomepage/index.tsx:322 +#: src/components/layouts/EventHomepage/index.tsx:591 +#: src/components/layouts/OrganizerHomepage/index.tsx:335 msgid "Terms of Service" msgstr "Termos de serviço" @@ -7529,7 +7528,7 @@ msgstr "Ingressos" msgid "Tickets & Products" msgstr "Ingressos e produtos" -#: src/components/layouts/EventHomepage/index.tsx:149 +#: src/components/layouts/EventHomepage/index.tsx:150 msgid "Tickets Available" msgstr "Ingressos disponíveis" @@ -7799,12 +7798,12 @@ msgstr "Despublicar Evento" #: src/components/common/EventsDashboardStatusButtons/index.tsx:20 #: src/components/common/EventStatusBadge/index.tsx:16 -#: src/components/layouts/OrganizerHomepage/index.tsx:259 +#: src/components/layouts/OrganizerHomepage/index.tsx:272 #: src/components/routes/organizer/Reports/EventsPerformanceReport/index.tsx:33 msgid "Upcoming" msgstr "Próximos" -#: src/components/layouts/OrganizerHomepage/index.tsx:252 +#: src/components/layouts/OrganizerHomepage/index.tsx:265 #: src/components/routes/organizer/OrganizerDashboard/index.tsx:232 msgid "Upcoming Events" msgstr "Próximos eventos" @@ -8046,7 +8045,7 @@ msgstr "Código de verificação" msgid "Verify Email" msgstr "Verificar email" -#: src/components/layouts/Event/index.tsx:245 +#: src/components/layouts/Event/index.tsx:239 msgid "Verify your email" msgstr "Verifique seu e-mail" @@ -8100,12 +8099,12 @@ msgstr "Ver logs" msgid "View map" msgstr "Ver mapa" -#: src/components/layouts/EventHomepage/index.tsx:433 +#: src/components/layouts/EventHomepage/index.tsx:447 msgid "View Map" msgstr "Ver mapa" #: src/components/layouts/EventHomepage/EventInformation/index.tsx:95 -#: src/components/layouts/EventHomepage/index.tsx:346 +#: src/components/layouts/EventHomepage/index.tsx:360 msgid "View on Google Maps" msgstr "Exibir no Google Maps" @@ -8125,8 +8124,8 @@ msgstr "Ver detalhes do pedido" msgid "View order details, issue refunds, and resend confirmations." msgstr "Veja detalhes de pedidos, emita reembolsos e reenvie confirmações." -#: src/components/layouts/OrganizerLayout/index.tsx:243 -#: src/components/layouts/OrganizerLayout/index.tsx:246 +#: src/components/layouts/OrganizerLayout/index.tsx:239 +#: src/components/layouts/OrganizerLayout/index.tsx:242 msgid "View Organizer Homepage" msgstr "Ver página inicial do organizador" @@ -8590,7 +8589,7 @@ msgstr "Você deve criar um tíquete antes de adicionar manualmente um participa msgid "You must have at least one price tier" msgstr "Você deve ter pelo menos um nível de preço" -#: src/components/layouts/OrganizerLayout/index.tsx:281 +#: src/components/layouts/OrganizerLayout/index.tsx:277 msgid "You must verify your email address before you can update the organizer status." msgstr "Você precisa verificar seu e-mail antes de atualizar o status do organizador." diff --git a/frontend/src/locales/pt.po b/frontend/src/locales/pt.po index a1d973c23..3f5a95c4a 100644 --- a/frontend/src/locales/pt.po +++ b/frontend/src/locales/pt.po @@ -13,13 +13,13 @@ msgstr "" "Language-Team: \n" "Plural-Forms: \n" -#: src/components/layouts/Event/index.tsx:189 -#: src/components/layouts/OrganizerLayout/index.tsx:207 +#: src/components/layouts/Event/index.tsx:183 +#: src/components/layouts/OrganizerLayout/index.tsx:203 msgid "- Click to Publish" msgstr "- Clique para publicar" -#: src/components/layouts/Event/index.tsx:191 -#: src/components/layouts/OrganizerLayout/index.tsx:209 +#: src/components/layouts/Event/index.tsx:185 +#: src/components/layouts/OrganizerLayout/index.tsx:205 msgid "- Click to Unpublish" msgstr "- Clique para despublicar" @@ -273,7 +273,7 @@ msgstr "Um imposto padrão, como IVA ou GST" msgid "Abandoned" msgstr "Abandonado" -#: src/components/layouts/EventHomepage/index.tsx:361 +#: src/components/layouts/EventHomepage/index.tsx:375 msgid "About" msgstr "Sobre" @@ -464,7 +464,7 @@ msgstr "Adicionar nível" #: src/components/common/AddEventToCalendarButton/index.tsx:14 #: src/components/common/AddToCalendarCTA/index.tsx:24 -#: src/components/layouts/EventHomepage/index.tsx:306 +#: src/components/layouts/EventHomepage/index.tsx:320 msgid "Add to Calendar" msgstr "Adicionar ao calendário" @@ -773,12 +773,12 @@ msgstr "Tem certeza de que deseja excluir este webhook?" msgid "Are you sure you want to leave?" msgstr "Tem a certeza de que quer sair?" -#: src/components/layouts/Event/index.tsx:155 +#: src/components/layouts/Event/index.tsx:149 #: src/components/routes/event/EventDashboard/index.tsx:71 msgid "Are you sure you want to make this event draft? This will make the event invisible to the public" msgstr "Tem certeza de que deseja fazer o rascunho deste evento? Isso tornará o evento invisível para o público" -#: src/components/layouts/Event/index.tsx:156 +#: src/components/layouts/Event/index.tsx:150 #: src/components/routes/event/EventDashboard/index.tsx:72 msgid "Are you sure you want to make this event public? This will make the event visible to the public" msgstr "Tem certeza de que deseja tornar este evento público? Isso tornará o evento visível ao público" @@ -1463,7 +1463,7 @@ msgstr "O código deve ter entre 3 e 50 caracteres" msgid "Code must be no more than 20 characters" msgstr "O código não deve ter mais de 20 caracteres" -#: src/components/layouts/OrganizerLayout/index.tsx:163 +#: src/components/layouts/OrganizerLayout/index.tsx:159 msgid "Collaborate with your team to create amazing events together." msgstr "Colabore com sua equipe para criar eventos incríveis juntos." @@ -1645,11 +1645,11 @@ msgstr "Confirme sua senha" msgid "Confirm Password" msgstr "Confirme sua senha" -#: src/components/layouts/Event/index.tsx:246 +#: src/components/layouts/Event/index.tsx:240 msgid "Confirm your email to access all features." msgstr "Confirme seu e-mail para acessar todos os recursos." -#: src/components/layouts/OrganizerLayout/index.tsx:296 +#: src/components/layouts/OrganizerLayout/index.tsx:292 msgid "Confirmation email sent! Please check your inbox." msgstr "E-mail de confirmação enviado! Verifique sua caixa de entrada." @@ -1677,8 +1677,8 @@ msgstr "Documentação de conexão" msgid "Connect payment processing" msgstr "Conectar processamento de pagamento" -#: src/components/layouts/OrganizerLayout/index.tsx:176 -#: src/components/layouts/OrganizerLayout/index.tsx:184 +#: src/components/layouts/OrganizerLayout/index.tsx:172 +#: src/components/layouts/OrganizerLayout/index.tsx:180 msgid "Connect Stripe" msgstr "Conectar faixa" @@ -1698,7 +1698,7 @@ msgstr "Conectar ao Stripe" msgid "Connect with Stripe" msgstr "Conecte-se com Stripe" -#: src/components/layouts/OrganizerLayout/index.tsx:177 +#: src/components/layouts/OrganizerLayout/index.tsx:173 msgid "Connect your Stripe account to accept payments for tickets and products." msgstr "Conecte sua conta Stripe para aceitar pagamentos de ingressos e produtos." @@ -1727,8 +1727,8 @@ msgstr "Conectado ao Stripe" msgid "Connection Details" msgstr "Detalhes da conexão" -#: src/components/layouts/EventHomepage/index.tsx:555 -#: src/components/layouts/OrganizerHomepage/index.tsx:232 +#: src/components/layouts/EventHomepage/index.tsx:569 +#: src/components/layouts/OrganizerHomepage/index.tsx:245 msgid "Contact" msgstr "Contato" @@ -1973,7 +1973,7 @@ msgid "Create discounts, access codes for hidden tickets, and special offers." msgstr "Crie descontos, códigos de acesso para ingressos ocultos e ofertas especiais." #: src/components/common/NoEventsBlankSlate/index.tsx:27 -#: src/components/layouts/OrganizerLayout/index.tsx:153 +#: src/components/layouts/OrganizerLayout/index.tsx:149 #: src/components/routes/organizer/Events/index.tsx:62 #: src/components/routes/organizer/OrganizerDashboard/index.tsx:257 msgid "Create Event" @@ -2440,8 +2440,8 @@ msgid "Downloading Invoice" msgstr "A baixar fatura" #: src/components/common/EventCard/index.tsx:84 -#: src/components/layouts/Event/index.tsx:188 -#: src/components/layouts/OrganizerLayout/index.tsx:206 +#: src/components/layouts/Event/index.tsx:182 +#: src/components/layouts/OrganizerLayout/index.tsx:202 msgid "Draft" msgstr "Rascunho" @@ -2715,7 +2715,7 @@ msgstr "Visualização do e-mail" msgid "Email Templates" msgstr "Modelos de e-mail" -#: src/components/layouts/OrganizerLayout/index.tsx:275 +#: src/components/layouts/OrganizerLayout/index.tsx:271 msgid "Email Verification Required" msgstr "Verificação de e-mail necessária" @@ -2982,7 +2982,7 @@ msgstr "Evento não disponível" msgid "Event organizer name" msgstr "Nome do organizador do evento" -#: src/components/layouts/Event/index.tsx:235 +#: src/components/layouts/Event/index.tsx:229 msgid "Event Page" msgstr "Página do Evento" @@ -2993,7 +2993,7 @@ msgstr "Configurações do evento" #: src/components/common/EventCard/index.tsx:70 #: src/components/common/StatusToggle/index.tsx:59 -#: src/components/layouts/Event/index.tsx:167 +#: src/components/layouts/Event/index.tsx:161 #: src/components/routes/event/EventDashboard/index.tsx:83 #: src/components/routes/event/GettingStarted/index.tsx:63 msgid "Event status update failed. Please try again later" @@ -3001,7 +3001,7 @@ msgstr "Falha na atualização do status do evento. Por favor, tente novamente m #: src/components/common/EventCard/index.tsx:67 #: src/components/common/StatusToggle/index.tsx:51 -#: src/components/layouts/Event/index.tsx:164 +#: src/components/layouts/Event/index.tsx:158 #: src/components/routes/event/EventDashboard/index.tsx:80 #: src/components/routes/event/GettingStarted/index.tsx:60 msgid "Event status updated" @@ -3041,7 +3041,6 @@ msgstr "Local do Evento" #: src/components/common/AdminAccountsTable/index.tsx:74 #: src/components/layouts/Admin/index.tsx:16 #: src/components/layouts/OrganizerLayout/index.tsx:81 -#: src/components/layouts/OrganizerLayout/index.tsx:141 #: src/components/routes/admin/Accounts/AccountDetail/index.tsx:123 #: src/components/routes/admin/Events/index.tsx:77 #: src/components/routes/organizer/Events/index.tsx:43 @@ -3473,7 +3472,7 @@ msgstr "Gerar código" msgid "German" msgstr "alemão" -#: src/components/layouts/EventHomepage/index.tsx:392 +#: src/components/layouts/EventHomepage/index.tsx:406 msgid "Get Directions" msgstr "Obter direções" @@ -3485,7 +3484,7 @@ msgstr "" msgid "Get started" msgstr "" -#: src/components/layouts/EventHomepage/index.tsx:591 +#: src/components/layouts/EventHomepage/index.tsx:605 msgid "Get Tickets" msgstr "Obter Bilhetes" @@ -3678,8 +3677,8 @@ msgid "Highlighted products will have a different background color to make them msgstr "Os produtos destacados terão uma cor de fundo diferente para se destacarem na página do evento." #: src/components/layouts/Event/index.tsx:137 -msgid "Home" -msgstr "Início" +#~ msgid "Home" +#~ msgstr "Início" #: src/components/routes/event/HomepageDesigner/index.tsx:160 #: src/components/routes/organizer/OrganizerHomepageDesigner/index.tsx:170 @@ -3926,7 +3925,7 @@ msgstr "Convidar um membro da equipe" msgid "Invite Team Member" msgstr "Convidar membro da equipe" -#: src/components/layouts/OrganizerLayout/index.tsx:165 +#: src/components/layouts/OrganizerLayout/index.tsx:161 msgid "Invite Team Members" msgstr "Convidar membros da equipe" @@ -3938,7 +3937,7 @@ msgstr "" msgid "Invite User" msgstr "Convidar Usuário" -#: src/components/layouts/OrganizerLayout/index.tsx:162 +#: src/components/layouts/OrganizerLayout/index.tsx:158 msgid "Invite Your Team" msgstr "Convide sua equipe" @@ -3996,7 +3995,7 @@ msgstr "John" msgid "Johnson" msgstr "Johnson" -#: src/components/layouts/EventHomepage/index.tsx:320 +#: src/components/layouts/EventHomepage/index.tsx:334 msgid "Join from anywhere" msgstr "Participe de qualquer lugar" @@ -4130,8 +4129,8 @@ msgid "LinkedIn" msgstr "LinkedIn" #: src/components/common/EventCard/index.tsx:87 -#: src/components/layouts/Event/index.tsx:190 -#: src/components/layouts/OrganizerLayout/index.tsx:208 +#: src/components/layouts/Event/index.tsx:184 +#: src/components/layouts/OrganizerLayout/index.tsx:204 msgid "Live" msgstr "Ao vivo" @@ -4162,7 +4161,7 @@ msgid "Loading..." msgstr "Carregando..." #: src/components/common/AttendeeTicket/index.tsx:91 -#: src/components/layouts/EventHomepage/index.tsx:374 +#: src/components/layouts/EventHomepage/index.tsx:388 #: src/components/routes/event/Settings/index.tsx:35 #: src/components/routes/event/Settings/Sections/LocationSettings/index.tsx:84 #: src/components/routes/my-tickets/index.tsx:73 @@ -4597,7 +4596,7 @@ msgstr "Nenhum pedido ainda" msgid "No other organizers available" msgstr "Nenhum outro organizador disponível" -#: src/components/layouts/OrganizerHomepage/index.tsx:273 +#: src/components/layouts/OrganizerHomepage/index.tsx:286 msgid "No past events" msgstr "Nenhum evento passado" @@ -4665,7 +4664,7 @@ msgstr "Nenhum imposto ou taxa foi adicionado." msgid "No Tickets Found" msgstr "Nenhum ingresso encontrado" -#: src/components/layouts/OrganizerHomepage/index.tsx:273 +#: src/components/layouts/OrganizerHomepage/index.tsx:286 msgid "No upcoming events" msgstr "Nenhum evento futuro" @@ -4816,7 +4815,7 @@ msgid "Online" msgstr "Online" #: src/components/layouts/EventHomepage/EventInformation/index.tsx:71 -#: src/components/layouts/EventHomepage/index.tsx:318 +#: src/components/layouts/EventHomepage/index.tsx:332 #: src/components/layouts/OrganizerHomepage/EventCard/index.tsx:167 msgid "Online Event" msgstr "Evento online" @@ -5099,7 +5098,7 @@ msgstr "Nome da organização" #: src/components/common/AdminEventsTable/index.tsx:85 #: src/components/common/AttendeeTicket/index.tsx:82 -#: src/components/layouts/EventHomepage/index.tsx:467 +#: src/components/layouts/EventHomepage/index.tsx:481 #: src/components/modals/EditUserModal/index.tsx:55 #: src/components/modals/InviteUserModal/index.tsx:47 #: src/components/routes/events/Dashboard/index.tsx:193 @@ -5252,12 +5251,12 @@ msgstr "Redefinição de senha com sucesso. Por favor faça login com sua nova s msgid "Passwords are not the same" msgstr "senhas nao sao as mesmas" -#: src/components/layouts/OrganizerHomepage/index.tsx:265 +#: src/components/layouts/OrganizerHomepage/index.tsx:278 #: src/components/routes/organizer/Reports/EventsPerformanceReport/index.tsx:30 msgid "Past" msgstr "Passado" -#: src/components/layouts/OrganizerHomepage/index.tsx:252 +#: src/components/layouts/OrganizerHomepage/index.tsx:265 msgid "Past Events" msgstr "Eventos passados" @@ -5583,8 +5582,8 @@ msgstr "Pré-visualização" msgid "Preview checkout form" msgstr "Pré-visualizar formulário de checkout" -#: src/components/layouts/Event/index.tsx:228 -#: src/components/layouts/Event/index.tsx:232 +#: src/components/layouts/Event/index.tsx:222 +#: src/components/layouts/Event/index.tsx:226 msgid "Preview Event page" msgstr "Pré-visualizar página do evento" @@ -5643,8 +5642,8 @@ msgstr "Imprimir ingressos" msgid "Print to PDF" msgstr "Imprimir para PDF" -#: src/components/layouts/EventHomepage/index.tsx:571 -#: src/components/layouts/OrganizerHomepage/index.tsx:315 +#: src/components/layouts/EventHomepage/index.tsx:585 +#: src/components/layouts/OrganizerHomepage/index.tsx:328 msgid "Privacy Policy" msgstr "Política de Privacidade" @@ -5990,11 +5989,11 @@ msgstr "Obrigatório" msgid "Resend code" msgstr "Reenviar código" -#: src/components/layouts/OrganizerLayout/index.tsx:292 +#: src/components/layouts/OrganizerLayout/index.tsx:288 msgid "Resend Confirmation Email" msgstr "Reenviar e-mail de confirmação" -#: src/components/layouts/Event/index.tsx:248 +#: src/components/layouts/Event/index.tsx:242 msgid "Resend email" msgstr "Reenviar e-mail" @@ -6556,8 +6555,8 @@ msgid "Setup & Design" msgstr "Configuração e design" #: src/components/common/ShareIcon/index.tsx:30 -#: src/components/layouts/EventHomepage/index.tsx:279 -#: src/components/layouts/OrganizerLayout/index.tsx:228 +#: src/components/layouts/EventHomepage/index.tsx:293 +#: src/components/layouts/OrganizerLayout/index.tsx:224 #: src/components/modals/ShareModal/index.tsx:37 #: src/components/modals/ShareModal/index.tsx:165 #: src/components/modals/ShareModal/index.tsx:186 @@ -6569,13 +6568,13 @@ msgstr "Compartilhar" msgid "Share Affiliate Link" msgstr "Partilhar link de afiliado" +#: src/components/layouts/Event/index.tsx:200 #: src/components/layouts/Event/index.tsx:206 -#: src/components/layouts/Event/index.tsx:212 msgid "Share Event" msgstr "Compartilhar evento" -#: src/components/layouts/OrganizerLayout/index.tsx:225 -#: src/components/layouts/OrganizerLayout/index.tsx:260 +#: src/components/layouts/OrganizerLayout/index.tsx:221 +#: src/components/layouts/OrganizerLayout/index.tsx:256 msgid "Share Organizer Page" msgstr "Compartilhar página do organizador" @@ -6673,7 +6672,7 @@ msgid "Sold out" msgstr "Vendido" #: src/components/common/ProductsTable/SortableProduct/index.tsx:81 -#: src/components/layouts/EventHomepage/index.tsx:142 +#: src/components/layouts/EventHomepage/index.tsx:143 msgid "Sold Out" msgstr "Vendido" @@ -7101,8 +7100,8 @@ msgstr "Modelo excluído com sucesso" msgid "Template saved successfully" msgstr "Modelo salvo com sucesso" -#: src/components/layouts/EventHomepage/index.tsx:577 -#: src/components/layouts/OrganizerHomepage/index.tsx:322 +#: src/components/layouts/EventHomepage/index.tsx:591 +#: src/components/layouts/OrganizerHomepage/index.tsx:335 msgid "Terms of Service" msgstr "Termos de serviço" @@ -7529,7 +7528,7 @@ msgstr "Bilhetes" msgid "Tickets & Products" msgstr "Ingressos e produtos" -#: src/components/layouts/EventHomepage/index.tsx:149 +#: src/components/layouts/EventHomepage/index.tsx:150 msgid "Tickets Available" msgstr "Bilhetes disponíveis" @@ -7799,12 +7798,12 @@ msgstr "Despublicar Evento" #: src/components/common/EventsDashboardStatusButtons/index.tsx:20 #: src/components/common/EventStatusBadge/index.tsx:16 -#: src/components/layouts/OrganizerHomepage/index.tsx:259 +#: src/components/layouts/OrganizerHomepage/index.tsx:272 #: src/components/routes/organizer/Reports/EventsPerformanceReport/index.tsx:33 msgid "Upcoming" msgstr "Por vir" -#: src/components/layouts/OrganizerHomepage/index.tsx:252 +#: src/components/layouts/OrganizerHomepage/index.tsx:265 #: src/components/routes/organizer/OrganizerDashboard/index.tsx:232 msgid "Upcoming Events" msgstr "Próximos eventos" @@ -8046,7 +8045,7 @@ msgstr "Código de verificação" msgid "Verify Email" msgstr "Verificar email" -#: src/components/layouts/Event/index.tsx:245 +#: src/components/layouts/Event/index.tsx:239 msgid "Verify your email" msgstr "Verifique seu e-mail" @@ -8100,12 +8099,12 @@ msgstr "Ver logs" msgid "View map" msgstr "Ver mapa" -#: src/components/layouts/EventHomepage/index.tsx:433 +#: src/components/layouts/EventHomepage/index.tsx:447 msgid "View Map" msgstr "Ver mapa" #: src/components/layouts/EventHomepage/EventInformation/index.tsx:95 -#: src/components/layouts/EventHomepage/index.tsx:346 +#: src/components/layouts/EventHomepage/index.tsx:360 msgid "View on Google Maps" msgstr "Ver no Google Maps" @@ -8125,8 +8124,8 @@ msgstr "Ver detalhes do pedido" msgid "View order details, issue refunds, and resend confirmations." msgstr "Veja detalhes de pedidos, emita reembolsos e reenvie confirmações." -#: src/components/layouts/OrganizerLayout/index.tsx:243 -#: src/components/layouts/OrganizerLayout/index.tsx:246 +#: src/components/layouts/OrganizerLayout/index.tsx:239 +#: src/components/layouts/OrganizerLayout/index.tsx:242 msgid "View Organizer Homepage" msgstr "Ver página inicial do organizador" @@ -8590,7 +8589,7 @@ msgstr "Você deve criar um ticket antes de poder adicionar manualmente um parti msgid "You must have at least one price tier" msgstr "Você deve ter pelo menos uma faixa de preço" -#: src/components/layouts/OrganizerLayout/index.tsx:281 +#: src/components/layouts/OrganizerLayout/index.tsx:277 msgid "You must verify your email address before you can update the organizer status." msgstr "Você precisa verificar seu e-mail antes de atualizar o status do organizador." diff --git a/frontend/src/locales/ru.po b/frontend/src/locales/ru.po index 1cdb56f0e..fbc43663a 100644 --- a/frontend/src/locales/ru.po +++ b/frontend/src/locales/ru.po @@ -13,13 +13,13 @@ msgstr "" "Language-Team: \n" "Plural-Forms: \n" -#: src/components/layouts/Event/index.tsx:189 -#: src/components/layouts/OrganizerLayout/index.tsx:207 +#: src/components/layouts/Event/index.tsx:183 +#: src/components/layouts/OrganizerLayout/index.tsx:203 msgid "- Click to Publish" msgstr "- Нажмите, чтобы опубликовать" -#: src/components/layouts/Event/index.tsx:191 -#: src/components/layouts/OrganizerLayout/index.tsx:209 +#: src/components/layouts/Event/index.tsx:185 +#: src/components/layouts/OrganizerLayout/index.tsx:205 msgid "- Click to Unpublish" msgstr "- Нажмите, чтобы снять с публикации" @@ -273,7 +273,7 @@ msgstr "" msgid "Abandoned" msgstr "" -#: src/components/layouts/EventHomepage/index.tsx:361 +#: src/components/layouts/EventHomepage/index.tsx:375 msgid "About" msgstr "" @@ -464,7 +464,7 @@ msgstr "" #: src/components/common/AddEventToCalendarButton/index.tsx:14 #: src/components/common/AddToCalendarCTA/index.tsx:24 -#: src/components/layouts/EventHomepage/index.tsx:306 +#: src/components/layouts/EventHomepage/index.tsx:320 msgid "Add to Calendar" msgstr "" @@ -773,12 +773,12 @@ msgstr "" msgid "Are you sure you want to leave?" msgstr "" -#: src/components/layouts/Event/index.tsx:155 +#: src/components/layouts/Event/index.tsx:149 #: src/components/routes/event/EventDashboard/index.tsx:71 msgid "Are you sure you want to make this event draft? This will make the event invisible to the public" msgstr "" -#: src/components/layouts/Event/index.tsx:156 +#: src/components/layouts/Event/index.tsx:150 #: src/components/routes/event/EventDashboard/index.tsx:72 msgid "Are you sure you want to make this event public? This will make the event visible to the public" msgstr "" @@ -1463,7 +1463,7 @@ msgstr "" msgid "Code must be no more than 20 characters" msgstr "" -#: src/components/layouts/OrganizerLayout/index.tsx:163 +#: src/components/layouts/OrganizerLayout/index.tsx:159 msgid "Collaborate with your team to create amazing events together." msgstr "" @@ -1645,11 +1645,11 @@ msgstr "" msgid "Confirm Password" msgstr "" -#: src/components/layouts/Event/index.tsx:246 +#: src/components/layouts/Event/index.tsx:240 msgid "Confirm your email to access all features." msgstr "" -#: src/components/layouts/OrganizerLayout/index.tsx:296 +#: src/components/layouts/OrganizerLayout/index.tsx:292 msgid "Confirmation email sent! Please check your inbox." msgstr "" @@ -1677,8 +1677,8 @@ msgstr "" msgid "Connect payment processing" msgstr "" -#: src/components/layouts/OrganizerLayout/index.tsx:176 -#: src/components/layouts/OrganizerLayout/index.tsx:184 +#: src/components/layouts/OrganizerLayout/index.tsx:172 +#: src/components/layouts/OrganizerLayout/index.tsx:180 msgid "Connect Stripe" msgstr "" @@ -1698,7 +1698,7 @@ msgstr "" msgid "Connect with Stripe" msgstr "" -#: src/components/layouts/OrganizerLayout/index.tsx:177 +#: src/components/layouts/OrganizerLayout/index.tsx:173 msgid "Connect your Stripe account to accept payments for tickets and products." msgstr "" @@ -1727,8 +1727,8 @@ msgstr "" msgid "Connection Details" msgstr "" -#: src/components/layouts/EventHomepage/index.tsx:555 -#: src/components/layouts/OrganizerHomepage/index.tsx:232 +#: src/components/layouts/EventHomepage/index.tsx:569 +#: src/components/layouts/OrganizerHomepage/index.tsx:245 msgid "Contact" msgstr "" @@ -1973,7 +1973,7 @@ msgid "Create discounts, access codes for hidden tickets, and special offers." msgstr "" #: src/components/common/NoEventsBlankSlate/index.tsx:27 -#: src/components/layouts/OrganizerLayout/index.tsx:153 +#: src/components/layouts/OrganizerLayout/index.tsx:149 #: src/components/routes/organizer/Events/index.tsx:62 #: src/components/routes/organizer/OrganizerDashboard/index.tsx:257 msgid "Create Event" @@ -2440,8 +2440,8 @@ msgid "Downloading Invoice" msgstr "" #: src/components/common/EventCard/index.tsx:84 -#: src/components/layouts/Event/index.tsx:188 -#: src/components/layouts/OrganizerLayout/index.tsx:206 +#: src/components/layouts/Event/index.tsx:182 +#: src/components/layouts/OrganizerLayout/index.tsx:202 msgid "Draft" msgstr "" @@ -2713,7 +2713,7 @@ msgstr "" msgid "Email Templates" msgstr "" -#: src/components/layouts/OrganizerLayout/index.tsx:275 +#: src/components/layouts/OrganizerLayout/index.tsx:271 msgid "Email Verification Required" msgstr "" @@ -2980,7 +2980,7 @@ msgstr "" msgid "Event organizer name" msgstr "" -#: src/components/layouts/Event/index.tsx:235 +#: src/components/layouts/Event/index.tsx:229 msgid "Event Page" msgstr "" @@ -2991,7 +2991,7 @@ msgstr "" #: src/components/common/EventCard/index.tsx:70 #: src/components/common/StatusToggle/index.tsx:59 -#: src/components/layouts/Event/index.tsx:167 +#: src/components/layouts/Event/index.tsx:161 #: src/components/routes/event/EventDashboard/index.tsx:83 #: src/components/routes/event/GettingStarted/index.tsx:63 msgid "Event status update failed. Please try again later" @@ -2999,7 +2999,7 @@ msgstr "" #: src/components/common/EventCard/index.tsx:67 #: src/components/common/StatusToggle/index.tsx:51 -#: src/components/layouts/Event/index.tsx:164 +#: src/components/layouts/Event/index.tsx:158 #: src/components/routes/event/EventDashboard/index.tsx:80 #: src/components/routes/event/GettingStarted/index.tsx:60 msgid "Event status updated" @@ -3039,7 +3039,6 @@ msgstr "" #: src/components/common/AdminAccountsTable/index.tsx:74 #: src/components/layouts/Admin/index.tsx:16 #: src/components/layouts/OrganizerLayout/index.tsx:81 -#: src/components/layouts/OrganizerLayout/index.tsx:141 #: src/components/routes/admin/Accounts/AccountDetail/index.tsx:123 #: src/components/routes/admin/Events/index.tsx:77 #: src/components/routes/organizer/Events/index.tsx:43 @@ -3471,7 +3470,7 @@ msgstr "" msgid "German" msgstr "" -#: src/components/layouts/EventHomepage/index.tsx:392 +#: src/components/layouts/EventHomepage/index.tsx:406 msgid "Get Directions" msgstr "" @@ -3483,7 +3482,7 @@ msgstr "" msgid "Get started" msgstr "" -#: src/components/layouts/EventHomepage/index.tsx:591 +#: src/components/layouts/EventHomepage/index.tsx:605 msgid "Get Tickets" msgstr "" @@ -3676,8 +3675,8 @@ msgid "Highlighted products will have a different background color to make them msgstr "" #: src/components/layouts/Event/index.tsx:137 -msgid "Home" -msgstr "" +#~ msgid "Home" +#~ msgstr "" #: src/components/routes/event/HomepageDesigner/index.tsx:160 #: src/components/routes/organizer/OrganizerHomepageDesigner/index.tsx:170 @@ -3924,7 +3923,7 @@ msgstr "" msgid "Invite Team Member" msgstr "" -#: src/components/layouts/OrganizerLayout/index.tsx:165 +#: src/components/layouts/OrganizerLayout/index.tsx:161 msgid "Invite Team Members" msgstr "" @@ -3936,7 +3935,7 @@ msgstr "" msgid "Invite User" msgstr "" -#: src/components/layouts/OrganizerLayout/index.tsx:162 +#: src/components/layouts/OrganizerLayout/index.tsx:158 msgid "Invite Your Team" msgstr "" @@ -3994,7 +3993,7 @@ msgstr "" msgid "Johnson" msgstr "" -#: src/components/layouts/EventHomepage/index.tsx:320 +#: src/components/layouts/EventHomepage/index.tsx:334 msgid "Join from anywhere" msgstr "" @@ -4128,8 +4127,8 @@ msgid "LinkedIn" msgstr "" #: src/components/common/EventCard/index.tsx:87 -#: src/components/layouts/Event/index.tsx:190 -#: src/components/layouts/OrganizerLayout/index.tsx:208 +#: src/components/layouts/Event/index.tsx:184 +#: src/components/layouts/OrganizerLayout/index.tsx:204 msgid "Live" msgstr "" @@ -4160,7 +4159,7 @@ msgid "Loading..." msgstr "" #: src/components/common/AttendeeTicket/index.tsx:91 -#: src/components/layouts/EventHomepage/index.tsx:374 +#: src/components/layouts/EventHomepage/index.tsx:388 #: src/components/routes/event/Settings/index.tsx:35 #: src/components/routes/event/Settings/Sections/LocationSettings/index.tsx:84 #: src/components/routes/my-tickets/index.tsx:73 @@ -4595,7 +4594,7 @@ msgstr "" msgid "No other organizers available" msgstr "" -#: src/components/layouts/OrganizerHomepage/index.tsx:273 +#: src/components/layouts/OrganizerHomepage/index.tsx:286 msgid "No past events" msgstr "" @@ -4663,7 +4662,7 @@ msgstr "" msgid "No Tickets Found" msgstr "" -#: src/components/layouts/OrganizerHomepage/index.tsx:273 +#: src/components/layouts/OrganizerHomepage/index.tsx:286 msgid "No upcoming events" msgstr "" @@ -4814,7 +4813,7 @@ msgid "Online" msgstr "" #: src/components/layouts/EventHomepage/EventInformation/index.tsx:71 -#: src/components/layouts/EventHomepage/index.tsx:318 +#: src/components/layouts/EventHomepage/index.tsx:332 #: src/components/layouts/OrganizerHomepage/EventCard/index.tsx:167 msgid "Online Event" msgstr "" @@ -5097,7 +5096,7 @@ msgstr "" #: src/components/common/AdminEventsTable/index.tsx:85 #: src/components/common/AttendeeTicket/index.tsx:82 -#: src/components/layouts/EventHomepage/index.tsx:467 +#: src/components/layouts/EventHomepage/index.tsx:481 #: src/components/modals/EditUserModal/index.tsx:55 #: src/components/modals/InviteUserModal/index.tsx:47 #: src/components/routes/events/Dashboard/index.tsx:193 @@ -5250,12 +5249,12 @@ msgstr "" msgid "Passwords are not the same" msgstr "" -#: src/components/layouts/OrganizerHomepage/index.tsx:265 +#: src/components/layouts/OrganizerHomepage/index.tsx:278 #: src/components/routes/organizer/Reports/EventsPerformanceReport/index.tsx:30 msgid "Past" msgstr "" -#: src/components/layouts/OrganizerHomepage/index.tsx:252 +#: src/components/layouts/OrganizerHomepage/index.tsx:265 msgid "Past Events" msgstr "" @@ -5581,8 +5580,8 @@ msgstr "" msgid "Preview checkout form" msgstr "" -#: src/components/layouts/Event/index.tsx:228 -#: src/components/layouts/Event/index.tsx:232 +#: src/components/layouts/Event/index.tsx:222 +#: src/components/layouts/Event/index.tsx:226 msgid "Preview Event page" msgstr "" @@ -5641,8 +5640,8 @@ msgstr "" msgid "Print to PDF" msgstr "" -#: src/components/layouts/EventHomepage/index.tsx:571 -#: src/components/layouts/OrganizerHomepage/index.tsx:315 +#: src/components/layouts/EventHomepage/index.tsx:585 +#: src/components/layouts/OrganizerHomepage/index.tsx:328 msgid "Privacy Policy" msgstr "" @@ -5988,11 +5987,11 @@ msgstr "" msgid "Resend code" msgstr "" -#: src/components/layouts/OrganizerLayout/index.tsx:292 +#: src/components/layouts/OrganizerLayout/index.tsx:288 msgid "Resend Confirmation Email" msgstr "" -#: src/components/layouts/Event/index.tsx:248 +#: src/components/layouts/Event/index.tsx:242 msgid "Resend email" msgstr "" @@ -6554,8 +6553,8 @@ msgid "Setup & Design" msgstr "" #: src/components/common/ShareIcon/index.tsx:30 -#: src/components/layouts/EventHomepage/index.tsx:279 -#: src/components/layouts/OrganizerLayout/index.tsx:228 +#: src/components/layouts/EventHomepage/index.tsx:293 +#: src/components/layouts/OrganizerLayout/index.tsx:224 #: src/components/modals/ShareModal/index.tsx:37 #: src/components/modals/ShareModal/index.tsx:165 #: src/components/modals/ShareModal/index.tsx:186 @@ -6567,13 +6566,13 @@ msgstr "" msgid "Share Affiliate Link" msgstr "" +#: src/components/layouts/Event/index.tsx:200 #: src/components/layouts/Event/index.tsx:206 -#: src/components/layouts/Event/index.tsx:212 msgid "Share Event" msgstr "" -#: src/components/layouts/OrganizerLayout/index.tsx:225 -#: src/components/layouts/OrganizerLayout/index.tsx:260 +#: src/components/layouts/OrganizerLayout/index.tsx:221 +#: src/components/layouts/OrganizerLayout/index.tsx:256 msgid "Share Organizer Page" msgstr "" @@ -6671,7 +6670,7 @@ msgid "Sold out" msgstr "" #: src/components/common/ProductsTable/SortableProduct/index.tsx:81 -#: src/components/layouts/EventHomepage/index.tsx:142 +#: src/components/layouts/EventHomepage/index.tsx:143 msgid "Sold Out" msgstr "" @@ -7099,8 +7098,8 @@ msgstr "" msgid "Template saved successfully" msgstr "" -#: src/components/layouts/EventHomepage/index.tsx:577 -#: src/components/layouts/OrganizerHomepage/index.tsx:322 +#: src/components/layouts/EventHomepage/index.tsx:591 +#: src/components/layouts/OrganizerHomepage/index.tsx:335 msgid "Terms of Service" msgstr "" @@ -7527,7 +7526,7 @@ msgstr "" msgid "Tickets & Products" msgstr "" -#: src/components/layouts/EventHomepage/index.tsx:149 +#: src/components/layouts/EventHomepage/index.tsx:150 msgid "Tickets Available" msgstr "" @@ -7797,12 +7796,12 @@ msgstr "" #: src/components/common/EventsDashboardStatusButtons/index.tsx:20 #: src/components/common/EventStatusBadge/index.tsx:16 -#: src/components/layouts/OrganizerHomepage/index.tsx:259 +#: src/components/layouts/OrganizerHomepage/index.tsx:272 #: src/components/routes/organizer/Reports/EventsPerformanceReport/index.tsx:33 msgid "Upcoming" msgstr "" -#: src/components/layouts/OrganizerHomepage/index.tsx:252 +#: src/components/layouts/OrganizerHomepage/index.tsx:265 #: src/components/routes/organizer/OrganizerDashboard/index.tsx:232 msgid "Upcoming Events" msgstr "" @@ -8044,7 +8043,7 @@ msgstr "" msgid "Verify Email" msgstr "" -#: src/components/layouts/Event/index.tsx:245 +#: src/components/layouts/Event/index.tsx:239 msgid "Verify your email" msgstr "" @@ -8098,12 +8097,12 @@ msgstr "" msgid "View map" msgstr "" -#: src/components/layouts/EventHomepage/index.tsx:433 +#: src/components/layouts/EventHomepage/index.tsx:447 msgid "View Map" msgstr "" #: src/components/layouts/EventHomepage/EventInformation/index.tsx:95 -#: src/components/layouts/EventHomepage/index.tsx:346 +#: src/components/layouts/EventHomepage/index.tsx:360 msgid "View on Google Maps" msgstr "" @@ -8123,8 +8122,8 @@ msgstr "" msgid "View order details, issue refunds, and resend confirmations." msgstr "" -#: src/components/layouts/OrganizerLayout/index.tsx:243 -#: src/components/layouts/OrganizerLayout/index.tsx:246 +#: src/components/layouts/OrganizerLayout/index.tsx:239 +#: src/components/layouts/OrganizerLayout/index.tsx:242 msgid "View Organizer Homepage" msgstr "" @@ -8588,7 +8587,7 @@ msgstr "" msgid "You must have at least one price tier" msgstr "" -#: src/components/layouts/OrganizerLayout/index.tsx:281 +#: src/components/layouts/OrganizerLayout/index.tsx:277 msgid "You must verify your email address before you can update the organizer status." msgstr "" diff --git a/frontend/src/locales/tr.po b/frontend/src/locales/tr.po index 3d4f82d65..851fd20d5 100644 --- a/frontend/src/locales/tr.po +++ b/frontend/src/locales/tr.po @@ -13,13 +13,13 @@ msgstr "" "Report-Msgid-Bugs-To: \n" "Plural-Forms: \n" -#: src/components/layouts/Event/index.tsx:189 -#: src/components/layouts/OrganizerLayout/index.tsx:207 +#: src/components/layouts/Event/index.tsx:183 +#: src/components/layouts/OrganizerLayout/index.tsx:203 msgid "- Click to Publish" msgstr "- Yayınlamak için Tıklayın" -#: src/components/layouts/Event/index.tsx:191 -#: src/components/layouts/OrganizerLayout/index.tsx:209 +#: src/components/layouts/Event/index.tsx:185 +#: src/components/layouts/OrganizerLayout/index.tsx:205 msgid "- Click to Unpublish" msgstr "- Yayından Kaldırmak için Tıklayın" @@ -273,7 +273,7 @@ msgstr "KDV veya ÖTV gibi standart vergi" msgid "Abandoned" msgstr "Terk edildi" -#: src/components/layouts/EventHomepage/index.tsx:361 +#: src/components/layouts/EventHomepage/index.tsx:375 msgid "About" msgstr "Hakkında" @@ -464,7 +464,7 @@ msgstr "Kademe ekle" #: src/components/common/AddEventToCalendarButton/index.tsx:14 #: src/components/common/AddToCalendarCTA/index.tsx:24 -#: src/components/layouts/EventHomepage/index.tsx:306 +#: src/components/layouts/EventHomepage/index.tsx:320 msgid "Add to Calendar" msgstr "Takvime Ekle" @@ -773,12 +773,12 @@ msgstr "Bu webhook'u silmek istediğinizden emin misiniz?" msgid "Are you sure you want to leave?" msgstr "Ayrılmak istediğinizden emin misiniz?" -#: src/components/layouts/Event/index.tsx:155 +#: src/components/layouts/Event/index.tsx:149 #: src/components/routes/event/EventDashboard/index.tsx:71 msgid "Are you sure you want to make this event draft? This will make the event invisible to the public" msgstr "Bu etkinliği taslak yapmak istediğinizden emin misiniz? Bu işlem etkinliği halka görünmez yapacaktır" -#: src/components/layouts/Event/index.tsx:156 +#: src/components/layouts/Event/index.tsx:150 #: src/components/routes/event/EventDashboard/index.tsx:72 msgid "Are you sure you want to make this event public? This will make the event visible to the public" msgstr "Bu etkinliği herkese açık yapmak istediğinizden emin misiniz? Bu işlem etkinliği halka görünür yapacaktır" @@ -1463,7 +1463,7 @@ msgstr "Kod 3 ile 50 karakter arasında olmalıdır" msgid "Code must be no more than 20 characters" msgstr "Kod en fazla 20 karakter olmalıdır" -#: src/components/layouts/OrganizerLayout/index.tsx:163 +#: src/components/layouts/OrganizerLayout/index.tsx:159 msgid "Collaborate with your team to create amazing events together." msgstr "Birlikte harika etkinlikler oluşturmak için ekibinizle işbirliği yapın." @@ -1645,11 +1645,11 @@ msgstr "Şifreyi onayla" msgid "Confirm Password" msgstr "Şifreyi Onayla" -#: src/components/layouts/Event/index.tsx:246 +#: src/components/layouts/Event/index.tsx:240 msgid "Confirm your email to access all features." msgstr "Tüm özelliklere erişmek için e-postanızı onaylayın." -#: src/components/layouts/OrganizerLayout/index.tsx:296 +#: src/components/layouts/OrganizerLayout/index.tsx:292 msgid "Confirmation email sent! Please check your inbox." msgstr "Onay e-postası gönderildi! Lütfen gelen kutunuzu kontrol edin." @@ -1677,8 +1677,8 @@ msgstr "Dokümantasyonu Bağla" msgid "Connect payment processing" msgstr "Ödeme işlemeyi bağla" -#: src/components/layouts/OrganizerLayout/index.tsx:176 -#: src/components/layouts/OrganizerLayout/index.tsx:184 +#: src/components/layouts/OrganizerLayout/index.tsx:172 +#: src/components/layouts/OrganizerLayout/index.tsx:180 msgid "Connect Stripe" msgstr "Stripe'ı Bağla" @@ -1698,7 +1698,7 @@ msgstr "Stripe'a Bağlan" msgid "Connect with Stripe" msgstr "Stripe ile Bağlan" -#: src/components/layouts/OrganizerLayout/index.tsx:177 +#: src/components/layouts/OrganizerLayout/index.tsx:173 msgid "Connect your Stripe account to accept payments for tickets and products." msgstr "Bilet ve ürünler için ödeme almak üzere Stripe hesabınızı bağlayın." @@ -1727,8 +1727,8 @@ msgstr "Stripe'a Bağlandı" msgid "Connection Details" msgstr "Bağlantı Detayları" -#: src/components/layouts/EventHomepage/index.tsx:555 -#: src/components/layouts/OrganizerHomepage/index.tsx:232 +#: src/components/layouts/EventHomepage/index.tsx:569 +#: src/components/layouts/OrganizerHomepage/index.tsx:245 msgid "Contact" msgstr "İletişim" @@ -1973,7 +1973,7 @@ msgid "Create discounts, access codes for hidden tickets, and special offers." msgstr "" #: src/components/common/NoEventsBlankSlate/index.tsx:27 -#: src/components/layouts/OrganizerLayout/index.tsx:153 +#: src/components/layouts/OrganizerLayout/index.tsx:149 #: src/components/routes/organizer/Events/index.tsx:62 #: src/components/routes/organizer/OrganizerDashboard/index.tsx:257 msgid "Create Event" @@ -2440,8 +2440,8 @@ msgid "Downloading Invoice" msgstr "Fatura İndiriliyor" #: src/components/common/EventCard/index.tsx:84 -#: src/components/layouts/Event/index.tsx:188 -#: src/components/layouts/OrganizerLayout/index.tsx:206 +#: src/components/layouts/Event/index.tsx:182 +#: src/components/layouts/OrganizerLayout/index.tsx:202 msgid "Draft" msgstr "Taslak" @@ -2713,7 +2713,7 @@ msgstr "E-posta Önizlemesi" msgid "Email Templates" msgstr "E-posta Şablonları" -#: src/components/layouts/OrganizerLayout/index.tsx:275 +#: src/components/layouts/OrganizerLayout/index.tsx:271 msgid "Email Verification Required" msgstr "E-posta Doğrulaması Gerekli" @@ -2980,7 +2980,7 @@ msgstr "Etkinlik Mevcut Değil" msgid "Event organizer name" msgstr "Etkinlik organizatör adı" -#: src/components/layouts/Event/index.tsx:235 +#: src/components/layouts/Event/index.tsx:229 msgid "Event Page" msgstr "Etkinlik Sayfası" @@ -2991,7 +2991,7 @@ msgstr "Etkinlik ayarları" #: src/components/common/EventCard/index.tsx:70 #: src/components/common/StatusToggle/index.tsx:59 -#: src/components/layouts/Event/index.tsx:167 +#: src/components/layouts/Event/index.tsx:161 #: src/components/routes/event/EventDashboard/index.tsx:83 #: src/components/routes/event/GettingStarted/index.tsx:63 msgid "Event status update failed. Please try again later" @@ -2999,7 +2999,7 @@ msgstr "Etkinlik durumu güncellenemedi. Lütfen daha sonra tekrar deneyin" #: src/components/common/EventCard/index.tsx:67 #: src/components/common/StatusToggle/index.tsx:51 -#: src/components/layouts/Event/index.tsx:164 +#: src/components/layouts/Event/index.tsx:158 #: src/components/routes/event/EventDashboard/index.tsx:80 #: src/components/routes/event/GettingStarted/index.tsx:60 msgid "Event status updated" @@ -3039,7 +3039,6 @@ msgstr "Etkinlik Mekanı" #: src/components/common/AdminAccountsTable/index.tsx:74 #: src/components/layouts/Admin/index.tsx:16 #: src/components/layouts/OrganizerLayout/index.tsx:81 -#: src/components/layouts/OrganizerLayout/index.tsx:141 #: src/components/routes/admin/Accounts/AccountDetail/index.tsx:123 #: src/components/routes/admin/Events/index.tsx:77 #: src/components/routes/organizer/Events/index.tsx:43 @@ -3471,7 +3470,7 @@ msgstr "Kod oluştur" msgid "German" msgstr "Almanca" -#: src/components/layouts/EventHomepage/index.tsx:392 +#: src/components/layouts/EventHomepage/index.tsx:406 msgid "Get Directions" msgstr "Yol Tarifi Al" @@ -3483,7 +3482,7 @@ msgstr "" msgid "Get started" msgstr "" -#: src/components/layouts/EventHomepage/index.tsx:591 +#: src/components/layouts/EventHomepage/index.tsx:605 msgid "Get Tickets" msgstr "Bilet Al" @@ -3676,8 +3675,8 @@ msgid "Highlighted products will have a different background color to make them msgstr "" #: src/components/layouts/Event/index.tsx:137 -msgid "Home" -msgstr "Ana Sayfa" +#~ msgid "Home" +#~ msgstr "Ana Sayfa" #: src/components/routes/event/HomepageDesigner/index.tsx:160 #: src/components/routes/organizer/OrganizerHomepageDesigner/index.tsx:170 @@ -3924,7 +3923,7 @@ msgstr "Bir ekip üyesi davet et" msgid "Invite Team Member" msgstr "Ekip Üyesi Davet Et" -#: src/components/layouts/OrganizerLayout/index.tsx:165 +#: src/components/layouts/OrganizerLayout/index.tsx:161 msgid "Invite Team Members" msgstr "Ekip Üyelerini Davet Et" @@ -3936,7 +3935,7 @@ msgstr "" msgid "Invite User" msgstr "Kullanıcı Davet Et" -#: src/components/layouts/OrganizerLayout/index.tsx:162 +#: src/components/layouts/OrganizerLayout/index.tsx:158 msgid "Invite Your Team" msgstr "Ekibinizi Davet Edin" @@ -3994,7 +3993,7 @@ msgstr "John" msgid "Johnson" msgstr "Johnson" -#: src/components/layouts/EventHomepage/index.tsx:320 +#: src/components/layouts/EventHomepage/index.tsx:334 msgid "Join from anywhere" msgstr "Her yerden katılın" @@ -4128,8 +4127,8 @@ msgid "LinkedIn" msgstr "LinkedIn" #: src/components/common/EventCard/index.tsx:87 -#: src/components/layouts/Event/index.tsx:190 -#: src/components/layouts/OrganizerLayout/index.tsx:208 +#: src/components/layouts/Event/index.tsx:184 +#: src/components/layouts/OrganizerLayout/index.tsx:204 msgid "Live" msgstr "Canlı" @@ -4160,7 +4159,7 @@ msgid "Loading..." msgstr "Yükleniyor..." #: src/components/common/AttendeeTicket/index.tsx:91 -#: src/components/layouts/EventHomepage/index.tsx:374 +#: src/components/layouts/EventHomepage/index.tsx:388 #: src/components/routes/event/Settings/index.tsx:35 #: src/components/routes/event/Settings/Sections/LocationSettings/index.tsx:84 #: src/components/routes/my-tickets/index.tsx:73 @@ -4595,7 +4594,7 @@ msgstr "Henüz sipariş yok" msgid "No other organizers available" msgstr "Başka organizatör mevcut değil" -#: src/components/layouts/OrganizerHomepage/index.tsx:273 +#: src/components/layouts/OrganizerHomepage/index.tsx:286 msgid "No past events" msgstr "Geçmiş etkinlik yok" @@ -4663,7 +4662,7 @@ msgstr "Hiçbir Vergi veya Ücret eklenmemiş." msgid "No Tickets Found" msgstr "Bilet Bulunamadı" -#: src/components/layouts/OrganizerHomepage/index.tsx:273 +#: src/components/layouts/OrganizerHomepage/index.tsx:286 msgid "No upcoming events" msgstr "Yaklaşan etkinlik yok" @@ -4814,7 +4813,7 @@ msgid "Online" msgstr "Çevrimiçi" #: src/components/layouts/EventHomepage/EventInformation/index.tsx:71 -#: src/components/layouts/EventHomepage/index.tsx:318 +#: src/components/layouts/EventHomepage/index.tsx:332 #: src/components/layouts/OrganizerHomepage/EventCard/index.tsx:167 msgid "Online Event" msgstr "Çevrimiçi Etkinlik" @@ -5097,7 +5096,7 @@ msgstr "Organizasyon Adı" #: src/components/common/AdminEventsTable/index.tsx:85 #: src/components/common/AttendeeTicket/index.tsx:82 -#: src/components/layouts/EventHomepage/index.tsx:467 +#: src/components/layouts/EventHomepage/index.tsx:481 #: src/components/modals/EditUserModal/index.tsx:55 #: src/components/modals/InviteUserModal/index.tsx:47 #: src/components/routes/events/Dashboard/index.tsx:193 @@ -5250,12 +5249,12 @@ msgstr "Şifre başarıyla sıfırlandı. Lütfen yeni şifrenizle giriş yapın msgid "Passwords are not the same" msgstr "Şifreler aynı değil" -#: src/components/layouts/OrganizerHomepage/index.tsx:265 +#: src/components/layouts/OrganizerHomepage/index.tsx:278 #: src/components/routes/organizer/Reports/EventsPerformanceReport/index.tsx:30 msgid "Past" msgstr "Geçmiş" -#: src/components/layouts/OrganizerHomepage/index.tsx:252 +#: src/components/layouts/OrganizerHomepage/index.tsx:265 msgid "Past Events" msgstr "Geçmiş Etkinlikler" @@ -5581,8 +5580,8 @@ msgstr "Önizleme" msgid "Preview checkout form" msgstr "" -#: src/components/layouts/Event/index.tsx:228 -#: src/components/layouts/Event/index.tsx:232 +#: src/components/layouts/Event/index.tsx:222 +#: src/components/layouts/Event/index.tsx:226 msgid "Preview Event page" msgstr "Etkinlik sayfasını önizle" @@ -5641,8 +5640,8 @@ msgstr "Biletleri Yazdır" msgid "Print to PDF" msgstr "PDF'ye Yazdır" -#: src/components/layouts/EventHomepage/index.tsx:571 -#: src/components/layouts/OrganizerHomepage/index.tsx:315 +#: src/components/layouts/EventHomepage/index.tsx:585 +#: src/components/layouts/OrganizerHomepage/index.tsx:328 msgid "Privacy Policy" msgstr "Gizlilik Politikası" @@ -5990,11 +5989,11 @@ msgstr "" msgid "Resend code" msgstr "Kodu yeniden gönder" -#: src/components/layouts/OrganizerLayout/index.tsx:292 +#: src/components/layouts/OrganizerLayout/index.tsx:288 msgid "Resend Confirmation Email" msgstr "Onay E-postasını Yeniden Gönder" -#: src/components/layouts/Event/index.tsx:248 +#: src/components/layouts/Event/index.tsx:242 msgid "Resend email" msgstr "E-postayı yeniden gönder" @@ -6556,8 +6555,8 @@ msgid "Setup & Design" msgstr "" #: src/components/common/ShareIcon/index.tsx:30 -#: src/components/layouts/EventHomepage/index.tsx:279 -#: src/components/layouts/OrganizerLayout/index.tsx:228 +#: src/components/layouts/EventHomepage/index.tsx:293 +#: src/components/layouts/OrganizerLayout/index.tsx:224 #: src/components/modals/ShareModal/index.tsx:37 #: src/components/modals/ShareModal/index.tsx:165 #: src/components/modals/ShareModal/index.tsx:186 @@ -6569,13 +6568,13 @@ msgstr "Paylaş" msgid "Share Affiliate Link" msgstr "Bağlı Kuruluş Bağlantısını Paylaş" +#: src/components/layouts/Event/index.tsx:200 #: src/components/layouts/Event/index.tsx:206 -#: src/components/layouts/Event/index.tsx:212 msgid "Share Event" msgstr "Etkinliği Paylaş" -#: src/components/layouts/OrganizerLayout/index.tsx:225 -#: src/components/layouts/OrganizerLayout/index.tsx:260 +#: src/components/layouts/OrganizerLayout/index.tsx:221 +#: src/components/layouts/OrganizerLayout/index.tsx:256 msgid "Share Organizer Page" msgstr "Organizatör Sayfasını Paylaş" @@ -6673,7 +6672,7 @@ msgid "Sold out" msgstr "Tükendi" #: src/components/common/ProductsTable/SortableProduct/index.tsx:81 -#: src/components/layouts/EventHomepage/index.tsx:142 +#: src/components/layouts/EventHomepage/index.tsx:143 msgid "Sold Out" msgstr "Tükendi" @@ -7101,8 +7100,8 @@ msgstr "Şablon başarıyla silindi" msgid "Template saved successfully" msgstr "Şablon başarıyla kaydedildi" -#: src/components/layouts/EventHomepage/index.tsx:577 -#: src/components/layouts/OrganizerHomepage/index.tsx:322 +#: src/components/layouts/EventHomepage/index.tsx:591 +#: src/components/layouts/OrganizerHomepage/index.tsx:335 msgid "Terms of Service" msgstr "Hizmet Koşulları" @@ -7529,7 +7528,7 @@ msgstr "Biletler" msgid "Tickets & Products" msgstr "Biletler ve Ürünler" -#: src/components/layouts/EventHomepage/index.tsx:149 +#: src/components/layouts/EventHomepage/index.tsx:150 msgid "Tickets Available" msgstr "Mevcut Biletler" @@ -7799,12 +7798,12 @@ msgstr "Etkinliği Yayından Kaldır" #: src/components/common/EventsDashboardStatusButtons/index.tsx:20 #: src/components/common/EventStatusBadge/index.tsx:16 -#: src/components/layouts/OrganizerHomepage/index.tsx:259 +#: src/components/layouts/OrganizerHomepage/index.tsx:272 #: src/components/routes/organizer/Reports/EventsPerformanceReport/index.tsx:33 msgid "Upcoming" msgstr "Yaklaşan" -#: src/components/layouts/OrganizerHomepage/index.tsx:252 +#: src/components/layouts/OrganizerHomepage/index.tsx:265 #: src/components/routes/organizer/OrganizerDashboard/index.tsx:232 msgid "Upcoming Events" msgstr "Yaklaşan Etkinlikler" @@ -8046,7 +8045,7 @@ msgstr "Doğrulama kodu" msgid "Verify Email" msgstr "E-postayı Doğrula" -#: src/components/layouts/Event/index.tsx:245 +#: src/components/layouts/Event/index.tsx:239 msgid "Verify your email" msgstr "E-postanızı doğrulayın" @@ -8100,12 +8099,12 @@ msgstr "Günlükleri görüntüle" msgid "View map" msgstr "Haritayı görüntüle" -#: src/components/layouts/EventHomepage/index.tsx:433 +#: src/components/layouts/EventHomepage/index.tsx:447 msgid "View Map" msgstr "Haritayı Görüntüle" #: src/components/layouts/EventHomepage/EventInformation/index.tsx:95 -#: src/components/layouts/EventHomepage/index.tsx:346 +#: src/components/layouts/EventHomepage/index.tsx:360 msgid "View on Google Maps" msgstr "Google Haritalar'da görüntüle" @@ -8125,8 +8124,8 @@ msgstr "Sipariş Detaylarını Görüntüle" msgid "View order details, issue refunds, and resend confirmations." msgstr "" -#: src/components/layouts/OrganizerLayout/index.tsx:243 -#: src/components/layouts/OrganizerLayout/index.tsx:246 +#: src/components/layouts/OrganizerLayout/index.tsx:239 +#: src/components/layouts/OrganizerLayout/index.tsx:242 msgid "View Organizer Homepage" msgstr "Organizatör Ana Sayfasını Görüntüle" @@ -8590,7 +8589,7 @@ msgstr "Elle katılımcı ekleyebilmek için önce bir bilet oluşturmalısını msgid "You must have at least one price tier" msgstr "En az bir fiyat seviyeniz olmalı" -#: src/components/layouts/OrganizerLayout/index.tsx:281 +#: src/components/layouts/OrganizerLayout/index.tsx:277 msgid "You must verify your email address before you can update the organizer status." msgstr "" diff --git a/frontend/src/locales/vi.po b/frontend/src/locales/vi.po index 83f613b99..9bac21e5a 100644 --- a/frontend/src/locales/vi.po +++ b/frontend/src/locales/vi.po @@ -13,13 +13,13 @@ msgstr "" "Language-Team: \n" "Plural-Forms: \n" -#: src/components/layouts/Event/index.tsx:189 -#: src/components/layouts/OrganizerLayout/index.tsx:207 +#: src/components/layouts/Event/index.tsx:183 +#: src/components/layouts/OrganizerLayout/index.tsx:203 msgid "- Click to Publish" msgstr "- Nhấp để xuất bản" -#: src/components/layouts/Event/index.tsx:191 -#: src/components/layouts/OrganizerLayout/index.tsx:209 +#: src/components/layouts/Event/index.tsx:185 +#: src/components/layouts/OrganizerLayout/index.tsx:205 msgid "- Click to Unpublish" msgstr "- Nhấp để gỡ bỏ" @@ -273,7 +273,7 @@ msgstr "Thuế tiêu chuẩn, như VAT hoặc GST" msgid "Abandoned" msgstr "Đã bỏ" -#: src/components/layouts/EventHomepage/index.tsx:361 +#: src/components/layouts/EventHomepage/index.tsx:375 msgid "About" msgstr "Thông tin sự kiện" @@ -464,7 +464,7 @@ msgstr "Thêm tầng" #: src/components/common/AddEventToCalendarButton/index.tsx:14 #: src/components/common/AddToCalendarCTA/index.tsx:24 -#: src/components/layouts/EventHomepage/index.tsx:306 +#: src/components/layouts/EventHomepage/index.tsx:320 msgid "Add to Calendar" msgstr "Thêm vào lịch" @@ -773,12 +773,12 @@ msgstr "Bạn có chắc là bạn muốn xóa webhook này không?" msgid "Are you sure you want to leave?" msgstr "Bạn có chắc chắn muốn rời đi?" -#: src/components/layouts/Event/index.tsx:155 +#: src/components/layouts/Event/index.tsx:149 #: src/components/routes/event/EventDashboard/index.tsx:71 msgid "Are you sure you want to make this event draft? This will make the event invisible to the public" msgstr "Bạn có chắc chắn muốn chuyển sự kiện này thành bản nháp không? Điều này sẽ làm cho sự kiện không hiển thị với công chúng." -#: src/components/layouts/Event/index.tsx:156 +#: src/components/layouts/Event/index.tsx:150 #: src/components/routes/event/EventDashboard/index.tsx:72 msgid "Are you sure you want to make this event public? This will make the event visible to the public" msgstr "Bạn có chắc mình muốn công khai sự kiện này không? " @@ -1463,7 +1463,7 @@ msgstr "Mã phải dài từ 3 đến 50 ký tự" msgid "Code must be no more than 20 characters" msgstr "Mã không được quá 20 ký tự" -#: src/components/layouts/OrganizerLayout/index.tsx:163 +#: src/components/layouts/OrganizerLayout/index.tsx:159 msgid "Collaborate with your team to create amazing events together." msgstr "Hợp tác với nhóm của bạn để tạo nên những sự kiện tuyệt vời." @@ -1645,11 +1645,11 @@ msgstr "Xác nhận mật khẩu" msgid "Confirm Password" msgstr "Xác nhận mật khẩu" -#: src/components/layouts/Event/index.tsx:246 +#: src/components/layouts/Event/index.tsx:240 msgid "Confirm your email to access all features." msgstr "Xác nhận email của bạn để sử dụng đầy đủ tính năng." -#: src/components/layouts/OrganizerLayout/index.tsx:296 +#: src/components/layouts/OrganizerLayout/index.tsx:292 msgid "Confirmation email sent! Please check your inbox." msgstr "Email xác nhận đã được gửi! Vui lòng kiểm tra hộp thư đến của bạn." @@ -1677,8 +1677,8 @@ msgstr "Tài liệu kết nối" msgid "Connect payment processing" msgstr "Kết nối xử lý thanh toán" -#: src/components/layouts/OrganizerLayout/index.tsx:176 -#: src/components/layouts/OrganizerLayout/index.tsx:184 +#: src/components/layouts/OrganizerLayout/index.tsx:172 +#: src/components/layouts/OrganizerLayout/index.tsx:180 msgid "Connect Stripe" msgstr "Kết nối Stripe" @@ -1698,7 +1698,7 @@ msgstr "Kết nối với Stripe" msgid "Connect with Stripe" msgstr "Kết nối với Stripe" -#: src/components/layouts/OrganizerLayout/index.tsx:177 +#: src/components/layouts/OrganizerLayout/index.tsx:173 msgid "Connect your Stripe account to accept payments for tickets and products." msgstr "Kết nối tài khoản Stripe để chấp nhận thanh toán cho vé và sản phẩm." @@ -1727,8 +1727,8 @@ msgstr "Đã kết nối với Stripe" msgid "Connection Details" msgstr "Chi tiết kết nối" -#: src/components/layouts/EventHomepage/index.tsx:555 -#: src/components/layouts/OrganizerHomepage/index.tsx:232 +#: src/components/layouts/EventHomepage/index.tsx:569 +#: src/components/layouts/OrganizerHomepage/index.tsx:245 msgid "Contact" msgstr "Liên hệ" @@ -1973,7 +1973,7 @@ msgid "Create discounts, access codes for hidden tickets, and special offers." msgstr "Tạo giảm giá, mã truy cập cho vé ẩn và ưu đãi đặc biệt." #: src/components/common/NoEventsBlankSlate/index.tsx:27 -#: src/components/layouts/OrganizerLayout/index.tsx:153 +#: src/components/layouts/OrganizerLayout/index.tsx:149 #: src/components/routes/organizer/Events/index.tsx:62 #: src/components/routes/organizer/OrganizerDashboard/index.tsx:257 msgid "Create Event" @@ -2440,8 +2440,8 @@ msgid "Downloading Invoice" msgstr "Tải xuống hóa đơn" #: src/components/common/EventCard/index.tsx:84 -#: src/components/layouts/Event/index.tsx:188 -#: src/components/layouts/OrganizerLayout/index.tsx:206 +#: src/components/layouts/Event/index.tsx:182 +#: src/components/layouts/OrganizerLayout/index.tsx:202 msgid "Draft" msgstr "Bản nháp" @@ -2715,7 +2715,7 @@ msgstr "Xem trước email" msgid "Email Templates" msgstr "Mẫu email" -#: src/components/layouts/OrganizerLayout/index.tsx:275 +#: src/components/layouts/OrganizerLayout/index.tsx:271 msgid "Email Verification Required" msgstr "Yêu cầu xác minh email" @@ -2982,7 +2982,7 @@ msgstr "Sự kiện không có sẵn" msgid "Event organizer name" msgstr "Tên ban tổ chức sự kiện" -#: src/components/layouts/Event/index.tsx:235 +#: src/components/layouts/Event/index.tsx:229 msgid "Event Page" msgstr "Trang sự kiện" @@ -2993,7 +2993,7 @@ msgstr "Cài đặt sự kiện" #: src/components/common/EventCard/index.tsx:70 #: src/components/common/StatusToggle/index.tsx:59 -#: src/components/layouts/Event/index.tsx:167 +#: src/components/layouts/Event/index.tsx:161 #: src/components/routes/event/EventDashboard/index.tsx:83 #: src/components/routes/event/GettingStarted/index.tsx:63 msgid "Event status update failed. Please try again later" @@ -3001,7 +3001,7 @@ msgstr "Cập nhật trạng thái sự kiện thất bại. Vui lòng thử l #: src/components/common/EventCard/index.tsx:67 #: src/components/common/StatusToggle/index.tsx:51 -#: src/components/layouts/Event/index.tsx:164 +#: src/components/layouts/Event/index.tsx:158 #: src/components/routes/event/EventDashboard/index.tsx:80 #: src/components/routes/event/GettingStarted/index.tsx:60 msgid "Event status updated" @@ -3041,7 +3041,6 @@ msgstr "Địa Điểm Sự Kiện" #: src/components/common/AdminAccountsTable/index.tsx:74 #: src/components/layouts/Admin/index.tsx:16 #: src/components/layouts/OrganizerLayout/index.tsx:81 -#: src/components/layouts/OrganizerLayout/index.tsx:141 #: src/components/routes/admin/Accounts/AccountDetail/index.tsx:123 #: src/components/routes/admin/Events/index.tsx:77 #: src/components/routes/organizer/Events/index.tsx:43 @@ -3473,7 +3472,7 @@ msgstr "Tạo mã" msgid "German" msgstr "Tiếng Đức" -#: src/components/layouts/EventHomepage/index.tsx:392 +#: src/components/layouts/EventHomepage/index.tsx:406 msgid "Get Directions" msgstr "Chỉ đường" @@ -3485,7 +3484,7 @@ msgstr "" msgid "Get started" msgstr "" -#: src/components/layouts/EventHomepage/index.tsx:591 +#: src/components/layouts/EventHomepage/index.tsx:605 msgid "Get Tickets" msgstr "Lấy vé" @@ -3678,8 +3677,8 @@ msgid "Highlighted products will have a different background color to make them msgstr "Sản phẩm nổi bật sẽ có màu nền khác để nổi bật trên trang sự kiện." #: src/components/layouts/Event/index.tsx:137 -msgid "Home" -msgstr "Trang chủ" +#~ msgid "Home" +#~ msgstr "Trang chủ" #: src/components/routes/event/HomepageDesigner/index.tsx:160 #: src/components/routes/organizer/OrganizerHomepageDesigner/index.tsx:170 @@ -3926,7 +3925,7 @@ msgstr "Mời thành viên nhóm" msgid "Invite Team Member" msgstr "Mời thành viên nhóm" -#: src/components/layouts/OrganizerLayout/index.tsx:165 +#: src/components/layouts/OrganizerLayout/index.tsx:161 msgid "Invite Team Members" msgstr "Mời các thành viên nhóm" @@ -3938,7 +3937,7 @@ msgstr "" msgid "Invite User" msgstr "Mời người dùng" -#: src/components/layouts/OrganizerLayout/index.tsx:162 +#: src/components/layouts/OrganizerLayout/index.tsx:158 msgid "Invite Your Team" msgstr "Mời nhóm của bạn" @@ -3996,7 +3995,7 @@ msgstr "John" msgid "Johnson" msgstr "Johnson" -#: src/components/layouts/EventHomepage/index.tsx:320 +#: src/components/layouts/EventHomepage/index.tsx:334 msgid "Join from anywhere" msgstr "Tham gia từ bất cứ đâu" @@ -4130,8 +4129,8 @@ msgid "LinkedIn" msgstr "LinkedIn" #: src/components/common/EventCard/index.tsx:87 -#: src/components/layouts/Event/index.tsx:190 -#: src/components/layouts/OrganizerLayout/index.tsx:208 +#: src/components/layouts/Event/index.tsx:184 +#: src/components/layouts/OrganizerLayout/index.tsx:204 msgid "Live" msgstr "Trực tiếp" @@ -4162,7 +4161,7 @@ msgid "Loading..." msgstr "Đang tải ..." #: src/components/common/AttendeeTicket/index.tsx:91 -#: src/components/layouts/EventHomepage/index.tsx:374 +#: src/components/layouts/EventHomepage/index.tsx:388 #: src/components/routes/event/Settings/index.tsx:35 #: src/components/routes/event/Settings/Sections/LocationSettings/index.tsx:84 #: src/components/routes/my-tickets/index.tsx:73 @@ -4597,7 +4596,7 @@ msgstr "Chưa có đơn hàng nào" msgid "No other organizers available" msgstr "Không có nhà tổ chức nào khác" -#: src/components/layouts/OrganizerHomepage/index.tsx:273 +#: src/components/layouts/OrganizerHomepage/index.tsx:286 msgid "No past events" msgstr "Không có sự kiện trước đó" @@ -4665,7 +4664,7 @@ msgstr "Không có thuế hoặc phí đã được thêm vào." msgid "No Tickets Found" msgstr "Không tìm thấy vé" -#: src/components/layouts/OrganizerHomepage/index.tsx:273 +#: src/components/layouts/OrganizerHomepage/index.tsx:286 msgid "No upcoming events" msgstr "Không có sự kiện sắp tới" @@ -4816,7 +4815,7 @@ msgid "Online" msgstr "Trực tuyến" #: src/components/layouts/EventHomepage/EventInformation/index.tsx:71 -#: src/components/layouts/EventHomepage/index.tsx:318 +#: src/components/layouts/EventHomepage/index.tsx:332 #: src/components/layouts/OrganizerHomepage/EventCard/index.tsx:167 msgid "Online Event" msgstr "Sự kiện trực tuyến" @@ -5099,7 +5098,7 @@ msgstr "Tên tổ chức" #: src/components/common/AdminEventsTable/index.tsx:85 #: src/components/common/AttendeeTicket/index.tsx:82 -#: src/components/layouts/EventHomepage/index.tsx:467 +#: src/components/layouts/EventHomepage/index.tsx:481 #: src/components/modals/EditUserModal/index.tsx:55 #: src/components/modals/InviteUserModal/index.tsx:47 #: src/components/routes/events/Dashboard/index.tsx:193 @@ -5252,12 +5251,12 @@ msgstr "Đặt lại mật khẩu thành công. Vui lòng sử dụng mật kh msgid "Passwords are not the same" msgstr "Mật khẩu không giống nhau" -#: src/components/layouts/OrganizerHomepage/index.tsx:265 +#: src/components/layouts/OrganizerHomepage/index.tsx:278 #: src/components/routes/organizer/Reports/EventsPerformanceReport/index.tsx:30 msgid "Past" msgstr "Đã qua" -#: src/components/layouts/OrganizerHomepage/index.tsx:252 +#: src/components/layouts/OrganizerHomepage/index.tsx:265 msgid "Past Events" msgstr "Sự kiện đã qua" @@ -5583,8 +5582,8 @@ msgstr "Xem trước" msgid "Preview checkout form" msgstr "Xem trước biểu mẫu thanh toán" -#: src/components/layouts/Event/index.tsx:228 -#: src/components/layouts/Event/index.tsx:232 +#: src/components/layouts/Event/index.tsx:222 +#: src/components/layouts/Event/index.tsx:226 msgid "Preview Event page" msgstr "Xem trước trang sự kiện" @@ -5643,8 +5642,8 @@ msgstr "In vé" msgid "Print to PDF" msgstr "In ra PDF" -#: src/components/layouts/EventHomepage/index.tsx:571 -#: src/components/layouts/OrganizerHomepage/index.tsx:315 +#: src/components/layouts/EventHomepage/index.tsx:585 +#: src/components/layouts/OrganizerHomepage/index.tsx:328 msgid "Privacy Policy" msgstr "Chính sách quyền riêng tư" @@ -5992,11 +5991,11 @@ msgstr "Bắt buộc" msgid "Resend code" msgstr "Gửi lại mã" -#: src/components/layouts/OrganizerLayout/index.tsx:292 +#: src/components/layouts/OrganizerLayout/index.tsx:288 msgid "Resend Confirmation Email" msgstr "Gửi lại email xác nhận" -#: src/components/layouts/Event/index.tsx:248 +#: src/components/layouts/Event/index.tsx:242 msgid "Resend email" msgstr "Gửi lại email" @@ -6558,8 +6557,8 @@ msgid "Setup & Design" msgstr "Thiết lập & thiết kế" #: src/components/common/ShareIcon/index.tsx:30 -#: src/components/layouts/EventHomepage/index.tsx:279 -#: src/components/layouts/OrganizerLayout/index.tsx:228 +#: src/components/layouts/EventHomepage/index.tsx:293 +#: src/components/layouts/OrganizerLayout/index.tsx:224 #: src/components/modals/ShareModal/index.tsx:37 #: src/components/modals/ShareModal/index.tsx:165 #: src/components/modals/ShareModal/index.tsx:186 @@ -6571,13 +6570,13 @@ msgstr "Chia sẻ" msgid "Share Affiliate Link" msgstr "Chia sẻ liên kết đối tác" +#: src/components/layouts/Event/index.tsx:200 #: src/components/layouts/Event/index.tsx:206 -#: src/components/layouts/Event/index.tsx:212 msgid "Share Event" msgstr "Chia sẻ sự kiện" -#: src/components/layouts/OrganizerLayout/index.tsx:225 -#: src/components/layouts/OrganizerLayout/index.tsx:260 +#: src/components/layouts/OrganizerLayout/index.tsx:221 +#: src/components/layouts/OrganizerLayout/index.tsx:256 msgid "Share Organizer Page" msgstr "Chia sẻ trang nhà tổ chức" @@ -6675,7 +6674,7 @@ msgid "Sold out" msgstr "Đã bán hết" #: src/components/common/ProductsTable/SortableProduct/index.tsx:81 -#: src/components/layouts/EventHomepage/index.tsx:142 +#: src/components/layouts/EventHomepage/index.tsx:143 msgid "Sold Out" msgstr "Đã bán hết" @@ -7103,8 +7102,8 @@ msgstr "Xóa mẫu thành công" msgid "Template saved successfully" msgstr "Lưu mẫu thành công" -#: src/components/layouts/EventHomepage/index.tsx:577 -#: src/components/layouts/OrganizerHomepage/index.tsx:322 +#: src/components/layouts/EventHomepage/index.tsx:591 +#: src/components/layouts/OrganizerHomepage/index.tsx:335 msgid "Terms of Service" msgstr "Điều khoản dịch vụ" @@ -7531,7 +7530,7 @@ msgstr "Vé" msgid "Tickets & Products" msgstr "Vé & Sản phẩm" -#: src/components/layouts/EventHomepage/index.tsx:149 +#: src/components/layouts/EventHomepage/index.tsx:150 msgid "Tickets Available" msgstr "Vé còn sẵn" @@ -7801,12 +7800,12 @@ msgstr "Hủy công bố sự kiện" #: src/components/common/EventsDashboardStatusButtons/index.tsx:20 #: src/components/common/EventStatusBadge/index.tsx:16 -#: src/components/layouts/OrganizerHomepage/index.tsx:259 +#: src/components/layouts/OrganizerHomepage/index.tsx:272 #: src/components/routes/organizer/Reports/EventsPerformanceReport/index.tsx:33 msgid "Upcoming" msgstr "Sắp tới" -#: src/components/layouts/OrganizerHomepage/index.tsx:252 +#: src/components/layouts/OrganizerHomepage/index.tsx:265 #: src/components/routes/organizer/OrganizerDashboard/index.tsx:232 msgid "Upcoming Events" msgstr "Các sự kiện sắp tới" @@ -8048,7 +8047,7 @@ msgstr "Mã xác thực" msgid "Verify Email" msgstr "Xác thực email" -#: src/components/layouts/Event/index.tsx:245 +#: src/components/layouts/Event/index.tsx:239 msgid "Verify your email" msgstr "Xác minh email của bạn" @@ -8102,12 +8101,12 @@ msgstr "Xem nhật ký" msgid "View map" msgstr "Xem bản đồ" -#: src/components/layouts/EventHomepage/index.tsx:433 +#: src/components/layouts/EventHomepage/index.tsx:447 msgid "View Map" msgstr "Xem bản đồ" #: src/components/layouts/EventHomepage/EventInformation/index.tsx:95 -#: src/components/layouts/EventHomepage/index.tsx:346 +#: src/components/layouts/EventHomepage/index.tsx:360 msgid "View on Google Maps" msgstr "Xem trên Google Maps" @@ -8127,8 +8126,8 @@ msgstr "Xem chi tiết đơn hàng" msgid "View order details, issue refunds, and resend confirmations." msgstr "Xem chi tiết đơn hàng, hoàn tiền và gửi lại xác nhận." -#: src/components/layouts/OrganizerLayout/index.tsx:243 -#: src/components/layouts/OrganizerLayout/index.tsx:246 +#: src/components/layouts/OrganizerLayout/index.tsx:239 +#: src/components/layouts/OrganizerLayout/index.tsx:242 msgid "View Organizer Homepage" msgstr "Xem trang chủ nhà tổ chức" @@ -8592,7 +8591,7 @@ msgstr "Bạn phải tạo một vé trước khi bạn có thể thêm một ng msgid "You must have at least one price tier" msgstr "Bạn phải có ít nhất một cấp giá" -#: src/components/layouts/OrganizerLayout/index.tsx:281 +#: src/components/layouts/OrganizerLayout/index.tsx:277 msgid "You must verify your email address before you can update the organizer status." msgstr "Bạn phải xác minh địa chỉ email trước khi cập nhật trạng thái nhà tổ chức." diff --git a/frontend/src/locales/zh-cn.po b/frontend/src/locales/zh-cn.po index 9a9e20a99..f95362cba 100644 --- a/frontend/src/locales/zh-cn.po +++ b/frontend/src/locales/zh-cn.po @@ -13,13 +13,13 @@ msgstr "" "Language-Team: \n" "Plural-Forms: \n" -#: src/components/layouts/Event/index.tsx:189 -#: src/components/layouts/OrganizerLayout/index.tsx:207 +#: src/components/layouts/Event/index.tsx:183 +#: src/components/layouts/OrganizerLayout/index.tsx:203 msgid "- Click to Publish" msgstr "- 点击发布" -#: src/components/layouts/Event/index.tsx:191 -#: src/components/layouts/OrganizerLayout/index.tsx:209 +#: src/components/layouts/Event/index.tsx:185 +#: src/components/layouts/OrganizerLayout/index.tsx:205 msgid "- Click to Unpublish" msgstr "- 点击取消发布" @@ -273,7 +273,7 @@ msgstr "标准税,如增值税或消费税" msgid "Abandoned" msgstr "已放弃" -#: src/components/layouts/EventHomepage/index.tsx:361 +#: src/components/layouts/EventHomepage/index.tsx:375 msgid "About" msgstr "关于" @@ -464,7 +464,7 @@ msgstr "增加层级" #: src/components/common/AddEventToCalendarButton/index.tsx:14 #: src/components/common/AddToCalendarCTA/index.tsx:24 -#: src/components/layouts/EventHomepage/index.tsx:306 +#: src/components/layouts/EventHomepage/index.tsx:320 msgid "Add to Calendar" msgstr "添加到日历" @@ -773,12 +773,12 @@ msgstr "您确定要删除此 Webhook 吗?" msgid "Are you sure you want to leave?" msgstr "您确定要离开吗?" -#: src/components/layouts/Event/index.tsx:155 +#: src/components/layouts/Event/index.tsx:149 #: src/components/routes/event/EventDashboard/index.tsx:71 msgid "Are you sure you want to make this event draft? This will make the event invisible to the public" msgstr "您确定要将此活动设为草稿吗?这将使公众无法看到该活动" -#: src/components/layouts/Event/index.tsx:156 +#: src/components/layouts/Event/index.tsx:150 #: src/components/routes/event/EventDashboard/index.tsx:72 msgid "Are you sure you want to make this event public? This will make the event visible to the public" msgstr "您确定要将此事件公开吗?这将使事件对公众可见" @@ -1463,7 +1463,7 @@ msgstr "代码长度必须在 3 至 50 个字符之间" msgid "Code must be no more than 20 characters" msgstr "代码不能超过20个字符" -#: src/components/layouts/OrganizerLayout/index.tsx:163 +#: src/components/layouts/OrganizerLayout/index.tsx:159 msgid "Collaborate with your team to create amazing events together." msgstr "与您的团队协作,共同创建精彩的活动。" @@ -1645,11 +1645,11 @@ msgstr "确认密码" msgid "Confirm Password" msgstr "确认密码" -#: src/components/layouts/Event/index.tsx:246 +#: src/components/layouts/Event/index.tsx:240 msgid "Confirm your email to access all features." msgstr "请确认您的邮箱以访问所有功能。" -#: src/components/layouts/OrganizerLayout/index.tsx:296 +#: src/components/layouts/OrganizerLayout/index.tsx:292 msgid "Confirmation email sent! Please check your inbox." msgstr "确认邮件已发送!请检查您的收件箱。" @@ -1677,8 +1677,8 @@ msgstr "连接文档" msgid "Connect payment processing" msgstr "连接支付处理" -#: src/components/layouts/OrganizerLayout/index.tsx:176 -#: src/components/layouts/OrganizerLayout/index.tsx:184 +#: src/components/layouts/OrganizerLayout/index.tsx:172 +#: src/components/layouts/OrganizerLayout/index.tsx:180 msgid "Connect Stripe" msgstr "连接条纹" @@ -1698,7 +1698,7 @@ msgstr "连接到 Stripe" msgid "Connect with Stripe" msgstr "与 Stripe 连接" -#: src/components/layouts/OrganizerLayout/index.tsx:177 +#: src/components/layouts/OrganizerLayout/index.tsx:173 msgid "Connect your Stripe account to accept payments for tickets and products." msgstr "连接您的 Stripe 账户以接受门票和产品付款。" @@ -1727,8 +1727,8 @@ msgstr "已连接到 Stripe" msgid "Connection Details" msgstr "连接详情" -#: src/components/layouts/EventHomepage/index.tsx:555 -#: src/components/layouts/OrganizerHomepage/index.tsx:232 +#: src/components/layouts/EventHomepage/index.tsx:569 +#: src/components/layouts/OrganizerHomepage/index.tsx:245 msgid "Contact" msgstr "联系" @@ -1973,7 +1973,7 @@ msgid "Create discounts, access codes for hidden tickets, and special offers." msgstr "创建折扣、隐藏门票的访问码和特别优惠。" #: src/components/common/NoEventsBlankSlate/index.tsx:27 -#: src/components/layouts/OrganizerLayout/index.tsx:153 +#: src/components/layouts/OrganizerLayout/index.tsx:149 #: src/components/routes/organizer/Events/index.tsx:62 #: src/components/routes/organizer/OrganizerDashboard/index.tsx:257 msgid "Create Event" @@ -2440,8 +2440,8 @@ msgid "Downloading Invoice" msgstr "正在下载发票" #: src/components/common/EventCard/index.tsx:84 -#: src/components/layouts/Event/index.tsx:188 -#: src/components/layouts/OrganizerLayout/index.tsx:206 +#: src/components/layouts/Event/index.tsx:182 +#: src/components/layouts/OrganizerLayout/index.tsx:202 msgid "Draft" msgstr "草稿" @@ -2715,7 +2715,7 @@ msgstr "邮件预览" msgid "Email Templates" msgstr "邮件模板" -#: src/components/layouts/OrganizerLayout/index.tsx:275 +#: src/components/layouts/OrganizerLayout/index.tsx:271 msgid "Email Verification Required" msgstr "需要验证邮箱" @@ -2982,7 +2982,7 @@ msgstr "活动不可用" msgid "Event organizer name" msgstr "活动组织者姓名" -#: src/components/layouts/Event/index.tsx:235 +#: src/components/layouts/Event/index.tsx:229 msgid "Event Page" msgstr "活动页面" @@ -2993,7 +2993,7 @@ msgstr "活动设置" #: src/components/common/EventCard/index.tsx:70 #: src/components/common/StatusToggle/index.tsx:59 -#: src/components/layouts/Event/index.tsx:167 +#: src/components/layouts/Event/index.tsx:161 #: src/components/routes/event/EventDashboard/index.tsx:83 #: src/components/routes/event/GettingStarted/index.tsx:63 msgid "Event status update failed. Please try again later" @@ -3001,7 +3001,7 @@ msgstr "活动状态更新失败。请稍后再试" #: src/components/common/EventCard/index.tsx:67 #: src/components/common/StatusToggle/index.tsx:51 -#: src/components/layouts/Event/index.tsx:164 +#: src/components/layouts/Event/index.tsx:158 #: src/components/routes/event/EventDashboard/index.tsx:80 #: src/components/routes/event/GettingStarted/index.tsx:60 msgid "Event status updated" @@ -3041,7 +3041,6 @@ msgstr "活动场地" #: src/components/common/AdminAccountsTable/index.tsx:74 #: src/components/layouts/Admin/index.tsx:16 #: src/components/layouts/OrganizerLayout/index.tsx:81 -#: src/components/layouts/OrganizerLayout/index.tsx:141 #: src/components/routes/admin/Accounts/AccountDetail/index.tsx:123 #: src/components/routes/admin/Events/index.tsx:77 #: src/components/routes/organizer/Events/index.tsx:43 @@ -3473,7 +3472,7 @@ msgstr "生成代码" msgid "German" msgstr "德国" -#: src/components/layouts/EventHomepage/index.tsx:392 +#: src/components/layouts/EventHomepage/index.tsx:406 msgid "Get Directions" msgstr "获取路线" @@ -3485,7 +3484,7 @@ msgstr "" msgid "Get started" msgstr "" -#: src/components/layouts/EventHomepage/index.tsx:591 +#: src/components/layouts/EventHomepage/index.tsx:605 msgid "Get Tickets" msgstr "获取门票" @@ -3678,8 +3677,8 @@ msgid "Highlighted products will have a different background color to make them msgstr "突出显示的产品将具有不同的背景色,使其在活动页面上脱颖而出。" #: src/components/layouts/Event/index.tsx:137 -msgid "Home" -msgstr "首页" +#~ msgid "Home" +#~ msgstr "首页" #: src/components/routes/event/HomepageDesigner/index.tsx:160 #: src/components/routes/organizer/OrganizerHomepageDesigner/index.tsx:170 @@ -3926,7 +3925,7 @@ msgstr "邀请团队成员" msgid "Invite Team Member" msgstr "邀请团队成员" -#: src/components/layouts/OrganizerLayout/index.tsx:165 +#: src/components/layouts/OrganizerLayout/index.tsx:161 msgid "Invite Team Members" msgstr "邀请团队成员" @@ -3938,7 +3937,7 @@ msgstr "" msgid "Invite User" msgstr "邀请用户" -#: src/components/layouts/OrganizerLayout/index.tsx:162 +#: src/components/layouts/OrganizerLayout/index.tsx:158 msgid "Invite Your Team" msgstr "邀请您的团队" @@ -3996,7 +3995,7 @@ msgstr "约翰" msgid "Johnson" msgstr "约翰逊" -#: src/components/layouts/EventHomepage/index.tsx:320 +#: src/components/layouts/EventHomepage/index.tsx:334 msgid "Join from anywhere" msgstr "随时随地加入" @@ -4130,8 +4129,8 @@ msgid "LinkedIn" msgstr "LinkedIn" #: src/components/common/EventCard/index.tsx:87 -#: src/components/layouts/Event/index.tsx:190 -#: src/components/layouts/OrganizerLayout/index.tsx:208 +#: src/components/layouts/Event/index.tsx:184 +#: src/components/layouts/OrganizerLayout/index.tsx:204 msgid "Live" msgstr "上线" @@ -4162,7 +4161,7 @@ msgid "Loading..." msgstr "加载中..." #: src/components/common/AttendeeTicket/index.tsx:91 -#: src/components/layouts/EventHomepage/index.tsx:374 +#: src/components/layouts/EventHomepage/index.tsx:388 #: src/components/routes/event/Settings/index.tsx:35 #: src/components/routes/event/Settings/Sections/LocationSettings/index.tsx:84 #: src/components/routes/my-tickets/index.tsx:73 @@ -4597,7 +4596,7 @@ msgstr "尚无订单" msgid "No other organizers available" msgstr "无其他可用组织者" -#: src/components/layouts/OrganizerHomepage/index.tsx:273 +#: src/components/layouts/OrganizerHomepage/index.tsx:286 msgid "No past events" msgstr "没有过去的活动" @@ -4665,7 +4664,7 @@ msgstr "未加收任何税费。" msgid "No Tickets Found" msgstr "未找到票" -#: src/components/layouts/OrganizerHomepage/index.tsx:273 +#: src/components/layouts/OrganizerHomepage/index.tsx:286 msgid "No upcoming events" msgstr "没有即将到来的活动" @@ -4816,7 +4815,7 @@ msgid "Online" msgstr "在线" #: src/components/layouts/EventHomepage/EventInformation/index.tsx:71 -#: src/components/layouts/EventHomepage/index.tsx:318 +#: src/components/layouts/EventHomepage/index.tsx:332 #: src/components/layouts/OrganizerHomepage/EventCard/index.tsx:167 msgid "Online Event" msgstr "在线活动" @@ -5099,7 +5098,7 @@ msgstr "组织名称" #: src/components/common/AdminEventsTable/index.tsx:85 #: src/components/common/AttendeeTicket/index.tsx:82 -#: src/components/layouts/EventHomepage/index.tsx:467 +#: src/components/layouts/EventHomepage/index.tsx:481 #: src/components/modals/EditUserModal/index.tsx:55 #: src/components/modals/InviteUserModal/index.tsx:47 #: src/components/routes/events/Dashboard/index.tsx:193 @@ -5252,12 +5251,12 @@ msgstr "密码重置成功。请使用新密码登录。" msgid "Passwords are not the same" msgstr "密码不一样" -#: src/components/layouts/OrganizerHomepage/index.tsx:265 +#: src/components/layouts/OrganizerHomepage/index.tsx:278 #: src/components/routes/organizer/Reports/EventsPerformanceReport/index.tsx:30 msgid "Past" msgstr "过去" -#: src/components/layouts/OrganizerHomepage/index.tsx:252 +#: src/components/layouts/OrganizerHomepage/index.tsx:265 msgid "Past Events" msgstr "过去的活动" @@ -5583,8 +5582,8 @@ msgstr "预览" msgid "Preview checkout form" msgstr "预览结账表单" -#: src/components/layouts/Event/index.tsx:228 -#: src/components/layouts/Event/index.tsx:232 +#: src/components/layouts/Event/index.tsx:222 +#: src/components/layouts/Event/index.tsx:226 msgid "Preview Event page" msgstr "预览活动页面" @@ -5643,8 +5642,8 @@ msgstr "打印票" msgid "Print to PDF" msgstr "打印为PDF" -#: src/components/layouts/EventHomepage/index.tsx:571 -#: src/components/layouts/OrganizerHomepage/index.tsx:315 +#: src/components/layouts/EventHomepage/index.tsx:585 +#: src/components/layouts/OrganizerHomepage/index.tsx:328 msgid "Privacy Policy" msgstr "隐私政策" @@ -5990,11 +5989,11 @@ msgstr "必填" msgid "Resend code" msgstr "重新发送验证码" -#: src/components/layouts/OrganizerLayout/index.tsx:292 +#: src/components/layouts/OrganizerLayout/index.tsx:288 msgid "Resend Confirmation Email" msgstr "重新发送确认邮件" -#: src/components/layouts/Event/index.tsx:248 +#: src/components/layouts/Event/index.tsx:242 msgid "Resend email" msgstr "重新发送邮件" @@ -6556,8 +6555,8 @@ msgid "Setup & Design" msgstr "设置与设计" #: src/components/common/ShareIcon/index.tsx:30 -#: src/components/layouts/EventHomepage/index.tsx:279 -#: src/components/layouts/OrganizerLayout/index.tsx:228 +#: src/components/layouts/EventHomepage/index.tsx:293 +#: src/components/layouts/OrganizerLayout/index.tsx:224 #: src/components/modals/ShareModal/index.tsx:37 #: src/components/modals/ShareModal/index.tsx:165 #: src/components/modals/ShareModal/index.tsx:186 @@ -6569,13 +6568,13 @@ msgstr "分享" msgid "Share Affiliate Link" msgstr "分享推广链接" +#: src/components/layouts/Event/index.tsx:200 #: src/components/layouts/Event/index.tsx:206 -#: src/components/layouts/Event/index.tsx:212 msgid "Share Event" msgstr "分享活动" -#: src/components/layouts/OrganizerLayout/index.tsx:225 -#: src/components/layouts/OrganizerLayout/index.tsx:260 +#: src/components/layouts/OrganizerLayout/index.tsx:221 +#: src/components/layouts/OrganizerLayout/index.tsx:256 msgid "Share Organizer Page" msgstr "分享组织者页面" @@ -6673,7 +6672,7 @@ msgid "Sold out" msgstr "售罄" #: src/components/common/ProductsTable/SortableProduct/index.tsx:81 -#: src/components/layouts/EventHomepage/index.tsx:142 +#: src/components/layouts/EventHomepage/index.tsx:143 msgid "Sold Out" msgstr "售罄" @@ -7101,8 +7100,8 @@ msgstr "模板删除成功" msgid "Template saved successfully" msgstr "模板保存成功" -#: src/components/layouts/EventHomepage/index.tsx:577 -#: src/components/layouts/OrganizerHomepage/index.tsx:322 +#: src/components/layouts/EventHomepage/index.tsx:591 +#: src/components/layouts/OrganizerHomepage/index.tsx:335 msgid "Terms of Service" msgstr "服务条款" @@ -7529,7 +7528,7 @@ msgstr "门票" msgid "Tickets & Products" msgstr "票务与商品" -#: src/components/layouts/EventHomepage/index.tsx:149 +#: src/components/layouts/EventHomepage/index.tsx:150 msgid "Tickets Available" msgstr "门票有售" @@ -7799,12 +7798,12 @@ msgstr "取消发布活动" #: src/components/common/EventsDashboardStatusButtons/index.tsx:20 #: src/components/common/EventStatusBadge/index.tsx:16 -#: src/components/layouts/OrganizerHomepage/index.tsx:259 +#: src/components/layouts/OrganizerHomepage/index.tsx:272 #: src/components/routes/organizer/Reports/EventsPerformanceReport/index.tsx:33 msgid "Upcoming" msgstr "即将推出" -#: src/components/layouts/OrganizerHomepage/index.tsx:252 +#: src/components/layouts/OrganizerHomepage/index.tsx:265 #: src/components/routes/organizer/OrganizerDashboard/index.tsx:232 msgid "Upcoming Events" msgstr "即将举行的活动" @@ -8046,7 +8045,7 @@ msgstr "验证码" msgid "Verify Email" msgstr "验证邮箱" -#: src/components/layouts/Event/index.tsx:245 +#: src/components/layouts/Event/index.tsx:239 msgid "Verify your email" msgstr "验证您的邮箱" @@ -8100,12 +8099,12 @@ msgstr "查看日志" msgid "View map" msgstr "查看地图" -#: src/components/layouts/EventHomepage/index.tsx:433 +#: src/components/layouts/EventHomepage/index.tsx:447 msgid "View Map" msgstr "查看地图" #: src/components/layouts/EventHomepage/EventInformation/index.tsx:95 -#: src/components/layouts/EventHomepage/index.tsx:346 +#: src/components/layouts/EventHomepage/index.tsx:360 msgid "View on Google Maps" msgstr "在谷歌地图上查看" @@ -8125,8 +8124,8 @@ msgstr "查看订单详情" msgid "View order details, issue refunds, and resend confirmations." msgstr "查看订单详情、退款和重新发送确认。" -#: src/components/layouts/OrganizerLayout/index.tsx:243 -#: src/components/layouts/OrganizerLayout/index.tsx:246 +#: src/components/layouts/OrganizerLayout/index.tsx:239 +#: src/components/layouts/OrganizerLayout/index.tsx:242 msgid "View Organizer Homepage" msgstr "查看组织者主页" @@ -8590,7 +8589,7 @@ msgstr "必须先创建机票,然后才能手动添加与会者。" msgid "You must have at least one price tier" msgstr "您必须至少有一个价格等级" -#: src/components/layouts/OrganizerLayout/index.tsx:281 +#: src/components/layouts/OrganizerLayout/index.tsx:277 msgid "You must verify your email address before you can update the organizer status." msgstr "您必须先验证电子邮箱地址,才能更新组织者状态。" diff --git a/frontend/src/locales/zh-hk.po b/frontend/src/locales/zh-hk.po index 456e07553..21f89a237 100644 --- a/frontend/src/locales/zh-hk.po +++ b/frontend/src/locales/zh-hk.po @@ -13,13 +13,13 @@ msgstr "" "Language-Team: \n" "Plural-Forms: \n" -#: src/components/layouts/Event/index.tsx:189 -#: src/components/layouts/OrganizerLayout/index.tsx:207 +#: src/components/layouts/Event/index.tsx:183 +#: src/components/layouts/OrganizerLayout/index.tsx:203 msgid "- Click to Publish" msgstr "- 點擊發布" -#: src/components/layouts/Event/index.tsx:191 -#: src/components/layouts/OrganizerLayout/index.tsx:209 +#: src/components/layouts/Event/index.tsx:185 +#: src/components/layouts/OrganizerLayout/index.tsx:205 msgid "- Click to Unpublish" msgstr "- 點擊取消發布" @@ -273,7 +273,7 @@ msgstr "標準税,如增值税或消費税" msgid "Abandoned" msgstr "已放棄" -#: src/components/layouts/EventHomepage/index.tsx:361 +#: src/components/layouts/EventHomepage/index.tsx:375 msgid "About" msgstr "關於" @@ -464,7 +464,7 @@ msgstr "增加層級" #: src/components/common/AddEventToCalendarButton/index.tsx:14 #: src/components/common/AddToCalendarCTA/index.tsx:24 -#: src/components/layouts/EventHomepage/index.tsx:306 +#: src/components/layouts/EventHomepage/index.tsx:320 msgid "Add to Calendar" msgstr "添加到日曆" @@ -773,12 +773,12 @@ msgstr "您確定要刪除此 Webhook 嗎?" msgid "Are you sure you want to leave?" msgstr "您確定要離開嗎?" -#: src/components/layouts/Event/index.tsx:155 +#: src/components/layouts/Event/index.tsx:149 #: src/components/routes/event/EventDashboard/index.tsx:71 msgid "Are you sure you want to make this event draft? This will make the event invisible to the public" msgstr "您確定要將此活動設為草稿嗎?這將使公眾無法看到該活動" -#: src/components/layouts/Event/index.tsx:156 +#: src/components/layouts/Event/index.tsx:150 #: src/components/routes/event/EventDashboard/index.tsx:72 msgid "Are you sure you want to make this event public? This will make the event visible to the public" msgstr "您確定要將此事件公開嗎?這將使事件對公眾可見" @@ -1463,7 +1463,7 @@ msgstr "代碼長度必須在 3 至 50 個字符之間" msgid "Code must be no more than 20 characters" msgstr "代碼唔可以超過20個字元" -#: src/components/layouts/OrganizerLayout/index.tsx:163 +#: src/components/layouts/OrganizerLayout/index.tsx:159 msgid "Collaborate with your team to create amazing events together." msgstr "與您的團隊合作,一起創造精彩活動。" @@ -1645,11 +1645,11 @@ msgstr "確認密碼" msgid "Confirm Password" msgstr "確認密碼" -#: src/components/layouts/Event/index.tsx:246 +#: src/components/layouts/Event/index.tsx:240 msgid "Confirm your email to access all features." msgstr "請確認您的電郵地址以使用所有功能。" -#: src/components/layouts/OrganizerLayout/index.tsx:296 +#: src/components/layouts/OrganizerLayout/index.tsx:292 msgid "Confirmation email sent! Please check your inbox." msgstr "確認電郵已發送!請檢查您的收件匣。" @@ -1677,8 +1677,8 @@ msgstr "連接文檔" msgid "Connect payment processing" msgstr "連接支付處理" -#: src/components/layouts/OrganizerLayout/index.tsx:176 -#: src/components/layouts/OrganizerLayout/index.tsx:184 +#: src/components/layouts/OrganizerLayout/index.tsx:172 +#: src/components/layouts/OrganizerLayout/index.tsx:180 msgid "Connect Stripe" msgstr "連接條紋" @@ -1698,7 +1698,7 @@ msgstr "連接到 Stripe" msgid "Connect with Stripe" msgstr "與 Stripe 連接" -#: src/components/layouts/OrganizerLayout/index.tsx:177 +#: src/components/layouts/OrganizerLayout/index.tsx:173 msgid "Connect your Stripe account to accept payments for tickets and products." msgstr "連接您的 Stripe 帳戶以接受門票和商品的付款。" @@ -1727,8 +1727,8 @@ msgstr "已連接到 Stripe" msgid "Connection Details" msgstr "連接詳情" -#: src/components/layouts/EventHomepage/index.tsx:555 -#: src/components/layouts/OrganizerHomepage/index.tsx:232 +#: src/components/layouts/EventHomepage/index.tsx:569 +#: src/components/layouts/OrganizerHomepage/index.tsx:245 msgid "Contact" msgstr "聯絡" @@ -1973,7 +1973,7 @@ msgid "Create discounts, access codes for hidden tickets, and special offers." msgstr "建立折扣、隱藏門票的存取碼和特別優惠。" #: src/components/common/NoEventsBlankSlate/index.tsx:27 -#: src/components/layouts/OrganizerLayout/index.tsx:153 +#: src/components/layouts/OrganizerLayout/index.tsx:149 #: src/components/routes/organizer/Events/index.tsx:62 #: src/components/routes/organizer/OrganizerDashboard/index.tsx:257 msgid "Create Event" @@ -2440,8 +2440,8 @@ msgid "Downloading Invoice" msgstr "正在下載發票" #: src/components/common/EventCard/index.tsx:84 -#: src/components/layouts/Event/index.tsx:188 -#: src/components/layouts/OrganizerLayout/index.tsx:206 +#: src/components/layouts/Event/index.tsx:182 +#: src/components/layouts/OrganizerLayout/index.tsx:202 msgid "Draft" msgstr "草稿" @@ -2715,7 +2715,7 @@ msgstr "郵件預覽" msgid "Email Templates" msgstr "郵件範本" -#: src/components/layouts/OrganizerLayout/index.tsx:275 +#: src/components/layouts/OrganizerLayout/index.tsx:271 msgid "Email Verification Required" msgstr "需要電郵驗證" @@ -2982,7 +2982,7 @@ msgstr "活動不可用" msgid "Event organizer name" msgstr "活動組織者姓名" -#: src/components/layouts/Event/index.tsx:235 +#: src/components/layouts/Event/index.tsx:229 msgid "Event Page" msgstr "活動頁面" @@ -2993,7 +2993,7 @@ msgstr "活動設定" #: src/components/common/EventCard/index.tsx:70 #: src/components/common/StatusToggle/index.tsx:59 -#: src/components/layouts/Event/index.tsx:167 +#: src/components/layouts/Event/index.tsx:161 #: src/components/routes/event/EventDashboard/index.tsx:83 #: src/components/routes/event/GettingStarted/index.tsx:63 msgid "Event status update failed. Please try again later" @@ -3001,7 +3001,7 @@ msgstr "活動狀態更新失敗。請稍後再試" #: src/components/common/EventCard/index.tsx:67 #: src/components/common/StatusToggle/index.tsx:51 -#: src/components/layouts/Event/index.tsx:164 +#: src/components/layouts/Event/index.tsx:158 #: src/components/routes/event/EventDashboard/index.tsx:80 #: src/components/routes/event/GettingStarted/index.tsx:60 msgid "Event status updated" @@ -3041,7 +3041,6 @@ msgstr "活動場地" #: src/components/common/AdminAccountsTable/index.tsx:74 #: src/components/layouts/Admin/index.tsx:16 #: src/components/layouts/OrganizerLayout/index.tsx:81 -#: src/components/layouts/OrganizerLayout/index.tsx:141 #: src/components/routes/admin/Accounts/AccountDetail/index.tsx:123 #: src/components/routes/admin/Events/index.tsx:77 #: src/components/routes/organizer/Events/index.tsx:43 @@ -3473,7 +3472,7 @@ msgstr "產生代碼" msgid "German" msgstr "德國" -#: src/components/layouts/EventHomepage/index.tsx:392 +#: src/components/layouts/EventHomepage/index.tsx:406 msgid "Get Directions" msgstr "取得路線" @@ -3485,7 +3484,7 @@ msgstr "" msgid "Get started" msgstr "" -#: src/components/layouts/EventHomepage/index.tsx:591 +#: src/components/layouts/EventHomepage/index.tsx:605 msgid "Get Tickets" msgstr "購票" @@ -3678,8 +3677,8 @@ msgid "Highlighted products will have a different background color to make them msgstr "突出顯示的產品將具有不同的背景色,使其在活動頁面上脫穎而出。" #: src/components/layouts/Event/index.tsx:137 -msgid "Home" -msgstr "主頁" +#~ msgid "Home" +#~ msgstr "主頁" #: src/components/routes/event/HomepageDesigner/index.tsx:160 #: src/components/routes/organizer/OrganizerHomepageDesigner/index.tsx:170 @@ -3926,7 +3925,7 @@ msgstr "邀請團隊成員" msgid "Invite Team Member" msgstr "邀請團隊成員" -#: src/components/layouts/OrganizerLayout/index.tsx:165 +#: src/components/layouts/OrganizerLayout/index.tsx:161 msgid "Invite Team Members" msgstr "邀請團隊成員" @@ -3938,7 +3937,7 @@ msgstr "" msgid "Invite User" msgstr "邀請用户" -#: src/components/layouts/OrganizerLayout/index.tsx:162 +#: src/components/layouts/OrganizerLayout/index.tsx:158 msgid "Invite Your Team" msgstr "邀請您的團隊" @@ -3996,7 +3995,7 @@ msgstr "約翰" msgid "Johnson" msgstr "約翰遜" -#: src/components/layouts/EventHomepage/index.tsx:320 +#: src/components/layouts/EventHomepage/index.tsx:334 msgid "Join from anywhere" msgstr "隨時隨地加入" @@ -4130,8 +4129,8 @@ msgid "LinkedIn" msgstr "LinkedIn" #: src/components/common/EventCard/index.tsx:87 -#: src/components/layouts/Event/index.tsx:190 -#: src/components/layouts/OrganizerLayout/index.tsx:208 +#: src/components/layouts/Event/index.tsx:184 +#: src/components/layouts/OrganizerLayout/index.tsx:204 msgid "Live" msgstr "已上線" @@ -4162,7 +4161,7 @@ msgid "Loading..." msgstr "加載中..." #: src/components/common/AttendeeTicket/index.tsx:91 -#: src/components/layouts/EventHomepage/index.tsx:374 +#: src/components/layouts/EventHomepage/index.tsx:388 #: src/components/routes/event/Settings/index.tsx:35 #: src/components/routes/event/Settings/Sections/LocationSettings/index.tsx:84 #: src/components/routes/my-tickets/index.tsx:73 @@ -4597,7 +4596,7 @@ msgstr "尚無訂單" msgid "No other organizers available" msgstr "沒有其他可用的主辦單位" -#: src/components/layouts/OrganizerHomepage/index.tsx:273 +#: src/components/layouts/OrganizerHomepage/index.tsx:286 msgid "No past events" msgstr "沒有過往活動" @@ -4665,7 +4664,7 @@ msgstr "未加收任何税費。" msgid "No Tickets Found" msgstr "未找到票" -#: src/components/layouts/OrganizerHomepage/index.tsx:273 +#: src/components/layouts/OrganizerHomepage/index.tsx:286 msgid "No upcoming events" msgstr "沒有即將舉行的活動" @@ -4816,7 +4815,7 @@ msgid "Online" msgstr "線上" #: src/components/layouts/EventHomepage/EventInformation/index.tsx:71 -#: src/components/layouts/EventHomepage/index.tsx:318 +#: src/components/layouts/EventHomepage/index.tsx:332 #: src/components/layouts/OrganizerHomepage/EventCard/index.tsx:167 msgid "Online Event" msgstr "線上活動" @@ -5099,7 +5098,7 @@ msgstr "組織名稱" #: src/components/common/AdminEventsTable/index.tsx:85 #: src/components/common/AttendeeTicket/index.tsx:82 -#: src/components/layouts/EventHomepage/index.tsx:467 +#: src/components/layouts/EventHomepage/index.tsx:481 #: src/components/modals/EditUserModal/index.tsx:55 #: src/components/modals/InviteUserModal/index.tsx:47 #: src/components/routes/events/Dashboard/index.tsx:193 @@ -5252,12 +5251,12 @@ msgstr "密碼重置成功。請使用新密碼登錄。" msgid "Passwords are not the same" msgstr "密碼不一樣" -#: src/components/layouts/OrganizerHomepage/index.tsx:265 +#: src/components/layouts/OrganizerHomepage/index.tsx:278 #: src/components/routes/organizer/Reports/EventsPerformanceReport/index.tsx:30 msgid "Past" msgstr "過去" -#: src/components/layouts/OrganizerHomepage/index.tsx:252 +#: src/components/layouts/OrganizerHomepage/index.tsx:265 msgid "Past Events" msgstr "過往活動" @@ -5583,8 +5582,8 @@ msgstr "預覽" msgid "Preview checkout form" msgstr "預覽結帳表單" -#: src/components/layouts/Event/index.tsx:228 -#: src/components/layouts/Event/index.tsx:232 +#: src/components/layouts/Event/index.tsx:222 +#: src/components/layouts/Event/index.tsx:226 msgid "Preview Event page" msgstr "預覽活動頁面" @@ -5643,8 +5642,8 @@ msgstr "打印票" msgid "Print to PDF" msgstr "列印為PDF" -#: src/components/layouts/EventHomepage/index.tsx:571 -#: src/components/layouts/OrganizerHomepage/index.tsx:315 +#: src/components/layouts/EventHomepage/index.tsx:585 +#: src/components/layouts/OrganizerHomepage/index.tsx:328 msgid "Privacy Policy" msgstr "私隱政策" @@ -5990,11 +5989,11 @@ msgstr "必填" msgid "Resend code" msgstr "重新發送驗證碼" -#: src/components/layouts/OrganizerLayout/index.tsx:292 +#: src/components/layouts/OrganizerLayout/index.tsx:288 msgid "Resend Confirmation Email" msgstr "重新發送確認電郵" -#: src/components/layouts/Event/index.tsx:248 +#: src/components/layouts/Event/index.tsx:242 msgid "Resend email" msgstr "重新發送電郵" @@ -6556,8 +6555,8 @@ msgid "Setup & Design" msgstr "設定與設計" #: src/components/common/ShareIcon/index.tsx:30 -#: src/components/layouts/EventHomepage/index.tsx:279 -#: src/components/layouts/OrganizerLayout/index.tsx:228 +#: src/components/layouts/EventHomepage/index.tsx:293 +#: src/components/layouts/OrganizerLayout/index.tsx:224 #: src/components/modals/ShareModal/index.tsx:37 #: src/components/modals/ShareModal/index.tsx:165 #: src/components/modals/ShareModal/index.tsx:186 @@ -6569,13 +6568,13 @@ msgstr "分享" msgid "Share Affiliate Link" msgstr "分享推廣連結" +#: src/components/layouts/Event/index.tsx:200 #: src/components/layouts/Event/index.tsx:206 -#: src/components/layouts/Event/index.tsx:212 msgid "Share Event" msgstr "分享活動" -#: src/components/layouts/OrganizerLayout/index.tsx:225 -#: src/components/layouts/OrganizerLayout/index.tsx:260 +#: src/components/layouts/OrganizerLayout/index.tsx:221 +#: src/components/layouts/OrganizerLayout/index.tsx:256 msgid "Share Organizer Page" msgstr "分享主辦單位頁面" @@ -6673,7 +6672,7 @@ msgid "Sold out" msgstr "售罄" #: src/components/common/ProductsTable/SortableProduct/index.tsx:81 -#: src/components/layouts/EventHomepage/index.tsx:142 +#: src/components/layouts/EventHomepage/index.tsx:143 msgid "Sold Out" msgstr "售罄" @@ -7101,8 +7100,8 @@ msgstr "範本刪除成功" msgid "Template saved successfully" msgstr "範本儲存成功" -#: src/components/layouts/EventHomepage/index.tsx:577 -#: src/components/layouts/OrganizerHomepage/index.tsx:322 +#: src/components/layouts/EventHomepage/index.tsx:591 +#: src/components/layouts/OrganizerHomepage/index.tsx:335 msgid "Terms of Service" msgstr "服務條款" @@ -7529,7 +7528,7 @@ msgstr "門票" msgid "Tickets & Products" msgstr "票券與產品" -#: src/components/layouts/EventHomepage/index.tsx:149 +#: src/components/layouts/EventHomepage/index.tsx:150 msgid "Tickets Available" msgstr "門票有售" @@ -7799,12 +7798,12 @@ msgstr "取消發佈活動" #: src/components/common/EventsDashboardStatusButtons/index.tsx:20 #: src/components/common/EventStatusBadge/index.tsx:16 -#: src/components/layouts/OrganizerHomepage/index.tsx:259 +#: src/components/layouts/OrganizerHomepage/index.tsx:272 #: src/components/routes/organizer/Reports/EventsPerformanceReport/index.tsx:33 msgid "Upcoming" msgstr "即將推出" -#: src/components/layouts/OrganizerHomepage/index.tsx:252 +#: src/components/layouts/OrganizerHomepage/index.tsx:265 #: src/components/routes/organizer/OrganizerDashboard/index.tsx:232 msgid "Upcoming Events" msgstr "即將舉行的活動" @@ -8046,7 +8045,7 @@ msgstr "驗證碼" msgid "Verify Email" msgstr "驗證電郵" -#: src/components/layouts/Event/index.tsx:245 +#: src/components/layouts/Event/index.tsx:239 msgid "Verify your email" msgstr "驗證您的電郵" @@ -8100,12 +8099,12 @@ msgstr "查看日誌" msgid "View map" msgstr "查看地圖" -#: src/components/layouts/EventHomepage/index.tsx:433 +#: src/components/layouts/EventHomepage/index.tsx:447 msgid "View Map" msgstr "查看地圖" #: src/components/layouts/EventHomepage/EventInformation/index.tsx:95 -#: src/components/layouts/EventHomepage/index.tsx:346 +#: src/components/layouts/EventHomepage/index.tsx:360 msgid "View on Google Maps" msgstr "在谷歌地圖上查看" @@ -8125,8 +8124,8 @@ msgstr "查看訂單詳情" msgid "View order details, issue refunds, and resend confirmations." msgstr "查看訂單詳情、退款和重新傳送確認。" -#: src/components/layouts/OrganizerLayout/index.tsx:243 -#: src/components/layouts/OrganizerLayout/index.tsx:246 +#: src/components/layouts/OrganizerLayout/index.tsx:239 +#: src/components/layouts/OrganizerLayout/index.tsx:242 msgid "View Organizer Homepage" msgstr "查看主辦單位主頁" @@ -8590,7 +8589,7 @@ msgstr "必須先創建機票,然後才能手動添加與會者。" msgid "You must have at least one price tier" msgstr "您必須至少有一個價格等級" -#: src/components/layouts/OrganizerLayout/index.tsx:281 +#: src/components/layouts/OrganizerLayout/index.tsx:277 msgid "You must verify your email address before you can update the organizer status." msgstr "在更新主辦單位狀態之前,您必須先驗證您的電郵地址。"