1<?php
2
3// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the GNU Affero General Public License v3.0.
4// See the LICENCE file in the repository root for full licence text.
5
6return [
7 'cart' => [
8 'checkout' => 'Checkout',
9 'empty_cart' => 'Remove all items from cart',
10 'info' => ':count_delimited item in cart ($:subtotal)|:count_delimited items in cart ($:subtotal)',
11 'more_goodies' => 'I want to check out more goodies before completing the order',
12 'shipping_fees' => 'shipping fees',
13 'title' => 'Shopping Cart',
14 'total' => 'total',
15
16 'errors_no_checkout' => [
17 'line_1' => 'Uh oh, there are problems with your cart preventing a checkout!',
18 'line_2' => 'Remove or update items above to continue.',
19 ],
20
21 'empty' => [
22 'text' => 'Your cart is empty.',
23 'return_link' => [
24 '_' => 'Return to the :link to find some goodies!',
25 'link_text' => 'store listing',
26 ],
27 ],
28 ],
29
30 'checkout' => [
31 'cart_problems' => 'Uh oh, there are problems with your cart!',
32 'cart_problems_edit' => 'Click here to go edit it.',
33 'declined' => 'The payment was cancelled.',
34 'delayed_shipping' => 'We are currently overwhelmed with orders! You are welcome to place your order, but please expect an **additional 1-2 week delay** while we catch up with existing orders.',
35 'hide_from_activity' => 'Hide all osu!supporter tags in this order from my activity',
36 'old_cart' => 'Your cart appears to be out of date and has been reloaded, please try again.',
37 'pay' => 'Checkout with Paypal',
38 'title_compact' => 'checkout',
39
40 'has_pending' => [
41 '_' => 'You have incomplete checkouts, click :link to view them.',
42 'link_text' => 'here',
43 ],
44
45 'pending_checkout' => [
46 'line_1' => 'A previous checkout was started but did not finish.',
47 'line_2' => 'Resume your checkout by selecting a payment method.',
48 ],
49 ],
50
51 'discount' => 'save :percent%',
52 'free' => 'free!',
53
54 'invoice' => [
55 'contact' => 'Contact:',
56 'date' => 'Date:',
57 'echeck_delay' => 'As your payment was an eCheck, please allow up to 10 extra days for the payment to clear through PayPal!',
58 'echeck_denied' => 'The eCheck payment was rejected by PayPal.',
59 'hide_from_activity' => 'osu!supporter tags in this order are not displayed in your recent activities.',
60 'sent_via' => 'Sent Via:',
61 'shipping_to' => 'Shipping To:',
62 'title' => 'Invoice',
63 'title_compact' => 'invoice',
64
65 'status' => [
66 'cancelled' => [
67 'title' => 'Your order has been cancelled',
68 'line_1' => [
69 '_' => "If you didn't request a cancellation please contact :link quoting your order number (#:order_number).",
70 'link_text' => 'osu!store support',
71 ],
72 ],
73 'delivered' => [
74 'title' => 'Your order has been delivered! We hope you are enjoying it!',
75 'line_1' => [
76 '_' => 'If you have any issues with your purchase, please contact the :link.',
77 'link_text' => 'osu!store support',
78 ],
79 ],
80 'prepared' => [
81 'title' => 'Your order is being prepared!',
82 'line_1' => 'Please wait a bit longer for it to be shipped. Tracking information will appear here once the order has been processed and sent. This can take up to 5 days (but usually less!) depending on how busy we are.',
83 'line_2' => 'We send all orders from Japan using a variety of shipping services depending on the weight and value. This area will update with specifics once we have shipped the order.',
84 ],
85 'processing' => [
86 'title' => 'Your payment has not yet been confirmed!',
87 'line_1' => 'If you have already paid, we may still be waiting to receive confirmation of your payment. Please refresh this page in a minute or two!',
88 'line_2' => [
89 '_' => 'If you encountered a problem during checkout, :link',
90 'link_text' => 'click here to resume your checkout',
91 ],
92 ],
93 'shipped' => [
94 'title' => 'Your order has been shipped!',
95 'tracking_details' => 'Tracking details follow:',
96 'no_tracking_details' => [
97 '_' => "We don't have tracking details as we sent your package via Air Mail, but you can expect to receive it within 1-3 weeks. For Europe, sometimes customs can delay the order out of our control. If you have any concerns, please reply to the order confirmation email you received (or :link).",
98 'link_text' => 'send us an email',
99 ],
100 ],
101 ],
102 ],
103
104 'order' => [
105 'cancel' => 'Cancel Order',
106 'cancel_confirm' => 'This order will be cancelled and payment will not be accepted for it. The payment provider might not release any reserved funds immediately. Are you sure?',
107 'cancel_not_allowed' => 'This order cannot be cancelled at this time.',
108 'invoice' => 'View Invoice',
109 'no_orders' => 'No orders to view.',
110 'paid_on' => 'Order placed :date',
111 'resume' => 'Resume Checkout',
112 'shipping_and_handling' => 'Shipping & Handling',
113 'shopify_expired' => 'The checkout link for this order has expired.',
114 'subtotal' => 'Subtotal',
115 'total' => 'Total',
116
117 'details' => [
118 'order_number' => 'Order #',
119 'payment_terms' => 'Payment Terms',
120 'salesperson' => 'Salesperson',
121 'shipping_method' => 'Shipping Method',
122 'shipping_terms' => 'Shipping Terms',
123 'title' => 'Order Details',
124 ],
125
126 'item' => [
127 'quantity' => 'quantity',
128
129 'display_name' => [
130 'supporter_tag' => ':name for :username (:duration)',
131 ],
132
133 'subtext' => [
134 'supporter_tag' => 'Message: :message',
135 ],
136 ],
137
138 'not_modifiable_exception' => [
139 'cancelled' => 'You cannot modify your order as it has been cancelled.',
140 'checkout' => 'You cannot modify your order while it is being processed.', // checkout and processing should have the same message.
141 'default' => 'Order is not modifiable',
142 'delivered' => 'You cannot modify your order as it has already been delivered.',
143 'paid' => 'You cannot modify your order as it has already been paid for.',
144 'processing' => 'You cannot modify your order while it is being processed.',
145 'shipped' => 'You cannot modify your order as it has already been shipped.',
146 ],
147
148 'status' => [
149 'cancelled' => 'Cancelled',
150 'checkout' => 'Preparing',
151 'delivered' => 'Delivered',
152 'paid' => 'Paid',
153 'processing' => 'Pending confirmation',
154 'shipped' => 'Shipped',
155 'title' => 'Order Status',
156 ],
157
158 'thanks' => [
159 'title' => 'Thanks for your order!',
160 'line_1' => [
161 '_' => 'You will receive a confirmation email soon. If you have any enquiries, please :link!',
162 'link_text' => 'contact us',
163 ],
164 ],
165 ],
166
167 'product' => [
168 'name' => 'Name',
169
170 'stock' => [
171 'out' => 'This item is currently out of stock. Check back later!',
172 'out_with_alternative' => 'Unfortunately this item is out of stock. Use the dropdown to choose a different type or check back later!',
173 ],
174
175 'add_to_cart' => 'Add to Cart',
176 'notify' => 'Notify me when available!',
177
178 'notification_success' => 'you will be notified when we have new stock. click :link to cancel',
179 'notification_remove_text' => 'here',
180
181 'notification_in_stock' => 'This product is already in stock!',
182 ],
183
184 'supporter_tag' => [
185 'gift' => 'gift to player',
186 'gift_message' => 'add an optional message to your gift! (up to :length characters)',
187
188 'require_login' => [
189 '_' => 'You need to be :link to get an osu!supporter tag!',
190 'link_text' => 'signed in',
191 ],
192 ],
193
194 'username_change' => [
195 'check' => 'Enter a username to check availability!',
196 'checking' => 'Checking availability of :username...',
197 'placeholder' => 'Requested Username',
198 'label' => 'New Username',
199 'current' => 'Your current username is ":username".',
200
201 'require_login' => [
202 '_' => 'You need to be :link to change your name!',
203 'link_text' => 'signed in',
204 ],
205 ],
206
207 'xsolla' => [
208 'distributor' => 'Xsolla is an authorised<br>global distributor of osu!',
209 ],
210];