Compare commits
19 Commits
Author | SHA1 | Date | |
---|---|---|---|
2c88187d3f | |||
|
971d0fa9c9 | ||
93bcc246e9 | |||
2c6fb97f31 | |||
|
c58443dd72 | ||
b6c17f62d0 | |||
7712d146c7 | |||
8a83372e2f | |||
883725af10 | |||
|
7faee98294 | ||
96e0c4c97e | |||
921726ec75 | |||
61a77cc1de | |||
|
0c65d3d681 | ||
9c125c6af6 | |||
e701b75f1e
|
|||
6c0caef3d5
|
|||
103282e44b
|
|||
dd591628a8
|
3
.changes/v1.4.3.md
Normal file
3
.changes/v1.4.3.md
Normal file
@@ -0,0 +1,3 @@
|
||||
## v1.4.3 - 2024-02-08
|
||||
### Fixed
|
||||
* better restriction for bootstrap version
|
3
.changes/v1.4.4.md
Normal file
3
.changes/v1.4.4.md
Normal file
@@ -0,0 +1,3 @@
|
||||
## v1.4.4 - 2024-02-08
|
||||
### Fixed
|
||||
* fix incorrect upgrade
|
3
.changes/v1.5.0.md
Normal file
3
.changes/v1.5.0.md
Normal file
@@ -0,0 +1,3 @@
|
||||
## v1.5.0 - 2024-02-08
|
||||
### Release
|
||||
* Update dependencies. Chill-bundles upgraded from 2.16.0 to 2.16.1
|
5
.changes/v1.6.0.md
Normal file
5
.changes/v1.6.0.md
Normal file
@@ -0,0 +1,5 @@
|
||||
## v1.6.0 - 2024-02-12
|
||||
### Release
|
||||
* Update dependencies. Chill-bundles upgraded from 2.16.1 to 2.16.1
|
||||
### Fixed
|
||||
* Overwriting of bundles translations removed
|
5
.changes/v1.7.0.md
Normal file
5
.changes/v1.7.0.md
Normal file
@@ -0,0 +1,5 @@
|
||||
## v1.7.0 - 2024-02-13
|
||||
### Release
|
||||
* Update dependencies. Chill-bundles upgraded from 2.16.1 to 2.16.1
|
||||
### Fixed
|
||||
* Upgrade vue to fix multiselect
|
3
.changes/v1.8.0.md
Normal file
3
.changes/v1.8.0.md
Normal file
@@ -0,0 +1,3 @@
|
||||
## v1.8.0 - 2024-02-21
|
||||
### Release
|
||||
* Update dependencies. Chill-bundles upgraded from 2.16.1 to 2.16.2
|
@@ -37,10 +37,11 @@ steps:
|
||||
- build-base-image
|
||||
|
||||
- name: build-assets
|
||||
image: node:16
|
||||
image: node:20
|
||||
pull: always
|
||||
commands:
|
||||
- yarn install
|
||||
- yarn list
|
||||
- yarn run encore production
|
||||
depends_on:
|
||||
- composer-install
|
||||
@@ -111,6 +112,6 @@ steps:
|
||||
|
||||
---
|
||||
kind: signature
|
||||
hmac: 707a5ef589fb6320f9e9e1dec7d8d4d11b477ba09e3b2b08d6f31f98d6d3f5d0
|
||||
hmac: 0bca4dec9822a08338f6f3b88badf771558aee19b41967837aa64853a1573cad
|
||||
|
||||
...
|
||||
|
28
CHANGELOG.md
28
CHANGELOG.md
@@ -6,6 +6,34 @@ adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html),
|
||||
and is generated by [Changie](https://github.com/miniscruff/changie).
|
||||
|
||||
|
||||
## v1.8.0 - 2024-02-21
|
||||
### Release
|
||||
* Update dependencies. Chill-bundles upgraded from 2.16.1 to 2.16.2
|
||||
|
||||
## v1.7.0 - 2024-02-13
|
||||
### Release
|
||||
* Update dependencies. Chill-bundles upgraded from 2.16.1 to 2.16.1
|
||||
### Fixed
|
||||
* Upgrade vue to fix multiselect
|
||||
|
||||
## v1.6.0 - 2024-02-12
|
||||
### Release
|
||||
* Update dependencies. Chill-bundles upgraded from 2.16.1 to 2.16.1
|
||||
### Fixed
|
||||
* Overwriting of bundles translations removed
|
||||
|
||||
## v1.5.0 - 2024-02-08
|
||||
### Release
|
||||
* Update dependencies. Chill-bundles upgraded from 2.16.0 to 2.16.1
|
||||
|
||||
## v1.4.4 - 2024-02-08
|
||||
### Fixed
|
||||
* fix incorrect upgrade
|
||||
|
||||
## v1.4.3 - 2024-02-08
|
||||
### Fixed
|
||||
* better restriction for bootstrap version
|
||||
|
||||
## v1.4.2 - 2024-02-08
|
||||
### Fixed
|
||||
* Fix version of bootstrap temporarily
|
||||
|
2
Makefile
2
Makefile
@@ -2,7 +2,7 @@ THIS_FILE := $(lastword $(MAKEFILE_LIST))
|
||||
PWD:=$(shell echo ${PWD})
|
||||
UID:=$(shell id -u)
|
||||
GID:=$(shell id -g)
|
||||
DOCKERNODE_CMD=docker run --rm --user ${UID}:${GID} -v ${PWD}:/app --workdir /app -e YARN_CACHE_FOLDER=/app/.yarncache node:16
|
||||
DOCKERNODE_CMD=docker run --rm --user ${UID}:${GID} -v ${PWD}:/app --workdir /app -e YARN_CACHE_FOLDER=/app/.yarncache node:20
|
||||
DOCKER_COMPOSE_PHP_EXEC_CMD=docker-compose run --rm --user $(UID):$(GID) -e CLEAR_CACHE=false -e COMPOSER_HOME=/var/www/app/.composer --entrypoint /usr/bin/env php
|
||||
DOCKER_PHP_EXEC_CMD_BASE=docker run --rm --user $(UID):$(GID) -v ${PWD}:/var/www/app -e CLEAR_CACHE=false -e COMPOSER_HOME=/var/www/app/.composer --entrypoint /usr/bin/env $(PHP_BASE_IMAGE_TAG)
|
||||
PHP_BASE_IMAGE=php:8.2-fpm-alpine
|
||||
|
@@ -15,7 +15,7 @@
|
||||
},
|
||||
"require": {
|
||||
"ext-redis": "*",
|
||||
"chill-project/chill-bundles": "2.16.0",
|
||||
"chill-project/chill-bundles": "2.16.2",
|
||||
"symfony/flex": "^1.9",
|
||||
"symfony/http-client": "^4.4 || ^5",
|
||||
"nelmio/alice": "^3.8",
|
||||
|
98
composer.lock
generated
98
composer.lock
generated
@@ -4,7 +4,7 @@
|
||||
"Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
|
||||
"This file is @generated automatically"
|
||||
],
|
||||
"content-hash": "8305e91891167e05d0a4a109477fa756",
|
||||
"content-hash": "d9c0f23b12cc8e2b341221d5eec27127",
|
||||
"packages": [
|
||||
{
|
||||
"name": "brick/math",
|
||||
@@ -223,16 +223,16 @@
|
||||
},
|
||||
{
|
||||
"name": "chill-project/chill-bundles",
|
||||
"version": "2.16.0",
|
||||
"version": "2.16.2",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://gitlab.com/Chill-Projet/chill-bundles.git",
|
||||
"reference": "8b28667fe5d4430c541eacd0dc558b202c4f4835"
|
||||
"reference": "97f2c75de89896a7b8e20d511e9e0fa89e5fcb69"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://gitlab.com/api/v4/projects/Chill-Projet%2Fchill-bundles/repository/archive.zip?sha=8b28667fe5d4430c541eacd0dc558b202c4f4835",
|
||||
"reference": "8b28667fe5d4430c541eacd0dc558b202c4f4835",
|
||||
"url": "https://gitlab.com/api/v4/projects/Chill-Projet%2Fchill-bundles/repository/archive.zip?sha=97f2c75de89896a7b8e20d511e9e0fa89e5fcb69",
|
||||
"reference": "97f2c75de89896a7b8e20d511e9e0fa89e5fcb69",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
@@ -346,9 +346,9 @@
|
||||
],
|
||||
"support": {
|
||||
"issues": "https://gitlab.com/Chill-Projet/chill-bundles/-/issues",
|
||||
"source": "https://gitlab.com/Chill-Projet/chill-bundles/-/tree/2.16.0"
|
||||
"source": "https://gitlab.com/Chill-Projet/chill-bundles/-/tree/2.16.2"
|
||||
},
|
||||
"time": "2024-02-08T21:21:49+00:00"
|
||||
"time": "2024-02-21T20:14:18+00:00"
|
||||
},
|
||||
{
|
||||
"name": "composer/package-versions-deprecated",
|
||||
@@ -771,16 +771,16 @@
|
||||
},
|
||||
{
|
||||
"name": "doctrine/dbal",
|
||||
"version": "3.8.1",
|
||||
"version": "3.8.2",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/doctrine/dbal.git",
|
||||
"reference": "c9ea252cdce4da324ede3d6c5913dd89f769afd2"
|
||||
"reference": "a19a1d05ca211f41089dffcc387733a6875196cb"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/doctrine/dbal/zipball/c9ea252cdce4da324ede3d6c5913dd89f769afd2",
|
||||
"reference": "c9ea252cdce4da324ede3d6c5913dd89f769afd2",
|
||||
"url": "https://api.github.com/repos/doctrine/dbal/zipball/a19a1d05ca211f41089dffcc387733a6875196cb",
|
||||
"reference": "a19a1d05ca211f41089dffcc387733a6875196cb",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
@@ -864,7 +864,7 @@
|
||||
],
|
||||
"support": {
|
||||
"issues": "https://github.com/doctrine/dbal/issues",
|
||||
"source": "https://github.com/doctrine/dbal/tree/3.8.1"
|
||||
"source": "https://github.com/doctrine/dbal/tree/3.8.2"
|
||||
},
|
||||
"funding": [
|
||||
{
|
||||
@@ -880,7 +880,7 @@
|
||||
"type": "tidelift"
|
||||
}
|
||||
],
|
||||
"time": "2024-02-03T17:33:49+00:00"
|
||||
"time": "2024-02-12T18:36:36+00:00"
|
||||
},
|
||||
{
|
||||
"name": "doctrine/deprecations",
|
||||
@@ -1222,16 +1222,16 @@
|
||||
},
|
||||
{
|
||||
"name": "doctrine/inflector",
|
||||
"version": "2.0.9",
|
||||
"version": "2.0.10",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/doctrine/inflector.git",
|
||||
"reference": "2930cd5ef353871c821d5c43ed030d39ac8cfe65"
|
||||
"reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/doctrine/inflector/zipball/2930cd5ef353871c821d5c43ed030d39ac8cfe65",
|
||||
"reference": "2930cd5ef353871c821d5c43ed030d39ac8cfe65",
|
||||
"url": "https://api.github.com/repos/doctrine/inflector/zipball/5817d0659c5b50c9b950feb9af7b9668e2c436bc",
|
||||
"reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
@@ -1293,7 +1293,7 @@
|
||||
],
|
||||
"support": {
|
||||
"issues": "https://github.com/doctrine/inflector/issues",
|
||||
"source": "https://github.com/doctrine/inflector/tree/2.0.9"
|
||||
"source": "https://github.com/doctrine/inflector/tree/2.0.10"
|
||||
},
|
||||
"funding": [
|
||||
{
|
||||
@@ -1309,7 +1309,7 @@
|
||||
"type": "tidelift"
|
||||
}
|
||||
],
|
||||
"time": "2024-01-15T18:05:13+00:00"
|
||||
"time": "2024-02-18T20:23:39+00:00"
|
||||
},
|
||||
{
|
||||
"name": "doctrine/instantiator",
|
||||
@@ -2118,16 +2118,16 @@
|
||||
},
|
||||
{
|
||||
"name": "giggsey/libphonenumber-for-php",
|
||||
"version": "8.13.29",
|
||||
"version": "8.13.30",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/giggsey/libphonenumber-for-php.git",
|
||||
"reference": "b8fa0daf0c27bb6fdb5940e0288f203be7e5cfd4"
|
||||
"reference": "e09260a4a470b3737877c0f04f964e8a4938ebbd"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/giggsey/libphonenumber-for-php/zipball/b8fa0daf0c27bb6fdb5940e0288f203be7e5cfd4",
|
||||
"reference": "b8fa0daf0c27bb6fdb5940e0288f203be7e5cfd4",
|
||||
"url": "https://api.github.com/repos/giggsey/libphonenumber-for-php/zipball/e09260a4a470b3737877c0f04f964e8a4938ebbd",
|
||||
"reference": "e09260a4a470b3737877c0f04f964e8a4938ebbd",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
@@ -2186,7 +2186,7 @@
|
||||
"issues": "https://github.com/giggsey/libphonenumber-for-php/issues",
|
||||
"source": "https://github.com/giggsey/libphonenumber-for-php"
|
||||
},
|
||||
"time": "2024-01-26T08:49:18+00:00"
|
||||
"time": "2024-02-09T12:16:23+00:00"
|
||||
},
|
||||
{
|
||||
"name": "giggsey/locale",
|
||||
@@ -2993,16 +2993,16 @@
|
||||
},
|
||||
{
|
||||
"name": "knpuniversity/oauth2-client-bundle",
|
||||
"version": "v2.18.0",
|
||||
"version": "v2.18.1",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/knpuniversity/oauth2-client-bundle.git",
|
||||
"reference": "2f6c9342c711597e3b5f1f2468910336be5232d6"
|
||||
"reference": "1d59f49f164805b45f95f92cf743781bc2ba7d2b"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/knpuniversity/oauth2-client-bundle/zipball/2f6c9342c711597e3b5f1f2468910336be5232d6",
|
||||
"reference": "2f6c9342c711597e3b5f1f2468910336be5232d6",
|
||||
"url": "https://api.github.com/repos/knpuniversity/oauth2-client-bundle/zipball/1d59f49f164805b45f95f92cf743781bc2ba7d2b",
|
||||
"reference": "1d59f49f164805b45f95f92cf743781bc2ba7d2b",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
@@ -3047,9 +3047,9 @@
|
||||
],
|
||||
"support": {
|
||||
"issues": "https://github.com/knpuniversity/oauth2-client-bundle/issues",
|
||||
"source": "https://github.com/knpuniversity/oauth2-client-bundle/tree/v2.18.0"
|
||||
"source": "https://github.com/knpuniversity/oauth2-client-bundle/tree/v2.18.1"
|
||||
},
|
||||
"time": "2023-12-18T21:58:12+00:00"
|
||||
"time": "2024-02-14T17:41:28+00:00"
|
||||
},
|
||||
{
|
||||
"name": "laminas/laminas-escaper",
|
||||
@@ -3252,16 +3252,16 @@
|
||||
},
|
||||
{
|
||||
"name": "league/csv",
|
||||
"version": "9.14.0",
|
||||
"version": "9.15.0",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/thephpleague/csv.git",
|
||||
"reference": "34bf0df7340b60824b9449b5c526fcc3325070d5"
|
||||
"reference": "fa7e2441c0bc9b2360f4314fd6c954f7ff40d435"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/thephpleague/csv/zipball/34bf0df7340b60824b9449b5c526fcc3325070d5",
|
||||
"reference": "34bf0df7340b60824b9449b5c526fcc3325070d5",
|
||||
"url": "https://api.github.com/repos/thephpleague/csv/zipball/fa7e2441c0bc9b2360f4314fd6c954f7ff40d435",
|
||||
"reference": "fa7e2441c0bc9b2360f4314fd6c954f7ff40d435",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
@@ -3276,12 +3276,12 @@
|
||||
"ext-xdebug": "*",
|
||||
"friendsofphp/php-cs-fixer": "^v3.22.0",
|
||||
"phpbench/phpbench": "^1.2.15",
|
||||
"phpstan/phpstan": "^1.10.50",
|
||||
"phpstan/phpstan": "^1.10.57",
|
||||
"phpstan/phpstan-deprecation-rules": "^1.1.4",
|
||||
"phpstan/phpstan-phpunit": "^1.3.15",
|
||||
"phpstan/phpstan-strict-rules": "^1.5.2",
|
||||
"phpunit/phpunit": "^10.5.3",
|
||||
"symfony/var-dumper": "^6.4.0"
|
||||
"phpunit/phpunit": "^10.5.9",
|
||||
"symfony/var-dumper": "^6.4.2"
|
||||
},
|
||||
"suggest": {
|
||||
"ext-dom": "Required to use the XMLConverter and the HTMLConverter classes",
|
||||
@@ -3337,7 +3337,7 @@
|
||||
"type": "github"
|
||||
}
|
||||
],
|
||||
"time": "2023-12-29T07:34:53+00:00"
|
||||
"time": "2024-02-20T20:00:00+00:00"
|
||||
},
|
||||
{
|
||||
"name": "league/oauth2-client",
|
||||
@@ -4497,16 +4497,16 @@
|
||||
},
|
||||
{
|
||||
"name": "php-opencloud/openstack",
|
||||
"version": "v3.8.0",
|
||||
"version": "v3.9.0",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/php-opencloud/openstack.git",
|
||||
"reference": "d823be3079c4772b2ddf16ff2d013f285113eb59"
|
||||
"reference": "38a686070d3b3a25b26e21f3c445dde1ae66fd8d"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/php-opencloud/openstack/zipball/d823be3079c4772b2ddf16ff2d013f285113eb59",
|
||||
"reference": "d823be3079c4772b2ddf16ff2d013f285113eb59",
|
||||
"url": "https://api.github.com/repos/php-opencloud/openstack/zipball/38a686070d3b3a25b26e21f3c445dde1ae66fd8d",
|
||||
"reference": "38a686070d3b3a25b26e21f3c445dde1ae66fd8d",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
@@ -4568,9 +4568,9 @@
|
||||
],
|
||||
"support": {
|
||||
"issues": "https://github.com/php-opencloud/openstack/issues",
|
||||
"source": "https://github.com/php-opencloud/openstack/tree/v3.8.0"
|
||||
"source": "https://github.com/php-opencloud/openstack/tree/v3.9.0"
|
||||
},
|
||||
"time": "2024-02-05T09:29:20+00:00"
|
||||
"time": "2024-02-10T10:49:56+00:00"
|
||||
},
|
||||
{
|
||||
"name": "phpoffice/phpspreadsheet",
|
||||
@@ -4901,16 +4901,16 @@
|
||||
},
|
||||
{
|
||||
"name": "phpstan/phpstan",
|
||||
"version": "1.10.57",
|
||||
"version": "1.10.59",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/phpstan/phpstan.git",
|
||||
"reference": "1627b1d03446904aaa77593f370c5201d2ecc34e"
|
||||
"reference": "e607609388d3a6d418a50a49f7940e8086798281"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/phpstan/phpstan/zipball/1627b1d03446904aaa77593f370c5201d2ecc34e",
|
||||
"reference": "1627b1d03446904aaa77593f370c5201d2ecc34e",
|
||||
"url": "https://api.github.com/repos/phpstan/phpstan/zipball/e607609388d3a6d418a50a49f7940e8086798281",
|
||||
"reference": "e607609388d3a6d418a50a49f7940e8086798281",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
@@ -4959,7 +4959,7 @@
|
||||
"type": "tidelift"
|
||||
}
|
||||
],
|
||||
"time": "2024-01-24T11:51:34+00:00"
|
||||
"time": "2024-02-20T13:59:13+00:00"
|
||||
},
|
||||
{
|
||||
"name": "psr/cache",
|
||||
|
@@ -18,4 +18,4 @@ docker run \
|
||||
--volume ${PWD}:/app \
|
||||
--workdir /app \
|
||||
--env YARN_CACHE_FOLDER=/app/.yarncache \
|
||||
node:16 ${cmd}
|
||||
node:20 ${cmd}
|
||||
|
@@ -3,6 +3,9 @@
|
||||
"vendor/chill-project/chill-bundles"
|
||||
],
|
||||
"private": true,
|
||||
"devDependencies": {
|
||||
"bootstrap": "5.2.3"
|
||||
},
|
||||
"scripts": {
|
||||
"specs-build": "yaml-merge vendor/chill-project/chill-bundles/src/Bundle/ChillMainBundle/chill.api.specs.yaml vendor/chill-project/chill-bundles/src/Bundle/ChillPersonBundle/chill.api.specs.yaml vendor/chill-project/chill-bundles/src/Bundle/ChillCalendarBundle/chill.api.specs.yaml vendor/chill-project/chill-bundles/src/Bundle/ChillThirdPartyBundle/chill.api.specs.yaml vendor/chill-project/chill-bundles/src/Bundle/ChillDocStoreBundle/chill.api.specs.yaml> templates/api/specs.yaml",
|
||||
"specs-validate": "swagger-cli validate templates/api/specs.yaml",
|
||||
|
0
translations/.gitkeep
Normal file
0
translations/.gitkeep
Normal file
@@ -1,205 +0,0 @@
|
||||
# activity
|
||||
Show the activity: Voir l'échange
|
||||
Edit the activity: Modifier l'échange
|
||||
Activity: Échange
|
||||
Add a new activity: Ajouter un nouvel échange
|
||||
Activity list: Liste des échanges
|
||||
Update activity: Modifier l'échange
|
||||
Activity data: Données de l'échange
|
||||
Activity location: Localisation de l'échange
|
||||
Activity creation: Nouvel échange
|
||||
Save activity: Sauver l'échange
|
||||
'%user% has done an %activity_type%': '%user% a effectué un échange de type "%activity_type%"'
|
||||
'Success : activity created!': L'échange a été créé.
|
||||
'The form is not valid. The activity has not been created !': Le formulaire est invalide. L'échange n'a pas été créé.
|
||||
'Success : activity updated!': L'échange a été mis à jour.
|
||||
'The form is not valid. The activity has not been updated !': Le formulaire est invalide. L'échange n'a pas été mis à jour.
|
||||
Activity configuration: Configuration des échanges
|
||||
Activity configuration menu: Configuration des échanges
|
||||
Activity Types: Types d'échange
|
||||
Activity Reasons: Sujets d'un échange
|
||||
Activity Reasons Category: Catégories de sujet d'échanges
|
||||
Activity Types Categories: Catégories des types d'échange
|
||||
Activity Presences: Présences aux échanges
|
||||
Travel time: Durée du trajet (aller/retour)
|
||||
Sent received: Entrant / sortant
|
||||
Sent: Sortant
|
||||
Received: Entrant
|
||||
activity:
|
||||
comment: Compte-rendu
|
||||
See activity in accompanying course context: Voir l'échange dans le contexte du parcours d'accompagnement
|
||||
ActivityPresence list: Liste des Présences aux échanges
|
||||
Create a new activity presence: Créer une nouvelle "Présence aux échanges"
|
||||
|
||||
# crud activity
|
||||
crud:
|
||||
save: Enregistrer
|
||||
activity_type:
|
||||
title_new: Nouveau type d'échange
|
||||
title_edit: Edition d'un type d'échange
|
||||
activity_type_category:
|
||||
title_new: Nouvelle catégorie de type d'échange
|
||||
title_edit: Edition d'une catégorie de type d'échange
|
||||
activity_presence:
|
||||
title_new: Nouvelle Présence aux échanges
|
||||
title_edit: Edition d'une Présence aux échanges
|
||||
vendee_security_profile:
|
||||
index:
|
||||
title: Profils de droits
|
||||
add_new: Créer
|
||||
title_new: Nouveau profil
|
||||
title_edit: Modifier profil
|
||||
# activity reason admin
|
||||
ActivityReason list: Liste des sujets
|
||||
Create a new activity reason: Créer un nouveau sujet
|
||||
ActivityReason creation: Nouveau sujet
|
||||
ActivityReason edit: Modification d'un sujet
|
||||
ActivityReason: Sujet d'échange
|
||||
#activity reason category admin
|
||||
ActivityReasonCategory list: Catégories de sujets
|
||||
Create a new activity category reason: Créer une nouvelle catégorie
|
||||
ActivityReasonCategory creation: Nouvelle catégorie de sujet
|
||||
ActivityReasonCategory edit: Modification d'une catégorie de sujet
|
||||
ActivityReasonCategory: Catégorie de sujet d'échange
|
||||
ActivityReasonCategory is active and will be proposed: La catégorie est active et sera proposée
|
||||
ActivityReasonCategory is inactive and won't be proposed: La catégorie est inactive et ne sera pas proposée
|
||||
# activity type type admin
|
||||
ActivityType list: Types d'échanges
|
||||
Create a new activity type: Créer un nouveau type d'échange
|
||||
# activity type category admin
|
||||
ActivityTypeCategory list: Liste des catégories des types d'échange
|
||||
Create a new activity type category: Créer une nouvelle catégorie de type d'échange
|
||||
# activity delete
|
||||
Remove activity: Supprimer un échange
|
||||
Are you sure you want to remove the activity about "%name%" ?: Êtes-vous sûr de vouloir supprimer un échange qui concerne "%name%" ?
|
||||
The activity has been successfully removed.: L'échange a été supprimé.
|
||||
Sum activity duration: Total de la durée des échanges
|
||||
'Filtered by activity type: only %list%': "Filtré par type d'activity: seulement %list%"
|
||||
Filtered by date activity: Filtrer par date d'échange
|
||||
"Filtered by date of activity: only between %date_from% and %date_to%": "Filtré par date de l'échange: uniquement entre %date_from% et %date_to%"
|
||||
This date should be after the date given in "Implied in an activity after this date" field: Cette date devrait être postérieure à la date donnée dans le champ "échanges après cette date"
|
||||
Filtered by person having an activity in a period: Uniquement les personnes ayant eu un échange dans la période donnée
|
||||
Implied in an activity after this date: Impliqué dans un échange après cette date
|
||||
Implied in an activity before this date: Impliqué dans un échange avant cette date
|
||||
Filtered by person having an activity between %date_from% and %date_to% with reasons %reasons_name%: Filtré par personnes associées à un échange entre %date_from% et %date_to% avec les sujets %reasons_name%
|
||||
Activity reasons for those activities: Sujets de ces échanges
|
||||
Filter by activity type: Filtrer par type d'échange
|
||||
Activity type: Type d'échange
|
||||
Activity user: Utilisateur lié à l'activity
|
||||
Aggregate by activity user: Aggréger par utilisateur lié à l'échange
|
||||
Aggregate by activity type: Aggréger par type d'échange
|
||||
Aggregate by activity reason: Aggréger par sujet de l'échange
|
||||
There isn't any activities.: Aucun échange enregistré.
|
||||
Last activities: Les derniers échanges
|
||||
Activities: Échanges
|
||||
|
||||
# person
|
||||
Person: Usager
|
||||
'Add a person': 'Ajout d''un usager'
|
||||
'Person details': 'Généralités'
|
||||
Back to the person details: Retour aux détails de l'usager
|
||||
Show person: Voir la fiche de l'usager
|
||||
Any person selected: Aucun usager sélectionné
|
||||
|
||||
Male: Masculin
|
||||
Man: Masculin
|
||||
man: Masculin
|
||||
Female: Féminin
|
||||
woman: Féminin
|
||||
Woman: Féminin
|
||||
both: Neutre, non binaire
|
||||
Both: Neutre, non binaire
|
||||
Neuter: Neutre, non binaire
|
||||
neuter: Neutre, non binaire
|
||||
|
||||
'Add the person': "Créer l'usager"
|
||||
'Add the person and create an accompanying period': "Créer l’usager ET créer un parcours d’accompagnement"
|
||||
'Add the person and create an household': "Créer l'usager ET créer un ménage"
|
||||
'Add an accompanying period in the past': Ajouter un parcours d'accompagnement dans le passé
|
||||
Begin a new accompanying period: Commencer un nouveau parcours d'accompagnement
|
||||
Create an accompanying period: Créer un parcours d'accompagnement
|
||||
'A period has been created.': Une parcours d'accompagnement a été créé.
|
||||
'Error! Period not created!': Le parcours d'accompagnement n'a pas été créé.
|
||||
Update accompanying period: Mettre à jour un parcours d'accompagnement
|
||||
'An accompanying period has been updated.': Un parcours d'accompagnement a été mis à jour
|
||||
'Error when updating the period': Erreur pendant la mise à jour du parcours d'accompagnement.
|
||||
'An accompanying period has been closed.': Un parcours d'accompagnement a été fermé.
|
||||
'Error! Period not closed!': "Erreur: le parcours d'accompagnement n'a pas été fermé."
|
||||
'An accompanying period has been opened.': Un parcours d'accompagnement a été ouvert.
|
||||
'Period not opened': "Le parcours d'accompagnement n'a pas été ouvert"
|
||||
An accompanying period starts: Un parcours d'accompagnement est ouvert
|
||||
Any accompanying periods are open: Aucun parcours d'accompagnement ouvert
|
||||
An accompanying period is open: Un parcours d'accompagnement est ouvert
|
||||
Accompanying period list: Parcours d'accompagnement
|
||||
Accompanying period list for person: Parcours d'accompagnement de l'usager
|
||||
Period number %number%: 'Parcours n° %number%'
|
||||
Are you sure you want to re-open this period ?: Êtes-vous sûr de vouloir ré-ouvrir ce parcours d'accompagnement ?
|
||||
'The period has been re-opened': Le parcours d'accompagnement a été ré-ouvert.
|
||||
See accompanying period: Voir le parcours
|
||||
See accompanying periods: Voir tous les parcours d'accompagnement
|
||||
Edit accompanying period: Modifier le parcours
|
||||
Close accompanying period: Clôre le parcours
|
||||
Re-open accompanying period: Ré-ouvrir le parcours
|
||||
Closing the accompanying period: Fermeture du parcours d'accompagnement
|
||||
Opening the accompanying period: Ouverture d'un parcours d'accompagnement
|
||||
"Filter by accompanying period: active period": "Filtrer par parcours d'accompagnement: en file active"
|
||||
Some peoples does not belong to any household currently. Add them to an household soon: Certains usagers n'appartiennent à aucun ménage actuellement. Renseignez leur appartenance à un ménage dès que possible.
|
||||
This course is located at a temporarily address. You should locate this course to an user: Le parcours est localisé à une adresse temporaire. Il devrait être localisé auprès d'un usager concerné.
|
||||
Having an accompanying period opened after this date: Ayant un parcours d'accompagnement ouvert après cette date
|
||||
Having an accompanying period ending before this date, or still opened at this date: Ayant un parcours d'accompagnement fermé après cette date, ou toujours ouvert à cette date
|
||||
"Filtered by accompanying period: persons having an accompanying period opened after the %date_from% and closed before the %date_to% (or still opened at the %date_to%)": "Filtré par parcours d'accompagnement: personnes ayant un parcours d'accompagnement ouvert après le %date_from%, et cloturé le %date_to% (ou toujours ouvert le %date_to%)"
|
||||
"Filter by accompanying period: starting between two dates": "Filtrer par parcours d'accompagnement: début de la période entre deux dates"
|
||||
"Having an accompanying period opened before this date": "Ayant un parcours d'accompagnement ouvert avant cette date"
|
||||
"Filtered by accompanying period: persons having an accompanying period opened between the %date_from% and %date_to%": "Filtrer par parcours d'accompagnement: ayant une période ouverte entre le %date_from% et le %date_to%"
|
||||
"Filter by accompanying period: closed between two dates": "Filtrer par parcours d'accompagnement: période fermée entre deux dates"
|
||||
Having an accompanying period closed after this date: Ayant un parcours d'accompagnement fermé après cette date
|
||||
"Having an accompanying period closed before this date": "Ayant un parcours d'accompagnement fermé avant cette date"
|
||||
"Filtered by accompanying period: persons having an accompanying period closed between the %date_from% and %date_to%": "Filtrer par parcours d'accompagnement: ayant une période fermée entre le %date_from% et le %date_to%"
|
||||
Accompanying user: Référent
|
||||
No accompanying user: Aucun référent
|
||||
Participants: Usagers concernés
|
||||
person_admin:
|
||||
closing motive explanation: >
|
||||
Les motifs de clotûre donnent des indications sur la fermeture d'un parcours d'accompagnement.
|
||||
Delete accompanying period: Supprimer le parcours
|
||||
Are you sure you want to remove the accompanying period "%id%" ?: Êtes-vous sûr de vouloir supprimer le parcours %id% ?
|
||||
The accompanying course has been successfully removed.: Le parcours a été supprimé.
|
||||
|
||||
|
||||
Unknown: Non renseigné
|
||||
Center: Territoire
|
||||
Centers: Territoires
|
||||
'Marital status': 'État matrimonial'
|
||||
Comment on the marital status: Remarques sur l'état matrimonial
|
||||
Date of last marital status change: État matrimonial depuis le
|
||||
|
||||
# thirdparty
|
||||
List of third parties: Liste des tiers professionnels
|
||||
The party is visible in those centers: Le tiers est visible dans ces territoires
|
||||
|
||||
# household
|
||||
household:
|
||||
Household history for person: Historique des ménages de l'usager
|
||||
|
||||
# thirdparty
|
||||
chill_3party:
|
||||
key_label:
|
||||
caisse_secu: Caisse primaire d'assurance maladie (CPAM)
|
||||
doctor: Médecin
|
||||
|
||||
# error page
|
||||
Send by email: Envoyer par email
|
||||
Don't panick though, we'll fix it as soon as possible. To help us out, please send us the information below. : Pas de panique, nous allons la corriger au plus vite. Pour faciliter la résolution, communiquez les informations ci-dessous.
|
||||
Oops, we came across an error!: Oops, nous avons rencontré une erreur!
|
||||
Date and time of error: Date et heure de l'erreur
|
||||
Error message: Contenu de l'erreur
|
||||
Copy: Copier
|
||||
Copied: Copié
|
||||
|
||||
You are getting a notification for a period which does not exists any more: Cette notification ne correspond pas à un parcours d'accompagnement valide
|
||||
You are getting a notification for a period you are not allowed to see: La notification fait référence à un parcours d'accompagnement auquel vous n'avez pas accès.
|
||||
This is the minimal period details: Parcours d'accompagnement n°
|
||||
|
||||
You get notified of an activity which does not exists any more: Cette notification ne correspond pas à un échange valide.
|
||||
you are not allowed to see it details: La notification fait référence à un échange auquel vous n'avez pas accès.
|
||||
This is the minimal activity data: Échange n°
|
@@ -1,20 +0,0 @@
|
||||
# Activity validators
|
||||
For this type of activity, you must add at least one person: Pour ce type d'échange, vous devez ajouter au moins un usager
|
||||
For this type of activity, you must add at least one user: Pour ce type d'échange, vous devez ajouter au moins un TMS
|
||||
For this type of activity, you must add at least one third party: Pour ce type d'échange, vous devez ajouter au moins un tiers
|
||||
For this type of activity, the user is required: Pour ce type d'échange, l'utilisateur est requis
|
||||
For this type of activity, the date is required: Pour ce type d'échange, la date est requise
|
||||
For this type of activity, the location is required: Pour ce type d'échange, la localisation est requise
|
||||
For this type of activity, user is required: Pour ce type d'échange, l'utilisateur est requis
|
||||
For this type of activity, date is required: Pour ce type d'échange, la date est requise
|
||||
For this type of activity, location is required: Pour ce type d'échange, la localisation est requise
|
||||
For this type of activity, attendee is required: Pour ce type d'échange, le champ "Présence de la personne" est requis
|
||||
For this type of activity, duration time is required: Pour ce type d'échange, la durée est requise
|
||||
For this type of activity, travel time is required: Pour ce type d'échange, la durée du trajet est requise
|
||||
For this type of activity, reasons is required: Pour ce type d'échange, le champ "sujet" est requis
|
||||
For this type of activity, comment is required: Pour ce type d'échange, un commentaire est requis
|
||||
For this type of activity, sent/received is required: Pour ce type d'échange, le champ Entrant/Sortant est requis
|
||||
For this type of activity, document is required: Pour ce type d'échange, un document est requis
|
||||
For this type of activity, emergency is required: Pour ce type d'échange, le champ "Urgent" est requis
|
||||
For this type of activity, accompanying period is required: Pour ce type d'échange, le parcours d'accompagnement est requis
|
||||
This social issue cannot be deleted because it is associated with an activity or an action: La problématique sociale ne peut pas être supprimée car elle est associée à un échange ou une action
|
Reference in New Issue
Block a user