decidim 0.31.4 → 0.31.6
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.
- checksums.yaml +4 -4
- data/docs/modules/configure/pages/environment_variables.adoc +2 -2
- data/docs/modules/configure/pages/system.adoc +1 -1
- data/docs/modules/install/pages/manual.adoc +3 -3
- data/docs/modules/services/pages/index.adoc +1 -0
- data/lib/decidim/version.rb +1 -1
- data/package-lock.json +455 -278
- data/packages/browserslist-config/package.json +1 -1
- data/packages/core/package.json +2 -1
- data/packages/dev/package.json +1 -1
- data/packages/eslint-config/index.js +11 -3
- data/packages/eslint-config/package.json +1 -1
- data/packages/prettier-config/package.json +1 -1
- data/packages/stylelint-config/package.json +1 -1
- data/packages/webpacker/package.json +2 -2
- metadata +41 -41
- /data/docs/modules/services/pages/{machine_translation.adoc → machine_translations.adoc} +0 -0
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 2ed96b651953da062775045e0dfb4938e462ea09d9f3c21670c0bba7ce3d11d5
|
|
4
|
+
data.tar.gz: 4bc5f8c2a32ff07c7e3bf94efa04532c727c77282b8df924843da2be2955de24
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f0622fc2bdebc211047b3d1d81aea4d6f85a24271d725dd5ad1cfa8e609bd06e5f406671aa1875d0024c4afe53e24be4c27df0bf4c8d34ed36779306b32d0a32
|
|
7
|
+
data.tar.gz: 0411c210f71f8514eac81fab6b3f8c2c253351bedde9dbc152b5932d16d929cb1e5c9111b9ce0d53ab2532a8e4c0fbbad1db95ecc267f978b493748f7f1e9f45
|
|
@@ -690,13 +690,13 @@ A content processor is a concept to refer to a set of two classes:
|
|
|
690
690
|
|
|
691
691
|
|*DECIDIM_ENABLE_MACHINE_TRANSLATION*
|
|
692
692
|
| Whether the Decidim attempt to automatically translate missing translations.
|
|
693
|
-
Read more about this at xref:services:
|
|
693
|
+
Read more about this at xref:services:machine_translations.adoc[Machine Translations] service page.
|
|
694
694
|
| false
|
|
695
695
|
| No
|
|
696
696
|
|
|
697
697
|
|*DECIDIM_MACHINE_TRANSLATION_SERVICE*
|
|
698
698
|
| The name of the class to translate user content.
|
|
699
|
-
Read more about this at xref:services:
|
|
699
|
+
Read more about this at xref:services:machine_translations.adoc[Machine Translations] service page.
|
|
700
700
|
| nil
|
|
701
701
|
| No
|
|
702
702
|
|
|
@@ -127,7 +127,7 @@ in multi tenant mode. To learn more, check this https://developer.mozilla.org/en
|
|
|
127
127
|
==== Allow participants to register and login
|
|
128
128
|
|
|
129
129
|
Most of the installations use this setting. Means that everyone can register a participant account and login, without restrictions, only with an email account confirmation.
|
|
130
|
-
You can disable that confirmation also if you want to through xref:configure:environment_variables.adoc
|
|
130
|
+
You can disable that confirmation also if you want to through xref:configure:environment_variables.adoc[Decidim's environment variables], although we do not recommend doing that,
|
|
131
131
|
as it is a measure for stopping spam accounts. For additional details, read about `DECIDIM_UNCONFIRMED_ACCESS_FOR` environment variable.
|
|
132
132
|
|
|
133
133
|
==== Do not allow participants to register, but allow existing participants to login
|
|
@@ -4,7 +4,7 @@ In order to develop on decidim, you will need:
|
|
|
4
4
|
|
|
5
5
|
* *Git* 2.34+
|
|
6
6
|
* *PostgreSQL* 17.4+
|
|
7
|
-
* *Ruby* 3.3.
|
|
7
|
+
* *Ruby* 3.3.4
|
|
8
8
|
* *NodeJS* 22.14.x
|
|
9
9
|
* *Npm* 10.9.x
|
|
10
10
|
* *ImageMagick*
|
|
@@ -33,8 +33,8 @@ echo 'export PATH="$HOME/.rbenv/bin:$PATH"' >> ~/.bashrc
|
|
|
33
33
|
echo 'eval "$(rbenv init -)"' >> ~/.bashrc
|
|
34
34
|
source ~/.bashrc
|
|
35
35
|
git clone https://github.com/rbenv/ruby-build.git ~/.rbenv/plugins/ruby-build
|
|
36
|
-
rbenv install 3.3.
|
|
37
|
-
rbenv global 3.3.
|
|
36
|
+
rbenv install 3.3.4
|
|
37
|
+
rbenv global 3.3.4
|
|
38
38
|
----
|
|
39
39
|
|
|
40
40
|
== 2. Installing PostgreSQL
|
|
@@ -6,6 +6,7 @@ There are multiple services that can be enabled in a Decidim installation. It is
|
|
|
6
6
|
* xref:services:activestorage.adoc[Active Storage]
|
|
7
7
|
* xref:services:aitools.adoc[AI tools]
|
|
8
8
|
* xref:services:etherpad.adoc[Etherpad]
|
|
9
|
+
* xref:services:machine_translations.adoc[Machine Translations]
|
|
9
10
|
* xref:services:maps.adoc[Maps]
|
|
10
11
|
* xref:services:sms.adoc[SMS]
|
|
11
12
|
* xref:services:smtp.adoc[SMTP]
|