@shift72/core-template 1.2.0 → 1.4.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.
Files changed (63) hide show
  1. package/CHANGELOG.md +38 -1
  2. package/kibble.json +3 -3
  3. package/package.json +2 -2
  4. package/scripts/core-template-version.js +4 -4
  5. package/scripts/css-local-get.js +12 -5
  6. package/scripts/css-local-put.js +3 -3
  7. package/scripts/language-file-validator.js +1 -1
  8. package/scripts/translate.mjs +2 -3
  9. package/site/ar_LB.all.json +124 -10
  10. package/site/ca_ES.all.json +78 -8
  11. package/site/da_DK.all.json +80 -10
  12. package/site/de_DE.all.json +78 -8
  13. package/site/el_EL.all.json +83 -4
  14. package/site/en_AU.all.json +83 -4
  15. package/site/es_ES.all.json +87 -4
  16. package/site/es_MX.all.json +89 -6
  17. package/site/et_ET.all.json +77 -7
  18. package/site/fi_FI.all.json +81 -2
  19. package/site/fr_FR.all.json +88 -5
  20. package/site/hr_HR.all.json +93 -9
  21. package/site/hu_HU.all.json +77 -7
  22. package/site/it_IT.all.json +87 -4
  23. package/site/ja_JP.all.json +71 -0
  24. package/site/lt_LT.all.json +104 -3
  25. package/site/manifest.json.jet +4 -2
  26. package/site/nl_BE.all.json +79 -0
  27. package/site/no_NO.all.json +84 -5
  28. package/site/pl_PL.all.json +104 -3
  29. package/site/plans.html.jet +12 -2
  30. package/site/pt_BR.all.json +87 -4
  31. package/site/pt_PT.all.json +86 -3
  32. package/site/ru_RU.all.json +105 -4
  33. package/site/search.html.jet +3 -1
  34. package/site/sr_SR.all.json +93 -3
  35. package/site/static/js/main.js +1 -0
  36. package/site/static/scripts/main.js.map +1 -1
  37. package/site/styles/_awards.scss +1 -0
  38. package/site/styles/_buttons.scss +20 -10
  39. package/site/styles/_carousel.scss +7 -3
  40. package/site/styles/_cookie-consent.scss +1 -0
  41. package/site/styles/_footer.scss +10 -31
  42. package/site/styles/_forms.scss +11 -0
  43. package/site/styles/_icons.scss +1 -0
  44. package/site/styles/_meta-detail.scss +27 -28
  45. package/site/styles/_mixins.scss +23 -1
  46. package/site/styles/_nav.scss +49 -65
  47. package/site/styles/_share-modal.scss +12 -7
  48. package/site/styles/_shopping.scss +5 -0
  49. package/site/styles/_typography.scss +72 -14
  50. package/site/styles/_variables.scss +93 -46
  51. package/site/subscriptions.html.jet +1 -1
  52. package/site/templates/application/application.jet +10 -12
  53. package/site/templates/application/brand/logo.jet +11 -0
  54. package/site/templates/application/brand/sponsors.jet +11 -0
  55. package/site/templates/application/footer/brand.jet +3 -1
  56. package/site/templates/application/footer/sponsor-banner.jet +3 -3
  57. package/site/templates/application/head/seo.jet +1 -1
  58. package/site/templates/application/nav/nav.jet +5 -4
  59. package/site/templates/collection/carousel/carousel.jet +4 -1
  60. package/site/templates/collection/carousel/item.jet +3 -1
  61. package/site/tr_TR.all.json +83 -4
  62. package/site/uk_UA.all.json +105 -4
  63. package/site/zh_TW.all.json +73 -2
@@ -539,10 +539,10 @@
539
539
  "other": "Wystąpił błąd"
540
540
  },
541
541
  "shopping_error_incorrect_cvc": {
542
- "other": "Wprowadź prawidłowy kod CVV."
542
+ "other": "Wprowadź prawidłowy kod CVC."
543
543
  },
544
544
  "shopping_error_invalid_cvc": {
545
- "other": "Wprowadź prawidłowy kod CVV."
545
+ "other": "Wprowadź prawidłowy kod CVC."
546
546
  },
547
547
  "shopping_error_incorrect_number": {
548
548
  "other": "Wprowadź prawidłowy numer karty kredytowej"
@@ -616,6 +616,9 @@
616
616
  "shopping_error_payment_intent_authentication_failure": {
617
617
  "other": "Karta kredytowa została odrzucona. Proszę spróbuj ponownie."
618
618
  },
619
+ "shopping_error_card_not_supported": {
620
+ "other": "Twoja karta nie jest obsługiwana."
621
+ },
619
622
  "shopping_complete_rental": {
620
623
  "other": "Udało się!"
621
624
  },
@@ -891,7 +894,7 @@
891
894
  "other": "Naliczana co {{.Interval}} po zakończeniu {{.Count}}-dniowego bezpłatnego okresu próbnego."
892
895
  },
893
896
  "shopping_price_plan_note_without_trial": {
894
- "other": "{{.Interval}} co .Interwał ."
897
+ "other": "Naliczana co {{.Interval}}"
895
898
  },
896
899
  "shopping_price_plan_note_interval": {
897
900
  "one": "{{.Interval}}",
@@ -920,6 +923,8 @@
920
923
  },
921
924
  "shopping_info_trial_period_offer": {
922
925
  "one": "Wypróbuj bezpłatny 24-godzinny okres próbny już teraz!",
926
+ "few": "Wypróbuj bezpłatny {{.Count}}-dniowy okres próbny!",
927
+ "many": "Wypróbuj bezpłatny {{.Count}}-dniowy okres próbny!",
923
928
  "other": "Wypróbuj bezpłatny {{.Count}}-dniowy okres próbny!"
924
929
  },
925
930
  "plans_page_header": {
@@ -1380,7 +1385,103 @@
1380
1385
  "pricing_ownership_promo": {
1381
1386
  "other": "Odkupić"
1382
1387
  },
1388
+ "subscription_cta_label": {
1389
+ "other": "Subskrybuj {{.Price}}/{{.Recurrence}}"
1390
+ },
1391
+ "subscription_recurrence_year": {
1392
+ "one": "Rok",
1393
+ "few": "{{.Count}} Lata",
1394
+ "many": "{{.Count}} Lata",
1395
+ "other": "{{.Count}} Lata"
1396
+ },
1397
+ "subscription_recurrence_month": {
1398
+ "one": "Miesiąc",
1399
+ "few": "{{.Count}} Miesiące",
1400
+ "many": "{{.Count}} Miesiące",
1401
+ "other": "{{.Count}} Miesiące"
1402
+ },
1403
+ "subscription_recurrence_week": {
1404
+ "one": "Tydzień",
1405
+ "few": "{{.Count}} Tygodnie",
1406
+ "many": "{{.Count}} Tygodnie",
1407
+ "other": "{{.Count}} Tygodnie"
1408
+ },
1409
+ "subscription_recurrence_day": {
1410
+ "one": "Dzień",
1411
+ "few": "{{.Count}} Dni",
1412
+ "many": "{{.Count}} Dni",
1413
+ "other": "{{.Count}} Dni"
1414
+ },
1383
1415
  "shopping_info_ownership_subscription": {
1384
1416
  "other": "Subskrypcja"
1417
+ },
1418
+ "something_bad_happened": {
1419
+ "other": "Proszę spróbuj ponownie"
1420
+ },
1421
+ "stripe_card_not_supported": {
1422
+ "other": "Twoja karta nie jest obsługiwana."
1423
+ },
1424
+ "nav_search_control_placeholder": {
1425
+ "other": "Szukaj"
1426
+ },
1427
+ "nav_search_control_sr_submit": {
1428
+ "other": "Wyszukaj"
1429
+ },
1430
+ "shopping_info_plan_interval": {
1431
+ "one": "Automatycznie odnawia co {{.Interval}}",
1432
+ "few": "Automatycznie odnawia co {{.Count}} {{.Interval}}",
1433
+ "many": "Automatycznie odnawia co {{.Count}} {{.Interval}}",
1434
+ "other": "Automatycznie odnawia co {{.Count}} {{.Interval}}"
1435
+ },
1436
+ "shopping_info_trial_period": {
1437
+ "one": "Wypróbuj bezpłatny 24-godzinny okres próbny już teraz!",
1438
+ "few": "Wypróbuj bezpłatny {{.Count}}-dniowy okres próbny!",
1439
+ "many": "Wypróbuj bezpłatny {{.Count}}-dniowy okres próbny!",
1440
+ "other": "Wypróbuj bezpłatny {{.Count}}-dniowy okres próbny!"
1441
+ },
1442
+ "usersubscriptions_page_header_seo": {
1443
+ "other": "Subskrypcje i rozliczenia"
1444
+ },
1445
+ "usersubscriptions_subscription_status_past_due": {
1446
+ "other": "Termin przekroczony"
1447
+ },
1448
+ "usersubscriptions_subscription_status_unpaid": {
1449
+ "other": "Nie zapłacony"
1450
+ },
1451
+ "usersubscriptions_subscription_status_cancelled": {
1452
+ "other": "Anulowany"
1453
+ },
1454
+ "usersubscriptions_subscription_status_cancelling": {
1455
+ "other": "Anulowanie"
1456
+ },
1457
+ "interval_day": {
1458
+ "one": "dzień",
1459
+ "few": "dni",
1460
+ "many": "dni",
1461
+ "other": "dni"
1462
+ },
1463
+ "interval_week": {
1464
+ "one": "tydzień",
1465
+ "few": "tygodnie",
1466
+ "many": "tygodnie",
1467
+ "other": "tygodnie"
1468
+ },
1469
+ "interval_month": {
1470
+ "one": "miesiąc",
1471
+ "few": "miesiące",
1472
+ "many": "miesiące",
1473
+ "other": "miesiące"
1474
+ },
1475
+ "interval_year": {
1476
+ "one": "rok",
1477
+ "few": "lat",
1478
+ "many": "lat",
1479
+ "other": "lat"
1480
+ },
1481
+ "shopping_error_processing_error": {
1482
+ "other": "Wystąpił błąd podczas przetwarzania Twojej karty. Spróbuj ponownie później lub przy użyciu innej metody płatności."
1483
+ },
1484
+ "shopping_error_invalid_session_token": {
1485
+ "other": "Sesja zakupowa wygasła, spróbuj ponownie."
1385
1486
  }
1386
1487
  }
@@ -55,9 +55,19 @@
55
55
 
56
56
  <p class="plan-description">{{p.Description}}</p>
57
57
  {{ if p.Interval }}
58
- <p class="plan-interval">{{i18n("shopping_info_plan_offer", map("Interval", p.Interval, "Count", p.IntervalCount))}}</p>
58
+ {{interval := p.Interval}}
59
+ {{if interval == "day"}}
60
+ {{interval = i18n("interval_day", p.IntervalCount)}}
61
+ {{else if interval == "month"}}
62
+ {{interval = i18n("interval_month", p.IntervalCount)}}
63
+ {{else if interval == "week"}}
64
+ {{interval = i18n("interval_week", p.IntervalCount)}}
65
+ {{else if interval == "year"}}
66
+ {{interval = i18n("interval_year", p.IntervalCount)}}
67
+ {{end}}
68
+ <p class="plan-interval">{{i18n("shopping_info_plan_interval", map("Interval", interval, "Count", p.IntervalCount))}}</p>
59
69
  {{ if p.TrialPeriodDays }}
60
- <p class="plan-trial-period">{{i18n("shopping_info_trial_period_offer", p.TrialPeriodDays)}}</p>
70
+ <p class="plan-trial-period">{{i18n("shopping_info_trial_period", p.TrialPeriodDays)}}</p>
61
71
  {{ end }}
62
72
  {{ end }}
63
73
  </div>
@@ -605,10 +605,10 @@
605
605
  "other": "Ocorreu um erro."
606
606
  },
607
607
  "shopping_error_incorrect_cvc": {
608
- "other": "Por favor, insira um CVV válido."
608
+ "other": "Por favor, insira um CVC válido."
609
609
  },
610
610
  "shopping_error_invalid_cvc": {
611
- "other": "Por favor, insira um CVV válido."
611
+ "other": "Por favor, insira um CVC válido."
612
612
  },
613
613
  "shopping_error_incorrect_number": {
614
614
  "other": "Por favor, insira um número de cartão de crédito válido."
@@ -685,6 +685,9 @@
685
685
  "shopping_error_payment_intent_authentication_failure": {
686
686
  "other": "Seu cartão de crédito foi recusado. Por favor, tente novamente."
687
687
  },
688
+ "shopping_error_card_not_supported": {
689
+ "other": "Seu cartão não é compatível."
690
+ },
688
691
  "shopping_complete_rental": {
689
692
  "other": "Successo!"
690
693
  },
@@ -965,7 +968,7 @@
965
968
  "other": "Atualize seu cartão de crédito. Os cartões suportados são Visa, Mastercard e American Express"
966
969
  },
967
970
  "shopping_card_new_subscription": {
968
- "other": "This card will saved and be charged regularly"
971
+ "other": "Este cartão será salvo e cobrado regularmente"
969
972
  },
970
973
  "shopping_card_change": {
971
974
  "other": "O cartão de crédito não está correto? <a href=\"{{.SubscriptionsURL}}\"> Clique aqui para atualizar seu cartão. </a>"
@@ -1173,7 +1176,7 @@
1173
1176
  "other": "Cobrado a cada {{.Interval}} após o término da avaliação gratuita de {{.Count}} dias."
1174
1177
  },
1175
1178
  "shopping_price_plan_note_without_trial": {
1176
- "other": "Cobrado a cada {{.Interval}} ."
1179
+ "other": "Cobrado a cada {{.Interval}}."
1177
1180
  },
1178
1181
  "shopping_price_plan_note_interval": {
1179
1182
  "one": "{{.Interval}}",
@@ -1331,7 +1334,87 @@
1331
1334
  "pricing_ownership_promo": {
1332
1335
  "other": "Resgatar"
1333
1336
  },
1337
+ "subscription_cta_label": {
1338
+ "other": "Se inscrever {{.Price}}/{{.Recurrence}}"
1339
+ },
1340
+ "subscription_recurrence_year": {
1341
+ "one": "Ano",
1342
+ "many": "{{.Count}} Anos",
1343
+ "other": "{{.Count}} Anos"
1344
+ },
1345
+ "subscription_recurrence_month": {
1346
+ "one": "Mês",
1347
+ "many": "{{.Count}} Meses",
1348
+ "other": "{{.Count}} Meses"
1349
+ },
1350
+ "subscription_recurrence_week": {
1351
+ "one": "Semana",
1352
+ "many": "{{.Count}} Semanas",
1353
+ "other": "{{.Count}} Semanas"
1354
+ },
1355
+ "subscription_recurrence_day": {
1356
+ "one": "Dia",
1357
+ "many": "{{.Count}} Dias",
1358
+ "other": "{{.Count}} Dias"
1359
+ },
1334
1360
  "shopping_info_ownership_subscription": {
1335
1361
  "other": "Inscrição"
1362
+ },
1363
+ "something_bad_happened": {
1364
+ "other": "Por favor, tente novamente"
1365
+ },
1366
+ "stripe_card_not_supported": {
1367
+ "other": "Seu cartão não é compatível."
1368
+ },
1369
+ "nav_search_control_placeholder": {
1370
+ "other": "Buscar"
1371
+ },
1372
+ "nav_search_control_sr_submit": {
1373
+ "other": "Buscar"
1374
+ },
1375
+ "shopping_info_plan_interval": {
1376
+ "one": "Renova automaticamente a cada {{.Interval}}",
1377
+ "other": "Renova automaticamente cada {{.Count}} {{.Interval}}"
1378
+ },
1379
+ "shopping_info_trial_period": {
1380
+ "one": "Experimente agora o seu teste gratuito de 24 horas!",
1381
+ "other": "Experimente o seu teste gratuito de {{.Count}} dia!"
1382
+ },
1383
+ "usersubscriptions_page_header_seo": {
1384
+ "other": "Assinaturas e cobrança"
1385
+ },
1386
+ "usersubscriptions_subscription_status_past_due": {
1387
+ "other": "Vencido"
1388
+ },
1389
+ "usersubscriptions_subscription_status_unpaid": {
1390
+ "other": "Não pago"
1391
+ },
1392
+ "usersubscriptions_subscription_status_cancelled": {
1393
+ "other": "Cancelado"
1394
+ },
1395
+ "usersubscriptions_subscription_status_cancelling": {
1396
+ "other": "Cancelando"
1397
+ },
1398
+ "interval_day": {
1399
+ "one": "dia",
1400
+ "other": "dias"
1401
+ },
1402
+ "interval_week": {
1403
+ "one": "semana",
1404
+ "other": "semanas"
1405
+ },
1406
+ "interval_month": {
1407
+ "one": "mês",
1408
+ "other": "meses"
1409
+ },
1410
+ "interval_year": {
1411
+ "one": "ano",
1412
+ "other": "anos"
1413
+ },
1414
+ "shopping_error_processing_error": {
1415
+ "other": "Ocorreu um erro ao processar seu cartão. Tente novamente mais tarde ou com outra forma de pagamento."
1416
+ },
1417
+ "shopping_error_invalid_session_token": {
1418
+ "other": "A sessão de compras expirou. Tente novamente."
1336
1419
  }
1337
1420
  }
@@ -545,10 +545,10 @@
545
545
  "other": "Ocorreu um erro."
546
546
  },
547
547
  "shopping_error_incorrect_cvc": {
548
- "other": "Por favor, insira um CVV válido."
548
+ "other": "Por favor, insira um CVC válido."
549
549
  },
550
550
  "shopping_error_invalid_cvc": {
551
- "other": "Por favor, insira um CVV válido."
551
+ "other": "Por favor, insira um CVC válido."
552
552
  },
553
553
  "shopping_error_incorrect_number": {
554
554
  "other": "Por favor, insira um número de cartão de crédito válido."
@@ -625,6 +625,9 @@
625
625
  "shopping_error_payment_intent_authentication_failure": {
626
626
  "other": "Seu cartão de crédito foi recusado. Por favor, tente novamente."
627
627
  },
628
+ "shopping_error_card_not_supported": {
629
+ "other": "Seu cartão não é compatível."
630
+ },
628
631
  "shopping_complete_rental": {
629
632
  "other": "Successo!"
630
633
  },
@@ -993,7 +996,7 @@
993
996
  "other": "Cobrado a cada {{.Interval}} após o término da avaliação gratuita de {{.Count}} dias."
994
997
  },
995
998
  "shopping_price_plan_note_without_trial": {
996
- "other": "Cobrado a cada {{.Interval}} ."
999
+ "other": "Cobrado a cada {{.Interval}}."
997
1000
  },
998
1001
  "shopping_price_plan_note_interval": {
999
1002
  "one": "{{.Interval}}",
@@ -1331,7 +1334,87 @@
1331
1334
  "pricing_ownership_promo": {
1332
1335
  "other": "Resgatar"
1333
1336
  },
1337
+ "subscription_cta_label": {
1338
+ "other": "Se inscrever {{.Price}}/{{.Recurrence}}"
1339
+ },
1340
+ "subscription_recurrence_year": {
1341
+ "one": "Ano",
1342
+ "many": "{{.Count}} Anos",
1343
+ "other": "{{.Count}} Anos"
1344
+ },
1345
+ "subscription_recurrence_month": {
1346
+ "one": "Mês",
1347
+ "many": "{{.Count}} Meses",
1348
+ "other": "{{.Count}} Meses"
1349
+ },
1350
+ "subscription_recurrence_week": {
1351
+ "one": "Semana",
1352
+ "many": "{{.Count}} Semanas",
1353
+ "other": "{{.Count}} Semanas"
1354
+ },
1355
+ "subscription_recurrence_day": {
1356
+ "one": "Dia",
1357
+ "many": "{{.Count}} Dias",
1358
+ "other": "{{.Count}} Dias"
1359
+ },
1334
1360
  "shopping_info_ownership_subscription": {
1335
1361
  "other": "Inscrição"
1362
+ },
1363
+ "something_bad_happened": {
1364
+ "other": "Por favor, tente novamente"
1365
+ },
1366
+ "stripe_card_not_supported": {
1367
+ "other": "Seu cartão não é compatível."
1368
+ },
1369
+ "nav_search_control_placeholder": {
1370
+ "other": "Buscar"
1371
+ },
1372
+ "nav_search_control_sr_submit": {
1373
+ "other": "Buscar"
1374
+ },
1375
+ "shopping_info_plan_interval": {
1376
+ "one": "Renova automaticamente a cada {{.Interval}}",
1377
+ "other": "Renova automaticamente cada {{.Count}} {{.Interval}}"
1378
+ },
1379
+ "shopping_info_trial_period": {
1380
+ "one": "Experimente agora o seu teste gratuito de 24 horas!",
1381
+ "other": "Experimente o seu teste gratuito de {{.Count}} dia!"
1382
+ },
1383
+ "usersubscriptions_page_header_seo": {
1384
+ "other": "Assinaturas e cobrança"
1385
+ },
1386
+ "usersubscriptions_subscription_status_past_due": {
1387
+ "other": "Vencido"
1388
+ },
1389
+ "usersubscriptions_subscription_status_unpaid": {
1390
+ "other": "Não pago"
1391
+ },
1392
+ "usersubscriptions_subscription_status_cancelled": {
1393
+ "other": "Cancelado"
1394
+ },
1395
+ "usersubscriptions_subscription_status_cancelling": {
1396
+ "other": "Cancelando"
1397
+ },
1398
+ "interval_day": {
1399
+ "one": "dia",
1400
+ "other": "dias"
1401
+ },
1402
+ "interval_week": {
1403
+ "one": "semana",
1404
+ "other": "semanas"
1405
+ },
1406
+ "interval_month": {
1407
+ "one": "mês",
1408
+ "other": "meses"
1409
+ },
1410
+ "interval_year": {
1411
+ "one": "ano",
1412
+ "other": "anos"
1413
+ },
1414
+ "shopping_error_processing_error": {
1415
+ "other": "Ocorreu um erro ao processar seu cartão. Tente novamente mais tarde ou com outra forma de pagamento."
1416
+ },
1417
+ "shopping_error_invalid_session_token": {
1418
+ "other": "A sessão de compras expirou. Tente novamente."
1336
1419
  }
1337
1420
  }
@@ -564,10 +564,10 @@
564
564
  "other": "Произошла ошибка"
565
565
  },
566
566
  "shopping_error_incorrect_cvc": {
567
- "other": "Пожалуйста, введите правильный код CVV."
567
+ "other": "Пожалуйста, введите правильный код CVC."
568
568
  },
569
569
  "shopping_error_invalid_cvc": {
570
- "other": "Пожалуйста, введите правильный код CVV."
570
+ "other": "Пожалуйста, введите правильный код CVC."
571
571
  },
572
572
  "shopping_error_incorrect_number": {
573
573
  "other": "Пожалуйста, введите действительную кредитную карту Number."
@@ -644,6 +644,9 @@
644
644
  "shopping_error_payment_intent_authentication_failure": {
645
645
  "other": "Кредитная карта была отклонена. Пожалуйста, попробуйте еще раз."
646
646
  },
647
+ "shopping_error_card_not_supported": {
648
+ "other": "Ваша карта не поддерживается."
649
+ },
647
650
  "shopping_complete_rental": {
648
651
  "other": "Успех!"
649
652
  },
@@ -1023,7 +1026,7 @@
1023
1026
  "other": "Взимается каждые после окончания {{.Interval}} вашей дневной бесплатной пробной {{.Count}}"
1024
1027
  },
1025
1028
  "shopping_price_plan_note_without_trial": {
1026
- "other": "{{.Interval}} каждые .интервал."
1029
+ "other": "Взимается каждые {{.Interval}}."
1027
1030
  },
1028
1031
  "shopping_price_plan_note_interval": {
1029
1032
  "one": "{{.Interval}}",
@@ -1052,7 +1055,9 @@
1052
1055
  },
1053
1056
  "shopping_info_trial_period_offer": {
1054
1057
  "one": "Попробуйте бесплатную 24-часовую пробную версию прямо сейчас!",
1055
- "other": "Попробуйте бесплатную дневную пробную версию {{.Count}}"
1058
+ "few": "Попробуйте бесплатную {{.Count}}-дневную пробную версию!",
1059
+ "many": "Попробуйте бесплатную {{.Count}}-дневную пробную версию!",
1060
+ "other": "Попробуйте бесплатную {{.Count}}-дневную пробную версию!"
1056
1061
  },
1057
1062
  "plans_page_header": {
1058
1063
  "other": "Доступные планы"
@@ -1357,7 +1362,103 @@
1357
1362
  "pricing_ownership_promo": {
1358
1363
  "other": "Выкупать"
1359
1364
  },
1365
+ "subscription_cta_label": {
1366
+ "other": "Подписывайся {{.Price}}/{{.Recurrence}}"
1367
+ },
1368
+ "subscription_recurrence_year": {
1369
+ "one": "Год",
1370
+ "few": "{{.Count}} Годы",
1371
+ "many": "{{.Count}} Годы",
1372
+ "other": "{{.Count}} Годы"
1373
+ },
1374
+ "subscription_recurrence_month": {
1375
+ "one": "Месяц",
1376
+ "few": "{{.Count}} Месяцы",
1377
+ "many": "{{.Count}} Месяцы",
1378
+ "other": "{{.Count}} Месяцы"
1379
+ },
1380
+ "subscription_recurrence_week": {
1381
+ "one": "Неделя",
1382
+ "few": "{{.Count}} Недели",
1383
+ "many": "{{.Count}} Недели",
1384
+ "other": "{{.Count}} Недели"
1385
+ },
1386
+ "subscription_recurrence_day": {
1387
+ "one": "День",
1388
+ "few": "{{.Count}} Дни",
1389
+ "many": "{{.Count}} Дни",
1390
+ "other": "{{.Count}} Дни"
1391
+ },
1360
1392
  "shopping_info_ownership_subscription": {
1361
1393
  "other": "Подписка"
1394
+ },
1395
+ "something_bad_happened": {
1396
+ "other": "Пожалуйста, попробуйте еще раз"
1397
+ },
1398
+ "stripe_card_not_supported": {
1399
+ "other": "Ваша карта не поддерживается."
1400
+ },
1401
+ "nav_search_control_placeholder": {
1402
+ "other": "Поиск"
1403
+ },
1404
+ "nav_search_control_sr_submit": {
1405
+ "other": "Начать поиск"
1406
+ },
1407
+ "shopping_info_plan_interval": {
1408
+ "one": "Автоматически обновляется каждые {{.Interval}}",
1409
+ "few": "Автоматически обновляется каждые {{.Count}} {{.Interval}}",
1410
+ "many": "Автоматически обновляется каждые {{.Count}} {{.Interval}}",
1411
+ "other": "Автоматически обновляется каждые {{.Count}} {{.Interval}}"
1412
+ },
1413
+ "shopping_info_trial_period": {
1414
+ "one": "Попробуйте бесплатную 24-часовую пробную версию прямо сейчас!",
1415
+ "few": "Попробуйте бесплатную {{.Count}}-дневную пробную версию!",
1416
+ "many": "Попробуйте бесплатную {{.Count}}-дневную пробную версию!",
1417
+ "other": "Попробуйте бесплатную {{.Count}}-дневную пробную версию!"
1418
+ },
1419
+ "usersubscriptions_page_header_seo": {
1420
+ "other": "Подписки и выставление счетов"
1421
+ },
1422
+ "usersubscriptions_subscription_status_past_due": {
1423
+ "other": "Просроченный"
1424
+ },
1425
+ "usersubscriptions_subscription_status_unpaid": {
1426
+ "other": "Неоплачиваемый"
1427
+ },
1428
+ "usersubscriptions_subscription_status_cancelled": {
1429
+ "other": "Отменено"
1430
+ },
1431
+ "usersubscriptions_subscription_status_cancelling": {
1432
+ "other": "Отмена"
1433
+ },
1434
+ "interval_day": {
1435
+ "one": "день",
1436
+ "few": "дни",
1437
+ "many": "дни",
1438
+ "other": "дни"
1439
+ },
1440
+ "interval_week": {
1441
+ "one": "неделя",
1442
+ "few": "недели",
1443
+ "many": "недели",
1444
+ "other": "недели"
1445
+ },
1446
+ "interval_month": {
1447
+ "one": "месяц",
1448
+ "few": "месяцы",
1449
+ "many": "месяцы",
1450
+ "other": "месяцы"
1451
+ },
1452
+ "interval_year": {
1453
+ "one": "год",
1454
+ "few": "годы",
1455
+ "many": "годы",
1456
+ "other": "годы"
1457
+ },
1458
+ "shopping_error_processing_error": {
1459
+ "other": "При обработке вашей карты произошла ошибка. Повторите попытку позже или с другим способом оплаты."
1460
+ },
1461
+ "shopping_error_invalid_session_token": {
1462
+ "other": "Сеанс покупки истек, попробуйте еще раз."
1362
1463
  }
1363
1464
  }
@@ -9,6 +9,8 @@
9
9
  <div class="page-header">
10
10
  <h1>{{ i18n("searchresults_page_header") }}</h1>
11
11
  </div>
12
- <s72-searchresults search-param="q" partials-base-path="{{ routeToPath("/partials") }}" show-search-form="true" />
12
+
13
+ {{cloudsearchEnabled := isEnabled("cloudsearch")}}
14
+ <s72-searchresults cloudsearch="{{cloudsearchEnabled}}" search-param="q" partials-base-path="{{ routeToPath("/partials") }}" show-search-form="true" />
13
15
  </main>
14
16
  {{end}}