@shift72/core-template 1.9.24 → 1.9.26

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.
Files changed (66) hide show
  1. package/.github/workflows/node.js.yml +12 -13
  2. package/.nvmrc +1 -1
  3. package/CHANGELOG.md +44 -1
  4. package/kibble.json +4 -3
  5. package/package.json +16 -7
  6. package/rollup.config.js +10 -4
  7. package/site/ar_LB.all.json +8 -5
  8. package/site/ca_ES.all.json +3 -0
  9. package/site/da_DK.all.json +3 -0
  10. package/site/de_DE.all.json +4 -1
  11. package/site/el_EL.all.json +3 -0
  12. package/site/en_AU.all.json +3 -0
  13. package/site/es_ES.all.json +6 -3
  14. package/site/es_MX.all.json +6 -3
  15. package/site/et_ET.all.json +4 -1
  16. package/site/fi_FI.all.json +5 -2
  17. package/site/fr_FR.all.json +4 -1
  18. package/site/hr_HR.all.json +4 -1
  19. package/site/hu_HU.all.json +4 -1
  20. package/site/it_IT.all.json +8 -5
  21. package/site/ja_JP.all.json +8 -5
  22. package/site/lt_LT.all.json +3 -0
  23. package/site/nl_BE.all.json +4 -1
  24. package/site/no_NO.all.json +4 -1
  25. package/site/pl_PL.all.json +5 -2
  26. package/site/pt_BR.all.json +4 -1
  27. package/site/pt_PT.all.json +4 -1
  28. package/site/ru_RU.all.json +6 -3
  29. package/site/sr_SR.all.json +4 -1
  30. package/site/static/js/comments.js +9 -0
  31. package/site/static/js/detail-player/detail-player-iframe.component.js +24 -0
  32. package/site/static/js/detail-player/detail-player-placeholder.component.js +161 -0
  33. package/site/static/js/detail-player/detail-player.component.js +54 -0
  34. package/site/static/js/detail-player/icons.js +31 -0
  35. package/site/static/js/main.js +10 -0
  36. package/site/styles/_carousel.scss +10 -0
  37. package/site/styles/_collections.scss +7 -1
  38. package/site/styles/_detail-player.scss +182 -0
  39. package/site/styles/_forms.scss +3 -1
  40. package/site/styles/_globals.scss +11 -0
  41. package/site/styles/_legacy.scss +57 -55
  42. package/site/styles/_meta-detail-creator.scss +82 -0
  43. package/site/styles/_meta-detail.scss +19 -2
  44. package/site/styles/_meta-item-tagline.scss +7 -0
  45. package/site/styles/_meta-item-title.scss +1 -1
  46. package/site/styles/_meta-item.scss +3 -0
  47. package/site/styles/_nav.scss +1 -0
  48. package/site/styles/_poster.scss +29 -0
  49. package/site/styles/_search.scss +2 -0
  50. package/site/styles/_slider.scss +4 -4
  51. package/site/styles/_swiper.scss +17 -0
  52. package/site/styles/_typography.scss +6 -3
  53. package/site/styles/_variables.scss +33 -2
  54. package/site/styles/main.scss +2 -0
  55. package/site/templates/application/application.jet +8 -2
  56. package/site/templates/application/footer/social-media-buttons.jet +13 -2
  57. package/site/templates/application/google.jet +3 -1
  58. package/site/templates/application/head/seo.jet +3 -0
  59. package/site/templates/application/pixel.jet +1 -1
  60. package/site/templates/collection/carousel/item/video.jet +3 -3
  61. package/site/templates/common/cta_buttons.jet +3 -1
  62. package/site/templates/film/item.jet +15 -3
  63. package/site/templates/film/title.jet +3 -3
  64. package/site/tr_TR.all.json +7 -4
  65. package/site/uk_UA.all.json +4 -1
  66. package/site/zh_TW.all.json +9 -6
@@ -5,13 +5,12 @@ name: Node.js CI
5
5
 
6
6
  on:
7
7
  push:
8
- branches: [ develop ]
8
+ branches: [develop]
9
9
  pull_request:
10
- branches: [ develop ]
10
+ branches: [develop]
11
11
 
12
12
  jobs:
13
13
  build:
14
-
15
14
  runs-on: ubuntu-latest
16
15
 
17
16
  strategy:
@@ -20,13 +19,13 @@ jobs:
20
19
  # See supported Node.js release schedule at https://nodejs.org/en/about/releases/
21
20
 
22
21
  steps:
23
- - uses: actions/checkout@v2
24
- - name: Use Node.js ${{ matrix.node-version }}
25
- uses: actions/setup-node@v2
26
- with:
27
- node-version: ${{ matrix.node-version }}
28
- cache: 'npm'
29
- - run: npm ci
30
- - run: npm run test --if-present
31
- - run: npm run js:lint --if-present
32
- - run: npm run css:lint --if-present
22
+ - uses: actions/checkout@v4
23
+ - name: Use Node.js ${{ matrix.node-version }}
24
+ uses: actions/setup-node@v4
25
+ with:
26
+ node-version: ${{ matrix.node-version }}
27
+ cache: 'npm'
28
+ - run: npm ci
29
+ - run: npm run test --if-present
30
+ - run: npm run js:lint --if-present
31
+ - run: npm run css:lint --if-present
package/.nvmrc CHANGED
@@ -1 +1 @@
1
- 16.13.1
1
+ 18
package/CHANGELOG.md CHANGED
@@ -1,6 +1,49 @@
1
1
  # Changelog
2
2
 
3
- ## [Unreleased](https://github.com/shift72/core-template/compare/1.9.24...HEAD)
3
+ ## [Unreleased](https://github.com/shift72/core-template/compare/1.9.26...HEAD)
4
+
5
+ ## [1.9.26](https://github.com/shift72/core-template/compare/1.9.25...1.9.26)
6
+
7
+ ### Added
8
+
9
+ - Video player on film detail page for content creators
10
+ - Add fade in transition on poster images
11
+ - Add skeleton background color for posters before they load.
12
+ - Add fade transition on carousel images
13
+ - Commenting feature support
14
+ - seo_meta_robots_no_index toggle block search engines crawling the site
15
+ - google_analytics_debug toggle to enable debug mode on GA4
16
+
17
+ ### Changed
18
+
19
+ - Added `-webkit-font-smoothing: antialiased` and `font-synthesis: none` to
20
+ body to avoid ugly font rendering. The antialiased setting can make fonts
21
+ render slightly lighter on macOS but should make it more consistent with
22
+ other platforms. Disabling font-synthesis prevents Safari from creating
23
+ hideous faux bold/italic faces when the exact weights aren't loaded.
24
+ - Make the default meta tagline styling on posters a bit more subtle.
25
+ Introduces CSS variables for this to make customizing these styles easier.
26
+ - Poster images have an aspect-ratio applied before they load. `.meta-item`
27
+ uses flex-column sizing to give the posters some size before the images load
28
+ - Switched to babel
29
+ - Update autoprefixer, postcss to fix out of date browserslist.
30
+ - Update nvmrc to 18
31
+
32
+ ### Fixed
33
+
34
+ - Disable picture-in-picture for carousel videos
35
+ - Meta Pixel rogue ; in html when loading scripts
36
+ - Various tranalation clean up for social links
37
+
38
+ ## [1.9.25](https://github.com/shift72/core-template/compare/1.9.24...1.9.25)
39
+
40
+ ### Added
41
+
42
+ - Bluesky support in footer links
43
+
44
+ ### Changed
45
+
46
+ - Workflow action to use setup-node@v4, checkout@v4 as per https://github.com/actions/setup-node/issues/1275. Older versions deprecated.
4
47
 
5
48
  ## [1.9.24](https://github.com/shift72/core-template/compare/1.9.23...1.9.24)
6
49
 
package/kibble.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "core-template",
3
- "version": "1.9.24",
3
+ "version": "1.9.26",
4
4
  "siteUrl": "https://staging-store-kibble.shift72.com",
5
5
  "builderVersion": "0.17.6",
6
6
  "defaultLanguage": "en",
@@ -118,7 +118,8 @@
118
118
  ]
119
119
  },
120
120
  "proxy": [
121
- "^/checkout/"
121
+ "^/checkout/",
122
+ "^/play/"
122
123
  ],
123
124
  "routes": [
124
125
  {
@@ -194,5 +195,5 @@
194
195
  "pageSize": 0
195
196
  }
196
197
  ],
197
- "coreTemplateVersion": "1.9.24"
198
+ "coreTemplateVersion": "1.9.26"
198
199
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@shift72/core-template",
3
- "version": "1.9.24",
3
+ "version": "1.9.26",
4
4
  "description": "Shift72 core template",
5
5
  "license": "MIT",
6
6
  "scripts": {
@@ -42,22 +42,24 @@
42
42
  ],
43
43
  "author": "Shift72",
44
44
  "dependencies": {
45
- "@rollup/plugin-buble": "^0.21.3",
46
- "autoprefixer": "^7.1.2",
45
+ "autoprefixer": "^10.4.21",
47
46
  "bootstrap": "^4.6.1",
48
47
  "concat": "^1.0.3",
49
48
  "cssnano": "^5.0.8",
50
49
  "del": "^6.0.0",
51
50
  "minify": "^4.1.1",
52
51
  "npm-run-all": "^4.0.2",
53
- "postcss": "^8.3.11",
54
- "postcss-cli": "^9.0.1",
52
+ "postcss": "^8.5.6",
53
+ "postcss-cli": "^11.0.1",
55
54
  "rollup": "^2.23.0",
56
55
  "rollup-plugin-terser": "^6.1.0",
57
56
  "s72-kibble": "^0.17.6",
58
57
  "sass": "^1.36.0"
59
58
  },
60
59
  "devDependencies": {
60
+ "@babel/preset-env": "^7.26.9",
61
+ "@babel/preset-react": "^7.26.3",
62
+ "@rollup/plugin-babel": "^6.0.4",
61
63
  "eslint": "^7.30.0",
62
64
  "eslint-config-preact": "^1.1.4",
63
65
  "eslint-config-prettier": "^8.3.0",
@@ -145,7 +147,14 @@
145
147
  "max-nesting-depth": 3,
146
148
  "prettier/prettier": true,
147
149
  "scss/at-extend-no-missing-placeholder": null,
148
- "scss/at-import-no-partial-leading-underscore": null
150
+ "scss/at-import-no-partial-leading-underscore": null,
151
+ "order/properties-alphabetical-order": null
149
152
  }
150
- }
153
+ },
154
+ "browserslist": [
155
+ "defaults, > 0.2% and not dead",
156
+ "chrome >= 58",
157
+ "ios >= 13",
158
+ "safari >= 13"
159
+ ]
151
160
  }
package/rollup.config.js CHANGED
@@ -1,5 +1,5 @@
1
- import buble from '@rollup/plugin-buble';
2
- import { terser } from "rollup-plugin-terser";
1
+ import babel from '@rollup/plugin-babel';
2
+ import { terser } from 'rollup-plugin-terser';
3
3
 
4
4
  const production = process.env.NODE_ENV == 'production';
5
5
 
@@ -19,10 +19,16 @@ export default {
19
19
  sourcemap: !production
20
20
  },
21
21
  plugins: [
22
- buble({ jsx: 's72.ui.h', objectAssign: 'Object.assign' }),
22
+ babel({
23
+ babelHelpers: 'bundled',
24
+ presets: [
25
+ ['@babel/preset-env'],
26
+ ['@babel/preset-react', { pragma: 's72.ui.h' }]
27
+ ],
28
+ }),
23
29
  (production && terser())
24
30
  ],
25
31
  watch: {
26
32
  clearScreen: false
27
33
  }
28
- };
34
+ };
@@ -1589,19 +1589,19 @@
1589
1589
  "other": "احصل عليه من Apple TV"
1590
1590
  },
1591
1591
  "wcag_aria_label_social_instagram": {
1592
- "other": "قم بزيارتنا على Instagram"
1592
+ "other": "تفضل بزيارتنا على الانستجرام"
1593
1593
  },
1594
1594
  "wcag_aria_label_social_youtube": {
1595
- "other": "اشترك على يوتيوب"
1595
+ "other": "اشترك على اليوتيوب"
1596
1596
  },
1597
1597
  "wcag_aria_label_social_facebook": {
1598
- "other": "زورونا على الفيسبوك"
1598
+ "other": "تفضل بزيارتنا على الفيسبوك"
1599
1599
  },
1600
1600
  "wcag_aria_label_social_twitter": {
1601
- "other": "قم بزيارتنا على Twitter"
1601
+ "other": "تفضل بزيارتنا على تويتر"
1602
1602
  },
1603
1603
  "wcag_aria_label_social_letterboxd": {
1604
- "other": "قم بزيارتنا على Letterboxd"
1604
+ "other": "تفضل بزيارة موقعنا على Letterboxd"
1605
1605
  },
1606
1606
  "validate_email_about": {
1607
1607
  "other": "لإنشاء حساب ، يجب علينا أولاً التحقق من عنوان بريدك الإلكتروني. أدخل بريدك الإلكتروني وسنرسل دعوة تسجيل حساب."
@@ -1806,5 +1806,8 @@
1806
1806
  },
1807
1807
  "gift_purchase_button_label": {
1808
1808
  "other": "شراء كهدية"
1809
+ },
1810
+ "wcag_aria_label_social_bluesky": {
1811
+ "other": "تفضل بزيارة موقعنا على بلو سكاي"
1809
1812
  }
1810
1813
  }
@@ -1742,5 +1742,8 @@
1742
1742
  },
1743
1743
  "gift_purchase_button_label": {
1744
1744
  "other": "Compra com a regal"
1745
+ },
1746
+ "wcag_aria_label_social_bluesky": {
1747
+ "other": "Visita'ns a Bluesky"
1745
1748
  }
1746
1749
  }
@@ -1742,5 +1742,8 @@
1742
1742
  },
1743
1743
  "gift_purchase_button_label": {
1744
1744
  "other": "Køb som gave"
1745
+ },
1746
+ "wcag_aria_label_social_bluesky": {
1747
+ "other": "Besøg os på Bluesky"
1745
1748
  }
1746
1749
  }
@@ -1164,7 +1164,7 @@
1164
1164
  "other": "Auf LinkedIn teilen"
1165
1165
  },
1166
1166
  "wcag_aria_label_letterboxd": {
1167
- "other": "Ansicht auf Letterboxd"
1167
+ "other": "Auf Letterboxd ansehen"
1168
1168
  },
1169
1169
  "signin_form_error_ip_throttled": {
1170
1170
  "other": "Sie haben sich zu oft nicht angemeldet. Bitte versuchen Sie es später erneut."
@@ -1742,5 +1742,8 @@
1742
1742
  },
1743
1743
  "gift_purchase_button_label": {
1744
1744
  "other": "Als Geschenk kaufen"
1745
+ },
1746
+ "wcag_aria_label_social_bluesky": {
1747
+ "other": "Besuchen Sie uns auf Bluesky"
1745
1748
  }
1746
1749
  }
@@ -1742,5 +1742,8 @@
1742
1742
  },
1743
1743
  "gift_purchase_button_label": {
1744
1744
  "other": "Αγορά ως δώρο"
1745
+ },
1746
+ "wcag_aria_label_social_bluesky": {
1747
+ "other": "Επισκεφθείτε μας στο Bluesky"
1745
1748
  }
1746
1749
  }
@@ -1742,5 +1742,8 @@
1742
1742
  },
1743
1743
  "gift_purchase_button_label": {
1744
1744
  "other": "Purchase as gift"
1745
+ },
1746
+ "wcag_aria_label_social_bluesky": {
1747
+ "other": "Visit us on Bluesky"
1745
1748
  }
1746
1749
  }
@@ -1535,13 +1535,13 @@
1535
1535
  "other": "Suscríbete en Youtube"
1536
1536
  },
1537
1537
  "wcag_aria_label_social_facebook": {
1538
- "other": "Visítenos en Facebook"
1538
+ "other": "Visítanos en Facebook"
1539
1539
  },
1540
1540
  "wcag_aria_label_social_twitter": {
1541
- "other": "Visítenos en Twitter"
1541
+ "other": "Visítanos en Twitter"
1542
1542
  },
1543
1543
  "wcag_aria_label_social_letterboxd": {
1544
- "other": "Visítenos en Letterboxd"
1544
+ "other": "Visítanos en Letterboxd"
1545
1545
  },
1546
1546
  "validate_email_about": {
1547
1547
  "other": "Para crear una cuenta primero debemos verificar su dirección de correo electrónico. Ingrese su correo electrónico y le enviaremos una invitación de registro de cuenta."
@@ -1746,5 +1746,8 @@
1746
1746
  },
1747
1747
  "gift_purchase_button_label": {
1748
1748
  "other": "Comprar como regalo"
1749
+ },
1750
+ "wcag_aria_label_social_bluesky": {
1751
+ "other": "Visítanos en Bluesky"
1749
1752
  }
1750
1753
  }
@@ -1535,13 +1535,13 @@
1535
1535
  "other": "Suscríbete en Youtube"
1536
1536
  },
1537
1537
  "wcag_aria_label_social_facebook": {
1538
- "other": "Visítenos en Facebook"
1538
+ "other": "Visítanos en Facebook"
1539
1539
  },
1540
1540
  "wcag_aria_label_social_twitter": {
1541
- "other": "Visítenos en Twitter"
1541
+ "other": "Visítanos en Twitter"
1542
1542
  },
1543
1543
  "wcag_aria_label_social_letterboxd": {
1544
- "other": "Visítenos en Letterboxd"
1544
+ "other": "Visítanos en Letterboxd"
1545
1545
  },
1546
1546
  "validate_email_about": {
1547
1547
  "other": "Para crear una cuenta primero debemos verificar su dirección de correo electrónico. Ingrese su correo electrónico y le enviaremos una invitación de registro de cuenta."
@@ -1746,5 +1746,8 @@
1746
1746
  },
1747
1747
  "gift_purchase_button_label": {
1748
1748
  "other": "Comprar como regalo"
1749
+ },
1750
+ "wcag_aria_label_social_bluesky": {
1751
+ "other": "Visítanos en Bluesky"
1749
1752
  }
1750
1753
  }
@@ -1137,7 +1137,7 @@
1137
1137
  "other": "Jagage LinkedIn"
1138
1138
  },
1139
1139
  "wcag_aria_label_letterboxd": {
1140
- "other": "Vaata Letterboxd"
1140
+ "other": "Vaata Letterboxdis"
1141
1141
  },
1142
1142
  "shopping_error_plan_already_owned": {
1143
1143
  "other": "See plaan on teil juba olemas."
@@ -1742,5 +1742,8 @@
1742
1742
  },
1743
1743
  "gift_purchase_button_label": {
1744
1744
  "other": "Ostke kingituseks"
1745
+ },
1746
+ "wcag_aria_label_social_bluesky": {
1747
+ "other": "Külastage meid Bluesky kaudu"
1745
1748
  }
1746
1749
  }
@@ -979,7 +979,7 @@
979
979
  "other": "Jaa LinkedIn"
980
980
  },
981
981
  "wcag_aria_label_letterboxd": {
982
- "other": "Katso Letterboxd"
982
+ "other": "Katso Letterboxdissa"
983
983
  },
984
984
  "shopping_error_plan_already_owned": {
985
985
  "other": "Sinulla on jo tämä suunnitelma."
@@ -1513,7 +1513,7 @@
1513
1513
  "other": "Jotain meni pieleen korttia lisättäessä. Yritä myöhemmin uudelleen tai käytä toista korttia."
1514
1514
  },
1515
1515
  "wcag_aria_label_social_instagram": {
1516
- "other": "Vieraile meillä Instagramissa"
1516
+ "other": "Vieraile meissä Instagramissa"
1517
1517
  },
1518
1518
  "wcag_aria_label_social_youtube": {
1519
1519
  "other": "Tilaa Youtubessa"
@@ -1742,5 +1742,8 @@
1742
1742
  },
1743
1743
  "gift_purchase_button_label": {
1744
1744
  "other": "Osta lahjaksi"
1745
+ },
1746
+ "wcag_aria_label_social_bluesky": {
1747
+ "other": "Tule käymään Blueskyssä"
1745
1748
  }
1746
1749
  }
@@ -1541,7 +1541,7 @@
1541
1541
  "other": "Visitez-nous sur Twitter"
1542
1542
  },
1543
1543
  "wcag_aria_label_social_letterboxd": {
1544
- "other": "Rendez-nous visite sur Letterboxd"
1544
+ "other": "Visitez-nous sur Letterboxd"
1545
1545
  },
1546
1546
  "validate_email_about": {
1547
1547
  "other": "Pour créer un compte, nous devons d'abord vérifier votre adresse e-mail. Entrez votre e-mail et nous vous enverrons une invitation à créer un compte."
@@ -1746,5 +1746,8 @@
1746
1746
  },
1747
1747
  "gift_purchase_button_label": {
1748
1748
  "other": "Acheter en cadeau"
1749
+ },
1750
+ "wcag_aria_label_social_bluesky": {
1751
+ "other": "Visitez-nous sur Bluesky"
1749
1752
  }
1750
1753
  }
@@ -1244,7 +1244,7 @@
1244
1244
  "other": "Nabavite ga na Google Playu"
1245
1245
  },
1246
1246
  "wcag_aria_label_letterboxd": {
1247
- "other": "Pogled na Letterboxd"
1247
+ "other": "Pogledajte na Letterboxd"
1248
1248
  },
1249
1249
  "user_error_too_many_pin_errors_help_page_link": {
1250
1250
  "other": ""
@@ -1744,5 +1744,8 @@
1744
1744
  },
1745
1745
  "gift_purchase_button_label": {
1746
1746
  "other": "Kupiti kao poklon"
1747
+ },
1748
+ "wcag_aria_label_social_bluesky": {
1749
+ "other": "Posjetite nas na Blueskyju"
1747
1750
  }
1748
1751
  }
@@ -1134,7 +1134,7 @@
1134
1134
  "other": "Oszd meg a LinkedIn"
1135
1135
  },
1136
1136
  "wcag_aria_label_letterboxd": {
1137
- "other": "Megtekintés a Letterboxd"
1137
+ "other": "Megtekintés a Letterboxd-n"
1138
1138
  },
1139
1139
  "shopping_error_plan_already_owned": {
1140
1140
  "other": "Már megvan ez a terv."
@@ -1742,5 +1742,8 @@
1742
1742
  },
1743
1743
  "gift_purchase_button_label": {
1744
1744
  "other": "Vásároljon ajándékba"
1745
+ },
1746
+ "wcag_aria_label_social_bluesky": {
1747
+ "other": "Látogasson el hozzánk a Bluesky-n"
1745
1748
  }
1746
1749
  }
@@ -1044,7 +1044,7 @@
1044
1044
  "other": "Condividi su LinkedIn"
1045
1045
  },
1046
1046
  "wcag_aria_label_letterboxd": {
1047
- "other": "Visualizza su Letterboxdd"
1047
+ "other": "Visualizza su Letterboxd"
1048
1048
  },
1049
1049
  "header_banner": {
1050
1050
  "other": "ABC Cinemas – 21° Festival del Cinema, 1 – 6 giugno 2021"
@@ -1529,19 +1529,19 @@
1529
1529
  "other": "Scaricalo su Apple TV"
1530
1530
  },
1531
1531
  "wcag_aria_label_social_instagram": {
1532
- "other": "Venite a trovarci su Instagram"
1532
+ "other": "Visitateci su Instagram"
1533
1533
  },
1534
1534
  "wcag_aria_label_social_youtube": {
1535
1535
  "other": "Iscriviti su Youtube"
1536
1536
  },
1537
1537
  "wcag_aria_label_social_facebook": {
1538
- "other": "Visitaci su Facebook"
1538
+ "other": "Visitateci su Facebook"
1539
1539
  },
1540
1540
  "wcag_aria_label_social_twitter": {
1541
- "other": "Visitaci su Twitter"
1541
+ "other": "Visitateci su Twitter"
1542
1542
  },
1543
1543
  "wcag_aria_label_social_letterboxd": {
1544
- "other": "Venite a trovarci su Letterboxd"
1544
+ "other": "Visitateci su Letterboxd"
1545
1545
  },
1546
1546
  "validate_email_about": {
1547
1547
  "other": "Per creare un account dobbiamo prima verificare il tuo indirizzo email. Inserisci la tua email e ti invieremo un invito alla registrazione dell'account."
@@ -1746,5 +1746,8 @@
1746
1746
  },
1747
1747
  "gift_purchase_button_label": {
1748
1748
  "other": "Acquista come regalo"
1749
+ },
1750
+ "wcag_aria_label_social_bluesky": {
1751
+ "other": "Visitateci su Bluesky"
1749
1752
  }
1750
1753
  }
@@ -1512,19 +1512,19 @@
1512
1512
  "other": "Apple TV で入手する"
1513
1513
  },
1514
1514
  "wcag_aria_label_social_instagram": {
1515
- "other": "Instagramで私たちをご覧ください"
1515
+ "other": "Instagramをご覧ください"
1516
1516
  },
1517
1517
  "wcag_aria_label_social_youtube": {
1518
- "other": "Youtubeで購読する"
1518
+ "other": "YouTubeで購読する"
1519
1519
  },
1520
1520
  "wcag_aria_label_social_facebook": {
1521
- "other": "Facebookで私たちをご覧ください"
1521
+ "other": "Facebookでご覧ください"
1522
1522
  },
1523
1523
  "wcag_aria_label_social_twitter": {
1524
- "other": "Twitterで私たちをご覧ください"
1524
+ "other": "Twitterでフォローしてください"
1525
1525
  },
1526
1526
  "wcag_aria_label_social_letterboxd": {
1527
- "other": "Letterboxdにアクセスしてください"
1527
+ "other": "Letterboxdをご覧ください"
1528
1528
  },
1529
1529
  "validate_email_about": {
1530
1530
  "other": "アカウントを作成するには、まずメール アドレスを確認する必要があります。メールアドレスを入力すると、アカウントのサインアップの招待状が送信されます。"
@@ -1729,5 +1729,8 @@
1729
1729
  },
1730
1730
  "gift_purchase_button_label": {
1731
1731
  "other": "ギフトとして購入"
1732
+ },
1733
+ "wcag_aria_label_social_bluesky": {
1734
+ "other": "Blueskyをご覧ください"
1732
1735
  }
1733
1736
  }
@@ -1774,5 +1774,8 @@
1774
1774
  },
1775
1775
  "gift_purchase_button_label": {
1776
1776
  "other": "Pirkti kaip dovaną"
1777
+ },
1778
+ "wcag_aria_label_social_bluesky": {
1779
+ "other": "Aplankykite mus Bluesky"
1777
1780
  }
1778
1781
  }
@@ -1215,7 +1215,7 @@
1215
1215
  "other": "Delen op LinkedIn"
1216
1216
  },
1217
1217
  "wcag_aria_label_letterboxd": {
1218
- "other": "Uitzicht op Letterboxd"
1218
+ "other": "Bekijk op Letterboxd"
1219
1219
  },
1220
1220
  "shopping_error_plan_already_owned": {
1221
1221
  "other": "Je hebt dit abonnement al."
@@ -1742,5 +1742,8 @@
1742
1742
  },
1743
1743
  "gift_purchase_button_label": {
1744
1744
  "other": "Aankoop als geschenk"
1745
+ },
1746
+ "wcag_aria_label_social_bluesky": {
1747
+ "other": "Bezoek ons op Bluesky"
1745
1748
  }
1746
1749
  }
@@ -1128,7 +1128,7 @@
1128
1128
  "other": "Dele på LinkedIn"
1129
1129
  },
1130
1130
  "wcag_aria_label_letterboxd": {
1131
- "other": "Dele på Letterboxd"
1131
+ "other": "Se på Letterboxd"
1132
1132
  },
1133
1133
  "shopping_error_plan_already_owned": {
1134
1134
  "other": "Du har allerede denne planen."
@@ -1742,5 +1742,8 @@
1742
1742
  },
1743
1743
  "gift_purchase_button_label": {
1744
1744
  "other": "Kjøp som gave"
1745
+ },
1746
+ "wcag_aria_label_social_bluesky": {
1747
+ "other": "Besøk oss på Bluesky"
1745
1748
  }
1746
1749
  }
@@ -1030,7 +1030,7 @@
1030
1030
  "other": "Podziel się LinkedIn"
1031
1031
  },
1032
1032
  "wcag_aria_label_letterboxd": {
1033
- "other": "Podziel się Letterboxd"
1033
+ "other": "Zobacz na Letterboxd"
1034
1034
  },
1035
1035
  "shopping_error_plan_already_owned": {
1036
1036
  "other": "Masz już ten plan."
@@ -1819,5 +1819,8 @@
1819
1819
  },
1820
1820
  "gift_purchase_button_label": {
1821
1821
  "other": "Kup na prezent"
1822
+ },
1823
+ "wcag_aria_label_social_bluesky": {
1824
+ "other": "Odwiedź nas na Bluesky"
1822
1825
  }
1823
- }
1826
+ }
@@ -1157,7 +1157,7 @@
1157
1157
  "other": "Compartilhar no LinkedIn"
1158
1158
  },
1159
1159
  "wcag_aria_label_letterboxd": {
1160
- "other": "Visualizar no Letterboxd"
1160
+ "other": "Ver no Letterboxd"
1161
1161
  },
1162
1162
  "app_badge_title": {
1163
1163
  "other": "Baixe o aplicativo para visualizar o conteúdo adquirido!"
@@ -1746,5 +1746,8 @@
1746
1746
  },
1747
1747
  "gift_purchase_button_label": {
1748
1748
  "other": "Comprar como presente"
1749
+ },
1750
+ "wcag_aria_label_social_bluesky": {
1751
+ "other": "Visite-nos no Bluesky"
1749
1752
  }
1750
1753
  }
@@ -1122,7 +1122,7 @@
1122
1122
  "other": "Compartilhar no LinkedIn"
1123
1123
  },
1124
1124
  "wcag_aria_label_letterboxd": {
1125
- "other": "Visualizar no Letterboxd"
1125
+ "other": "Ver no Letterboxd"
1126
1126
  },
1127
1127
  "shopping_error_plan_already_owned": {
1128
1128
  "other": "Você já tem este plano."
@@ -1746,5 +1746,8 @@
1746
1746
  },
1747
1747
  "gift_purchase_button_label": {
1748
1748
  "other": "Comprar como presente"
1749
+ },
1750
+ "wcag_aria_label_social_bluesky": {
1751
+ "other": "Visite-nos no Bluesky"
1749
1752
  }
1750
1753
  }