apostrophe 3.63.2 → 3.63.3

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 CHANGED
@@ -1,5 +1,18 @@
1
1
  # Changelog
2
2
 
3
+ ## 3.63.3 (2024-03-14)
4
+
5
+ ### Adds
6
+
7
+ * Add translation keys used by the multisite assembly module. This was released ahead of
8
+ our regular schedule because the multisite module was released early with the expectation
9
+ that these keys would be present.
10
+
11
+ ### Fixes
12
+
13
+ * `field.help` and `field.htmlHelp` are now correctly translated when displayed in a tooltip.
14
+ This was also an expectation for the multisite module.
15
+
3
16
  ## 3.63.2 (2024-03-01)
4
17
 
5
18
  ### Security
package/defaults.js CHANGED
@@ -4,6 +4,7 @@ module.exports = {
4
4
  '@apostrophecms/error': {},
5
5
  '@apostrophecms/util': {},
6
6
  '@apostrophecms/i18n': {},
7
+ '@apostrophecms/multisite-i18n': {},
7
8
  '@apostrophecms/task': {},
8
9
  '@apostrophecms/schema': {},
9
10
  '@apostrophecms/uploadfs': {},
@@ -0,0 +1,48 @@
1
+ {
2
+ "shortName": "Short Name",
3
+ "shortNameHelp": "If the short name is \"niftypig\", then the temporary hostname of the site will be \"niftypig.{{ baseDomain }}\".",
4
+ "prodHostname": "Production Hostname",
5
+ "prodHostnameHelp": "We will also automatically add \"www.\" as an alternate. The final name of the site. Do not add unless the DNS is being changed or has been changed to point to this service",
6
+ "canonicalize": "Redirect to Production Hostname",
7
+ "canonicalizeHelp": "Do not activate this until you see that both DNS and HTTPS are working for the production hostname.",
8
+ "canonicalizeStatus": "Canonical Redirect Status Code",
9
+ "canonicalizeStatusHelp": "\"Moved Permanently\" is best for SEO, but you should make sure you are happy with the results using \"Moved Temporarily\" first to avoid caching of bad redirects.",
10
+ "hostnamesArray": "Hostnames",
11
+ "hostnamesArrayHelp": "All valid hostnames for the site must be on this list, for instance both example.com and www.example.com",
12
+ "devBaseUrl": "Development Base URL",
13
+ "devBaseUrlHelp": "like http://localhost:3000",
14
+ "stagingBaseUrl": "Staging Base URL",
15
+ "stagingBaseUrlHelp": "like http://project.staging.org",
16
+ "prodBaseUrl": "Production Base URL",
17
+ "prodBaseUrlHelp": "like https://myproject.com",
18
+ "localeName": "Name",
19
+ "localeNameHelp": "Like en or en-GB. NOTE: the name may be changed but renaming a locale can be a slow operation. Consider changing just the label, prefix and hostname.",
20
+ "localeLabel": "Label",
21
+ "localeLabelHelp": "Like British English",
22
+ "localePrefix": "Prefix",
23
+ "localePrefixHelp": "Like /en",
24
+ "localeSeparateHost": "Separate Host",
25
+ "localeSeparateHostHelp": "This locale requires a separate hostname, e.g. fr.example.com in staging or example.fr in production.",
26
+ "localeStagingSubdomain": "Staging Subdomain",
27
+ "localeStagingSubdomainHelp": "Custom subdomain used in staging. Multiple locales can be configured with the same subdomain in order to group them on it, for instance \"canada.example.com/en\" and \"canada.example.com/fr\". Note that all but one locale must have a prefix for distinction. If left blank, the locale name will be used as the subdomain, outside of production.",
28
+ "localeSeparateProductionHostname": "Separate Production Hostname",
29
+ "localeSeparateProductionHostnameHelp": "Like example.fr. If not set, defaults to LOCALE.SHORTNAME.{{ baseDomain }}, e.g. fr.somesite.{{ baseDomain }}.",
30
+ "localePrivate": "Private locale",
31
+ "localePrivateHelp": "This locale is private",
32
+ "adminPassword": "Admin Password",
33
+ "adminPasswordHelp": "Set password for the \"admin\" user of the new site. For pre-existing sites, leave blank for no change.",
34
+ "redirect": "Redirect Entire Site",
35
+ "redirectHelp": "Redirect all traffic for the site to another URL.",
36
+ "redirectUrl": "Redirect To...",
37
+ "redirectUrlHelp": "Redirect traffic to this URL.",
38
+ "redirectPreservePath": "Preserve the Path when Redirecting",
39
+ "redirectPreservePathHelp": "If the URL ends with /something, add /something to the redirect URL as well. Otherwise, all traffic is redirected to a single place.",
40
+ "redirectStatus": "Redirect Status Code",
41
+ "redirectStatusHelp": "\"Moved Permanently\" is best for SEO, but you should test thoroughly first with \"Moved Temporarily\" to avoid caching of bad redirects.",
42
+ "emptyAdminPasswordError": "You must fill out the admin password field.",
43
+ "shortnameError": "The short name of the site must not contain dots, a protocol or spaces. It is a short name like \"nifty\" (without quotes) and will be used as a \"working name\" for a temporary subdomain for your site until it is launched.",
44
+ "shortnameInUseError": "That short name is already in use by another site.",
45
+ "productionHostnameInUseError": "That Production Hostname is already in use by another site.",
46
+ "renamingLocale": "Renaming locale {{ oldName }} to {{ newName }} in site {{ siteName }}, access to the site is paused, this may take time",
47
+ "localeRenamed": "Locale renamed"
48
+ }
@@ -0,0 +1,7 @@
1
+ module.exports = {
2
+ i18n: {
3
+ aposMultisite: {
4
+ browser: true
5
+ }
6
+ }
7
+ };
@@ -38,7 +38,7 @@
38
38
  <AposIndicator
39
39
  icon="help-circle-icon"
40
40
  class="apos-field__help-tooltip__icon"
41
- :tooltip="field.help || field.htmlHelp"
41
+ :tooltip="$t(field.help || field.htmlHelp)"
42
42
  :icon-size="11"
43
43
  icon-color="var(--a-base-4)"
44
44
  />
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "apostrophe",
3
- "version": "3.63.2",
3
+ "version": "3.63.3",
4
4
  "description": "The Apostrophe Content Management System.",
5
5
  "main": "index.js",
6
6
  "scripts": {