@shift72/core-template 1.5.1 → 1.7.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (54) hide show
  1. package/.github/workflows/pages.yml +47 -0
  2. package/CHANGELOG.md +37 -2
  3. package/kibble.json +1 -1
  4. package/package.json +1 -1
  5. package/site/ar_LB.all.json +90 -0
  6. package/site/ca_ES.all.json +79 -1
  7. package/site/da_DK.all.json +79 -1
  8. package/site/de_DE.all.json +80 -2
  9. package/site/el_EL.all.json +78 -0
  10. package/site/en_AU.all.json +79 -1
  11. package/site/es_ES.all.json +78 -0
  12. package/site/es_MX.all.json +78 -0
  13. package/site/et_ET.all.json +79 -1
  14. package/site/fi_FI.all.json +78 -0
  15. package/site/fr_FR.all.json +80 -2
  16. package/site/hr_HR.all.json +82 -1
  17. package/site/hu_HU.all.json +79 -1
  18. package/site/it_IT.all.json +79 -1
  19. package/site/ja_JP.all.json +77 -2
  20. package/site/lt_LT.all.json +85 -1
  21. package/site/nl_BE.all.json +78 -0
  22. package/site/no_NO.all.json +78 -0
  23. package/site/pl_PL.all.json +84 -0
  24. package/site/pt_BR.all.json +78 -0
  25. package/site/pt_PT.all.json +79 -1
  26. package/site/ru_RU.all.json +84 -0
  27. package/site/sr_SR.all.json +81 -0
  28. package/site/static/favicon.ico +0 -0
  29. package/site/styles/_availability-tags.scss +40 -0
  30. package/site/styles/_awards.scss +4 -8
  31. package/site/styles/_carousel.scss +18 -7
  32. package/site/styles/_collections.scss +3 -5
  33. package/site/styles/_cta-buttons.scss +17 -17
  34. package/site/styles/_icons.scss +16 -0
  35. package/site/styles/_meta-detail.scss +75 -29
  36. package/site/styles/_meta-item-tagline.scss +1 -2
  37. package/site/styles/_meta-sub-item.scss +29 -4
  38. package/site/styles/_swiper.scss +4 -4
  39. package/site/styles/_typography.scss +1 -1
  40. package/site/styles/_variables.scss +12 -3
  41. package/site/templates/bundle/item.jet +1 -2
  42. package/site/templates/bundle/list.jet +13 -9
  43. package/site/templates/collection/carousel/item.jet +5 -2
  44. package/site/templates/collection/list.jet +14 -12
  45. package/site/templates/collection/slider.jet +2 -2
  46. package/site/templates/collection/wishlist.jet +3 -3
  47. package/site/templates/common/cta_buttons.jet +5 -2
  48. package/site/templates/common/slider.jet +2 -2
  49. package/site/templates/film/item.jet +17 -12
  50. package/site/templates/items/sub_item.jet +23 -19
  51. package/site/templates/tv/detail.jet +14 -15
  52. package/site/tr_TR.all.json +78 -0
  53. package/site/uk_UA.all.json +85 -1
  54. package/site/zh_TW.all.json +75 -0
@@ -23,12 +23,15 @@
23
23
  </div>
24
24
  <div class="container">
25
25
  <div class="meta-detail-main">
26
- {{if config("default_image_type") == "portrait"}}
27
- <div class="poster poster-portrait">
28
- <s72-image src="{{tvseason.Images.Classification}}" alt="" class="classification-image">
29
- <s72-image src="{{tvseason.Images.Portrait}}" alt="{{tvseason.Title}}" class="poster poster-image poster-image-portrait"></s72-image>
30
- </div>
31
- {{end}}
26
+ <div class="poster-wrapper">
27
+ {{if config("default_image_type") == "portrait"}}
28
+ <div class="poster poster-portrait">
29
+ <s72-image src="{{tvseason.Images.Classification}}" alt="" class="classification-image">
30
+ <s72-image src="{{tvseason.Images.Portrait}}" alt="{{tvseason.Title}}" class="poster poster-image poster-image-portrait"></s72-image>
31
+ </div>
32
+ {{end}}
33
+ </div>
34
+
32
35
  <div class="meta-detail-content">
33
36
  <h1>{{tvseason.GetTitle(i18n)}}</h1>
34
37
  <div class="meta-detail-tagline-and-classification">
@@ -78,9 +81,7 @@
78
81
  <h2>{{i18n("meta_detail_episodes_title")}}</h2>
79
82
  {{yield list(itemsPerRow=4, itemLayout="portrait") content}}
80
83
  {{range episode := tvseason.Episodes}}
81
- <div class="sub-item">
82
- {{yield subItem(item=episode)}}
83
- </div>
84
+ {{yield subItem(item=episode)}}
84
85
  {{end}}
85
86
  {{end}}
86
87
  </div>
@@ -91,9 +92,7 @@
91
92
  <h2>{{i18n("meta_detail_bonus_title")}}</h2>
92
93
  {{yield list(itemsPerRow=4, itemLayout="landscape") content}}
93
94
  {{range bonus := tvseason.Bonuses}}
94
- <div class="sub-item">
95
- {{yield subItem(item=bonus)}}
96
- </div>
95
+ {{yield subItem(item=bonus)}}
97
96
  {{end}}
98
97
  {{end}}
99
98
  </section>
@@ -103,12 +102,12 @@
103
102
  </div>
104
103
  {{if len(tvseason.Recommendations) > 0 }}
105
104
  <section class="page-collection recommendations-collection" aria-label="{{i18n("meta_detail_recommendations_title")}}">
106
- <div class="swiper-wrapper-container">
105
+ <div class="collection-wrapper-container swiper-wrapper-container">
107
106
 
108
107
  {{if config("default_image_type") == "portrait"}}
109
- <div class="swiper-container" data-items-per-row="6" data-layout="portrait">
108
+ <div class="collection-container swiper-container" data-items-per-row="6" data-layout="portrait">
110
109
  {{else}}
111
- <div class="swiper-container" data-items-per-row="4" data-layout="landscape">
110
+ <div class="collection-container swiper-container" data-items-per-row="4" data-layout="landscape">
112
111
  {{end}}
113
112
 
114
113
  <div class="swiper-title">
@@ -1413,6 +1413,21 @@
1413
1413
  "shopping_error_invalid_session_token": {
1414
1414
  "other": "Alışveriş oturumunun süresi doldu, lütfen tekrar deneyin."
1415
1415
  },
1416
+ "live_stream_starts": {
1417
+ "other": "Akış başlıyor {{.Date}}"
1418
+ },
1419
+ "live_streaming_now": {
1420
+ "other": "Şimdi yayınlanıyor"
1421
+ },
1422
+ "live_streaming_ended": {
1423
+ "other": "Akış sona erdi"
1424
+ },
1425
+ "availability_live": {
1426
+ "other": "CANLI"
1427
+ },
1428
+ "shopping_action_get_ticket": {
1429
+ "other": "Bilet al"
1430
+ },
1416
1431
  "shopping_error_credit_discounts_not_allowed": {
1417
1432
  "other": "Bu satın alma veya kiralama için promosyon kodu kullanamazsınız"
1418
1433
  },
@@ -1433,5 +1448,68 @@
1433
1448
  },
1434
1449
  "shopping_error_missing_code": {
1435
1450
  "other": "Promosyon kodu sağlanmadı"
1451
+ },
1452
+ "live_label_ended": {
1453
+ "other": "CANLI: SONA ERDİ"
1454
+ },
1455
+ "live_label_live": {
1456
+ "other": "CANLI"
1457
+ },
1458
+ "live_label_minutes": {
1459
+ "one": "CANLI: 1 DAKİKA",
1460
+ "other": "CANLI: {{.Count}} DAKİKA"
1461
+ },
1462
+ "live_label_hours": {
1463
+ "one": "CANLI: 1 SAAT",
1464
+ "other": "CANLI: {{.Count}} SAAT"
1465
+ },
1466
+ "live_label_days": {
1467
+ "one": "CANLI: 1 GÜN",
1468
+ "other": "CANLI: {{.Count}} GÜNLER"
1469
+ },
1470
+ "shopping_info_subtitle_live_event": {
1471
+ "other": "Canlı yayın"
1472
+ },
1473
+ "shopping_info_release_date_title_live_event": {
1474
+ "other": "Bu Canlı Bir Etkinliktir. "
1475
+ },
1476
+ "shopping_info_release_date_explanation1_live_event_rent": {
1477
+ "other": "Şimdi bir bilet satın alabilirsiniz, ancak yayın canlıyken izlemeniz gerekecek."
1478
+ },
1479
+ "shopping_info_release_date_explanation2_live_event_rent": {
1480
+ "other": "Yayın canlıyken izlemeniz gerekecek."
1481
+ },
1482
+ "shopping_info_release_date_explanation3_live_event_rent": {
1483
+ "other": "Bu etkinlik şu anda yayında. "
1484
+ },
1485
+ "shopping_info_available_until_date_title_live_event": {
1486
+ "other": "Akış biter {{.Date}}. "
1487
+ },
1488
+ "shopping_info_available_until_date_explanation_live_event_rent": {
1489
+ "other": "Bundan sonra yayını izleyemezsiniz."
1490
+ },
1491
+ "shopping_action_ticket": {
1492
+ "other": "Bilet al"
1493
+ },
1494
+ "shopping_info_release_date_title_live_event_start": {
1495
+ "other": "Akış başlar {{.Date}}. "
1496
+ },
1497
+ "shopping_info_release_date_explanation4_live_event_rent": {
1498
+ "other": "{{.Date}} başladı. "
1499
+ },
1500
+ "shopping_info_release_date_explanation5_live_event_rent": {
1501
+ "other": "Geri saramazsınız."
1502
+ },
1503
+ "shopping_error_stripe_invalid_expiry_month_past": {
1504
+ "other": "Kartınızın son kullanma tarihi geçmişte."
1505
+ },
1506
+ "shopping_error_stripe_invalid_expiry_year_past": {
1507
+ "other": "Kartınızın son kullanma yılı geçmişte kaldı."
1508
+ },
1509
+ "shopping_error_stripe_invalid_number": {
1510
+ "other": "Kart numaranız geçersiz."
1511
+ },
1512
+ "new_card_error_timed_out": {
1513
+ "other": "Bu kartı eklerken bir şeyler ters gitti. Lütfen daha sonra tekrar deneyin veya farklı bir kart kullanın."
1436
1514
  }
1437
1515
  }
@@ -9,7 +9,7 @@
9
9
  "other": "Shift72"
10
10
  },
11
11
  "powered_by_url": {
12
- "other": "https://www.screenplus.com"
12
+ "other": "https://www.shift72.com"
13
13
  },
14
14
  "in_partnership_with": {
15
15
  "other": "у партнерстві з"
@@ -1467,6 +1467,21 @@
1467
1467
  "shopping_error_invalid_session_token": {
1468
1468
  "other": "Сеанс покупки закінчився, повторіть спробу."
1469
1469
  },
1470
+ "live_stream_starts": {
1471
+ "other": "Потік починається {{.Date}}"
1472
+ },
1473
+ "live_streaming_now": {
1474
+ "other": "Зараз транслюється"
1475
+ },
1476
+ "live_streaming_ended": {
1477
+ "other": "Потік закінчено"
1478
+ },
1479
+ "availability_live": {
1480
+ "other": "НАЖИВО"
1481
+ },
1482
+ "shopping_action_get_ticket": {
1483
+ "other": "Отримати квиток"
1484
+ },
1470
1485
  "shopping_error_credit_discounts_not_allowed": {
1471
1486
  "other": "Ви не можете використовувати промокод для цієї покупки або оренди"
1472
1487
  },
@@ -1487,5 +1502,74 @@
1487
1502
  },
1488
1503
  "shopping_error_missing_code": {
1489
1504
  "other": "Промокод не надано"
1505
+ },
1506
+ "live_label_ended": {
1507
+ "other": "НАЖИВО: ЗАВЕРШЕНО"
1508
+ },
1509
+ "live_label_live": {
1510
+ "other": "НАЖИВО"
1511
+ },
1512
+ "live_label_minutes": {
1513
+ "one": "НАЖИВО: 1 ХВИЛИНА",
1514
+ "few": "НАЖИВО: {{.Count}} ХВИЛИНИ",
1515
+ "many": "НАЖИВО: {{.Count}} ХВИЛИНИ",
1516
+ "other": "НАЖИВО: {{.Count}} ХВИЛИНИ"
1517
+ },
1518
+ "live_label_hours": {
1519
+ "one": "НАЖИВО: 1 ГОДИНА",
1520
+ "few": "НАЖИВО: {{.Count}} ГОДИНИ",
1521
+ "many": "НАЖИВО: {{.Count}} ГОДИНИ",
1522
+ "other": "НАЖИВО: {{.Count}} ГОДИНИ"
1523
+ },
1524
+ "live_label_days": {
1525
+ "one": "НАЖИВО: 1 ДЕНЬ",
1526
+ "few": "НАЖИВО: {{.Count}} ДНІВ",
1527
+ "many": "НАЖИВО: {{.Count}} ДНІВ",
1528
+ "other": "НАЖИВО: {{.Count}} ДНІВ"
1529
+ },
1530
+ "shopping_info_subtitle_live_event": {
1531
+ "other": "Наживо"
1532
+ },
1533
+ "shopping_info_release_date_title_live_event": {
1534
+ "other": "Це подія в прямому ефірі. "
1535
+ },
1536
+ "shopping_info_release_date_explanation1_live_event_rent": {
1537
+ "other": "Ви можете придбати квиток зараз, але вам потрібно буде дивитися, поки йде трансляція."
1538
+ },
1539
+ "shopping_info_release_date_explanation2_live_event_rent": {
1540
+ "other": "Вам потрібно буде дивитися, поки йде трансляція."
1541
+ },
1542
+ "shopping_info_release_date_explanation3_live_event_rent": {
1543
+ "other": "Ця подія зараз транслюється. "
1544
+ },
1545
+ "shopping_info_available_until_date_title_live_event": {
1546
+ "other": "Потік закінчується {{.Date}}. "
1547
+ },
1548
+ "shopping_info_available_until_date_explanation_live_event_rent": {
1549
+ "other": "Після цього ви не зможете дивитися трансляцію."
1550
+ },
1551
+ "shopping_action_ticket": {
1552
+ "other": "Отримати квиток"
1553
+ },
1554
+ "shopping_info_release_date_title_live_event_start": {
1555
+ "other": "Початок потоку {{.Date}}. "
1556
+ },
1557
+ "shopping_info_release_date_explanation4_live_event_rent": {
1558
+ "other": "Це почалося о {{.Date}}. "
1559
+ },
1560
+ "shopping_info_release_date_explanation5_live_event_rent": {
1561
+ "other": "Ви не можете перемотати його назад."
1562
+ },
1563
+ "shopping_error_stripe_invalid_expiry_month_past": {
1564
+ "other": "Термін дії вашої картки минув."
1565
+ },
1566
+ "shopping_error_stripe_invalid_expiry_year_past": {
1567
+ "other": "Рік закінчення терміну дії вашої картки минув."
1568
+ },
1569
+ "shopping_error_stripe_invalid_number": {
1570
+ "other": "Номер вашої картки недійсний."
1571
+ },
1572
+ "new_card_error_timed_out": {
1573
+ "other": "Під час додавання цієї картки сталася помилка. Повторіть спробу пізніше або скористайтеся іншою карткою."
1490
1574
  }
1491
1575
  }
@@ -1403,6 +1403,21 @@
1403
1403
  "shopping_error_invalid_session_token": {
1404
1404
  "other": "購物會話已過期,請重試。"
1405
1405
  },
1406
+ "live_stream_starts": {
1407
+ "other": "流开始 {{.Date}}"
1408
+ },
1409
+ "live_streaming_now": {
1410
+ "other": "立即流式传输"
1411
+ },
1412
+ "live_streaming_ended": {
1413
+ "other": "直播已结束"
1414
+ },
1415
+ "availability_live": {
1416
+ "other": "居住"
1417
+ },
1418
+ "shopping_action_get_ticket": {
1419
+ "other": "取票"
1420
+ },
1406
1421
  "shopping_error_credit_discounts_not_allowed": {
1407
1422
  "other": "您不能為此購買或租賃使用促銷代碼"
1408
1423
  },
@@ -1423,5 +1438,65 @@
1423
1438
  },
1424
1439
  "shopping_error_missing_code": {
1425
1440
  "other": "未提供促銷代碼"
1441
+ },
1442
+ "live_label_ended": {
1443
+ "other": "直播:結束"
1444
+ },
1445
+ "live_label_live": {
1446
+ "other": "居住"
1447
+ },
1448
+ "live_label_minutes": {
1449
+ "other": "直播:{{.Count}} 分钟"
1450
+ },
1451
+ "live_label_hours": {
1452
+ "other": "直播:{{.Count}} 小时"
1453
+ },
1454
+ "live_label_days": {
1455
+ "other": "直播:{{.Count}} 天"
1456
+ },
1457
+ "shopping_info_subtitle_live_event": {
1458
+ "other": "現場直播"
1459
+ },
1460
+ "shopping_info_release_date_title_live_event": {
1461
+ "other": "這是一個現場活動。"
1462
+ },
1463
+ "shopping_info_release_date_explanation1_live_event_rent": {
1464
+ "other": "您現在可以購買門票,但您需要在直播期間觀看。"
1465
+ },
1466
+ "shopping_info_release_date_explanation2_live_event_rent": {
1467
+ "other": "您需要在直播時觀看。"
1468
+ },
1469
+ "shopping_info_release_date_explanation3_live_event_rent": {
1470
+ "other": "此活動目前正在進行中。"
1471
+ },
1472
+ "shopping_info_available_until_date_title_live_event": {
1473
+ "other": "流結束{{.Date}}。"
1474
+ },
1475
+ "shopping_info_available_until_date_explanation_live_event_rent": {
1476
+ "other": "之後您將無法觀看直播。"
1477
+ },
1478
+ "shopping_action_ticket": {
1479
+ "other": "取票"
1480
+ },
1481
+ "shopping_info_release_date_title_live_event_start": {
1482
+ "other": "流開始{{.Date}}。"
1483
+ },
1484
+ "shopping_info_release_date_explanation4_live_event_rent": {
1485
+ "other": "它始於{{.Date}}。"
1486
+ },
1487
+ "shopping_info_release_date_explanation5_live_event_rent": {
1488
+ "other": "你不能倒帶。"
1489
+ },
1490
+ "shopping_error_stripe_invalid_expiry_month_past": {
1491
+ "other": "您卡的過期日期已過。"
1492
+ },
1493
+ "shopping_error_stripe_invalid_expiry_year_past": {
1494
+ "other": "您的卡的到期年份已過去。"
1495
+ },
1496
+ "shopping_error_stripe_invalid_number": {
1497
+ "other": "您的卡號無效。"
1498
+ },
1499
+ "new_card_error_timed_out": {
1500
+ "other": "添加該卡時出現問題。請稍後再試或使用其他卡。"
1426
1501
  }
1427
1502
  }