@shift72/core-template 0.5.1 → 0.6.0-alpha.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (70) hide show
  1. package/.nvmrc +1 -0
  2. package/CHANGELOG.md +35 -10
  3. package/kibble.json +3 -3
  4. package/package.json +1 -2
  5. package/scripts/translate.mjs +30 -22
  6. package/site/ar_LB.all.json +65 -11
  7. package/site/ca_ES.all.json +65 -11
  8. package/site/da_DK.all.json +64 -10
  9. package/site/de_DE.all.json +64 -10
  10. package/site/el_EL.all.json +64 -10
  11. package/site/en_AU.all.json +70 -16
  12. package/site/es_ES.all.json +66 -12
  13. package/site/es_MX.all.json +66 -12
  14. package/site/{ee_EE.all.json → et_ET.all.json} +64 -10
  15. package/site/fi_FI.all.json +67 -13
  16. package/site/fr_FR.all.json +66 -12
  17. package/site/hr_HR.all.json +65 -11
  18. package/site/hu_HU.all.json +65 -11
  19. package/site/it_IT.all.json +65 -11
  20. package/site/ja_JP.all.json +64 -10
  21. package/site/lt_LT.all.json +64 -10
  22. package/site/nl_BE.all.json +65 -11
  23. package/site/no_NO.all.json +65 -11
  24. package/site/pl_PL.all.json +65 -11
  25. package/site/plans.html.jet +17 -17
  26. package/site/pt_BR.all.json +65 -11
  27. package/site/pt_PT.all.json +65 -11
  28. package/site/ru_RU.all.json +67 -13
  29. package/site/sr_SR.all.json +67 -13
  30. package/site/static/fonts/fa-s72.woff +0 -0
  31. package/site/static/js/main.js +1 -0
  32. package/site/static/scripts/main.js.map +1 -1
  33. package/site/styles/_availability-tags.scss +63 -31
  34. package/site/styles/_awards.scss +4 -3
  35. package/site/styles/_buttons.scss +15 -3
  36. package/site/styles/_carousel.scss +21 -24
  37. package/site/styles/_forms.scss +8 -3
  38. package/site/styles/_icons.scss +180 -9
  39. package/site/styles/_legacy.scss +0 -7
  40. package/site/styles/_meta-detail.scss +65 -40
  41. package/site/styles/_nav.scss +5 -4
  42. package/site/styles/_plans.scss +10 -17
  43. package/site/styles/_poster.scss +3 -9
  44. package/site/styles/_share-modal.scss +86 -0
  45. package/site/styles/_shift72.scss +7 -0
  46. package/site/styles/_shopping.scss +0 -1
  47. package/site/styles/_skip-link.scss +1 -1
  48. package/site/styles/_tooltips.scss +7 -0
  49. package/site/styles/_variables.scss +9 -8
  50. package/site/styles/_wishlist.scss +2 -2
  51. package/site/styles/main.scss +3 -2
  52. package/site/subscriptions.html.jet +11 -0
  53. package/site/templates/application/application.jet +2 -2
  54. package/site/templates/application/google.jet +8 -13
  55. package/site/templates/application/nav/user_logged_in.jet +7 -2
  56. package/site/templates/collection/carousel_item.jet +5 -3
  57. package/site/templates/common/social-media-buttons.jet +1 -37
  58. package/site/templates/common/sponsor-image.jet +18 -0
  59. package/site/templates/film/item.jet +92 -86
  60. package/site/templates/tv/detail.jet +30 -21
  61. package/site/tr_TR.all.json +64 -10
  62. package/site/uk_UA.all.json +65 -11
  63. package/site/zh_TW.all.json +64 -10
  64. package/site/static/fonts/FontAwesome.otf +0 -0
  65. package/site/static/fonts/fontawesome-webfont.eot +0 -0
  66. package/site/static/fonts/fontawesome-webfont.svg +0 -565
  67. package/site/static/fonts/fontawesome-webfont.ttf +0 -0
  68. package/site/static/fonts/fontawesome-webfont.woff +0 -0
  69. package/site/static/fonts/fontawesome-webfont.woff2 +0 -0
  70. package/site/styles/_social-media-buttons.scss +0 -159
package/.nvmrc ADDED
@@ -0,0 +1 @@
1
+ 16.13.1
package/CHANGELOG.md CHANGED
@@ -1,6 +1,29 @@
1
1
  # Changelog
2
2
 
3
- ## [Unreleased](https://github.com/shift72/core-template/compare/0.5.1...HEAD)
3
+ ## [Unreleased](https://github.com/shift72/core-template/compare/0.6.0-alpha.0...HEAD)
4
+
5
+ ## [0.6.0-alpha.0](https://github.com/shift72/core-template/compare/0.5.1...0.6.0-alpha.0)
6
+
7
+ ### Added
8
+ - If the signed in user has plans to show, they will now be visible in `subscriptions.html.jet` with a link from "My Subscriptions" in the menu.
9
+ - Styling and translations to support SVOD subscriptions.
10
+ - `.nvmrc` to pin versions of Node/NPM.
11
+ - Developer tool to fetch translations from Google Translate.
12
+ - Social media buttons replaced with share modal.
13
+ - Relish now loads the `urlmap.json`.
14
+ - Sponsor image in carousel and meta detail.
15
+
16
+ ### Changed
17
+ - Default Font Awesome removed. A trimmed icons file is now in `fa-s72.woff` being used by `_icons.scss`.
18
+ - Styling changes to awards and availability label/status.
19
+
20
+ ### Fixed
21
+ - Removed some redundant wishlist CSS.
22
+ - Improved and translated element switcher.
23
+ - Removed suffixed `plan` from subscription translations.
24
+ - Changed incorrect language code for Estonia.
25
+ - Donate button hover color.
26
+ - Google scripts respect cookie consents and only load when accepted.
4
27
 
5
28
  ## [0.5.1](https://github.com/shift72/core-template/compare/0.5.0...0.5.1)
6
29
 
@@ -11,30 +34,32 @@
11
34
  - Sentence casing for `en_AU` translation about passes.
12
35
 
13
36
  ## [0.5.0](https://github.com/shift72/core-template/compare/0.4.4...0.5.0)
14
- ### Changed
15
- - Upgrade to kibble `0.16.6`.
16
- - Moved references from `film.Images` to `film.ImageMap`.
17
- - Removed minimum page height from content pages.
18
- - Moved skip link above cookie consent banner
19
37
 
20
38
  ### Added
21
39
  - Start the site with an admin build: `npm start --admin`.
22
40
  - Added Core template version to `<head>` and `kibble.json`.
23
41
  - Added styling for floating donate button to use button sass variables.
24
42
  - A bunch of missing language keys across language files.
25
- - Automated translation command
43
+ - Automated translation command.
44
+
45
+ ### Changed
46
+ - Upgrade to kibble `0.16.6`.
47
+ - Moved references from `film.Images` to `film.ImageMap`.
48
+ - Removed minimum page height from content pages.
49
+ - Moved skip link above cookie consent banner
26
50
 
27
51
  ### Fixed
28
52
  - Can now override the cookie consent styling.
29
- - Can now send analytics data to both GA4 and UA Legacy google analytics (GA4 previously not supported)
53
+ - Can now send analytics data to both GA4 and UA Legacy google analytics (GA4 previously not supported).
30
54
 
31
55
  ## [0.4.4](https://github.com/shift72/core-template/compare/0.4.3...0.4.4)
32
- ### Fixed
33
- - Fixed obsolete `$primary` var for trailer button.
34
56
 
35
57
  ### Added
36
58
  - Awards categories.
37
59
 
60
+ ### Fixed
61
+ - Fixed obsolete `$primary` var for trailer button.
62
+
38
63
  ## [0.4.3](https://github.com/shift72/core-template/compare/0.4.2...0.4.3)
39
64
 
40
65
  ### Added
package/kibble.json CHANGED
@@ -21,8 +21,8 @@
21
21
  "code": "de_DE",
22
22
  "name": "Deutsch"
23
23
  },
24
- "ee": {
25
- "code": "ee_EE",
24
+ "et": {
25
+ "code": "et_ET",
26
26
  "name": "Eestlane"
27
27
  },
28
28
  "el": {
@@ -185,5 +185,5 @@
185
185
  "pageSize": 0
186
186
  }
187
187
  ],
188
- "coreTemplateVersion": "0.5.1"
188
+ "coreTemplateVersion": "0.6.0-alpha.0"
189
189
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@shift72/core-template",
3
- "version": "0.5.1",
3
+ "version": "0.6.0-alpha.0",
4
4
  "description": "Shift72 core template",
5
5
  "license": "MIT",
6
6
  "scripts": {
@@ -46,7 +46,6 @@
46
46
  "concat": "^1.0.3",
47
47
  "cssnano": "^5.0.8",
48
48
  "del": "^6.0.0",
49
- "font-awesome": "^4.7.0",
50
49
  "minify": "^4.1.1",
51
50
  "npm-run-all": "^4.0.2",
52
51
  "postcss": "^8.3.11",
@@ -11,33 +11,41 @@ if (!key || !value) {
11
11
  }
12
12
  glob('./site/*.json', {}, (err, files) => {
13
13
  files.forEach(pathName => {
14
+ function writeTranslationFile(translatedValue) {
15
+ if (!content[key]) {
16
+ content[key] = {};
17
+ }
18
+
19
+ content[key][nestedKey ? nestedKey : 'other'] = translatedValue;
20
+ fs.writeFileSync(pathName, JSON.stringify(content, null, 2));
21
+ }
14
22
  const file_content = fs.readFileSync(pathName);
15
23
  const content = JSON.parse(file_content);
16
24
  let languageCode = pathName.slice(7, 9);
17
25
  if (languageCode == 'ee') languageCode = 'et';
18
- fetch(
19
- `https://translate.googleapis.com/translate_a/single?client=gtx&sl=en&tl=${languageCode}&dt=t&q=${encodeURI(
20
- value
21
- )}`
22
- )
23
- .then(res => {
24
- const contentType = res.headers.get('content-type');
25
- if (contentType && contentType.indexOf('application/json') !== -1) {
26
- return res.json();
27
- }
28
- console.log(`translation failed for ${languageCode}`);
29
- })
30
- .then(translated => {
31
- if (translated) {
32
- const translatedValue = translated[0][0][0];
33
-
34
- if (!content[key]) {
35
- content[key] = {};
26
+ if (value.trim() === '') {
27
+ writeTranslationFile(value);
28
+ } else {
29
+ fetch(
30
+ `https://translate.googleapis.com/translate_a/single?client=gtx&sl=en&tl=${languageCode}&dt=t&q=${encodeURI(
31
+ value
32
+ )}`
33
+ )
34
+ .then(res => {
35
+ const contentType = res.headers.get('content-type');
36
+ if (contentType && contentType.indexOf('application/json') !== -1) {
37
+ return res.json();
38
+ }
39
+ console.log(`translation failed for ${languageCode}`);
40
+ })
41
+ .then(translated => {
42
+ if (translated) {
43
+ let translatedValue = '';
44
+ translated[0].forEach(each => translatedValue += each[0]);
45
+ writeTranslationFile(translatedValue);
36
46
  }
47
+ });
48
+ }
37
49
 
38
- content[key][nestedKey ? nestedKey : 'other'] = translatedValue;
39
- fs.writeFileSync(pathName, JSON.stringify(content, null, 2));
40
- }
41
- });
42
50
  });
43
51
  });
@@ -134,19 +134,19 @@
134
134
  "other": "تابع "
135
135
  },
136
136
  "social_media_buttons_title": {
137
- "other": "النشر "
137
+ "other": "يشارك"
138
138
  },
139
139
  "social_media_buttons_facebook": {
140
- "other": "انشر في الفيسبوك"
140
+ "other": "Facebook"
141
141
  },
142
142
  "social_media_buttons_twitter": {
143
- "other": "حصة على التغريد"
143
+ "other": "Twitter"
144
144
  },
145
145
  "social_media_buttons_linkedin": {
146
- "other": "انشر على لينكد إن"
146
+ "other": "Linkedin"
147
147
  },
148
148
  "social_media_buttons_email": {
149
- "other": "سهم عبر البريد الإلكتروني"
149
+ "other": "بريد الالكتروني"
150
150
  },
151
151
  "social_media_buttons_email_subject": {
152
152
  "other": "مشاركة الارتباط"
@@ -155,7 +155,7 @@
155
155
  "other": "تم نسخ الرابط إلى الحافظة!"
156
156
  },
157
157
  "social_media_buttons_copy_link": {
158
- "other": "نسخ إلى الحافظة"
158
+ "other": "نسخ الوصلة"
159
159
  },
160
160
  "accept_invite_page_header": {
161
161
  "other": "أهلا بك"
@@ -1016,7 +1016,7 @@
1016
1016
  "other": "إلغاء الاشتراك؟"
1017
1017
  },
1018
1018
  "usersubscriptions_unsubscribe_modal_body": {
1019
- "other": "سيؤدي هذا إلى إلغاء الاشتراك في خطة {{.Name}}. ستظل قادرًا على مشاهدة المحتوى في الخطة حتى انتهاء صلاحيتها {{.Expiry}}."
1019
+ "other": "سيؤدي هذا إلى إلغاء الاشتراك في {{.Name}}. ستظل قادرًا على مشاهدة المحتوى حتى انتهاء صلاحيته {{.Expiry}}."
1020
1020
  },
1021
1021
  "availability_coming_soon": {
1022
1022
  "other": "قريبا"
@@ -1216,7 +1216,7 @@
1216
1216
  "other": "أو"
1217
1217
  },
1218
1218
  "page_plan_explore_link": {
1219
- "other": "استكشف ممرات أخرى"
1219
+ "other": "استكشاف المزيد"
1220
1220
  },
1221
1221
  "plan_showcase_page_ownership_button_buy": {
1222
1222
  "other": "اشتري الآن"
@@ -1255,9 +1255,63 @@
1255
1255
  "other": "الفائز"
1256
1256
  },
1257
1257
  "meta_description_expand": {
1258
- "other": "أظهر المزيد"
1258
+ "other": "شاهد المزيد"
1259
1259
  },
1260
1260
  "meta_description_collapse": {
1261
- "other": "عرض أقل"
1261
+ "other": "رؤية أقل"
1262
+ },
1263
+ "usersubscriptions_page_header": {
1264
+ "other": "الاشتراكات والفواتير"
1265
+ },
1266
+ "usersubscriptions_page_content": {
1267
+ "other": " "
1268
+ },
1269
+ "usersubscriptions_payment_section_title": {
1270
+ "other": "طريقة الدفع او السداد"
1271
+ },
1272
+ "usersubscriptions_payment_section_content": {
1273
+ "other": "تسري التغييرات التي تم إجراؤها على طريقة الدفع ببطاقتك الائتمانية في دورة الفوترة التالية."
1274
+ },
1275
+ "usersubscriptions_subscriptions_section_title": {
1276
+ "other": "تفاصيل الاشتراك"
1277
+ },
1278
+ "usersubscriptions_subscriptions_section_content": {
1279
+ "other": " "
1280
+ },
1281
+ "usersubscriptions_subscription_status_active": {
1282
+ "other": "نشيط"
1283
+ },
1284
+ "usersubscriptions_subscription_expired": {
1285
+ "other": "منتهية الصلاحية"
1286
+ },
1287
+ "usersubscriptions_no_subscriptions_section_title": {
1288
+ "other": "اكتشف الاشتراكات"
1289
+ },
1290
+ "usersubscriptions_no_subscriptions_content": {
1291
+ "other": "اكتشف محتوى رائعًا بأسعار رائعة ، ويمكن إدارته بسهولة هنا."
1292
+ },
1293
+ "usersubscriptions_no_subscriptions_button_title": {
1294
+ "other": "اكتشف الاشتراكات"
1295
+ },
1296
+ "nav_subscriptions": {
1297
+ "other": "اشتراكاتي"
1298
+ },
1299
+ "usersubscriptions_subscription_expiry_trialing": {
1300
+ "other": "الدفعة {{ .Expiry }}"
1301
+ },
1302
+ "usersubscriptions_subscription_expiry_active": {
1303
+ "other": "الدفعة {{ .Expiry }}"
1304
+ },
1305
+ "usersubscriptions_subscription_expiry_past_due": {
1306
+ "other": "الدفع {{ .Expiry }}"
1307
+ },
1308
+ "usersubscriptions_subscription_expiry_cancelled": {
1309
+ "other": "{{ .Expiry }}"
1310
+ },
1311
+ "usersubscriptions_subscription_expiry_expired": {
1312
+ "other": "{{ .Expiry }}"
1313
+ },
1314
+ "sponsor_image_alt": {
1315
+ "other": "شعار الراعي"
1262
1316
  }
1263
- }
1317
+ }
@@ -140,25 +140,25 @@
140
140
  "other": "Compartir"
141
141
  },
142
142
  "social_media_buttons_facebook": {
143
- "other": "Comparteix a Facebook"
143
+ "other": "Facebook"
144
144
  },
145
145
  "social_media_buttons_twitter": {
146
- "other": "Comparteix a Twitter"
146
+ "other": "Twitter"
147
147
  },
148
148
  "social_media_buttons_linkedin": {
149
- "other": "Comparteix a Linkedin"
149
+ "other": "Linkedin"
150
150
  },
151
151
  "social_media_buttons_email": {
152
- "other": "Comparteix per correu electrònic"
152
+ "other": "Correu electrònic"
153
153
  },
154
154
  "social_media_buttons_email_subject": {
155
- "other": "Compartir enllaç"
155
+ "other": "Comparteix l'enllaç"
156
156
  },
157
157
  "social_media_buttons_copied_link": {
158
158
  "other": "S'ha copiat l'enllaç al porta-retalls!"
159
159
  },
160
160
  "social_media_buttons_copy_link": {
161
- "other": "Copiar al portapapers"
161
+ "other": "Copia l'enllaç"
162
162
  },
163
163
  "accept_invite_page_header": {
164
164
  "other": "Benvingut "
@@ -1022,7 +1022,7 @@
1022
1022
  "other": "Cancel·lar la subscripció?"
1023
1023
  },
1024
1024
  "usersubscriptions_unsubscribe_modal_body": {
1025
- "other": "Això cancel·larà la subscripció al pla {{.Name}}. Encara podreu veure el contingut del pla fins que caduqui {{.Expiry}}."
1025
+ "other": "Això cancel·larà la subscripció a {{.Name}}. Encara podreu veure el contingut fins que caduqui {{.Expiry}}."
1026
1026
  },
1027
1027
  "availability_coming_soon": {
1028
1028
  "other": "Pròximament"
@@ -1228,7 +1228,7 @@
1228
1228
  "other": "O"
1229
1229
  },
1230
1230
  "page_plan_explore_link": {
1231
- "other": "Exploreu altres passis"
1231
+ "other": "Exploreu més"
1232
1232
  },
1233
1233
  "plan_showcase_page_ownership_button_buy": {
1234
1234
  "other": "Compra ara"
@@ -1240,10 +1240,10 @@
1240
1240
  "other": "En Competició"
1241
1241
  },
1242
1242
  "meta_description_expand": {
1243
- "other": "Mostra més"
1243
+ "other": "Veure més"
1244
1244
  },
1245
1245
  "meta_description_collapse": {
1246
- "other": "Mostra menys"
1246
+ "other": "Veure menys"
1247
1247
  },
1248
1248
  "awards_winner": {
1249
1249
  "other": "Guanyador"
@@ -1259,5 +1259,59 @@
1259
1259
  },
1260
1260
  "wcag_aria_label_letterboxd": {
1261
1261
  "other": "Veure a Letterboxd"
1262
+ },
1263
+ "usersubscriptions_page_header": {
1264
+ "other": "Subscripcions i facturació"
1265
+ },
1266
+ "usersubscriptions_page_content": {
1267
+ "other": " "
1268
+ },
1269
+ "usersubscriptions_payment_section_title": {
1270
+ "other": "Mètode de pagament"
1271
+ },
1272
+ "usersubscriptions_payment_section_content": {
1273
+ "other": "Els canvis al mètode de pagament de la vostra targeta de crèdit tindran efecte el proper cicle de facturació."
1274
+ },
1275
+ "usersubscriptions_subscriptions_section_title": {
1276
+ "other": "Detalls de la subscripció"
1277
+ },
1278
+ "usersubscriptions_subscriptions_section_content": {
1279
+ "other": " "
1280
+ },
1281
+ "usersubscriptions_subscription_status_active": {
1282
+ "other": "Actiu"
1283
+ },
1284
+ "usersubscriptions_subscription_expired": {
1285
+ "other": "Caducat"
1286
+ },
1287
+ "usersubscriptions_no_subscriptions_section_title": {
1288
+ "other": "Descobriu les subscripcions"
1289
+ },
1290
+ "usersubscriptions_no_subscriptions_content": {
1291
+ "other": "Descobriu contingut fantàstic a preus fantàstics, fàcil de gestionar aquí."
1292
+ },
1293
+ "usersubscriptions_no_subscriptions_button_title": {
1294
+ "other": "Exploreu les subscripcions"
1295
+ },
1296
+ "nav_subscriptions": {
1297
+ "other": "Les meves subscripcions"
1298
+ },
1299
+ "usersubscriptions_subscription_expiry_trialing": {
1300
+ "other": "Primer pagament {{ .Expiry }}"
1301
+ },
1302
+ "usersubscriptions_subscription_expiry_active": {
1303
+ "other": "Pròxim pagament {{ .Expiry }}"
1304
+ },
1305
+ "usersubscriptions_subscription_expiry_past_due": {
1306
+ "other": "Pagament vençut {{ .Expiry }}"
1307
+ },
1308
+ "usersubscriptions_subscription_expiry_cancelled": {
1309
+ "other": "Finalitza {{ .Expiry }}"
1310
+ },
1311
+ "usersubscriptions_subscription_expiry_expired": {
1312
+ "other": "Finalitzat {{ .Expiry }}"
1313
+ },
1314
+ "sponsor_image_alt": {
1315
+ "other": "logotip del patrocinador"
1262
1316
  }
1263
- }
1317
+ }
@@ -137,16 +137,16 @@
137
137
  "other": "Del"
138
138
  },
139
139
  "social_media_buttons_facebook": {
140
- "other": "Del på facebook"
140
+ "other": "Facebook"
141
141
  },
142
142
  "social_media_buttons_twitter": {
143
- "other": "Del på Twitter"
143
+ "other": "Twitter"
144
144
  },
145
145
  "social_media_buttons_linkedin": {
146
- "other": "Del på Linkedin"
146
+ "other": "Linkedin"
147
147
  },
148
148
  "social_media_buttons_email": {
149
- "other": "Del via e-mail"
149
+ "other": "E-mail"
150
150
  },
151
151
  "social_media_buttons_email_subject": {
152
152
  "other": "Linkdeling"
@@ -155,7 +155,7 @@
155
155
  "other": "Link kopieret til udklipsholder!"
156
156
  },
157
157
  "social_media_buttons_copy_link": {
158
- "other": "Kopier til udklipsholder"
158
+ "other": "Kopier link"
159
159
  },
160
160
  "accept_invite_page_header": {
161
161
  "other": "Velkommen "
@@ -1004,7 +1004,7 @@
1004
1004
  "other": "Vil du opsige abonnement?"
1005
1005
  },
1006
1006
  "usersubscriptions_unsubscribe_modal_body": {
1007
- "other": "Dette vil annullere abonnementet på {{.Name}}-planen. Du vil stadig være i stand til at se indholdet i planen, indtil det udløber {{.Expiry}}."
1007
+ "other": "Dette vil annullere abonnementet på {{.Name}}. Du vil stadig kunne se indholdet, indtil det udløber {{.Expiry}}."
1008
1008
  },
1009
1009
  "availability_coming_soon": {
1010
1010
  "other": "Kommer snart"
@@ -1156,7 +1156,7 @@
1156
1156
  "other": "ELLER"
1157
1157
  },
1158
1158
  "page_plan_explore_link": {
1159
- "other": "Udforsk andre pas"
1159
+ "other": "Udforsk mere"
1160
1160
  },
1161
1161
  "plan_showcase_page_ownership_button_buy": {
1162
1162
  "other": "Køb nu"
@@ -1255,9 +1255,63 @@
1255
1255
  "other": "ABC Cinemas – 21. filmfestival, 1. – 6. juni 2021"
1256
1256
  },
1257
1257
  "meta_description_expand": {
1258
- "other": "Vis mere"
1258
+ "other": "Se mere"
1259
1259
  },
1260
1260
  "meta_description_collapse": {
1261
- "other": "Vis mindre"
1261
+ "other": "Se mindre"
1262
+ },
1263
+ "usersubscriptions_page_header": {
1264
+ "other": "Abonnementer og fakturering"
1265
+ },
1266
+ "usersubscriptions_page_content": {
1267
+ "other": " "
1268
+ },
1269
+ "usersubscriptions_payment_section_title": {
1270
+ "other": "Betalingsmetode"
1271
+ },
1272
+ "usersubscriptions_payment_section_content": {
1273
+ "other": "Ændringer af din kreditkortbetalingsmetode træder i kraft på din næste faktureringsperiode."
1274
+ },
1275
+ "usersubscriptions_subscriptions_section_title": {
1276
+ "other": "Abonnementsoplysninger"
1277
+ },
1278
+ "usersubscriptions_subscriptions_section_content": {
1279
+ "other": " "
1280
+ },
1281
+ "usersubscriptions_subscription_status_active": {
1282
+ "other": "Aktiv"
1283
+ },
1284
+ "usersubscriptions_subscription_expired": {
1285
+ "other": "Udløbet"
1286
+ },
1287
+ "usersubscriptions_no_subscriptions_section_title": {
1288
+ "other": "Opdag abonnementer"
1289
+ },
1290
+ "usersubscriptions_no_subscriptions_content": {
1291
+ "other": "Oplev fantastisk indhold til fantastiske priser, nemt at administrere her."
1292
+ },
1293
+ "usersubscriptions_no_subscriptions_button_title": {
1294
+ "other": "Udforsk abonnementer"
1295
+ },
1296
+ "nav_subscriptions": {
1297
+ "other": "Mine abonnementer"
1298
+ },
1299
+ "usersubscriptions_subscription_expiry_trialing": {
1300
+ "other": "Første betaling {{ .Expiry }}"
1301
+ },
1302
+ "usersubscriptions_subscription_expiry_active": {
1303
+ "other": "Næste betaling {{ .Expiry }}"
1304
+ },
1305
+ "usersubscriptions_subscription_expiry_past_due": {
1306
+ "other": "Forfalden betaling {{ .Expiry }}"
1307
+ },
1308
+ "usersubscriptions_subscription_expiry_cancelled": {
1309
+ "other": "Slutter {{ .Expiry }}"
1310
+ },
1311
+ "usersubscriptions_subscription_expiry_expired": {
1312
+ "other": "Afsluttet {{ .Expiry }}"
1313
+ },
1314
+ "sponsor_image_alt": {
1315
+ "other": "sponsor logo"
1262
1316
  }
1263
- }
1317
+ }
@@ -122,16 +122,16 @@
122
122
  "other": "Teilen"
123
123
  },
124
124
  "social_media_buttons_facebook": {
125
- "other": "Auf Facebook teilen"
125
+ "other": "Facebook"
126
126
  },
127
127
  "social_media_buttons_twitter": {
128
- "other": "Auf Twitter teilen"
128
+ "other": "Twitter"
129
129
  },
130
130
  "social_media_buttons_linkedin": {
131
- "other": "Auf Linkedin teilen"
131
+ "other": "Linkedin"
132
132
  },
133
133
  "social_media_buttons_email": {
134
- "other": "Per E-Mail teilen"
134
+ "other": "Email"
135
135
  },
136
136
  "social_media_buttons_email_subject": {
137
137
  "other": "Link teilen"
@@ -140,7 +140,7 @@
140
140
  "other": "Link in die Zwischenablage kopiert!"
141
141
  },
142
142
  "social_media_buttons_copy_link": {
143
- "other": "In die Zwischenablage kopieren"
143
+ "other": "Link kopieren"
144
144
  },
145
145
  "accept_invite_page_header": {
146
146
  "other": "Willkommen "
@@ -955,7 +955,7 @@
955
955
  "other": "ODER"
956
956
  },
957
957
  "page_plan_explore_link": {
958
- "other": "Entdecken Sie andere Pässe"
958
+ "other": "Erkunde mehr"
959
959
  },
960
960
  "plan_showcase_page_ownership_button_buy": {
961
961
  "other": "Kaufe jetzt"
@@ -967,10 +967,10 @@
967
967
  "other": "Im Wettbewerb"
968
968
  },
969
969
  "meta_description_expand": {
970
- "other": "Zeig mehr"
970
+ "other": "Mehr sehen"
971
971
  },
972
972
  "meta_description_collapse": {
973
- "other": "Zeige weniger"
973
+ "other": "Weniger sehen"
974
974
  },
975
975
  "awards_winner": {
976
976
  "other": "Gewinner"
@@ -1105,7 +1105,7 @@
1105
1105
  "other": "Abonnement beenden?"
1106
1106
  },
1107
1107
  "usersubscriptions_unsubscribe_modal_body": {
1108
- "other": "Dadurch wird das Abonnement des Plans {{.Name}} gekündigt. Sie können den Inhalt des Plans weiterhin ansehen, bis er abläuft {{.Expiry}}."
1108
+ "other": "Dadurch wird das Abonnement für {{.Name}} gekündigt. Sie können den Inhalt weiterhin ansehen, bis er abläuft {{.Expiry}}."
1109
1109
  },
1110
1110
  "wcag_skip_links_header": {
1111
1111
  "other": "Zugänglichkeitslinks"
@@ -1259,5 +1259,59 @@
1259
1259
  },
1260
1260
  "validation_terms_required": {
1261
1261
  "other": "Sie müssen den Nutzungsbedingungen zustimmen."
1262
+ },
1263
+ "usersubscriptions_page_header": {
1264
+ "other": "Abonnements und Abrechnung"
1265
+ },
1266
+ "usersubscriptions_page_content": {
1267
+ "other": " "
1268
+ },
1269
+ "usersubscriptions_payment_section_title": {
1270
+ "other": "Zahlungsmethode"
1271
+ },
1272
+ "usersubscriptions_payment_section_content": {
1273
+ "other": "Änderungen an Ihrer Kreditkartenzahlungsmethode werden in Ihrem nächsten Abrechnungszeitraum wirksam."
1274
+ },
1275
+ "usersubscriptions_subscriptions_section_title": {
1276
+ "other": "Abonnementdetails"
1277
+ },
1278
+ "usersubscriptions_subscriptions_section_content": {
1279
+ "other": " "
1280
+ },
1281
+ "usersubscriptions_subscription_status_active": {
1282
+ "other": "Aktiv"
1283
+ },
1284
+ "usersubscriptions_subscription_expired": {
1285
+ "other": "Abgelaufen"
1286
+ },
1287
+ "usersubscriptions_no_subscriptions_section_title": {
1288
+ "other": "Entdecken Sie Abonnements"
1289
+ },
1290
+ "usersubscriptions_no_subscriptions_content": {
1291
+ "other": "Entdecken Sie großartige Inhalte zu großartigen Preisen, die hier einfach verwaltet werden."
1292
+ },
1293
+ "usersubscriptions_no_subscriptions_button_title": {
1294
+ "other": "Entdecken Sie Abonnements"
1295
+ },
1296
+ "nav_subscriptions": {
1297
+ "other": "Meine Abonnements"
1298
+ },
1299
+ "usersubscriptions_subscription_expiry_trialing": {
1300
+ "other": "Erste Zahlung {{ .Expiry }}"
1301
+ },
1302
+ "usersubscriptions_subscription_expiry_active": {
1303
+ "other": "Nächste Zahlung {{ .Expiry }}"
1304
+ },
1305
+ "usersubscriptions_subscription_expiry_past_due": {
1306
+ "other": "Zahlung fällig {{ .Expiry }}"
1307
+ },
1308
+ "usersubscriptions_subscription_expiry_cancelled": {
1309
+ "other": "Endet {{ .Expiry }}"
1310
+ },
1311
+ "usersubscriptions_subscription_expiry_expired": {
1312
+ "other": "Beendet {{ .Expiry }}"
1313
+ },
1314
+ "sponsor_image_alt": {
1315
+ "other": "Sponsorenlogo"
1262
1316
  }
1263
- }
1317
+ }