@shift72/core-template 1.5.1 → 1.6.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 (50) hide show
  1. package/.github/workflows/pages.yml +47 -0
  2. package/CHANGELOG.md +25 -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 +78 -0
  7. package/site/da_DK.all.json +78 -0
  8. package/site/de_DE.all.json +78 -0
  9. package/site/el_EL.all.json +78 -0
  10. package/site/en_AU.all.json +78 -0
  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 +78 -0
  14. package/site/fi_FI.all.json +78 -0
  15. package/site/fr_FR.all.json +78 -0
  16. package/site/hr_HR.all.json +81 -0
  17. package/site/hu_HU.all.json +78 -0
  18. package/site/it_IT.all.json +78 -0
  19. package/site/ja_JP.all.json +75 -0
  20. package/site/lt_LT.all.json +84 -0
  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 +78 -0
  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 +39 -0
  30. package/site/styles/_awards.scss +2 -7
  31. package/site/styles/_carousel.scss +18 -7
  32. package/site/styles/_collections.scss +3 -5
  33. package/site/styles/_cta-buttons.scss +15 -13
  34. package/site/styles/_icons.scss +5 -0
  35. package/site/styles/_meta-detail.scss +48 -9
  36. package/site/styles/_swiper.scss +2 -2
  37. package/site/styles/_variables.scss +9 -0
  38. package/site/templates/bundle/item.jet +1 -2
  39. package/site/templates/bundle/list.jet +13 -9
  40. package/site/templates/collection/carousel/item.jet +5 -2
  41. package/site/templates/collection/list.jet +14 -12
  42. package/site/templates/collection/slider.jet +2 -2
  43. package/site/templates/collection/wishlist.jet +3 -3
  44. package/site/templates/common/cta_buttons.jet +5 -2
  45. package/site/templates/common/slider.jet +2 -2
  46. package/site/templates/film/item.jet +16 -9
  47. package/site/templates/tv/detail.jet +12 -9
  48. package/site/tr_TR.all.json +78 -0
  49. package/site/uk_UA.all.json +84 -0
  50. package/site/zh_TW.all.json +75 -0
@@ -0,0 +1,47 @@
1
+ # Simple workflow for deploying static content to GitHub Pages
2
+ name: Deploy static content to Pages
3
+
4
+ on:
5
+ # Runs on pushes targeting the default branch
6
+ push:
7
+ branches: ["storybook"]
8
+
9
+ # Allows you to run this workflow manually from the Actions tab
10
+ workflow_dispatch:
11
+
12
+ # Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
13
+ permissions:
14
+ contents: read
15
+ pages: write
16
+ id-token: write
17
+
18
+ # Allow one concurrent deployment
19
+ concurrency:
20
+ group: "pages"
21
+ cancel-in-progress: true
22
+
23
+ jobs:
24
+ # Single deploy job since we're just deploying
25
+ deploy:
26
+ environment:
27
+ name: github-pages
28
+ url: ${{ steps.deployment.outputs.page_url }}
29
+ runs-on: ubuntu-latest
30
+ steps:
31
+ - name: npm install, build-storybook
32
+ working-directory: ./
33
+ run: |
34
+ npm install
35
+ npm run build-storybook --if-present
36
+ - name: Checkout
37
+ uses: actions/checkout@v3
38
+ - name: Setup Pages
39
+ uses: actions/configure-pages@v2
40
+ - name: Upload artifact
41
+ uses: actions/upload-pages-artifact@v1
42
+ with:
43
+ # Upload entire repository
44
+ path: '.storybook/static'
45
+ - name: Deploy to GitHub Pages
46
+ id: deployment
47
+ uses: actions/deploy-pages@v1
package/CHANGELOG.md CHANGED
@@ -1,6 +1,29 @@
1
1
  # Changelog
2
2
 
3
- ## [Unreleased](https://github.com/shift72/core-template/compare/1.5.1...HEAD)
3
+ ## [Unreleased](https://github.com/shift72/core-template/compare/1.6.0...HEAD)
4
+
5
+
6
+ ## [1.6.0](https://github.com/shift72/core-template/compare/1.5.1...1.6.0)
7
+
8
+ ### Added
9
+ - AB#9564 Live label to film detail page and carousel with translations.
10
+ - AB#9361 Translations for live events, poster live availability status styling changes
11
+ - Translations for live event purchase flow.
12
+ - Translations for credit card validation errors.
13
+ - Translations for new card timing out error.
14
+ - Award categories moved to above film description
15
+
16
+ ### Fixed
17
+ - Inline cta buttons now grow when text is wider than button width.
18
+ - TV season detail page layout now matches film detail page layout.
19
+ - Trailer autoplay disabled for CTA buttons in homepage carousel.
20
+
21
+ ### Fixed
22
+ - Gap below page-collections consistent with sliders
23
+ - Made item-collections similar in structure and style to sliders, renamed accordingly
24
+
25
+ ### Fixed
26
+ - Bundle page style regression
4
27
 
5
28
  ## [1.5.1](https://github.com/shift72/core-template/compare/1.5.0...1.5.1)
6
29
 
@@ -13,7 +36,7 @@
13
36
  - Translations for discount errors
14
37
 
15
38
  ## Changed
16
- - Spacing between components AB#9013
39
+ - Spacing between components AB#9013
17
40
 
18
41
  ### Fixed
19
42
  - Default language now gets set either by site record or kibble.json depending on if DB translations are enabled AB#9675
package/kibble.json CHANGED
@@ -185,5 +185,5 @@
185
185
  "pageSize": 0
186
186
  }
187
187
  ],
188
- "coreTemplateVersion": "1.5.1"
188
+ "coreTemplateVersion": "1.6.0"
189
189
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@shift72/core-template",
3
- "version": "1.5.1",
3
+ "version": "1.6.0",
4
4
  "description": "Shift72 core template",
5
5
  "license": "MIT",
6
6
  "scripts": {
@@ -1465,6 +1465,21 @@
1465
1465
  "shopping_error_invalid_session_token": {
1466
1466
  "other": "انتهت جلسة التسوق ، يرجى المحاولة مرة أخرى."
1467
1467
  },
1468
+ "live_stream_starts": {
1469
+ "other": "يبدأ الدفق {{.Date}}"
1470
+ },
1471
+ "live_streaming_now": {
1472
+ "other": "يتدفقون الآن"
1473
+ },
1474
+ "live_streaming_ended": {
1475
+ "other": "انتهى الدفق"
1476
+ },
1477
+ "availability_live": {
1478
+ "other": "يعيش"
1479
+ },
1480
+ "shopping_action_get_ticket": {
1481
+ "other": "احصل على تذكرة"
1482
+ },
1468
1483
  "shopping_error_credit_discounts_not_allowed": {
1469
1484
  "other": "لا يمكنك استخدام الرمز الترويجي لهذا الشراء أو الاستئجار"
1470
1485
  },
@@ -1485,5 +1500,80 @@
1485
1500
  },
1486
1501
  "shopping_error_missing_code": {
1487
1502
  "other": "لم يتم تقديم رمز ترويجي"
1503
+ },
1504
+ "live_label_ended": {
1505
+ "other": "مباشر: انتهى"
1506
+ },
1507
+ "live_label_live": {
1508
+ "other": "يعيش"
1509
+ },
1510
+ "live_label_minutes": {
1511
+ "zero": "{{.Count}} المباشر: عدد الدقائق",
1512
+ "one": "البث المباشر: دقيقة واحدة",
1513
+ "two": "{{.Count}} المباشر: عدد الدقائق",
1514
+ "few": "{{.Count}} المباشر: عدد الدقائق",
1515
+ "many": "{{.Count}} المباشر: عدد الدقائق",
1516
+ "other": "{{.Count}} المباشر: عدد الدقائق"
1517
+ },
1518
+ "live_label_hours": {
1519
+ "zero": "البث المباشر: {{.Count}} الساعات",
1520
+ "one": "بث مباشر: 1 ساعة",
1521
+ "two": "البث المباشر: {{.Count}} الساعات",
1522
+ "few": "البث المباشر: {{.Count}} الساعات",
1523
+ "many": "البث المباشر: {{.Count}} الساعات",
1524
+ "other": "البث المباشر: {{.Count}} الساعات"
1525
+ },
1526
+ "live_label_days": {
1527
+ "zero": "مباشر: {{.Count}} أيام",
1528
+ "one": "مباشر: يوم واحد",
1529
+ "two": "مباشر: {{.Count}} أيام",
1530
+ "few": "مباشر: {{.Count}} أيام",
1531
+ "many": "مباشر: {{.Count}} أيام",
1532
+ "other": "مباشر: {{.Count}} أيام"
1533
+ },
1534
+ "shopping_info_subtitle_live_event": {
1535
+ "other": "البث المباشر"
1536
+ },
1537
+ "shopping_info_release_date_title_live_event": {
1538
+ "other": "هذا حدث مباشر."
1539
+ },
1540
+ "shopping_info_release_date_explanation1_live_event_rent": {
1541
+ "other": "يمكنك شراء تذكرة الآن ولكنك ستحتاج إلى المشاهدة أثناء البث المباشر."
1542
+ },
1543
+ "shopping_info_release_date_explanation2_live_event_rent": {
1544
+ "other": "ستحتاج إلى المشاهدة أثناء البث المباشر."
1545
+ },
1546
+ "shopping_info_release_date_explanation3_live_event_rent": {
1547
+ "other": "هذا الحدث مباشر حاليا."
1548
+ },
1549
+ "shopping_info_available_until_date_title_live_event": {
1550
+ "other": "ينتهي {{.Date}} . التاريخ."
1551
+ },
1552
+ "shopping_info_available_until_date_explanation_live_event_rent": {
1553
+ "other": "لن تتمكن من مشاهدة البث بعد ذلك."
1554
+ },
1555
+ "shopping_action_ticket": {
1556
+ "other": "احصل على تذكرة"
1557
+ },
1558
+ "shopping_info_release_date_title_live_event_start": {
1559
+ "other": "يبدأ {{.Date}} . التاريخ."
1560
+ },
1561
+ "shopping_info_release_date_explanation4_live_event_rent": {
1562
+ "other": "بدأت في {{.Date}} ."
1563
+ },
1564
+ "shopping_info_release_date_explanation5_live_event_rent": {
1565
+ "other": "لا يمكنك إرجاعه."
1566
+ },
1567
+ "shopping_error_stripe_invalid_expiry_month_past": {
1568
+ "other": "تاريخ انتهاء صلاحية بطاقتك في الماضي."
1569
+ },
1570
+ "shopping_error_stripe_invalid_expiry_year_past": {
1571
+ "other": "انقضت سنة انتهاء صلاحية بطاقتك."
1572
+ },
1573
+ "shopping_error_stripe_invalid_number": {
1574
+ "other": "رقم بطاقتك غير صالح."
1575
+ },
1576
+ "new_card_error_timed_out": {
1577
+ "other": "حدث خطأ ما عند إضافة تلك البطاقة. يرجى المحاولة مرة أخرى في وقت لاحق أو استخدام بطاقة مختلفة."
1488
1578
  }
1489
1579
  }
@@ -1413,6 +1413,21 @@
1413
1413
  "shopping_error_invalid_session_token": {
1414
1414
  "other": "La sessió de compres ha caducat, torna-ho a provar."
1415
1415
  },
1416
+ "live_stream_starts": {
1417
+ "other": "El flux comença {{.Date}}"
1418
+ },
1419
+ "live_streaming_now": {
1420
+ "other": "En streaming ara"
1421
+ },
1422
+ "live_streaming_ended": {
1423
+ "other": "El flux s'ha acabat"
1424
+ },
1425
+ "availability_live": {
1426
+ "other": "EN VIU"
1427
+ },
1428
+ "shopping_action_get_ticket": {
1429
+ "other": "Aconsegueix el bitllet"
1430
+ },
1416
1431
  "shopping_error_credit_discounts_not_allowed": {
1417
1432
  "other": "No podeu utilitzar un codi promocional per a aquesta compra o lloguer"
1418
1433
  },
@@ -1433,5 +1448,68 @@
1433
1448
  },
1434
1449
  "shopping_error_missing_code": {
1435
1450
  "other": "No s'ha proporcionat cap codi promocional"
1451
+ },
1452
+ "live_label_ended": {
1453
+ "other": "EN DIRECTE: ACABAT"
1454
+ },
1455
+ "live_label_live": {
1456
+ "other": "EN VIU"
1457
+ },
1458
+ "live_label_minutes": {
1459
+ "one": "EN DIRECTE: 1 MINUT",
1460
+ "other": "EN DIRECTE: {{.Count}} MINUTS"
1461
+ },
1462
+ "live_label_hours": {
1463
+ "one": "EN DIRECTE: 1 HORA",
1464
+ "other": "EN DIRECTE: {{.Count}} HORES"
1465
+ },
1466
+ "live_label_days": {
1467
+ "one": "EN DIRECTE: 1 DIA",
1468
+ "other": "EN DIRECTE: {{.Count}} DIES"
1469
+ },
1470
+ "shopping_info_subtitle_live_event": {
1471
+ "other": "Transmissió en directe"
1472
+ },
1473
+ "shopping_info_release_date_title_live_event": {
1474
+ "other": "Aquest és un esdeveniment en directe. "
1475
+ },
1476
+ "shopping_info_release_date_explanation1_live_event_rent": {
1477
+ "other": "Ja pots comprar una entrada, però hauràs de mirar-la mentre la transmissió sigui en directe."
1478
+ },
1479
+ "shopping_info_release_date_explanation2_live_event_rent": {
1480
+ "other": "Haureu de mirar-lo mentre la transmissió sigui en directe."
1481
+ },
1482
+ "shopping_info_release_date_explanation3_live_event_rent": {
1483
+ "other": "Aquest esdeveniment està actualment en directe. "
1484
+ },
1485
+ "shopping_info_available_until_date_title_live_event": {
1486
+ "other": "El flux acaba {{.Date}}. "
1487
+ },
1488
+ "shopping_info_available_until_date_explanation_live_event_rent": {
1489
+ "other": "Després d'això, no podreu veure l'emissió."
1490
+ },
1491
+ "shopping_action_ticket": {
1492
+ "other": "Aconsegueix el bitllet"
1493
+ },
1494
+ "shopping_info_release_date_title_live_event_start": {
1495
+ "other": "Comença la {{.Date}}. "
1496
+ },
1497
+ "shopping_info_release_date_explanation4_live_event_rent": {
1498
+ "other": "Va començar a {{.Date}}. "
1499
+ },
1500
+ "shopping_info_release_date_explanation5_live_event_rent": {
1501
+ "other": "No pots rebobinar-lo."
1502
+ },
1503
+ "shopping_error_stripe_invalid_expiry_month_past": {
1504
+ "other": "La data de caducitat de la vostra targeta és del passat."
1505
+ },
1506
+ "shopping_error_stripe_invalid_expiry_year_past": {
1507
+ "other": "L'any de caducitat de la vostra targeta és del passat."
1508
+ },
1509
+ "shopping_error_stripe_invalid_number": {
1510
+ "other": "El vostre número de targeta no és vàlid."
1511
+ },
1512
+ "new_card_error_timed_out": {
1513
+ "other": "S'ha produït un error en afegir aquesta targeta. Torneu-ho a provar més tard o utilitzeu una altra targeta."
1436
1514
  }
1437
1515
  }
@@ -1413,6 +1413,21 @@
1413
1413
  "shopping_error_invalid_session_token": {
1414
1414
  "other": "Shopping-sessionen er udløbet, prøv venligst igen."
1415
1415
  },
1416
+ "live_stream_starts": {
1417
+ "other": "Stream starter {{.Date}}"
1418
+ },
1419
+ "live_streaming_now": {
1420
+ "other": "Streamer nu"
1421
+ },
1422
+ "live_streaming_ended": {
1423
+ "other": "Stream sluttede"
1424
+ },
1425
+ "availability_live": {
1426
+ "other": "LIVE"
1427
+ },
1428
+ "shopping_action_get_ticket": {
1429
+ "other": "Få billet"
1430
+ },
1416
1431
  "shopping_error_credit_discounts_not_allowed": {
1417
1432
  "other": "Du kan ikke bruge en kampagnekode til dette køb eller leje"
1418
1433
  },
@@ -1433,5 +1448,68 @@
1433
1448
  },
1434
1449
  "shopping_error_missing_code": {
1435
1450
  "other": "Der blev ikke angivet nogen kampagnekode"
1451
+ },
1452
+ "live_label_ended": {
1453
+ "other": "LIVE: SLUT"
1454
+ },
1455
+ "live_label_live": {
1456
+ "other": "LIVE"
1457
+ },
1458
+ "live_label_minutes": {
1459
+ "one": "LIVE: 1 MINUT",
1460
+ "other": "LIVE: {{.Count}} MINUTTER"
1461
+ },
1462
+ "live_label_hours": {
1463
+ "one": "LIVE: 1 TIME",
1464
+ "other": "LIVE: {{.Count}} TIMER"
1465
+ },
1466
+ "live_label_days": {
1467
+ "one": "LIVE: 1 DAG",
1468
+ "other": "LIVE: {{.Count}} DAGE"
1469
+ },
1470
+ "shopping_info_subtitle_live_event": {
1471
+ "other": "Live stream"
1472
+ },
1473
+ "shopping_info_release_date_title_live_event": {
1474
+ "other": "Dette er en Live Event. "
1475
+ },
1476
+ "shopping_info_release_date_explanation1_live_event_rent": {
1477
+ "other": "Du kan købe en billet nu, men du bliver nødt til at se den, mens streamen er live."
1478
+ },
1479
+ "shopping_info_release_date_explanation2_live_event_rent": {
1480
+ "other": "Du skal se, mens streamen er live."
1481
+ },
1482
+ "shopping_info_release_date_explanation3_live_event_rent": {
1483
+ "other": "Denne begivenhed er i øjeblikket live. "
1484
+ },
1485
+ "shopping_info_available_until_date_title_live_event": {
1486
+ "other": "Stream slutter {{.Date}}. "
1487
+ },
1488
+ "shopping_info_available_until_date_explanation_live_event_rent": {
1489
+ "other": "Du vil ikke være i stand til at se streamen efter det."
1490
+ },
1491
+ "shopping_action_ticket": {
1492
+ "other": "Få billet"
1493
+ },
1494
+ "shopping_info_release_date_title_live_event_start": {
1495
+ "other": "Stream starter {{.Date}}. "
1496
+ },
1497
+ "shopping_info_release_date_explanation4_live_event_rent": {
1498
+ "other": "Det startede kl {{.Date}}. "
1499
+ },
1500
+ "shopping_info_release_date_explanation5_live_event_rent": {
1501
+ "other": "Du kan ikke spole den tilbage."
1502
+ },
1503
+ "shopping_error_stripe_invalid_expiry_month_past": {
1504
+ "other": "Dit korts udløbsdato ligger i fortiden."
1505
+ },
1506
+ "shopping_error_stripe_invalid_expiry_year_past": {
1507
+ "other": "Dit korts udløbsår er i fortiden."
1508
+ },
1509
+ "shopping_error_stripe_invalid_number": {
1510
+ "other": "Dit kortnummer er ugyldigt."
1511
+ },
1512
+ "new_card_error_timed_out": {
1513
+ "other": "Der gik noget galt, da det pågældende kort blev tilføjet. Prøv igen senere, eller brug et andet kort."
1436
1514
  }
1437
1515
  }
@@ -1413,6 +1413,21 @@
1413
1413
  "shopping_error_invalid_session_token": {
1414
1414
  "other": "Einkaufssitzung abgelaufen, bitte versuchen Sie es erneut."
1415
1415
  },
1416
+ "live_stream_starts": {
1417
+ "other": "Der Stream beginnt {{.Date}}"
1418
+ },
1419
+ "live_streaming_now": {
1420
+ "other": "Jetzt streamen"
1421
+ },
1422
+ "live_streaming_ended": {
1423
+ "other": "Stream beendet"
1424
+ },
1425
+ "availability_live": {
1426
+ "other": "LIVE"
1427
+ },
1428
+ "shopping_action_get_ticket": {
1429
+ "other": "Fahrkarte bekommen"
1430
+ },
1416
1431
  "shopping_error_credit_discounts_not_allowed": {
1417
1432
  "other": "Sie können keinen Aktionscode für diesen Kauf oder diese Miete verwenden"
1418
1433
  },
@@ -1433,5 +1448,68 @@
1433
1448
  },
1434
1449
  "shopping_error_missing_code": {
1435
1450
  "other": "Es wurde kein Aktionscode angegeben"
1451
+ },
1452
+ "live_label_ended": {
1453
+ "other": "LIVE: BEENDET"
1454
+ },
1455
+ "live_label_live": {
1456
+ "other": "LIVE"
1457
+ },
1458
+ "live_label_minutes": {
1459
+ "one": "LIVE: 1 MINUTE",
1460
+ "other": "LIVE: {{.Count}} MINUTEN"
1461
+ },
1462
+ "live_label_hours": {
1463
+ "one": "LIVE: 1 STUNDE",
1464
+ "other": "LIVE: {{.Count}} STUNDEN"
1465
+ },
1466
+ "live_label_days": {
1467
+ "one": "LIVE: 1 TAG",
1468
+ "other": "LIVE: {{.Count}} TAGE"
1469
+ },
1470
+ "shopping_info_subtitle_live_event": {
1471
+ "other": "Liveübertragung"
1472
+ },
1473
+ "shopping_info_release_date_title_live_event": {
1474
+ "other": "Dies ist ein Live-Event. "
1475
+ },
1476
+ "shopping_info_release_date_explanation1_live_event_rent": {
1477
+ "other": "Sie können jetzt ein Ticket kaufen, aber Sie müssen zuschauen, während der Stream live ist."
1478
+ },
1479
+ "shopping_info_release_date_explanation2_live_event_rent": {
1480
+ "other": "Sie müssen zuschauen, während der Stream live ist."
1481
+ },
1482
+ "shopping_info_release_date_explanation3_live_event_rent": {
1483
+ "other": "Diese Veranstaltung ist derzeit live. "
1484
+ },
1485
+ "shopping_info_available_until_date_title_live_event": {
1486
+ "other": "Stream endet am {{.Date}}. "
1487
+ },
1488
+ "shopping_info_available_until_date_explanation_live_event_rent": {
1489
+ "other": "Danach können Sie den Stream nicht mehr ansehen."
1490
+ },
1491
+ "shopping_action_ticket": {
1492
+ "other": "Fahrkarte bekommen"
1493
+ },
1494
+ "shopping_info_release_date_title_live_event_start": {
1495
+ "other": "Stream beginnt {{.Date}}. "
1496
+ },
1497
+ "shopping_info_release_date_explanation4_live_event_rent": {
1498
+ "other": "Es begann am {{.Date}}. "
1499
+ },
1500
+ "shopping_info_release_date_explanation5_live_event_rent": {
1501
+ "other": "Sie können es nicht zurückspulen."
1502
+ },
1503
+ "shopping_error_stripe_invalid_expiry_month_past": {
1504
+ "other": "Das Ablaufdatum Ihrer Karte liegt in der Vergangenheit."
1505
+ },
1506
+ "shopping_error_stripe_invalid_expiry_year_past": {
1507
+ "other": "Das Ablaufjahr Ihrer Karte liegt in der Vergangenheit."
1508
+ },
1509
+ "shopping_error_stripe_invalid_number": {
1510
+ "other": "Ihre Kartennummer ist ungültig."
1511
+ },
1512
+ "new_card_error_timed_out": {
1513
+ "other": "Beim Hinzufügen dieser Karte ist ein Fehler aufgetreten. Bitte versuchen Sie es später erneut oder verwenden Sie eine andere Karte."
1436
1514
  }
1437
1515
  }
@@ -1413,6 +1413,21 @@
1413
1413
  "shopping_error_invalid_session_token": {
1414
1414
  "other": "Η περίοδος αγορών έληξε, δοκιμάστε ξανά."
1415
1415
  },
1416
+ "live_stream_starts": {
1417
+ "other": "Η ροή ξεκινάει {{.Date}}"
1418
+ },
1419
+ "live_streaming_now": {
1420
+ "other": "Μετάδοση ροής τώρα"
1421
+ },
1422
+ "live_streaming_ended": {
1423
+ "other": "Η ροή έληξε"
1424
+ },
1425
+ "availability_live": {
1426
+ "other": "ΖΩ"
1427
+ },
1428
+ "shopping_action_get_ticket": {
1429
+ "other": "Πάρτε εισιτήριο"
1430
+ },
1416
1431
  "shopping_error_credit_discounts_not_allowed": {
1417
1432
  "other": "Δεν μπορείτε να χρησιμοποιήσετε κωδικό προσφοράς για αυτήν την αγορά ή ενοικίαση"
1418
1433
  },
@@ -1433,5 +1448,68 @@
1433
1448
  },
1434
1449
  "shopping_error_missing_code": {
1435
1450
  "other": "Δεν δόθηκε κωδικός προσφοράς"
1451
+ },
1452
+ "live_label_ended": {
1453
+ "other": "ΖΩΝΤΑΝΗ: ΤΕΛΕΙΩΣΕ"
1454
+ },
1455
+ "live_label_live": {
1456
+ "other": "ΖΩΝΤΑΝΗ"
1457
+ },
1458
+ "live_label_minutes": {
1459
+ "one": "ΖΩΝΤΑΝΗ: 1 ΛΕΠΤΟ",
1460
+ "other": "ΖΩΝΤΑΝΗ: {{.Count}} ΛΕΠΤΑ"
1461
+ },
1462
+ "live_label_hours": {
1463
+ "one": "ΖΩΝΤΑΝΗ: 1 ΩΡΑ",
1464
+ "other": "ΖΩΝΤΑΝΗ: {{.Count}} ΩΡΕΣ"
1465
+ },
1466
+ "live_label_days": {
1467
+ "one": "ΖΩΝΤΑΝΗ: 1 ΜΕΡΑ",
1468
+ "other": "ΖΩΝΤΑΝΗ: {{.Count}} ΗΜΕΡΕΣ"
1469
+ },
1470
+ "shopping_info_subtitle_live_event": {
1471
+ "other": "Ζωντανή μετάδοση"
1472
+ },
1473
+ "shopping_info_release_date_title_live_event": {
1474
+ "other": "Αυτή είναι μια Ζωντανή Εκδήλωση. "
1475
+ },
1476
+ "shopping_info_release_date_explanation1_live_event_rent": {
1477
+ "other": "Μπορείτε να αγοράσετε ένα εισιτήριο τώρα, αλλά θα πρέπει να το παρακολουθήσετε όσο είναι ζωντανή η ροή."
1478
+ },
1479
+ "shopping_info_release_date_explanation2_live_event_rent": {
1480
+ "other": "Θα χρειαστεί να παρακολουθήσετε ενώ η ροή είναι ζωντανή."
1481
+ },
1482
+ "shopping_info_release_date_explanation3_live_event_rent": {
1483
+ "other": "Αυτή η εκδήλωση είναι ζωντανή αυτήν τη στιγμή. "
1484
+ },
1485
+ "shopping_info_available_until_date_title_live_event": {
1486
+ "other": "Λήξη ροής {{.Date}}. "
1487
+ },
1488
+ "shopping_info_available_until_date_explanation_live_event_rent": {
1489
+ "other": "Δεν θα μπορείτε να παρακολουθήσετε τη ροή μετά από αυτό."
1490
+ },
1491
+ "shopping_action_ticket": {
1492
+ "other": "Πάρτε εισιτήριο"
1493
+ },
1494
+ "shopping_info_release_date_title_live_event_start": {
1495
+ "other": "Έναρξη ροής {{.Date}}. "
1496
+ },
1497
+ "shopping_info_release_date_explanation4_live_event_rent": {
1498
+ "other": "Ξεκίνησε στις {{.Date}}. "
1499
+ },
1500
+ "shopping_info_release_date_explanation5_live_event_rent": {
1501
+ "other": "Δεν μπορείτε να το επανατυλίξετε."
1502
+ },
1503
+ "shopping_error_stripe_invalid_expiry_month_past": {
1504
+ "other": "Η ημερομηνία λήξης της κάρτας σας είναι παρελθόν."
1505
+ },
1506
+ "shopping_error_stripe_invalid_expiry_year_past": {
1507
+ "other": "Το έτος λήξης της κάρτας σας είναι παρελθόν."
1508
+ },
1509
+ "shopping_error_stripe_invalid_number": {
1510
+ "other": "Ο αριθμός της κάρτας σας δεν είναι έγκυρος."
1511
+ },
1512
+ "new_card_error_timed_out": {
1513
+ "other": "Κάτι πήγε στραβά κατά την προσθήκη αυτής της κάρτας. Δοκιμάστε ξανά αργότερα ή χρησιμοποιήστε διαφορετική κάρτα."
1436
1514
  }
1437
1515
  }
@@ -1413,6 +1413,21 @@
1413
1413
  "shopping_error_invalid_session_token": {
1414
1414
  "other": "Shopping session expired, please try again."
1415
1415
  },
1416
+ "live_stream_starts": {
1417
+ "other": "Stream starts {{.Date}}"
1418
+ },
1419
+ "live_streaming_now": {
1420
+ "other": "Streaming now"
1421
+ },
1422
+ "live_streaming_ended": {
1423
+ "other": "Stream ended"
1424
+ },
1425
+ "availability_live": {
1426
+ "other": "LIVE"
1427
+ },
1428
+ "shopping_action_get_ticket": {
1429
+ "other": "Get ticket"
1430
+ },
1416
1431
  "shopping_error_credit_discounts_not_allowed": {
1417
1432
  "other": "You can not use a promo code for this purchase or rental"
1418
1433
  },
@@ -1433,5 +1448,68 @@
1433
1448
  },
1434
1449
  "shopping_error_missing_code": {
1435
1450
  "other": "No promo code was provided"
1451
+ },
1452
+ "live_label_ended": {
1453
+ "other": "LIVE: ENDED"
1454
+ },
1455
+ "live_label_live": {
1456
+ "other": "LIVE"
1457
+ },
1458
+ "live_label_minutes": {
1459
+ "one": "LIVE: 1 MINUTE",
1460
+ "other": "LIVE: {{.Count}} MINUTES"
1461
+ },
1462
+ "live_label_hours": {
1463
+ "one": "LIVE: 1 HOUR",
1464
+ "other": "LIVE: {{.Count}} HOURS"
1465
+ },
1466
+ "live_label_days": {
1467
+ "one": "LIVE: 1 DAY",
1468
+ "other": "LIVE: {{.Count}} DAYS"
1469
+ },
1470
+ "shopping_info_subtitle_live_event": {
1471
+ "other": "Live Stream"
1472
+ },
1473
+ "shopping_info_release_date_title_live_event": {
1474
+ "other": "This is a Live Event. "
1475
+ },
1476
+ "shopping_info_release_date_explanation1_live_event_rent": {
1477
+ "other": "You can buy a ticket now but you will need to watch while the stream is live."
1478
+ },
1479
+ "shopping_info_release_date_explanation2_live_event_rent": {
1480
+ "other": "You will need to watch while the stream is live."
1481
+ },
1482
+ "shopping_info_release_date_explanation3_live_event_rent": {
1483
+ "other": "This event is currently live. "
1484
+ },
1485
+ "shopping_info_available_until_date_title_live_event": {
1486
+ "other": "Stream ends {{.Date}}. "
1487
+ },
1488
+ "shopping_info_available_until_date_explanation_live_event_rent": {
1489
+ "other": "You won't be able to watch the stream after that."
1490
+ },
1491
+ "shopping_action_ticket": {
1492
+ "other": "Get ticket"
1493
+ },
1494
+ "shopping_info_release_date_title_live_event_start": {
1495
+ "other": "Stream starts {{.Date}}. "
1496
+ },
1497
+ "shopping_info_release_date_explanation4_live_event_rent": {
1498
+ "other": "It started {{.Date}}. "
1499
+ },
1500
+ "shopping_info_release_date_explanation5_live_event_rent": {
1501
+ "other": "You cannot rewind it."
1502
+ },
1503
+ "shopping_error_stripe_invalid_expiry_month_past": {
1504
+ "other": "Your card's expiration date is in the past."
1505
+ },
1506
+ "shopping_error_stripe_invalid_expiry_year_past": {
1507
+ "other": "Your card's expiration year is in the past."
1508
+ },
1509
+ "shopping_error_stripe_invalid_number": {
1510
+ "other": "Your card number is invalid."
1511
+ },
1512
+ "new_card_error_timed_out": {
1513
+ "other": "Something went wrong when adding that card. Please try again later or use a different card."
1436
1514
  }
1437
1515
  }