@shift72/core-template 0.3.8 → 0.4.0-rc.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 +19 -1
- package/kibble.json +1 -1
- package/package.json +2 -2
- package/site/404.html.jet +1 -1
- package/site/acceptinvite.html.jet +1 -1
- package/site/account.html.jet +1 -1
- package/site/ar_LB.all.json +79 -2
- package/site/ca_ES.all.json +78 -2
- package/site/da_DK.all.json +79 -2
- package/site/de_DE.all.json +77 -1
- package/site/devices.html.jet +1 -1
- package/site/ee_EE.all.json +79 -3
- package/site/el_EL.all.json +77 -1
- package/site/en_AU.all.json +51 -13
- package/site/es_ES.all.json +77 -1
- package/site/es_MX.all.json +7 -0
- package/site/fi_FI.all.json +78 -2
- package/site/forgotpassword.html.jet +1 -1
- package/site/fr_FR.all.json +77 -1
- package/site/genres.html.jet +1 -1
- package/site/hr_HR.all.json +479 -403
- package/site/hu_HU.all.json +79 -3
- package/site/it_IT.all.json +77 -1
- package/site/ja_JP.all.json +78 -2
- package/site/library.html.jet +1 -1
- package/site/lt_LT.all.json +78 -2
- package/site/nl_BE.all.json +78 -2
- package/site/no_NO.all.json +79 -3
- package/site/pin.html.jet +1 -1
- package/site/pl_PL.all.json +78 -2
- package/site/plans.html.jet +94 -0
- package/site/pt_BR.all.json +78 -2
- package/site/pt_PT.all.json +78 -2
- package/site/resetpassword.html.jet +1 -1
- package/site/ru_RU.all.json +78 -2
- package/site/se_SE.all.json +78 -2
- package/site/search.html.jet +1 -1
- package/site/signin.html.jet +1 -1
- package/site/signup.html.jet +1 -1
- package/site/styles/_awards.scss +39 -0
- package/site/styles/_buttons.scss +13 -0
- package/site/styles/_card.scss +3 -0
- package/site/styles/_forms.scss +1 -1
- package/site/styles/_globals.scss +7 -0
- package/site/styles/_icons.scss +4 -0
- package/site/styles/_meta-detail.scss +1 -2
- package/site/styles/_pages.scss +13 -3
- package/site/styles/_plans.scss +87 -0
- package/site/styles/_poster.scss +25 -1
- package/site/styles/_shift72.scss +19 -0
- package/site/styles/_shopping.scss +6 -0
- package/site/styles/_variables.scss +14 -0
- package/site/styles/_wishlist.scss +2 -2
- package/site/styles/main.scss +6 -1
- package/site/templates/{application.jet → application/application.jet} +5 -5
- package/site/templates/{footer → application/footer}/app-badges.jet +3 -3
- package/site/templates/{footer → application/footer}/brand.jet +0 -0
- package/site/templates/{footer → application/footer}/copyright-statement.jet +0 -0
- package/site/templates/{footer → application/footer}/footer.jet +0 -0
- package/site/templates/{footer → application/footer}/info.jet +0 -0
- package/site/templates/{footer → application/footer}/nav.jet +0 -0
- package/site/templates/{footer → application/footer}/powered-by.jet +0 -0
- package/site/{google.jet → templates/application/google.jet} +0 -0
- package/site/templates/application/head/font.jet +4 -0
- package/site/templates/{seo.jet → application/head/seo.jet} +0 -0
- package/site/templates/{header-banner.jet → application/nav/header-banner.jet} +0 -0
- package/site/templates/{nav.jet → application/nav/nav.jet} +2 -2
- package/site/templates/{nav → application/nav}/user_logged_in.jet +0 -0
- package/site/templates/{nav → application/nav}/user_logged_out.jet +0 -0
- package/site/templates/bundle/item.jet +1 -1
- package/site/templates/collection/carousel_item.jet +3 -1
- package/site/templates/collection/index.jet +1 -1
- package/site/templates/collection/item.jet +1 -1
- package/site/templates/collection/list.jet +4 -4
- package/site/templates/collection/page_collection.jet +8 -8
- package/site/templates/common/awards/carousel.jet +10 -0
- package/site/templates/common/awards/item.jet +12 -0
- package/site/templates/common/awards/partial.jet +7 -0
- package/site/templates/common/social-media-buttons.jet +1 -1
- package/site/templates/film/item.jet +5 -1
- package/site/templates/items/meta_item.jet +7 -2
- package/site/templates/items/tagline.jet +11 -11
- package/site/templates/page/content.jet +1 -1
- package/site/templates/page/curated.jet +25 -6
- package/site/templates/page/homepage.jet +1 -1
- package/site/templates/page/landing.jet +1 -1
- package/site/templates/page/page-content.jet +24 -2
- package/site/templates/page/page-header.jet +21 -2
- package/site/templates/tv/detail.jet +7 -1
- package/site/tr_TR.all.json +79 -3
- package/site/uk_UA.all.json +78 -2
- package/site/wishlist.html.jet +1 -1
- package/site/zh_TW.all.json +76 -1
- package/site/static/styles/main.css.map +0 -1
|
@@ -0,0 +1,94 @@
|
|
|
1
|
+
{{extends "templates/application/application.jet"}}
|
|
2
|
+
|
|
3
|
+
{{block head()}}
|
|
4
|
+
{{yield seo(title=i18n("plans_page_header"), index=false)}}
|
|
5
|
+
{{end}}
|
|
6
|
+
|
|
7
|
+
{{block body()}}
|
|
8
|
+
<main id="main" class="page plans-page">
|
|
9
|
+
|
|
10
|
+
<div class="page-header">
|
|
11
|
+
<h1>{{ i18n("plans_page_header") }}</h1>
|
|
12
|
+
</div>
|
|
13
|
+
|
|
14
|
+
<div class="container-xxxl px-2 px-lg-5">
|
|
15
|
+
<div class="row">
|
|
16
|
+
{{ range _, p := site.Plans }}
|
|
17
|
+
<div class="plan col-xs-6 col-lg-4 mb-3">
|
|
18
|
+
<div class="card h-100">
|
|
19
|
+
<div class="plan-container">
|
|
20
|
+
{{ if isset(p.LandscapeImage) && p.LandscapeImage != ""}}
|
|
21
|
+
<div class="poster poster-landscape">
|
|
22
|
+
{{ if p.Page }}
|
|
23
|
+
<a href="{{ routeToSlug(p.Page.Slug) }}">
|
|
24
|
+
{{ end }}
|
|
25
|
+
<s72-image src="{{p.LandscapeImage}}" alt="{{p.Name}}" class="plan-poster card-img-top" border="0"></s72-image>
|
|
26
|
+
<s72-plan-label data-slug="{{p.Slug}}" data-title="{{p.Name}}"></s72-plan-label>
|
|
27
|
+
{{ if p.Page }}
|
|
28
|
+
</a>
|
|
29
|
+
{{ end }}
|
|
30
|
+
</div>
|
|
31
|
+
{{ end }}
|
|
32
|
+
<div class="card-body d-flex flex-column justify-content-between">
|
|
33
|
+
<div class="plan-caption-details">
|
|
34
|
+
|
|
35
|
+
{{ if !isset(p.LandscapeImage) || p.LandscapeImage == "" }}
|
|
36
|
+
<s72-plan-label data-slug="{{p.Slug}}" data-title="{{p.Name}}"></s72-plan-label>
|
|
37
|
+
{{ end }}
|
|
38
|
+
|
|
39
|
+
<h3 class="plan-name">{{p.Name}}</h3>
|
|
40
|
+
|
|
41
|
+
{{ if p.HasExpiryDate() }}
|
|
42
|
+
<p class="alert p-0 border-0">
|
|
43
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-exclamation-circle" viewBox="0 0 16 16"> <path d="M8 15A7 7 0 1 1 8 1a7 7 0 0 1 0 14zm0 1A8 8 0 1 0 8 0a8 8 0 0 0 0 16z"/> <path d="M7.002 11a1 1 0 1 1 2 0 1 1 0 0 1-2 0zM7.1 4.995a.905.905 0 1 1 1.8 0l-.35 3.507a.552.552 0 0 1-1.1 0L7.1 4.995z"/> </svg>
|
|
44
|
+
<small>
|
|
45
|
+
<s72-before datetime="{{ p.ExpiryDate.UnixMilli() }}">
|
|
46
|
+
{{ i18n("plan_expiry_date") }} <s72-time datetime="{{ p.ExpiryDate.UnixMilli() }}" />
|
|
47
|
+
</s72-before>
|
|
48
|
+
|
|
49
|
+
<s72-after datetime="{{ p.ExpiryDate.UnixMilli() }}">
|
|
50
|
+
{{ i18n("availability_not_available") }}
|
|
51
|
+
</s72-after>
|
|
52
|
+
</small>
|
|
53
|
+
</p>
|
|
54
|
+
{{ end }}
|
|
55
|
+
|
|
56
|
+
<p class="plan-description">{{p.Description}}</p>
|
|
57
|
+
{{ if p.Interval }}
|
|
58
|
+
<p class="plan-interval">{{i18n("shopping_info_plan_offer", map("Interval", p.Interval, "Count", p.IntervalCount))}}</p>
|
|
59
|
+
{{ if p.TrialPeriodDays }}
|
|
60
|
+
<p class="plan-trial-period">{{i18n("shopping_info_trial_period_offer", p.TrialPeriodDays)}}</p>
|
|
61
|
+
{{ end }}
|
|
62
|
+
{{ end }}
|
|
63
|
+
</div>
|
|
64
|
+
|
|
65
|
+
<div class="plan-buttons">
|
|
66
|
+
{{ if p.Page }}
|
|
67
|
+
<a class="plan-page-link btn btn-light text-dark btn-block" href="{{ routeToSlug(p.Page.Slug) }}">{{i18n("plan_read_more")}}</a>
|
|
68
|
+
{{ end }}
|
|
69
|
+
{{ if p.PlanType == "free" }}
|
|
70
|
+
{{ if p.HasExpiryDate() }}
|
|
71
|
+
<s72-before datetime="{{ p.ExpiryDate.UnixMilli() }}">
|
|
72
|
+
<s72-user-anon>
|
|
73
|
+
<a class="btn btn-block s72-btn-purchase" href="{{routeToPath("/signup.html")}}">{{ i18n("plan_free_link_text") }}</a>
|
|
74
|
+
</s72-user-anon>
|
|
75
|
+
</s72-before>
|
|
76
|
+
{{ else }}
|
|
77
|
+
<s72-user-anon>
|
|
78
|
+
<a class="btn btn-block s72-btn-purchase" href="{{routeToPath("/signup.html")}}">{{ i18n("plan_free_link_text") }}</a>
|
|
79
|
+
</s72-user-anon>
|
|
80
|
+
{{ end }}
|
|
81
|
+
{{ else }}
|
|
82
|
+
<s72-pricing-buttons class="btn-block" data-slug="{{p.Slug}}" data-title="{{p.Name}}" />
|
|
83
|
+
{{ end }}
|
|
84
|
+
</div>
|
|
85
|
+
</div>
|
|
86
|
+
</div>
|
|
87
|
+
</div>
|
|
88
|
+
</div>
|
|
89
|
+
{{ end }}
|
|
90
|
+
</div>
|
|
91
|
+
</div>
|
|
92
|
+
|
|
93
|
+
</main>
|
|
94
|
+
{{end}}
|
package/site/pt_BR.all.json
CHANGED
|
@@ -139,6 +139,13 @@
|
|
|
139
139
|
"social_media_buttons_title": {
|
|
140
140
|
"other": "Compartilhar"
|
|
141
141
|
},
|
|
142
|
+
"social_media_buttons_facebook": { "other": "Compartilhar no Facebook" },
|
|
143
|
+
"social_media_buttons_twitter": { "other": "Compartilhar no Twitter" },
|
|
144
|
+
"social_media_buttons_linkedin": { "other": "Compartilhar no Linkedin" },
|
|
145
|
+
"social_media_buttons_email": { "other": "Compartilhe via e-mail" },
|
|
146
|
+
"social_media_buttons_email_subject": { "other": "Compartilhamento de link" },
|
|
147
|
+
"social_media_buttons_copied_link": { "other": "Link copiado para a área de transferência!" },
|
|
148
|
+
"social_media_buttons_copy_link": { "other": "Copiar para área de transferência" },
|
|
142
149
|
"accept_invite_page_header": {
|
|
143
150
|
"other": "Acolher"
|
|
144
151
|
},
|
|
@@ -1034,7 +1041,7 @@
|
|
|
1034
1041
|
"other": "Alugando"
|
|
1035
1042
|
},
|
|
1036
1043
|
"availability_not_available": {
|
|
1037
|
-
"other": "
|
|
1044
|
+
"other": "Não disponível"
|
|
1038
1045
|
},
|
|
1039
1046
|
"availability_in_watch_window": {
|
|
1040
1047
|
"other": "availability_in_watch_window"
|
|
@@ -1179,5 +1186,74 @@
|
|
|
1179
1186
|
},
|
|
1180
1187
|
"app_badge_android": {
|
|
1181
1188
|
"other": "Get it on Google Play"
|
|
1189
|
+
},
|
|
1190
|
+
|
|
1191
|
+
"shopping_price_title_plan": {
|
|
1192
|
+
"other": "Preço"
|
|
1193
|
+
},
|
|
1194
|
+
"shopping_price_plan_note": {
|
|
1195
|
+
"zero": "Cobrado a cada {{ .Interval }} .",
|
|
1196
|
+
"one": "Cobrado a cada {{ .Interval }} após o término da avaliação gratuita de 24 horas.",
|
|
1197
|
+
"other": "Cobrado a cada {{ .Interval }} após o {{ .Count }} avaliação gratuita de .Count dias."
|
|
1198
|
+
},
|
|
1199
|
+
"shopping_price_plan_note_interval": {
|
|
1200
|
+
"one": "{{ .Interval }}",
|
|
1201
|
+
"other": "{{ .Count }} {{ .Interval }}"
|
|
1202
|
+
},
|
|
1203
|
+
"shopping_enter_card_prompt_plan": {
|
|
1204
|
+
"other": "Insira os dados do seu cartão de crédito abaixo para iniciar a sua assinatura."
|
|
1205
|
+
},
|
|
1206
|
+
"shopping_action_plan": {
|
|
1207
|
+
"other": "Completo"
|
|
1208
|
+
},
|
|
1209
|
+
"shopping_complete_subscription": {
|
|
1210
|
+
"other": "Sua compra de assinatura foi bem-sucedida. Agora você está inscrito em {{ .Title }} ."
|
|
1211
|
+
},
|
|
1212
|
+
"shopping_complete_subscription_browse": {
|
|
1213
|
+
"other": "Fique à vontade para <a href=\"/\">navegar pelo</a> site ou <a href=\"/search.html\">pesquisar</a> algo específico."
|
|
1214
|
+
},
|
|
1215
|
+
"shopping_info_plan_offer": {
|
|
1216
|
+
"one": "Renova automaticamente a cada {{ .Interval }}",
|
|
1217
|
+
"other": "Renova automaticamente cada {{ .Count }} {{ .Interval }}"
|
|
1218
|
+
},
|
|
1219
|
+
"shopping_info_trial_period_offer": {
|
|
1220
|
+
"one": "Experimente agora o seu teste gratuito de 24 horas!",
|
|
1221
|
+
"other": "Experimente o seu teste gratuito de {{ .Count }} dia!"
|
|
1222
|
+
},
|
|
1223
|
+
"plans_page_header": {
|
|
1224
|
+
"other": "Planos Disponíveis"
|
|
1225
|
+
},
|
|
1226
|
+
"plan_label_owned": {
|
|
1227
|
+
"other": "Você possui este plano"
|
|
1228
|
+
},
|
|
1229
|
+
"plan_expiry_date": {
|
|
1230
|
+
"other": "Fechamento de vendas:"
|
|
1231
|
+
},
|
|
1232
|
+
"plan_read_more": {
|
|
1233
|
+
"other": "Descubra mais"
|
|
1234
|
+
},
|
|
1235
|
+
"plan_page_read_more": {
|
|
1236
|
+
"other": "Consulte Mais informação"
|
|
1237
|
+
},
|
|
1238
|
+
"plan_page_header_text": {
|
|
1239
|
+
"other": "Aproveite {{ .Name }}"
|
|
1240
|
+
},
|
|
1241
|
+
"page_plan_explore_intro": {
|
|
1242
|
+
"other": "OU"
|
|
1243
|
+
},
|
|
1244
|
+
"page_plan_explore_link": {
|
|
1245
|
+
"other": "Explore outros passes"
|
|
1246
|
+
},
|
|
1247
|
+
"plan_showcase_page_ownership_button_buy": {
|
|
1248
|
+
"other": "Compre Agora"
|
|
1249
|
+
},
|
|
1250
|
+
"plan_free_link_text": {
|
|
1251
|
+
"other": "Cadastre-se gratuitamente"
|
|
1252
|
+
},
|
|
1253
|
+
"awards_nominated_for": {
|
|
1254
|
+
"other": "Nomeado para"
|
|
1255
|
+
},
|
|
1256
|
+
"awards_in_competition": {
|
|
1257
|
+
"other": "Em competição"
|
|
1182
1258
|
}
|
|
1183
|
-
}
|
|
1259
|
+
}
|
package/site/pt_PT.all.json
CHANGED
|
@@ -73,6 +73,13 @@
|
|
|
73
73
|
"play_button_resume": { "other" : "Continuar"},
|
|
74
74
|
|
|
75
75
|
"social_media_buttons_title": { "other": "Compartilhar" },
|
|
76
|
+
"social_media_buttons_facebook": { "other": "Compartilhar no Facebook" },
|
|
77
|
+
"social_media_buttons_twitter": { "other": "Compartilhar no Twitter" },
|
|
78
|
+
"social_media_buttons_linkedin": { "other": "Compartilhar no Linkedin" },
|
|
79
|
+
"social_media_buttons_email": { "other": "Compartilhe via e-mail" },
|
|
80
|
+
"social_media_buttons_email_subject": { "other": "Compartilhamento de link" },
|
|
81
|
+
"social_media_buttons_copied_link": { "other": "Link copiado para a área de transferência!" },
|
|
82
|
+
"social_media_buttons_copy_link": { "other": "Copiar para área de transferência" },
|
|
76
83
|
|
|
77
84
|
"accept_invite_page_header": { "other": "Acolher" },
|
|
78
85
|
"acceptinvite_form_invalid_reset_password_token": { "other": "Parece que você já aceitou esse convite, você deve <a href=\"{{.SigninURL}}\">entrar em sua conta</a>. Se você esqueceu sua senha, você também pode <a href=\"{{.ForgotPasswordURL}}\">alterar sua senha</a>." },
|
|
@@ -426,7 +433,7 @@
|
|
|
426
433
|
|
|
427
434
|
"availability_coming_soon": { "other": "Em breve" },
|
|
428
435
|
"availability_renting": { "other": "Alugando" },
|
|
429
|
-
"availability_not_available": { "other": "
|
|
436
|
+
"availability_not_available": { "other": "Não disponível" },
|
|
430
437
|
"availability_in_watch_window": { "other": "availability_in_watch_window" },
|
|
431
438
|
"availability_sold_out": { "other": "Esgotado" },
|
|
432
439
|
"availability_available_till": { "other": "Disponível até {{.ExpiryDate}}" },
|
|
@@ -450,5 +457,74 @@
|
|
|
450
457
|
|
|
451
458
|
"app_badge_title": { "other": "Download the app to view your purchased content!" },
|
|
452
459
|
"app_badge_ios": { "other": "Download on the App Store" },
|
|
453
|
-
"app_badge_android": { "other": "Get it on Google Play" }
|
|
460
|
+
"app_badge_android": { "other": "Get it on Google Play" },
|
|
461
|
+
|
|
462
|
+
"shopping_price_title_plan": {
|
|
463
|
+
"other": "Preço"
|
|
464
|
+
},
|
|
465
|
+
"shopping_price_plan_note": {
|
|
466
|
+
"zero": "Cobrado a cada {{ .Interval }} .",
|
|
467
|
+
"one": "Cobrado a cada {{ .Interval }} após o término da avaliação gratuita de 24 horas.",
|
|
468
|
+
"other": "Cobrado a cada {{ .Interval }} após o {{ .Count }} avaliação gratuita de .Count dias."
|
|
469
|
+
},
|
|
470
|
+
"shopping_price_plan_note_interval": {
|
|
471
|
+
"one": "{{ .Interval }}",
|
|
472
|
+
"other": "{{ .Count }} {{ .Interval }}"
|
|
473
|
+
},
|
|
474
|
+
"shopping_enter_card_prompt_plan": {
|
|
475
|
+
"other": "Insira os dados do seu cartão de crédito abaixo para iniciar a sua assinatura."
|
|
476
|
+
},
|
|
477
|
+
"shopping_action_plan": {
|
|
478
|
+
"other": "Completo"
|
|
479
|
+
},
|
|
480
|
+
"shopping_complete_subscription": {
|
|
481
|
+
"other": "Sua compra de assinatura foi bem-sucedida. Agora você está inscrito em {{ .Title }} ."
|
|
482
|
+
},
|
|
483
|
+
"shopping_complete_subscription_browse": {
|
|
484
|
+
"other": "Fique à vontade para <a href=\"/\">navegar pelo</a> site ou <a href=\"/search.html\">pesquisar</a> algo específico."
|
|
485
|
+
},
|
|
486
|
+
"shopping_info_plan_offer": {
|
|
487
|
+
"one": "Renova automaticamente a cada {{ .Interval }}",
|
|
488
|
+
"other": "Renova automaticamente cada {{ .Count }} {{ .Interval }}"
|
|
489
|
+
},
|
|
490
|
+
"shopping_info_trial_period_offer": {
|
|
491
|
+
"one": "Experimente agora o seu teste gratuito de 24 horas!",
|
|
492
|
+
"other": "Experimente o seu teste gratuito de {{ .Count }} dia!"
|
|
493
|
+
},
|
|
494
|
+
"plans_page_header": {
|
|
495
|
+
"other": "Planos Disponíveis"
|
|
496
|
+
},
|
|
497
|
+
"plan_label_owned": {
|
|
498
|
+
"other": "Você possui este plano"
|
|
499
|
+
},
|
|
500
|
+
"plan_expiry_date": {
|
|
501
|
+
"other": "Fechamento de vendas:"
|
|
502
|
+
},
|
|
503
|
+
"plan_read_more": {
|
|
504
|
+
"other": "Descubra mais"
|
|
505
|
+
},
|
|
506
|
+
"plan_page_read_more": {
|
|
507
|
+
"other": "Consulte Mais informação"
|
|
508
|
+
},
|
|
509
|
+
"plan_page_header_text": {
|
|
510
|
+
"other": "Aproveite {{ .Name }}"
|
|
511
|
+
},
|
|
512
|
+
"page_plan_explore_intro": {
|
|
513
|
+
"other": "OU"
|
|
514
|
+
},
|
|
515
|
+
"page_plan_explore_link": {
|
|
516
|
+
"other": "Explore outros passes"
|
|
517
|
+
},
|
|
518
|
+
"plan_showcase_page_ownership_button_buy": {
|
|
519
|
+
"other": "Compre Agora"
|
|
520
|
+
},
|
|
521
|
+
"plan_free_link_text": {
|
|
522
|
+
"other": "Cadastre-se gratuitamente"
|
|
523
|
+
},
|
|
524
|
+
"awards_nominated_for": {
|
|
525
|
+
"other": "Nomeado para"
|
|
526
|
+
},
|
|
527
|
+
"awards_in_competition": {
|
|
528
|
+
"other": "Em competição"
|
|
529
|
+
}
|
|
454
530
|
}
|
package/site/ru_RU.all.json
CHANGED
|
@@ -74,6 +74,13 @@
|
|
|
74
74
|
"play_button_resume": { "other" : "Поделиться"},
|
|
75
75
|
|
|
76
76
|
"social_media_buttons_title": { "other": "Поделиться" },
|
|
77
|
+
"social_media_buttons_facebook": { "other": "Поделиться через фейсбук" },
|
|
78
|
+
"social_media_buttons_twitter": { "other": "Поделиться в Твиттере" },
|
|
79
|
+
"social_media_buttons_linkedin": { "other": "Поделиться в Linkedin" },
|
|
80
|
+
"social_media_buttons_email": { "other": "Поделиться по электронной почте" },
|
|
81
|
+
"social_media_buttons_email_subject": { "other": "Поделиться ссылкой" },
|
|
82
|
+
"social_media_buttons_copied_link": { "other": "Ссылка скопирована в буфер обмена!" },
|
|
83
|
+
"social_media_buttons_copy_link": { "other": "Скопировать в буфер обмена" },
|
|
77
84
|
|
|
78
85
|
"accept_invite_page_header": { "other": "Добро пожаловать" },
|
|
79
86
|
"acceptinvite_form_invalid_reset_password_token": { "other": "Вы уже подтвердили регистрацию, вам надо <a href=\"{{.SigninURL}}\">войти</a> . Если вы забыли свой пароль, вы можете <a href=\"{{.ForgotPasswordURL}}\">сбросить пароль</a>." },
|
|
@@ -464,7 +471,7 @@
|
|
|
464
471
|
|
|
465
472
|
"availability_coming_soon": { "other": "Скоро в онлайне" },
|
|
466
473
|
"availability_renting": { "other": "аренда" },
|
|
467
|
-
"availability_not_available": { "other": "
|
|
474
|
+
"availability_not_available": { "other": "Недоступен" },
|
|
468
475
|
"availability_in_watch_window": { "other": "availability_in_watch_window" },
|
|
469
476
|
"availability_sold_out": { "other": "Продано" },
|
|
470
477
|
"availability_available_till": { "other": "Доступно до {{.ExpiryDate}}" },
|
|
@@ -488,5 +495,74 @@
|
|
|
488
495
|
|
|
489
496
|
"app_badge_title": { "other": "Download the app to view your purchased content!" },
|
|
490
497
|
"app_badge_ios": { "other": "Download on the App Store" },
|
|
491
|
-
"app_badge_android": { "other": "Get it on Google Play" }
|
|
498
|
+
"app_badge_android": { "other": "Get it on Google Play" },
|
|
499
|
+
|
|
500
|
+
"shopping_price_title_plan": {
|
|
501
|
+
"other": "Цена"
|
|
502
|
+
},
|
|
503
|
+
"shopping_price_plan_note": {
|
|
504
|
+
"zero": "{{ .Interval }} каждые .интервал.",
|
|
505
|
+
"one": "{{ .Interval }} каждые .Interval после окончания 24-часового бесплатного пробного периода.",
|
|
506
|
+
"other": "Взимается каждые .Interval после окончания {{ .Interval }} вашей дневной бесплатной пробной {{ .Count }}"
|
|
507
|
+
},
|
|
508
|
+
"shopping_price_plan_note_interval": {
|
|
509
|
+
"one": "{{ .Interval }}",
|
|
510
|
+
"other": "{{ .Count }} {{ .Interval }}"
|
|
511
|
+
},
|
|
512
|
+
"shopping_enter_card_prompt_plan": {
|
|
513
|
+
"other": "Введите данные своей кредитной карты ниже, чтобы начать подписку."
|
|
514
|
+
},
|
|
515
|
+
"shopping_action_plan": {
|
|
516
|
+
"other": "Полный"
|
|
517
|
+
},
|
|
518
|
+
"shopping_complete_subscription": {
|
|
519
|
+
"other": "Ваша подписка была приобретена. Теперь вы подписаны на {{ .Title }} ."
|
|
520
|
+
},
|
|
521
|
+
"shopping_complete_subscription_browse": {
|
|
522
|
+
"other": "Не стесняйтесь <a href=\"/\">просматривать</a> сайт или <a href=\"/search.html\">искать</a> что-то конкретное."
|
|
523
|
+
},
|
|
524
|
+
"shopping_info_plan_offer": {
|
|
525
|
+
"one": "Автоматически обновляется каждые {{ .Interval }}",
|
|
526
|
+
"other": "Автоматически обновляется каждые {{ .Count }} {{ .Interval }}"
|
|
527
|
+
},
|
|
528
|
+
"shopping_info_trial_period_offer": {
|
|
529
|
+
"one": "Попробуйте бесплатную 24-часовую пробную версию прямо сейчас!",
|
|
530
|
+
"other": "Попробуйте бесплатную дневную пробную версию {{ .Count }}"
|
|
531
|
+
},
|
|
532
|
+
"plans_page_header": {
|
|
533
|
+
"other": "Доступные планы"
|
|
534
|
+
},
|
|
535
|
+
"plan_label_owned": {
|
|
536
|
+
"other": "Вы владеете этим планом"
|
|
537
|
+
},
|
|
538
|
+
"plan_expiry_date": {
|
|
539
|
+
"other": "Закрытие продаж:"
|
|
540
|
+
},
|
|
541
|
+
"plan_read_more": {
|
|
542
|
+
"other": "Узнать больше"
|
|
543
|
+
},
|
|
544
|
+
"plan_page_read_more": {
|
|
545
|
+
"other": "Подробнее"
|
|
546
|
+
},
|
|
547
|
+
"plan_page_header_text": {
|
|
548
|
+
"other": "Наслаждайтесь {{ .Name }}"
|
|
549
|
+
},
|
|
550
|
+
"page_plan_explore_intro": {
|
|
551
|
+
"other": "ИЛИ"
|
|
552
|
+
},
|
|
553
|
+
"page_plan_explore_link": {
|
|
554
|
+
"other": "Исследуйте другие перевалы"
|
|
555
|
+
},
|
|
556
|
+
"plan_showcase_page_ownership_button_buy": {
|
|
557
|
+
"other": "Купи сейчас"
|
|
558
|
+
},
|
|
559
|
+
"plan_free_link_text": {
|
|
560
|
+
"other": "Подпишитесь бесплатно"
|
|
561
|
+
},
|
|
562
|
+
"awards_nominated_for": {
|
|
563
|
+
"other": "Выдвинут на"
|
|
564
|
+
},
|
|
565
|
+
"awards_in_competition": {
|
|
566
|
+
"other": "В соревновании"
|
|
567
|
+
}
|
|
492
568
|
}
|
package/site/se_SE.all.json
CHANGED
|
@@ -73,6 +73,13 @@
|
|
|
73
73
|
"play_button_resume": { "other" : "Наставите"},
|
|
74
74
|
|
|
75
75
|
"social_media_buttons_title": { "other": "Поделите" },
|
|
76
|
+
"social_media_buttons_facebook": { "other": "Поделите на Фејсбуку" },
|
|
77
|
+
"social_media_buttons_twitter": { "other": "Делите на Твитеру" },
|
|
78
|
+
"social_media_buttons_linkedin": { "other": "Делите на Линкедину" },
|
|
79
|
+
"social_media_buttons_email": { "other": "Делите путем е-поште" },
|
|
80
|
+
"social_media_buttons_email_subject": { "other": "Дељење везе" },
|
|
81
|
+
"social_media_buttons_copied_link": { "other": "Линк је копиран у међуспремник!" },
|
|
82
|
+
"social_media_buttons_copy_link": { "other": "Копирај у међуспремник" },
|
|
76
83
|
|
|
77
84
|
"accept_invite_page_header": { "other": "Добродошли" },
|
|
78
85
|
"acceptinvite_form_invalid_reset_password_token": { "other": "Изгледа да сте већ активирали овај позив. Потребно је да се <a href=\"{{.SigninURL}}\">пријавите</a>. Ако сте заборавили лозинку, можете и да <a href=\"{{.ForgotPasswordURL}}\">ресетујете лозинку</a>." },
|
|
@@ -488,5 +495,74 @@
|
|
|
488
495
|
|
|
489
496
|
"app_badge_title": { "other": "Download the app to view your purchased content!" },
|
|
490
497
|
"app_badge_ios": { "other": "Download on the App Store" },
|
|
491
|
-
"app_badge_android": { "other": "Get it on Google Play" }
|
|
492
|
-
|
|
498
|
+
"app_badge_android": { "other": "Get it on Google Play" },
|
|
499
|
+
|
|
500
|
+
"shopping_price_title_plan": {
|
|
501
|
+
"other": "Цена"
|
|
502
|
+
},
|
|
503
|
+
"shopping_price_plan_note": {
|
|
504
|
+
"zero": "Наплаћује се сваки {{ .Interval }} .",
|
|
505
|
+
"one": "Наплаћује се сваки {{ .Interval }} након завршетка бесплатног пробног периода од 24 сата.",
|
|
506
|
+
"other": "Оптужен сваки {{ .Interval }} после ваших {{ .Count }} дневни бесплатни пробни крајевима."
|
|
507
|
+
},
|
|
508
|
+
"shopping_price_plan_note_interval": {
|
|
509
|
+
"one": "{{ .Interval }}",
|
|
510
|
+
"other": "{{ .Count }} {{ .Interval }} а"
|
|
511
|
+
},
|
|
512
|
+
"shopping_enter_card_prompt_plan": {
|
|
513
|
+
"other": "Унесите податке о својој кредитној картици испод да бисте започели претплату."
|
|
514
|
+
},
|
|
515
|
+
"shopping_action_plan": {
|
|
516
|
+
"other": "комплетан"
|
|
517
|
+
},
|
|
518
|
+
"shopping_complete_subscription": {
|
|
519
|
+
"other": "Ваша куповина претплате је била успешна. Сада сте претплаћени на {{ .Title }} ."
|
|
520
|
+
},
|
|
521
|
+
"shopping_complete_subscription_browse": {
|
|
522
|
+
"other": "Слободно <a href=\"/\">претражујте по</a> сајту или <a href=\"/search.html\">тражите</a> нешто специфично."
|
|
523
|
+
},
|
|
524
|
+
"shopping_info_plan_offer": {
|
|
525
|
+
"one": "Аутоматски обнавља сваки {{ .Interval }}",
|
|
526
|
+
"other": "Аутоматски обнавља на сваких {{ .Count }} {{ .Interval }} с"
|
|
527
|
+
},
|
|
528
|
+
"shopping_info_trial_period_offer": {
|
|
529
|
+
"one": "Испробајте своју бесплатну пробну верзију од 24 сата сада!",
|
|
530
|
+
"other": "Испробајте своју бесплатну пробну верзију {{ .Count }}"
|
|
531
|
+
},
|
|
532
|
+
"plans_page_header": {
|
|
533
|
+
"other": "Доступни планови"
|
|
534
|
+
},
|
|
535
|
+
"plan_label_owned": {
|
|
536
|
+
"other": "Ви сте власник овог плана"
|
|
537
|
+
},
|
|
538
|
+
"plan_expiry_date": {
|
|
539
|
+
"other": "Завршена продаја:"
|
|
540
|
+
},
|
|
541
|
+
"plan_read_more": {
|
|
542
|
+
"other": "Откриј више"
|
|
543
|
+
},
|
|
544
|
+
"plan_page_read_more": {
|
|
545
|
+
"other": "Опширније"
|
|
546
|
+
},
|
|
547
|
+
"plan_page_header_text": {
|
|
548
|
+
"other": "Уживајте у {{ .Name }}"
|
|
549
|
+
},
|
|
550
|
+
"page_plan_explore_intro": {
|
|
551
|
+
"other": "ИЛИ"
|
|
552
|
+
},
|
|
553
|
+
"page_plan_explore_link": {
|
|
554
|
+
"other": "Истражите друге пролазе"
|
|
555
|
+
},
|
|
556
|
+
"plan_showcase_page_ownership_button_buy": {
|
|
557
|
+
"other": "Купите сада"
|
|
558
|
+
},
|
|
559
|
+
"plan_free_link_text": {
|
|
560
|
+
"other": "Бесплатно се пријави"
|
|
561
|
+
},
|
|
562
|
+
"awards_nominated_for": {
|
|
563
|
+
"other": "Номинован за"
|
|
564
|
+
},
|
|
565
|
+
"awards_in_competition": {
|
|
566
|
+
"other": "Ин Цомпетитион"
|
|
567
|
+
}
|
|
568
|
+
}
|
package/site/search.html.jet
CHANGED
package/site/signin.html.jet
CHANGED
package/site/signup.html.jet
CHANGED
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
.meta-awards {
|
|
2
|
+
@extend .d-flex;
|
|
3
|
+
@extend .align-items-center;
|
|
4
|
+
|
|
5
|
+
&.meta-awards-all {
|
|
6
|
+
@extend .align-items-start;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
.meta-award-nomination {
|
|
10
|
+
@extend .d-flex;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
.meta-award-nomination-icon {
|
|
14
|
+
@extend .fa;
|
|
15
|
+
@extend .fa-star; // for now
|
|
16
|
+
font-size: 1.25rem;
|
|
17
|
+
line-height: 1.5rem;
|
|
18
|
+
padding-right: .5rem;
|
|
19
|
+
}
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
.meta-awards-icon-overlay {
|
|
23
|
+
@extend .text-center;
|
|
24
|
+
|
|
25
|
+
border-radius: $meta-item-border-radius;
|
|
26
|
+
background: rgba(0, 0, 0, 0.8);
|
|
27
|
+
|
|
28
|
+
padding-right: 3px;
|
|
29
|
+
padding-left: 3px;
|
|
30
|
+
width: 16px + (3px * 2);
|
|
31
|
+
height: 16px + (3px * 2);
|
|
32
|
+
|
|
33
|
+
.meta-award-nomination-icon {
|
|
34
|
+
@extend .fa;
|
|
35
|
+
@extend .fa-star;
|
|
36
|
+
|
|
37
|
+
font-size: 1rem;
|
|
38
|
+
}
|
|
39
|
+
}
|
|
@@ -230,3 +230,16 @@
|
|
|
230
230
|
margin-right: 5px;
|
|
231
231
|
}
|
|
232
232
|
}
|
|
233
|
+
|
|
234
|
+
.btn-block .s72-btn {
|
|
235
|
+
@extend .btn-block;
|
|
236
|
+
}
|
|
237
|
+
|
|
238
|
+
.btn-light {
|
|
239
|
+
background-color: $gray-300;
|
|
240
|
+
border-color: $gray-300;
|
|
241
|
+
@include hover-focus {
|
|
242
|
+
background-color: $gray-200;
|
|
243
|
+
border-color: $gray-200;
|
|
244
|
+
}
|
|
245
|
+
}
|
package/site/styles/_forms.scss
CHANGED
package/site/styles/_icons.scss
CHANGED
|
@@ -150,7 +150,7 @@
|
|
|
150
150
|
width: 563px;
|
|
151
151
|
}
|
|
152
152
|
@include media-breakpoint-up(xl) {
|
|
153
|
-
width:
|
|
153
|
+
width: 1100px;
|
|
154
154
|
}
|
|
155
155
|
|
|
156
156
|
h1 {
|
|
@@ -358,7 +358,6 @@
|
|
|
358
358
|
top: 50%;
|
|
359
359
|
transform: translateX(-50%) translateY(-50%);
|
|
360
360
|
z-index: 2;
|
|
361
|
-
|
|
362
361
|
.verb {
|
|
363
362
|
display: none;
|
|
364
363
|
}
|
package/site/styles/_pages.scss
CHANGED
|
@@ -68,6 +68,7 @@
|
|
|
68
68
|
.search-page,
|
|
69
69
|
.collection-page,
|
|
70
70
|
.devices-page,
|
|
71
|
+
.plans-page,
|
|
71
72
|
.carousel-len-0 {
|
|
72
73
|
padding-top: $page-padding-top;
|
|
73
74
|
@include media-breakpoint-up(md) {
|
|
@@ -124,12 +125,19 @@
|
|
|
124
125
|
font-weight: $font-weight-bold;
|
|
125
126
|
}
|
|
126
127
|
|
|
127
|
-
a {
|
|
128
|
+
a:not(.signup-link) {
|
|
128
129
|
@include a;
|
|
129
130
|
}
|
|
130
131
|
}
|
|
131
132
|
}
|
|
132
133
|
|
|
134
|
+
// Curated pages with at least one collection shouldn't have a minimum height which forces a gap before the collection(s)
|
|
135
|
+
.curated-collection-page {
|
|
136
|
+
.page-content {
|
|
137
|
+
min-height: auto;
|
|
138
|
+
}
|
|
139
|
+
}
|
|
140
|
+
|
|
133
141
|
.content-page p img,
|
|
134
142
|
.page-header p img {
|
|
135
143
|
width: auto;
|
|
@@ -188,13 +196,15 @@
|
|
|
188
196
|
.wishlist-page,
|
|
189
197
|
.library-page,
|
|
190
198
|
.search-page,
|
|
191
|
-
.devices-page
|
|
199
|
+
.devices-page,
|
|
200
|
+
.plans-page {
|
|
192
201
|
.page-header {
|
|
193
202
|
h1 {
|
|
194
203
|
margin-bottom: $headings-margin-bottom;
|
|
195
204
|
}
|
|
196
205
|
}
|
|
197
206
|
|
|
207
|
+
.s72-plans,
|
|
198
208
|
.s72-userwishlist-items,
|
|
199
209
|
.s72-userlibrary-items,
|
|
200
210
|
.s72-searchresults-results,
|
|
@@ -312,4 +322,4 @@
|
|
|
312
322
|
}
|
|
313
323
|
}
|
|
314
324
|
}
|
|
315
|
-
}
|
|
325
|
+
}
|