Compare commits

...

10 Commits

Author SHA1 Message Date
bec75c57ab update chill bundles to v3.11.0
All checks were successful
continuous-integration/drone/tag Build is passing
2025-05-13 09:51:02 +02:00
ebfc419985 Remove config for short messages 2025-05-13 09:46:56 +02:00
cae1dd4abb Place translations in var of bundles
All checks were successful
continuous-integration/drone/tag Build is passing
2025-03-19 09:34:58 +01:00
3359cd1c1a Update composer files
Some checks failed
continuous-integration/drone/tag Build is failing
2025-03-18 14:44:50 +01:00
27934cba56 Put ux-translator line back in package.json at root
Some checks failed
continuous-integration/drone/tag Build is failing
2025-03-18 14:33:11 +01:00
71340c03a1 Fix translation config
Some checks failed
continuous-integration/drone/tag Build is failing
2025-03-18 14:09:54 +01:00
fd98e6d0ef update yarn.lock
Some checks failed
continuous-integration/drone/tag Build is failing
2025-03-10 12:41:27 +01:00
0017993d18 Add a cache clear to the drone build, necessary to have translations
Some checks failed
continuous-integration/drone/tag Build is failing
2025-03-04 18:32:39 +01:00
eb8c837a8d dump translations in var chill bundles
Some checks failed
continuous-integration/drone/tag Build is failing
2025-03-04 17:34:57 +01:00
0648740c73 Delete translator.ts file at root
Some checks failed
continuous-integration/drone/tag Build is failing
2025-03-04 15:25:35 +01:00
10 changed files with 1588 additions and 1483 deletions

3
.changes/2.10.0.md Normal file
View File

@@ -0,0 +1,3 @@
## 2.10.0 - 2025-05-13
### Release
* Update chill bundles to 3.11.0

3
.changes/2.9.0.md Normal file
View File

@@ -0,0 +1,3 @@
## 2.9.0 - 2025-03-18
### Release
* Update chill bundles to v3.10.3

View File

@@ -32,6 +32,7 @@ steps:
pull: always pull: always
commands: commands:
- composer install --no-scripts --no-interaction - composer install --no-scripts --no-interaction
- bin/console cache:clear
depends_on: depends_on:
- build-base-image - build-base-image

View File

@@ -6,6 +6,14 @@ adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html),
and is generated by [Changie](https://github.com/miniscruff/changie). and is generated by [Changie](https://github.com/miniscruff/changie).
## 2.10.0 - 2025-05-13
### Release
* Update chill bundles to 3.11.0
## 2.9.0 - 2025-03-18
### Release
* Update chill bundles to v3.10.3
## 2.8.0 - 2025-03-04 ## 2.8.0 - 2025-03-04
### Release ### Release
* Update chill bundles to v3.9.2 * Update chill bundles to v3.9.2

View File

@@ -1,8 +0,0 @@
import { trans, getLocale, setLocale, setLocaleFallbacks } from '@symfony/ux-translator';
setLocaleFallbacks({"en": "fr", "nl": "fr", "fr": "en"});
setLocale('fr');
export { trans };
export * from "../var/translations";

View File

@@ -9,7 +9,7 @@
"ext-iconv": "*", "ext-iconv": "*",
"champs-libres/wopi-bundle": "dev-master@dev", "champs-libres/wopi-bundle": "dev-master@dev",
"champs-libres/wopi-lib": "dev-master@dev", "champs-libres/wopi-lib": "dev-master@dev",
"chill-project/chill-bundles": "3.9.2", "chill-project/chill-bundles": "3.11.0",
"chill-project/chill-deploy": "^1.0", "chill-project/chill-deploy": "^1.0",
"graylog2/gelf-php": "^2.0", "graylog2/gelf-php": "^2.0",
"symfony/console": "5.4.*", "symfony/console": "5.4.*",

465
composer.lock generated

File diff suppressed because it is too large Load Diff

View File

@@ -12,8 +12,6 @@ chill_main:
twilio_sid: '%env(resolve:TWILIO_SID)%' twilio_sid: '%env(resolve:TWILIO_SID)%'
twilio_secret: '%env(resolve:TWILIO_SECRET)%' twilio_secret: '%env(resolve:TWILIO_SECRET)%'
default_carrier_code: '%env(resolve:DEFAULT_CARRIER_CODE)%' default_carrier_code: '%env(resolve:DEFAULT_CARRIER_CODE)%'
short_messages:
dsn: '%env(string:SHORT_MESSAGE_DSN)%'
acl: acl:
form_show_scopes: true form_show_scopes: true
form_show_centers: true form_show_centers: true

View File

@@ -1,3 +1,3 @@
ux_translator: ux_translator:
# The directory where the JavaScript translations are dumped # The directory where the JavaScript translations are dumped
dump_directory: '%kernel.project_dir%/var/translations' dump_directory: '%kernel.project_dir%/vendor/chill-project/chill-bundles/var/translations'

2577
yarn.lock

File diff suppressed because it is too large Load Diff