mirror of
https://github.com/Part-DB/Part-DB-server.git
synced 2025-06-20 17:15:51 +02:00
Use symfony/ux-translator to translate password_strength_estimator badges
This commit is contained in:
parent
bfd82fb415
commit
ce064a0b37
15 changed files with 269 additions and 601 deletions
|
@ -25,6 +25,8 @@ import * as zxcvbnEnPackage from '@zxcvbn-ts/language-en';
|
||||||
import * as zxcvbnDePackage from '@zxcvbn-ts/language-de';
|
import * as zxcvbnDePackage from '@zxcvbn-ts/language-de';
|
||||||
import * as zxcvbnFrPackage from '@zxcvbn-ts/language-fr';
|
import * as zxcvbnFrPackage from '@zxcvbn-ts/language-fr';
|
||||||
import * as zxcvbnJaPackage from '@zxcvbn-ts/language-ja';
|
import * as zxcvbnJaPackage from '@zxcvbn-ts/language-ja';
|
||||||
|
import {trans, USER_PASSWORD_STRENGTH_VERY_WEAK, USER_PASSWORD_STRENGTH_WEAK, USER_PASSWORD_STRENGTH_MEDIUM,
|
||||||
|
USER_PASSWORD_STRENGTH_STRONG, USER_PASSWORD_STRENGTH_VERY_STRONG} from '../../translator.js';
|
||||||
|
|
||||||
/* stimulusFetch: 'lazy' */
|
/* stimulusFetch: 'lazy' */
|
||||||
export default class extends Controller {
|
export default class extends Controller {
|
||||||
|
@ -87,27 +89,27 @@ export default class extends Controller {
|
||||||
|
|
||||||
switch (level) {
|
switch (level) {
|
||||||
case 0:
|
case 0:
|
||||||
text = "Very weak";
|
text = trans(USER_PASSWORD_STRENGTH_VERY_WEAK);
|
||||||
classes = "bg-danger badge-danger";
|
classes = "bg-danger badge-danger";
|
||||||
break;
|
break;
|
||||||
case 1:
|
case 1:
|
||||||
text = "Weak";
|
text = trans(USER_PASSWORD_STRENGTH_WEAK);
|
||||||
classes = "bg-warning badge-warning";
|
classes = "bg-warning badge-warning";
|
||||||
break;
|
break;
|
||||||
case 2:
|
case 2:
|
||||||
text = "Medium";
|
text = trans(USER_PASSWORD_STRENGTH_MEDIUM)
|
||||||
classes = "bg-info badge-info";
|
classes = "bg-info badge-info";
|
||||||
break;
|
break;
|
||||||
case 3:
|
case 3:
|
||||||
text = "Strong";
|
text = trans(USER_PASSWORD_STRENGTH_STRONG);
|
||||||
classes = "bg-primary badge-primary";
|
classes = "bg-primary badge-primary";
|
||||||
break;
|
break;
|
||||||
case 4:
|
case 4:
|
||||||
text = "Very strong";
|
text = trans(USER_PASSWORD_STRENGTH_VERY_STRONG);
|
||||||
classes = "bg-success badge-success";
|
classes = "bg-success badge-success";
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
text = "Unknown";
|
text = "???";
|
||||||
classes = "bg-secondary badge-secondary";
|
classes = "bg-secondary badge-secondary";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
16
assets/translator.js
Normal file
16
assets/translator.js
Normal file
|
@ -0,0 +1,16 @@
|
||||||
|
import { localeFallbacks } from '../var/translations/configuration';
|
||||||
|
import { trans, getLocale, setLocale, setLocaleFallbacks } from '@symfony/ux-translator';
|
||||||
|
/*
|
||||||
|
* This file is part of the Symfony UX Translator package.
|
||||||
|
*
|
||||||
|
* If folder "../var/translations" does not exist, or some translations are missing,
|
||||||
|
* you must warmup your Symfony cache to refresh JavaScript translations.
|
||||||
|
*
|
||||||
|
* If you use TypeScript, you can rename this file to "translator.ts" to take advantage of types checking.
|
||||||
|
*/
|
||||||
|
|
||||||
|
setLocaleFallbacks(localeFallbacks);
|
||||||
|
|
||||||
|
export { trans };
|
||||||
|
|
||||||
|
export * from '../var/translations';
|
|
@ -66,6 +66,7 @@
|
||||||
"symfony/serializer": "6.3.*",
|
"symfony/serializer": "6.3.*",
|
||||||
"symfony/translation": "6.3.*",
|
"symfony/translation": "6.3.*",
|
||||||
"symfony/twig-bundle": "6.3.*",
|
"symfony/twig-bundle": "6.3.*",
|
||||||
|
"symfony/ux-translator": "2.x-dev",
|
||||||
"symfony/ux-turbo": "^2.0",
|
"symfony/ux-turbo": "^2.0",
|
||||||
"symfony/validator": "6.3.*",
|
"symfony/validator": "6.3.*",
|
||||||
"symfony/web-link": "6.3.*",
|
"symfony/web-link": "6.3.*",
|
||||||
|
|
130
composer.lock
generated
130
composer.lock
generated
|
@ -4,7 +4,7 @@
|
||||||
"Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
|
"Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
|
||||||
"This file is @generated automatically"
|
"This file is @generated automatically"
|
||||||
],
|
],
|
||||||
"content-hash": "a8ee56e1ebdd203018f921be240029ca",
|
"content-hash": "28e49fed0a1eb5f33d7ca39a19ba2fff",
|
||||||
"packages": [
|
"packages": [
|
||||||
{
|
{
|
||||||
"name": "beberlei/assert",
|
"name": "beberlei/assert",
|
||||||
|
@ -923,16 +923,16 @@
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "doctrine/doctrine-bundle",
|
"name": "doctrine/doctrine-bundle",
|
||||||
"version": "2.10.0",
|
"version": "2.10.1",
|
||||||
"source": {
|
"source": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/doctrine/DoctrineBundle.git",
|
"url": "https://github.com/doctrine/DoctrineBundle.git",
|
||||||
"reference": "b2ec6c2668f6dc514e8bf51257d19c7c19398afe"
|
"reference": "f9d59c90b6f525dfc2a2064a695cb56e0ab40311"
|
||||||
},
|
},
|
||||||
"dist": {
|
"dist": {
|
||||||
"type": "zip",
|
"type": "zip",
|
||||||
"url": "https://api.github.com/repos/doctrine/DoctrineBundle/zipball/b2ec6c2668f6dc514e8bf51257d19c7c19398afe",
|
"url": "https://api.github.com/repos/doctrine/DoctrineBundle/zipball/f9d59c90b6f525dfc2a2064a695cb56e0ab40311",
|
||||||
"reference": "b2ec6c2668f6dc514e8bf51257d19c7c19398afe",
|
"reference": "f9d59c90b6f525dfc2a2064a695cb56e0ab40311",
|
||||||
"shasum": ""
|
"shasum": ""
|
||||||
},
|
},
|
||||||
"require": {
|
"require": {
|
||||||
|
@ -1019,7 +1019,7 @@
|
||||||
],
|
],
|
||||||
"support": {
|
"support": {
|
||||||
"issues": "https://github.com/doctrine/DoctrineBundle/issues",
|
"issues": "https://github.com/doctrine/DoctrineBundle/issues",
|
||||||
"source": "https://github.com/doctrine/DoctrineBundle/tree/2.10.0"
|
"source": "https://github.com/doctrine/DoctrineBundle/tree/2.10.1"
|
||||||
},
|
},
|
||||||
"funding": [
|
"funding": [
|
||||||
{
|
{
|
||||||
|
@ -1035,7 +1035,7 @@
|
||||||
"type": "tidelift"
|
"type": "tidelift"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"time": "2023-06-05T14:43:41+00:00"
|
"time": "2023-06-28T07:47:41+00:00"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "doctrine/doctrine-migrations-bundle",
|
"name": "doctrine/doctrine-migrations-bundle",
|
||||||
|
@ -5972,16 +5972,16 @@
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "spatie/db-dumper",
|
"name": "spatie/db-dumper",
|
||||||
"version": "3.3.1",
|
"version": "3.4.0",
|
||||||
"source": {
|
"source": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/spatie/db-dumper.git",
|
"url": "https://github.com/spatie/db-dumper.git",
|
||||||
"reference": "3b9fd47899bf6a59d3452392121c9ce675d55d34"
|
"reference": "bbd5ae0f331d47e6534eb307e256c11a65c8e24a"
|
||||||
},
|
},
|
||||||
"dist": {
|
"dist": {
|
||||||
"type": "zip",
|
"type": "zip",
|
||||||
"url": "https://api.github.com/repos/spatie/db-dumper/zipball/3b9fd47899bf6a59d3452392121c9ce675d55d34",
|
"url": "https://api.github.com/repos/spatie/db-dumper/zipball/bbd5ae0f331d47e6534eb307e256c11a65c8e24a",
|
||||||
"reference": "3b9fd47899bf6a59d3452392121c9ce675d55d34",
|
"reference": "bbd5ae0f331d47e6534eb307e256c11a65c8e24a",
|
||||||
"shasum": ""
|
"shasum": ""
|
||||||
},
|
},
|
||||||
"require": {
|
"require": {
|
||||||
|
@ -6019,7 +6019,7 @@
|
||||||
"spatie"
|
"spatie"
|
||||||
],
|
],
|
||||||
"support": {
|
"support": {
|
||||||
"source": "https://github.com/spatie/db-dumper/tree/3.3.1"
|
"source": "https://github.com/spatie/db-dumper/tree/3.4.0"
|
||||||
},
|
},
|
||||||
"funding": [
|
"funding": [
|
||||||
{
|
{
|
||||||
|
@ -6031,7 +6031,7 @@
|
||||||
"type": "github"
|
"type": "github"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"time": "2023-05-02T11:05:31+00:00"
|
"time": "2023-06-27T08:34:52+00:00"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "spomky-labs/cbor-bundle",
|
"name": "spomky-labs/cbor-bundle",
|
||||||
|
@ -11524,6 +11524,83 @@
|
||||||
],
|
],
|
||||||
"time": "2023-04-08T07:25:02+00:00"
|
"time": "2023-04-08T07:25:02+00:00"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "symfony/ux-translator",
|
||||||
|
"version": "2.x-dev",
|
||||||
|
"source": {
|
||||||
|
"type": "git",
|
||||||
|
"url": "https://github.com/symfony/ux-translator.git",
|
||||||
|
"reference": "9f49e121558d7c1fab134031b878dfc884775da0"
|
||||||
|
},
|
||||||
|
"dist": {
|
||||||
|
"type": "zip",
|
||||||
|
"url": "https://api.github.com/repos/symfony/ux-translator/zipball/9f49e121558d7c1fab134031b878dfc884775da0",
|
||||||
|
"reference": "9f49e121558d7c1fab134031b878dfc884775da0",
|
||||||
|
"shasum": ""
|
||||||
|
},
|
||||||
|
"require": {
|
||||||
|
"php": ">=8.1",
|
||||||
|
"symfony/console": "^5.4|^6.0",
|
||||||
|
"symfony/filesystem": "^5.4|^6.0",
|
||||||
|
"symfony/string": "^5.4|^6.0",
|
||||||
|
"symfony/translation": "^5.4|^6.0"
|
||||||
|
},
|
||||||
|
"require-dev": {
|
||||||
|
"symfony/framework-bundle": "^5.4|^6.0",
|
||||||
|
"symfony/phpunit-bridge": "^5.2|^6.0",
|
||||||
|
"symfony/var-dumper": "^5.4|^6.0"
|
||||||
|
},
|
||||||
|
"default-branch": true,
|
||||||
|
"type": "symfony-bundle",
|
||||||
|
"extra": {
|
||||||
|
"thanks": {
|
||||||
|
"name": "symfony/ux",
|
||||||
|
"url": "https://github.com/symfony/ux"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"autoload": {
|
||||||
|
"psr-4": {
|
||||||
|
"Symfony\\UX\\Translator\\": "src/"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"notification-url": "https://packagist.org/downloads/",
|
||||||
|
"license": [
|
||||||
|
"MIT"
|
||||||
|
],
|
||||||
|
"authors": [
|
||||||
|
{
|
||||||
|
"name": "Hugo Alliaume",
|
||||||
|
"email": "hugo@alliau.me"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Symfony Community",
|
||||||
|
"homepage": "https://symfony.com/contributors"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"description": "Exposes Symfony Translations directly to JavaScript.",
|
||||||
|
"homepage": "https://symfony.com",
|
||||||
|
"keywords": [
|
||||||
|
"symfony-ux"
|
||||||
|
],
|
||||||
|
"support": {
|
||||||
|
"source": "https://github.com/symfony/ux-translator/tree/2.x"
|
||||||
|
},
|
||||||
|
"funding": [
|
||||||
|
{
|
||||||
|
"url": "https://symfony.com/sponsor",
|
||||||
|
"type": "custom"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://github.com/fabpot",
|
||||||
|
"type": "github"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
|
||||||
|
"type": "tidelift"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"time": "2023-06-19T18:55:23+00:00"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "symfony/ux-turbo",
|
"name": "symfony/ux-turbo",
|
||||||
"version": "v2.9.1",
|
"version": "v2.9.1",
|
||||||
|
@ -14675,17 +14752,17 @@
|
||||||
"source": {
|
"source": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/Roave/SecurityAdvisories.git",
|
"url": "https://github.com/Roave/SecurityAdvisories.git",
|
||||||
"reference": "237f1821ece806de66072813d8cbe5bdbc8f3117"
|
"reference": "3b77f2101068074f1c98977cc34ef939bbce3d19"
|
||||||
},
|
},
|
||||||
"dist": {
|
"dist": {
|
||||||
"type": "zip",
|
"type": "zip",
|
||||||
"url": "https://api.github.com/repos/Roave/SecurityAdvisories/zipball/237f1821ece806de66072813d8cbe5bdbc8f3117",
|
"url": "https://api.github.com/repos/Roave/SecurityAdvisories/zipball/3b77f2101068074f1c98977cc34ef939bbce3d19",
|
||||||
"reference": "237f1821ece806de66072813d8cbe5bdbc8f3117",
|
"reference": "3b77f2101068074f1c98977cc34ef939bbce3d19",
|
||||||
"shasum": ""
|
"shasum": ""
|
||||||
},
|
},
|
||||||
"conflict": {
|
"conflict": {
|
||||||
"3f/pygmentize": "<1.2",
|
"3f/pygmentize": "<1.2",
|
||||||
"admidio/admidio": "<4.2.8",
|
"admidio/admidio": "<4.2.9",
|
||||||
"adodb/adodb-php": "<=5.20.20|>=5.21,<=5.21.3",
|
"adodb/adodb-php": "<=5.20.20|>=5.21,<=5.21.3",
|
||||||
"aheinze/cockpit": "<=2.2.1",
|
"aheinze/cockpit": "<=2.2.1",
|
||||||
"akaunting/akaunting": "<2.1.13",
|
"akaunting/akaunting": "<2.1.13",
|
||||||
|
@ -14719,7 +14796,7 @@
|
||||||
"baserproject/basercms": "<4.7.5",
|
"baserproject/basercms": "<4.7.5",
|
||||||
"bassjobsen/bootstrap-3-typeahead": ">4.0.2",
|
"bassjobsen/bootstrap-3-typeahead": ">4.0.2",
|
||||||
"bigfork/silverstripe-form-capture": ">=3,<3.1.1",
|
"bigfork/silverstripe-form-capture": ">=3,<3.1.1",
|
||||||
"billz/raspap-webgui": "<=2.6.6",
|
"billz/raspap-webgui": "<2.8.9",
|
||||||
"bk2k/bootstrap-package": ">=7.1,<7.1.2|>=8,<8.0.8|>=9,<9.0.4|>=9.1,<9.1.3|>=10,<10.0.10|>=11,<11.0.3",
|
"bk2k/bootstrap-package": ">=7.1,<7.1.2|>=8,<8.0.8|>=9,<9.0.4|>=9.1,<9.1.3|>=10,<10.0.10|>=11,<11.0.3",
|
||||||
"bmarshall511/wordpress_zero_spam": "<5.2.13",
|
"bmarshall511/wordpress_zero_spam": "<5.2.13",
|
||||||
"bolt/bolt": "<3.7.2",
|
"bolt/bolt": "<3.7.2",
|
||||||
|
@ -14948,7 +15025,7 @@
|
||||||
"modx/revolution": "<= 2.8.3-pl|<2.8",
|
"modx/revolution": "<= 2.8.3-pl|<2.8",
|
||||||
"mojo42/jirafeau": "<4.4",
|
"mojo42/jirafeau": "<4.4",
|
||||||
"monolog/monolog": ">=1.8,<1.12",
|
"monolog/monolog": ">=1.8,<1.12",
|
||||||
"moodle/moodle": "<4.2-rc.2|= 3.11",
|
"moodle/moodle": "<4.2-rc.2|= 4.2.0|= 3.11",
|
||||||
"mustache/mustache": ">=2,<2.14.1",
|
"mustache/mustache": ">=2,<2.14.1",
|
||||||
"namshi/jose": "<2.2",
|
"namshi/jose": "<2.2",
|
||||||
"neoan3-apps/template": "<1.1.1",
|
"neoan3-apps/template": "<1.1.1",
|
||||||
|
@ -15283,7 +15360,7 @@
|
||||||
"type": "tidelift"
|
"type": "tidelift"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"time": "2023-06-22T20:04:46+00:00"
|
"time": "2023-06-28T00:17:41+00:00"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "sebastian/diff",
|
"name": "sebastian/diff",
|
||||||
|
@ -15939,16 +16016,16 @@
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "vimeo/psalm",
|
"name": "vimeo/psalm",
|
||||||
"version": "5.13.0",
|
"version": "5.13.1",
|
||||||
"source": {
|
"source": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/vimeo/psalm.git",
|
"url": "https://github.com/vimeo/psalm.git",
|
||||||
"reference": "a0a9c27630bcf8301ee78cb06741d2907d8c9fef"
|
"reference": "086b94371304750d1c673315321a55d15fc59015"
|
||||||
},
|
},
|
||||||
"dist": {
|
"dist": {
|
||||||
"type": "zip",
|
"type": "zip",
|
||||||
"url": "https://api.github.com/repos/vimeo/psalm/zipball/a0a9c27630bcf8301ee78cb06741d2907d8c9fef",
|
"url": "https://api.github.com/repos/vimeo/psalm/zipball/086b94371304750d1c673315321a55d15fc59015",
|
||||||
"reference": "a0a9c27630bcf8301ee78cb06741d2907d8c9fef",
|
"reference": "086b94371304750d1c673315321a55d15fc59015",
|
||||||
"shasum": ""
|
"shasum": ""
|
||||||
},
|
},
|
||||||
"require": {
|
"require": {
|
||||||
|
@ -16039,15 +16116,16 @@
|
||||||
],
|
],
|
||||||
"support": {
|
"support": {
|
||||||
"issues": "https://github.com/vimeo/psalm/issues",
|
"issues": "https://github.com/vimeo/psalm/issues",
|
||||||
"source": "https://github.com/vimeo/psalm/tree/5.13.0"
|
"source": "https://github.com/vimeo/psalm/tree/5.13.1"
|
||||||
},
|
},
|
||||||
"time": "2023-06-24T17:05:12+00:00"
|
"time": "2023-06-27T16:39:49+00:00"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"aliases": [],
|
"aliases": [],
|
||||||
"minimum-stability": "stable",
|
"minimum-stability": "stable",
|
||||||
"stability-flags": {
|
"stability-flags": {
|
||||||
"florianv/swap-bundle": 20,
|
"florianv/swap-bundle": 20,
|
||||||
|
"symfony/ux-translator": 20,
|
||||||
"roave/security-advisories": 20
|
"roave/security-advisories": 20
|
||||||
},
|
},
|
||||||
"prefer-stable": false,
|
"prefer-stable": false,
|
||||||
|
|
|
@ -28,4 +28,5 @@ return [
|
||||||
Webauthn\Bundle\WebauthnBundle::class => ['all' => true],
|
Webauthn\Bundle\WebauthnBundle::class => ['all' => true],
|
||||||
Nbgrp\OneloginSamlBundle\NbgrpOneloginSamlBundle::class => ['all' => true],
|
Nbgrp\OneloginSamlBundle\NbgrpOneloginSamlBundle::class => ['all' => true],
|
||||||
Symfony\UX\StimulusBundle\StimulusBundle::class => ['all' => true],
|
Symfony\UX\StimulusBundle\StimulusBundle::class => ['all' => true],
|
||||||
|
Symfony\UX\Translator\UxTranslatorBundle::class => ['all' => true],
|
||||||
];
|
];
|
||||||
|
|
3
config/packages/ux_translator.yaml
Normal file
3
config/packages/ux_translator.yaml
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
ux_translator:
|
||||||
|
# The directory where the JavaScript translations are dumped
|
||||||
|
dump_directory: '%kernel.project_dir%/var/translations'
|
|
@ -7,10 +7,12 @@
|
||||||
"@hotwired/turbo": "^7.0.1",
|
"@hotwired/turbo": "^7.0.1",
|
||||||
"@popperjs/core": "^2.10.2",
|
"@popperjs/core": "^2.10.2",
|
||||||
"@symfony/stimulus-bridge": "^3.2.0",
|
"@symfony/stimulus-bridge": "^3.2.0",
|
||||||
|
"@symfony/ux-translator": "file:vendor/symfony/ux-translator/assets",
|
||||||
"@symfony/ux-turbo": "file:vendor/symfony/ux-turbo/assets",
|
"@symfony/ux-turbo": "file:vendor/symfony/ux-turbo/assets",
|
||||||
"@symfony/webpack-encore": "^4.1.0",
|
"@symfony/webpack-encore": "^4.1.0",
|
||||||
"bootstrap": "^5.1.3",
|
"bootstrap": "^5.1.3",
|
||||||
"core-js": "^3.23.0",
|
"core-js": "^3.23.0",
|
||||||
|
"intl-messageformat": "^10.2.5",
|
||||||
"jquery": "^3.5.1",
|
"jquery": "^3.5.1",
|
||||||
"popper.js": "^1.14.7",
|
"popper.js": "^1.14.7",
|
||||||
"regenerator-runtime": "^0.13.9",
|
"regenerator-runtime": "^0.13.9",
|
||||||
|
|
15
symfony.lock
15
symfony.lock
|
@ -731,6 +731,21 @@
|
||||||
"./config/packages/uid.yaml"
|
"./config/packages/uid.yaml"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
"symfony/ux-translator": {
|
||||||
|
"version": "2.9",
|
||||||
|
"recipe": {
|
||||||
|
"repo": "github.com/symfony/recipes",
|
||||||
|
"branch": "main",
|
||||||
|
"version": "2.9",
|
||||||
|
"ref": "bc396565cc4cab95692dd6df810553dc22e352e1"
|
||||||
|
},
|
||||||
|
"files": [
|
||||||
|
"./assets/translator.js",
|
||||||
|
"./config/packages/ux_translator.yaml",
|
||||||
|
"./var/translations/configuration.js",
|
||||||
|
"./var/translations/index.js"
|
||||||
|
]
|
||||||
|
},
|
||||||
"symfony/ux-turbo": {
|
"symfony/ux-turbo": {
|
||||||
"version": "v2.0.1"
|
"version": "v2.0.1"
|
||||||
},
|
},
|
||||||
|
|
|
@ -1484,28 +1484,6 @@ Subelemente werden beim Löschen nach oben verschoben.</target>
|
||||||
<target>Forum</target>
|
<target>Forum</target>
|
||||||
</segment>
|
</segment>
|
||||||
</unit>
|
</unit>
|
||||||
<unit id="SV0IxK0" name=" homepage.basedOn ">
|
|
||||||
<notes>
|
|
||||||
<note category="file-source" priority="1">Part-DB1\templates\homepage.html.twig:36</note>
|
|
||||||
<note priority="1">Part-DB1\templates\homepage.html.twig:36</note>
|
|
||||||
<note priority="1">templates\homepage.html.twig:33</note>
|
|
||||||
</notes>
|
|
||||||
<segment>
|
|
||||||
<source> homepage.basedOn </source>
|
|
||||||
<target> Basierend auf dem originale Part-DB von </target>
|
|
||||||
</segment>
|
|
||||||
</unit>
|
|
||||||
<unit id="Qw1sChr" name=" homepage.others ">
|
|
||||||
<notes>
|
|
||||||
<note category="file-source" priority="1">Part-DB1\templates\homepage.html.twig:39</note>
|
|
||||||
<note priority="1">Part-DB1\templates\homepage.html.twig:39</note>
|
|
||||||
<note priority="1">templates\homepage.html.twig:36</note>
|
|
||||||
</notes>
|
|
||||||
<segment>
|
|
||||||
<source> homepage.others </source>
|
|
||||||
<target> und anderen </target>
|
|
||||||
</segment>
|
|
||||||
</unit>
|
|
||||||
<unit id="jOOAjnK" name="homepage.last_activity">
|
<unit id="jOOAjnK" name="homepage.last_activity">
|
||||||
<notes>
|
<notes>
|
||||||
<note category="file-source" priority="1">Part-DB1\templates\homepage.html.twig:45</note>
|
<note category="file-source" priority="1">Part-DB1\templates\homepage.html.twig:45</note>
|
||||||
|
@ -6400,52 +6378,6 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr
|
||||||
<target>Serverweites Theme</target>
|
<target>Serverweites Theme</target>
|
||||||
</segment>
|
</segment>
|
||||||
</unit>
|
</unit>
|
||||||
<unit id="CPJxiHz" name="M">
|
|
||||||
<notes>
|
|
||||||
<note priority="1">Part-DB1\src\Form\Type\SIUnitType.php:141</note>
|
|
||||||
<note category="state" priority="1">obsolete</note>
|
|
||||||
</notes>
|
|
||||||
<segment>
|
|
||||||
<source>M</source>
|
|
||||||
<target>M</target>
|
|
||||||
</segment>
|
|
||||||
</unit>
|
|
||||||
<unit id="glTDKak" name="k">
|
|
||||||
<notes>
|
|
||||||
<note priority="1">Part-DB1\src\Form\Type\SIUnitType.php:141</note>
|
|
||||||
<note category="state" priority="1">obsolete</note>
|
|
||||||
</notes>
|
|
||||||
<segment>
|
|
||||||
<source>k</source>
|
|
||||||
<target>k</target>
|
|
||||||
</segment>
|
|
||||||
</unit>
|
|
||||||
<unit id="47DEQpj" name="">
|
|
||||||
<segment>
|
|
||||||
<source></source>
|
|
||||||
<target> </target>
|
|
||||||
</segment>
|
|
||||||
</unit>
|
|
||||||
<unit id="YsZqel3" name="m">
|
|
||||||
<notes>
|
|
||||||
<note priority="1">Part-DB1\src\Form\Type\SIUnitType.php:141</note>
|
|
||||||
<note category="state" priority="1">obsolete</note>
|
|
||||||
</notes>
|
|
||||||
<segment>
|
|
||||||
<source>m</source>
|
|
||||||
<target>m</target>
|
|
||||||
</segment>
|
|
||||||
</unit>
|
|
||||||
<unit id="WgcvG_T" name="µ">
|
|
||||||
<notes>
|
|
||||||
<note priority="1">Part-DB1\src\Form\Type\SIUnitType.php:141</note>
|
|
||||||
<note category="state" priority="1">obsolete</note>
|
|
||||||
</notes>
|
|
||||||
<segment>
|
|
||||||
<source>µ</source>
|
|
||||||
<target>µ</target>
|
|
||||||
</segment>
|
|
||||||
</unit>
|
|
||||||
<unit id="oHq_Mt5" name="log.user_login.ip">
|
<unit id="oHq_Mt5" name="log.user_login.ip">
|
||||||
<notes>
|
<notes>
|
||||||
<note priority="1">Part-DB1\src\Services\LogSystem\LogEntryExtraFormatter.php:100</note>
|
<note priority="1">Part-DB1\src\Services\LogSystem\LogEntryExtraFormatter.php:100</note>
|
||||||
|
@ -7527,17 +7459,6 @@ Element 3</target>
|
||||||
<target>Änderungen verwerfen</target>
|
<target>Änderungen verwerfen</target>
|
||||||
</segment>
|
</segment>
|
||||||
</unit>
|
</unit>
|
||||||
<unit id="eG9UnaY" name="part.withdraw.caption:">
|
|
||||||
<notes>
|
|
||||||
<note priority="1">templates\Parts\show_part_info.html.twig:161</note>
|
|
||||||
<note priority="1">obsolete</note>
|
|
||||||
<note category="state" priority="1">obsolete</note>
|
|
||||||
</notes>
|
|
||||||
<segment>
|
|
||||||
<source>part.withdraw.caption:</source>
|
|
||||||
<target>Bauteile entnehmen:</target>
|
|
||||||
</segment>
|
|
||||||
</unit>
|
|
||||||
<unit id="7TiUzGF" name="part.withdraw.btn">
|
<unit id="7TiUzGF" name="part.withdraw.btn">
|
||||||
<notes>
|
<notes>
|
||||||
<note priority="1">templates\Parts\show_part_info.html.twig:166</note>
|
<note priority="1">templates\Parts\show_part_info.html.twig:166</note>
|
||||||
|
@ -7648,26 +7569,6 @@ Element 3</target>
|
||||||
<target>z.B. 10</target>
|
<target>z.B. 10</target>
|
||||||
</segment>
|
</segment>
|
||||||
</unit>
|
</unit>
|
||||||
<unit id="gAFUu2a" name="homepage.basedOn">
|
|
||||||
<notes>
|
|
||||||
<note priority="1">obsolete</note>
|
|
||||||
<note category="state" priority="1">obsolete</note>
|
|
||||||
</notes>
|
|
||||||
<segment>
|
|
||||||
<source>homepage.basedOn</source>
|
|
||||||
<target>basierend auf Arbeit von</target>
|
|
||||||
</segment>
|
|
||||||
</unit>
|
|
||||||
<unit id="PlY3xmo" name="homepage.others">
|
|
||||||
<notes>
|
|
||||||
<note priority="1">obsolete</note>
|
|
||||||
<note category="state" priority="1">obsolete</note>
|
|
||||||
</notes>
|
|
||||||
<segment>
|
|
||||||
<source>homepage.others</source>
|
|
||||||
<target>und anderen</target>
|
|
||||||
</segment>
|
|
||||||
</unit>
|
|
||||||
<unit id="cpRdMwo" name="part.order.price_per">
|
<unit id="cpRdMwo" name="part.order.price_per">
|
||||||
<notes>
|
<notes>
|
||||||
<note priority="1">obsolete</note>
|
<note priority="1">obsolete</note>
|
||||||
|
@ -8780,15 +8681,6 @@ Element 3</target>
|
||||||
<target>Alte Versionsstände anzeigen (Zeitreisen)</target>
|
<target>Alte Versionsstände anzeigen (Zeitreisen)</target>
|
||||||
</segment>
|
</segment>
|
||||||
</unit>
|
</unit>
|
||||||
<unit id="AiBoPxF" name="log.type.">
|
|
||||||
<notes>
|
|
||||||
<note category="state" priority="1">obsolete</note>
|
|
||||||
</notes>
|
|
||||||
<segment>
|
|
||||||
<source>log.type.</source>
|
|
||||||
<target>__log.type.</target>
|
|
||||||
</segment>
|
|
||||||
</unit>
|
|
||||||
<unit id="WjnV7iC" name="tfa_u2f.key_added_successful">
|
<unit id="WjnV7iC" name="tfa_u2f.key_added_successful">
|
||||||
<notes>
|
<notes>
|
||||||
<note category="state" priority="1">obsolete</note>
|
<note category="state" priority="1">obsolete</note>
|
||||||
|
@ -11447,5 +11339,35 @@ Element 3</target>
|
||||||
<target>Auto (decided on system settings)</target>
|
<target>Auto (decided on system settings)</target>
|
||||||
</segment>
|
</segment>
|
||||||
</unit>
|
</unit>
|
||||||
|
<unit id="RdFvZsb" name="user.password_strength.very_weak">
|
||||||
|
<segment>
|
||||||
|
<source>user.password_strength.very_weak</source>
|
||||||
|
<target>Sehr schwach</target>
|
||||||
|
</segment>
|
||||||
|
</unit>
|
||||||
|
<unit id="IBjmblZ" name="user.password_strength.weak">
|
||||||
|
<segment>
|
||||||
|
<source>user.password_strength.weak</source>
|
||||||
|
<target>Schwach</target>
|
||||||
|
</segment>
|
||||||
|
</unit>
|
||||||
|
<unit id="qSm_ID0" name="user.password_strength.medium">
|
||||||
|
<segment>
|
||||||
|
<source>user.password_strength.medium</source>
|
||||||
|
<target>Mittel</target>
|
||||||
|
</segment>
|
||||||
|
</unit>
|
||||||
|
<unit id="aWAaADS" name="user.password_strength.strong">
|
||||||
|
<segment>
|
||||||
|
<source>user.password_strength.strong</source>
|
||||||
|
<target>Stark</target>
|
||||||
|
</segment>
|
||||||
|
</unit>
|
||||||
|
<unit id="Wa9CStW" name="user.password_strength.very_strong">
|
||||||
|
<segment>
|
||||||
|
<source>user.password_strength.very_strong</source>
|
||||||
|
<target>Sehr stark</target>
|
||||||
|
</segment>
|
||||||
|
</unit>
|
||||||
</file>
|
</file>
|
||||||
</xliff>
|
</xliff>
|
||||||
|
|
|
@ -1535,11 +1535,5 @@
|
||||||
<target>Επεξεργασία</target>
|
<target>Επεξεργασία</target>
|
||||||
</segment>
|
</segment>
|
||||||
</unit>
|
</unit>
|
||||||
<unit id="47DEQpj" name="">
|
|
||||||
<segment>
|
|
||||||
<source/>
|
|
||||||
<target> </target>
|
|
||||||
</segment>
|
|
||||||
</unit>
|
|
||||||
</file>
|
</file>
|
||||||
</xliff>
|
</xliff>
|
||||||
|
|
|
@ -731,7 +731,7 @@
|
||||||
</notes>
|
</notes>
|
||||||
<segment>
|
<segment>
|
||||||
<source>user.edit.tfa.disable_tfa_message</source>
|
<source>user.edit.tfa.disable_tfa_message</source>
|
||||||
<target><![CDATA[This will disable <b>all active two-factor authentication methods of the user</b> and delete the <b>backup codes</b>!
|
<target><![CDATA[This will disable <b>all active two-factor authentication methods of the user</b> and delete the <b>backup codes</b>!
|
||||||
<br>
|
<br>
|
||||||
The user will have to set up all two-factor authentication methods again and print new backup codes! <br><br>
|
The user will have to set up all two-factor authentication methods again and print new backup codes! <br><br>
|
||||||
<b>Only do this if you are absolutely sure about the identity of the user (seeking help), otherwise the account could be compromised by an attacker!</b>]]></target>
|
<b>Only do this if you are absolutely sure about the identity of the user (seeking help), otherwise the account could be compromised by an attacker!</b>]]></target>
|
||||||
|
@ -1485,28 +1485,6 @@ Sub elements will be moved upwards.]]></target>
|
||||||
<target>Forum</target>
|
<target>Forum</target>
|
||||||
</segment>
|
</segment>
|
||||||
</unit>
|
</unit>
|
||||||
<unit id="SV0IxK0" name=" homepage.basedOn ">
|
|
||||||
<notes>
|
|
||||||
<note category="file-source" priority="1">Part-DB1\templates\homepage.html.twig:36</note>
|
|
||||||
<note priority="1">Part-DB1\templates\homepage.html.twig:36</note>
|
|
||||||
<note priority="1">templates\homepage.html.twig:33</note>
|
|
||||||
</notes>
|
|
||||||
<segment>
|
|
||||||
<source> homepage.basedOn </source>
|
|
||||||
<target> Based on the original Part-DB by </target>
|
|
||||||
</segment>
|
|
||||||
</unit>
|
|
||||||
<unit id="Qw1sChr" name=" homepage.others ">
|
|
||||||
<notes>
|
|
||||||
<note category="file-source" priority="1">Part-DB1\templates\homepage.html.twig:39</note>
|
|
||||||
<note priority="1">Part-DB1\templates\homepage.html.twig:39</note>
|
|
||||||
<note priority="1">templates\homepage.html.twig:36</note>
|
|
||||||
</notes>
|
|
||||||
<segment>
|
|
||||||
<source> homepage.others </source>
|
|
||||||
<target> and others </target>
|
|
||||||
</segment>
|
|
||||||
</unit>
|
|
||||||
<unit id="jOOAjnK" name="homepage.last_activity">
|
<unit id="jOOAjnK" name="homepage.last_activity">
|
||||||
<notes>
|
<notes>
|
||||||
<note category="file-source" priority="1">Part-DB1\templates\homepage.html.twig:45</note>
|
<note category="file-source" priority="1">Part-DB1\templates\homepage.html.twig:45</note>
|
||||||
|
@ -6401,52 +6379,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
|
||||||
<target>Serverwide Theme</target>
|
<target>Serverwide Theme</target>
|
||||||
</segment>
|
</segment>
|
||||||
</unit>
|
</unit>
|
||||||
<unit id="CPJxiHz" name="M">
|
|
||||||
<notes>
|
|
||||||
<note priority="1">Part-DB1\src\Form\Type\SIUnitType.php:141</note>
|
|
||||||
<note category="state" priority="1">obsolete</note>
|
|
||||||
</notes>
|
|
||||||
<segment>
|
|
||||||
<source>M</source>
|
|
||||||
<target>M</target>
|
|
||||||
</segment>
|
|
||||||
</unit>
|
|
||||||
<unit id="glTDKak" name="k">
|
|
||||||
<notes>
|
|
||||||
<note priority="1">Part-DB1\src\Form\Type\SIUnitType.php:141</note>
|
|
||||||
<note category="state" priority="1">obsolete</note>
|
|
||||||
</notes>
|
|
||||||
<segment>
|
|
||||||
<source>k</source>
|
|
||||||
<target>k</target>
|
|
||||||
</segment>
|
|
||||||
</unit>
|
|
||||||
<unit id="47DEQpj" name="">
|
|
||||||
<segment>
|
|
||||||
<source></source>
|
|
||||||
<target> </target>
|
|
||||||
</segment>
|
|
||||||
</unit>
|
|
||||||
<unit id="YsZqel3" name="m">
|
|
||||||
<notes>
|
|
||||||
<note priority="1">Part-DB1\src\Form\Type\SIUnitType.php:141</note>
|
|
||||||
<note category="state" priority="1">obsolete</note>
|
|
||||||
</notes>
|
|
||||||
<segment>
|
|
||||||
<source>m</source>
|
|
||||||
<target>m</target>
|
|
||||||
</segment>
|
|
||||||
</unit>
|
|
||||||
<unit id="WgcvG_T" name="µ">
|
|
||||||
<notes>
|
|
||||||
<note priority="1">Part-DB1\src\Form\Type\SIUnitType.php:141</note>
|
|
||||||
<note category="state" priority="1">obsolete</note>
|
|
||||||
</notes>
|
|
||||||
<segment>
|
|
||||||
<source>µ</source>
|
|
||||||
<target>µ</target>
|
|
||||||
</segment>
|
|
||||||
</unit>
|
|
||||||
<unit id="oHq_Mt5" name="log.user_login.ip">
|
<unit id="oHq_Mt5" name="log.user_login.ip">
|
||||||
<notes>
|
<notes>
|
||||||
<note priority="1">Part-DB1\src\Services\LogSystem\LogEntryExtraFormatter.php:100</note>
|
<note priority="1">Part-DB1\src\Services\LogSystem\LogEntryExtraFormatter.php:100</note>
|
||||||
|
@ -7531,17 +7464,6 @@ Element 3</target>
|
||||||
<target>Discard changes</target>
|
<target>Discard changes</target>
|
||||||
</segment>
|
</segment>
|
||||||
</unit>
|
</unit>
|
||||||
<unit id="eG9UnaY" name="part.withdraw.caption:">
|
|
||||||
<notes>
|
|
||||||
<note priority="1">templates\Parts\show_part_info.html.twig:161</note>
|
|
||||||
<note priority="1">obsolete</note>
|
|
||||||
<note category="state" priority="1">obsolete</note>
|
|
||||||
</notes>
|
|
||||||
<segment>
|
|
||||||
<source>part.withdraw.caption:</source>
|
|
||||||
<target>Withdraw parts:</target>
|
|
||||||
</segment>
|
|
||||||
</unit>
|
|
||||||
<unit id="7TiUzGF" name="part.withdraw.btn">
|
<unit id="7TiUzGF" name="part.withdraw.btn">
|
||||||
<notes>
|
<notes>
|
||||||
<note priority="1">templates\Parts\show_part_info.html.twig:166</note>
|
<note priority="1">templates\Parts\show_part_info.html.twig:166</note>
|
||||||
|
@ -7652,26 +7574,6 @@ Element 3</target>
|
||||||
<target>e.g. 5</target>
|
<target>e.g. 5</target>
|
||||||
</segment>
|
</segment>
|
||||||
</unit>
|
</unit>
|
||||||
<unit id="gAFUu2a" name="homepage.basedOn">
|
|
||||||
<notes>
|
|
||||||
<note priority="1">obsolete</note>
|
|
||||||
<note category="state" priority="1">obsolete</note>
|
|
||||||
</notes>
|
|
||||||
<segment>
|
|
||||||
<source>homepage.basedOn</source>
|
|
||||||
<target>Based on work of</target>
|
|
||||||
</segment>
|
|
||||||
</unit>
|
|
||||||
<unit id="PlY3xmo" name="homepage.others">
|
|
||||||
<notes>
|
|
||||||
<note priority="1">obsolete</note>
|
|
||||||
<note category="state" priority="1">obsolete</note>
|
|
||||||
</notes>
|
|
||||||
<segment>
|
|
||||||
<source>homepage.others</source>
|
|
||||||
<target>and others</target>
|
|
||||||
</segment>
|
|
||||||
</unit>
|
|
||||||
<unit id="cpRdMwo" name="part.order.price_per">
|
<unit id="cpRdMwo" name="part.order.price_per">
|
||||||
<notes>
|
<notes>
|
||||||
<note priority="1">obsolete</note>
|
<note priority="1">obsolete</note>
|
||||||
|
@ -8784,15 +8686,6 @@ Element 3</target>
|
||||||
<target>Show old element versions (time travel)</target>
|
<target>Show old element versions (time travel)</target>
|
||||||
</segment>
|
</segment>
|
||||||
</unit>
|
</unit>
|
||||||
<unit id="AiBoPxF" name="log.type.">
|
|
||||||
<notes>
|
|
||||||
<note category="state" priority="1">obsolete</note>
|
|
||||||
</notes>
|
|
||||||
<segment>
|
|
||||||
<source>log.type.</source>
|
|
||||||
<target>__log.type.</target>
|
|
||||||
</segment>
|
|
||||||
</unit>
|
|
||||||
<unit id="WjnV7iC" name="tfa_u2f.key_added_successful">
|
<unit id="WjnV7iC" name="tfa_u2f.key_added_successful">
|
||||||
<notes>
|
<notes>
|
||||||
<note category="state" priority="1">obsolete</note>
|
<note category="state" priority="1">obsolete</note>
|
||||||
|
@ -11469,5 +11362,35 @@ Element 3</target>
|
||||||
<target>No text content given! The labels will remain empty.</target>
|
<target>No text content given! The labels will remain empty.</target>
|
||||||
</segment>
|
</segment>
|
||||||
</unit>
|
</unit>
|
||||||
|
<unit id="RdFvZsb" name="user.password_strength.very_weak">
|
||||||
|
<segment>
|
||||||
|
<source>user.password_strength.very_weak</source>
|
||||||
|
<target>Very weak</target>
|
||||||
|
</segment>
|
||||||
|
</unit>
|
||||||
|
<unit id="IBjmblZ" name="user.password_strength.weak">
|
||||||
|
<segment>
|
||||||
|
<source>user.password_strength.weak</source>
|
||||||
|
<target>Weak</target>
|
||||||
|
</segment>
|
||||||
|
</unit>
|
||||||
|
<unit id="qSm_ID0" name="user.password_strength.medium">
|
||||||
|
<segment>
|
||||||
|
<source>user.password_strength.medium</source>
|
||||||
|
<target>Medium</target>
|
||||||
|
</segment>
|
||||||
|
</unit>
|
||||||
|
<unit id="aWAaADS" name="user.password_strength.strong">
|
||||||
|
<segment>
|
||||||
|
<source>user.password_strength.strong</source>
|
||||||
|
<target>Strong</target>
|
||||||
|
</segment>
|
||||||
|
</unit>
|
||||||
|
<unit id="Wa9CStW" name="user.password_strength.very_strong">
|
||||||
|
<segment>
|
||||||
|
<source>user.password_strength.very_strong</source>
|
||||||
|
<target>Very strong</target>
|
||||||
|
</segment>
|
||||||
|
</unit>
|
||||||
</file>
|
</file>
|
||||||
</xliff>
|
</xliff>
|
||||||
|
|
|
@ -1455,39 +1455,6 @@ Show/Hide sidebar</target>
|
||||||
<target>Forum</target>
|
<target>Forum</target>
|
||||||
</segment>
|
</segment>
|
||||||
</unit>
|
</unit>
|
||||||
<unit id="SV0IxK0" name=" homepage.basedOn ">
|
|
||||||
<notes>
|
|
||||||
<note category="file-source" priority="1">Part-DB1\templates\homepage.html.twig:36</note>
|
|
||||||
<note priority="1">Part-DB1\templates\homepage.html.twig:36</note>
|
|
||||||
<note priority="1">templates\homepage.html.twig:33</note>
|
|
||||||
</notes>
|
|
||||||
<segment state="translated">
|
|
||||||
<source> homepage.basedOn </source>
|
|
||||||
<target> Basé sur le Part-DB original par </target>
|
|
||||||
</segment>
|
|
||||||
</unit>
|
|
||||||
<unit id="Qw1sChr" name=" homepage.others ">
|
|
||||||
<notes>
|
|
||||||
<note category="file-source" priority="1">Part-DB1\templates\homepage.html.twig:39</note>
|
|
||||||
<note priority="1">Part-DB1\templates\homepage.html.twig:39</note>
|
|
||||||
<note priority="1">templates\homepage.html.twig:36</note>
|
|
||||||
</notes>
|
|
||||||
<segment state="translated">
|
|
||||||
<source> homepage.others </source>
|
|
||||||
<target> et autres </target>
|
|
||||||
</segment>
|
|
||||||
</unit>
|
|
||||||
<unit id="jOOAjnK" name="homepage.last_activity">
|
|
||||||
<notes>
|
|
||||||
<note category="file-source" priority="1">Part-DB1\templates\homepage.html.twig:45</note>
|
|
||||||
<note priority="1">Part-DB1\templates\homepage.html.twig:45</note>
|
|
||||||
<note priority="1">new</note>
|
|
||||||
</notes>
|
|
||||||
<segment state="translated">
|
|
||||||
<source>homepage.last_activity</source>
|
|
||||||
<target>Activité récente</target>
|
|
||||||
</segment>
|
|
||||||
</unit>
|
|
||||||
<unit id="bqeaYn7" name="label_generator.title">
|
<unit id="bqeaYn7" name="label_generator.title">
|
||||||
<notes>
|
<notes>
|
||||||
<note category="file-source" priority="1">Part-DB1\templates\LabelSystem\dialog.html.twig:3</note>
|
<note category="file-source" priority="1">Part-DB1\templates\LabelSystem\dialog.html.twig:3</note>
|
||||||
|
@ -6334,52 +6301,6 @@ Si vous avez fait cela de manière incorrecte ou si un ordinateur n'est plus fia
|
||||||
<target>Thème du serveur</target>
|
<target>Thème du serveur</target>
|
||||||
</segment>
|
</segment>
|
||||||
</unit>
|
</unit>
|
||||||
<unit id="CPJxiHz" name="M">
|
|
||||||
<notes>
|
|
||||||
<note priority="1">Part-DB1\src\Form\Type\SIUnitType.php:141</note>
|
|
||||||
<note category="state" priority="1">obsolete</note>
|
|
||||||
</notes>
|
|
||||||
<segment state="translated">
|
|
||||||
<source>M</source>
|
|
||||||
<target>M</target>
|
|
||||||
</segment>
|
|
||||||
</unit>
|
|
||||||
<unit id="glTDKak" name="k">
|
|
||||||
<notes>
|
|
||||||
<note priority="1">Part-DB1\src\Form\Type\SIUnitType.php:141</note>
|
|
||||||
<note category="state" priority="1">obsolete</note>
|
|
||||||
</notes>
|
|
||||||
<segment state="translated">
|
|
||||||
<source>k</source>
|
|
||||||
<target>k</target>
|
|
||||||
</segment>
|
|
||||||
</unit>
|
|
||||||
<unit id="47DEQpj" name="">
|
|
||||||
<segment>
|
|
||||||
<source/>
|
|
||||||
<target> </target>
|
|
||||||
</segment>
|
|
||||||
</unit>
|
|
||||||
<unit id="YsZqel3" name="m">
|
|
||||||
<notes>
|
|
||||||
<note priority="1">Part-DB1\src\Form\Type\SIUnitType.php:141</note>
|
|
||||||
<note category="state" priority="1">obsolete</note>
|
|
||||||
</notes>
|
|
||||||
<segment state="translated">
|
|
||||||
<source>m</source>
|
|
||||||
<target>m</target>
|
|
||||||
</segment>
|
|
||||||
</unit>
|
|
||||||
<unit id="WgcvG_T" name="µ">
|
|
||||||
<notes>
|
|
||||||
<note priority="1">Part-DB1\src\Form\Type\SIUnitType.php:141</note>
|
|
||||||
<note category="state" priority="1">obsolete</note>
|
|
||||||
</notes>
|
|
||||||
<segment state="translated">
|
|
||||||
<source>µ</source>
|
|
||||||
<target>µ</target>
|
|
||||||
</segment>
|
|
||||||
</unit>
|
|
||||||
<unit id="oHq_Mt5" name="log.user_login.ip">
|
<unit id="oHq_Mt5" name="log.user_login.ip">
|
||||||
<notes>
|
<notes>
|
||||||
<note priority="1">Part-DB1\src\Services\LogSystem\LogEntryExtraFormatter.php:100</note>
|
<note priority="1">Part-DB1\src\Services\LogSystem\LogEntryExtraFormatter.php:100</note>
|
||||||
|
@ -7461,17 +7382,6 @@ exemple de ville</target>
|
||||||
<target>Rejeter les modifications</target>
|
<target>Rejeter les modifications</target>
|
||||||
</segment>
|
</segment>
|
||||||
</unit>
|
</unit>
|
||||||
<unit id="eG9UnaY" name="part.withdraw.caption:">
|
|
||||||
<notes>
|
|
||||||
<note priority="1">templates\Parts\show_part_info.html.twig:161</note>
|
|
||||||
<note priority="1">obsolete</note>
|
|
||||||
<note category="state" priority="1">obsolete</note>
|
|
||||||
</notes>
|
|
||||||
<segment state="translated">
|
|
||||||
<source>part.withdraw.caption:</source>
|
|
||||||
<target>Retrait de composants :</target>
|
|
||||||
</segment>
|
|
||||||
</unit>
|
|
||||||
<unit id="7TiUzGF" name="part.withdraw.btn">
|
<unit id="7TiUzGF" name="part.withdraw.btn">
|
||||||
<notes>
|
<notes>
|
||||||
<note priority="1">templates\Parts\show_part_info.html.twig:166</note>
|
<note priority="1">templates\Parts\show_part_info.html.twig:166</note>
|
||||||
|
@ -7582,26 +7492,6 @@ exemple de ville</target>
|
||||||
<target>Ex. 10</target>
|
<target>Ex. 10</target>
|
||||||
</segment>
|
</segment>
|
||||||
</unit>
|
</unit>
|
||||||
<unit id="gAFUu2a" name="homepage.basedOn">
|
|
||||||
<notes>
|
|
||||||
<note priority="1">obsolete</note>
|
|
||||||
<note category="state" priority="1">obsolete</note>
|
|
||||||
</notes>
|
|
||||||
<segment state="translated">
|
|
||||||
<source>homepage.basedOn</source>
|
|
||||||
<target>Basé sur le travail de</target>
|
|
||||||
</segment>
|
|
||||||
</unit>
|
|
||||||
<unit id="PlY3xmo" name="homepage.others">
|
|
||||||
<notes>
|
|
||||||
<note priority="1">obsolete</note>
|
|
||||||
<note category="state" priority="1">obsolete</note>
|
|
||||||
</notes>
|
|
||||||
<segment state="translated">
|
|
||||||
<source>homepage.others</source>
|
|
||||||
<target>et autres</target>
|
|
||||||
</segment>
|
|
||||||
</unit>
|
|
||||||
<unit id="cpRdMwo" name="part.order.price_per">
|
<unit id="cpRdMwo" name="part.order.price_per">
|
||||||
<notes>
|
<notes>
|
||||||
<note priority="1">obsolete</note>
|
<note priority="1">obsolete</note>
|
||||||
|
@ -8698,15 +8588,6 @@ exemple de ville</target>
|
||||||
<target>Afficher les anciennes versions des éléments (Time travel)</target>
|
<target>Afficher les anciennes versions des éléments (Time travel)</target>
|
||||||
</segment>
|
</segment>
|
||||||
</unit>
|
</unit>
|
||||||
<unit id="AiBoPxF" name="log.type.">
|
|
||||||
<notes>
|
|
||||||
<note category="state" priority="1">obsolete</note>
|
|
||||||
</notes>
|
|
||||||
<segment state="translated">
|
|
||||||
<source>log.type.</source>
|
|
||||||
<target>Type.</target>
|
|
||||||
</segment>
|
|
||||||
</unit>
|
|
||||||
<unit id="WjnV7iC" name="tfa_u2f.key_added_successful">
|
<unit id="WjnV7iC" name="tfa_u2f.key_added_successful">
|
||||||
<notes>
|
<notes>
|
||||||
<note category="state" priority="1">obsolete</note>
|
<note category="state" priority="1">obsolete</note>
|
||||||
|
|
|
@ -1455,28 +1455,6 @@
|
||||||
<target>フォーラム</target>
|
<target>フォーラム</target>
|
||||||
</segment>
|
</segment>
|
||||||
</unit>
|
</unit>
|
||||||
<unit id="SV0IxK0" name=" homepage.basedOn ">
|
|
||||||
<notes>
|
|
||||||
<note category="file-source" priority="1">Part-DB1\templates\homepage.html.twig:36</note>
|
|
||||||
<note priority="1">Part-DB1\templates\homepage.html.twig:36</note>
|
|
||||||
<note priority="1">templates\homepage.html.twig:33</note>
|
|
||||||
</notes>
|
|
||||||
<segment state="translated">
|
|
||||||
<source> homepage.basedOn </source>
|
|
||||||
<target> オリジナルのPart-DBの作者 </target>
|
|
||||||
</segment>
|
|
||||||
</unit>
|
|
||||||
<unit id="Qw1sChr" name=" homepage.others ">
|
|
||||||
<notes>
|
|
||||||
<note category="file-source" priority="1">Part-DB1\templates\homepage.html.twig:39</note>
|
|
||||||
<note priority="1">Part-DB1\templates\homepage.html.twig:39</note>
|
|
||||||
<note priority="1">templates\homepage.html.twig:36</note>
|
|
||||||
</notes>
|
|
||||||
<segment state="translated">
|
|
||||||
<source> homepage.others </source>
|
|
||||||
<target> 他 </target>
|
|
||||||
</segment>
|
|
||||||
</unit>
|
|
||||||
<unit id="jOOAjnK" name="homepage.last_activity">
|
<unit id="jOOAjnK" name="homepage.last_activity">
|
||||||
<notes>
|
<notes>
|
||||||
<note category="file-source" priority="1">Part-DB1\templates\homepage.html.twig:45</note>
|
<note category="file-source" priority="1">Part-DB1\templates\homepage.html.twig:45</note>
|
||||||
|
@ -6334,52 +6312,6 @@
|
||||||
<target>サーバー全体のテーマ</target>
|
<target>サーバー全体のテーマ</target>
|
||||||
</segment>
|
</segment>
|
||||||
</unit>
|
</unit>
|
||||||
<unit id="CPJxiHz" name="M">
|
|
||||||
<notes>
|
|
||||||
<note priority="1">Part-DB1\src\Form\Type\SIUnitType.php:141</note>
|
|
||||||
<note category="state" priority="1">obsolete</note>
|
|
||||||
</notes>
|
|
||||||
<segment state="translated">
|
|
||||||
<source>M</source>
|
|
||||||
<target>M</target>
|
|
||||||
</segment>
|
|
||||||
</unit>
|
|
||||||
<unit id="glTDKak" name="k">
|
|
||||||
<notes>
|
|
||||||
<note priority="1">Part-DB1\src\Form\Type\SIUnitType.php:141</note>
|
|
||||||
<note category="state" priority="1">obsolete</note>
|
|
||||||
</notes>
|
|
||||||
<segment state="translated">
|
|
||||||
<source>k</source>
|
|
||||||
<target>k</target>
|
|
||||||
</segment>
|
|
||||||
</unit>
|
|
||||||
<unit id="47DEQpj" name="">
|
|
||||||
<segment>
|
|
||||||
<source/>
|
|
||||||
<target> </target>
|
|
||||||
</segment>
|
|
||||||
</unit>
|
|
||||||
<unit id="YsZqel3" name="m">
|
|
||||||
<notes>
|
|
||||||
<note priority="1">Part-DB1\src\Form\Type\SIUnitType.php:141</note>
|
|
||||||
<note category="state" priority="1">obsolete</note>
|
|
||||||
</notes>
|
|
||||||
<segment state="translated">
|
|
||||||
<source>m</source>
|
|
||||||
<target>m</target>
|
|
||||||
</segment>
|
|
||||||
</unit>
|
|
||||||
<unit id="WgcvG_T" name="µ">
|
|
||||||
<notes>
|
|
||||||
<note priority="1">Part-DB1\src\Form\Type\SIUnitType.php:141</note>
|
|
||||||
<note category="state" priority="1">obsolete</note>
|
|
||||||
</notes>
|
|
||||||
<segment state="translated">
|
|
||||||
<source>µ</source>
|
|
||||||
<target>µ</target>
|
|
||||||
</segment>
|
|
||||||
</unit>
|
|
||||||
<unit id="oHq_Mt5" name="log.user_login.ip">
|
<unit id="oHq_Mt5" name="log.user_login.ip">
|
||||||
<notes>
|
<notes>
|
||||||
<note priority="1">Part-DB1\src\Services\LogSystem\LogEntryExtraFormatter.php:100</note>
|
<note priority="1">Part-DB1\src\Services\LogSystem\LogEntryExtraFormatter.php:100</note>
|
||||||
|
@ -7462,17 +7394,6 @@ Exampletown</target>
|
||||||
<target>変更を破棄</target>
|
<target>変更を破棄</target>
|
||||||
</segment>
|
</segment>
|
||||||
</unit>
|
</unit>
|
||||||
<unit id="eG9UnaY" name="part.withdraw.caption:">
|
|
||||||
<notes>
|
|
||||||
<note priority="1">templates\Parts\show_part_info.html.twig:161</note>
|
|
||||||
<note priority="1">obsolete</note>
|
|
||||||
<note category="state" priority="1">obsolete</note>
|
|
||||||
</notes>
|
|
||||||
<segment state="translated">
|
|
||||||
<source>part.withdraw.caption:</source>
|
|
||||||
<target>部品を撤回する</target>
|
|
||||||
</segment>
|
|
||||||
</unit>
|
|
||||||
<unit id="7TiUzGF" name="part.withdraw.btn">
|
<unit id="7TiUzGF" name="part.withdraw.btn">
|
||||||
<notes>
|
<notes>
|
||||||
<note priority="1">templates\Parts\show_part_info.html.twig:166</note>
|
<note priority="1">templates\Parts\show_part_info.html.twig:166</note>
|
||||||
|
@ -7583,26 +7504,6 @@ Exampletown</target>
|
||||||
<target>例: 5</target>
|
<target>例: 5</target>
|
||||||
</segment>
|
</segment>
|
||||||
</unit>
|
</unit>
|
||||||
<unit id="gAFUu2a" name="homepage.basedOn">
|
|
||||||
<notes>
|
|
||||||
<note priority="1">obsolete</note>
|
|
||||||
<note category="state" priority="1">obsolete</note>
|
|
||||||
</notes>
|
|
||||||
<segment state="translated">
|
|
||||||
<source>homepage.basedOn</source>
|
|
||||||
<target>オリジナルのPart-DBの作者:</target>
|
|
||||||
</segment>
|
|
||||||
</unit>
|
|
||||||
<unit id="PlY3xmo" name="homepage.others">
|
|
||||||
<notes>
|
|
||||||
<note priority="1">obsolete</note>
|
|
||||||
<note category="state" priority="1">obsolete</note>
|
|
||||||
</notes>
|
|
||||||
<segment state="translated">
|
|
||||||
<source>homepage.others</source>
|
|
||||||
<target>他</target>
|
|
||||||
</segment>
|
|
||||||
</unit>
|
|
||||||
<unit id="cpRdMwo" name="part.order.price_per">
|
<unit id="cpRdMwo" name="part.order.price_per">
|
||||||
<notes>
|
<notes>
|
||||||
<note priority="1">obsolete</note>
|
<note priority="1">obsolete</note>
|
||||||
|
@ -8699,15 +8600,6 @@ Exampletown</target>
|
||||||
<target>要素の以前のバージョンを表示する (タイムトラベル)</target>
|
<target>要素の以前のバージョンを表示する (タイムトラベル)</target>
|
||||||
</segment>
|
</segment>
|
||||||
</unit>
|
</unit>
|
||||||
<unit id="AiBoPxF" name="log.type.">
|
|
||||||
<notes>
|
|
||||||
<note category="state" priority="1">obsolete</note>
|
|
||||||
</notes>
|
|
||||||
<segment state="translated">
|
|
||||||
<source>log.type.</source>
|
|
||||||
<target>__log.type.</target>
|
|
||||||
</segment>
|
|
||||||
</unit>
|
|
||||||
<unit id="WjnV7iC" name="tfa_u2f.key_added_successful">
|
<unit id="WjnV7iC" name="tfa_u2f.key_added_successful">
|
||||||
<notes>
|
<notes>
|
||||||
<note category="state" priority="1">obsolete</note>
|
<note category="state" priority="1">obsolete</note>
|
||||||
|
|
|
@ -1454,39 +1454,6 @@
|
||||||
<target>Форум</target>
|
<target>Форум</target>
|
||||||
</segment>
|
</segment>
|
||||||
</unit>
|
</unit>
|
||||||
<unit id="SV0IxK0" name=" homepage.basedOn ">
|
|
||||||
<notes>
|
|
||||||
<note category="file-source" priority="1">Part-DB1\templates\homepage.html.twig:36</note>
|
|
||||||
<note priority="1">Part-DB1\templates\homepage.html.twig:36</note>
|
|
||||||
<note priority="1">templates\homepage.html.twig:33</note>
|
|
||||||
</notes>
|
|
||||||
<segment state="translated">
|
|
||||||
<source> homepage.basedOn </source>
|
|
||||||
<target> На основе оригинальной версии Part-DB </target>
|
|
||||||
</segment>
|
|
||||||
</unit>
|
|
||||||
<unit id="Qw1sChr" name=" homepage.others ">
|
|
||||||
<notes>
|
|
||||||
<note category="file-source" priority="1">Part-DB1\templates\homepage.html.twig:39</note>
|
|
||||||
<note priority="1">Part-DB1\templates\homepage.html.twig:39</note>
|
|
||||||
<note priority="1">templates\homepage.html.twig:36</note>
|
|
||||||
</notes>
|
|
||||||
<segment state="translated">
|
|
||||||
<source> homepage.others </source>
|
|
||||||
<target> и другие </target>
|
|
||||||
</segment>
|
|
||||||
</unit>
|
|
||||||
<unit id="jOOAjnK" name="homepage.last_activity">
|
|
||||||
<notes>
|
|
||||||
<note category="file-source" priority="1">Part-DB1\templates\homepage.html.twig:45</note>
|
|
||||||
<note priority="1">Part-DB1\templates\homepage.html.twig:45</note>
|
|
||||||
<note priority="1">new</note>
|
|
||||||
</notes>
|
|
||||||
<segment state="translated">
|
|
||||||
<source>homepage.last_activity</source>
|
|
||||||
<target>Последние действия</target>
|
|
||||||
</segment>
|
|
||||||
</unit>
|
|
||||||
<unit id="bqeaYn7" name="label_generator.title">
|
<unit id="bqeaYn7" name="label_generator.title">
|
||||||
<notes>
|
<notes>
|
||||||
<note category="file-source" priority="1">Part-DB1\templates\LabelSystem\dialog.html.twig:3</note>
|
<note category="file-source" priority="1">Part-DB1\templates\LabelSystem\dialog.html.twig:3</note>
|
||||||
|
@ -6335,52 +6302,6 @@
|
||||||
<target>Тема для всего сервера</target>
|
<target>Тема для всего сервера</target>
|
||||||
</segment>
|
</segment>
|
||||||
</unit>
|
</unit>
|
||||||
<unit id="CPJxiHz" name="M">
|
|
||||||
<notes>
|
|
||||||
<note priority="1">Part-DB1\src\Form\Type\SIUnitType.php:141</note>
|
|
||||||
<note category="state" priority="1">obsolete</note>
|
|
||||||
</notes>
|
|
||||||
<segment state="translated">
|
|
||||||
<source>M</source>
|
|
||||||
<target>М</target>
|
|
||||||
</segment>
|
|
||||||
</unit>
|
|
||||||
<unit id="glTDKak" name="k">
|
|
||||||
<notes>
|
|
||||||
<note priority="1">Part-DB1\src\Form\Type\SIUnitType.php:141</note>
|
|
||||||
<note category="state" priority="1">obsolete</note>
|
|
||||||
</notes>
|
|
||||||
<segment state="translated">
|
|
||||||
<source>k</source>
|
|
||||||
<target>к</target>
|
|
||||||
</segment>
|
|
||||||
</unit>
|
|
||||||
<unit id="47DEQpj" name="">
|
|
||||||
<segment>
|
|
||||||
<source/>
|
|
||||||
<target> </target>
|
|
||||||
</segment>
|
|
||||||
</unit>
|
|
||||||
<unit id="YsZqel3" name="m">
|
|
||||||
<notes>
|
|
||||||
<note priority="1">Part-DB1\src\Form\Type\SIUnitType.php:141</note>
|
|
||||||
<note category="state" priority="1">obsolete</note>
|
|
||||||
</notes>
|
|
||||||
<segment state="translated">
|
|
||||||
<source>m</source>
|
|
||||||
<target>м</target>
|
|
||||||
</segment>
|
|
||||||
</unit>
|
|
||||||
<unit id="WgcvG_T" name="µ">
|
|
||||||
<notes>
|
|
||||||
<note priority="1">Part-DB1\src\Form\Type\SIUnitType.php:141</note>
|
|
||||||
<note category="state" priority="1">obsolete</note>
|
|
||||||
</notes>
|
|
||||||
<segment state="translated">
|
|
||||||
<source>µ</source>
|
|
||||||
<target>µ</target>
|
|
||||||
</segment>
|
|
||||||
</unit>
|
|
||||||
<unit id="oHq_Mt5" name="log.user_login.ip">
|
<unit id="oHq_Mt5" name="log.user_login.ip">
|
||||||
<notes>
|
<notes>
|
||||||
<note priority="1">Part-DB1\src\Services\LogSystem\LogEntryExtraFormatter.php:100</note>
|
<note priority="1">Part-DB1\src\Services\LogSystem\LogEntryExtraFormatter.php:100</note>
|
||||||
|
@ -7463,17 +7384,6 @@
|
||||||
<target>Отменить изменения</target>
|
<target>Отменить изменения</target>
|
||||||
</segment>
|
</segment>
|
||||||
</unit>
|
</unit>
|
||||||
<unit id="eG9UnaY" name="part.withdraw.caption:">
|
|
||||||
<notes>
|
|
||||||
<note priority="1">templates\Parts\show_part_info.html.twig:161</note>
|
|
||||||
<note priority="1">obsolete</note>
|
|
||||||
<note category="state" priority="1">obsolete</note>
|
|
||||||
</notes>
|
|
||||||
<segment state="translated">
|
|
||||||
<source>part.withdraw.caption:</source>
|
|
||||||
<target>Изъять компоненты:</target>
|
|
||||||
</segment>
|
|
||||||
</unit>
|
|
||||||
<unit id="7TiUzGF" name="part.withdraw.btn">
|
<unit id="7TiUzGF" name="part.withdraw.btn">
|
||||||
<notes>
|
<notes>
|
||||||
<note priority="1">templates\Parts\show_part_info.html.twig:166</note>
|
<note priority="1">templates\Parts\show_part_info.html.twig:166</note>
|
||||||
|
@ -7584,26 +7494,6 @@
|
||||||
<target>н.р. 5</target>
|
<target>н.р. 5</target>
|
||||||
</segment>
|
</segment>
|
||||||
</unit>
|
</unit>
|
||||||
<unit id="gAFUu2a" name="homepage.basedOn">
|
|
||||||
<notes>
|
|
||||||
<note priority="1">obsolete</note>
|
|
||||||
<note category="state" priority="1">obsolete</note>
|
|
||||||
</notes>
|
|
||||||
<segment state="translated">
|
|
||||||
<source>homepage.basedOn</source>
|
|
||||||
<target>Создано на основе работ</target>
|
|
||||||
</segment>
|
|
||||||
</unit>
|
|
||||||
<unit id="PlY3xmo" name="homepage.others">
|
|
||||||
<notes>
|
|
||||||
<note priority="1">obsolete</note>
|
|
||||||
<note category="state" priority="1">obsolete</note>
|
|
||||||
</notes>
|
|
||||||
<segment state="translated">
|
|
||||||
<source>homepage.others</source>
|
|
||||||
<target>и других</target>
|
|
||||||
</segment>
|
|
||||||
</unit>
|
|
||||||
<unit id="cpRdMwo" name="part.order.price_per">
|
<unit id="cpRdMwo" name="part.order.price_per">
|
||||||
<notes>
|
<notes>
|
||||||
<note priority="1">obsolete</note>
|
<note priority="1">obsolete</note>
|
||||||
|
@ -8700,15 +8590,6 @@
|
||||||
<target>Показать предыдущие версии элемента</target>
|
<target>Показать предыдущие версии элемента</target>
|
||||||
</segment>
|
</segment>
|
||||||
</unit>
|
</unit>
|
||||||
<unit id="AiBoPxF" name="log.type.">
|
|
||||||
<notes>
|
|
||||||
<note category="state" priority="1">obsolete</note>
|
|
||||||
</notes>
|
|
||||||
<segment state="translated">
|
|
||||||
<source>log.type.</source>
|
|
||||||
<target>Тип.</target>
|
|
||||||
</segment>
|
|
||||||
</unit>
|
|
||||||
<unit id="WjnV7iC" name="tfa_u2f.key_added_successful">
|
<unit id="WjnV7iC" name="tfa_u2f.key_added_successful">
|
||||||
<notes>
|
<notes>
|
||||||
<note category="state" priority="1">obsolete</note>
|
<note category="state" priority="1">obsolete</note>
|
||||||
|
|
57
yarn.lock
57
yarn.lock
|
@ -1522,6 +1522,45 @@
|
||||||
resolved "https://registry.yarnpkg.com/@foliojs-fork/restructure/-/restructure-2.0.2.tgz#73759aba2aff1da87b7c4554e6839c70d43c92b4"
|
resolved "https://registry.yarnpkg.com/@foliojs-fork/restructure/-/restructure-2.0.2.tgz#73759aba2aff1da87b7c4554e6839c70d43c92b4"
|
||||||
integrity sha512-59SgoZ3EXbkfSX7b63tsou/SDGzwUEK6MuB5sKqgVK1/XE0fxmpsOb9DQI8LXW3KfGnAjImCGhhEb7uPPAUVNA==
|
integrity sha512-59SgoZ3EXbkfSX7b63tsou/SDGzwUEK6MuB5sKqgVK1/XE0fxmpsOb9DQI8LXW3KfGnAjImCGhhEb7uPPAUVNA==
|
||||||
|
|
||||||
|
"@formatjs/ecma402-abstract@1.17.0":
|
||||||
|
version "1.17.0"
|
||||||
|
resolved "https://registry.yarnpkg.com/@formatjs/ecma402-abstract/-/ecma402-abstract-1.17.0.tgz#2ce191a3bde4c65c6684e03fa247062a4a294b9e"
|
||||||
|
integrity sha512-6ueQTeJZtwKjmh23bdkq/DMqH4l4bmfvtQH98blOSbiXv/OUiyijSW6jU22IT8BNM1ujCaEvJfTtyCYVH38EMQ==
|
||||||
|
dependencies:
|
||||||
|
"@formatjs/intl-localematcher" "0.4.0"
|
||||||
|
tslib "^2.4.0"
|
||||||
|
|
||||||
|
"@formatjs/fast-memoize@2.2.0":
|
||||||
|
version "2.2.0"
|
||||||
|
resolved "https://registry.yarnpkg.com/@formatjs/fast-memoize/-/fast-memoize-2.2.0.tgz#33bd616d2e486c3e8ef4e68c99648c196887802b"
|
||||||
|
integrity sha512-hnk/nY8FyrL5YxwP9e4r9dqeM6cAbo8PeU9UjyXojZMNvVad2Z06FAVHyR3Ecw6fza+0GH7vdJgiKIVXTMbSBA==
|
||||||
|
dependencies:
|
||||||
|
tslib "^2.4.0"
|
||||||
|
|
||||||
|
"@formatjs/icu-messageformat-parser@2.6.0":
|
||||||
|
version "2.6.0"
|
||||||
|
resolved "https://registry.yarnpkg.com/@formatjs/icu-messageformat-parser/-/icu-messageformat-parser-2.6.0.tgz#b0d58ce8c8f472969c96b5cd0b3ad5522d3a02b7"
|
||||||
|
integrity sha512-yT6at0qc0DANw9qM/TU8RZaCtfDXtj4pZM/IC2WnVU80yAcliS3KVDiuUt4jSQAeFL9JS5bc2hARnFmjPdA6qw==
|
||||||
|
dependencies:
|
||||||
|
"@formatjs/ecma402-abstract" "1.17.0"
|
||||||
|
"@formatjs/icu-skeleton-parser" "1.6.0"
|
||||||
|
tslib "^2.4.0"
|
||||||
|
|
||||||
|
"@formatjs/icu-skeleton-parser@1.6.0":
|
||||||
|
version "1.6.0"
|
||||||
|
resolved "https://registry.yarnpkg.com/@formatjs/icu-skeleton-parser/-/icu-skeleton-parser-1.6.0.tgz#0728be8b6b3656f1a4b8e6e5b0e02dffffc23c6c"
|
||||||
|
integrity sha512-eMmxNpoX/J1IPUjPGSZwo0Wh+7CEvdEMddP2Jxg1gQJXfGfht/FdW2D5XDFj3VMbOTUQlDIdZJY7uC6O6gjPoA==
|
||||||
|
dependencies:
|
||||||
|
"@formatjs/ecma402-abstract" "1.17.0"
|
||||||
|
tslib "^2.4.0"
|
||||||
|
|
||||||
|
"@formatjs/intl-localematcher@0.4.0":
|
||||||
|
version "0.4.0"
|
||||||
|
resolved "https://registry.yarnpkg.com/@formatjs/intl-localematcher/-/intl-localematcher-0.4.0.tgz#63bbc37a7c3545a1bf1686072e51d9a3aed98d6b"
|
||||||
|
integrity sha512-bRTd+rKomvfdS4QDlVJ6TA/Jx1F2h/TBVO5LjvhQ7QPPHp19oPNMIum7W2CMEReq/zPxpmCeB31F9+5gl/qtvw==
|
||||||
|
dependencies:
|
||||||
|
tslib "^2.4.0"
|
||||||
|
|
||||||
"@fortawesome/fontawesome-free@^6.1.1":
|
"@fortawesome/fontawesome-free@^6.1.1":
|
||||||
version "6.4.0"
|
version "6.4.0"
|
||||||
resolved "https://registry.yarnpkg.com/@fortawesome/fontawesome-free/-/fontawesome-free-6.4.0.tgz#1ee0c174e472c84b23cb46c995154dc383e3b4fe"
|
resolved "https://registry.yarnpkg.com/@fortawesome/fontawesome-free/-/fontawesome-free-6.4.0.tgz#1ee0c174e472c84b23cb46c995154dc383e3b4fe"
|
||||||
|
@ -1706,6 +1745,9 @@
|
||||||
loader-utils "^2.0.0"
|
loader-utils "^2.0.0"
|
||||||
schema-utils "^3.0.0"
|
schema-utils "^3.0.0"
|
||||||
|
|
||||||
|
"@symfony/ux-translator@file:vendor/symfony/ux-translator/assets":
|
||||||
|
version "1.0.0"
|
||||||
|
|
||||||
"@symfony/ux-turbo@file:vendor/symfony/ux-turbo/assets":
|
"@symfony/ux-turbo@file:vendor/symfony/ux-turbo/assets":
|
||||||
version "0.1.0"
|
version "0.1.0"
|
||||||
|
|
||||||
|
@ -4270,6 +4312,16 @@ interpret@^2.2.0:
|
||||||
resolved "https://registry.yarnpkg.com/interpret/-/interpret-2.2.0.tgz#1a78a0b5965c40a5416d007ad6f50ad27c417df9"
|
resolved "https://registry.yarnpkg.com/interpret/-/interpret-2.2.0.tgz#1a78a0b5965c40a5416d007ad6f50ad27c417df9"
|
||||||
integrity sha512-Ju0Bz/cEia55xDwUWEa8+olFpCiQoypjnQySseKtmjNrnps3P+xfpUmGr90T7yjlVJmOtybRvPXhKMbHr+fWnw==
|
integrity sha512-Ju0Bz/cEia55xDwUWEa8+olFpCiQoypjnQySseKtmjNrnps3P+xfpUmGr90T7yjlVJmOtybRvPXhKMbHr+fWnw==
|
||||||
|
|
||||||
|
intl-messageformat@^10.2.5:
|
||||||
|
version "10.5.0"
|
||||||
|
resolved "https://registry.yarnpkg.com/intl-messageformat/-/intl-messageformat-10.5.0.tgz#86d11b15913ac954075b25253f5e669359f89538"
|
||||||
|
integrity sha512-AvojYuOaRb6r2veOKfTVpxH9TrmjSdc5iR9R5RgBwrDZYSmAAFVT+QLbW3C4V7Qsg0OguMp67Q/EoUkxZzXRGw==
|
||||||
|
dependencies:
|
||||||
|
"@formatjs/ecma402-abstract" "1.17.0"
|
||||||
|
"@formatjs/fast-memoize" "2.2.0"
|
||||||
|
"@formatjs/icu-messageformat-parser" "2.6.0"
|
||||||
|
tslib "^2.4.0"
|
||||||
|
|
||||||
ipaddr.js@1.9.1:
|
ipaddr.js@1.9.1:
|
||||||
version "1.9.1"
|
version "1.9.1"
|
||||||
resolved "https://registry.yarnpkg.com/ipaddr.js/-/ipaddr.js-1.9.1.tgz#bff38543eeb8984825079ff3a2a8e6cbd46781b3"
|
resolved "https://registry.yarnpkg.com/ipaddr.js/-/ipaddr.js-1.9.1.tgz#bff38543eeb8984825079ff3a2a8e6cbd46781b3"
|
||||||
|
@ -6490,6 +6542,11 @@ ts-loader@^9.2.6, ts-loader@^9.3.0:
|
||||||
micromatch "^4.0.0"
|
micromatch "^4.0.0"
|
||||||
semver "^7.3.4"
|
semver "^7.3.4"
|
||||||
|
|
||||||
|
tslib@^2.4.0:
|
||||||
|
version "2.6.0"
|
||||||
|
resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.6.0.tgz#b295854684dbda164e181d259a22cd779dcd7bc3"
|
||||||
|
integrity sha512-7At1WUettjcSRHXCyYtTselblcHl9PJFFVKiCAy/bY97+BPZXSQ2wbq0P9s8tK2G7dFQfNnlJnPAiArVBVBsfA==
|
||||||
|
|
||||||
turndown-plugin-gfm@^1.0.2:
|
turndown-plugin-gfm@^1.0.2:
|
||||||
version "1.0.2"
|
version "1.0.2"
|
||||||
resolved "https://registry.yarnpkg.com/turndown-plugin-gfm/-/turndown-plugin-gfm-1.0.2.tgz#6f8678a361f35220b2bdf5619e6049add75bf1c7"
|
resolved "https://registry.yarnpkg.com/turndown-plugin-gfm/-/turndown-plugin-gfm-1.0.2.tgz#6f8678a361f35220b2bdf5619e6049add75bf1c7"
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue