@shift72/core-template 0.4.2 → 0.4.3
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.
- package/CHANGELOG.md +15 -0
- package/kibble.json +2 -2
- package/package.json +7 -4
- package/scripts/css-local-get.js +34 -0
- package/scripts/css-local-put.js +110 -0
- package/scripts/language-file-validator.js +16 -2
- package/site/ar_LB.all.json +19 -17
- package/site/ca_ES.all.json +13 -32
- package/site/da_DK.all.json +44 -32
- package/site/de_DE.all.json +127 -2
- package/site/ee_EE.all.json +87 -22
- package/site/el_EL.all.json +86 -17
- package/site/en_AU.all.json +24 -23
- package/site/es_ES.all.json +125 -2
- package/site/es_MX.all.json +162 -2
- package/site/fi_FI.all.json +161 -2
- package/site/fr_FR.all.json +128 -2
- package/site/hr_HR.all.json +61 -4
- package/site/hu_HU.all.json +87 -22
- package/site/it_IT.all.json +124 -2
- package/site/ja_JP.all.json +160 -2
- package/site/lt_LT.all.json +47 -14
- package/site/nl_BE.all.json +49 -15
- package/site/no_NO.all.json +84 -22
- package/site/pl_PL.all.json +159 -2
- package/site/pt_BR.all.json +21 -32
- package/site/pt_PT.all.json +90 -18
- package/site/ru_RU.all.json +82 -15
- package/site/se_SE.all.json +61 -30
- package/site/styles/_awards.scss +6 -6
- package/site/styles/_bootstrap4.scss +90 -0
- package/site/styles/_buttons.scss +5 -4
- package/site/styles/_can-be-watched-button.scss +2 -0
- package/site/styles/_card.scss +2 -2
- package/site/styles/_carousel.scss +43 -28
- package/site/styles/_collections.scss +4 -4
- package/site/styles/_cookie-consent.scss +1 -1
- package/site/styles/_devices.scss +3 -3
- package/site/styles/_footer.scss +6 -6
- package/site/styles/_forms.scss +6 -6
- package/site/styles/_globals.scss +1 -1
- package/site/styles/_icons.scss +2 -2
- package/site/styles/_language-selector.scss +2 -2
- package/site/styles/_legacy.scss +3 -3
- package/site/styles/_meta-detail.scss +44 -24
- package/site/styles/_mixins.scss +2 -2
- package/site/styles/_nav.scss +40 -40
- package/site/styles/_pages.scss +12 -12
- package/site/styles/_pin-codes.scss +2 -2
- package/site/styles/_plans.scss +1 -1
- package/site/styles/_poster.scss +5 -4
- package/site/styles/_shift72.scss +22 -22
- package/site/styles/_shopping.scss +8 -8
- package/site/styles/_slider.scss +4 -10
- package/site/styles/_social-media-buttons.scss +20 -20
- package/site/styles/_swiper.scss +2 -2
- package/site/styles/_variables.scss +107 -82
- package/site/styles/_wishlist.scss +2 -2
- package/site/styles/main.scss +1 -3
- package/site/templates/application/application.jet +13 -1
- package/site/templates/bundle/buttons.jet +2 -1
- package/site/templates/bundle/item.jet +1 -2
- package/site/templates/collection/carousel_item.jet +12 -13
- package/site/templates/common/awards/item.jet +1 -1
- package/site/templates/film/item.jet +36 -12
- package/site/templates/tv/detail.jet +7 -7
- package/site/tr_TR.all.json +85 -21
- package/site/uk_UA.all.json +47 -34
- package/site/zh_TW.all.json +16 -36
- package/site/styles/_functions.scss +0 -8
|
@@ -3,8 +3,16 @@
|
|
|
3
3
|
{{import "./nav/nav.jet"}}
|
|
4
4
|
{{import "./google.jet" }}
|
|
5
5
|
{{import "./footer/footer.jet" }}
|
|
6
|
+
|
|
6
7
|
{{CDN := "//cdn.shift72.com/1.3"}}
|
|
7
8
|
{*{CDN := "//localhost:3000"}*}
|
|
9
|
+
|
|
10
|
+
{{CSSFilename := ""}}
|
|
11
|
+
{{if isEnabled("self_service_css") && site.CSSFilename != "" }}
|
|
12
|
+
{{CSSFilename = site.CSSFilename}}
|
|
13
|
+
{{end}}
|
|
14
|
+
{*{CSSFilename = "local.css"}*}
|
|
15
|
+
|
|
8
16
|
<!DOCTYPE html>
|
|
9
17
|
<html lang="{{lang.Code}}">
|
|
10
18
|
<head>
|
|
@@ -21,6 +29,9 @@
|
|
|
21
29
|
|
|
22
30
|
{{yield font()}}
|
|
23
31
|
<link rel="stylesheet" href="/styles/main.css">
|
|
32
|
+
{{if CSSFilename != "" }}
|
|
33
|
+
<link rel="stylesheet" href="/styles/{{CSSFilename}}">
|
|
34
|
+
{{end}}
|
|
24
35
|
|
|
25
36
|
<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon">
|
|
26
37
|
<link rel="icon" href="/favicon.ico" type="image/x-icon">
|
|
@@ -33,7 +44,7 @@
|
|
|
33
44
|
<script src="{{CDN}}/s72.core.js" defer></script>
|
|
34
45
|
<script src="{{CDN}}/s72.ui.js" defer></script>
|
|
35
46
|
|
|
36
|
-
<script src="/scripts/main.js" defer></script>
|
|
47
|
+
<script src="/scripts/main.js" defer></script>
|
|
37
48
|
|
|
38
49
|
<script src="{{CDN}}/s72.transactional.js" defer></script>
|
|
39
50
|
<script src="https://js.stripe.com/v3/" defer></script>
|
|
@@ -78,5 +89,6 @@
|
|
|
78
89
|
{{yield footer()}}
|
|
79
90
|
|
|
80
91
|
{{yield googleScripts()}}
|
|
92
|
+
<s72-donate-button></s72-donate-button>
|
|
81
93
|
</body>
|
|
82
94
|
</html>
|
|
@@ -1,5 +1,6 @@
|
|
|
1
|
-
{{block bundleButtons(class, slug, title)}}
|
|
1
|
+
{{block bundleButtons(class, slug, title, promoURL)}}
|
|
2
2
|
<div class="{{class}}">
|
|
3
3
|
<s72-pricing-buttons data-slug="{{slug}}" data-title="{{title}}"></s72-pricing-buttons>
|
|
4
|
+
{{yield bundleExtras(class="meta-detail-extras", slug=slug, promoURL=promoURL)}}
|
|
4
5
|
</div>
|
|
5
6
|
{{end}}
|
|
@@ -28,11 +28,10 @@
|
|
|
28
28
|
|
|
29
29
|
{{yield bundleTagline(class="meta-detail-tagline") bundle}}
|
|
30
30
|
|
|
31
|
-
{{yield bundleButtons(class="meta-detail-buttons", slug=bundle.Slug, title=bundle.Title)}}
|
|
31
|
+
{{yield bundleButtons(class="meta-detail-buttons", slug=bundle.Slug, title=bundle.Title, promoURL=bundle.PromoURL)}}
|
|
32
32
|
|
|
33
33
|
{{yield bundleSynopsis(class="meta-detail-synopsis", synopsis=bundle.Description)}}
|
|
34
34
|
|
|
35
|
-
{{yield bundleExtras(class="meta-detail-extras", slug=bundle.Slug, promoURL=bundle.PromoURL)}}
|
|
36
35
|
</div>
|
|
37
36
|
|
|
38
37
|
{{yield bundleList(items=bundle.Items)}}
|
|
@@ -35,6 +35,18 @@
|
|
|
35
35
|
{{ if item.ItemType == "film" }}
|
|
36
36
|
<can-be-watched-button data-slug="{{item.InnerItem.Slug}}" data-url="{{ item.InnerItem.CustomFields.GetString("can_be_watched_button_link", "") }}" data-label="{{ item.InnerItem.CustomFields.GetString("can_be_watched_button_text", "can_be_watched_button_text") }}"></can-be-watched-button>
|
|
37
37
|
{{ end }}
|
|
38
|
+
<div class="meta-item-extras">
|
|
39
|
+
{{if len(trailer) > 0 }}
|
|
40
|
+
<div class="s72-btn-trailer btn-trailer" data-url="{{routeToSlug(item.Slug)}}?autoplay">
|
|
41
|
+
<button class="s72-btn s72-btn-play btn-sm s72-btn-trailer">
|
|
42
|
+
<span class="s72-btn-play-icon"><s72-play-icon></s72-play-icon></span>
|
|
43
|
+
<span class="verb s72-btn-play-label">{{i18n("play_trailer")}}</span>
|
|
44
|
+
</button>
|
|
45
|
+
</div>
|
|
46
|
+
{{end}}
|
|
47
|
+
<s72-userwishlist-button data-slug="{{item.Slug}}" class="btn-wishlist"></s72-userwishlist-button>
|
|
48
|
+
<s72-share-buttons item="::item.meta" class="hidden-sm hidden-xs pull-right"></s72-share-buttons>
|
|
49
|
+
</div>
|
|
38
50
|
</div>
|
|
39
51
|
|
|
40
52
|
<s72-availability-label data-slug="{{item.Slug}}"></s72-availability-label>
|
|
@@ -42,19 +54,6 @@
|
|
|
42
54
|
<div class="meta-item-synopsis">
|
|
43
55
|
<p>{{item.InnerItem.Tagline | stripHTML}}</p>
|
|
44
56
|
</div>
|
|
45
|
-
|
|
46
|
-
<div class="meta-item-extras">
|
|
47
|
-
{{if len(trailer) > 0 }}
|
|
48
|
-
<div class="s72-btn-trailer btn-trailer" data-url="{{routeToSlug(item.Slug)}}?autoplay">
|
|
49
|
-
<button class="s72-btn s72-btn-play btn-sm s72-btn-trailer">
|
|
50
|
-
<span class="s72-btn-play-icon"><s72-play-icon></s72-play-icon></span>
|
|
51
|
-
<span class="verb s72-btn-play-label">{{i18n("play_trailer")}}</span>
|
|
52
|
-
</button>
|
|
53
|
-
</div>
|
|
54
|
-
{{end}}
|
|
55
|
-
<s72-userwishlist-button data-slug="{{item.Slug}}" class="btn-wishlist"></s72-userwishlist-button>
|
|
56
|
-
<s72-share-buttons item="::item.meta" class="hidden-sm hidden-xs pull-right"></s72-share-buttons>
|
|
57
|
-
</div>
|
|
58
57
|
{{yield awardsCarousel() item.InnerItem}}
|
|
59
58
|
</div>
|
|
60
59
|
</div>
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
{{ range .AwardCategories }}
|
|
5
5
|
<div class="meta-award-nomination mb-2p5 col-12 col-sm-8 col-lg-6 col-xl-4">
|
|
6
6
|
<span><i class="meta-award-nomination-icon"></i></span>
|
|
7
|
-
<span class="font-weight-bold">{{ i18n("awards_nominated_for") }} {{ .DisplayLabel }}</span>
|
|
7
|
+
<span class="font-weight-bold">{{ .IsWinner ? i18n("awards_winner_of") : i18n("awards_nominated_for") }} {{ .DisplayLabel }}</span>
|
|
8
8
|
</div>
|
|
9
9
|
{{ end }}
|
|
10
10
|
</div>
|
|
@@ -48,6 +48,13 @@
|
|
|
48
48
|
<s72-play-button data-slug="{{film.Slug}}" data-title="{{film.Title}}"></s72-play-button>
|
|
49
49
|
<s72-pricing-buttons data-slug="{{film.Slug}}" data-title="{{film.Title}}"></s72-pricing-buttons>
|
|
50
50
|
<can-be-watched-button data-slug="{{film.Slug}}" data-url="{{ film.CustomFields.GetString("can_be_watched_button_link", "") }}" data-label="{{ film.CustomFields.GetString("can_be_watched_button_text", "can_be_watched_button_text") }}"></can-be-watched-button>
|
|
51
|
+
<div class="meta-detail-extras">
|
|
52
|
+
{{if len(film.Trailers) > 0 }}
|
|
53
|
+
<s72-modal-player src="{{film.Trailers[0].URL}}" class="s72-btn-trailer" data-slug="{{film.Slug}}" data-label="{{i18n("play_trailer")}}" autoplay="querystring"></s72-modal-player>
|
|
54
|
+
{{end}}
|
|
55
|
+
<s72-userwishlist-button data-slug="{{film.Slug}}" class="btn-wishlist"></s72-userwishlist-button>
|
|
56
|
+
{{yield socialMediaButtons(path=currentUrlPath, letterboxdID=film.Refs.LetterboxdID)}}
|
|
57
|
+
</div>
|
|
51
58
|
</div>
|
|
52
59
|
{{if config("default_image_type") != "portrait"}}
|
|
53
60
|
<s72-availability-status data-slug="{{film.Slug}}"></s72-availability-status>
|
|
@@ -58,13 +65,6 @@
|
|
|
58
65
|
{{yield awardNominations() film}}
|
|
59
66
|
|
|
60
67
|
<div class="meta-detail-synopsis">{{film.Overview | raw}}</div>
|
|
61
|
-
<div class="meta-detail-extras">
|
|
62
|
-
{{if len(film.Trailers) > 0 }}
|
|
63
|
-
<s72-modal-player src="{{film.Trailers[0].URL}}" class="s72-btn-trailer" data-slug="{{film.Slug}}" data-label="{{i18n("play_trailer")}}" autoplay="querystring"></s72-modal-player>
|
|
64
|
-
{{end}}
|
|
65
|
-
<s72-userwishlist-button data-slug="{{film.Slug}}" class="btn-wishlist"></s72-userwishlist-button>
|
|
66
|
-
{{yield socialMediaButtons(path=currentUrlPath, letterboxdID=film.Refs.LetterboxdID)}}
|
|
67
|
-
</div>
|
|
68
68
|
<div class="meta-detail-cast">
|
|
69
69
|
{{if len(film.Cast) > 0 }}
|
|
70
70
|
<h2>{{i18n("meta_detail_cast_title")}}</h2>
|
|
@@ -91,11 +91,35 @@
|
|
|
91
91
|
<p>{{ film.Languages }}</p>
|
|
92
92
|
</div>
|
|
93
93
|
{{end}}
|
|
94
|
-
{{
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
94
|
+
{{allSubtitles := film.GetSubtitles()}}
|
|
95
|
+
{{if len(allSubtitles) > 0 }}
|
|
96
|
+
{{subtitles := ""}}
|
|
97
|
+
{{captions := ""}}
|
|
98
|
+
{{if len(film.SubtitleTracks) == 0}}
|
|
99
|
+
{{subtitles = allSubtitles}}
|
|
100
|
+
{{else}}
|
|
101
|
+
{{range subTrack := film.SubtitleTracks}}
|
|
102
|
+
{{if len(subTrack) >= 3}}
|
|
103
|
+
{{if subTrack[2] == "caption"}}
|
|
104
|
+
{{captions = captions ? captions + ", " + subTrack[1] : subTrack[1]}}
|
|
105
|
+
{{else}}
|
|
106
|
+
{{subtitles = subtitles ? subtitles + ", " + subTrack[1] : subTrack[1]}}
|
|
107
|
+
{{end}}
|
|
108
|
+
{{end}}
|
|
109
|
+
{{end}}
|
|
110
|
+
{{end}}
|
|
111
|
+
{{if subtitles}}
|
|
112
|
+
<div class="meta-detail-subtitle">
|
|
113
|
+
<h2>{{i18n("meta_detail_subtitles")}}</h2>
|
|
114
|
+
<p>{{subtitles}}</p>
|
|
115
|
+
</div>
|
|
116
|
+
{{end}}
|
|
117
|
+
{{if captions}}
|
|
118
|
+
<div class="meta-detail-subtitle">
|
|
119
|
+
<h2>{{i18n("meta_detail_captions")}}</h2>
|
|
120
|
+
<p>{{captions}}</p>
|
|
121
|
+
</div>
|
|
122
|
+
{{end}}
|
|
99
123
|
{{end}}
|
|
100
124
|
{{if len(film.Countries) > 0 }}
|
|
101
125
|
<div class="meta-detail-country">
|
|
@@ -37,16 +37,16 @@
|
|
|
37
37
|
<div class="meta-detail-buttons">
|
|
38
38
|
<s72-play-button data-slug="{{tvseason.Slug}}" data-title="{{tvseason.Title}}"></s72-play-button>
|
|
39
39
|
<s72-pricing-buttons data-slug="{{tvseason.Slug}}" data-title="{{tvseason.Title}}"></s72-pricing-buttons>
|
|
40
|
+
<div class="meta-detail-extras">
|
|
41
|
+
{{if len(tvseason.Trailers) > 0 }}
|
|
42
|
+
<s72-modal-player src="{{tvseason.Trailers[0].URL}}" class="s72-btn-trailer" data-slug="{{tvseason.Slug}}" data-label="{{i18n("play_trailer")}}" autoplay="querystring"></s72-modal-player>
|
|
43
|
+
{{end}}
|
|
44
|
+
<s72-userwishlist-button data-slug="{{tvseason.Slug}}" class="btn-wishlist"></s72-userwishlist-button>
|
|
45
|
+
{{yield socialMediaButtons(path=currentUrlPath)}}
|
|
46
|
+
</div>
|
|
40
47
|
</div>
|
|
41
48
|
<s72-availability-label data-slug="{{tvseason.Slug}}"></s72-availability-label>
|
|
42
49
|
<div class="meta-detail-synopsis">{{tvseason.Overview | raw}}</div>
|
|
43
|
-
<div class="meta-detail-extras">
|
|
44
|
-
{{if len(tvseason.Trailers) > 0 }}
|
|
45
|
-
<s72-modal-player src="{{tvseason.Trailers[0].URL}}" class="s72-btn-trailer" data-slug="{{tvseason.Slug}}" data-label="{{i18n("play_trailer")}}" autoplay="querystring"></s72-modal-player>
|
|
46
|
-
{{end}}
|
|
47
|
-
<s72-userwishlist-button data-slug="{{tvseason.Slug}}" class="btn-wishlist"></s72-userwishlist-button>
|
|
48
|
-
{{yield socialMediaButtons(path=currentUrlPath)}}
|
|
49
|
-
</div>
|
|
50
50
|
<div class="meta-detail-cast">
|
|
51
51
|
{{if len(tvseason.Cast) > 0 }}
|
|
52
52
|
<h2>{{i18n("meta_detail_cast_title")}}</h2>
|
package/site/tr_TR.all.json
CHANGED
|
@@ -81,7 +81,7 @@
|
|
|
81
81
|
"social_media_buttons_copied_link": { "other": "Link kopyalandı!" },
|
|
82
82
|
"social_media_buttons_copy_link": { "other": "Panoya kopyala" },
|
|
83
83
|
|
|
84
|
-
"accept_invite_page_header": { "other": "Hoşgeldiniz" },
|
|
84
|
+
"accept_invite_page_header": { "other": "Hoşgeldiniz " },
|
|
85
85
|
"acceptinvite_form_invalid_reset_password_token": { "other": "Görünüşe göre bu davet talebini zaten yapmışsınız, onun yerine <a href=\"{{.SigninURL}}\">sign in</a> denemelisiniz. Parolanızı unuttuysanız, parolanızı ayrıca <a href=\"{{.ForgotPasswordURL}}\"> sıfırlayabilirsiniz." },
|
|
86
86
|
"acceptinvite_complete": { "other": "Teşekkürler. Hesabınız oluşturuldu." },
|
|
87
87
|
"acceptinvite_form_submit": { "other": "Daveti Kabul Et." },
|
|
@@ -283,7 +283,6 @@
|
|
|
283
283
|
"shopping_error_discounts_not_allowed": { "other": "Bu promosyon kodu kullanılamaz." },
|
|
284
284
|
"shopping_error_discount_disallowed_on_bundles": { "other": "That promo code can not be used on bundles." },
|
|
285
285
|
"shopping_error_payment_intent_authentication_failure": { "other": "Kredi Kartınız reddedildi. Lütfen tekrar deneyin." },
|
|
286
|
-
"shopping_error_item_limit_exceeded": { "other": "{{.Title}} için sınırlı sayıdaki izleme kapasitemiz dolmuştur." },
|
|
287
286
|
|
|
288
287
|
"shopping_complete_rental": { "other": "Başardınız!" },
|
|
289
288
|
"shopping_complete_rental_period": {
|
|
@@ -324,6 +323,7 @@
|
|
|
324
323
|
"meta_detail_studios": { "one": "Stüdyo", "other": "Stüdyolar" },
|
|
325
324
|
"meta_detail_countries": { "one": "Ülke", "other": "Ülkeler" },
|
|
326
325
|
"meta_detail_subtitles": { "other": "Altyazılar" },
|
|
326
|
+
"meta_detail_captions": { "other": "Altyazılar [CC]" },
|
|
327
327
|
"meta_detail_episodes_title": { "other": "Bölümler" },
|
|
328
328
|
"meta_detail_bonus_title": { "other": "Bonus İçerik" },
|
|
329
329
|
"meta_detail_recommendations_title": { "other": "Bunu da beğenebilirsiniz" },
|
|
@@ -387,7 +387,6 @@
|
|
|
387
387
|
"users_gender_diverse": { "other": "Farklı" },
|
|
388
388
|
"users_gender_other": { "other": "Diğer" },
|
|
389
389
|
|
|
390
|
-
"plan_label_owned": { "other": "" },
|
|
391
390
|
|
|
392
391
|
"pricing_quality_hd": { "other": "pricing_quality_hd" },
|
|
393
392
|
"pricing_quality_sd": { "other": "pricing_quality_sd" },
|
|
@@ -404,21 +403,12 @@
|
|
|
404
403
|
|
|
405
404
|
"shopping_info_ownership_plan": { "other": "shopping_info_ownership_plan" },
|
|
406
405
|
|
|
407
|
-
|
|
408
|
-
"shopping_price_plan_note": { "other": "shopping_price_plan_note" },
|
|
409
|
-
"shopping_price_plan_note_interval": { "other": "shopping_price_plan_note_interval" },
|
|
410
|
-
|
|
411
|
-
"shopping_enter_card_prompt_plan": { "other": "shopping_enter_card_prompt_plan" },
|
|
412
|
-
|
|
406
|
+
|
|
413
407
|
"shopping_action_credit": { "other": "shopping_action_credit" },
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
"shopping_complete_subscription": { "other": "shopping_complete_subscription" },
|
|
417
|
-
"shopping_complete_subscription_browse": { "other": "shopping_complete_subscription_browse" },
|
|
408
|
+
|
|
418
409
|
|
|
419
410
|
"shopping_info_rental_period_coming_soon": { "other": "...şu tarih ve yayınlanma vaktinden başlayarak." },
|
|
420
|
-
|
|
421
|
-
"shopping_info_trial_period_offer": { "other": "shopping_info_trial_period_offer" },
|
|
411
|
+
|
|
422
412
|
|
|
423
413
|
"usersubscriptions_change_payment_method_change": { "other": "usersubscriptions_change_payment_method_change" },
|
|
424
414
|
"usersubscriptions_change_payment_method_modal_title": { "other": "usersubscriptions_change_payment_method_modal_title" },
|
|
@@ -530,11 +520,85 @@
|
|
|
530
520
|
"plan_free_link_text": {
|
|
531
521
|
"other": "Ücretsiz kaydol"
|
|
532
522
|
},
|
|
533
|
-
|
|
534
|
-
|
|
535
|
-
|
|
536
|
-
|
|
537
|
-
|
|
538
|
-
|
|
523
|
+
"awards_nominated_for": {
|
|
524
|
+
"other": "Aday için"
|
|
525
|
+
},
|
|
526
|
+
"awards_in_competition": {
|
|
527
|
+
"other": "Rekabette"
|
|
528
|
+
},
|
|
529
|
+
"awards_winner_of": {
|
|
530
|
+
"other": "kazanan"
|
|
531
|
+
},
|
|
532
|
+
"donate_button_text": {
|
|
533
|
+
"other": "Bağış yapmak"
|
|
534
|
+
},
|
|
535
|
+
"wcag_skip_links_header": { "other": "Accessibility Links" },
|
|
536
|
+
"wcag_skip_links_content": { "other": "Skip to Content" },
|
|
537
|
+
"wcag_skip_links_footer": { "other": "Skip to Footer" },
|
|
538
|
+
|
|
539
|
+
"wcag_homepage_h1": { "other": "Homepage" },
|
|
540
|
+
"wcag_carousel_h2": { "other": "Carousel" },
|
|
541
|
+
"wcag_collections_h2": { "other": "Collections" },
|
|
542
|
+
|
|
543
|
+
"wcag_aria_label_footer": { "other": "Footer" },
|
|
544
|
+
"wcag_aria_label_nav_main": { "other": "Main" },
|
|
545
|
+
"wcag_aria_label_nav_sub": { "other": "Sub" },
|
|
546
|
+
"wcag_aria_label_toggle_nav": { "other": "Toggle Navigation" },
|
|
547
|
+
"wcag_aria_label_bundle_items": { "other": "Bundle Items" },
|
|
548
|
+
"wcag_aria_label_carousel": { "other": "Carousel" },
|
|
549
|
+
"wcag_aria_label_page_collection": { "other": "Page Collection" },
|
|
550
|
+
"wcag_aria_label_collection_list": { "other": "Collection List" },
|
|
551
|
+
"wcag_aria_label_collection_slider": { "other": "Collection Slider" },
|
|
552
|
+
"wcag_aria_label_wishlist": { "other": "Wishlist" },
|
|
553
|
+
"wcag_aria_label_facebook": { "other": "Share on Facebook" },
|
|
554
|
+
"wcag_aria_label_twitter": { "other": "Share on Twitter" },
|
|
555
|
+
"wcag_aria_label_linkedin": { "other": "Share on LinkedIn" },
|
|
556
|
+
"wcag_aria_label_letterboxd": { "other": "View on Letterboxd" },
|
|
557
|
+
"shopping_error_plan_already_owned": { "other": "You already have this plan." },
|
|
558
|
+
"shopping_error_plan_expired": { "other": "This plan is no longer available." },
|
|
559
|
+
"shopping_payment_method_header": { "other": "Payment methods" },
|
|
560
|
+
"shopping_payment_method_credit_card": { "other": "Credit card" },
|
|
561
|
+
"shopping_payment_method_giropay": { "other": "Giropay" },
|
|
562
|
+
"shopping_error_stripe_unknown_error": { "other": "Something went wrong with this payment. Please try again later." },
|
|
563
|
+
"shopping_error_payment_complete_failed": { "other": "The payment was declined. Close this window and try again." },
|
|
564
|
+
|
|
565
|
+
"header_banner": { "other": "ABC Cinemas – 21st Film Festival, June 1 – 6, 2021" },
|
|
566
|
+
|
|
567
|
+
"account_form_pin_code": { "other": "PIN" },
|
|
568
|
+
"account_form_pin_code_not_set": { "other": "You don't have a PIN set, which is required for purchasing, renting and watching some titles."},
|
|
569
|
+
"account_form_set_pin": { "other": "Set PIN" },
|
|
570
|
+
"account_form_pin_changed": { "other": "Updated" },
|
|
571
|
+
"account_form_change_pin": { "other": "Change PIN" },
|
|
572
|
+
|
|
573
|
+
"user_set_pin_header": { "other": "Set your PIN" },
|
|
574
|
+
"user_set_pin_button": { "other": "Set PIN" },
|
|
575
|
+
"user_submit_pin_heading": { "other": "Enter your PIN to {{.Action}} this restricted content" },
|
|
576
|
+
"user_error_wrong_pin_retry": { "other": "Oops, you have entered an incorrect PIN" },
|
|
577
|
+
"user_submit_pin_button": { "other": "Enter" },
|
|
578
|
+
"user_reset_pin_button": { "other": "Reset PIN" },
|
|
579
|
+
|
|
580
|
+
"validation_pincode1_required": { "other": "Please enter a valid PIN code." },
|
|
581
|
+
"validation_pincode2_required": { "other": "Please enter a valid PIN code." },
|
|
582
|
+
"validation_pincode1_pattern": { "other": "Please enter a valid PIN code." },
|
|
583
|
+
"validation_pincode2_pattern": { "other": "Please enter a valid PIN code." },
|
|
584
|
+
"validation_pincode2_match": { "other": "PIN code does not match." },
|
|
585
|
+
|
|
586
|
+
"userdevices_delete_limits": { "other": "You can remove {{.Limit}} device(s) from this list every {{.Period}} day(s)."},
|
|
587
|
+
"userdevices_delete_limit_reached": { "other": "You have reached this limit and can't remove any devices right now. You can delete a device in {{.Days}} day(s)." },
|
|
588
|
+
"shopping_card_new_subscription": { "other": "This card will be saved and charged regularly" },
|
|
589
|
+
|
|
590
|
+
"changepincode_modal_header": { "other": "Change your PIN" },
|
|
591
|
+
"changepincode_modal_currentpassword": { "other": "Your current password" },
|
|
592
|
+
"changepincode_modal_pincode1": { "other": "Your new 4 digit PIN" },
|
|
593
|
+
"changepincode_modal_pincode2": { "other": "Confirm your new 4 digit PIN" },
|
|
594
|
+
"changepincode_modal_submit": { "other": "Set PIN" },
|
|
595
|
+
"changepincode_modal_error_wrong_password": { "other": "That password is incorrect." },
|
|
596
|
+
|
|
597
|
+
"user_set_pin_intro": { "other": "You need a PIN to {{.Action}} restricted content"},
|
|
598
|
+
"user_error_wrong_pin_reset": { "other": "Click here to reset your PIN" },
|
|
599
|
+
"user_error_too_many_pin_errors_help_page_link": { "other": "" },
|
|
600
|
+
"shopping_error_age_restricted": { "other": "This content is age restricted." },
|
|
601
|
+
"shopping_error_close_button": { "other": "OK" }
|
|
602
|
+
|
|
539
603
|
}
|
|
540
604
|
|
package/site/uk_UA.all.json
CHANGED
|
@@ -134,7 +134,7 @@
|
|
|
134
134
|
"social_media_buttons_copied_link": { "other": "Посилання скопійовано в буфер обміну!" },
|
|
135
135
|
"social_media_buttons_copy_link": { "other": "Копіювати в буфер обміну" },
|
|
136
136
|
"accept_invite_page_header": {
|
|
137
|
-
"other": "Ласкаво просимо"
|
|
137
|
+
"other": "Ласкаво просимо "
|
|
138
138
|
},
|
|
139
139
|
"acceptinvite_form_invalid_reset_password_token": {
|
|
140
140
|
"other": "Здається, ви вже використали це запрошення. Спробуйте <a href=\"signin.html\">увійти</a>. Якщо ви забули свій пароль, ви можете <a href=\"forgotpassword.html\">скинути свій пароль</a>."
|
|
@@ -489,7 +489,7 @@
|
|
|
489
489
|
"other": "Limited to SD playback only."
|
|
490
490
|
},
|
|
491
491
|
"shopping_info_release_date_title": {
|
|
492
|
-
"other": "Дата релізу {{.Date}}."
|
|
492
|
+
"other": "Дата релізу {{.Date}}. "
|
|
493
493
|
},
|
|
494
494
|
"shopping_info_release_date_explanation_rent": {
|
|
495
495
|
"other": "Ви можете взяти фільм напрокат вже зараз, але ви не зможете переглянути його до дати релізу."
|
|
@@ -748,6 +748,7 @@
|
|
|
748
748
|
"meta_detail_subtitles": {
|
|
749
749
|
"other": "Субтитри"
|
|
750
750
|
},
|
|
751
|
+
"meta_detail_captions": { "other": "Субтитри [CC]" },
|
|
751
752
|
"meta_detail_episodes_title": {
|
|
752
753
|
"other": "Епізоди"
|
|
753
754
|
},
|
|
@@ -877,7 +878,7 @@
|
|
|
877
878
|
"other": "Взяти напрокат"
|
|
878
879
|
},
|
|
879
880
|
"classification_intro": {
|
|
880
|
-
"other": "Класифікація:"
|
|
881
|
+
"other": "Класифікація: "
|
|
881
882
|
},
|
|
882
883
|
"classification_divider": {
|
|
883
884
|
"other": " - "
|
|
@@ -909,9 +910,6 @@
|
|
|
909
910
|
"users_gender_other": {
|
|
910
911
|
"other": "Інша"
|
|
911
912
|
},
|
|
912
|
-
"plan_label_owned": {
|
|
913
|
-
"other": ""
|
|
914
|
-
},
|
|
915
913
|
"pricing_quality_hd": {
|
|
916
914
|
"other": "pricing_quality_hd"
|
|
917
915
|
},
|
|
@@ -957,39 +955,15 @@
|
|
|
957
955
|
"shopping_info_ownership_plan": {
|
|
958
956
|
"other": "shopping_info_ownership_plan"
|
|
959
957
|
},
|
|
960
|
-
|
|
961
|
-
"other": "shopping_price_title_plan"
|
|
962
|
-
},
|
|
963
|
-
"shopping_price_plan_note": {
|
|
964
|
-
"other": "shopping_price_plan_note"
|
|
965
|
-
},
|
|
966
|
-
"shopping_price_plan_note_interval": {
|
|
967
|
-
"other": "shopping_price_plan_note_interval"
|
|
968
|
-
},
|
|
969
|
-
"shopping_enter_card_prompt_plan": {
|
|
970
|
-
"other": "shopping_enter_card_prompt_plan"
|
|
971
|
-
},
|
|
958
|
+
|
|
972
959
|
"shopping_action_credit": {
|
|
973
960
|
"other": "shopping_action_credit"
|
|
974
961
|
},
|
|
975
|
-
|
|
976
|
-
"other": "shopping_action_plan"
|
|
977
|
-
},
|
|
978
|
-
"shopping_complete_subscription": {
|
|
979
|
-
"other": "shopping_complete_subscription"
|
|
980
|
-
},
|
|
981
|
-
"shopping_complete_subscription_browse": {
|
|
982
|
-
"other": "shopping_complete_subscription_browse"
|
|
983
|
-
},
|
|
962
|
+
|
|
984
963
|
"shopping_info_rental_period_coming_soon": {
|
|
985
964
|
"other": "з дати та часу релізу."
|
|
986
965
|
},
|
|
987
|
-
|
|
988
|
-
"other": "shopping_info_plan_offer"
|
|
989
|
-
},
|
|
990
|
-
"shopping_info_trial_period_offer": {
|
|
991
|
-
"other": "shopping_info_trial_period_offer"
|
|
992
|
-
},
|
|
966
|
+
|
|
993
967
|
"usersubscriptions_change_payment_method_change": {
|
|
994
968
|
"other": "usersubscriptions_change_payment_method_change"
|
|
995
969
|
},
|
|
@@ -1188,5 +1162,44 @@
|
|
|
1188
1162
|
},
|
|
1189
1163
|
"awards_in_competition": {
|
|
1190
1164
|
"other": "У конкурсі"
|
|
1191
|
-
}
|
|
1165
|
+
},
|
|
1166
|
+
"awards_winner_of": {
|
|
1167
|
+
"other": "Переможець"
|
|
1168
|
+
},
|
|
1169
|
+
"donate_button_text": {
|
|
1170
|
+
"other": "Пожертвуйте"
|
|
1171
|
+
},
|
|
1172
|
+
|
|
1173
|
+
"wcag_skip_links_header": { "other": "Accessibility Links" },
|
|
1174
|
+
"wcag_skip_links_content": { "other": "Skip to Content" },
|
|
1175
|
+
"wcag_skip_links_footer": { "other": "Skip to Footer" },
|
|
1176
|
+
|
|
1177
|
+
"wcag_homepage_h1": { "other": "Homepage" },
|
|
1178
|
+
"wcag_carousel_h2": { "other": "Carousel" },
|
|
1179
|
+
"wcag_collections_h2": { "other": "Collections" },
|
|
1180
|
+
|
|
1181
|
+
"wcag_aria_label_footer": { "other": "Footer" },
|
|
1182
|
+
"wcag_aria_label_nav_main": { "other": "Main" },
|
|
1183
|
+
"wcag_aria_label_nav_sub": { "other": "Sub" },
|
|
1184
|
+
"wcag_aria_label_toggle_nav": { "other": "Toggle Navigation" },
|
|
1185
|
+
"wcag_aria_label_bundle_items": { "other": "Bundle Items" },
|
|
1186
|
+
"wcag_aria_label_carousel": { "other": "Carousel" },
|
|
1187
|
+
"wcag_aria_label_page_collection": { "other": "Page Collection" },
|
|
1188
|
+
"wcag_aria_label_collection_list": { "other": "Collection List" },
|
|
1189
|
+
"wcag_aria_label_collection_slider": { "other": "Collection Slider" },
|
|
1190
|
+
"wcag_aria_label_wishlist": { "other": "Wishlist" },
|
|
1191
|
+
"wcag_aria_label_facebook": { "other": "Share on Facebook" },
|
|
1192
|
+
"wcag_aria_label_twitter": { "other": "Share on Twitter" },
|
|
1193
|
+
"wcag_aria_label_linkedin": { "other": "Share on LinkedIn" },
|
|
1194
|
+
"wcag_aria_label_letterboxd": { "other": "View on Letterboxd" },
|
|
1195
|
+
"shopping_error_plan_already_owned": { "other": "You already have this plan." },
|
|
1196
|
+
"shopping_error_plan_expired": { "other": "This plan is no longer available." },
|
|
1197
|
+
"shopping_payment_method_header": { "other": "Payment methods" },
|
|
1198
|
+
"shopping_payment_method_credit_card": { "other": "Credit card" },
|
|
1199
|
+
"shopping_payment_method_giropay": { "other": "Giropay" },
|
|
1200
|
+
"shopping_error_stripe_unknown_error": { "other": "Something went wrong with this payment. Please try again later." },
|
|
1201
|
+
"shopping_error_payment_complete_failed": { "other": "The payment was declined. Close this window and try again." },
|
|
1202
|
+
|
|
1203
|
+
|
|
1204
|
+
"header_banner": { "other": "ABC Cinemas – 21st Film Festival, June 1 – 6, 2021" }
|
|
1192
1205
|
}
|
package/site/zh_TW.all.json
CHANGED
|
@@ -147,7 +147,7 @@
|
|
|
147
147
|
"social_media_buttons_copied_link": { "other": "链接已复制到剪贴板!" },
|
|
148
148
|
"social_media_buttons_copy_link": { "other": "复制到剪贴板" },
|
|
149
149
|
"accept_invite_page_header": {
|
|
150
|
-
"other": "歡迎"
|
|
150
|
+
"other": "歡迎 "
|
|
151
151
|
},
|
|
152
152
|
"acceptinvite_form_invalid_reset_password_token": {
|
|
153
153
|
"other": "您已接受過此邀請,請從 <a href=\"{{.SigninURL}}\">登入</a> 。若忘記密碼,請至 <a href=\"{{.ForgotPasswordURL}}\">重設密碼</a>。"
|
|
@@ -499,7 +499,7 @@
|
|
|
499
499
|
"other": "僅限以SD畫質播放"
|
|
500
500
|
},
|
|
501
501
|
"shopping_info_release_date_title": {
|
|
502
|
-
"other": "上線日期 {{.Date}}."
|
|
502
|
+
"other": "上線日期 {{.Date}}. "
|
|
503
503
|
},
|
|
504
504
|
"shopping_info_release_date_explanation_rent": {
|
|
505
505
|
"other": "可先租借,並於影片上線後開始觀看。"
|
|
@@ -508,7 +508,7 @@
|
|
|
508
508
|
"other": "可先購買,並於影片上線後開始觀看。"
|
|
509
509
|
},
|
|
510
510
|
"shopping_info_available_until_date_title": {
|
|
511
|
-
"other": "影片可觀看至 {{.Date}}."
|
|
511
|
+
"other": "影片可觀看至 {{.Date}}. "
|
|
512
512
|
},
|
|
513
513
|
"shopping_info_available_until_date_explanation_rent": {
|
|
514
514
|
"other": "影片下線後將無法觀看。"
|
|
@@ -522,7 +522,7 @@
|
|
|
522
522
|
"other": "租借天數 {{.ValueUnit}} "
|
|
523
523
|
},
|
|
524
524
|
"shopping_info_watch_window_duration": {
|
|
525
|
-
"other": "觀影期限 {{.Count}} 小時。"
|
|
525
|
+
"other": "觀影期限 {{.Count}} 小時。 "
|
|
526
526
|
},
|
|
527
527
|
"shopping_info_watch_window_explanation_film": {
|
|
528
528
|
"one": "完成租借後,影片將在帳號中保留 {{.ValueUnit}}。",
|
|
@@ -754,6 +754,7 @@
|
|
|
754
754
|
"meta_detail_subtitles": {
|
|
755
755
|
"other": "字幕"
|
|
756
756
|
},
|
|
757
|
+
"meta_detail_captions": { "other": "字幕 [CC]" },
|
|
757
758
|
"meta_detail_episodes_title": {
|
|
758
759
|
"other": "集數"
|
|
759
760
|
},
|
|
@@ -879,7 +880,7 @@
|
|
|
879
880
|
"other": "租借"
|
|
880
881
|
},
|
|
881
882
|
"classification_intro": {
|
|
882
|
-
"other": "評分:"
|
|
883
|
+
"other": "評分: "
|
|
883
884
|
},
|
|
884
885
|
"classification_divider": {
|
|
885
886
|
"other": " - "
|
|
@@ -911,9 +912,6 @@
|
|
|
911
912
|
"users_gender_other": {
|
|
912
913
|
"other": "其他"
|
|
913
914
|
},
|
|
914
|
-
"plan_label_owned": {
|
|
915
|
-
"other": ""
|
|
916
|
-
},
|
|
917
915
|
"pricing_quality_hd": {
|
|
918
916
|
"other": "pricing_quality_hd"
|
|
919
917
|
},
|
|
@@ -959,39 +957,12 @@
|
|
|
959
957
|
"shopping_info_ownership_plan": {
|
|
960
958
|
"other": "shopping_info_ownership_plan"
|
|
961
959
|
},
|
|
962
|
-
"shopping_price_title_plan": {
|
|
963
|
-
"other": "shopping_price_title_plan"
|
|
964
|
-
},
|
|
965
|
-
"shopping_price_plan_note": {
|
|
966
|
-
"other": "shopping_price_plan_note"
|
|
967
|
-
},
|
|
968
|
-
"shopping_price_plan_note_interval": {
|
|
969
|
-
"other": "shopping_price_plan_note_interval"
|
|
970
|
-
},
|
|
971
|
-
"shopping_enter_card_prompt_plan": {
|
|
972
|
-
"other": "shopping_enter_card_prompt_plan"
|
|
973
|
-
},
|
|
974
960
|
"shopping_action_credit": {
|
|
975
961
|
"other": "shopping_action_credit"
|
|
976
962
|
},
|
|
977
|
-
"shopping_action_plan": {
|
|
978
|
-
"other": "shopping_action_plan"
|
|
979
|
-
},
|
|
980
|
-
"shopping_complete_subscription": {
|
|
981
|
-
"other": "shopping_complete_subscription"
|
|
982
|
-
},
|
|
983
|
-
"shopping_complete_subscription_browse": {
|
|
984
|
-
"other": "shopping_complete_subscription_browse"
|
|
985
|
-
},
|
|
986
963
|
"shopping_info_rental_period_coming_soon": {
|
|
987
964
|
"other": "自上架時間起"
|
|
988
965
|
},
|
|
989
|
-
"shopping_info_plan_offer": {
|
|
990
|
-
"other": "shopping_info_plan_offer"
|
|
991
|
-
},
|
|
992
|
-
"shopping_info_trial_period_offer": {
|
|
993
|
-
"other": "shopping_info_trial_period_offer"
|
|
994
|
-
},
|
|
995
966
|
"usersubscriptions_change_payment_method_change": {
|
|
996
967
|
"other": "usersubscriptions_change_payment_method_change"
|
|
997
968
|
},
|
|
@@ -1251,5 +1222,14 @@
|
|
|
1251
1222
|
},
|
|
1252
1223
|
"awards_in_competition": {
|
|
1253
1224
|
"other": "比賽中"
|
|
1254
|
-
}
|
|
1225
|
+
},
|
|
1226
|
+
"awards_winner_of": {
|
|
1227
|
+
"other": "获奖者"
|
|
1228
|
+
},
|
|
1229
|
+
"donate_button_text": {
|
|
1230
|
+
"other": "捐"
|
|
1231
|
+
},
|
|
1232
|
+
"shopping_error_plan_already_owned": { "other": "You already have this plan." },
|
|
1233
|
+
"shopping_error_plan_expired": { "other": "This plan is no longer available." },
|
|
1234
|
+
"wcag_aria_label_letterboxd": { "other": "View on Letterboxd" }
|
|
1255
1235
|
}
|