@shift72/core-template 1.7.0 → 1.9.0-prerelease.1

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 (48) hide show
  1. package/CHANGELOG.md +13 -1
  2. package/README.md +6 -4
  3. package/kibble.json +9 -3
  4. package/package.json +4 -4
  5. package/site/ar_LB.all.json +120 -0
  6. package/site/ca_ES.all.json +120 -0
  7. package/site/da_DK.all.json +120 -0
  8. package/site/de_DE.all.json +120 -0
  9. package/site/el_EL.all.json +120 -0
  10. package/site/en_AU.all.json +120 -0
  11. package/site/es_ES.all.json +120 -0
  12. package/site/es_MX.all.json +120 -0
  13. package/site/et_ET.all.json +120 -0
  14. package/site/fi_FI.all.json +120 -0
  15. package/site/fr_FR.all.json +120 -0
  16. package/site/hr_HR.all.json +120 -0
  17. package/site/hu_HU.all.json +120 -0
  18. package/site/it_IT.all.json +120 -0
  19. package/site/ja_JP.all.json +120 -0
  20. package/site/lt_LT.all.json +120 -0
  21. package/site/nl_BE.all.json +120 -0
  22. package/site/no_NO.all.json +120 -0
  23. package/site/pl_PL.all.json +120 -0
  24. package/site/pt_BR.all.json +120 -0
  25. package/site/pt_PT.all.json +120 -0
  26. package/site/ru_RU.all.json +120 -0
  27. package/site/sr_SR.all.json +120 -0
  28. package/site/static/fonts/fa-s72.woff +0 -0
  29. package/site/static/images/icons/amazonfiretv.png +0 -0
  30. package/site/static/images/icons/androidtv.png +0 -0
  31. package/site/static/images/icons/appletv.png +0 -0
  32. package/site/styles/_buttons.scss +32 -1
  33. package/site/styles/_footer.scss +57 -5
  34. package/site/styles/_forms.scss +13 -0
  35. package/site/styles/_icons.scss +24 -0
  36. package/site/styles/_shift72.scss +37 -14
  37. package/site/styles/_variables.scss +25 -0
  38. package/site/templates/application/footer/app-badges.jet +30 -11
  39. package/site/templates/application/footer/footer.jet +3 -0
  40. package/site/templates/application/footer/nav.jet +12 -12
  41. package/site/templates/application/footer/social-media-buttons.jet +25 -0
  42. package/site/templates/collection/carousel/item.jet +0 -2
  43. package/site/templates/items/meta_item.jet +0 -2
  44. package/site/templates/items/tagline.jet +1 -1
  45. package/site/templates/tv/detail.jet +1 -0
  46. package/site/tr_TR.all.json +120 -0
  47. package/site/uk_UA.all.json +120 -0
  48. package/site/zh_TW.all.json +120 -0
@@ -112,6 +112,19 @@ s72-activatedevice-form,
112
112
  color: rgba(var(--body-color-rgb), 0.8);
113
113
  }
114
114
  }
115
+
116
+ &.s72-form-control-readonly,
117
+ &.s72-form-control-readonly:focus {
118
+ border: 0;
119
+ color: rgba(var(--body-color-rgb), 0.5);
120
+ cursor: not-allowed;
121
+ outline: none;
122
+
123
+ /* Make sure all text based inputs have the right padding */
124
+ &input:not([type='submit']):not([type='file']) {
125
+ padding: 0.375rem 0.75rem;
126
+ }
127
+ }
115
128
  }
116
129
  // Account Page Change Password Field
117
130
  .s72-form-control-static {
@@ -82,10 +82,30 @@
82
82
  content: '\e002';
83
83
  }
84
84
 
85
+ .fa-instagram-footer::before {
86
+ content: '\e007';
87
+ }
88
+
85
89
  .fa-twitter::before {
86
90
  content: '\e008';
87
91
  }
88
92
 
93
+ .fa-twitter-footer::before {
94
+ content: '\e01f';
95
+ }
96
+
97
+ .fa-facebook-footer::before {
98
+ content: '\e01e';
99
+ }
100
+
101
+ .fa-youtube-footer::before {
102
+ content: '\e005';
103
+ }
104
+
105
+ .fa-letterboxd-footer::before {
106
+ content: '\e006';
107
+ }
108
+
89
109
  .fa-star::before {
90
110
  content: '\e009';
91
111
  }
@@ -118,6 +138,10 @@
118
138
  content: '\e010';
119
139
  }
120
140
 
141
+ .fa-external-link::before {
142
+ content: '\e004';
143
+ }
144
+
121
145
  .fa-linkedin::before {
122
146
  content: '\e011';
123
147
  }
@@ -34,6 +34,10 @@
34
34
  @extend .btn-primary-override;
35
35
  }
36
36
 
37
+ .s72-btn-purchase-option {
38
+ @extend .btn-primary-override;
39
+ }
40
+
37
41
  .s72-btn-close {
38
42
  @extend .close;
39
43
  }
@@ -110,6 +114,39 @@
110
114
  }
111
115
  }
112
116
 
117
+ .s72-auth-selector {
118
+ padding-bottom: 10px;
119
+
120
+ p {
121
+ text-align: center;
122
+ }
123
+
124
+ .s72-auth-selector-buttons {
125
+ align-items: center;
126
+ display: flex;
127
+ flex-direction: column;
128
+
129
+ > * {
130
+ width: 80%;
131
+ }
132
+ }
133
+
134
+ .s72-or-divider {
135
+ display: flex;
136
+ margin: 16px 0;
137
+ padding: 0 10px;
138
+ width: 75%;
139
+
140
+ hr {
141
+ flex: 1;
142
+ }
143
+
144
+ div {
145
+ padding: 0 10px;
146
+ }
147
+ }
148
+ }
149
+
113
150
  .s72-combined-auth-email {
114
151
  @extend .alert;
115
152
  @extend .alert-secondary;
@@ -230,15 +267,6 @@
230
267
  @extend .form-check-input;
231
268
  }
232
269
 
233
- .s72-form-control-readonly,
234
- .s72-form-control-static {
235
- @extend .form-control-plaintext;
236
-
237
- .form-page & {
238
- color: rgba(var(--body-color-rgb), 0.5);
239
- }
240
- }
241
-
242
270
  // some fields which are "readonly" shouldn't have the padding and font-size applied to them because they are text (not masked "****" values)
243
271
  .s72-readonly-text .s72-form-control-readonly {
244
272
  @extend .py-0;
@@ -249,11 +277,6 @@
249
277
  }
250
278
 
251
279
  s72-useraccount-form {
252
- .s72-form-control-readonly {
253
- @extend .s72-form-control-static;
254
- border-radius: $border-radius;
255
- }
256
-
257
280
  .s72-account-password-form-group,
258
281
  .s72-account-pin-form-group {
259
282
  margin-top: 30px;
@@ -136,6 +136,31 @@
136
136
  --subtitle-2-style-font-size: 14px;
137
137
  --caption-1-style-font-size: 16px;
138
138
  --overline-style-font-size: 14px;
139
+
140
+ /* Alert component dark theme colours */
141
+
142
+ --alert-background-color-error: #25262b;
143
+ --alert-border-color-error: #ff6b6b;
144
+ --alert-title-color-error: #ff6b6b;
145
+ --alert-text-color-error: #c1c2c5;
146
+
147
+ --alert-background-color-success: #25262b;
148
+ --alert-border-color-success: #20c997;
149
+ --alert-title-color-success: #20c997;
150
+ --alert-text-color-success: #c1c2c5;
151
+
152
+ /* Alert component light theme colours */
153
+ /* Swap above with these for light theme templates
154
+ --alert-background-color-error: #ffffff;
155
+ --alert-border-color-error: #fa5252;
156
+ --alert-title-color-error: #fa5252;
157
+ --alert-text-color-error: #000000;
158
+
159
+ --alert-background-color-success: #ffffff;
160
+ --alert-border-color-success: #12b886;
161
+ --alert-title-color-success: #12b886;
162
+ --alert-text-color-success: #000000;
163
+ */
139
164
  }
140
165
 
141
166
  // Bootstrap 4 overrides START
@@ -3,23 +3,42 @@
3
3
  {{block appBadges()}}
4
4
  {{app_link_ios := config("app_link_ios")}}
5
5
  {{app_link_android := config("app_link_android")}}
6
- {{if config("app_link_ios") != "" || config("app_link_android") != ""}}
6
+ {{app_link_apple_tv_enabled := config("app_link_apple_tv_enabled")}}
7
+ {{app_link_android_tv := config("app_link_android_tv")}}
8
+ {{app_link_fire_tv := config("app_link_fire_tv")}}
9
+
10
+ {{if app_link_ios != "" || app_link_android != ""}}
7
11
  <div class="app-banner">
8
12
  <h2 class="app-badge-title">{{ i18n("app_badge_title") }}</h2>
13
+
9
14
  <div class="app-badge-container">
10
- {{if config("app_link_ios") != ""}}
11
- <a class="app-badge-link" href="{{app_link_ios}}" target="_blank">
12
- <s72-image src="/images/icons/app-store-badge.png" alt="{{ i18n("app_badge_ios") }}" class="app-badge-image"></s72-image>
13
- </a>
14
- {{end}}
15
- {{if config("app_link_android") != ""}}
16
- <a class="app-badge-link" href="{{app_link_android}}" target="_blank">
17
- <s72-image src="/images/icons/google-play-badge.png" alt="{{ i18n("app_badge_android") }}" class="app-badge-image"></s72-image>
18
- </a>
19
- {{end}}
15
+ {{yield appBadge(href=app_link_ios, image="/images/icons/app-store-badge.png", altKey="app_badge_ios", imgClass="app-badge-image")}}
16
+ {{yield appBadge(href=app_link_android, image="/images/icons/google-play-badge.png", altKey="app_badge_android", imgClass="app-badge-image")}}
17
+ </div>
18
+ </div>
19
+
20
+ {{yield separator()}}
21
+ {{end}}
22
+
23
+ {{if app_link_apple_tv_enabled == "true" || app_link_android_tv != "" || app_link_fire_tv != ""}}
24
+ <div class="tv-app-banner">
25
+ <h2 class="tv-app-badge-title">{{ i18n("tv_app_badge_title") }}</h2>
26
+
27
+ <div class="tv-app-badge-container">
28
+ {{yield appBadge(href=app_link_fire_tv, image="/images/icons/amazonfiretv.png", altKey="app_badge_fire_tv", imgClass="tv-badge-image")}}
29
+ {{yield appBadge(href=app_link_android_tv, image="/images/icons/androidtv.png", altKey="app_badge_android_tv", imgClass="tv-badge-image")}}
30
+ {{yield appBadge(href=app_link_apple_tv_enabled, image="/images/icons/appletv.png", altKey="app_badge_apple_tv", imgClass="tv-badge-image")}}
20
31
  </div>
21
32
  </div>
22
33
 
23
34
  {{yield separator()}}
24
35
  {{end}}
25
36
  {{end}}
37
+
38
+ {{block appBadge(href, image, altKey, imgClass)}}
39
+ {{if href != "" && href != "false"}}
40
+ <a class="app-badge-link" {{if href != "true" }} href="{{href}}" target="_blank" {{end}}>
41
+ <s72-image class="{{imgClass}}" src="{{image}}" alt="{{ i18n(altKey) }}" ></s72-image>
42
+ </a>
43
+ {{end}}
44
+ {{end}}
@@ -3,6 +3,7 @@
3
3
  {{import "./nav.jet"}}
4
4
  {{import "./app-badges.jet"}}
5
5
  {{import "./sponsor-banner.jet"}}
6
+ {{import "./social-media-buttons.jet"}}
6
7
 
7
8
  {{block footer()}}
8
9
 
@@ -16,6 +17,8 @@
16
17
 
17
18
  {{yield footerNav(navLinks=site.Navigation.Footer)}}
18
19
 
20
+ {{yield footerSocialMediaButtons()}}
21
+
19
22
  {{yield footerInfo()}}
20
23
  </footer>
21
24
  {{end}}
@@ -1,13 +1,13 @@
1
1
  {{ block footerNav(navLinks) }}
2
- <nav class="footer-nav" aria-label="{{ i18n("wcag_aria_label_footer") }}">
3
- {{ if len(navLinks) > 0 }}
4
- <ul class="nav">
5
- {{ range navLinks }}
6
- <li class="nav-item {{ len(.Link.ExternalURL) == 0 && routeToSlug(.Link.Slug) == currentUrlPath ? "active" : "" }}">
7
- <a class="nav-link" href="{{ len(.Link.ExternalURL) > 0 ? .Link.ExternalURL : routeToSlug(.Link.Slug) }}">{{ .Label }}</a>
8
- </li>
9
- {{ end }}
10
- </ul>
11
- {{ end }}
12
- </nav>
13
- {{ end }}
2
+ {{ if len(navLinks) > 0 }}
3
+ <nav class="footer-nav" aria-label="{{ i18n("wcag_aria_label_footer") }}">
4
+ <ul class="nav">
5
+ {{ range navLinks }}
6
+ <li class="nav-item {{ len(.Link.ExternalURL) == 0 && routeToSlug(.Link.Slug) == currentUrlPath ? "active" : "" }}">
7
+ <a class="nav-link" href="{{ len(.Link.ExternalURL) > 0 ? .Link.ExternalURL : routeToSlug(.Link.Slug) }}">{{ .Label }}</a>
8
+ </li>
9
+ {{ end }}
10
+ </ul>
11
+ </nav>
12
+ {{ end }}
13
+ {{ end }}
@@ -0,0 +1,25 @@
1
+ {{block footerSocialMediaButtons()}}
2
+ {{social_link_instagram := config("social_link_instagram")}}
3
+ {{social_link_youtube := config("social_link_youtube")}}
4
+ {{social_link_facebook := config("social_link_facebook")}}
5
+ {{social_link_twitter := config("social_link_twitter")}}
6
+ {{social_link_letterboxd := config("social_link_letterboxd")}}
7
+
8
+ {{if social_link_instagram != "" || social_link_youtube != "" || social_link_facebook != "" || social_link_twitter != "" || social_link_letterboxd != ""}}
9
+ <div class="footer-social-media-icons">
10
+ {{yield footerSocialMediaIcon(link=social_link_instagram, iconClass="instagram", titleKey="wcag_aria_label_social_instagram")}}
11
+ {{yield footerSocialMediaIcon(link=social_link_youtube, iconClass="youtube", titleKey="wcag_aria_label_social_youtube")}}
12
+ {{yield footerSocialMediaIcon(link=social_link_facebook, iconClass="facebook", titleKey="wcag_aria_label_social_facebook")}}
13
+ {{yield footerSocialMediaIcon(link=social_link_twitter, iconClass="twitter", titleKey="wcag_aria_label_social_twitter")}}
14
+ {{yield footerSocialMediaIcon(link=social_link_letterboxd, iconClass="letterboxd", titleKey="wcag_aria_label_social_letterboxd")}}
15
+ </div>
16
+ {{end}}
17
+ {{end}}
18
+
19
+ {{block footerSocialMediaIcon(link, iconClass, titleKey)}}
20
+ {{if link != ""}}
21
+ <a class="s72-btn" target="_blank" title="{{i18n(titleKey)}}" href="{{link}}">
22
+ <i class="fa fa-{{iconClass}}-footer"></i>
23
+ </a>
24
+ {{end}}
25
+ {{end}}
@@ -39,8 +39,6 @@
39
39
  <s72-availability-label data-slug="{{item.Slug}}"></s72-availability-label>
40
40
 
41
41
  {{yield ctaButtons(itemType=item.ItemType, context="carousel") item.InnerItem}}
42
-
43
-
44
42
  </div>
45
43
  </div>
46
44
  {{end}}
@@ -29,9 +29,7 @@
29
29
  {{end}}
30
30
  {{pill := ""}}
31
31
  {{pillSupplement := ""}}
32
- {{slugRoute := routeToSlug(item.Slug)}}
33
32
  {{if isEpisode}}
34
- {{slugRoute = routeToSlug(item.InnerItem.Season.Slug) + "#episode-" + item.InnerItem.EpisodeNumber}}
35
33
  {{synopsis = item.InnerItem.Overview}}
36
34
  {{pill = i18n("episode_name") + " " + item.InnerItem.EpisodeNumber}}
37
35
  {{pillSupplement = "from " + i18n("season_name") + " " + item.InnerItem.Season.SeasonNumber}}
@@ -17,7 +17,7 @@
17
17
 
18
18
  {{if isset(.Runtime)}}
19
19
  {{yield item(class="runtime") content}}
20
- {{if .Runtime > 60}}
20
+ {{if .Runtime > 59}}
21
21
  {{.Runtime.Hours()}}{{i18n("runtime_hours")}}
22
22
  {{end}}
23
23
  {{.Runtime.Minutes()}}{{i18n("runtime_minutes")}}
@@ -81,6 +81,7 @@
81
81
  <h2>{{i18n("meta_detail_episodes_title")}}</h2>
82
82
  {{yield list(itemsPerRow=4, itemLayout="portrait") content}}
83
83
  {{range episode := tvseason.Episodes}}
84
+ <a id="episode-{{episode.EpisodeNumber}}"></a>
84
85
  {{yield subItem(item=episode)}}
85
86
  {{end}}
86
87
  {{end}}
@@ -1511,5 +1511,125 @@
1511
1511
  },
1512
1512
  "new_card_error_timed_out": {
1513
1513
  "other": "Bu kartı eklerken bir şeyler ters gitti. Lütfen daha sonra tekrar deneyin veya farklı bir kart kullanın."
1514
+ },
1515
+ "tv_app_badge_title": {
1516
+ "other": "TV uygulamalarında kullanılabilir"
1517
+ },
1518
+ "app_badge_fire_tv": {
1519
+ "other": "Amazon Fire TV'den alın"
1520
+ },
1521
+ "app_badge_android_tv": {
1522
+ "other": "Android TV'de alın"
1523
+ },
1524
+ "app_badge_apple_tv": {
1525
+ "other": "Apple TV'de alın"
1526
+ },
1527
+ "wcag_aria_label_social_instagram": {
1528
+ "other": "Bizi Instagram'da ziyaret edin"
1529
+ },
1530
+ "wcag_aria_label_social_youtube": {
1531
+ "other": "Youtube'da abone olun"
1532
+ },
1533
+ "wcag_aria_label_social_facebook": {
1534
+ "other": "Facebook'ta bizi ziyaret edin"
1535
+ },
1536
+ "wcag_aria_label_social_twitter": {
1537
+ "other": "Twitter'da bizi ziyaret edin"
1538
+ },
1539
+ "wcag_aria_label_social_letterboxd": {
1540
+ "other": "Bizi Letterboxd'da ziyaret edin"
1541
+ },
1542
+ "validate_email_about": {
1543
+ "other": "Bir hesap oluşturmak için önce e-posta adresinizi doğrulamalıyız. E-postanızı girin, bir hesap kayıt daveti göndereceğiz."
1544
+ },
1545
+ "validate_email_success": {
1546
+ "other": "{{.Email}} adresine bir doğrulama e-postası gönderildi. Lütfen e-postanızı kontrol edin ve hesap oluşturma talimatlarını takip edin."
1547
+ },
1548
+ "validate_email_email_already_in_use": {
1549
+ "other": "Bu e-posta zaten kullanılıyor."
1550
+ },
1551
+ "validate_email_verify_email_already_sent": {
1552
+ "other": "{{.Email}} adresine zaten bir doğrulama e-postası gönderildi. Lütfen e-posta hesabınızı kontrol edin."
1553
+ },
1554
+ "validate_email_alert_success": {
1555
+ "other": "Başarı"
1556
+ },
1557
+ "validate_email_alert_error": {
1558
+ "other": "Hata!"
1559
+ },
1560
+ "validate_email_submit_button_text": {
1561
+ "other": "Hesap oluşturmak"
1562
+ },
1563
+ "validate_email_submit_button_text_in_progress": {
1564
+ "other": "Hesap oluşturuluyor..."
1565
+ },
1566
+ "signup_form_error_email_verification_missing": {
1567
+ "other": "Doğrulama kodu eksik."
1568
+ },
1569
+ "signup_form_error_email_verification_expired": {
1570
+ "other": "Doğrulama jetonunun süresi doldu."
1571
+ },
1572
+ "signup_form_error_email_verification_no_match": {
1573
+ "other": "Bu e-posta doğrulanmadı."
1574
+ },
1575
+ "alert_title_success": {
1576
+ "other": "Başarı"
1577
+ },
1578
+ "alert_title_error": {
1579
+ "other": "Hata!"
1580
+ },
1581
+ "signup_form_error_email_verification_status_rejected": {
1582
+ "other": "Sağlanan posta adresi, kısıtlanmış bir etki alanı içindir. Lütfen farklı bir e-posta sağlayıcısı ile kaydolun."
1583
+ },
1584
+ "signup_form_error_email_verification_generic": {
1585
+ "other": "E-posta adresiniz doğrulanırken bilinmeyen bir hata oluştu. Sayfayı yenilemeyi veya site yöneticinizle iletişime geçmeyi deneyin."
1586
+ },
1587
+ "signup_form_error_generic": {
1588
+ "other": "Hesabınız oluşturulurken bilinmeyen bir hata oluştu. Sayfayı yenilemeyi veya site yöneticinizle iletişime geçmeyi deneyin."
1589
+ },
1590
+ "signup_form_error_email_verification_link_text": {
1591
+ "other": "E-posta doğrulamasını yeniden dene"
1592
+ },
1593
+ "auth_selector_info": {
1594
+ "other": "Bu içeriği satın almak için bir hesap gereklidir."
1595
+ },
1596
+ "auth_selector_sign_in_button_text": {
1597
+ "other": "Zaten bir üye misiniz? Kayıt olmak"
1598
+ },
1599
+ "auth_selector_sign_up_button_text": {
1600
+ "other": "Hesap oluşturmak"
1601
+ },
1602
+ "auth_selector_or_divider_text": {
1603
+ "other": "veya"
1604
+ },
1605
+ "validate_email_error_verify_email_already_sent": {
1606
+ "other": "Bir doğrulama e-postası zaten gönderildi. Lütfen e-posta hesabınızı kontrol edin."
1607
+ },
1608
+ "validate_email_error_email_invalid": {
1609
+ "other": "E-posta geçerli değil."
1610
+ },
1611
+ "validate_email_error_email_required": {
1612
+ "other": "Bir e-mail gerekli."
1613
+ },
1614
+ "validate_email_error_email_taken": {
1615
+ "other": "Bu e-posta zaten kullanılıyor."
1616
+ },
1617
+ "validate_email_error_email_verification_status_rejected": {
1618
+ "other": "Sağlanan posta adresi, kısıtlanmış bir etki alanı içindir. Lütfen farklı bir e-posta sağlayıcısı ile kaydolun."
1619
+ },
1620
+ "validate_email_error_pin_required": {
1621
+ "other": "Bir PIN kodu gereklidir."
1622
+ },
1623
+ "validate_email_error_signups_disabled": {
1624
+ "other": "Kayıtlar şu anda devre dışı."
1625
+ },
1626
+ "validate_email_error_too_many_requests": {
1627
+ "other": "Çok fazla talep var.Lütfen daha sonra tekrar deneyin."
1628
+ },
1629
+ "validate_email_error_verify_email_disabled": {
1630
+ "other": "E-posta doğrulama şu anda devre dışı."
1631
+ },
1632
+ "validate_email_error_generic": {
1633
+ "other": "Sağlanan e-posta doğrulanırken bilinmeyen bir hata oluştu. Sayfayı yenilemeyi veya site yöneticinizle iletişime geçmeyi deneyin."
1514
1634
  }
1515
1635
  }
@@ -1571,5 +1571,125 @@
1571
1571
  },
1572
1572
  "new_card_error_timed_out": {
1573
1573
  "other": "Під час додавання цієї картки сталася помилка. Повторіть спробу пізніше або скористайтеся іншою карткою."
1574
+ },
1575
+ "tv_app_badge_title": {
1576
+ "other": "Доступно в додатках для телевізора"
1577
+ },
1578
+ "app_badge_fire_tv": {
1579
+ "other": "Отримайте його на Amazon Fire TV"
1580
+ },
1581
+ "app_badge_android_tv": {
1582
+ "other": "Завантажте на Android TV"
1583
+ },
1584
+ "app_badge_apple_tv": {
1585
+ "other": "Отримайте його на Apple TV"
1586
+ },
1587
+ "wcag_aria_label_social_instagram": {
1588
+ "other": "Відвідайте нас в Instagram"
1589
+ },
1590
+ "wcag_aria_label_social_youtube": {
1591
+ "other": "Підпишіться на Youtube"
1592
+ },
1593
+ "wcag_aria_label_social_facebook": {
1594
+ "other": "Відвідайте нас на Facebook"
1595
+ },
1596
+ "wcag_aria_label_social_twitter": {
1597
+ "other": "Відвідайте нас у Twitter"
1598
+ },
1599
+ "wcag_aria_label_social_letterboxd": {
1600
+ "other": "Відвідайте нас на Letterboxd"
1601
+ },
1602
+ "validate_email_about": {
1603
+ "other": "Щоб створити обліковий запис, ми повинні спочатку підтвердити вашу електронну адресу. Введіть свою електронну адресу, і ми надішлемо запрошення на реєстрацію облікового запису."
1604
+ },
1605
+ "validate_email_success": {
1606
+ "other": "Електронний лист для підтвердження надіслано на {{.Email}} . Перевірте свою електронну пошту та дотримуйтесь інструкцій щодо створення облікового запису."
1607
+ },
1608
+ "validate_email_email_already_in_use": {
1609
+ "other": "Ця електронна адреса вже використовується."
1610
+ },
1611
+ "validate_email_verify_email_already_sent": {
1612
+ "other": "Електронний лист для підтвердження вже надіслано на {{.Email}} . Перевірте свій обліковий запис електронної пошти."
1613
+ },
1614
+ "validate_email_alert_success": {
1615
+ "other": "Успіх"
1616
+ },
1617
+ "validate_email_alert_error": {
1618
+ "other": "Помилка!"
1619
+ },
1620
+ "validate_email_submit_button_text": {
1621
+ "other": "Створити акаунт"
1622
+ },
1623
+ "validate_email_submit_button_text_in_progress": {
1624
+ "other": "Створення облікового запису..."
1625
+ },
1626
+ "signup_form_error_email_verification_missing": {
1627
+ "other": "Відсутній код підтвердження."
1628
+ },
1629
+ "signup_form_error_email_verification_expired": {
1630
+ "other": "Термін дії маркера підтвердження минув."
1631
+ },
1632
+ "signup_form_error_email_verification_no_match": {
1633
+ "other": "Ця електронна адреса не була підтверджена."
1634
+ },
1635
+ "alert_title_success": {
1636
+ "other": "Успіх"
1637
+ },
1638
+ "alert_title_error": {
1639
+ "other": "Помилка!"
1640
+ },
1641
+ "signup_form_error_email_verification_status_rejected": {
1642
+ "other": "Надана адреса електронної пошти призначена для обмеженого домену. Зареєструйтеся в іншого постачальника електронної пошти."
1643
+ },
1644
+ "signup_form_error_email_verification_generic": {
1645
+ "other": "Під час перевірки адреси електронної пошти сталася невідома помилка. Спробуйте оновити сторінку або зверніться до адміністратора сайту."
1646
+ },
1647
+ "signup_form_error_generic": {
1648
+ "other": "Під час створення облікового запису сталася невідома помилка. Спробуйте оновити сторінку або зверніться до адміністратора сайту."
1649
+ },
1650
+ "signup_form_error_email_verification_link_text": {
1651
+ "other": "Повторіть перевірку електронної пошти"
1652
+ },
1653
+ "auth_selector_info": {
1654
+ "other": "Щоб придбати цей вміст, потрібен обліковий запис."
1655
+ },
1656
+ "auth_selector_sign_in_button_text": {
1657
+ "other": "Вже учасник? Увійти"
1658
+ },
1659
+ "auth_selector_sign_up_button_text": {
1660
+ "other": "Створити акаунт"
1661
+ },
1662
+ "auth_selector_or_divider_text": {
1663
+ "other": "або"
1664
+ },
1665
+ "validate_email_error_verify_email_already_sent": {
1666
+ "other": "Електронний лист для підтвердження вже надіслано. Перевірте свій обліковий запис електронної пошти."
1667
+ },
1668
+ "validate_email_error_email_invalid": {
1669
+ "other": "Електронна адреса недійсна."
1670
+ },
1671
+ "validate_email_error_email_required": {
1672
+ "other": "Потрібна електронна адреса."
1673
+ },
1674
+ "validate_email_error_email_taken": {
1675
+ "other": "Ця електронна адреса вже використовується."
1676
+ },
1677
+ "validate_email_error_email_verification_status_rejected": {
1678
+ "other": "Надана адреса електронної пошти призначена для обмеженого домену. Зареєструйтеся в іншого постачальника електронної пошти."
1679
+ },
1680
+ "validate_email_error_pin_required": {
1681
+ "other": "Необхідно ввести PIN-код."
1682
+ },
1683
+ "validate_email_error_signups_disabled": {
1684
+ "other": "Реєстрацію наразі вимкнено."
1685
+ },
1686
+ "validate_email_error_too_many_requests": {
1687
+ "other": "Забагато запитів, спробуйте пізніше."
1688
+ },
1689
+ "validate_email_error_verify_email_disabled": {
1690
+ "other": "Перевірку електронної пошти наразі вимкнено."
1691
+ },
1692
+ "validate_email_error_generic": {
1693
+ "other": "Під час перевірки наданої електронної пошти сталася невідома помилка. Спробуйте оновити сторінку або зверніться до адміністратора сайту."
1574
1694
  }
1575
1695
  }