diff --git a/templates/web/prod/WorkZone/Browser/Results.html.twig b/templates/web/prod/WorkZone/Browser/Results.html.twig
index 9ac3a5fa06..ee9f1f5d18 100644
--- a/templates/web/prod/WorkZone/Browser/Results.html.twig
+++ b/templates/web/prod/WorkZone/Browser/Results.html.twig
@@ -40,8 +40,8 @@
{% endif %}
-
- {{ Basket.getName() }}
+
+ {{ Basket.getName()|length > 80 ? Basket.getName()|slice(0, 77) ~ '...' : Basket.getName() }}
{{ Basket.getElements().count() }} {{ ' records' }}
diff --git a/yarn.lock b/yarn.lock
index f641a68101..7050a03240 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -7578,10 +7578,10 @@ phraseanet-common@^0.4.5-d:
js-cookie "^2.1.0"
pym.js "^1.3.1"
-phraseanet-production-client@0.34.214-d:
- version "0.34.214-d"
- resolved "https://registry.yarnpkg.com/phraseanet-production-client/-/phraseanet-production-client-0.34.214-d.tgz#55675c3925c81626ddd8b9498e02c9d106a51d93"
- integrity sha512-RXg7KMgpPtv4rR3c2tCNMr7RgneAZjvBbFyGVx+a42nPkkZMnulweDm1R2o5d/eOcW6uJWPWczSmCCS0GqNnVQ==
+phraseanet-production-client@0.34.218-d:
+ version "0.34.218-d"
+ resolved "https://registry.yarnpkg.com/phraseanet-production-client/-/phraseanet-production-client-0.34.218-d.tgz#6a5c1686a3c2bf5e334adb962fdd529c9bd59bae"
+ integrity sha512-rU5a/7fqhA8CIcWUicBAhRIO8Ga50V6PRiOnPMXnCxZfQWccG/sFbLSbvA2Sa+58eNSRhf7Z2QNu+S90KgoW1g==
dependencies:
"@mapbox/mapbox-gl-language" "^0.9.2"
"@turf/turf" "^5.1.6"
From 659cb69c70ca08e645be21fed06cdf7716c2d917 Mon Sep 17 00:00:00 2001
From: Harrys Ravalomanana
Date: Fri, 5 Jun 2020 15:19:01 +0400
Subject: [PATCH 019/165] PHRAS-3125 upgrade phraseanet-production-client
---
package.json | 2 +-
yarn.lock | 8 ++++----
2 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/package.json b/package.json
index 76aa058cd1..20d2c861a9 100644
--- a/package.json
+++ b/package.json
@@ -65,7 +65,7 @@
"normalize-css": "^2.1.0",
"npm": "^6.0.0",
"npm-modernizr": "^2.8.3",
- "phraseanet-production-client": "0.34.218-d",
+ "phraseanet-production-client": "0.34.219-d",
"requirejs": "^2.3.5",
"tinymce": "^4.0.28",
"underscore": "^1.8.3",
diff --git a/yarn.lock b/yarn.lock
index 7050a03240..2940fd971a 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -7578,10 +7578,10 @@ phraseanet-common@^0.4.5-d:
js-cookie "^2.1.0"
pym.js "^1.3.1"
-phraseanet-production-client@0.34.218-d:
- version "0.34.218-d"
- resolved "https://registry.yarnpkg.com/phraseanet-production-client/-/phraseanet-production-client-0.34.218-d.tgz#6a5c1686a3c2bf5e334adb962fdd529c9bd59bae"
- integrity sha512-rU5a/7fqhA8CIcWUicBAhRIO8Ga50V6PRiOnPMXnCxZfQWccG/sFbLSbvA2Sa+58eNSRhf7Z2QNu+S90KgoW1g==
+phraseanet-production-client@0.34.219-d:
+ version "0.34.219-d"
+ resolved "https://registry.yarnpkg.com/phraseanet-production-client/-/phraseanet-production-client-0.34.219-d.tgz#9bd118d0588af0ca58b60ef6b8f2514b6a9ffe63"
+ integrity sha512-QHLsPBRjtE4wSH5jib6gN71U70lAtoloM5E+NfmFKHLBMv0B8xqcxJKVW7EbRX4DZTpsLCu5tuZ7vzd5PpbkOg==
dependencies:
"@mapbox/mapbox-gl-language" "^0.9.2"
"@turf/turf" "^5.1.6"
From 6cbcf8842d954b86c218310dd2319255b71cf8ab Mon Sep 17 00:00:00 2001
From: Harrys Ravalomanana
Date: Fri, 5 Jun 2020 16:28:03 +0400
Subject: [PATCH 020/165] PHRAS-2773 Add notification on mail sending
---
package.json | 2 +-
templates/web/prod/index.html.twig | 1 +
yarn.lock | 8 ++++----
3 files changed, 6 insertions(+), 5 deletions(-)
diff --git a/package.json b/package.json
index 9182e782d4..758af630cc 100644
--- a/package.json
+++ b/package.json
@@ -65,7 +65,7 @@
"normalize-css": "^2.1.0",
"npm": "^6.0.0",
"npm-modernizr": "^2.8.3",
- "phraseanet-production-client": "0.34.216-d",
+ "phraseanet-production-client": "0.34.220-d",
"requirejs": "^2.3.5",
"tinymce": "^4.0.28",
"underscore": "^1.8.3",
diff --git a/templates/web/prod/index.html.twig b/templates/web/prod/index.html.twig
index b307dd2f20..b1c8059f56 100644
--- a/templates/web/prod/index.html.twig
+++ b/templates/web/prod/index.html.twig
@@ -1015,6 +1015,7 @@
+
+{% endif %}
From bbde0c4cceae1de60d47f6a984485a0b7136afa5 Mon Sep 17 00:00:00 2001
From: nmaillat
Date: Wed, 10 Jun 2020 13:45:41 +0200
Subject: [PATCH 040/165] test if PHRASEANET_SMTP_ENABLED var is set
---
docker/phraseanet/entrypoint.sh | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/docker/phraseanet/entrypoint.sh b/docker/phraseanet/entrypoint.sh
index a0dabfc5fc..b975af2ca2 100755
--- a/docker/phraseanet/entrypoint.sh
+++ b/docker/phraseanet/entrypoint.sh
@@ -20,7 +20,7 @@ FILE=config/configuration.yml
if [ -f "$FILE" ]; then
echo "$FILE exists, skip setup."
bin/setup system:config set registry.general.title $PHRASEANET_PROJECT_NAME
- if [[ $PHRASEANET_SMTP_ENABLED=true ]]; then
+ if [[ $PHRASEANET_SMTP_ENABLED && $PHRASEANET_SMTP_ENABLED=true ]]; then
bin/setup system:config set registry.email.smtp-enabled $PHRASEANET_SMTP_ENABLED
bin/setup system:config set registry.email.smtp-auth-enabled $PHRASEANET_SMTP_AUTH_ENABLED
bin/setup system:config set registry.email.smtp-auth-secure-mode $PHRASEANET_SMTP_SECURE_MODE
From 4d5247aa704b190db3bb5e238b7ca3b7cf86d0be Mon Sep 17 00:00:00 2001
From: nmaillat
Date: Wed, 10 Jun 2020 14:05:28 +0200
Subject: [PATCH 041/165] test if other env is set
---
docker/phraseanet/entrypoint.sh | 9 +++++++--
1 file changed, 7 insertions(+), 2 deletions(-)
diff --git a/docker/phraseanet/entrypoint.sh b/docker/phraseanet/entrypoint.sh
index b975af2ca2..1766b42251 100755
--- a/docker/phraseanet/entrypoint.sh
+++ b/docker/phraseanet/entrypoint.sh
@@ -19,7 +19,9 @@ FILE=config/configuration.yml
if [ -f "$FILE" ]; then
echo "$FILE exists, skip setup."
- bin/setup system:config set registry.general.title $PHRASEANET_PROJECT_NAME
+ if [[ $PHRASEANET_PROJECT_NAME ]]; then
+ bin/setup system:config set registry.general.title $PHRASEANET_PROJECT_NAME
+ fi
if [[ $PHRASEANET_SMTP_ENABLED && $PHRASEANET_SMTP_ENABLED=true ]]; then
bin/setup system:config set registry.email.smtp-enabled $PHRASEANET_SMTP_ENABLED
bin/setup system:config set registry.email.smtp-auth-enabled $PHRASEANET_SMTP_AUTH_ENABLED
@@ -31,7 +33,10 @@ if [ -f "$FILE" ]; then
bin/setup system:config set registry.email.emitter-email $PHRASEANET_EMITTER_EMAIL
bin/setup system:config set registry.email.prefix $PHRASEANET_MAIL_OBJECT_PREFIX
fi
- bin/console user:password --user_id=1 --password $PHRASEANET_ADMIN_ACCOUNT_PASSWORD -y
+ if [[ $PHRASEANET_ADMIN_ACCOUNT_PASSWORD ]]; then
+ bin/console user:password --user_id=1 --password $PHRASEANET_ADMIN_ACCOUNT_PASSWORD -y
+ fi
+
else
echo "$FILE doesn't exist, entering setup..."
runuser app -c docker/phraseanet/auto-install.sh
From 89c92fc91c88150aa72bf3c22fdb2ec653227058 Mon Sep 17 00:00:00 2001
From: aynsix
Date: Thu, 11 Jun 2020 10:03:05 +0300
Subject: [PATCH 042/165] change databox name on the first column
---
resources/locales/messages.de.xlf | 8 ++++----
resources/locales/messages.en.xlf | 8 ++++----
resources/locales/messages.fr.xlf | 8 ++++----
resources/locales/messages.nl.xlf | 8 ++++----
resources/locales/validators.de.xlf | 2 +-
resources/locales/validators.en.xlf | 2 +-
resources/locales/validators.fr.xlf | 2 +-
resources/locales/validators.nl.xlf | 2 +-
templates/web/admin/worker-manager/worker_info.html.twig | 4 ++--
9 files changed, 22 insertions(+), 22 deletions(-)
diff --git a/resources/locales/messages.de.xlf b/resources/locales/messages.de.xlf
index c72b82500a..9018efa5e4 100644
--- a/resources/locales/messages.de.xlf
+++ b/resources/locales/messages.de.xlf
@@ -1,6 +1,6 @@
-
+ The source node in most cases contains the sample message as written by the developer. If it looks like a dot-delimitted string such as "form.label.firstname", then the developer has not provided a default message.
@@ -9369,9 +9369,9 @@
Begonnenadmin/worker-manager/worker_info.html.twig
-
- admin::workermanager:tab:workerinfo: databox_id
- Databox ID
+
+ admin::workermanager:tab:workerinfo: databox_name
+ admin::workermanager:tab:workerinfo: databox_nameadmin/worker-manager/worker_info.html.twig
diff --git a/resources/locales/messages.en.xlf b/resources/locales/messages.en.xlf
index bf66b5e4ea..df2b54f9f3 100644
--- a/resources/locales/messages.en.xlf
+++ b/resources/locales/messages.en.xlf
@@ -1,6 +1,6 @@
-
+ The source node in most cases contains the sample message as written by the developer. If it looks like a dot-delimitted string such as "form.label.firstname", then the developer has not provided a default message.
@@ -9372,9 +9372,9 @@
Startedadmin/worker-manager/worker_info.html.twig
-
- admin::workermanager:tab:workerinfo: databox_id
- Database Id
+
+ admin::workermanager:tab:workerinfo: databox_name
+ admin::workermanager:tab:workerinfo: databox_nameadmin/worker-manager/worker_info.html.twig
diff --git a/resources/locales/messages.fr.xlf b/resources/locales/messages.fr.xlf
index 9f613494d4..ff0a18200b 100644
--- a/resources/locales/messages.fr.xlf
+++ b/resources/locales/messages.fr.xlf
@@ -1,6 +1,6 @@
-
+ The source node in most cases contains the sample message as written by the developer. If it looks like a dot-delimitted string such as "form.label.firstname", then the developer has not provided a default message.
@@ -9372,9 +9372,9 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le
Démarréadmin/worker-manager/worker_info.html.twig
-
- admin::workermanager:tab:workerinfo: databox_id
- Databox Id
+
+ admin::workermanager:tab:workerinfo: databox_name
+ admin::workermanager:tab:workerinfo: databox_nameadmin/worker-manager/worker_info.html.twig
diff --git a/resources/locales/messages.nl.xlf b/resources/locales/messages.nl.xlf
index d2702e8d0a..8d14ffc5be 100644
--- a/resources/locales/messages.nl.xlf
+++ b/resources/locales/messages.nl.xlf
@@ -1,6 +1,6 @@
-
+ The source node in most cases contains the sample message as written by the developer. If it looks like a dot-delimitted string such as "form.label.firstname", then the developer has not provided a default message.
@@ -9379,9 +9379,9 @@
admin::workermanager:tab:workerinfo: createdadmin/worker-manager/worker_info.html.twig
-
- admin::workermanager:tab:workerinfo: databox_id
- admin::workermanager:tab:workerinfo: databox_id
+
+ admin::workermanager:tab:workerinfo: databox_name
+ admin::workermanager:tab:workerinfo: databox_nameadmin/worker-manager/worker_info.html.twig
diff --git a/resources/locales/validators.de.xlf b/resources/locales/validators.de.xlf
index b5f7327d0c..df9ab69d0c 100644
--- a/resources/locales/validators.de.xlf
+++ b/resources/locales/validators.de.xlf
@@ -1,6 +1,6 @@
-
+ The source node in most cases contains the sample message as written by the developer. If it looks like a dot-delimitted string such as "form.label.firstname", then the developer has not provided a default message.
diff --git a/resources/locales/validators.en.xlf b/resources/locales/validators.en.xlf
index e0e2fd06e9..801a0d3826 100644
--- a/resources/locales/validators.en.xlf
+++ b/resources/locales/validators.en.xlf
@@ -1,6 +1,6 @@
-
+ The source node in most cases contains the sample message as written by the developer. If it looks like a dot-delimitted string such as "form.label.firstname", then the developer has not provided a default message.
diff --git a/resources/locales/validators.fr.xlf b/resources/locales/validators.fr.xlf
index 238e9fe21c..9d6b60b7cc 100644
--- a/resources/locales/validators.fr.xlf
+++ b/resources/locales/validators.fr.xlf
@@ -1,6 +1,6 @@
-
+ The source node in most cases contains the sample message as written by the developer. If it looks like a dot-delimitted string such as "form.label.firstname", then the developer has not provided a default message.
diff --git a/resources/locales/validators.nl.xlf b/resources/locales/validators.nl.xlf
index f9db752335..aad0ae8884 100644
--- a/resources/locales/validators.nl.xlf
+++ b/resources/locales/validators.nl.xlf
@@ -1,6 +1,6 @@
-
+ The source node in most cases contains the sample message as written by the developer. If it looks like a dot-delimitted string such as "form.label.firstname", then the developer has not provided a default message.
diff --git a/templates/web/admin/worker-manager/worker_info.html.twig b/templates/web/admin/worker-manager/worker_info.html.twig
index d5b089e449..d516f6bacb 100644
--- a/templates/web/admin/worker-manager/worker_info.html.twig
+++ b/templates/web/admin/worker-manager/worker_info.html.twig
@@ -42,7 +42,7 @@
-
{{ 'admin::workermanager:tab:workerinfo: databox_id' | trans }}
+
{{ 'admin::workermanager:tab:workerinfo: databox_name' | trans }}
{{ 'admin::workermanager:tab:workerinfo: record_id' | trans }}
{{ 'admin::workermanager:tab:workerinfo: work' | trans }}
{{ 'admin::workermanager:tab:workerinfo: work_on' | trans }}
@@ -57,7 +57,7 @@
{% for workerRow in workerRunningJob | sort | reverse %}
-
{{ workerRow.databoxId }}
+
{{ workerRow.databoxId | sbas_labels(app) }}
{{ workerRow.recordId }}
{{ workerRow.getWorkName }}
{{ workerRow.workOn }}
From 0f9a37f44c69f96d0c79c010bed24ec5e5211e5b Mon Sep 17 00:00:00 2001
From: aynsix
Date: Thu, 11 Jun 2020 15:28:49 +0300
Subject: [PATCH 043/165] help menu to doc 4.1
---
templates/web/common/menubar.html.twig | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/templates/web/common/menubar.html.twig b/templates/web/common/menubar.html.twig
index 80443dd6b3..9d1b829c4c 100644
--- a/templates/web/common/menubar.html.twig
+++ b/templates/web/common/menubar.html.twig
@@ -232,7 +232,7 @@
{% endif %}
- {{ 'thesaurus:: comme terme specifique' | trans }}
+ {{ 'thesaurus:: comme terme specifique' | trans }}
-
+
{% set fullpath_tgt_raw = fullpath_tgt | raw %}
{% trans with {'%fullpath_tgt_raw%' : fullpath_tgt_raw} %}thesaurus:: comme synonyme de %fullpath_tgt_raw%{% endtrans %}
@@ -155,7 +156,7 @@
{{ 'thesaurus:: Accepter la branche comme' | trans }}
{{ 'thesaurus:: comme terme specifique' | trans }}
@@ -223,7 +223,7 @@
sy_list = ret.getElementsByTagName("sy_list").item(0);
//refresh_sy(sy_list);
- /* refresh = ret.getElementsByTagName("refresh");
+ refresh = ret.getElementsByTagName("refresh");
for(i=0; i
Date: Wed, 1 Jul 2020 17:46:15 +0400
Subject: [PATCH 110/165] PHRAS-3148 : add string
---
resources/locales/messages.de.xlf | 62 ++++++++++++-----------
resources/locales/messages.en.xlf | 76 +++++++++++++++--------------
resources/locales/messages.fr.xlf | 72 ++++++++++++++-------------
resources/locales/messages.nl.xlf | 62 ++++++++++++-----------
resources/locales/validators.de.xlf | 2 +-
resources/locales/validators.en.xlf | 2 +-
resources/locales/validators.fr.xlf | 2 +-
resources/locales/validators.nl.xlf | 2 +-
8 files changed, 148 insertions(+), 132 deletions(-)
diff --git a/resources/locales/messages.de.xlf b/resources/locales/messages.de.xlf
index 3ac74c93c3..21e1de7a8b 100644
--- a/resources/locales/messages.de.xlf
+++ b/resources/locales/messages.de.xlf
@@ -1,6 +1,6 @@
-
+ The source node in most cases contains the sample message as written by the developer. If it looks like a dot-delimitted string such as "form.label.firstname", then the developer has not provided a default message.
@@ -9535,9 +9535,9 @@
web/thesaurus/new-term.html.twigweb/thesaurus/new-term.html.twigweb/thesaurus/thesaurus.html.twig
- web/thesaurus/thesaurus.html.twig
- web/thesaurus/thesaurus.html.twig
- web/thesaurus/thesaurus.html.twig
+ web/thesaurus/thesaurus.html.twig
+ web/thesaurus/thesaurus.html.twig
+ web/thesaurus/thesaurus.html.twigweb/thesaurus/link-field-step2.html.twigweb/common/dialog_export.html.twigweb/common/dialog_export.html.twig
@@ -9565,8 +9565,8 @@
boutton::cherchersuchen
- web/thesaurus/thesaurus.html.twig
- web/thesaurus/thesaurus.html.twig
+ web/thesaurus/thesaurus.html.twig
+ web/thesaurus/thesaurus.html.twigweb/prod/index.html.twigweb/admin/users.html.twig
@@ -9806,7 +9806,7 @@
web/thesaurus/new-term.html.twigweb/thesaurus/new-term.html.twigweb/thesaurus/thesaurus.html.twig
- web/thesaurus/thesaurus.html.twig
+ web/thesaurus/thesaurus.html.twigweb/thesaurus/index.html.twigweb/thesaurus/link-field-step2.html.twigweb/account/access.html.twig
@@ -13388,7 +13388,7 @@ Vorsicht: die aktuelle Werte werden durch die neue Werte überschrieben
thesaurus: Populate titlethesaurus: Populate title
- web/thesaurus/thesaurus.html.twig
+ web/thesaurus/thesaurus.html.twigthesaurus:: %hits% reponses retournees
@@ -13429,7 +13429,7 @@ Vorsicht: die aktuelle Werte werden durch die neue Werte überschrieben
thesaurus:: ImporterImportierenweb/thesaurus/import-dialog.html.twig
- web/thesaurus/thesaurus.html.twig
+ web/thesaurus/thesaurus.html.twigthesaurus:: Lier la branche de thesaurus
@@ -13441,7 +13441,7 @@ Vorsicht: die aktuelle Werte werden durch die neue Werte überschrieben
thesaurus:: Lier la branche de thesaurus au champDie Verzweigung mit dem Feld %s verbindenweb/thesaurus/link-field-step1.html.twig
- web/thesaurus/thesaurus.html.twig
+ web/thesaurus/thesaurus.html.twigthesaurus:: Lier la branche de thesaurus au champ %branch%
@@ -13452,31 +13452,31 @@ Vorsicht: die aktuelle Werte werden durch die neue Werte überschrieben
thesaurus:: Nouveau synonymeNeuer Synonymweb/thesaurus/new-term.html.twig
- web/thesaurus/thesaurus.html.twig
- web/thesaurus/thesaurus.html.twig
+ web/thesaurus/thesaurus.html.twig
+ web/thesaurus/thesaurus.html.twigthesaurus:: Nouveau termeNeuer Begriff
- web/thesaurus/thesaurus.html.twig
+ web/thesaurus/thesaurus.html.twigthesaurus:: Nouveau terme specifiqueNeuer bestimmte Begriffweb/thesaurus/new-term.html.twig
- web/thesaurus/thesaurus.html.twig
+ web/thesaurus/thesaurus.html.twigthesaurus:: ProprietesEigenschaften
- web/thesaurus/thesaurus.html.twig
- web/thesaurus/thesaurus.html.twig
- web/thesaurus/thesaurus.html.twig
+ web/thesaurus/thesaurus.html.twig
+ web/thesaurus/thesaurus.html.twig
+ web/thesaurus/thesaurus.html.twig
- web/thesaurus/thesaurus.html.twig
+ web/thesaurus/thesaurus.html.twigthesaurus:: Vous n'avez acces a aucune base
@@ -13487,7 +13487,7 @@ Vorsicht: die aktuelle Werte werden durch die neue Werte überschrieben
thesaurus:: accepter...Annehmenweb/thesaurus/accept.html.twig
- web/thesaurus/thesaurus.html.twig
+ web/thesaurus/thesaurus.html.twigthesaurus:: afficher les termes refuses
@@ -13545,7 +13545,7 @@ Vorsicht: die aktuelle Werte werden durch die neue Werte überschrieben
thesaurus:: deplacer le terme dans la corbeille ?Begriffe zum Stock verschieben
- web/thesaurus/thesaurus.html.twig
+ web/thesaurus/thesaurus.html.twigthesaurus:: enregistrement de la liste modifiee des mots candidats.
@@ -13603,14 +13603,14 @@ Vorsicht: die aktuelle Werte werden durch die neue Werte überschrieben
web/thesaurus/export-text-dialog.html.twigweb/thesaurus/export-text-dialog.html.twigweb/thesaurus/export-text.html.twig
- web/thesaurus/thesaurus.html.twig
+ web/thesaurus/thesaurus.html.twigthesaurus:: export en topicsThemenweb/thesaurus/export-topics.html.twigweb/thesaurus/export-topics-dialog.html.twig
- web/thesaurus/thesaurus.html.twig
+ web/thesaurus/thesaurus.html.twigthesaurus:: exporter
@@ -13807,7 +13807,7 @@ Vorsicht: die aktuelle Werte werden durch die neue Werte überschrieben
thesaurus:: synonymeSynonym
- web/thesaurus/thesaurus.html.twig
+ web/thesaurus/thesaurus.html.twigthesaurus:: synonymes
@@ -13817,7 +13817,7 @@ Vorsicht: die aktuelle Werte werden durch die neue Werte überschrieben
thesaurus:: termeBegriff
- web/thesaurus/thesaurus.html.twig
+ web/thesaurus/thesaurus.html.twigthesaurus:: tout deployer - refermable
@@ -13895,28 +13895,32 @@ Vorsicht: die aktuelle Werte werden durch die neue Werte überschrieben
thesaurus::menu: supprimerLöschen
- web/thesaurus/properties.html.twigweb/thesaurus/thesaurus.html.twigthesaurus::populate: Warning populate is in process to indexing databoxthesaurus::populate: Warning populate is in process to indexing databox
- web/thesaurus/thesaurus.html.twig
+ web/thesaurus/thesaurus.html.twigthesaurus::populate: success messagethesaurus::populate: success message
- web/thesaurus/thesaurus.html.twig
+ web/thesaurus/thesaurus.html.twigthesaurus:dialog:: exportthesaurus:dialog:: export
- web/thesaurus/thesaurus.html.twig
+ web/thesaurus/thesaurus.html.twigthesaurus:dialog:: propertiesthesaurus:dialog:: properties
- web/thesaurus/thesaurus.html.twig
+ web/thesaurus/thesaurus.html.twig
+
+
+ thesaurus:properties:: Mettre dans le stock
+ thesaurus:properties:: Mettre dans le stock
+ web/thesaurus/properties.html.twigthesaurus:termePorperties:termeId
diff --git a/resources/locales/messages.en.xlf b/resources/locales/messages.en.xlf
index fa96551c02..3a9abe6bb5 100644
--- a/resources/locales/messages.en.xlf
+++ b/resources/locales/messages.en.xlf
@@ -1,14 +1,14 @@
-
+
-
+ The source node in most cases contains the sample message as written by the developer. If it looks like a dot-delimitted string such as "form.label.firstname", then the developer has not provided a default message.
-
-
+
+ Form/Login/PhraseaAuthenticationForm.phpForm/Configuration/EmailFormType.php
@@ -9538,9 +9538,9 @@
web/thesaurus/new-term.html.twigweb/thesaurus/new-term.html.twigweb/thesaurus/thesaurus.html.twig
- web/thesaurus/thesaurus.html.twig
- web/thesaurus/thesaurus.html.twig
- web/thesaurus/thesaurus.html.twig
+ web/thesaurus/thesaurus.html.twig
+ web/thesaurus/thesaurus.html.twig
+ web/thesaurus/thesaurus.html.twigweb/thesaurus/link-field-step2.html.twigweb/common/dialog_export.html.twigweb/common/dialog_export.html.twig
@@ -9568,8 +9568,8 @@
boutton::chercherSearch
- web/thesaurus/thesaurus.html.twig
- web/thesaurus/thesaurus.html.twig
+ web/thesaurus/thesaurus.html.twig
+ web/thesaurus/thesaurus.html.twigweb/prod/index.html.twigweb/admin/users.html.twig
@@ -9809,7 +9809,7 @@
web/thesaurus/new-term.html.twigweb/thesaurus/new-term.html.twigweb/thesaurus/thesaurus.html.twig
- web/thesaurus/thesaurus.html.twig
+ web/thesaurus/thesaurus.html.twigweb/thesaurus/index.html.twigweb/thesaurus/link-field-step2.html.twigweb/account/access.html.twig
@@ -13396,7 +13396,7 @@ It is possible to place several search areas
thesaurus: Populate titleIndexing
- web/thesaurus/thesaurus.html.twig
+ web/thesaurus/thesaurus.html.twigthesaurus:: %hits% reponses retournees
@@ -13437,7 +13437,7 @@ It is possible to place several search areas
thesaurus:: ImporterImportweb/thesaurus/import-dialog.html.twig
- web/thesaurus/thesaurus.html.twig
+ web/thesaurus/thesaurus.html.twigthesaurus:: Lier la branche de thesaurus
@@ -13449,7 +13449,7 @@ It is possible to place several search areas
thesaurus:: Lier la branche de thesaurus au champLink thesaurus branch to fieldweb/thesaurus/link-field-step1.html.twig
- web/thesaurus/thesaurus.html.twig
+ web/thesaurus/thesaurus.html.twigthesaurus:: Lier la branche de thesaurus au champ %branch%
@@ -13460,31 +13460,31 @@ It is possible to place several search areas
thesaurus:: Nouveau synonymeNew Synonymweb/thesaurus/new-term.html.twig
- web/thesaurus/thesaurus.html.twig
- web/thesaurus/thesaurus.html.twig
+ web/thesaurus/thesaurus.html.twig
+ web/thesaurus/thesaurus.html.twigthesaurus:: Nouveau termeNew term
- web/thesaurus/thesaurus.html.twig
+ web/thesaurus/thesaurus.html.twigthesaurus:: Nouveau terme specifiqueNew specific termweb/thesaurus/new-term.html.twig
- web/thesaurus/thesaurus.html.twig
+ web/thesaurus/thesaurus.html.twigthesaurus:: ProprietesProperties
- web/thesaurus/thesaurus.html.twig
- web/thesaurus/thesaurus.html.twig
- web/thesaurus/thesaurus.html.twig
+ web/thesaurus/thesaurus.html.twig
+ web/thesaurus/thesaurus.html.twig
+ web/thesaurus/thesaurus.html.twig
- web/thesaurus/thesaurus.html.twig
+ web/thesaurus/thesaurus.html.twigthesaurus:: Vous n'avez acces a aucune base
@@ -13495,7 +13495,7 @@ It is possible to place several search areas
thesaurus:: accepter...Acceptweb/thesaurus/accept.html.twig
- web/thesaurus/thesaurus.html.twig
+ web/thesaurus/thesaurus.html.twigthesaurus:: afficher les termes refuses
@@ -13553,7 +13553,7 @@ It is possible to place several search areas
thesaurus:: deplacer le terme dans la corbeille ?Move Terms to stock
- web/thesaurus/thesaurus.html.twig
+ web/thesaurus/thesaurus.html.twigthesaurus:: enregistrement de la liste modifiee des mots candidats.
@@ -13611,14 +13611,14 @@ It is possible to place several search areas
web/thesaurus/export-text-dialog.html.twigweb/thesaurus/export-text-dialog.html.twigweb/thesaurus/export-text.html.twig
- web/thesaurus/thesaurus.html.twig
+ web/thesaurus/thesaurus.html.twigthesaurus:: export en topicsTopicsweb/thesaurus/export-topics.html.twigweb/thesaurus/export-topics-dialog.html.twig
- web/thesaurus/thesaurus.html.twig
+ web/thesaurus/thesaurus.html.twigthesaurus:: exporter
@@ -13715,7 +13715,7 @@ It is possible to place several search areas
No re-indexweb/thesaurus/link-field-step2.html.twig
-
+ thesaurus:: populate buttonIndexingweb/thesaurus/thesaurus.html.twig
@@ -13815,7 +13815,7 @@ It is possible to place several search areas
thesaurus:: synonymeSynonym
- web/thesaurus/thesaurus.html.twig
+ web/thesaurus/thesaurus.html.twigthesaurus:: synonymes
@@ -13825,7 +13825,7 @@ It is possible to place several search areas
thesaurus:: termeTerm
- web/thesaurus/thesaurus.html.twig
+ web/thesaurus/thesaurus.html.twigthesaurus:: tout deployer - refermable
@@ -13842,7 +13842,7 @@ It is possible to place several search areas
Close all (with navigation)web/thesaurus/export-topics-dialog.html.twig
-
+ thesaurus::menu: Mettre dans le stockMove to the stockweb/thesaurus/thesaurus.html.twig
@@ -13903,30 +13903,34 @@ It is possible to place several search areas
thesaurus::menu: supprimerDelete
- web/thesaurus/properties.html.twigweb/thesaurus/thesaurus.html.twigthesaurus::populate: Warning populate is in process to indexing databoxWarning populate is in process to indexing databox. Wait the end of this indexing, before launch a new one.
- web/thesaurus/thesaurus.html.twig
+ web/thesaurus/thesaurus.html.twigthesaurus::populate: success messagethesaurus::populate: success message
- web/thesaurus/thesaurus.html.twig
+ web/thesaurus/thesaurus.html.twig
-
+ thesaurus:dialog:: exportExport Candidats
- web/thesaurus/thesaurus.html.twig
+ web/thesaurus/thesaurus.html.twigthesaurus:dialog:: propertiesProperties
- web/thesaurus/thesaurus.html.twig
+ web/thesaurus/thesaurus.html.twig
-
+
+ thesaurus:properties:: Mettre dans le stock
+ thesaurus:properties:: Mettre dans le stock
+ web/thesaurus/properties.html.twig
+
+ thesaurus:termePorperties:termeIdIdweb/thesaurus/properties.html.twig
diff --git a/resources/locales/messages.fr.xlf b/resources/locales/messages.fr.xlf
index 6604467592..6558965f96 100644
--- a/resources/locales/messages.fr.xlf
+++ b/resources/locales/messages.fr.xlf
@@ -1,14 +1,14 @@
-
+
-
+ The source node in most cases contains the sample message as written by the developer. If it looks like a dot-delimitted string such as "form.label.firstname", then the developer has not provided a default message.
-
-
+
+ Form/Login/PhraseaAuthenticationForm.phpForm/Configuration/EmailFormType.php
@@ -9538,9 +9538,9 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le
web/thesaurus/new-term.html.twigweb/thesaurus/new-term.html.twigweb/thesaurus/thesaurus.html.twig
- web/thesaurus/thesaurus.html.twig
- web/thesaurus/thesaurus.html.twig
- web/thesaurus/thesaurus.html.twig
+ web/thesaurus/thesaurus.html.twig
+ web/thesaurus/thesaurus.html.twig
+ web/thesaurus/thesaurus.html.twigweb/thesaurus/link-field-step2.html.twigweb/common/dialog_export.html.twigweb/common/dialog_export.html.twig
@@ -9568,8 +9568,8 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le
boutton::chercherChercher
- web/thesaurus/thesaurus.html.twig
- web/thesaurus/thesaurus.html.twig
+ web/thesaurus/thesaurus.html.twig
+ web/thesaurus/thesaurus.html.twigweb/prod/index.html.twigweb/admin/users.html.twig
@@ -9809,7 +9809,7 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le
web/thesaurus/new-term.html.twigweb/thesaurus/new-term.html.twigweb/thesaurus/thesaurus.html.twig
- web/thesaurus/thesaurus.html.twig
+ web/thesaurus/thesaurus.html.twigweb/thesaurus/index.html.twigweb/thesaurus/link-field-step2.html.twigweb/account/access.html.twig
@@ -13399,7 +13399,7 @@ Attention: les valeurs actuellement en place seront écrasées par ces nouvelles
thesaurus: Populate titleIndéxation
- web/thesaurus/thesaurus.html.twig
+ web/thesaurus/thesaurus.html.twigthesaurus:: %hits% reponses retournees
@@ -13440,7 +13440,7 @@ Attention: les valeurs actuellement en place seront écrasées par ces nouvelles
thesaurus:: ImporterImporterweb/thesaurus/import-dialog.html.twig
- web/thesaurus/thesaurus.html.twig
+ web/thesaurus/thesaurus.html.twigthesaurus:: Lier la branche de thesaurus
@@ -13452,7 +13452,7 @@ Attention: les valeurs actuellement en place seront écrasées par ces nouvelles
thesaurus:: Lier la branche de thesaurus au champLier la branche de thesaurus au champweb/thesaurus/link-field-step1.html.twig
- web/thesaurus/thesaurus.html.twig
+ web/thesaurus/thesaurus.html.twigthesaurus:: Lier la branche de thesaurus au champ %branch%
@@ -13463,31 +13463,31 @@ Attention: les valeurs actuellement en place seront écrasées par ces nouvelles
thesaurus:: Nouveau synonymeNouveau synonymeweb/thesaurus/new-term.html.twig
- web/thesaurus/thesaurus.html.twig
- web/thesaurus/thesaurus.html.twig
+ web/thesaurus/thesaurus.html.twig
+ web/thesaurus/thesaurus.html.twigthesaurus:: Nouveau termeNouveau terme
- web/thesaurus/thesaurus.html.twig
+ web/thesaurus/thesaurus.html.twigthesaurus:: Nouveau terme specifiqueNouveau terme spécifiqueweb/thesaurus/new-term.html.twig
- web/thesaurus/thesaurus.html.twig
+ web/thesaurus/thesaurus.html.twigthesaurus:: ProprietesPropriétés
- web/thesaurus/thesaurus.html.twig
- web/thesaurus/thesaurus.html.twig
- web/thesaurus/thesaurus.html.twig
+ web/thesaurus/thesaurus.html.twig
+ web/thesaurus/thesaurus.html.twig
+ web/thesaurus/thesaurus.html.twig
- web/thesaurus/thesaurus.html.twig
+ web/thesaurus/thesaurus.html.twigthesaurus:: Vous n'avez acces a aucune base
@@ -13498,7 +13498,7 @@ Attention: les valeurs actuellement en place seront écrasées par ces nouvelles
thesaurus:: accepter...Accepterweb/thesaurus/accept.html.twig
- web/thesaurus/thesaurus.html.twig
+ web/thesaurus/thesaurus.html.twigthesaurus:: afficher les termes refuses
@@ -13556,7 +13556,7 @@ Attention: les valeurs actuellement en place seront écrasées par ces nouvelles
thesaurus:: deplacer le terme dans la corbeille ?Déplacer le terme dans le stock ?
- web/thesaurus/thesaurus.html.twig
+ web/thesaurus/thesaurus.html.twigthesaurus:: enregistrement de la liste modifiee des mots candidats.
@@ -13614,14 +13614,14 @@ Attention: les valeurs actuellement en place seront écrasées par ces nouvelles
web/thesaurus/export-text-dialog.html.twigweb/thesaurus/export-text-dialog.html.twigweb/thesaurus/export-text.html.twig
- web/thesaurus/thesaurus.html.twig
+ web/thesaurus/thesaurus.html.twigthesaurus:: export en topicsThèmesweb/thesaurus/export-topics.html.twigweb/thesaurus/export-topics-dialog.html.twig
- web/thesaurus/thesaurus.html.twig
+ web/thesaurus/thesaurus.html.twigthesaurus:: exporter
@@ -13718,7 +13718,7 @@ Attention: les valeurs actuellement en place seront écrasées par ces nouvelles
Pas de ré-indexationweb/thesaurus/link-field-step2.html.twig
-
+ thesaurus:: populate buttonIndexationweb/thesaurus/thesaurus.html.twig
@@ -13818,7 +13818,7 @@ Attention: les valeurs actuellement en place seront écrasées par ces nouvelles
thesaurus:: synonymeSynonyme
- web/thesaurus/thesaurus.html.twig
+ web/thesaurus/thesaurus.html.twigthesaurus:: synonymes
@@ -13828,7 +13828,7 @@ Attention: les valeurs actuellement en place seront écrasées par ces nouvelles
thesaurus:: termeTerme
- web/thesaurus/thesaurus.html.twig
+ web/thesaurus/thesaurus.html.twigthesaurus:: tout deployer - refermable
@@ -13906,30 +13906,34 @@ Attention: les valeurs actuellement en place seront écrasées par ces nouvelles
thesaurus::menu: supprimerSupprimer
- web/thesaurus/properties.html.twigweb/thesaurus/thesaurus.html.twigthesaurus::populate: Warning populate is in process to indexing databoxAttention une indexation de la base est deja en cours. Il est nécéssaire d'attendre la fin de cette indexation pour en relancer une nouvelle.
- web/thesaurus/thesaurus.html.twig
+ web/thesaurus/thesaurus.html.twigthesaurus::populate: success messagethesaurus::populate: success message
- web/thesaurus/thesaurus.html.twig
+ web/thesaurus/thesaurus.html.twigthesaurus:dialog:: exportExport des termes candidats
- web/thesaurus/thesaurus.html.twig
+ web/thesaurus/thesaurus.html.twigthesaurus:dialog:: propertiesPropriétés
- web/thesaurus/thesaurus.html.twig
+ web/thesaurus/thesaurus.html.twig
-
+
+ thesaurus:properties:: Mettre dans le stock
+ thesaurus:properties:: Mettre dans le stock
+ web/thesaurus/properties.html.twig
+
+ thesaurus:termePorperties:termeIdIDweb/thesaurus/properties.html.twig
diff --git a/resources/locales/messages.nl.xlf b/resources/locales/messages.nl.xlf
index 453cf56d46..eb96bf8f21 100644
--- a/resources/locales/messages.nl.xlf
+++ b/resources/locales/messages.nl.xlf
@@ -1,6 +1,6 @@
-
+ The source node in most cases contains the sample message as written by the developer. If it looks like a dot-delimitted string such as "form.label.firstname", then the developer has not provided a default message.
@@ -9545,9 +9545,9 @@
web/thesaurus/new-term.html.twigweb/thesaurus/new-term.html.twigweb/thesaurus/thesaurus.html.twig
- web/thesaurus/thesaurus.html.twig
- web/thesaurus/thesaurus.html.twig
- web/thesaurus/thesaurus.html.twig
+ web/thesaurus/thesaurus.html.twig
+ web/thesaurus/thesaurus.html.twig
+ web/thesaurus/thesaurus.html.twigweb/thesaurus/link-field-step2.html.twigweb/common/dialog_export.html.twigweb/common/dialog_export.html.twig
@@ -9575,8 +9575,8 @@
boutton::chercherzoeken
- web/thesaurus/thesaurus.html.twig
- web/thesaurus/thesaurus.html.twig
+ web/thesaurus/thesaurus.html.twig
+ web/thesaurus/thesaurus.html.twigweb/prod/index.html.twigweb/admin/users.html.twig
@@ -9816,7 +9816,7 @@
web/thesaurus/new-term.html.twigweb/thesaurus/new-term.html.twigweb/thesaurus/thesaurus.html.twig
- web/thesaurus/thesaurus.html.twig
+ web/thesaurus/thesaurus.html.twigweb/thesaurus/index.html.twigweb/thesaurus/link-field-step2.html.twigweb/account/access.html.twig
@@ -13397,7 +13397,7 @@
thesaurus: Populate titlethesaurus: Populate title
- web/thesaurus/thesaurus.html.twig
+ web/thesaurus/thesaurus.html.twigthesaurus:: %hits% reponses retournees
@@ -13438,7 +13438,7 @@
thesaurus:: ImporterImporterenweb/thesaurus/import-dialog.html.twig
- web/thesaurus/thesaurus.html.twig
+ web/thesaurus/thesaurus.html.twigthesaurus:: Lier la branche de thesaurus
@@ -13450,7 +13450,7 @@
thesaurus:: Lier la branche de thesaurus au champLink de tak van de thesaurus aan veldweb/thesaurus/link-field-step1.html.twig
- web/thesaurus/thesaurus.html.twig
+ web/thesaurus/thesaurus.html.twigthesaurus:: Lier la branche de thesaurus au champ %branch%
@@ -13461,31 +13461,31 @@
thesaurus:: Nouveau synonymeNieuw synoniemweb/thesaurus/new-term.html.twig
- web/thesaurus/thesaurus.html.twig
- web/thesaurus/thesaurus.html.twig
+ web/thesaurus/thesaurus.html.twig
+ web/thesaurus/thesaurus.html.twigthesaurus:: Nouveau termeNieuwe term
- web/thesaurus/thesaurus.html.twig
+ web/thesaurus/thesaurus.html.twigthesaurus:: Nouveau terme specifiqueNieuwe specifieke termweb/thesaurus/new-term.html.twig
- web/thesaurus/thesaurus.html.twig
+ web/thesaurus/thesaurus.html.twigthesaurus:: ProprietesEigenschappen
- web/thesaurus/thesaurus.html.twig
- web/thesaurus/thesaurus.html.twig
- web/thesaurus/thesaurus.html.twig
+ web/thesaurus/thesaurus.html.twig
+ web/thesaurus/thesaurus.html.twig
+ web/thesaurus/thesaurus.html.twig
- web/thesaurus/thesaurus.html.twig
+ web/thesaurus/thesaurus.html.twigthesaurus:: Vous n'avez acces a aucune base
@@ -13496,7 +13496,7 @@
thesaurus:: accepter...Aanvaarden...web/thesaurus/accept.html.twig
- web/thesaurus/thesaurus.html.twig
+ web/thesaurus/thesaurus.html.twigthesaurus:: afficher les termes refuses
@@ -13554,7 +13554,7 @@
thesaurus:: deplacer le terme dans la corbeille ?De term in de prullemand plaatsen ?
- web/thesaurus/thesaurus.html.twig
+ web/thesaurus/thesaurus.html.twigthesaurus:: enregistrement de la liste modifiee des mots candidats.
@@ -13612,14 +13612,14 @@
web/thesaurus/export-text-dialog.html.twigweb/thesaurus/export-text-dialog.html.twigweb/thesaurus/export-text.html.twig
- web/thesaurus/thesaurus.html.twig
+ web/thesaurus/thesaurus.html.twigthesaurus:: export en topicsExporteer in topicsweb/thesaurus/export-topics.html.twigweb/thesaurus/export-topics-dialog.html.twig
- web/thesaurus/thesaurus.html.twig
+ web/thesaurus/thesaurus.html.twigthesaurus:: exporter
@@ -13816,7 +13816,7 @@
thesaurus:: synonymeSynoniem
- web/thesaurus/thesaurus.html.twig
+ web/thesaurus/thesaurus.html.twigthesaurus:: synonymes
@@ -13826,7 +13826,7 @@
thesaurus:: termeTerm
- web/thesaurus/thesaurus.html.twig
+ web/thesaurus/thesaurus.html.twigthesaurus:: tout deployer - refermable
@@ -13904,28 +13904,32 @@
thesaurus::menu: supprimerverwijderen
- web/thesaurus/properties.html.twigweb/thesaurus/thesaurus.html.twigthesaurus::populate: Warning populate is in process to indexing databoxthesaurus::populate: Warning populate is in process to indexing databox
- web/thesaurus/thesaurus.html.twig
+ web/thesaurus/thesaurus.html.twigthesaurus::populate: success messagethesaurus::populate: success message
- web/thesaurus/thesaurus.html.twig
+ web/thesaurus/thesaurus.html.twigthesaurus:dialog:: exportthesaurus:dialog:: export
- web/thesaurus/thesaurus.html.twig
+ web/thesaurus/thesaurus.html.twigthesaurus:dialog:: propertiesthesaurus:dialog:: properties
- web/thesaurus/thesaurus.html.twig
+ web/thesaurus/thesaurus.html.twig
+
+
+ thesaurus:properties:: Mettre dans le stock
+ thesaurus:properties:: Mettre dans le stock
+ web/thesaurus/properties.html.twigthesaurus:termePorperties:termeId
diff --git a/resources/locales/validators.de.xlf b/resources/locales/validators.de.xlf
index 3b6c8979f1..a90ceda081 100644
--- a/resources/locales/validators.de.xlf
+++ b/resources/locales/validators.de.xlf
@@ -1,6 +1,6 @@
-
+ The source node in most cases contains the sample message as written by the developer. If it looks like a dot-delimitted string such as "form.label.firstname", then the developer has not provided a default message.
diff --git a/resources/locales/validators.en.xlf b/resources/locales/validators.en.xlf
index da01b0a9ed..f5103bffa8 100644
--- a/resources/locales/validators.en.xlf
+++ b/resources/locales/validators.en.xlf
@@ -1,6 +1,6 @@
-
+ The source node in most cases contains the sample message as written by the developer. If it looks like a dot-delimitted string such as "form.label.firstname", then the developer has not provided a default message.
diff --git a/resources/locales/validators.fr.xlf b/resources/locales/validators.fr.xlf
index 409b81d1f9..5cef6366ca 100644
--- a/resources/locales/validators.fr.xlf
+++ b/resources/locales/validators.fr.xlf
@@ -1,6 +1,6 @@
-
+ The source node in most cases contains the sample message as written by the developer. If it looks like a dot-delimitted string such as "form.label.firstname", then the developer has not provided a default message.
diff --git a/resources/locales/validators.nl.xlf b/resources/locales/validators.nl.xlf
index c7e8765468..87c4bb130d 100644
--- a/resources/locales/validators.nl.xlf
+++ b/resources/locales/validators.nl.xlf
@@ -1,6 +1,6 @@
-
+ The source node in most cases contains the sample message as written by the developer. If it looks like a dot-delimitted string such as "form.label.firstname", then the developer has not provided a default message.
From fe57bdf8a5651c033d116597f31cee2e43ee926a Mon Sep 17 00:00:00 2001
From: Nicolas Maillat
Date: Thu, 2 Jul 2020 00:08:16 +0200
Subject: [PATCH 111/165] adding missing env for phraseanet container
---
docker-compose.yml | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/docker-compose.yml b/docker-compose.yml
index 34f15d98bc..34ec5133dd 100644
--- a/docker-compose.yml
+++ b/docker-compose.yml
@@ -64,6 +64,10 @@ services:
- PHRASEANET_SMTP_SECURE_MODE
- PHRASEANET_SMTP_USER
- PHRASEANET_SMTP_PASSWORD
+ - PHRASEANET_DOWNLOAD_DIR
+ - PHRASEANET_LAZARET_DIR
+ - PHRASEANET_CAPTION_DIR
+ - PHRASEANET_WORKER_TMP
- LC_MESSAGES=C.UTF-8
- LC_COLLATE=C.UTF-8
- LC_IDENTIFICATION=C.UTF-8
From e01daeed8ce778d07bd64e68e7d77edaac20f1b0 Mon Sep 17 00:00:00 2001
From: Harrys Ravalomanana
Date: Thu, 2 Jul 2020 12:23:25 +0400
Subject: [PATCH 112/165] PHRAS-3148 Properties remove Hits
---
templates/web/thesaurus/properties.html.twig | 36 +++++++++-----------
templates/web/thesaurus/thesaurus.html.twig | 4 ---
2 files changed, 17 insertions(+), 23 deletions(-)
diff --git a/templates/web/thesaurus/properties.html.twig b/templates/web/thesaurus/properties.html.twig
index 78510851a1..bcb7e82ad0 100644
--- a/templates/web/thesaurus/properties.html.twig
+++ b/templates/web/thesaurus/properties.html.twig
@@ -33,23 +33,24 @@
{{ 'thesaurus:properties:: Mettre dans le stock' | trans }}
-
+ {#
{% for code, language in languages %}
{{ language }}
{% endfor %}
-
+
#}
-
+
+
{{ fullpath | raw }}
+
id: {{ id }}
-
{{ fullpath | raw }}
{% if typ == "CT" %}
- {% elseif typ == "TH" %}
+ {#{% elseif typ == "TH" %}
{% trans with {'%hits%' : hits} %}thesaurus:: %hits% reponses retournees{% endtrans %}
-
+ #}
{% endif %}