@shift72/core-template 1.0.0 → 1.2.0
Sign up to get free protection for your applications and to get access to all the features.
- package/CHANGELOG.md +39 -6
- package/kibble.json +1 -1
- package/package.json +1 -1
- package/site/ar_LB.all.json +27 -12
- package/site/ca_ES.all.json +28 -13
- package/site/da_DK.all.json +28 -13
- package/site/de_DE.all.json +27 -12
- package/site/el_EL.all.json +28 -13
- package/site/en_AU.all.json +27 -12
- package/site/es_ES.all.json +28 -13
- package/site/es_MX.all.json +27 -12
- package/site/et_ET.all.json +27 -12
- package/site/fi_FI.all.json +28 -13
- package/site/fr_FR.all.json +28 -13
- package/site/hr_HR.all.json +28 -13
- package/site/hu_HU.all.json +28 -13
- package/site/it_IT.all.json +26 -11
- package/site/ja_JP.all.json +27 -12
- package/site/lt_LT.all.json +28 -13
- package/site/manifest.json.jet +2 -2
- package/site/nl_BE.all.json +27 -12
- package/site/no_NO.all.json +28 -13
- package/site/pl_PL.all.json +28 -13
- package/site/plans.html.jet +1 -1
- package/site/pt_BR.all.json +28 -13
- package/site/pt_PT.all.json +28 -13
- package/site/ru_RU.all.json +28 -13
- package/site/sr_SR.all.json +28 -13
- package/site/static/fonts/fa-s72.woff +0 -0
- package/site/static/js/main.js +0 -1
- package/site/static/scripts/main.js.map +1 -1
- package/site/styles/_availability-tags.scss +1 -3
- package/site/styles/_awards.scss +16 -10
- package/site/styles/_buttons.scss +19 -95
- package/site/styles/_can-be-watched-button.scss +1 -1
- package/site/styles/_carousel.scss +41 -28
- package/site/styles/_collections.scss +17 -33
- package/site/styles/_cta-buttons.scss +3 -75
- package/site/styles/_footer.scss +5 -9
- package/site/styles/_forms.scss +7 -4
- package/site/styles/_icons.scss +22 -9
- package/site/styles/_meta-detail.scss +44 -56
- package/site/styles/_meta-item-tagline.scss +2 -6
- package/site/styles/_meta-item.scss +0 -4
- package/site/styles/_meta-sub-item.scss +0 -4
- package/site/styles/_mixins.scss +17 -15
- package/site/styles/_pages.scss +21 -49
- package/site/styles/_plans.scss +4 -0
- package/site/styles/_search.scss +0 -2
- package/site/styles/_share-modal.scss +0 -4
- package/site/styles/_shopping.scss +0 -5
- package/site/styles/_tooltips.scss +13 -0
- package/site/styles/_typography.scss +87 -0
- package/site/styles/_variables.scss +14 -4
- package/site/styles/_wishlist.scss +8 -14
- package/site/styles/main.scss +1 -0
- package/site/templates/application/footer/brand.jet +4 -4
- package/site/templates/application/footer/copyright-statement.jet +1 -1
- package/site/templates/application/nav/nav.jet +2 -2
- package/site/templates/collection/carousel/item/synopsis.jet +5 -3
- package/site/templates/collection/carousel/item.jet +8 -5
- package/site/templates/common/awards/item.jet +2 -2
- package/site/templates/common/cta_buttons.jet +4 -12
- package/site/templates/film/item.jet +3 -3
- package/site/templates/items/meta_item.jet +20 -6
- package/site/templates/items/tagline.jet +25 -50
- package/site/templates/tv/detail.jet +1 -1
- package/site/tr_TR.all.json +28 -13
- package/site/uk_UA.all.json +28 -13
- package/site/zh_TW.all.json +27 -12
@@ -7,7 +7,7 @@
|
|
7
7
|
{{import "../../common/cta_buttons.jet"}}
|
8
8
|
|
9
9
|
{{block carouselItem(item)}}
|
10
|
-
{{showItemContent := !isset(item["PageType"]) || item.PageType != "external"}}
|
10
|
+
{{showItemContent := !isset(item["PageType"]) || item.PageType != "external"}}
|
11
11
|
|
12
12
|
<div class="s72-carousel-item" data-slug="{{item.Slug}}">
|
13
13
|
<a href="{{routeToSlug(item.Slug)}}" class="carousel-item-link" aria-label="{{item.Title}}">
|
@@ -17,7 +17,12 @@
|
|
17
17
|
{{if showItemContent}}
|
18
18
|
<div class="carousel-item-caption">
|
19
19
|
{{if item.ItemType == "film"}}
|
20
|
-
{{
|
20
|
+
{{if len(item.InnerItem.AwardCategories) > 0 || item.InnerItem.ImageMap["Sponsor"]}}
|
21
|
+
<div class="sponsor-awards-wrapper">
|
22
|
+
{{yield sponsor(hideLink="true") item.InnerItem}}
|
23
|
+
{{yield awardsCarousel() item.InnerItem}}
|
24
|
+
</div>
|
25
|
+
{{end}}
|
21
26
|
{{end}}
|
22
27
|
<div class="meta-item-content">
|
23
28
|
{{yield carouselItemTitle(title=item.GetTitle(i18n))}}
|
@@ -28,11 +33,9 @@
|
|
28
33
|
{{yield carouselItemSynopsis(synopsis=item.InnerItem.Tagline)}}
|
29
34
|
{{end}}
|
30
35
|
|
31
|
-
{{yield ctaButtons(itemType=item.ItemType
|
36
|
+
{{yield ctaButtons(itemType=item.ItemType) item.InnerItem}}
|
32
37
|
|
33
38
|
<s72-availability-label data-slug="{{item.Slug}}"></s72-availability-label>
|
34
|
-
|
35
|
-
{{yield awardsCarousel() item.InnerItem}}
|
36
39
|
</div>
|
37
40
|
</div>
|
38
41
|
{{end}}
|
@@ -1,8 +1,8 @@
|
|
1
1
|
{{block awardNominations()}}
|
2
2
|
{{ if isset(.AwardCategories) && (len(.AwardCategories) > 0) }}
|
3
|
-
<div class="meta-awards
|
3
|
+
<div class="meta-awards meta-awards-all">
|
4
4
|
{{ range .AwardCategories }}
|
5
|
-
<div class="meta-award-nomination
|
5
|
+
<div class="meta-award-nomination">
|
6
6
|
<span><i class="meta-award-nomination-icon"></i></span>
|
7
7
|
<span>{{ .DisplayLabel }}</span>
|
8
8
|
</div>
|
@@ -1,6 +1,6 @@
|
|
1
1
|
{{import "./social-media-buttons.jet"}}
|
2
2
|
|
3
|
-
{{block ctaButtons(itemType
|
3
|
+
{{block ctaButtons(itemType)}}
|
4
4
|
{{isFilm := itemType == "film"}}
|
5
5
|
{{isSeason := itemType == "tvseason"}}
|
6
6
|
{{isEpisode := itemType == "tvepisode"}}
|
@@ -40,20 +40,12 @@
|
|
40
40
|
<div class="extra-buttons">
|
41
41
|
|
42
42
|
{{if showTrailerButton}}
|
43
|
-
{{
|
44
|
-
|
45
|
-
<button class="s72-btn s72-btn-play">
|
46
|
-
<span class="s72-btn-play-icon"><s72-play-icon></s72-play-icon></span>
|
47
|
-
</button>
|
48
|
-
</div>
|
49
|
-
{{else}}
|
50
|
-
{{dataLabel := i18n("play_trailer")}}
|
51
|
-
<s72-modal-player src="{{trailerURL}}" class="s72-btn-trailer" data-slug="{{slug}}" data-label="{{dataLabel}}" autoplay="querystring"></s72-modal-player>
|
52
|
-
{{end}}
|
43
|
+
{{dataLabel := i18n("play_trailer")}}
|
44
|
+
<s72-modal-player src="{{trailerURL}}" class="s72-btn-trailer" data-slug="{{slug}}" data-label="{{dataLabel}}" autoplay="querystring" layout="tooltip"></s72-modal-player>
|
53
45
|
{{end}}
|
54
46
|
|
55
47
|
{{if showWishlistButton}}
|
56
|
-
<s72-userwishlist-button data-slug="{{slug}}" class="btn-wishlist"></s72-userwishlist-button>
|
48
|
+
<s72-userwishlist-button data-slug="{{slug}}" class="btn-wishlist" layout="tooltip"></s72-userwishlist-button>
|
57
49
|
{{end}}
|
58
50
|
|
59
51
|
{{if showShareButton}}
|
@@ -55,7 +55,6 @@
|
|
55
55
|
<br>
|
56
56
|
{{end}}
|
57
57
|
|
58
|
-
{{yield awardNominations() film}}
|
59
58
|
<div class="element-switcher-wrapper">
|
60
59
|
<s72-element-switcher>
|
61
60
|
{{if isEnabled("element_switcher_enabled")}}
|
@@ -81,7 +80,7 @@
|
|
81
80
|
<div class="meta-detail-crew">
|
82
81
|
<h2>{{member.Job}}</h2>
|
83
82
|
{{ path := "/search.html?q=" + member.Name }}
|
84
|
-
<a href="{{ routeToPath(path) }}">{{member.Name}}</a>
|
83
|
+
<p><a href="{{ routeToPath(path) }}">{{member.Name}}</a></p>
|
85
84
|
</div>
|
86
85
|
{{end}}
|
87
86
|
{{if len(film.Languages) > 0 }}
|
@@ -145,6 +144,7 @@
|
|
145
144
|
</s72-element-switcher>
|
146
145
|
{{yield sponsor() film}}
|
147
146
|
</div>
|
147
|
+
{{yield awardNominations() film}}
|
148
148
|
{{if len(film.Bonuses) > 0 && !film.CustomFields.GetBool("hide_bonus_content", false)}}
|
149
149
|
<section class="meta-detail-bonus-content" aria-label="{{i18n("meta_detail_bonus_title")}}">
|
150
150
|
<h2>{{i18n("meta_detail_bonus_title")}}</h2>
|
@@ -186,4 +186,4 @@
|
|
186
186
|
</section>
|
187
187
|
{{ end }}
|
188
188
|
</main>
|
189
|
-
{{end}}
|
189
|
+
{{end}}
|
@@ -5,6 +5,14 @@
|
|
5
5
|
{{ displayTitleAndGenreBelowPosters = config("media_item_caption") == "true" }}
|
6
6
|
{{ genresLimit = configInt("media_item_caption_genres_count") }}
|
7
7
|
|
8
|
+
{{isFilm := item.ItemType == "film"}}
|
9
|
+
{{isSeason := item.ItemType == "tvseason"}}
|
10
|
+
{{isEpisode := item.ItemType == "tvepisode"}}
|
11
|
+
{{isBundle := item.ItemType == "bundle"}}
|
12
|
+
|
13
|
+
{{showPlayButton := isFilm || isSeason || isEpisode}}
|
14
|
+
{{showPricingButtons := isFilm || isSeason || isBundle}}
|
15
|
+
|
8
16
|
{{isPage := hasPrefix(item.Slug, "/page/")}}
|
9
17
|
{{isExternalPage := isPage && item.InnerItem.PageType == "external"}}
|
10
18
|
{{isCollection := hasPrefix(item.Slug, "/collection/")}}
|
@@ -22,14 +30,14 @@
|
|
22
30
|
{{pill := ""}}
|
23
31
|
{{pillSupplement := ""}}
|
24
32
|
{{slugRoute := routeToSlug(item.Slug)}}
|
25
|
-
{{if
|
33
|
+
{{if isEpisode}}
|
26
34
|
{{slugRoute = routeToSlug(item.InnerItem.Season.Slug) + "#episode-" + item.InnerItem.EpisodeNumber}}
|
27
35
|
{{synopsis = item.InnerItem.Overview}}
|
28
36
|
{{pill = i18n("episode_name") + " " + item.InnerItem.EpisodeNumber}}
|
29
37
|
{{pillSupplement = "from " + i18n("season_name") + " " + item.InnerItem.Season.SeasonNumber}}
|
30
38
|
{{end}}
|
31
39
|
{{title := item.Title}}
|
32
|
-
{{if
|
40
|
+
{{if isSeason}}
|
33
41
|
{{synopsis = stripHTML(item.InnerItem.Tagline)}}
|
34
42
|
{{title = item.InnerItem.ShowInfo.Title}}
|
35
43
|
{{pill = i18n("season_name") + " " + item.InnerItem.SeasonNumber}}
|
@@ -61,11 +69,17 @@
|
|
61
69
|
{{ end }}
|
62
70
|
|
63
71
|
<div class="buttons">
|
64
|
-
|
65
|
-
|
66
|
-
{{
|
72
|
+
{{if showPlayButton}}
|
73
|
+
<s72-play-button data-slug="{{item.Slug}}" title="{{item.Title}}"></s72-play-button>
|
74
|
+
{{end}}
|
75
|
+
|
76
|
+
{{if showPricingButtons}}
|
77
|
+
<s72-pricing-buttons data-slug="{{item.Slug}}" class="pricing-buttons-fit" title="{{item.Title}}"></s72-pricing-buttons>
|
78
|
+
{{end}}
|
79
|
+
|
80
|
+
{{if isFilm}}
|
67
81
|
<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>
|
68
|
-
{{
|
82
|
+
{{end}}
|
69
83
|
</div>
|
70
84
|
</div>
|
71
85
|
<s72-userwishlist-button data-slug="{{item.Slug}}" class="btn-wishlist"></s72-userwishlist-button>
|
@@ -1,5 +1,9 @@
|
|
1
1
|
{{block metaItemTagline(genres=true, genresLimit=-1, classification=true)}}
|
2
2
|
<div class="meta-item-tagline">
|
3
|
+
{{if classification}}
|
4
|
+
<s72-classification-label data-slug="{{.Slug}}" data-layout="tooltip"></s72-classification-label>
|
5
|
+
{{end}}
|
6
|
+
|
3
7
|
{{itemGenres := makeSlice()}}
|
4
8
|
{{if genres}}
|
5
9
|
{{if isset(.Genres)}}
|
@@ -9,85 +13,56 @@
|
|
9
13
|
{{end}}
|
10
14
|
{{end}}
|
11
15
|
|
12
|
-
{
|
13
|
-
{{dividers := 0}}
|
14
|
-
{{if genres && len(itemGenres) > 0}}
|
15
|
-
{{dividers = dividers + 1}}
|
16
|
-
{{end}}
|
17
|
-
{{if isset(.Runtime)}}
|
18
|
-
{{dividers = dividers + 1}}
|
19
|
-
{{end}}
|
20
|
-
{{if isset(.Items)}}
|
21
|
-
{{dividers = dividers + 1}}
|
22
|
-
{{end}}
|
23
|
-
{{if isset(.Episodes)}}
|
24
|
-
{{dividers = dividers + 1}}
|
25
|
-
{{end}}
|
26
|
-
{{if isset(.ReleaseDate) && .ReleaseDate.Year() > 1}}
|
27
|
-
{{dividers = dividers + 1}}
|
28
|
-
{{end}}
|
29
|
-
{*{ There should be one less dividers than tagline items. }*}
|
30
|
-
{{dividers = dividers - 1}}
|
31
|
-
|
32
|
-
{{if classification}}
|
33
|
-
<s72-classification-label data-slug="{{.Slug}}" data-layout="tooltip"></s72-classification-label>
|
34
|
-
{{end}}
|
16
|
+
{{showDivider := false}}
|
35
17
|
|
36
18
|
{{if isset(.Runtime)}}
|
37
|
-
{{yield
|
19
|
+
{{yield item(class="runtime") content}}
|
38
20
|
{{if .Runtime > 60}}
|
39
|
-
{{.Runtime.Hours()}}{{i18n("runtime_hours")}}
|
40
|
-
{{else}}
|
41
|
-
{{.Runtime}}{{i18n("runtime_minutes")}}
|
21
|
+
{{.Runtime.Hours()}}{{i18n("runtime_hours")}}
|
42
22
|
{{end}}
|
23
|
+
{{.Runtime.Minutes()}}{{i18n("runtime_minutes")}}
|
43
24
|
{{end}}
|
44
|
-
{{
|
45
|
-
{{dividers = dividers - 1}}
|
25
|
+
{{showDivider = true}}
|
46
26
|
{{end}}
|
47
27
|
|
48
28
|
{{if isset(.Items)}}
|
49
|
-
{{yield
|
29
|
+
{{yield item() content}}
|
50
30
|
{{i18n("bundle_items_generic", len(.Items))}}
|
51
31
|
{{end}}
|
52
|
-
{{
|
53
|
-
{{dividers = dividers - 1}}
|
32
|
+
{{showDivider = true}}
|
54
33
|
{{end}}
|
55
34
|
|
56
35
|
{{if isset(.Episodes)}}
|
57
|
-
{{yield
|
36
|
+
{{yield item(class="episodes") content}}
|
58
37
|
{{i18n("episode_count", len(.Episodes))}}
|
59
38
|
{{end}}
|
60
|
-
{{
|
61
|
-
{{dividers = dividers - 1}}
|
39
|
+
{{showDivider = true}}
|
62
40
|
{{end}}
|
63
41
|
|
64
42
|
{{if genres && len(itemGenres) > 0}}
|
65
43
|
{{if genresLimit > -1 && len(itemGenres) > genresLimit}}
|
66
44
|
{{itemGenres = itemGenres[:genresLimit]}}
|
67
45
|
{{end}}
|
68
|
-
{{yield
|
46
|
+
{{yield item(class="genres") content}}
|
69
47
|
{{itemGenres}}
|
70
48
|
{{end}}
|
71
|
-
{{
|
72
|
-
{{dividers = dividers - 1}}
|
49
|
+
{{showDivider = true}}
|
73
50
|
{{end}}
|
74
51
|
|
75
|
-
{{if isset(.ReleaseDate) && .ReleaseDate.Year() >
|
76
|
-
{{yield
|
52
|
+
{{if isset(.ReleaseDate) && .ReleaseDate.Year() > 1888}}
|
53
|
+
{{yield item(class="release-date") content}}
|
77
54
|
{{.ReleaseDate.Year()}}
|
78
55
|
{{end}}
|
79
|
-
{{
|
80
|
-
{{dividers = dividers - 1}}
|
56
|
+
{{showDivider = true}}
|
81
57
|
{{end}}
|
82
58
|
</div>
|
83
59
|
{{end}}
|
84
60
|
|
85
|
-
{{block
|
86
|
-
<span class="
|
87
|
-
{{
|
88
|
-
|
89
|
-
{{
|
90
|
-
|
91
|
-
|
92
|
-
{{end}}
|
61
|
+
{{block item(class="missing", showDivider=showDivider)}}
|
62
|
+
<span class="{{class}}">
|
63
|
+
{{if showDivider}}
|
64
|
+
<span class="divider">•</span>
|
65
|
+
{{end}}
|
66
|
+
<span class="item">{{yield content}}</span>
|
67
|
+
</span>
|
93
68
|
{{end}}
|
@@ -63,7 +63,7 @@
|
|
63
63
|
<div class="meta-detail-crew">
|
64
64
|
<h2>{{member.Job}}</h2>
|
65
65
|
{{ path := "/search.html?q=" + member.Name }}
|
66
|
-
<a href="{{ routeToPath(path) }}"">{{member.Name}}</a>
|
66
|
+
<p><a href="{{ routeToPath(path) }}"">{{member.Name}}</a></p>
|
67
67
|
</div>
|
68
68
|
{{end}}
|
69
69
|
</div>
|
package/site/tr_TR.all.json
CHANGED
@@ -1,7 +1,4 @@
|
|
1
1
|
{
|
2
|
-
"site_owner": {
|
3
|
-
"other": "ABC Cinemas"
|
4
|
-
},
|
5
2
|
"settings_title": {
|
6
3
|
"other": "Settings"
|
7
4
|
},
|
@@ -70,9 +67,6 @@
|
|
70
67
|
"404_page_content": {
|
71
68
|
"other": "<p>Üzgünüz, aradığınız sayfa var gibi görünmüyor.</p><p>Taşınmış veya silinmiş olabilir veya belki bir şey yanlış yazdı.</p><p>Aradığınızı bulmak için ana sayfaya geri dönmeyi deneyin.</p><p><a href=\"{{.URL}}\">Ana sayfaya geri dön</a></p>"
|
72
69
|
},
|
73
|
-
"nav_homepage": {
|
74
|
-
"other": "ABC Cinemas"
|
75
|
-
},
|
76
70
|
"nav_signin": {
|
77
71
|
"other": "Oturum Aç"
|
78
72
|
},
|
@@ -128,7 +122,7 @@
|
|
128
122
|
"other": "Aramayı gönder"
|
129
123
|
},
|
130
124
|
"play_button_watch": {
|
131
|
-
"other": "
|
125
|
+
"other": "İzle şimdi"
|
132
126
|
},
|
133
127
|
"play_button_resume": {
|
134
128
|
"other": "Devam et"
|
@@ -745,7 +739,7 @@
|
|
745
739
|
"other": "Listeme Ekle"
|
746
740
|
},
|
747
741
|
"userwishlist_button_remove": {
|
748
|
-
"other": "
|
742
|
+
"other": "Listemden Kaldır"
|
749
743
|
},
|
750
744
|
"userwishlist_button_add_compact": {
|
751
745
|
"other": "Benim Listem"
|
@@ -887,13 +881,13 @@
|
|
887
881
|
"other": "(günü geçmiş)"
|
888
882
|
},
|
889
883
|
"shopping_card_use_other": {
|
890
|
-
"other": "Yeni
|
884
|
+
"other": "Yeni kart ekle"
|
891
885
|
},
|
892
886
|
"shopping_card_use_new_card": {
|
893
887
|
"other": "Kartı değiştir "
|
894
888
|
},
|
895
889
|
"shopping_info_ownership_plan": {
|
896
|
-
"other": "
|
890
|
+
"other": "Plan"
|
897
891
|
},
|
898
892
|
"shopping_action_credit": {
|
899
893
|
"other": "Doldurmak"
|
@@ -920,10 +914,10 @@
|
|
920
914
|
"other": "Aboneliğimi iptal et"
|
921
915
|
},
|
922
916
|
"usersubscriptions_unsubscribe_modal_cancel": {
|
923
|
-
"other": "
|
917
|
+
"other": "Hayır, teşekkürler"
|
924
918
|
},
|
925
919
|
"usersubscriptions_unsubscribe_modal_confirm": {
|
926
|
-
"other": "Evet
|
920
|
+
"other": "Evet İptal"
|
927
921
|
},
|
928
922
|
"usersubscriptions_unsubscribe_modal_title": {
|
929
923
|
"other": "Aboneliği iptal et?"
|
@@ -1027,7 +1021,7 @@
|
|
1027
1021
|
"other": "Tamamlayınız"
|
1028
1022
|
},
|
1029
1023
|
"shopping_complete_subscription": {
|
1030
|
-
"other": "Abonelik satın alma işleminiz başarılı oldu. Artık {{.Title}}
|
1024
|
+
"other": "Abonelik satın alma işleminiz başarılı oldu. Artık {{.Title}}."
|
1031
1025
|
},
|
1032
1026
|
"shopping_complete_subscription_browse": {
|
1033
1027
|
"other": "Sitede <a href=\"/\">gezinmekten</a> veya belirli bir şey <a href=\"/search.html\">aramaktan</a> çekinmeyin."
|
@@ -1318,5 +1312,26 @@
|
|
1318
1312
|
},
|
1319
1313
|
"bundle_items_generic": {
|
1320
1314
|
"other": "{{.Count}} öğeler"
|
1315
|
+
},
|
1316
|
+
"shopping_card_update_reason_expired": {
|
1317
|
+
"other": "Kredi kartınızı güncelleyin. Desteklenen kartlar Visa, Mastercard ve American Express'tir."
|
1318
|
+
},
|
1319
|
+
"shopping_discount_applied_promo": {
|
1320
|
+
"other": "Kod başarıyla uygulandı."
|
1321
|
+
},
|
1322
|
+
"promo_only_purchases_must_be_100_percent_discounted": {
|
1323
|
+
"other": "Lütfen geçerli bir promosyon kodu girin."
|
1324
|
+
},
|
1325
|
+
"shopping_complete_promo_only": {
|
1326
|
+
"other": "Artık {{.Title}} izleyebilirsiniz."
|
1327
|
+
},
|
1328
|
+
"shopping_action_redeem_promo_code": {
|
1329
|
+
"other": "Tazmin etmek"
|
1330
|
+
},
|
1331
|
+
"pricing_ownership_promo": {
|
1332
|
+
"other": "Tazmin etmek"
|
1333
|
+
},
|
1334
|
+
"shopping_info_ownership_subscription": {
|
1335
|
+
"other": "abonelik"
|
1321
1336
|
}
|
1322
1337
|
}
|
package/site/uk_UA.all.json
CHANGED
@@ -1,7 +1,4 @@
|
|
1
1
|
{
|
2
|
-
"site_owner": {
|
3
|
-
"other": "ABC Cinemas"
|
4
|
-
},
|
5
2
|
"settings_title": {
|
6
3
|
"other": "Settings"
|
7
4
|
},
|
@@ -72,9 +69,6 @@
|
|
72
69
|
"404_page_content": {
|
73
70
|
"other": "<p>На жаль, сторінка, яку ви шукаєте, не існує.</p><p>Вона могла бути переміщена або видалена, чи, можливо, ви щось неправильно написали.</p><p>Спробуйте повернутися на головну сторінку, щоб знайти те, що ви шукаєте.</p><p><a href=\"/\">Назад на головну сторінку</a></p>"
|
74
71
|
},
|
75
|
-
"nav_homepage": {
|
76
|
-
"other": "ABC Cinemas"
|
77
|
-
},
|
78
72
|
"nav_signin": {
|
79
73
|
"other": "Увійти"
|
80
74
|
},
|
@@ -130,7 +124,7 @@
|
|
130
124
|
"other": "Шукати"
|
131
125
|
},
|
132
126
|
"play_button_watch": {
|
133
|
-
"other": "Дивитися"
|
127
|
+
"other": "Дивитися зараз"
|
134
128
|
},
|
135
129
|
"play_button_resume": {
|
136
130
|
"other": "Продовжити"
|
@@ -823,7 +817,7 @@
|
|
823
817
|
"other": "Додати до мого списку"
|
824
818
|
},
|
825
819
|
"userwishlist_button_remove": {
|
826
|
-
"other": "
|
820
|
+
"other": "Видалити з мого списку"
|
827
821
|
},
|
828
822
|
"userwishlist_button_add_compact": {
|
829
823
|
"other": "Мій список"
|
@@ -972,7 +966,7 @@
|
|
972
966
|
"other": "(закінчився)"
|
973
967
|
},
|
974
968
|
"shopping_card_use_other": {
|
975
|
-
"other": "
|
969
|
+
"other": "Додати нову картку"
|
976
970
|
},
|
977
971
|
"shopping_card_use_new_card": {
|
978
972
|
"other": "Змінити картку"
|
@@ -987,7 +981,7 @@
|
|
987
981
|
"other": "Кредитна картка не правильна? <a href=\"{{.SubscriptionsURL}}\">Натисніть тут, щоб оновити свою картку.</a>"
|
988
982
|
},
|
989
983
|
"shopping_info_ownership_plan": {
|
990
|
-
"other": "
|
984
|
+
"other": "План"
|
991
985
|
},
|
992
986
|
"shopping_action_credit": {
|
993
987
|
"other": "Поповнити"
|
@@ -1014,10 +1008,10 @@
|
|
1014
1008
|
"other": "Скасувати мою підписку"
|
1015
1009
|
},
|
1016
1010
|
"usersubscriptions_unsubscribe_modal_cancel": {
|
1017
|
-
"other": "
|
1011
|
+
"other": "Ні, дякую"
|
1018
1012
|
},
|
1019
1013
|
"usersubscriptions_unsubscribe_modal_confirm": {
|
1020
|
-
"other": "Так, скасувати
|
1014
|
+
"other": "Так, скасувати"
|
1021
1015
|
},
|
1022
1016
|
"usersubscriptions_unsubscribe_modal_title": {
|
1023
1017
|
"other": "Скасувати підписку?"
|
@@ -1149,7 +1143,7 @@
|
|
1149
1143
|
"other": "Завершено"
|
1150
1144
|
},
|
1151
1145
|
"shopping_complete_subscription": {
|
1152
|
-
"other": "Ваша покупка підписки була успішною. Тепер ви підписані на {{.Title}}
|
1146
|
+
"other": "Ваша покупка підписки була успішною. Тепер ви підписані на {{.Title}}."
|
1153
1147
|
},
|
1154
1148
|
"shopping_complete_subscription_browse": {
|
1155
1149
|
"other": "Не соромтеся <a href=\"/\">переглядати</a> сайт або <a href=\"/search.html\">шукати</a> щось конкретне."
|
@@ -1350,5 +1344,26 @@
|
|
1350
1344
|
},
|
1351
1345
|
"bundle_items_generic": {
|
1352
1346
|
"other": "{{.Count}} елементи"
|
1347
|
+
},
|
1348
|
+
"shopping_card_update_reason_expired": {
|
1349
|
+
"other": "Оновіть свою кредитну картку. Підтримувані картки Visa, Mastercard та American Express."
|
1350
|
+
},
|
1351
|
+
"shopping_discount_applied_promo": {
|
1352
|
+
"other": "Код успішно застосовано."
|
1353
|
+
},
|
1354
|
+
"promo_only_purchases_must_be_100_percent_discounted": {
|
1355
|
+
"other": "Введіть дійсний промо-код."
|
1356
|
+
},
|
1357
|
+
"shopping_complete_promo_only": {
|
1358
|
+
"other": "Тепер ви можете дивитися {{.Title}}."
|
1359
|
+
},
|
1360
|
+
"shopping_action_redeem_promo_code": {
|
1361
|
+
"other": "Викупити"
|
1362
|
+
},
|
1363
|
+
"pricing_ownership_promo": {
|
1364
|
+
"other": "Викупити"
|
1365
|
+
},
|
1366
|
+
"shopping_info_ownership_subscription": {
|
1367
|
+
"other": "Підписка"
|
1353
1368
|
}
|
1354
1369
|
}
|
package/site/zh_TW.all.json
CHANGED
@@ -1,7 +1,4 @@
|
|
1
1
|
{
|
2
|
-
"site_owner": {
|
3
|
-
"other": "ABC Cinemas"
|
4
|
-
},
|
5
2
|
"settings_title": {
|
6
3
|
"other": "設置"
|
7
4
|
},
|
@@ -70,9 +67,6 @@
|
|
70
67
|
"404_page_content": {
|
71
68
|
"other": "<p>很抱歉,此頁面不存在。</p><p>頁面可能已被移除,或輸入的資訊有誤。</p><p>請回到首頁重新搜尋。</p><p><a href=\"{{.URL}}\">回到首頁</a></p>"
|
72
69
|
},
|
73
|
-
"nav_homepage": {
|
74
|
-
"other": "ABC Cinemas"
|
75
|
-
},
|
76
70
|
"nav_signin": {
|
77
71
|
"other": "登入"
|
78
72
|
},
|
@@ -131,7 +125,7 @@
|
|
131
125
|
"other": "送出"
|
132
126
|
},
|
133
127
|
"play_button_watch": {
|
134
|
-
"other": "
|
128
|
+
"other": "立即观看"
|
135
129
|
},
|
136
130
|
"play_button_resume": {
|
137
131
|
"other": "繼續播放"
|
@@ -814,7 +808,7 @@
|
|
814
808
|
"other": "加入我的追蹤片單"
|
815
809
|
},
|
816
810
|
"userwishlist_button_remove": {
|
817
|
-
"other": "
|
811
|
+
"other": "从我的列表中删除"
|
818
812
|
},
|
819
813
|
"userwishlist_button_add_compact": {
|
820
814
|
"other": "我的追蹤片單"
|
@@ -962,7 +956,7 @@
|
|
962
956
|
"other": "(已過期)"
|
963
957
|
},
|
964
958
|
"shopping_card_use_other": {
|
965
|
-
"other": "
|
959
|
+
"other": "添加新卡"
|
966
960
|
},
|
967
961
|
"shopping_card_use_new_card": {
|
968
962
|
"other": "換一張信用卡"
|
@@ -977,7 +971,7 @@
|
|
977
971
|
"other": "信用卡錯誤 <a href=\"{{.SubscriptionsURL}}\">請按此更新。</a>"
|
978
972
|
},
|
979
973
|
"shopping_info_ownership_plan": {
|
980
|
-
"other": "
|
974
|
+
"other": "计划"
|
981
975
|
},
|
982
976
|
"shopping_action_credit": {
|
983
977
|
"other": "頂尖"
|
@@ -1004,10 +998,10 @@
|
|
1004
998
|
"other": "取消我的訂閱"
|
1005
999
|
},
|
1006
1000
|
"usersubscriptions_unsubscribe_modal_cancel": {
|
1007
|
-
"other": "
|
1001
|
+
"other": "不,谢谢"
|
1008
1002
|
},
|
1009
1003
|
"usersubscriptions_unsubscribe_modal_confirm": {
|
1010
|
-
"other": "
|
1004
|
+
"other": "是的,取消"
|
1011
1005
|
},
|
1012
1006
|
"usersubscriptions_unsubscribe_modal_title": {
|
1013
1007
|
"other": "取消訂閱?"
|
@@ -1316,5 +1310,26 @@
|
|
1316
1310
|
},
|
1317
1311
|
"bundle_items_generic": {
|
1318
1312
|
"other": "{{.Count}} 项目"
|
1313
|
+
},
|
1314
|
+
"shopping_card_update_reason_expired": {
|
1315
|
+
"other": "更新您的信用卡。支持的卡是 Visa、Mastercard 和 American Express。"
|
1316
|
+
},
|
1317
|
+
"shopping_discount_applied_promo": {
|
1318
|
+
"other": "代碼成功應用。"
|
1319
|
+
},
|
1320
|
+
"promo_only_purchases_must_be_100_percent_discounted": {
|
1321
|
+
"other": "請輸入有效的促銷代碼。"
|
1322
|
+
},
|
1323
|
+
"shopping_complete_promo_only": {
|
1324
|
+
"other": "您現在可以觀看{{.Title}}。"
|
1325
|
+
},
|
1326
|
+
"shopping_action_redeem_promo_code": {
|
1327
|
+
"other": "贖回"
|
1328
|
+
},
|
1329
|
+
"pricing_ownership_promo": {
|
1330
|
+
"other": "贖回"
|
1331
|
+
},
|
1332
|
+
"shopping_info_ownership_subscription": {
|
1333
|
+
"other": "订阅"
|
1319
1334
|
}
|
1320
1335
|
}
|