@shift72/core-template 1.2.0 → 1.4.0
Sign up to get free protection for your applications and to get access to all the features.
- package/CHANGELOG.md +38 -1
- package/kibble.json +3 -3
- package/package.json +2 -2
- package/scripts/core-template-version.js +4 -4
- package/scripts/css-local-get.js +12 -5
- package/scripts/css-local-put.js +3 -3
- package/scripts/language-file-validator.js +1 -1
- package/scripts/translate.mjs +2 -3
- package/site/ar_LB.all.json +124 -10
- package/site/ca_ES.all.json +78 -8
- package/site/da_DK.all.json +80 -10
- package/site/de_DE.all.json +78 -8
- package/site/el_EL.all.json +83 -4
- package/site/en_AU.all.json +83 -4
- package/site/es_ES.all.json +87 -4
- package/site/es_MX.all.json +89 -6
- package/site/et_ET.all.json +77 -7
- package/site/fi_FI.all.json +81 -2
- package/site/fr_FR.all.json +88 -5
- package/site/hr_HR.all.json +93 -9
- package/site/hu_HU.all.json +77 -7
- package/site/it_IT.all.json +87 -4
- package/site/ja_JP.all.json +71 -0
- package/site/lt_LT.all.json +104 -3
- package/site/manifest.json.jet +4 -2
- package/site/nl_BE.all.json +79 -0
- package/site/no_NO.all.json +84 -5
- package/site/pl_PL.all.json +104 -3
- package/site/plans.html.jet +12 -2
- package/site/pt_BR.all.json +87 -4
- package/site/pt_PT.all.json +86 -3
- package/site/ru_RU.all.json +105 -4
- package/site/search.html.jet +3 -1
- package/site/sr_SR.all.json +93 -3
- package/site/static/js/main.js +1 -0
- package/site/static/scripts/main.js.map +1 -1
- package/site/styles/_awards.scss +1 -0
- package/site/styles/_buttons.scss +20 -10
- package/site/styles/_carousel.scss +7 -3
- package/site/styles/_cookie-consent.scss +1 -0
- package/site/styles/_footer.scss +10 -31
- package/site/styles/_forms.scss +11 -0
- package/site/styles/_icons.scss +1 -0
- package/site/styles/_meta-detail.scss +27 -28
- package/site/styles/_mixins.scss +23 -1
- package/site/styles/_nav.scss +49 -65
- package/site/styles/_share-modal.scss +12 -7
- package/site/styles/_shopping.scss +5 -0
- package/site/styles/_typography.scss +72 -14
- package/site/styles/_variables.scss +93 -46
- package/site/subscriptions.html.jet +1 -1
- package/site/templates/application/application.jet +10 -12
- package/site/templates/application/brand/logo.jet +11 -0
- package/site/templates/application/brand/sponsors.jet +11 -0
- package/site/templates/application/footer/brand.jet +3 -1
- package/site/templates/application/footer/sponsor-banner.jet +3 -3
- package/site/templates/application/head/seo.jet +1 -1
- package/site/templates/application/nav/nav.jet +5 -4
- package/site/templates/collection/carousel/carousel.jet +4 -1
- package/site/templates/collection/carousel/item.jet +3 -1
- package/site/tr_TR.all.json +83 -4
- package/site/uk_UA.all.json +105 -4
- package/site/zh_TW.all.json +73 -2
package/site/zh_TW.all.json
CHANGED
@@ -605,10 +605,10 @@
|
|
605
605
|
"other": "發生錯誤"
|
606
606
|
},
|
607
607
|
"shopping_error_incorrect_cvc": {
|
608
|
-
"other": "請輸入有效的
|
608
|
+
"other": "請輸入有效的CVC"
|
609
609
|
},
|
610
610
|
"shopping_error_invalid_cvc": {
|
611
|
-
"other": "請輸入有效的
|
611
|
+
"other": "請輸入有效的CVC"
|
612
612
|
},
|
613
613
|
"shopping_error_incorrect_number": {
|
614
614
|
"other": "請輸入有效的信用卡卡號"
|
@@ -685,6 +685,9 @@
|
|
685
685
|
"shopping_error_payment_intent_authentication_failure": {
|
686
686
|
"other": "輸入的信用卡遭拒絕。請再試一次。"
|
687
687
|
},
|
688
|
+
"shopping_error_card_not_supported": {
|
689
|
+
"other": "不支持您的卡。"
|
690
|
+
},
|
688
691
|
"shopping_complete_rental": {
|
689
692
|
"other": "付費成功!"
|
690
693
|
},
|
@@ -1329,7 +1332,75 @@
|
|
1329
1332
|
"pricing_ownership_promo": {
|
1330
1333
|
"other": "贖回"
|
1331
1334
|
},
|
1335
|
+
"subscription_cta_label": {
|
1336
|
+
"other": "订阅 {{.Price}}/{{.Recurrence}}"
|
1337
|
+
},
|
1338
|
+
"subscription_recurrence_year": {
|
1339
|
+
"other": "{{.Count}} 年"
|
1340
|
+
},
|
1341
|
+
"subscription_recurrence_month": {
|
1342
|
+
"other": "{{.Count}} 月"
|
1343
|
+
},
|
1344
|
+
"subscription_recurrence_week": {
|
1345
|
+
"other": "{{.Count}} 星期"
|
1346
|
+
},
|
1347
|
+
"subscription_recurrence_day": {
|
1348
|
+
"other": "{{.Count}} 天"
|
1349
|
+
},
|
1332
1350
|
"shopping_info_ownership_subscription": {
|
1333
1351
|
"other": "订阅"
|
1352
|
+
},
|
1353
|
+
"something_bad_happened": {
|
1354
|
+
"other": "请再试一次"
|
1355
|
+
},
|
1356
|
+
"stripe_card_not_supported": {
|
1357
|
+
"other": "不支持您的卡。"
|
1358
|
+
},
|
1359
|
+
"nav_search_control_placeholder": {
|
1360
|
+
"other": "關鍵字搜尋"
|
1361
|
+
},
|
1362
|
+
"nav_search_control_sr_submit": {
|
1363
|
+
"other": "送出"
|
1364
|
+
},
|
1365
|
+
"shopping_info_plan_interval": {
|
1366
|
+
"one": "{{.Interval}}自動更新",
|
1367
|
+
"other": "自動更新每個{{.Count}} {{.Interval}}"
|
1368
|
+
},
|
1369
|
+
"shopping_info_trial_period": {
|
1370
|
+
"one": "立即試用您的 24 小時免費試用版!",
|
1371
|
+
"other": "免費{{.Count}}天!"
|
1372
|
+
},
|
1373
|
+
"usersubscriptions_page_header_seo": {
|
1374
|
+
"other": "订阅和计费"
|
1375
|
+
},
|
1376
|
+
"usersubscriptions_subscription_status_past_due": {
|
1377
|
+
"other": "逾期"
|
1378
|
+
},
|
1379
|
+
"usersubscriptions_subscription_status_unpaid": {
|
1380
|
+
"other": "未付"
|
1381
|
+
},
|
1382
|
+
"usersubscriptions_subscription_status_cancelled": {
|
1383
|
+
"other": "取消"
|
1384
|
+
},
|
1385
|
+
"usersubscriptions_subscription_status_cancelling": {
|
1386
|
+
"other": "取消"
|
1387
|
+
},
|
1388
|
+
"interval_day": {
|
1389
|
+
"other": "天"
|
1390
|
+
},
|
1391
|
+
"interval_week": {
|
1392
|
+
"other": "週"
|
1393
|
+
},
|
1394
|
+
"interval_month": {
|
1395
|
+
"other": "月"
|
1396
|
+
},
|
1397
|
+
"interval_year": {
|
1398
|
+
"other": "年"
|
1399
|
+
},
|
1400
|
+
"shopping_error_processing_error": {
|
1401
|
+
"other": "處理您的卡時發生錯誤。請稍後重試或使用其他付款方式。"
|
1402
|
+
},
|
1403
|
+
"shopping_error_invalid_session_token": {
|
1404
|
+
"other": "購物會話已過期,請重試。"
|
1334
1405
|
}
|
1335
1406
|
}
|