@tribe-nest/forge 3.26.0 → 3.31.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +6 -3
- package/src/_tests/publishedResolvability.spec.ts +184 -0
- package/src/_tests/specsRunWorkspaceSource.spec.ts +116 -0
- package/src/_tests/workspaceAliases.ts +40 -0
- package/src/client/_tests/localeHeader.spec.tsx +98 -0
- package/src/client/activeLocale.ts +34 -0
- package/src/client/createForgeClient.ts +13 -0
- package/src/contexts/CartContext.tsx +76 -0
- package/src/contexts/PublicAuthContext.tsx +34 -5
- package/src/contexts/_tests/CartContext.spec.tsx +210 -0
- package/src/contexts/_tests/PublicAuthRefetch.spec.tsx +147 -0
- package/src/data/queries/useBroadcasts.ts +151 -0
- package/src/data/queries/useCheckouts.ts +83 -0
- package/src/data/queries/useMyBookings.ts +9 -1
- package/src/data/queries/useWebsite.ts +7 -0
- package/src/i18n/CONVENTION.md +184 -0
- package/src/i18n/_tests/translationKeys.spec.ts +153 -0
- package/src/i18n/de.json +1019 -0
- package/src/i18n/en.json +1019 -0
- package/src/i18n/index.ts +125 -0
- package/src/index.ts +21 -0
- package/src/provider/ForgeAppProvider.tsx +2 -1
- package/src/provider/SiteConfigProvider.tsx +11 -0
- package/src/ui/format/_tests/membershipPwyw.spec.ts +185 -0
- package/src/ui/format/_tests/pwyw.spec.ts +65 -8
- package/src/ui/format/membershipPwyw.ts +164 -0
- package/src/ui/format/pwyw.ts +37 -0
- package/src/ui/headless/broadcast/_tests/broadcastState.spec.ts +235 -0
- package/src/ui/headless/broadcast/broadcastState.ts +158 -0
- package/src/ui/headless/broadcast/useBroadcastWatch.ts +174 -21
- package/src/ui/headless/checkout/_tests/cartResume.spec.ts +291 -0
- package/src/ui/headless/checkout/_tests/useCartResume.spec.tsx +294 -0
- package/src/ui/headless/checkout/resumedCoupon.ts +61 -0
- package/src/ui/headless/checkout/useCartResume.ts +340 -0
- package/src/ui/headless/checkout/useCheckout.ts +9 -2
- package/src/ui/headless/event/useEventCheckout.ts +8 -13
- package/src/ui/headless/index.ts +32 -0
- package/src/ui/headless/membership/useMembershipCheckout.ts +160 -32
- package/src/ui/index.ts +38 -0
- package/src/ui/media/CallHelpHint.tsx +87 -0
- package/src/ui/media/CallStage.tsx +542 -0
- package/src/ui/media/_tests/CallStage.spec.tsx +685 -0
- package/src/ui/media/_tests/bookingSession.spec.tsx +179 -0
- package/src/ui/media/_tests/callState.spec.ts +452 -0
- package/src/ui/media/_tests/fakeNode.ts +178 -0
- package/src/ui/media/bookingSession.tsx +194 -0
- package/src/ui/media/callState.ts +341 -0
- package/src/ui/media/index.ts +135 -0
- package/src/ui/shell/TribeNestApp.tsx +36 -27
- package/src/ui/styled/AccountDashboard.tsx +289 -96
- package/src/ui/styled/AiAgentWidget.tsx +10 -6
- package/src/ui/styled/AudioPlayer.tsx +14 -6
- package/src/ui/styled/BlogCategory.tsx +4 -2
- package/src/ui/styled/BlogComments.tsx +27 -20
- package/src/ui/styled/BlogList.tsx +5 -3
- package/src/ui/styled/BlogPost.tsx +14 -11
- package/src/ui/styled/BroadcastWatch.tsx +107 -0
- package/src/ui/styled/BundleConfirmation.tsx +32 -23
- package/src/ui/styled/CancellationTerms.tsx +3 -1
- package/src/ui/styled/Cart.tsx +32 -14
- package/src/ui/styled/ChatRoom.tsx +65 -20
- package/src/ui/styled/Checkout.tsx +151 -89
- package/src/ui/styled/CheckoutConfirmation.tsx +66 -35
- package/src/ui/styled/CoachingBooking.tsx +71 -44
- package/src/ui/styled/CoachingConfirmation.tsx +56 -19
- package/src/ui/styled/CoachingDetail.tsx +15 -11
- package/src/ui/styled/CohortPage.tsx +10 -8
- package/src/ui/styled/ConfirmSubscription.tsx +14 -8
- package/src/ui/styled/ContactForm.tsx +31 -12
- package/src/ui/styled/CookieConsent.tsx +19 -15
- package/src/ui/styled/CourseAccess.tsx +54 -47
- package/src/ui/styled/CourseCheckout.tsx +56 -38
- package/src/ui/styled/CourseConfirmation.tsx +39 -17
- package/src/ui/styled/CourseDetail.tsx +21 -15
- package/src/ui/styled/CoursesGrid.tsx +4 -2
- package/src/ui/styled/CurrencySwitcher.tsx +4 -1
- package/src/ui/styled/DiscountCode.tsx +22 -18
- package/src/ui/styled/DonationButton.tsx +52 -17
- package/src/ui/styled/DonationPage.tsx +4 -4
- package/src/ui/styled/EmailListForm.tsx +22 -9
- package/src/ui/styled/EventConfirmation.tsx +37 -14
- package/src/ui/styled/EventCountdown.tsx +10 -6
- package/src/ui/styled/EventDetail.tsx +8 -6
- package/src/ui/styled/EventSeriesDetail.tsx +18 -13
- package/src/ui/styled/EventTickets.tsx +232 -108
- package/src/ui/styled/EventWaitlist.tsx +42 -33
- package/src/ui/styled/EventsList.tsx +15 -13
- package/src/ui/styled/ForgotPasswordForm.tsx +17 -12
- package/src/ui/styled/FormRenderer.tsx +12 -7
- package/src/ui/styled/InstallBanner.tsx +21 -18
- package/src/ui/styled/InvoiceConfirmation.tsx +13 -5
- package/src/ui/styled/InvoicePayment.tsx +37 -16
- package/src/ui/styled/LeadMagnet.tsx +9 -7
- package/src/ui/styled/LiveBroadcastList.tsx +171 -0
- package/src/ui/styled/Loading.tsx +7 -1
- package/src/ui/styled/LoginForm.tsx +32 -14
- package/src/ui/styled/MembershipCheckout.tsx +341 -49
- package/src/ui/styled/MembershipTiers.tsx +34 -18
- package/src/ui/styled/OfferButton.tsx +33 -13
- package/src/ui/styled/PaymentLinkConfirmation.tsx +11 -5
- package/src/ui/styled/PaymentLinkPayment.tsx +30 -10
- package/src/ui/styled/PodcastEpisode.tsx +20 -9
- package/src/ui/styled/PodcastList.tsx +9 -3
- package/src/ui/styled/PodcastShow.tsx +29 -7
- package/src/ui/styled/PostsFeed.tsx +10 -8
- package/src/ui/styled/PresaleCode.tsx +8 -11
- package/src/ui/styled/ProductBrowseNav.tsx +21 -11
- package/src/ui/styled/ProductDetail.tsx +58 -28
- package/src/ui/styled/ReactionBar.tsx +4 -2
- package/src/ui/styled/ReplayList.tsx +24 -13
- package/src/ui/styled/ResetPasswordForm.tsx +32 -15
- package/src/ui/styled/ResumeCart.tsx +289 -0
- package/src/ui/styled/ReviewForm.tsx +52 -58
- package/src/ui/styled/SignupForm.tsx +34 -16
- package/src/ui/styled/TicketTransfer.tsx +55 -54
- package/src/ui/styled/UserMenu.tsx +16 -14
- package/src/ui/styled/_tests/AccountDashboardCommunity.spec.tsx +134 -0
- package/src/ui/styled/_tests/BroadcastPassValidation.spec.tsx +125 -0
- package/src/ui/styled/_tests/MembershipCheckout.spec.tsx +364 -0
- package/src/ui/styled/_tests/ResumeCart.spec.tsx +183 -0
- package/src/ui/styled/broadcast/BroadcastPassValidation.tsx +187 -0
- package/src/ui/styled/broadcast/BroadcastPlayer.tsx +536 -0
- package/src/ui/styled/broadcast/BroadcastTicketPurchase.tsx +74 -0
- package/src/ui/styled/broadcast/EndedBroadcast.tsx +103 -0
- package/src/ui/styled/community/CommunityComposer.tsx +182 -3
- package/src/ui/styled/community/CommunityFeed.tsx +36 -51
- package/src/ui/styled/community/CommunityPostDetail.tsx +16 -2
- package/src/ui/styled/community/_tests/CommunityComposer.spec.tsx +281 -0
- package/src/ui/styled/community/_tests/CommunityPostDetail.spec.tsx +175 -0
package/src/i18n/en.json
ADDED
|
@@ -0,0 +1,1019 @@
|
|
|
1
|
+
{
|
|
2
|
+
"forge.account_dashboard.billing_portal_error": "We couldn't open the billing page. Please contact us.",
|
|
3
|
+
"forge.account_dashboard.billing_portal_opening": "Opening…",
|
|
4
|
+
"forge.account_dashboard.booking_cancel_error": "We could not cancel this session. Please try again.",
|
|
5
|
+
"forge.account_dashboard.booking_duration": "{minutes} minutes",
|
|
6
|
+
"forge.account_dashboard.booking_join_label": "Join:",
|
|
7
|
+
"forge.account_dashboard.booking_video_call": "Video call on this site",
|
|
8
|
+
"forge.account_dashboard.booking_where_label": "Where:",
|
|
9
|
+
"forge.account_dashboard.cancel": "Cancel",
|
|
10
|
+
"forge.account_dashboard.cancel_confirm_confirm": "Cancel membership",
|
|
11
|
+
"forge.account_dashboard.cancel_confirm_free": "Your benefits will stop right away.",
|
|
12
|
+
"forge.account_dashboard.cancel_confirm_keep": "Keep membership",
|
|
13
|
+
"forge.account_dashboard.cancel_confirm_paid": "It will not renew, and you keep your benefits until the end of the period you have paid for.",
|
|
14
|
+
"forge.account_dashboard.cancel_confirm_paid_until": "It will not renew, and you keep your benefits until {{date}}.",
|
|
15
|
+
"forge.account_dashboard.cancel_confirm_title": "Cancel your membership?",
|
|
16
|
+
"forge.account_dashboard.cancel_deletion": "Cancel Deletion",
|
|
17
|
+
"forge.account_dashboard.cancel_session": "Cancel session",
|
|
18
|
+
"forge.account_dashboard.cancel_ticket": "Cancel ticket",
|
|
19
|
+
"forge.account_dashboard.cancelled": "Cancelled",
|
|
20
|
+
"forge.account_dashboard.cancelling": "Cancelling…",
|
|
21
|
+
"forge.account_dashboard.close": "Close",
|
|
22
|
+
"forge.account_dashboard.community_spaces": "Community spaces",
|
|
23
|
+
"forge.account_dashboard.confirm_password": "Confirm new password",
|
|
24
|
+
"forge.account_dashboard.current_password": "Current password",
|
|
25
|
+
"forge.account_dashboard.data_export_description": "Export a copy of your personal data.",
|
|
26
|
+
"forge.account_dashboard.data_section_title": "Your Data",
|
|
27
|
+
"forge.account_dashboard.delete_section_title": "Delete Account",
|
|
28
|
+
"forge.account_dashboard.deletion_confirm": "Yes, delete my account",
|
|
29
|
+
"forge.account_dashboard.deletion_confirm_body": "Your account will be scheduled for permanent deletion after a 30-day cooling-off period.",
|
|
30
|
+
"forge.account_dashboard.deletion_scheduled": "Account deletion scheduled for {date}. You can cancel before then.",
|
|
31
|
+
"forge.account_dashboard.email_readonly": "Email: {email} (cannot be changed)",
|
|
32
|
+
"forge.account_dashboard.export_data": "Export My Data",
|
|
33
|
+
"forge.account_dashboard.first_name": "First name",
|
|
34
|
+
"forge.account_dashboard.last_name": "Last name",
|
|
35
|
+
"forge.account_dashboard.leave_waitlist": "Leave waitlist",
|
|
36
|
+
"forge.account_dashboard.log_out": "Log out",
|
|
37
|
+
"forge.account_dashboard.membership_cancel_error": "We couldn't cancel your membership. Please try again or contact us.",
|
|
38
|
+
"forge.account_dashboard.membership_change": "Change",
|
|
39
|
+
"forge.account_dashboard.membership_empty": "You don't have an active membership.",
|
|
40
|
+
"forge.account_dashboard.membership_ends_on": "Ends on {date}",
|
|
41
|
+
"forge.account_dashboard.membership_join": "Join",
|
|
42
|
+
"forge.account_dashboard.membership_price": "{amount} / {cycle}",
|
|
43
|
+
"forge.account_dashboard.membership_renews_on": "Renews on {date}",
|
|
44
|
+
"forge.account_dashboard.membership_title": "Current Membership",
|
|
45
|
+
"forge.account_dashboard.new_password": "New password",
|
|
46
|
+
"forge.account_dashboard.notifications_title": "Notification Types",
|
|
47
|
+
"forge.account_dashboard.notify_chat_description": "Get notified when new chat messages arrive",
|
|
48
|
+
"forge.account_dashboard.notify_chat_title": "Chat Messages",
|
|
49
|
+
"forge.account_dashboard.notify_new_posts_description": "Get notified when new posts are published",
|
|
50
|
+
"forge.account_dashboard.notify_new_posts_title": "New Posts",
|
|
51
|
+
"forge.account_dashboard.order_line": "{title} × {quantity}",
|
|
52
|
+
"forge.account_dashboard.order_number": "Order #{order_id}",
|
|
53
|
+
"forge.account_dashboard.orders_empty": "You haven't placed any orders yet.",
|
|
54
|
+
"forge.account_dashboard.orders_title": "My Orders",
|
|
55
|
+
"forge.account_dashboard.password_mismatch": "Passwords don't match.",
|
|
56
|
+
"forge.account_dashboard.password_section_title": "Change Password",
|
|
57
|
+
"forge.account_dashboard.password_too_short": "New password must be at least 8 characters.",
|
|
58
|
+
"forge.account_dashboard.password_update_error": "Failed to update password.",
|
|
59
|
+
"forge.account_dashboard.profile_section_title": "Profile Information",
|
|
60
|
+
"forge.account_dashboard.profile_update_error": "Failed to update profile.",
|
|
61
|
+
"forge.account_dashboard.profile_update_success": "Profile updated.",
|
|
62
|
+
"forge.account_dashboard.request_deletion": "Request Account Deletion",
|
|
63
|
+
"forge.account_dashboard.reschedule": "Reschedule",
|
|
64
|
+
"forge.account_dashboard.reschedule_empty": "No other times are open in the next two weeks.",
|
|
65
|
+
"forge.account_dashboard.reschedule_error": "We could not move this session. Please try another time.",
|
|
66
|
+
"forge.account_dashboard.reschedule_moving": "Moving…",
|
|
67
|
+
"forge.account_dashboard.reschedule_title": "Choose a new time",
|
|
68
|
+
"forge.account_dashboard.saved_empty": "You haven't saved any posts yet.",
|
|
69
|
+
"forge.account_dashboard.saved_post_stats": "{likes} likes · {comments} comments",
|
|
70
|
+
"forge.account_dashboard.saved_title": "Saved Posts",
|
|
71
|
+
"forge.account_dashboard.session_window": "{day}, {start} to {end}",
|
|
72
|
+
"forge.account_dashboard.session_window_zoned": "{day}, {start} to {end} ({timezone})",
|
|
73
|
+
"forge.account_dashboard.sessions_empty": "You have no sessions booked.",
|
|
74
|
+
"forge.account_dashboard.sessions_title": "My Sessions",
|
|
75
|
+
"forge.account_dashboard.tab_account": "Account",
|
|
76
|
+
"forge.account_dashboard.tab_bookings": "Bookings",
|
|
77
|
+
"forge.account_dashboard.tab_membership": "Membership",
|
|
78
|
+
"forge.account_dashboard.tab_notifications": "Notifications",
|
|
79
|
+
"forge.account_dashboard.tab_orders": "Orders",
|
|
80
|
+
"forge.account_dashboard.tab_saved": "Saved",
|
|
81
|
+
"forge.account_dashboard.tab_tickets": "Tickets",
|
|
82
|
+
"forge.account_dashboard.tab_waitlist": "Waitlist",
|
|
83
|
+
"forge.account_dashboard.ticket_cancel_error": "We could not cancel this ticket. Please try again.",
|
|
84
|
+
"forge.account_dashboard.ticket_fallback_title": "Ticket",
|
|
85
|
+
"forge.account_dashboard.ticket_line": "{title} × {quantity}",
|
|
86
|
+
"forge.account_dashboard.ticket_transferred": "Sent to you",
|
|
87
|
+
"forge.account_dashboard.tickets_empty": "You have no tickets yet.",
|
|
88
|
+
"forge.account_dashboard.tickets_title": "My Tickets",
|
|
89
|
+
"forge.account_dashboard.title": "My Account",
|
|
90
|
+
"forge.account_dashboard.total": "Total",
|
|
91
|
+
"forge.account_dashboard.update_password": "Update Password",
|
|
92
|
+
"forge.account_dashboard.update_payment_method": "Update payment method",
|
|
93
|
+
"forge.account_dashboard.update_profile": "Update Profile",
|
|
94
|
+
"forge.account_dashboard.waitlist_event_fallback": "Event",
|
|
95
|
+
"forge.account_dashboard.waitlist_leave_error": "We could not remove you from this waitlist. Please try again.",
|
|
96
|
+
"forge.account_dashboard.waitlist_leaving": "Leaving…",
|
|
97
|
+
"forge.account_dashboard.waitlist_offer_closes": "Your offer closes {datetime}.",
|
|
98
|
+
"forge.account_dashboard.waitlist_offer_deadline": "Buy within {countdown}.",
|
|
99
|
+
"forge.account_dashboard.waitlist_offer_not_reserved": "Tickets are not reserved until you buy them.",
|
|
100
|
+
"forge.account_dashboard.waitlist_offer_open": "Tickets available",
|
|
101
|
+
"forge.account_dashboard.waitlist_on_list": "You're on the list",
|
|
102
|
+
"forge.account_dashboard.waitlist_position_label": "Position",
|
|
103
|
+
"forge.account_dashboard.waitlist_ticket_fallback": "Ticket",
|
|
104
|
+
"forge.account_dashboard.waitlist_ticket_line_one": "{title} · {quantity} ticket",
|
|
105
|
+
"forge.account_dashboard.waitlist_ticket_line_other": "{title} · {quantity} tickets",
|
|
106
|
+
"forge.account_dashboard.waitlists_empty": "You're not on any waitlists.",
|
|
107
|
+
"forge.account_dashboard.waitlists_title": "My Waitlists",
|
|
108
|
+
"forge.ai_agent_widget.aria_close": "Close",
|
|
109
|
+
"forge.ai_agent_widget.aria_open": "Open chat assistant",
|
|
110
|
+
"forge.ai_agent_widget.default_greeting": "Hi! Ask me anything.",
|
|
111
|
+
"forge.ai_agent_widget.default_title": "Assistant",
|
|
112
|
+
"forge.ai_agent_widget.input_placeholder": "Type a message…",
|
|
113
|
+
"forge.ai_agent_widget.send": "Send",
|
|
114
|
+
"forge.audio_player.aria_close": "Close player",
|
|
115
|
+
"forge.audio_player.next": "Next",
|
|
116
|
+
"forge.audio_player.nothing_playing": "Nothing playing",
|
|
117
|
+
"forge.audio_player.pause": "Pause",
|
|
118
|
+
"forge.audio_player.play": "Play",
|
|
119
|
+
"forge.audio_player.previous": "Previous",
|
|
120
|
+
"forge.blog_category.empty_title": "No posts yet.",
|
|
121
|
+
"forge.blog_category.not_found": "Category not found.",
|
|
122
|
+
"forge.blog_comments.anonymous": "Anonymous",
|
|
123
|
+
"forge.blog_comments.author": "Author",
|
|
124
|
+
"forge.blog_comments.comment_placeholder": "Add a comment…",
|
|
125
|
+
"forge.blog_comments.email_placeholder": "Email (not published)",
|
|
126
|
+
"forge.blog_comments.empty_title": "No comments yet. Be the first.",
|
|
127
|
+
"forge.blog_comments.error_empty": "Please write a comment.",
|
|
128
|
+
"forge.blog_comments.error_generic": "Something went wrong. Please try again.",
|
|
129
|
+
"forge.blog_comments.error_identity_required": "Name and email are required.",
|
|
130
|
+
"forge.blog_comments.load_more": "Load more comments",
|
|
131
|
+
"forge.blog_comments.loading": "Loading comments…",
|
|
132
|
+
"forge.blog_comments.loading_more": "Loading…",
|
|
133
|
+
"forge.blog_comments.name_placeholder": "Your name",
|
|
134
|
+
"forge.blog_comments.pending_notice": "Thanks! Your comment is awaiting moderation.",
|
|
135
|
+
"forge.blog_comments.sign_in": "Sign in",
|
|
136
|
+
"forge.blog_comments.sign_in_suffix": "to leave a comment.",
|
|
137
|
+
"forge.blog_comments.submit": "Post comment",
|
|
138
|
+
"forge.blog_comments.submitting": "Posting…",
|
|
139
|
+
"forge.blog_comments.title": "Comments",
|
|
140
|
+
"forge.blog_comments.title_with_count": "{title} ({count})",
|
|
141
|
+
"forge.blog_comments.write_another": "Write another",
|
|
142
|
+
"forge.blog_list.empty_body": "No blog posts available yet.",
|
|
143
|
+
"forge.blog_list.featured_badge": "Featured",
|
|
144
|
+
"forge.blog_list.title": "Blog",
|
|
145
|
+
"forge.blog_post.back_to_blog": "← Back to Blog",
|
|
146
|
+
"forge.blog_post.featured": "Featured",
|
|
147
|
+
"forge.blog_post.not_found": "Post not found.",
|
|
148
|
+
"forge.blog_post.pause": "Pause",
|
|
149
|
+
"forge.blog_post.play": "Play",
|
|
150
|
+
"forge.broadcast_pass_validation.input_placeholder": "Enter your ticket ID (TN-XXXXXXX)",
|
|
151
|
+
"forge.broadcast_pass_validation.join": "Join Broadcast",
|
|
152
|
+
"forge.broadcast_pass_validation.or": "OR",
|
|
153
|
+
"forge.broadcast_pass_validation.prompt": "Enter your ticket ID to join the broadcast (TN-XXXXXXX)",
|
|
154
|
+
"forge.broadcast_pass_validation.validating": "Validating…",
|
|
155
|
+
"forge.broadcast_player.anonymous": "Anonymous",
|
|
156
|
+
"forge.broadcast_player.chat": "Chat",
|
|
157
|
+
"forge.broadcast_player.fullscreen": "Fullscreen",
|
|
158
|
+
"forge.broadcast_player.message_label": "Message",
|
|
159
|
+
"forge.broadcast_player.pinned": "Pinned",
|
|
160
|
+
"forge.broadcast_player.quality": "Quality",
|
|
161
|
+
"forge.broadcast_player.quality_auto": "Auto",
|
|
162
|
+
"forge.broadcast_player.quality_high": "High",
|
|
163
|
+
"forge.broadcast_player.quality_low": "Low",
|
|
164
|
+
"forge.broadcast_player.quality_medium": "Medium",
|
|
165
|
+
"forge.broadcast_player.send": "Send",
|
|
166
|
+
"forge.broadcast_player.started": "Started {duration} ago",
|
|
167
|
+
"forge.broadcast_player.watching_now": "{count} watching now",
|
|
168
|
+
"forge.broadcast_ticket_purchase.buy_tickets": "Buy tickets",
|
|
169
|
+
"forge.broadcast_ticket_purchase.from_price": "From {price}",
|
|
170
|
+
"forge.broadcast_watch.leave": "Leave broadcast",
|
|
171
|
+
"forge.broadcast_watch.load_error": "Unable to load broadcast",
|
|
172
|
+
"forge.bundle_confirmation.continue_shopping": "Continue shopping",
|
|
173
|
+
"forge.bundle_confirmation.eyebrow": "Order confirmed",
|
|
174
|
+
"forge.bundle_confirmation.failed_body": "Nothing was charged and your cart is still here. You can try again.",
|
|
175
|
+
"forge.bundle_confirmation.failed_title": "Payment didn't go through",
|
|
176
|
+
"forge.bundle_confirmation.loading": "Confirming your order…",
|
|
177
|
+
"forge.bundle_confirmation.partial_body": "Your payment went through and part of your order is confirmed. We're still finishing the rest. It will arrive by email shortly, with nothing more to pay.",
|
|
178
|
+
"forge.bundle_confirmation.partial_title": "Payment received",
|
|
179
|
+
"forge.bundle_confirmation.return_to_checkout": "Return to checkout",
|
|
180
|
+
"forge.bundle_confirmation.summary_both": "Paid in one go. Your tickets are on their way by email, and your order is confirmed.",
|
|
181
|
+
"forge.bundle_confirmation.summary_order": "Paid in one go. Your order is confirmed.",
|
|
182
|
+
"forge.bundle_confirmation.summary_paid": "Paid in one go.",
|
|
183
|
+
"forge.bundle_confirmation.summary_tickets": "Paid in one go. Your tickets are on their way by email.",
|
|
184
|
+
"forge.bundle_confirmation.tickets_emailed": "Tickets emailed to you",
|
|
185
|
+
"forge.bundle_confirmation.title": "You're all set",
|
|
186
|
+
"forge.bundle_confirmation.view_orders": "View your orders",
|
|
187
|
+
"forge.cancellation_terms.title": "Cancellation policy",
|
|
188
|
+
"forge.cart.aria_close": "Close cart",
|
|
189
|
+
"forge.cart.aria_open": "Open cart",
|
|
190
|
+
"forge.cart.aria_remove_item": "Remove item",
|
|
191
|
+
"forge.cart.aria_remove_tickets": "Remove tickets",
|
|
192
|
+
"forge.cart.attached_to_tickets": "Added with your tickets",
|
|
193
|
+
"forge.cart.checkout": "Checkout",
|
|
194
|
+
"forge.cart.empty_title": "Your cart is empty.",
|
|
195
|
+
"forge.cart.gift_for": "Gift for {recipient_name} ({recipient_email})",
|
|
196
|
+
"forge.cart.incl_tax": "incl. tax",
|
|
197
|
+
"forge.cart.quantity": "Qty: {quantity}",
|
|
198
|
+
"forge.cart.ticket_fallback_title": "Ticket",
|
|
199
|
+
"forge.cart.ticket_line": "{ticket_title} × {quantity}",
|
|
200
|
+
"forge.cart.title": "My Cart",
|
|
201
|
+
"forge.cart.total": "Total:",
|
|
202
|
+
"forge.chat_room.channel_fallback": "channel",
|
|
203
|
+
"forge.chat_room.channels_title": "Channels",
|
|
204
|
+
"forge.chat_room.dm_fallback": "Direct message",
|
|
205
|
+
"forge.chat_room.empty_title": "No channels yet.",
|
|
206
|
+
"forge.chat_room.group_dms": "Direct messages",
|
|
207
|
+
"forge.chat_room.group_private": "Private channels",
|
|
208
|
+
"forge.chat_room.group_public": "Public",
|
|
209
|
+
"forge.chat_room.load_earlier": "Load earlier",
|
|
210
|
+
"forge.chat_room.new_message": "New message",
|
|
211
|
+
"forge.chat_room.select_channel": "Select a channel to start chatting",
|
|
212
|
+
"forge.chat_room.typing": "{users} typing…",
|
|
213
|
+
"forge.checkout.address1_label": "Address Line 1",
|
|
214
|
+
"forge.checkout.address1_placeholder": "12 address avenue, Bankstown",
|
|
215
|
+
"forge.checkout.address_required": "Address is required",
|
|
216
|
+
"forge.checkout.aria_coupon_code": "Coupon code",
|
|
217
|
+
"forge.checkout.back": "Back",
|
|
218
|
+
"forge.checkout.booking_fee": "Booking fee",
|
|
219
|
+
"forge.checkout.city_label": "City",
|
|
220
|
+
"forge.checkout.city_placeholder": "Sydney",
|
|
221
|
+
"forge.checkout.city_required": "City is required",
|
|
222
|
+
"forge.checkout.complete_checkout": "Complete Checkout",
|
|
223
|
+
"forge.checkout.continue_shopping": "Continue Shopping",
|
|
224
|
+
"forge.checkout.continue_to_payment": "Continue to Payment",
|
|
225
|
+
"forge.checkout.continue_to_shipping": "Continue to Shipping",
|
|
226
|
+
"forge.checkout.country_label": "Country",
|
|
227
|
+
"forge.checkout.country_required": "Country is required",
|
|
228
|
+
"forge.checkout.country_select": "Select Country",
|
|
229
|
+
"forge.checkout.coupon_amount_off": "{amount} off",
|
|
230
|
+
"forge.checkout.coupon_applied": "Coupon applied: {code}",
|
|
231
|
+
"forge.checkout.coupon_applied_at_payment": "Applied at payment",
|
|
232
|
+
"forge.checkout.coupon_apply": "Apply",
|
|
233
|
+
"forge.checkout.coupon_deferred_note": "Your code is applied when you reach payment.",
|
|
234
|
+
"forge.checkout.coupon_label": "Coupon Code",
|
|
235
|
+
"forge.checkout.coupon_percent_off": "{percent}% off",
|
|
236
|
+
"forge.checkout.coupon_placeholder": "Enter coupon code",
|
|
237
|
+
"forge.checkout.coupon_prompt": "Have a coupon code?",
|
|
238
|
+
"forge.checkout.coupon_remove": "Remove",
|
|
239
|
+
"forge.checkout.discount": "Discount",
|
|
240
|
+
"forge.checkout.email": "Email",
|
|
241
|
+
"forge.checkout.email_invalid": "Invalid email address",
|
|
242
|
+
"forge.checkout.email_placeholder": "Email",
|
|
243
|
+
"forge.checkout.email_required": "Email is required",
|
|
244
|
+
"forge.checkout.empty_body": "Add some items to your cart before checking out.",
|
|
245
|
+
"forge.checkout.empty_title": "Your cart is empty",
|
|
246
|
+
"forge.checkout.fetching_rates": "Fetching shipping rates...",
|
|
247
|
+
"forge.checkout.first_name": "First Name",
|
|
248
|
+
"forge.checkout.first_name_placeholder": "First Name",
|
|
249
|
+
"forge.checkout.first_name_required": "First name is required",
|
|
250
|
+
"forge.checkout.free_checkout_body": "This is a free checkout. You will not be charged anything.",
|
|
251
|
+
"forge.checkout.gift_for": "Gift for {recipient_name}",
|
|
252
|
+
"forge.checkout.guest_checkout": "Guest checkout",
|
|
253
|
+
"forge.checkout.guest_submit": "Continue as Guest",
|
|
254
|
+
"forge.checkout.guest_title": "Continue as Guest",
|
|
255
|
+
"forge.checkout.have_account": "Already have an account?",
|
|
256
|
+
"forge.checkout.hold_change_order": "Change your order",
|
|
257
|
+
"forge.checkout.incl_tax": "incl. tax",
|
|
258
|
+
"forge.checkout.join_email_list": "Sign up to receive updates",
|
|
259
|
+
"forge.checkout.last_name": "Last Name",
|
|
260
|
+
"forge.checkout.last_name_placeholder": "Last Name",
|
|
261
|
+
"forge.checkout.last_name_required": "Last name is required",
|
|
262
|
+
"forge.checkout.login": "Login",
|
|
263
|
+
"forge.checkout.no_shipping_options": "No shipping options available for this address.",
|
|
264
|
+
"forge.checkout.or": "Or",
|
|
265
|
+
"forge.checkout.payment_heading": "Payment",
|
|
266
|
+
"forge.checkout.payment_not_configured": "Payment is not configured",
|
|
267
|
+
"forge.checkout.payment_title": "Payment Information",
|
|
268
|
+
"forge.checkout.phone_label": "Phone Number",
|
|
269
|
+
"forge.checkout.phone_placeholder": "Phone number",
|
|
270
|
+
"forge.checkout.phone_required": "Phone number is required",
|
|
271
|
+
"forge.checkout.preparing_payment": "Preparing payment…",
|
|
272
|
+
"forge.checkout.qty": "Qty: {count}",
|
|
273
|
+
"forge.checkout.rate_days": "({days} days)",
|
|
274
|
+
"forge.checkout.rate_estimated_day": "Estimated {days} day",
|
|
275
|
+
"forge.checkout.rate_estimated_days": "Estimated {days} days",
|
|
276
|
+
"forge.checkout.shipping": "Shipping",
|
|
277
|
+
"forge.checkout.shipping_address_title": "Shipping Address",
|
|
278
|
+
"forge.checkout.shipping_options_title": "Shipping Options",
|
|
279
|
+
"forge.checkout.stage_address": "Address",
|
|
280
|
+
"forge.checkout.stage_payment": "Payment",
|
|
281
|
+
"forge.checkout.stage_shipping": "Shipping",
|
|
282
|
+
"forge.checkout.stage_user": "User",
|
|
283
|
+
"forge.checkout.state_label": "State/Province",
|
|
284
|
+
"forge.checkout.state_required": "State/Province is required",
|
|
285
|
+
"forge.checkout.state_select": "Select State/Province",
|
|
286
|
+
"forge.checkout.subtotal": "Subtotal",
|
|
287
|
+
"forge.checkout.summary_customer": "Customer",
|
|
288
|
+
"forge.checkout.summary_items": "Items",
|
|
289
|
+
"forge.checkout.summary_shipping_address": "Shipping Address",
|
|
290
|
+
"forge.checkout.summary_title": "Order Summary",
|
|
291
|
+
"forge.checkout.tax": "Tax",
|
|
292
|
+
"forge.checkout.ticket_fallback": "Ticket",
|
|
293
|
+
"forge.checkout.total": "Total",
|
|
294
|
+
"forge.checkout.zip_label": "Postal Code",
|
|
295
|
+
"forge.checkout.zip_placeholder": "2200",
|
|
296
|
+
"forge.checkout.zip_required": "Postal code is required",
|
|
297
|
+
"forge.checkout_confirmation.confirming": "Confirming your payment…",
|
|
298
|
+
"forge.checkout_confirmation.continue_shopping": "Continue shopping",
|
|
299
|
+
"forge.checkout_confirmation.delivery_digital": "Digital delivery",
|
|
300
|
+
"forge.checkout_confirmation.delivery_physical": "Physical delivery",
|
|
301
|
+
"forge.checkout_confirmation.delivery_service": "Service delivery",
|
|
302
|
+
"forge.checkout_confirmation.discount": "Discount",
|
|
303
|
+
"forge.checkout_confirmation.eyebrow_failed": "Payment failed",
|
|
304
|
+
"forge.checkout_confirmation.eyebrow_paid": "Order confirmed",
|
|
305
|
+
"forge.checkout_confirmation.eyebrow_pending": "Payment processing",
|
|
306
|
+
"forge.checkout_confirmation.failed_body": "Your payment didn’t go through, so you haven’t been charged. You can try again.",
|
|
307
|
+
"forge.checkout_confirmation.gift_for": "🎁 Gift for {name} ({email})",
|
|
308
|
+
"forge.checkout_confirmation.heading_failed": "Payment not completed",
|
|
309
|
+
"forge.checkout_confirmation.heading_paid": "Thank you! 🛍",
|
|
310
|
+
"forge.checkout_confirmation.heading_still_processing": "Still processing",
|
|
311
|
+
"forge.checkout_confirmation.item_price_qty": "{price} · Qty {quantity}",
|
|
312
|
+
"forge.checkout_confirmation.no_items": "No items in this order.",
|
|
313
|
+
"forge.checkout_confirmation.not_found_body": "This confirmation link looks incomplete or has expired.",
|
|
314
|
+
"forge.checkout_confirmation.not_found_error_body": "We couldn’t confirm this order. If you were charged, your receipt will still arrive by email.",
|
|
315
|
+
"forge.checkout_confirmation.not_found_title": "Order not found",
|
|
316
|
+
"forge.checkout_confirmation.order_section": "Your order",
|
|
317
|
+
"forge.checkout_confirmation.pending_body": "Hang tight: this only takes a few seconds.",
|
|
318
|
+
"forge.checkout_confirmation.receipt_emailed": "We’ve emailed your receipt to {email}.",
|
|
319
|
+
"forge.checkout_confirmation.receipt_on_way": "Your receipt is on its way.",
|
|
320
|
+
"forge.checkout_confirmation.recipient": "To {name} ({email})",
|
|
321
|
+
"forge.checkout_confirmation.return_to_checkout": "Return to checkout",
|
|
322
|
+
"forge.checkout_confirmation.row_date": "Date",
|
|
323
|
+
"forge.checkout_confirmation.row_email": "Email",
|
|
324
|
+
"forge.checkout_confirmation.row_name": "Name",
|
|
325
|
+
"forge.checkout_confirmation.row_order": "Order",
|
|
326
|
+
"forge.checkout_confirmation.shipping": "Shipping",
|
|
327
|
+
"forge.checkout_confirmation.slow_body": "This is taking longer than usual. We’ll email your receipt as soon as it clears.",
|
|
328
|
+
"forge.checkout_confirmation.subtotal": "Subtotal",
|
|
329
|
+
"forge.checkout_confirmation.tax": "Tax",
|
|
330
|
+
"forge.checkout_confirmation.tax_inclusive_note": "Includes {amount} tax",
|
|
331
|
+
"forge.checkout_confirmation.total": "Total",
|
|
332
|
+
"forge.checkout_confirmation.total_paid": "Total paid",
|
|
333
|
+
"forge.checkout_confirmation.view_orders": "View your orders",
|
|
334
|
+
"forge.coaching_booking.aria_close": "Close",
|
|
335
|
+
"forge.coaching_booking.aria_next_week": "Next week",
|
|
336
|
+
"forge.coaching_booking.aria_prev_week": "Previous week",
|
|
337
|
+
"forge.coaching_booking.back": "Back",
|
|
338
|
+
"forge.coaching_booking.confirm_booking": "Confirm Booking",
|
|
339
|
+
"forge.coaching_booking.confirm_email_placeholder": "Confirm email",
|
|
340
|
+
"forge.coaching_booking.confirm_leave": "Are you sure you want to leave checkout?",
|
|
341
|
+
"forge.coaching_booking.consent": "By continuing, you agree to receive booking confirmations and important updates about your session via email.",
|
|
342
|
+
"forge.coaching_booking.continue": "Continue",
|
|
343
|
+
"forge.coaching_booking.continue_to_payment": "Continue to payment",
|
|
344
|
+
"forge.coaching_booking.details_subtitle": "Please provide your contact information for the booking.",
|
|
345
|
+
"forge.coaching_booking.details_title": "Contact Information",
|
|
346
|
+
"forge.coaching_booking.email_invalid_hint": "Please enter a valid email address",
|
|
347
|
+
"forge.coaching_booking.email_mismatch_hint": "Email addresses do not match",
|
|
348
|
+
"forge.coaching_booking.email_placeholder": "Email",
|
|
349
|
+
"forge.coaching_booking.error_answer_required": "Please answer: {question}",
|
|
350
|
+
"forge.coaching_booking.error_email_invalid": "Please enter a valid email.",
|
|
351
|
+
"forge.coaching_booking.error_email_mismatch": "Emails do not match.",
|
|
352
|
+
"forge.coaching_booking.error_name_required": "Please enter your name.",
|
|
353
|
+
"forge.coaching_booking.field_required": "This field is required",
|
|
354
|
+
"forge.coaching_booking.first_name_placeholder": "First name",
|
|
355
|
+
"forge.coaching_booking.last_name_placeholder": "Last name",
|
|
356
|
+
"forge.coaching_booking.loading_slots": "Loading available slots…",
|
|
357
|
+
"forge.coaching_booking.no_slots": "No available slots for this week.",
|
|
358
|
+
"forge.coaching_booking.not_found": "Coaching session not found.",
|
|
359
|
+
"forge.coaching_booking.pay": "Pay {amount}",
|
|
360
|
+
"forge.coaching_booking.payment_not_configured": "Payment is not configured.",
|
|
361
|
+
"forge.coaching_booking.payment_subtitle": "Complete your purchase to secure your booking.",
|
|
362
|
+
"forge.coaching_booking.payment_title": "Payment",
|
|
363
|
+
"forge.coaching_booking.preparing_payment": "Preparing payment…",
|
|
364
|
+
"forge.coaching_booking.processing": "Processing…",
|
|
365
|
+
"forge.coaching_booking.reserving": "Reserving…",
|
|
366
|
+
"forge.coaching_booking.select_placeholder": "Select…",
|
|
367
|
+
"forge.coaching_booking.slot_title": "Select Availability",
|
|
368
|
+
"forge.coaching_booking.tax_included": "incl. {amount} tax",
|
|
369
|
+
"forge.coaching_booking.time_remaining": "Time remaining: {time}",
|
|
370
|
+
"forge.coaching_booking.timezone_note": "Times shown in your timezone",
|
|
371
|
+
"forge.coaching_booking.timezone_note_named": "Times shown in your timezone ({timezone})",
|
|
372
|
+
"forge.coaching_booking.title": "Book a session",
|
|
373
|
+
"forge.coaching_booking.total": "Total",
|
|
374
|
+
"forge.coaching_booking.total_amount": "Total Amount",
|
|
375
|
+
"forge.coaching_booking.trigger": "Select Availability",
|
|
376
|
+
"forge.coaching_booking.week_range": "{start} to {end}",
|
|
377
|
+
"forge.coaching_confirmation.body_confirmed": "Nice one, {first_name}. Your session is confirmed. We’ve sent the details to {email}.",
|
|
378
|
+
"forge.coaching_confirmation.body_confirmed_no_name": "Nice one. Your session is confirmed. We’ve sent the details to {email}.",
|
|
379
|
+
"forge.coaching_confirmation.body_incomplete": "Your booking is currently {status}. If you were charged, reach out and we’ll sort it right away.",
|
|
380
|
+
"forge.coaching_confirmation.calendar_title": "Coaching session",
|
|
381
|
+
"forge.coaching_confirmation.duration_minutes": "{count} minutes",
|
|
382
|
+
"forge.coaching_confirmation.email_fallback": "your inbox",
|
|
383
|
+
"forge.coaching_confirmation.explore": "Explore more sessions",
|
|
384
|
+
"forge.coaching_confirmation.eyebrow_action_needed": "Action needed",
|
|
385
|
+
"forge.coaching_confirmation.eyebrow_confirmed": "Session Pass",
|
|
386
|
+
"forge.coaching_confirmation.free": "Free session",
|
|
387
|
+
"forge.coaching_confirmation.loading": "Confirming your booking…",
|
|
388
|
+
"forge.coaching_confirmation.lost_body": "Confirming a booking needs the checkout details saved in the tab you started in, and they aren’t here. That usually means the tab was closed, this link was opened on a different device or browser, or private browsing cleared them. If your payment went through you’ll still get your confirmation email, so check your inbox before booking again. Otherwise, pick a new time and start over.",
|
|
389
|
+
"forge.coaching_confirmation.lost_restart": "Pick a new time",
|
|
390
|
+
"forge.coaching_confirmation.lost_title": "We can’t confirm your booking in this browser",
|
|
391
|
+
"forge.coaching_confirmation.not_given": "Not given",
|
|
392
|
+
"forge.coaching_confirmation.row_duration": "Duration",
|
|
393
|
+
"forge.coaching_confirmation.row_email": "Email",
|
|
394
|
+
"forge.coaching_confirmation.row_guest": "Guest",
|
|
395
|
+
"forge.coaching_confirmation.row_paid": "Paid",
|
|
396
|
+
"forge.coaching_confirmation.row_reference": "Reference",
|
|
397
|
+
"forge.coaching_confirmation.row_session": "Session",
|
|
398
|
+
"forge.coaching_confirmation.row_tax": "Tax",
|
|
399
|
+
"forge.coaching_confirmation.status_unknown": "unresolved",
|
|
400
|
+
"forge.coaching_confirmation.tax_included": "Includes {amount} tax",
|
|
401
|
+
"forge.coaching_confirmation.title_confirmed": "You’re booked in.",
|
|
402
|
+
"forge.coaching_confirmation.title_incomplete": "Booking not completed",
|
|
403
|
+
"forge.coaching_detail.about_title": "About this session",
|
|
404
|
+
"forge.coaching_detail.duration_minutes": "{minutes} minutes",
|
|
405
|
+
"forge.coaching_detail.not_found": "Coaching session not found.",
|
|
406
|
+
"forge.cohort_page.curriculum_title": "Curriculum",
|
|
407
|
+
"forge.cohort_page.date_range": "{start} to {end}",
|
|
408
|
+
"forge.cohort_page.date_tbd": "TBD",
|
|
409
|
+
"forge.cohort_page.not_found": "Cohort not found.",
|
|
410
|
+
"forge.confirm_subscription.back_to_site": "Back to site",
|
|
411
|
+
"forge.confirm_subscription.expired_body": "This confirmation link is no longer valid. Try subscribing again.",
|
|
412
|
+
"forge.confirm_subscription.expired_title": "Link expired",
|
|
413
|
+
"forge.confirm_subscription.explore_site": "Explore the site",
|
|
414
|
+
"forge.confirm_subscription.invalid_body": "This confirmation link is missing or malformed.",
|
|
415
|
+
"forge.confirm_subscription.invalid_title": "Invalid link",
|
|
416
|
+
"forge.confirm_subscription.loading": "Confirming your subscription…",
|
|
417
|
+
"forge.confirm_subscription.success_body": "You’ll now receive updates from {profile_name}.",
|
|
418
|
+
"forge.confirm_subscription.success_body_generic": "You’ll now receive updates from us.",
|
|
419
|
+
"forge.confirm_subscription.success_title": "You’re on the list 🎉",
|
|
420
|
+
"forge.contact_form.email_placeholder": "Email",
|
|
421
|
+
"forge.contact_form.join_email_list": "Also join the email list",
|
|
422
|
+
"forge.contact_form.message_placeholder": "Your message",
|
|
423
|
+
"forge.contact_form.name_placeholder": "Your name",
|
|
424
|
+
"forge.contact_form.submit": "Send Message",
|
|
425
|
+
"forge.contact_form.submitting": "Sending…",
|
|
426
|
+
"forge.contact_form.success": "Message sent. We'll be in touch.",
|
|
427
|
+
"forge.cookie_consent.accept_all": "Accept all",
|
|
428
|
+
"forge.cookie_consent.aria_close": "Close",
|
|
429
|
+
"forge.cookie_consent.aria_dialog": "Cookie consent",
|
|
430
|
+
"forge.cookie_consent.description": "This site uses cookies for performance, analytics, and personalization to improve the site and give you a better experience. Accept all, reject all but strictly necessary, or choose which to allow.",
|
|
431
|
+
"forge.cookie_consent.privacy_policy": "Privacy Policy",
|
|
432
|
+
"forge.cookie_consent.reject_all": "Reject all",
|
|
433
|
+
"forge.cookie_consent.save_settings": "Save settings",
|
|
434
|
+
"forge.cookie_consent.title": "Cookie Consent",
|
|
435
|
+
"forge.cookie_consent.toggle_functional": "Functional",
|
|
436
|
+
"forge.cookie_consent.toggle_marketing": "Marketing",
|
|
437
|
+
"forge.cookie_consent.toggle_performance": "Performance",
|
|
438
|
+
"forge.course_access.aria_dismiss": "Dismiss",
|
|
439
|
+
"forge.course_access.dismiss": "Not now",
|
|
440
|
+
"forge.course_access.file_size_mb": "{size} MB",
|
|
441
|
+
"forge.course_access.lessons_completed": "{completed} of {total} lessons completed",
|
|
442
|
+
"forge.course_access.no_lesson_selected": "No lesson selected.",
|
|
443
|
+
"forge.course_access.no_video": "No video available for this lesson",
|
|
444
|
+
"forge.course_access.resources_title": "Additional Resources",
|
|
445
|
+
"forge.course_access.secure_action": "Secure my access",
|
|
446
|
+
"forge.course_access.secure_prompt_lead": "Anyone with this link can open your course. Create an account with",
|
|
447
|
+
"forge.course_access.secure_prompt_tail": "to keep it to yourself.",
|
|
448
|
+
"forge.course_access.signed_in_as": "Signed in as",
|
|
449
|
+
"forge.course_checkout.aria_close": "Close",
|
|
450
|
+
"forge.course_checkout.back": "Back",
|
|
451
|
+
"forge.course_checkout.confirm_email_placeholder": "Confirm email",
|
|
452
|
+
"forge.course_checkout.confirm_leave": "Are you sure you want to leave checkout?",
|
|
453
|
+
"forge.course_checkout.confirm_purchase": "Confirm Purchase",
|
|
454
|
+
"forge.course_checkout.consent": "By continuing, you agree to receive course access and important updates via email.",
|
|
455
|
+
"forge.course_checkout.continue_to_payment": "Continue to Payment",
|
|
456
|
+
"forge.course_checkout.details_subtitle": "Please provide your contact information for the purchase.",
|
|
457
|
+
"forge.course_checkout.details_title": "Contact Information",
|
|
458
|
+
"forge.course_checkout.email_invalid_hint": "Please enter a valid email address",
|
|
459
|
+
"forge.course_checkout.email_mismatch_hint": "Email addresses do not match",
|
|
460
|
+
"forge.course_checkout.email_placeholder": "Email",
|
|
461
|
+
"forge.course_checkout.error_answer_required": "Please answer: {question}",
|
|
462
|
+
"forge.course_checkout.error_email_invalid": "Please enter a valid email.",
|
|
463
|
+
"forge.course_checkout.error_email_mismatch": "Emails do not match.",
|
|
464
|
+
"forge.course_checkout.error_name_required": "Please enter your name.",
|
|
465
|
+
"forge.course_checkout.field_required": "This field is required",
|
|
466
|
+
"forge.course_checkout.first_name_placeholder": "First name",
|
|
467
|
+
"forge.course_checkout.free_title": "Get access",
|
|
468
|
+
"forge.course_checkout.last_name_placeholder": "Last name",
|
|
469
|
+
"forge.course_checkout.not_found": "Course not found.",
|
|
470
|
+
"forge.course_checkout.pay": "Pay {amount}",
|
|
471
|
+
"forge.course_checkout.payment_not_configured": "Payment is not configured.",
|
|
472
|
+
"forge.course_checkout.payment_subtitle": "Complete your purchase to access the course.",
|
|
473
|
+
"forge.course_checkout.payment_title": "Payment",
|
|
474
|
+
"forge.course_checkout.preparing_payment": "Preparing payment…",
|
|
475
|
+
"forge.course_checkout.processing": "Processing…",
|
|
476
|
+
"forge.course_checkout.questions_title": "Additional Information",
|
|
477
|
+
"forge.course_checkout.select_placeholder": "Select…",
|
|
478
|
+
"forge.course_checkout.tax_added": "+ {amount} tax",
|
|
479
|
+
"forge.course_checkout.title": "Checkout",
|
|
480
|
+
"forge.course_checkout.total": "Total",
|
|
481
|
+
"forge.course_checkout.total_amount": "Total Amount",
|
|
482
|
+
"forge.course_checkout.trigger": "Enroll",
|
|
483
|
+
"forge.course_confirmation.body_confirmed": "Welcome aboard, {first_name}! Your spot is secured.",
|
|
484
|
+
"forge.course_confirmation.body_confirmed_no_name": "Welcome aboard! Your spot is secured.",
|
|
485
|
+
"forge.course_confirmation.body_incomplete": "Your enrollment is {status}. If you were charged, contact support and we’ll help.",
|
|
486
|
+
"forge.course_confirmation.explore": "Browse more courses",
|
|
487
|
+
"forge.course_confirmation.eyebrow_action_needed": "Action needed",
|
|
488
|
+
"forge.course_confirmation.eyebrow_confirmed": "Enrollment",
|
|
489
|
+
"forge.course_confirmation.free": "Free",
|
|
490
|
+
"forge.course_confirmation.loading": "Confirming your enrollment…",
|
|
491
|
+
"forge.course_confirmation.lost_body": "Confirming an enrollment needs the checkout details saved in the tab you started in, and they aren’t here. That usually means the tab was closed, this link was opened on a different device or browser, or private browsing cleared them. If your payment went through you’ll still get your enrollment email, so check your inbox before paying again. Otherwise, start the enrollment over.",
|
|
492
|
+
"forge.course_confirmation.lost_restart": "Start over",
|
|
493
|
+
"forge.course_confirmation.lost_title": "We can’t confirm your enrollment in this browser",
|
|
494
|
+
"forge.course_confirmation.module_count": "{count} modules",
|
|
495
|
+
"forge.course_confirmation.not_found": "We couldn’t find your enrollment.",
|
|
496
|
+
"forge.course_confirmation.not_given": "Not given",
|
|
497
|
+
"forge.course_confirmation.row_paid": "Paid",
|
|
498
|
+
"forge.course_confirmation.row_reference": "Reference",
|
|
499
|
+
"forge.course_confirmation.row_student": "Student",
|
|
500
|
+
"forge.course_confirmation.row_tax": "Tax",
|
|
501
|
+
"forge.course_confirmation.tax_included": "Includes {amount} tax",
|
|
502
|
+
"forge.course_confirmation.title_confirmed": "You’re enrolled 🎓",
|
|
503
|
+
"forge.course_confirmation.title_incomplete": "Enrollment not completed",
|
|
504
|
+
"forge.course_detail.content_title": "Course Content",
|
|
505
|
+
"forge.course_detail.free": "Free",
|
|
506
|
+
"forge.course_detail.not_found": "Course not found.",
|
|
507
|
+
"forge.courses_grid.empty_title": "No courses yet.",
|
|
508
|
+
"forge.courses_grid.free": "Free",
|
|
509
|
+
"forge.currency_switcher.aria_currency": "Currency",
|
|
510
|
+
"forge.discount_code.applied_line": "{code} · {amount} off",
|
|
511
|
+
"forge.discount_code.apply": "Apply",
|
|
512
|
+
"forge.discount_code.applying": "Applying…",
|
|
513
|
+
"forge.discount_code.aria_input": "Discount code",
|
|
514
|
+
"forge.discount_code.deferred_note": "Your code is applied at the next step.",
|
|
515
|
+
"forge.discount_code.discount": "Discount",
|
|
516
|
+
"forge.discount_code.discount_with_codes": "Discount ({codes})",
|
|
517
|
+
"forge.discount_code.placeholder": "Enter code",
|
|
518
|
+
"forge.discount_code.prompt": "Have a discount code?",
|
|
519
|
+
"forge.discount_code.remove": "Remove",
|
|
520
|
+
"forge.discount_code.subtotal": "Subtotal",
|
|
521
|
+
"forge.donation_button.close": "Close",
|
|
522
|
+
"forge.donation_button.cover_fees": "Cover the {amount} processing fee",
|
|
523
|
+
"forge.donation_button.custom_amount": "Custom amount",
|
|
524
|
+
"forge.donation_button.custom_amount_min": "Custom amount (min {amount})",
|
|
525
|
+
"forge.donation_button.donate": "Donate",
|
|
526
|
+
"forge.donation_button.email_placeholder": "Email",
|
|
527
|
+
"forge.donation_button.failed_body": "Your card was not charged. Please try again.",
|
|
528
|
+
"forge.donation_button.first_name_placeholder": "First name",
|
|
529
|
+
"forge.donation_button.last_name_placeholder": "Last name",
|
|
530
|
+
"forge.donation_button.message_placeholder": "Message (optional)",
|
|
531
|
+
"forge.donation_button.payment_not_configured": "Payment is not configured.",
|
|
532
|
+
"forge.donation_button.processing": "Processing…",
|
|
533
|
+
"forge.donation_button.result_failed_title": "Payment failed",
|
|
534
|
+
"forge.donation_button.result_success_title": "Donation received",
|
|
535
|
+
"forge.donation_button.retry": "Try again",
|
|
536
|
+
"forge.donation_button.submit": "Donate",
|
|
537
|
+
"forge.donation_button.submit_amount": "Donate {amount}",
|
|
538
|
+
"forge.donation_button.success_body": "Thank you for your contribution.",
|
|
539
|
+
"forge.donation_button.tax_included": "incl. {amount} tax",
|
|
540
|
+
"forge.donation_button.title": "Support",
|
|
541
|
+
"forge.donation_button.total": "Total",
|
|
542
|
+
"forge.donation_page.subtitle": "Your contribution keeps this going. Thank you.",
|
|
543
|
+
"forge.donation_page.title": "Support the work",
|
|
544
|
+
"forge.email_list_form.confirm_required": "Almost there: check your email to confirm.",
|
|
545
|
+
"forge.email_list_form.email_placeholder": "Email address",
|
|
546
|
+
"forge.email_list_form.name_placeholder": "Your name",
|
|
547
|
+
"forge.email_list_form.phone_placeholder": "Phone number",
|
|
548
|
+
"forge.email_list_form.submit": "Join",
|
|
549
|
+
"forge.email_list_form.submitting": "Joining…",
|
|
550
|
+
"forge.email_list_form.success": "Thanks for subscribing!",
|
|
551
|
+
"forge.email_list_form.title": "Join my email list",
|
|
552
|
+
"forge.ended_broadcast.banner": "Broadcast Ended",
|
|
553
|
+
"forge.ended_broadcast.close_instruction": "Close the broadcast page with the \"X\" at the top left and you will land on the host's live events page.",
|
|
554
|
+
"forge.ended_broadcast.notice_title": "Important information",
|
|
555
|
+
"forge.ended_broadcast.refresh_instruction": "You can keep refreshing this page until the broadcast is live again. Join it and you should be able to watch the event again. You will also get an email when the broadcast is live again.",
|
|
556
|
+
"forge.ended_broadcast.why_body": "If this happened in the middle of the event, it was most likely caused by an unstable internet connection at the host's end.",
|
|
557
|
+
"forge.ended_broadcast.why_label": "Why did the broadcast end?",
|
|
558
|
+
"forge.event_confirmation.body_incomplete": "Your order is {status}. If you were charged, contact support.",
|
|
559
|
+
"forge.event_confirmation.body_paid": "We’ve sent your tickets to {email}.",
|
|
560
|
+
"forge.event_confirmation.explore": "Browse more events",
|
|
561
|
+
"forge.event_confirmation.eyebrow_paid": "E-Ticket",
|
|
562
|
+
"forge.event_confirmation.eyebrow_status": "Order {status}",
|
|
563
|
+
"forge.event_confirmation.loading": "Finalizing your order…",
|
|
564
|
+
"forge.event_confirmation.not_found": "We couldn’t find your order.",
|
|
565
|
+
"forge.event_confirmation.not_given": "Not given",
|
|
566
|
+
"forge.event_confirmation.row_guest": "Guest",
|
|
567
|
+
"forge.event_confirmation.row_reference": "Reference",
|
|
568
|
+
"forge.event_confirmation.tax": "Tax",
|
|
569
|
+
"forge.event_confirmation.tax_included": "Includes {amount} tax",
|
|
570
|
+
"forge.event_confirmation.tickets_heading": "Tickets",
|
|
571
|
+
"forge.event_confirmation.title_incomplete": "Order not completed",
|
|
572
|
+
"forge.event_confirmation.title_paid": "You’re going! 🎟",
|
|
573
|
+
"forge.event_confirmation.total": "Total",
|
|
574
|
+
"forge.event_confirmation.total_paid": "Total paid",
|
|
575
|
+
"forge.event_confirmation.virtual_location": "Virtual event",
|
|
576
|
+
"forge.event_countdown.past": "This event has passed",
|
|
577
|
+
"forge.event_countdown.unit_days": "Days",
|
|
578
|
+
"forge.event_countdown.unit_hours": "Hours",
|
|
579
|
+
"forge.event_countdown.unit_minutes": "Minutes",
|
|
580
|
+
"forge.event_countdown.unit_seconds": "Seconds",
|
|
581
|
+
"forge.event_detail.about_title": "About this event",
|
|
582
|
+
"forge.event_detail.buy_tickets": "Buy tickets",
|
|
583
|
+
"forge.event_detail.location_virtual": "Virtual",
|
|
584
|
+
"forge.event_detail.not_found": "Event not found.",
|
|
585
|
+
"forge.event_detail.presale_only": "Tickets for this event are presale only.",
|
|
586
|
+
"forge.event_detail.price_from_label": "From",
|
|
587
|
+
"forge.event_series_detail.date_count": "{count} dates",
|
|
588
|
+
"forge.event_series_detail.date_count_range": "{count} dates · {first_date} to {last_date}",
|
|
589
|
+
"forge.event_series_detail.location_online": "Online",
|
|
590
|
+
"forge.event_series_detail.not_found": "Series not found.",
|
|
591
|
+
"forge.event_series_detail.status_cancelled": "Cancelled",
|
|
592
|
+
"forge.event_series_detail.status_sold_out": "Sold out",
|
|
593
|
+
"forge.event_tickets.add_to_cart": "Add to cart",
|
|
594
|
+
"forge.event_tickets.aria_close": "Close",
|
|
595
|
+
"forge.event_tickets.attendee_is_you": "(that’s you)",
|
|
596
|
+
"forge.event_tickets.attendee_name_placeholder": "Full name",
|
|
597
|
+
"forge.event_tickets.attendees_description": "This event prints each attendee’s name on their own pass, so the door list matches who actually turns up.",
|
|
598
|
+
"forge.event_tickets.attendees_title": "Who is coming?",
|
|
599
|
+
"forge.event_tickets.back": "Back",
|
|
600
|
+
"forge.event_tickets.booking_fee": "Booking fee",
|
|
601
|
+
"forge.event_tickets.checkout_tickets_only": "Checkout tickets only",
|
|
602
|
+
"forge.event_tickets.confirm": "Confirm",
|
|
603
|
+
"forge.event_tickets.confirm_email_placeholder": "Confirm email",
|
|
604
|
+
"forge.event_tickets.continue": "Continue",
|
|
605
|
+
"forge.event_tickets.continue_addons": "Continue to add-ons",
|
|
606
|
+
"forge.event_tickets.continue_payment": "Continue to payment",
|
|
607
|
+
"forge.event_tickets.details_title": "Your details",
|
|
608
|
+
"forge.event_tickets.email_mismatch": "Email addresses do not match",
|
|
609
|
+
"forge.event_tickets.email_placeholder": "Email",
|
|
610
|
+
"forge.event_tickets.error_answer_required": "Please answer: {question}",
|
|
611
|
+
"forge.event_tickets.error_email": "Please enter a valid email.",
|
|
612
|
+
"forge.event_tickets.error_email_mismatch": "Emails do not match.",
|
|
613
|
+
"forge.event_tickets.error_name": "Please enter your name.",
|
|
614
|
+
"forge.event_tickets.expired_badge": "This ticket has expired",
|
|
615
|
+
"forge.event_tickets.expired_notice": "This ticket has expired and is no longer available",
|
|
616
|
+
"forge.event_tickets.expires_days_one": "Expires in {count} day",
|
|
617
|
+
"forge.event_tickets.expires_days_other": "Expires in {count} days",
|
|
618
|
+
"forge.event_tickets.expires_hours": "Expires in {count} hours",
|
|
619
|
+
"forge.event_tickets.expires_hours_soon_one": "⏰ Expires in {count} hour!",
|
|
620
|
+
"forge.event_tickets.expires_hours_soon_other": "⏰ Expires in {count} hours!",
|
|
621
|
+
"forge.event_tickets.field_required": "This field is required",
|
|
622
|
+
"forge.event_tickets.first_name_placeholder": "First name",
|
|
623
|
+
"forge.event_tickets.invalid_email": "Please enter a valid email address",
|
|
624
|
+
"forge.event_tickets.item_label_event": "This event",
|
|
625
|
+
"forge.event_tickets.item_label_ticket": "This ticket",
|
|
626
|
+
"forge.event_tickets.last_name_placeholder": "Last name",
|
|
627
|
+
"forge.event_tickets.leave_confirm": "Are you sure you want to leave checkout?",
|
|
628
|
+
"forge.event_tickets.less_than_hour": "⏰ Less than 1 hour remaining!",
|
|
629
|
+
"forge.event_tickets.minutes_left_one": "⚠️ Only {count} minute left!",
|
|
630
|
+
"forge.event_tickets.minutes_left_other": "⚠️ Only {count} minutes left!",
|
|
631
|
+
"forge.event_tickets.no_tickets": "No tickets available.",
|
|
632
|
+
"forge.event_tickets.not_found": "Event not found.",
|
|
633
|
+
"forge.event_tickets.pay": "Pay {amount}",
|
|
634
|
+
"forge.event_tickets.payment_not_configured": "Payment is not configured.",
|
|
635
|
+
"forge.event_tickets.payment_subtitle": "Complete your purchase to secure your tickets.",
|
|
636
|
+
"forge.event_tickets.payment_title": "Payment",
|
|
637
|
+
"forge.event_tickets.preparing_payment": "Preparing payment…",
|
|
638
|
+
"forge.event_tickets.presale_badge": "Presale",
|
|
639
|
+
"forge.event_tickets.price_from": "from",
|
|
640
|
+
"forge.event_tickets.processing": "Processing…",
|
|
641
|
+
"forge.event_tickets.pwyw_above_max": "The most you can pay is {max}, so we'll use that.",
|
|
642
|
+
"forge.event_tickets.pwyw_below_min": "The minimum is {min}, so we'll use that.",
|
|
643
|
+
"forge.event_tickets.pwyw_each": "{amount} each · {total} for {count}",
|
|
644
|
+
"forge.event_tickets.pwyw_label": "Name your price",
|
|
645
|
+
"forge.event_tickets.pwyw_per_ticket": "Per ticket.",
|
|
646
|
+
"forge.event_tickets.pwyw_range_min": "(minimum {min})",
|
|
647
|
+
"forge.event_tickets.pwyw_range_min_max": "(minimum {min}, up to {max})",
|
|
648
|
+
"forge.event_tickets.remove_discount": "Remove discount",
|
|
649
|
+
"forge.event_tickets.select_option": "Select…",
|
|
650
|
+
"forge.event_tickets.select_title": "Select Tickets",
|
|
651
|
+
"forge.event_tickets.subtotal": "Subtotal",
|
|
652
|
+
"forge.event_tickets.tax": "Tax",
|
|
653
|
+
"forge.event_tickets.title": "Tickets",
|
|
654
|
+
"forge.event_tickets.total": "Total",
|
|
655
|
+
"forge.event_tickets.total_amount": "Total Amount",
|
|
656
|
+
"forge.event_tickets.trigger": "Buy tickets",
|
|
657
|
+
"forge.event_tickets.update_cart": "Update cart",
|
|
658
|
+
"forge.event_tickets.update_cart_addons": "Update cart & choose add-ons",
|
|
659
|
+
"forge.event_waitlist.aria_email": "Email",
|
|
660
|
+
"forge.event_waitlist.aria_first_name": "First name",
|
|
661
|
+
"forge.event_waitlist.aria_last_name": "Last name",
|
|
662
|
+
"forge.event_waitlist.buy_within": "Buy within {time}",
|
|
663
|
+
"forge.event_waitlist.cancel": "Cancel",
|
|
664
|
+
"forge.event_waitlist.email_invalid": "Please enter a valid email address.",
|
|
665
|
+
"forge.event_waitlist.email_placeholder": "Email",
|
|
666
|
+
"forge.event_waitlist.email_promise": "We'll only email you about tickets for this event.",
|
|
667
|
+
"forge.event_waitlist.first_name_placeholder": "First name (optional)",
|
|
668
|
+
"forge.event_waitlist.join": "Join waitlist",
|
|
669
|
+
"forge.event_waitlist.join_error": "We could not add you to the waitlist. Please try again.",
|
|
670
|
+
"forge.event_waitlist.joining": "Joining…",
|
|
671
|
+
"forge.event_waitlist.last_name_placeholder": "Last name (optional)",
|
|
672
|
+
"forge.event_waitlist.leave": "Leave waitlist",
|
|
673
|
+
"forge.event_waitlist.leave_error": "We could not remove you from the waitlist. Please try again.",
|
|
674
|
+
"forge.event_waitlist.leaving": "Leaving…",
|
|
675
|
+
"forge.event_waitlist.offer_available": "Tickets available",
|
|
676
|
+
"forge.event_waitlist.offer_closed": "This offer has closed",
|
|
677
|
+
"forge.event_waitlist.offer_expired_at": "Your offer expired at {deadline}.",
|
|
678
|
+
"forge.event_waitlist.offer_not_reserved": "Your offer closes {deadline}. Tickets are not reserved. Buy from the ticket options above to secure them.",
|
|
679
|
+
"forge.event_waitlist.offer_reserved": "Reserved for you",
|
|
680
|
+
"forge.event_waitlist.on_the_list": "You're on the list",
|
|
681
|
+
"forge.event_waitlist.position_label": "Position",
|
|
682
|
+
"forge.event_waitlist.quantity_label": "How many tickets?",
|
|
683
|
+
"forge.event_waitlist.quantity_requested_one": "{count} ticket requested",
|
|
684
|
+
"forge.event_waitlist.quantity_requested_other": "{count} tickets requested",
|
|
685
|
+
"forge.event_waitlist.reserved_until_one": "Your ticket is reserved until {deadline}. Nobody else can buy it. Check out from the ticket options above.",
|
|
686
|
+
"forge.event_waitlist.reserved_until_other": "Your {count} tickets are reserved until {deadline}. Nobody else can buy them. Check out from the ticket options above.",
|
|
687
|
+
"forge.event_waitlist.sold_out": "Sold out",
|
|
688
|
+
"forge.event_waitlist.subtitle": "Sold out. Join the queue and we'll email you if a ticket is released.",
|
|
689
|
+
"forge.event_waitlist.ticket_fallback": "Ticket",
|
|
690
|
+
"forge.event_waitlist.title": "Waitlist",
|
|
691
|
+
"forge.events_list.empty_title": "No upcoming events.",
|
|
692
|
+
"forge.events_list.virtual": "Virtual",
|
|
693
|
+
"forge.forgot_password_form.back_to_login": "Back to login",
|
|
694
|
+
"forge.forgot_password_form.email_label": "Email",
|
|
695
|
+
"forge.forgot_password_form.email_placeholder": "Email",
|
|
696
|
+
"forge.forgot_password_form.error": "Something went wrong. Please try again.",
|
|
697
|
+
"forge.forgot_password_form.login_link": "Login",
|
|
698
|
+
"forge.forgot_password_form.login_prompt": "Already have an account?",
|
|
699
|
+
"forge.forgot_password_form.sent_body": "If an account exists with that email, we've sent a password reset link. Please check your inbox.",
|
|
700
|
+
"forge.forgot_password_form.sent_title": "Check your email",
|
|
701
|
+
"forge.forgot_password_form.submit": "Send reset email",
|
|
702
|
+
"forge.forgot_password_form.submitting": "Sending…",
|
|
703
|
+
"forge.forgot_password_form.title": "Reset password",
|
|
704
|
+
"forge.form_renderer.invalid_email": "Please enter a valid email address",
|
|
705
|
+
"forge.form_renderer.required_error": "\"{label}\" is required",
|
|
706
|
+
"forge.form_renderer.select_placeholder": "Select…",
|
|
707
|
+
"forge.form_renderer.submit": "Submit",
|
|
708
|
+
"forge.form_renderer.submit_error": "Failed to submit. Please try again.",
|
|
709
|
+
"forge.form_renderer.submitting": "Submitting…",
|
|
710
|
+
"forge.form_renderer.thank_you_body": "Your response has been recorded.",
|
|
711
|
+
"forge.form_renderer.thank_you_title": "Thank you!",
|
|
712
|
+
"forge.install_banner.aria_dismiss": "Dismiss",
|
|
713
|
+
"forge.install_banner.description": "Add it to your home screen for a faster, full-screen experience.",
|
|
714
|
+
"forge.install_banner.install": "Install",
|
|
715
|
+
"forge.install_banner.ios_instructions": "Tap the Share icon, then “Add to Home Screen”.",
|
|
716
|
+
"forge.install_banner.not_now": "Not now",
|
|
717
|
+
"forge.install_banner.title": "Install this app",
|
|
718
|
+
"forge.invoice_confirmation.load_error": "We couldn’t load this invoice.",
|
|
719
|
+
"forge.invoice_confirmation.paid_body": "Thank you, {client_name}. Invoice {invoice_number} is now paid.",
|
|
720
|
+
"forge.invoice_confirmation.paid_title": "Payment received",
|
|
721
|
+
"forge.invoice_confirmation.unpaid_body": "Invoice {invoice_number} is {status}. If you were charged, please contact support.",
|
|
722
|
+
"forge.invoice_confirmation.unpaid_title": "Payment not completed",
|
|
723
|
+
"forge.invoice_confirmation.view_invoice": "View invoice",
|
|
724
|
+
"forge.invoice_payment.billed_to": "Billed to: {client_name}",
|
|
725
|
+
"forge.invoice_payment.billed_to_company": "Billed to: {client_name} · {client_company}",
|
|
726
|
+
"forge.invoice_payment.download_pdf": "Download PDF",
|
|
727
|
+
"forge.invoice_payment.issued": "Issued: {issue_date}",
|
|
728
|
+
"forge.invoice_payment.issued_due": "Issued: {issue_date} · Due: {due_date}",
|
|
729
|
+
"forge.invoice_payment.line_item_quantity": "× {quantity}",
|
|
730
|
+
"forge.invoice_payment.not_found": "Invoice not found.",
|
|
731
|
+
"forge.invoice_payment.paid_notice": "This invoice has been paid. Thank you!",
|
|
732
|
+
"forge.invoice_payment.pay_amount": "Pay {amount}",
|
|
733
|
+
"forge.invoice_payment.payment_heading": "Payment",
|
|
734
|
+
"forge.invoice_payment.payment_unavailable": "Payment is not available right now.",
|
|
735
|
+
"forge.invoice_payment.preparing_payment": "Preparing payment…",
|
|
736
|
+
"forge.invoice_payment.preparing_pdf": "Preparing…",
|
|
737
|
+
"forge.invoice_payment.tax": "Tax",
|
|
738
|
+
"forge.invoice_payment.title": "Invoice {invoice_number}",
|
|
739
|
+
"forge.invoice_payment.total": "Total",
|
|
740
|
+
"forge.lead_magnet.description": "Your download is ready. Click the button below to get your file.",
|
|
741
|
+
"forge.lead_magnet.download": "Download Now",
|
|
742
|
+
"forge.lead_magnet.error_title": "Oops!",
|
|
743
|
+
"forge.lead_magnet.expired_link": "This link is invalid or has expired.",
|
|
744
|
+
"forge.lead_magnet.invalid_link": "Invalid link",
|
|
745
|
+
"forge.lead_magnet.preparing": "Preparing…",
|
|
746
|
+
"forge.lead_magnet.thank_you": "Thank you for subscribing!",
|
|
747
|
+
"forge.live_broadcast_list.empty_body": "There are currently no live broadcasts available.",
|
|
748
|
+
"forge.live_broadcast_list.empty_title": "No Live Broadcasts",
|
|
749
|
+
"forge.live_broadcast_list.error_body": "Unable to load live broadcasts at this time.",
|
|
750
|
+
"forge.live_broadcast_list.error_title": "Error Loading Broadcasts",
|
|
751
|
+
"forge.live_broadcast_list.subtitle": "Watch live streams and events",
|
|
752
|
+
"forge.live_broadcast_list.title": "Live Broadcasts",
|
|
753
|
+
"forge.loading.loading": "Loading",
|
|
754
|
+
"forge.login_form.back_to_login": "Back to login",
|
|
755
|
+
"forge.login_form.code_sent_to": "We sent a 6-digit code to",
|
|
756
|
+
"forge.login_form.email_label": "Email",
|
|
757
|
+
"forge.login_form.email_placeholder": "Email",
|
|
758
|
+
"forge.login_form.forgot_password": "Forgot password?",
|
|
759
|
+
"forge.login_form.no_account": "Don't have an account?",
|
|
760
|
+
"forge.login_form.password_label": "Password",
|
|
761
|
+
"forge.login_form.password_placeholder": "Password",
|
|
762
|
+
"forge.login_form.resend_code": "Resend code",
|
|
763
|
+
"forge.login_form.sending_code": "Sending code…",
|
|
764
|
+
"forge.login_form.sign_up": "Sign up",
|
|
765
|
+
"forge.login_form.submit": "Login",
|
|
766
|
+
"forge.login_form.title": "Login",
|
|
767
|
+
"forge.login_form.verify_submit": "Verify & Sign In",
|
|
768
|
+
"forge.login_form.verify_title": "Verify your email",
|
|
769
|
+
"forge.login_form.verifying": "Verifying…",
|
|
770
|
+
"forge.membership_checkout.amount_below_minimum": "Enter {minimum} or more.",
|
|
771
|
+
"forge.membership_checkout.amount_not_positive": "Enter an amount greater than zero.",
|
|
772
|
+
"forge.membership_checkout.back": "Back",
|
|
773
|
+
"forge.membership_checkout.billing_cycle_label": "Billing cycle",
|
|
774
|
+
"forge.membership_checkout.billing_monthly": "Monthly",
|
|
775
|
+
"forge.membership_checkout.billing_monthly_price": "Monthly ({amount})",
|
|
776
|
+
"forge.membership_checkout.billing_monthly_pwyw": "Pay what you want from {amount}/mo",
|
|
777
|
+
"forge.membership_checkout.billing_yearly": "Yearly",
|
|
778
|
+
"forge.membership_checkout.billing_yearly_price": "Yearly ({amount})",
|
|
779
|
+
"forge.membership_checkout.billing_yearly_pwyw": "Pay what you want from {amount}/yr",
|
|
780
|
+
"forge.membership_checkout.choose_title": "Choose your membership",
|
|
781
|
+
"forge.membership_checkout.confirm_change": "Confirm change",
|
|
782
|
+
"forge.membership_checkout.current_plan": "Current plan",
|
|
783
|
+
"forge.membership_checkout.empty_title": "No memberships available",
|
|
784
|
+
"forge.membership_checkout.free": "Free",
|
|
785
|
+
"forge.membership_checkout.more_benefits": "+{count} more",
|
|
786
|
+
"forge.membership_checkout.no_tier_body": "Select a membership tier to continue.",
|
|
787
|
+
"forge.membership_checkout.on_this_plan": "You are on this plan",
|
|
788
|
+
"forge.membership_checkout.pay": "Pay {amount}",
|
|
789
|
+
"forge.membership_checkout.payment_summary": "{tier_name} · {amount} / {cycle}",
|
|
790
|
+
"forge.membership_checkout.payment_title": "Payment",
|
|
791
|
+
"forge.membership_checkout.per_month": "per month",
|
|
792
|
+
"forge.membership_checkout.per_year": "per year",
|
|
793
|
+
"forge.membership_checkout.pwyw_charged_as": "You will be charged {{amount}}.",
|
|
794
|
+
"forge.membership_checkout.pwyw_label": "How much would you like to pay?",
|
|
795
|
+
"forge.membership_checkout.pwyw_min": "(minimum {amount})",
|
|
796
|
+
"forge.membership_checkout.select_tier": "Select this tier",
|
|
797
|
+
"forge.membership_checkout.submit": "Subscribe",
|
|
798
|
+
"forge.membership_checkout.submitting": "Processing…",
|
|
799
|
+
"forge.membership_checkout.title": "Join {tier_name}",
|
|
800
|
+
"forge.membership_checkout.total": "Total",
|
|
801
|
+
"forge.membership_checkout.view_memberships": "View memberships",
|
|
802
|
+
"forge.membership_tiers.empty_title": "No membership tiers available.",
|
|
803
|
+
"forge.membership_tiers.heading": "Membership",
|
|
804
|
+
"forge.membership_tiers.price_free": "Free",
|
|
805
|
+
"forge.membership_tiers.price_monthly": "{amount}/mo",
|
|
806
|
+
"forge.membership_tiers.price_pwyw": "Pay what you want from {amount}/mo",
|
|
807
|
+
"forge.membership_tiers.price_pwyw_yearly": "Pay what you want from {amount}/yr",
|
|
808
|
+
"forge.membership_tiers.price_yearly": "{amount}/yr",
|
|
809
|
+
"forge.membership_tiers.select": "Select",
|
|
810
|
+
"forge.offer_button.buy_now": "Buy now",
|
|
811
|
+
"forge.offer_button.confirm_email": "Confirm email",
|
|
812
|
+
"forge.offer_button.continue_to_payment": "Continue to payment",
|
|
813
|
+
"forge.offer_button.email": "Email",
|
|
814
|
+
"forge.offer_button.first_name": "First name",
|
|
815
|
+
"forge.offer_button.last_name": "Last name",
|
|
816
|
+
"forge.offer_button.not_found": "Product not found.",
|
|
817
|
+
"forge.offer_button.option_label": "Option",
|
|
818
|
+
"forge.offer_button.payment_unavailable": "Payment is not configured.",
|
|
819
|
+
"forge.offer_button.processing": "Processing…",
|
|
820
|
+
"forge.offer_button.quantity_label": "Quantity",
|
|
821
|
+
"forge.offer_button.total": "Total",
|
|
822
|
+
"forge.offer_button.variant_default": "Default",
|
|
823
|
+
"forge.payment_link_confirmation.back_to_payment": "Back to payment",
|
|
824
|
+
"forge.payment_link_confirmation.load_error": "We couldn’t load this payment.",
|
|
825
|
+
"forge.payment_link_confirmation.paid_body": "Thank you, {recipient_name}. Your payment to {profile_name} is complete.",
|
|
826
|
+
"forge.payment_link_confirmation.paid_title": "Payment received",
|
|
827
|
+
"forge.payment_link_confirmation.unpaid_body": "This payment is {status}. If you were charged, please contact support.",
|
|
828
|
+
"forge.payment_link_confirmation.unpaid_title": "Payment not completed",
|
|
829
|
+
"forge.payment_link_payment.billed_to": "Billed to {recipient_name}",
|
|
830
|
+
"forge.payment_link_payment.from_profile": "from {profile_name}",
|
|
831
|
+
"forge.payment_link_payment.not_found": "Payment link not found.",
|
|
832
|
+
"forge.payment_link_payment.paid_notice": "This payment has been completed. Thank you!",
|
|
833
|
+
"forge.payment_link_payment.pay_amount": "Pay {amount}",
|
|
834
|
+
"forge.payment_link_payment.payment_heading": "Payment",
|
|
835
|
+
"forge.payment_link_payment.payment_unavailable": "Payment is not available right now.",
|
|
836
|
+
"forge.payment_link_payment.preparing_payment": "Preparing payment…",
|
|
837
|
+
"forge.payment_link_payment.tax_added": "+ {tax_amount} tax",
|
|
838
|
+
"forge.payment_link_payment.title": "Payment request",
|
|
839
|
+
"forge.podcast_episode.next": "Next →",
|
|
840
|
+
"forge.podcast_episode.not_found": "Episode not found.",
|
|
841
|
+
"forge.podcast_episode.pause": "Pause",
|
|
842
|
+
"forge.podcast_episode.play": "Play episode",
|
|
843
|
+
"forge.podcast_episode.previous": "← Previous",
|
|
844
|
+
"forge.podcast_episode.show_fallback": "Podcast",
|
|
845
|
+
"forge.podcast_list.empty_title": "No podcasts yet.",
|
|
846
|
+
"forge.podcast_list.episode_count_one": "{count} episode",
|
|
847
|
+
"forge.podcast_list.episode_count_other": "{count} episodes",
|
|
848
|
+
"forge.podcast_list.title": "Podcasts",
|
|
849
|
+
"forge.podcast_show.aria_next": "Next episode",
|
|
850
|
+
"forge.podcast_show.aria_pause_episode": "Pause episode",
|
|
851
|
+
"forge.podcast_show.aria_play_episode": "Play episode",
|
|
852
|
+
"forge.podcast_show.aria_play_pause": "Play/pause",
|
|
853
|
+
"forge.podcast_show.aria_previous": "Previous episode",
|
|
854
|
+
"forge.podcast_show.empty_title": "No episodes yet.",
|
|
855
|
+
"forge.podcast_show.not_found": "Podcast not found.",
|
|
856
|
+
"forge.podcast_show.now_playing": "Now playing",
|
|
857
|
+
"forge.posts_feed.empty_body": "No posts yet.",
|
|
858
|
+
"forge.presale_code.checking": "Checking…",
|
|
859
|
+
"forge.presale_code.input_placeholder": "Enter code",
|
|
860
|
+
"forge.presale_code.prompt": "Have a presale code?",
|
|
861
|
+
"forge.presale_code.remove": "Remove",
|
|
862
|
+
"forge.presale_code.unlock": "Unlock",
|
|
863
|
+
"forge.presale_code.unlocked": "Presale unlocked: {code}",
|
|
864
|
+
"forge.product_browse_nav.aria_collapse": "Collapse {category}",
|
|
865
|
+
"forge.product_browse_nav.aria_expand": "Expand {category}",
|
|
866
|
+
"forge.product_browse_nav.aria_nav": "Browse the store",
|
|
867
|
+
"forge.product_browse_nav.categories_title": "Categories",
|
|
868
|
+
"forge.product_browse_nav.collections_title": "Collections",
|
|
869
|
+
"forge.product_detail.add_to_cart": "Add to cart",
|
|
870
|
+
"forge.product_detail.aria_pause": "Pause",
|
|
871
|
+
"forge.product_detail.aria_play": "Play",
|
|
872
|
+
"forge.product_detail.badge_album": "Album · {count} tracks",
|
|
873
|
+
"forge.product_detail.badge_single": "Single",
|
|
874
|
+
"forge.product_detail.buy_now": "Buy now",
|
|
875
|
+
"forge.product_detail.categories_label": "Categories:",
|
|
876
|
+
"forge.product_detail.category_label": "Category:",
|
|
877
|
+
"forge.product_detail.collection_label": "Collection:",
|
|
878
|
+
"forge.product_detail.collections_label": "Collections:",
|
|
879
|
+
"forge.product_detail.credits_title": "Credits",
|
|
880
|
+
"forge.product_detail.details_title": "Product details",
|
|
881
|
+
"forge.product_detail.explicit_badge": "E",
|
|
882
|
+
"forge.product_detail.gate_item_product": "This product",
|
|
883
|
+
"forge.product_detail.gate_item_release": "This release",
|
|
884
|
+
"forge.product_detail.members_only": "Members only",
|
|
885
|
+
"forge.product_detail.no_preview": "No preview available.",
|
|
886
|
+
"forge.product_detail.not_found": "Product not found.",
|
|
887
|
+
"forge.product_detail.option_aria": "{axis}: {value}",
|
|
888
|
+
"forge.product_detail.out_of_stock": "Out of stock",
|
|
889
|
+
"forge.product_detail.pay_what_you_want": "(Pay what you want)",
|
|
890
|
+
"forge.product_detail.quantity": "Quantity",
|
|
891
|
+
"forge.product_detail.select_options": "Select options",
|
|
892
|
+
"forge.product_detail.sku": "SKU: {sku}",
|
|
893
|
+
"forge.product_detail.sku_none": "N/A",
|
|
894
|
+
"forge.product_detail.type": "Type: {type}",
|
|
895
|
+
"forge.product_detail.unknown_artist": "Unknown Artist",
|
|
896
|
+
"forge.reaction_bar.comment_placeholder": "Add a comment…",
|
|
897
|
+
"forge.reaction_bar.submit": "Post",
|
|
898
|
+
"forge.replay_list.back": "← Back to broadcasts",
|
|
899
|
+
"forge.replay_list.empty_title": "No replay broadcasts available for this ticket.",
|
|
900
|
+
"forge.replay_list.ended": "Ended {date}",
|
|
901
|
+
"forge.replay_list.error": "Invalid ticket id or no broadcasts found. Please check your ticket id and try again.",
|
|
902
|
+
"forge.replay_list.no_ticket_title": "Enter Your Ticket ID",
|
|
903
|
+
"forge.replay_list.title": "Replay Broadcasts",
|
|
904
|
+
"forge.replay_list.video_unavailable": "Video not available",
|
|
905
|
+
"forge.reset_password_form.back_to_login": "Back to login",
|
|
906
|
+
"forge.reset_password_form.confirm_password_label": "Confirm password",
|
|
907
|
+
"forge.reset_password_form.confirm_password_placeholder": "Confirm password",
|
|
908
|
+
"forge.reset_password_form.error": "Something went wrong. Please try again.",
|
|
909
|
+
"forge.reset_password_form.invalid_body": "This password reset link is invalid or has expired.",
|
|
910
|
+
"forge.reset_password_form.invalid_title": "Invalid link",
|
|
911
|
+
"forge.reset_password_form.password_label": "Password",
|
|
912
|
+
"forge.reset_password_form.password_placeholder": "Password",
|
|
913
|
+
"forge.reset_password_form.password_too_short": "Password must be at least 8 characters.",
|
|
914
|
+
"forge.reset_password_form.passwords_mismatch": "Passwords don't match.",
|
|
915
|
+
"forge.reset_password_form.request_new_link": "Request a new reset link",
|
|
916
|
+
"forge.reset_password_form.submit": "Reset password",
|
|
917
|
+
"forge.reset_password_form.submitting": "Resetting…",
|
|
918
|
+
"forge.reset_password_form.success_body": "Your password has been reset successfully.",
|
|
919
|
+
"forge.reset_password_form.success_title": "Password reset",
|
|
920
|
+
"forge.reset_password_form.title": "Reset password",
|
|
921
|
+
"forge.resume_cart.browse_store": "Browse the store",
|
|
922
|
+
"forge.resume_cart.continue_link": "Pick up where you left off",
|
|
923
|
+
"forge.resume_cart.continue_title": "Waiting on its own page",
|
|
924
|
+
"forge.resume_cart.coupon_notice": "Your code {code} is still good. Enter it at checkout.",
|
|
925
|
+
"forge.resume_cart.dropped_reason": "Sold only with its ticket",
|
|
926
|
+
"forge.resume_cart.dropped_title": "Left out, because the ticket it goes with could not be put back",
|
|
927
|
+
"forge.resume_cart.empty_body": "Nothing from that basket can be bought any more. Have a look at what is in the store now.",
|
|
928
|
+
"forge.resume_cart.empty_title": "That basket has moved on",
|
|
929
|
+
"forge.resume_cart.go_to_checkout": "Go to checkout",
|
|
930
|
+
"forge.resume_cart.invalid_body": "This link has expired, has already been used, or belongs to a different store. Your basket is safe: start again from the store.",
|
|
931
|
+
"forge.resume_cart.invalid_title": "This link no longer works",
|
|
932
|
+
"forge.resume_cart.loading": "Fetching your basket…",
|
|
933
|
+
"forge.resume_cart.reason_removed": "No longer sold",
|
|
934
|
+
"forge.resume_cart.reason_sold_out": "Sold out",
|
|
935
|
+
"forge.resume_cart.reason_unavailable": "Not available",
|
|
936
|
+
"forge.resume_cart.reprice_notice": "The price of {count} item(s) has changed since you were last here. The new price is shown.",
|
|
937
|
+
"forge.resume_cart.subtitle": "{count} item(s) are back in your basket.",
|
|
938
|
+
"forge.resume_cart.subtotal": "Subtotal",
|
|
939
|
+
"forge.resume_cart.title": "Your basket is back",
|
|
940
|
+
"forge.resume_cart.unavailable_title": "Could not be put back",
|
|
941
|
+
"forge.review_form.aria_rating": "Rating",
|
|
942
|
+
"forge.review_form.aria_star_one": "1 star",
|
|
943
|
+
"forge.review_form.aria_star_other": "{count} stars",
|
|
944
|
+
"forge.review_form.body_label": "Your review",
|
|
945
|
+
"forge.review_form.body_placeholder": "What did you like or dislike?",
|
|
946
|
+
"forge.review_form.create_title": "Leave a review",
|
|
947
|
+
"forge.review_form.edit_title": "Edit your review",
|
|
948
|
+
"forge.review_form.edit_window_note": "You can edit your review within 30 days of writing it. Edits are re-checked before publishing.",
|
|
949
|
+
"forge.review_form.expired_body": "Review links are only valid for a limited time after your purchase. Thanks anyway for your support!",
|
|
950
|
+
"forge.review_form.expired_body_entity": "Review links are only valid for a limited time after your purchase of “{title}”. Thanks anyway for your support!",
|
|
951
|
+
"forge.review_form.expired_title": "This review link has expired",
|
|
952
|
+
"forge.review_form.held_body": "Your review has been received and is awaiting approval. It will appear once it's been checked.",
|
|
953
|
+
"forge.review_form.how_was": "How was",
|
|
954
|
+
"forge.review_form.invalid_body": "The link may have been mistyped or is no longer active. If you received it by email, try opening it again from the original message.",
|
|
955
|
+
"forge.review_form.invalid_title": "This review link isn't valid",
|
|
956
|
+
"forge.review_form.live_body": "Your review is now live.",
|
|
957
|
+
"forge.review_form.live_body_entity": "Your review is now live on “{title}”.",
|
|
958
|
+
"forge.review_form.locked_body": "Reviews can be edited for 30 days after they're written. This one can no longer be changed.",
|
|
959
|
+
"forge.review_form.locked_title": "You've already reviewed this",
|
|
960
|
+
"forge.review_form.name_hint": "Shown publicly next to your review.",
|
|
961
|
+
"forge.review_form.name_label": "Display name",
|
|
962
|
+
"forge.review_form.optional": "(optional)",
|
|
963
|
+
"forge.review_form.rating_label": "Your rating *",
|
|
964
|
+
"forge.review_form.submit": "Submit review",
|
|
965
|
+
"forge.review_form.thanks_title": "Thank you for your review!",
|
|
966
|
+
"forge.review_form.title_label": "Title",
|
|
967
|
+
"forge.review_form.title_placeholder": "Sum it up in a few words",
|
|
968
|
+
"forge.review_form.update_submit": "Update review",
|
|
969
|
+
"forge.signup_form.accept_terms": "I accept the Terms and Privacy Policy",
|
|
970
|
+
"forge.signup_form.code_label": "Verification code",
|
|
971
|
+
"forge.signup_form.code_sent": "We emailed a 6-digit code to {email}. Enter it to finish creating your account.",
|
|
972
|
+
"forge.signup_form.email_label": "Email",
|
|
973
|
+
"forge.signup_form.email_placeholder": "Email",
|
|
974
|
+
"forge.signup_form.first_name_label": "First name",
|
|
975
|
+
"forge.signup_form.first_name_placeholder": "First name",
|
|
976
|
+
"forge.signup_form.last_name_label": "Last name",
|
|
977
|
+
"forge.signup_form.last_name_placeholder": "Last name",
|
|
978
|
+
"forge.signup_form.login_link": "Login",
|
|
979
|
+
"forge.signup_form.login_prompt": "Already have an account?",
|
|
980
|
+
"forge.signup_form.password_label": "Password",
|
|
981
|
+
"forge.signup_form.password_placeholder": "At least 8 characters",
|
|
982
|
+
"forge.signup_form.resend_code": "Resend code",
|
|
983
|
+
"forge.signup_form.submit": "Sign up",
|
|
984
|
+
"forge.signup_form.submitting": "Working…",
|
|
985
|
+
"forge.signup_form.title": "Create your account",
|
|
986
|
+
"forge.signup_form.verify_submit": "Verify and continue",
|
|
987
|
+
"forge.signup_form.verify_title": "Check your email",
|
|
988
|
+
"forge.ticket_transfer.claim_error": "We could not claim this ticket. Your link may have expired or already been used.",
|
|
989
|
+
"forge.ticket_transfer.claim_name_label": "Your name",
|
|
990
|
+
"forge.ticket_transfer.claim_name_placeholder": "Your name (optional)",
|
|
991
|
+
"forge.ticket_transfer.claim_submit": "Claim ticket",
|
|
992
|
+
"forge.ticket_transfer.claim_subtitle": "Someone sent you their ticket. Tell us what to put on it. You do not need an account.",
|
|
993
|
+
"forge.ticket_transfer.claim_title": "Claim your ticket",
|
|
994
|
+
"forge.ticket_transfer.claimed_title": "The ticket is yours",
|
|
995
|
+
"forge.ticket_transfer.claiming": "Claiming…",
|
|
996
|
+
"forge.ticket_transfer.close": "Close",
|
|
997
|
+
"forge.ticket_transfer.invalid_body": "Your link is missing its code. Please use the link from your email.",
|
|
998
|
+
"forge.ticket_transfer.invalid_title": "Invalid claim link",
|
|
999
|
+
"forge.ticket_transfer.open_send": "Send to someone",
|
|
1000
|
+
"forge.ticket_transfer.pending_expired": "That link has expired. Withdraw it to send this ticket to someone else.",
|
|
1001
|
+
"forge.ticket_transfer.pending_open": "Your QR code keeps working until they claim it.",
|
|
1002
|
+
"forge.ticket_transfer.recipient_email_label": "Recipient email address",
|
|
1003
|
+
"forge.ticket_transfer.recipient_email_placeholder": "Their email address",
|
|
1004
|
+
"forge.ticket_transfer.recipient_name_label": "Recipient name",
|
|
1005
|
+
"forge.ticket_transfer.recipient_name_placeholder": "Their name (optional)",
|
|
1006
|
+
"forge.ticket_transfer.row_title": "Transfer this ticket",
|
|
1007
|
+
"forge.ticket_transfer.send": "Send ticket",
|
|
1008
|
+
"forge.ticket_transfer.send_error": "We could not send this ticket. Please try again.",
|
|
1009
|
+
"forge.ticket_transfer.send_note": "They get a link to claim it. Once they do, this ticket becomes theirs and your QR code stops working.",
|
|
1010
|
+
"forge.ticket_transfer.sending": "Sending…",
|
|
1011
|
+
"forge.ticket_transfer.withdraw": "Withdraw transfer",
|
|
1012
|
+
"forge.ticket_transfer.withdraw_error": "We could not withdraw this transfer. Please try again.",
|
|
1013
|
+
"forge.ticket_transfer.withdrawing": "Withdrawing…",
|
|
1014
|
+
"forge.user_menu.account": "My Account",
|
|
1015
|
+
"forge.user_menu.aria_trigger": "Account",
|
|
1016
|
+
"forge.user_menu.create_account": "Create account",
|
|
1017
|
+
"forge.user_menu.log_in": "Log in",
|
|
1018
|
+
"forge.user_menu.log_out": "Log out"
|
|
1019
|
+
}
|