@shift72/core-template 1.1.0 → 1.2.0-alpha.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.
- package/CHANGELOG.md +24 -10
- package/kibble.json +1 -1
- package/package.json +1 -1
- package/site/ar_LB.all.json +9 -6
- package/site/ca_ES.all.json +10 -7
- package/site/da_DK.all.json +10 -7
- package/site/de_DE.all.json +10 -7
- package/site/el_EL.all.json +10 -7
- package/site/en_AU.all.json +10 -7
- package/site/es_ES.all.json +10 -7
- package/site/es_MX.all.json +10 -7
- package/site/et_ET.all.json +10 -7
- package/site/fi_FI.all.json +11 -8
- package/site/fr_FR.all.json +10 -7
- package/site/hr_HR.all.json +10 -7
- package/site/hu_HU.all.json +10 -7
- package/site/it_IT.all.json +9 -6
- package/site/ja_JP.all.json +10 -7
- package/site/lt_LT.all.json +10 -7
- package/site/nl_BE.all.json +9 -6
- package/site/no_NO.all.json +10 -7
- package/site/pl_PL.all.json +10 -7
- package/site/plans.html.jet +1 -1
- package/site/pt_BR.all.json +10 -7
- package/site/pt_PT.all.json +10 -7
- package/site/ru_RU.all.json +10 -7
- package/site/sr_SR.all.json +10 -7
- 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 +15 -9
- package/site/styles/_buttons.scss +19 -95
- package/site/styles/_carousel.scss +20 -27
- package/site/styles/_collections.scss +17 -33
- package/site/styles/_cta-buttons.scss +0 -71
- package/site/styles/_footer.scss +5 -9
- package/site/styles/_forms.scss +7 -4
- package/site/styles/_icons.scss +9 -0
- package/site/styles/_meta-detail.scss +25 -50
- 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/_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 +5 -0
- package/site/styles/_wishlist.scss +8 -14
- package/site/styles/main.scss +1 -0
- 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/tagline.jet +25 -50
- package/site/templates/tv/detail.jet +1 -1
- package/site/tr_TR.all.json +10 -7
- package/site/uk_UA.all.json +10 -7
- package/site/zh_TW.all.json +10 -7
package/site/styles/_search.scss
CHANGED
@@ -4,4 +4,17 @@
|
|
4
4
|
@include media-breakpoint-up(lg) {
|
5
5
|
display: block;
|
6
6
|
}
|
7
|
+
|
8
|
+
&.s72-tooltip-top .s72-tooltip-arrow::before {
|
9
|
+
border-top-color: var(--tooltip-arrow-color);
|
10
|
+
}
|
11
|
+
|
12
|
+
&.s72-tooltip-bottom .s72-tooltip-arrow::before {
|
13
|
+
border-bottom-color: var(--tooltip-arrow-color);
|
14
|
+
}
|
15
|
+
|
16
|
+
.s72-tooltip-inner {
|
17
|
+
background-color: var(--tooltip-bg);
|
18
|
+
color: var(--tooltip-color);
|
19
|
+
}
|
7
20
|
}
|
@@ -0,0 +1,87 @@
|
|
1
|
+
@mixin typography-style(
|
2
|
+
$font-size,
|
3
|
+
$letter-spacing: null,
|
4
|
+
$font-weight: null,
|
5
|
+
$margin-bottom: null,
|
6
|
+
$font-color: null,
|
7
|
+
$line-height: null
|
8
|
+
) {
|
9
|
+
color: $font-color;
|
10
|
+
font-size: $font-size;
|
11
|
+
font-weight: $font-weight;
|
12
|
+
letter-spacing: $letter-spacing;
|
13
|
+
line-height: $line-height;
|
14
|
+
margin-bottom: $margin-bottom;
|
15
|
+
}
|
16
|
+
|
17
|
+
@mixin heading-1-style() {
|
18
|
+
@include typography-style(32px, 0.4px, $font-weight-normal, 8px, var(--body-color));
|
19
|
+
@include media-breakpoint-up(xs) {
|
20
|
+
@include typography-style(45px);
|
21
|
+
}
|
22
|
+
small {
|
23
|
+
@include typography-style(24px);
|
24
|
+
}
|
25
|
+
}
|
26
|
+
|
27
|
+
@mixin heading-2-style() {
|
28
|
+
@include typography-style(29px, 0.6px, $font-weight-normal, 13px);
|
29
|
+
@include media-breakpoint-up(sm) {
|
30
|
+
@include typography-style(35px);
|
31
|
+
}
|
32
|
+
}
|
33
|
+
|
34
|
+
@mixin heading-3-style() {
|
35
|
+
@include typography-style(20px, 0, $font-weight-normal, 6px);
|
36
|
+
@include media-breakpoint-up(sm) {
|
37
|
+
@include typography-style(23px, 0.4px);
|
38
|
+
}
|
39
|
+
}
|
40
|
+
|
41
|
+
@mixin heading-4-style() {
|
42
|
+
@include typography-style(18px, null, $font-weight-light, 20px);
|
43
|
+
}
|
44
|
+
|
45
|
+
@mixin body-1-style() {
|
46
|
+
@include typography-style(16px, 0.5px, $font-weight-light, null, null, 23px);
|
47
|
+
}
|
48
|
+
|
49
|
+
@mixin body-2-style() {
|
50
|
+
@include typography-style(14px, 0.4px);
|
51
|
+
}
|
52
|
+
|
53
|
+
@mixin subtitle-1-style() {
|
54
|
+
@include typography-style(16px, 0.2px, $font-weight-light, 2px);
|
55
|
+
}
|
56
|
+
|
57
|
+
@mixin subtitle-2-style() {
|
58
|
+
@include typography-style(14px, 0.2px, $font-weight-normal, 12px);
|
59
|
+
}
|
60
|
+
|
61
|
+
@mixin caption-1-style() {
|
62
|
+
@include typography-style(16px, 0.5px, $font-weight-bold, 4px);
|
63
|
+
}
|
64
|
+
|
65
|
+
@mixin overline-style() {
|
66
|
+
@include typography-style(14px, 0.8px, $font-weight-light);
|
67
|
+
}
|
68
|
+
|
69
|
+
h1 {
|
70
|
+
@include heading-1-style();
|
71
|
+
}
|
72
|
+
|
73
|
+
h2 {
|
74
|
+
@include heading-2-style();
|
75
|
+
}
|
76
|
+
|
77
|
+
h3 {
|
78
|
+
@include heading-3-style();
|
79
|
+
}
|
80
|
+
|
81
|
+
h4 {
|
82
|
+
@include heading-4-style();
|
83
|
+
}
|
84
|
+
|
85
|
+
p {
|
86
|
+
@include body-1-style();
|
87
|
+
}
|
@@ -11,6 +11,7 @@
|
|
11
11
|
--body-bg-accent-rgb: 25, 25, 25; // darken(body-bg, 10%) OR lighten(body-bg, 10%)
|
12
12
|
--link-color-hover-rgb: 217, 217, 217; // darken(body-color, 15%)
|
13
13
|
--input-focus-border-color-rgb: 131, 210, 216; // lighten(primary, 25%)
|
14
|
+
--main-content-icon-hover-rgb: 207, 207, 207; // white .8 opacity
|
14
15
|
|
15
16
|
--primary: rgb(var(--primary-rgb));
|
16
17
|
--secondary: rgb(var(--secondary-rgb));
|
@@ -20,6 +21,10 @@
|
|
20
21
|
--link-color: var(--body-color);
|
21
22
|
--link-color-hover: rgb(var(--link-color-hover-rgb));
|
22
23
|
--input-focus-border-color: rgb(var(--input-focus-border-color-rgb));
|
24
|
+
--main-content-icon-hover: rgb(var(--main-content-icon-hover-rgb));
|
25
|
+
--tooltip-color: var(--body-bg, #000);
|
26
|
+
--tooltip-bg: var(--primary, #00a3ff);
|
27
|
+
--tooltip-arrow-color: var(--tooltip-bg);
|
23
28
|
|
24
29
|
--input-height: 40px;
|
25
30
|
|
@@ -25,19 +25,19 @@
|
|
25
25
|
|
26
26
|
.s72-userwishlist-buttons {
|
27
27
|
.s72-btn-wishlist {
|
28
|
-
@extend .btn;
|
29
|
-
padding-left: 0;
|
30
|
-
|
31
28
|
.s72-icon {
|
32
|
-
font-size:
|
33
|
-
|
34
|
-
|
29
|
+
font-size: 25px !important;
|
30
|
+
margin: 0;
|
31
|
+
}
|
32
|
+
|
33
|
+
.s72-icon-loading,
|
34
|
+
.s72-icon-errored {
|
35
|
+
display: none;
|
35
36
|
}
|
36
37
|
}
|
37
38
|
}
|
38
39
|
|
39
|
-
.s72-userwishlist-buttons .s72-btn-wishlist
|
40
|
-
.meta-award-nomination {
|
40
|
+
.s72-userwishlist-buttons .s72-btn-wishlist {
|
41
41
|
font-size: 12px;
|
42
42
|
font-weight: $font-weight-bold;
|
43
43
|
|
@@ -49,12 +49,6 @@
|
|
49
49
|
}
|
50
50
|
}
|
51
51
|
|
52
|
-
.s72-userwishlist-buttons .s72-btn-wishlist {
|
53
|
-
margin-right: 0.5rem;
|
54
|
-
padding-bottom: 3px;
|
55
|
-
padding-top: 3px;
|
56
|
-
}
|
57
|
-
|
58
52
|
.poster .s72-userwishlist-buttons .s72-btn-wishlist {
|
59
53
|
margin: 0;
|
60
54
|
padding: 0;
|
package/site/styles/main.scss
CHANGED
@@ -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}}
|
@@ -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
@@ -122,7 +122,7 @@
|
|
122
122
|
"other": "Aramayı gönder"
|
123
123
|
},
|
124
124
|
"play_button_watch": {
|
125
|
-
"other": "
|
125
|
+
"other": "İzle şimdi"
|
126
126
|
},
|
127
127
|
"play_button_resume": {
|
128
128
|
"other": "Devam et"
|
@@ -739,7 +739,7 @@
|
|
739
739
|
"other": "Listeme Ekle"
|
740
740
|
},
|
741
741
|
"userwishlist_button_remove": {
|
742
|
-
"other": "
|
742
|
+
"other": "Listemden Kaldır"
|
743
743
|
},
|
744
744
|
"userwishlist_button_add_compact": {
|
745
745
|
"other": "Benim Listem"
|
@@ -881,13 +881,13 @@
|
|
881
881
|
"other": "(günü geçmiş)"
|
882
882
|
},
|
883
883
|
"shopping_card_use_other": {
|
884
|
-
"other": "Yeni
|
884
|
+
"other": "Yeni kart ekle"
|
885
885
|
},
|
886
886
|
"shopping_card_use_new_card": {
|
887
887
|
"other": "Kartı değiştir "
|
888
888
|
},
|
889
889
|
"shopping_info_ownership_plan": {
|
890
|
-
"other": "
|
890
|
+
"other": "Plan"
|
891
891
|
},
|
892
892
|
"shopping_action_credit": {
|
893
893
|
"other": "Doldurmak"
|
@@ -914,10 +914,10 @@
|
|
914
914
|
"other": "Aboneliğimi iptal et"
|
915
915
|
},
|
916
916
|
"usersubscriptions_unsubscribe_modal_cancel": {
|
917
|
-
"other": "
|
917
|
+
"other": "Hayır, teşekkürler"
|
918
918
|
},
|
919
919
|
"usersubscriptions_unsubscribe_modal_confirm": {
|
920
|
-
"other": "Evet
|
920
|
+
"other": "Evet İptal"
|
921
921
|
},
|
922
922
|
"usersubscriptions_unsubscribe_modal_title": {
|
923
923
|
"other": "Aboneliği iptal et?"
|
@@ -1323,12 +1323,15 @@
|
|
1323
1323
|
"other": "Lütfen geçerli bir promosyon kodu girin."
|
1324
1324
|
},
|
1325
1325
|
"shopping_complete_promo_only": {
|
1326
|
-
"other": "
|
1326
|
+
"other": "Artık {{.Title}} izleyebilirsiniz."
|
1327
1327
|
},
|
1328
1328
|
"shopping_action_redeem_promo_code": {
|
1329
1329
|
"other": "Tazmin etmek"
|
1330
1330
|
},
|
1331
1331
|
"pricing_ownership_promo": {
|
1332
1332
|
"other": "Tazmin etmek"
|
1333
|
+
},
|
1334
|
+
"shopping_info_ownership_subscription": {
|
1335
|
+
"other": "abonelik"
|
1333
1336
|
}
|
1334
1337
|
}
|
package/site/uk_UA.all.json
CHANGED
@@ -124,7 +124,7 @@
|
|
124
124
|
"other": "Шукати"
|
125
125
|
},
|
126
126
|
"play_button_watch": {
|
127
|
-
"other": "Дивитися"
|
127
|
+
"other": "Дивитися зараз"
|
128
128
|
},
|
129
129
|
"play_button_resume": {
|
130
130
|
"other": "Продовжити"
|
@@ -817,7 +817,7 @@
|
|
817
817
|
"other": "Додати до мого списку"
|
818
818
|
},
|
819
819
|
"userwishlist_button_remove": {
|
820
|
-
"other": "
|
820
|
+
"other": "Видалити з мого списку"
|
821
821
|
},
|
822
822
|
"userwishlist_button_add_compact": {
|
823
823
|
"other": "Мій список"
|
@@ -966,7 +966,7 @@
|
|
966
966
|
"other": "(закінчився)"
|
967
967
|
},
|
968
968
|
"shopping_card_use_other": {
|
969
|
-
"other": "
|
969
|
+
"other": "Додати нову картку"
|
970
970
|
},
|
971
971
|
"shopping_card_use_new_card": {
|
972
972
|
"other": "Змінити картку"
|
@@ -981,7 +981,7 @@
|
|
981
981
|
"other": "Кредитна картка не правильна? <a href=\"{{.SubscriptionsURL}}\">Натисніть тут, щоб оновити свою картку.</a>"
|
982
982
|
},
|
983
983
|
"shopping_info_ownership_plan": {
|
984
|
-
"other": "
|
984
|
+
"other": "План"
|
985
985
|
},
|
986
986
|
"shopping_action_credit": {
|
987
987
|
"other": "Поповнити"
|
@@ -1008,10 +1008,10 @@
|
|
1008
1008
|
"other": "Скасувати мою підписку"
|
1009
1009
|
},
|
1010
1010
|
"usersubscriptions_unsubscribe_modal_cancel": {
|
1011
|
-
"other": "
|
1011
|
+
"other": "Ні, дякую"
|
1012
1012
|
},
|
1013
1013
|
"usersubscriptions_unsubscribe_modal_confirm": {
|
1014
|
-
"other": "Так, скасувати
|
1014
|
+
"other": "Так, скасувати"
|
1015
1015
|
},
|
1016
1016
|
"usersubscriptions_unsubscribe_modal_title": {
|
1017
1017
|
"other": "Скасувати підписку?"
|
@@ -1355,12 +1355,15 @@
|
|
1355
1355
|
"other": "Введіть дійсний промо-код."
|
1356
1356
|
},
|
1357
1357
|
"shopping_complete_promo_only": {
|
1358
|
-
"other": "
|
1358
|
+
"other": "Тепер ви можете дивитися {{.Title}}."
|
1359
1359
|
},
|
1360
1360
|
"shopping_action_redeem_promo_code": {
|
1361
1361
|
"other": "Викупити"
|
1362
1362
|
},
|
1363
1363
|
"pricing_ownership_promo": {
|
1364
1364
|
"other": "Викупити"
|
1365
|
+
},
|
1366
|
+
"shopping_info_ownership_subscription": {
|
1367
|
+
"other": "Підписка"
|
1365
1368
|
}
|
1366
1369
|
}
|
package/site/zh_TW.all.json
CHANGED
@@ -125,7 +125,7 @@
|
|
125
125
|
"other": "送出"
|
126
126
|
},
|
127
127
|
"play_button_watch": {
|
128
|
-
"other": "
|
128
|
+
"other": "立即观看"
|
129
129
|
},
|
130
130
|
"play_button_resume": {
|
131
131
|
"other": "繼續播放"
|
@@ -808,7 +808,7 @@
|
|
808
808
|
"other": "加入我的追蹤片單"
|
809
809
|
},
|
810
810
|
"userwishlist_button_remove": {
|
811
|
-
"other": "
|
811
|
+
"other": "从我的列表中删除"
|
812
812
|
},
|
813
813
|
"userwishlist_button_add_compact": {
|
814
814
|
"other": "我的追蹤片單"
|
@@ -956,7 +956,7 @@
|
|
956
956
|
"other": "(已過期)"
|
957
957
|
},
|
958
958
|
"shopping_card_use_other": {
|
959
|
-
"other": "
|
959
|
+
"other": "添加新卡"
|
960
960
|
},
|
961
961
|
"shopping_card_use_new_card": {
|
962
962
|
"other": "換一張信用卡"
|
@@ -971,7 +971,7 @@
|
|
971
971
|
"other": "信用卡錯誤 <a href=\"{{.SubscriptionsURL}}\">請按此更新。</a>"
|
972
972
|
},
|
973
973
|
"shopping_info_ownership_plan": {
|
974
|
-
"other": "
|
974
|
+
"other": "计划"
|
975
975
|
},
|
976
976
|
"shopping_action_credit": {
|
977
977
|
"other": "頂尖"
|
@@ -998,10 +998,10 @@
|
|
998
998
|
"other": "取消我的訂閱"
|
999
999
|
},
|
1000
1000
|
"usersubscriptions_unsubscribe_modal_cancel": {
|
1001
|
-
"other": "
|
1001
|
+
"other": "不,谢谢"
|
1002
1002
|
},
|
1003
1003
|
"usersubscriptions_unsubscribe_modal_confirm": {
|
1004
|
-
"other": "
|
1004
|
+
"other": "是的,取消"
|
1005
1005
|
},
|
1006
1006
|
"usersubscriptions_unsubscribe_modal_title": {
|
1007
1007
|
"other": "取消訂閱?"
|
@@ -1321,12 +1321,15 @@
|
|
1321
1321
|
"other": "請輸入有效的促銷代碼。"
|
1322
1322
|
},
|
1323
1323
|
"shopping_complete_promo_only": {
|
1324
|
-
"other": "
|
1324
|
+
"other": "您現在可以觀看{{.Title}}。"
|
1325
1325
|
},
|
1326
1326
|
"shopping_action_redeem_promo_code": {
|
1327
1327
|
"other": "贖回"
|
1328
1328
|
},
|
1329
1329
|
"pricing_ownership_promo": {
|
1330
1330
|
"other": "贖回"
|
1331
|
+
},
|
1332
|
+
"shopping_info_ownership_subscription": {
|
1333
|
+
"other": "订阅"
|
1331
1334
|
}
|
1332
1335
|
}
|