Skip to content

Commit b9d4f88

Browse files
committed
Publish 2026-01-09
1 parent 5e1ba58 commit b9d4f88

2 files changed

Lines changed: 20 additions & 3 deletions

File tree

elements/locales.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -646,9 +646,12 @@ export const isEUCountry = [
646646
].includes(country);
647647

648648
export const offer = (() => {
649+
return null;
650+
/*
649651
const date = new Date();
650652
const y = date.getFullYear();
651653
const m = date.getMonth() + 1;
652654
const d = date.getDate();
653655
return (y === 2025 && m === 12 && d === 31) || (y === 2026 && m === 1 && d === 1) ? {end: 'January 1'} : null;
656+
*/
654657
})();

elements/pay-tiers.js

Lines changed: 17 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -141,6 +141,7 @@ const locales = {
141141
one_time: '一次性付款',
142142
pay_with: '',
143143
price_per_user: '每位用户价格',
144+
payment_description: '用户一次性付费',
144145
region_currency: '货币',
145146
pay: '支付',
146147
save: '节省',
@@ -158,6 +159,7 @@ const locales = {
158159
corporate: 'Organisationen',
159160
one_time: 'Einmalzahlung',
160161
price_per_user: 'Preis pro Benutzer',
162+
payment_description: 'Einmalige Zahlung pro Nutzer',
161163
pay: 'Zahlen',
162164
save: 'Sparen',
163165
hint: 'Nutzung am Arbeitsplatz?<br>Bitten Sie Ihren Chef,<br>die Kosten für<br>Barrierefreiheits-<br>Software zu übernehmen.',
@@ -174,6 +176,7 @@ const locales = {
174176
corporate: 'Organisations',
175177
one_time: 'Paiement unique',
176178
price_per_user: 'Prix par utilisateur',
179+
payment_description: 'Paiement unique par utilisateur',
177180
pay: 'Payer',
178181
save: 'Économisez',
179182
hint: `Vous l'utilisez au travail?<br>Demandez à votre patron<br>de payer le logiciel<br>d'accessibilité.`,
@@ -190,6 +193,7 @@ const locales = {
190193
corporate: 'Organizaciones',
191194
one_time: 'Pago único',
192195
price_per_user: 'Precio por usuario',
196+
payment_description: 'Pago único por usuario',
193197
pay: 'Pagar',
194198
save: 'Ahorra',
195199
hint: '¿Lo usas en el trabajo?<br>Pídele a tu jefe que<br>pague el software de<br>accesibilidad.',
@@ -206,6 +210,7 @@ const locales = {
206210
corporate: 'Organisaties',
207211
one_time: 'Eenmalige betaling',
208212
price_per_user: 'Prijs per gebruiker',
213+
payment_description: 'Eenmalige betaling per gebruiker',
209214
pay: 'Betaling',
210215
save: 'Bespaar',
211216
hint: 'Gebruikt u het op het werk?<br>Vraag uw baas om<br>te betalen voor<br>toegankelijkheidssoftware.',
@@ -222,6 +227,7 @@ const locales = {
222227
corporate: '組織',
223228
one_time: '1回限りの支払い',
224229
price_per_user: 'ユーザーあたりの価格',
230+
payment_description: 'ユーザーごとに1回限りの支払い',
225231
pay: '支払う',
226232
save: '節約',
227233
hint: '職場で使用していますか?<br>上司にアクセシビリティ<br>ソフトウェアの費用を負担<br>してもらいます。',
@@ -310,14 +316,19 @@ const htmlText = `
310316
<a class="button-link button-link--paypal button-link--inactive js-link-paypal" href="${DEFAULT_LINK_PAYPAL}" target="_blank" rel="noopener" data-s="d-side-paypal">
311317
<span class="button-link__text"><span data-text="pay_with">Pay with</span> <span class="button-link__text--paypal">PayPal</span></span>
312318
</a>
313-
<a class="button-link button-link--card button-link--inactive js-link-stripe" href="${DEFAULT_LINK_STRIPE}" target="_blank" rel="noopener" data-s="d-side-stripe">
319+
<a class="button-link button-link--card js-link-stripe" href="${DEFAULT_LINK_STRIPE}" target="_blank" rel="noopener" data-s="d-side-stripe">
320+
<!--
314321
<i class="button-link__card-icon js-card-icon"></i>
315-
<span class="button-link__text" data-text="card">Debit or Credit Card</span>
322+
-->
323+
<span class="button-link__text ">
324+
<span data-text="pay">Pay</span>
325+
<span class="js-price-regular">${DEFAULT_PRICE_REGULAR}</span>
326+
</span>
316327
</a>
317328
<a class="button-link button-link--other button-link--inactive js-link-other" href="${Links.Redirect.CORPORATE}" target="_blank" rel="noopener" data-s="d-side-other">
318329
<span class="button-link__text" data-text="more">Contact us</span>
319330
</a>
320-
<a class="button-link button-link--paddle js-link-paddle" href="#pay" data-s="d-side-paddle">
331+
<a class="button-link button-link--paddle button-link--inactive js-link-paddle" href="#pay" data-s="d-side-paddle">
321332
<span class="button-link__text">
322333
<span data-text="pay">Pay</span>
323334
<span class="${offer ? 'js-price-discount' : 'js-price-regular'}">${offer ? DEFAULT_PRICE_DISCOUNT : DEFAULT_PRICE_REGULAR}</span>
@@ -731,6 +742,7 @@ const cssText = `
731742
display: none;
732743
}
733744
.button-link--card .button-link__text {
745+
font-weight: bold;
734746
text-transform: none;
735747
transform: none;
736748
}
@@ -849,11 +861,13 @@ const cssText = `
849861
.payment-methods__paypal {
850862
aspect-ratio: 101 / 32;
851863
background-image: url(/images/paypal-logo-white.svg);
864+
display: none !important;
852865
height: 1rem;
853866
}
854867
.payment-methods__gpay {
855868
aspect-ratio: 41 / 17;
856869
background-image: url(/images/icon-gpay.svg);
870+
display: none !important;
857871
height: 1rem;
858872
}
859873
.payment-methods__visa {

0 commit comments

Comments
 (0)