@sveltia/cms 0.58.0 → 0.58.2
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/README.md +6 -6
- package/dist/sveltia-cms.js +73 -73
- package/dist/sveltia-cms.js.map +1 -1
- package/dist/sveltia-cms.mjs +66 -66
- package/dist/sveltia-cms.mjs.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -218,7 +218,7 @@ We hope Netlify/Decap CMS users will be pleased and surprised by the hundreds of
|
|
|
218
218
|
|
|
219
219
|
### Better i18n support
|
|
220
220
|
|
|
221
|
-
Sveltia CMS has been built with a multilingual architecture from the very beginning. You can expect best-in-class internationalization (i18n) support, as it’s required by clients of maintainer [@kyoshino](https://github.com/kyoshino), who himself was a long-time Japanese localizer for [Mozilla](https://www.mozilla.org/) and currently lives in
|
|
221
|
+
Sveltia CMS has been built with a multilingual architecture from the very beginning. You can expect best-in-class internationalization (i18n) support, as it’s required by clients of maintainer [@kyoshino](https://github.com/kyoshino), who himself was a long-time Japanese localizer for [Mozilla](https://www.mozilla.org/) and currently lives in the [most diverse city in the world](https://en.wikipedia.org/wiki/Toronto) where 150+ languages are spoken.
|
|
222
222
|
|
|
223
223
|
- Configuration
|
|
224
224
|
- The [i18n limitations](https://decapcms.org/docs/i18n/#limitations) in Netlify/Decap CMS do not apply to Sveltia CMS:
|
|
@@ -234,7 +234,7 @@ Sveltia CMS has been built with a multilingual architecture from the very beginn
|
|
|
234
234
|
- It’s possible to embed the locale code in an entry by using `widget: hidden` along with `default: '{{locale}}'`.[^101]
|
|
235
235
|
- User interface
|
|
236
236
|
- Eliminates UI confusion: The Preview pane can be displayed without toggling i18n in the Content Editor. Both panes are scrollable. There is no condition where both panes are edited in the same language at the same time.
|
|
237
|
-
- Users can easily switch between locales while editing by clicking a button instead of a dropdown list.
|
|
237
|
+
- Users can easily switch between locales while editing by clicking a button instead of a dropdown list when there are less than 5 locales.
|
|
238
238
|
- Language labels appear in human-readable display names instead of ISO 639 language codes because it’s not easy for everyone to recognize `DE` as German, `NL` as Dutch, `ZH` as Chinese, and so on.
|
|
239
239
|
- Content editing
|
|
240
240
|
- [Integrates DeepL](#using-deepl-to-translate-entry-fields) to allow translation of text fields from another locale with one click. More translation services will be added in the future.
|
|
@@ -399,7 +399,7 @@ Sveltia CMS has been built with a multilingual architecture from the very beginn
|
|
|
399
399
|
- When a YouTube video URL is entered in a String field, it appears as an embedded video in the Preview pane. Check your site’s [CSP](#setting-up-content-security-policy) if the preview doesn’t work.
|
|
400
400
|
- When a regular URL is entered in a String field, it appears as a link that can be opened in a new browser tab.
|
|
401
401
|
- Supports the `type` option that accepts `url` or `email` as a value, which will validate the value as a URL or email.
|
|
402
|
-
- Supports the `prefix` and `suffix` string options, which automatically prepend and/or append the developer-defined value to the user-input value.
|
|
402
|
+
- Supports the `prefix` and `suffix` string options, which automatically prepend and/or append the developer-defined value to the user-input value, if it’s not empty.
|
|
403
403
|
- Boolean, Number and String
|
|
404
404
|
- Supports the `before_input` and `after_input` string options, which allow developers to display custom labels before and/or after the input UI.[^28] Markdown is supported in the value.
|
|
405
405
|
- Compatibility note: In Static CMS, these options are implemented as `prefix` and `suffix`, respectively, which have different meaning in Sveltia CMS.
|
|
@@ -707,7 +707,7 @@ collections:
|
|
|
707
707
|
|
|
708
708
|
This is actually not new in Sveltia CMS but rather an undocumented feature in Netlify/Decap CMS.[^4] You can specify media and public folders for each collection that override the [global media folder](https://decapcms.org/docs/configuration-options/#media-and-public-folders). Well, it’s [documented](https://decapcms.org/docs/collection-folder/#media-and-public-folder), but that’s probably not what you want.
|
|
709
709
|
|
|
710
|
-
Rather, if you’d like to add all the media files for a collection in one single folder, specify both `media_folder` and `public_folder` instead of leaving them empty. The trick is to use
|
|
710
|
+
Rather, if you’d like to add all the media files for a collection in one single folder, specify both `media_folder` and `public_folder` instead of leaving them empty. The trick is to use a **project relative path** starting with a `/` for `media_folder` like the example below. You can try this with Netlify/Decap CMS first if you prefer.
|
|
711
711
|
|
|
712
712
|
```diff
|
|
713
713
|
media_folder: static/media
|
|
@@ -845,9 +845,9 @@ i18n:
|
|
|
845
845
|
save_all_locales: false # default: true
|
|
846
846
|
```
|
|
847
847
|
|
|
848
|
-
Alternatively, developers can specify locales to be enabled by default when users create a new entry draft, using the new `initial_locales` option, which accepts a locale list, `default` (default locale only) or `all` (all locales). When this option is used, `save_all_locales`
|
|
848
|
+
Alternatively, developers can specify locales to be enabled by default when users create a new entry draft, using the new `initial_locales` option, which accepts a locale list, `default` (default locale only) or `all` (all locales). The default locale is always enabled, even if it’s excluded from `initial_locales`. When this option is used, `save_all_locales` is deemed `false`.
|
|
849
849
|
|
|
850
|
-
The following example disables German by default, but users can manually enable
|
|
850
|
+
The following example disables German by default, but users can manually enable it if needed. Users can also disable French, which is enabled by default.
|
|
851
851
|
|
|
852
852
|
```yaml
|
|
853
853
|
i18n:
|