From a3d992a0164c82f3a55c7038e392c982fe73e21c Mon Sep 17 00:00:00 2001 From: Copilot <198982749+Copilot@users.noreply.github.com> Date: Sun, 18 Jan 2026 18:50:38 +0100 Subject: [PATCH] Move frontend translations to separate domain to reduce bundle size (#1197) * Initial plan * Create frontend translation files and update configuration Co-authored-by: jbtronics <5410681+jbtronics@users.noreply.github.com> * Fix missing semicolon in password strength controller Co-authored-by: jbtronics <5410681+jbtronics@users.noreply.github.com> * Remove frontend-only translations from messages domain and set frontend as default domain Co-authored-by: jbtronics <5410681+jbtronics@users.noreply.github.com> --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: jbtronics <5410681+jbtronics@users.noreply.github.com> --- .../password_strength_estimate_controller.js | 2 +- assets/translator.js | 5 +- config/packages/ux_translator.yaml | 3 + translations/frontend.cs.xlf | 80 +++++++++++++++++++ translations/frontend.da.xlf | 80 +++++++++++++++++++ translations/frontend.de.xlf | 80 +++++++++++++++++++ translations/frontend.el.xlf | 28 +++++++ translations/frontend.en.xlf | 80 +++++++++++++++++++ translations/frontend.es.xlf | 80 +++++++++++++++++++ translations/frontend.fr.xlf | 44 ++++++++++ translations/frontend.hu.xlf | 80 +++++++++++++++++++ translations/frontend.it.xlf | 80 +++++++++++++++++++ translations/frontend.ja.xlf | 44 ++++++++++ translations/frontend.nl.xlf | 28 +++++++ translations/frontend.pl.xlf | 80 +++++++++++++++++++ translations/frontend.ru.xlf | 80 +++++++++++++++++++ translations/frontend.zh.xlf | 80 +++++++++++++++++++ translations/messages.cs.xlf | 40 ---------- translations/messages.da.xlf | 40 ---------- translations/messages.de.xlf | 40 ---------- translations/messages.en.xlf | 40 ---------- translations/messages.es.xlf | 40 ---------- translations/messages.fr.xlf | 10 --- translations/messages.hu.xlf | 40 ---------- translations/messages.it.xlf | 40 ---------- translations/messages.ja.xlf | 10 --- translations/messages.pl.xlf | 40 ---------- translations/messages.ru.xlf | 40 ---------- translations/messages.zh.xlf | 40 ---------- 29 files changed, 952 insertions(+), 422 deletions(-) create mode 100644 translations/frontend.cs.xlf create mode 100644 translations/frontend.da.xlf create mode 100644 translations/frontend.de.xlf create mode 100644 translations/frontend.el.xlf create mode 100644 translations/frontend.en.xlf create mode 100644 translations/frontend.es.xlf create mode 100644 translations/frontend.fr.xlf create mode 100644 translations/frontend.hu.xlf create mode 100644 translations/frontend.it.xlf create mode 100644 translations/frontend.ja.xlf create mode 100644 translations/frontend.nl.xlf create mode 100644 translations/frontend.pl.xlf create mode 100644 translations/frontend.ru.xlf create mode 100644 translations/frontend.zh.xlf diff --git a/assets/controllers/elements/password_strength_estimate_controller.js b/assets/controllers/elements/password_strength_estimate_controller.js index 16d18b55..d9cfbc87 100644 --- a/assets/controllers/elements/password_strength_estimate_controller.js +++ b/assets/controllers/elements/password_strength_estimate_controller.js @@ -96,7 +96,7 @@ export default class extends Controller { classes = "bg-warning badge-warning"; break; case 2: - text = trans("user.password_strength.medium") + text = trans("user.password_strength.medium"); classes = "bg-info badge-info"; break; case 3: diff --git a/assets/translator.js b/assets/translator.js index a0181a08..ad967488 100644 --- a/assets/translator.js +++ b/assets/translator.js @@ -15,4 +15,7 @@ const translator = createTranslator({ localeFallbacks, }); -export const { trans } = translator; +// Wrapper function with default domain set to 'frontend' +export const trans = (id, parameters = {}, domain = 'frontend', locale = null) => { + return translator.trans(id, parameters, domain, locale); +}; diff --git a/config/packages/ux_translator.yaml b/config/packages/ux_translator.yaml index c8453a50..46d37964 100644 --- a/config/packages/ux_translator.yaml +++ b/config/packages/ux_translator.yaml @@ -1,6 +1,9 @@ ux_translator: # The directory where the JavaScript translations are dumped dump_directory: '%kernel.project_dir%/var/translations' + # Only include the frontend translation domain in the JavaScript bundle + domains: + - 'frontend' when@prod: ux_translator: diff --git a/translations/frontend.cs.xlf b/translations/frontend.cs.xlf new file mode 100644 index 00000000..e13e5c4c --- /dev/null +++ b/translations/frontend.cs.xlf @@ -0,0 +1,80 @@ + + + + + + Part-DB1\templates\AdminPages\EntityAdminBase.html.twig:19 + Part-DB1\templates\_navbar_search.html.twig:67 + Part-DB1\templates\_sidebar.html.twig:27 + Part-DB1\templates\_sidebar.html.twig:43 + Part-DB1\templates\_sidebar.html.twig:63 + Part-DB1\templates\AdminPages\EntityAdminBase.html.twig:19 + Part-DB1\templates\_navbar_search.html.twig:61 + Part-DB1\templates\_sidebar.html.twig:27 + Part-DB1\templates\_sidebar.html.twig:43 + Part-DB1\templates\_sidebar.html.twig:63 + templates\AdminPages\EntityAdminBase.html.twig:9 + templates\base.html.twig:80 + templates\base.html.twig:179 + templates\base.html.twig:206 + templates\base.html.twig:237 + + + search.placeholder + Hledat + + + + + part.labelp + Díly + + + + + entity.select.group.new_not_added_to_DB + Nový (zatím nebyl přidán do DB) + + + + + user.password_strength.very_weak + Velmi slabé + + + + + user.password_strength.weak + Slabé + + + + + user.password_strength.medium + Střední + + + + + user.password_strength.strong + Silné + + + + + user.password_strength.very_strong + Velmi silné + + + + + Part-DB1\templates\_navbar_search.html.twig:68 + Part-DB1\templates\_navbar_search.html.twig:62 + + + search.submit + Jdi! + + + + diff --git a/translations/frontend.da.xlf b/translations/frontend.da.xlf new file mode 100644 index 00000000..8b5570fb --- /dev/null +++ b/translations/frontend.da.xlf @@ -0,0 +1,80 @@ + + + + + + Part-DB1\templates\AdminPages\EntityAdminBase.html.twig:19 + Part-DB1\templates\_navbar_search.html.twig:67 + Part-DB1\templates\_sidebar.html.twig:27 + Part-DB1\templates\_sidebar.html.twig:43 + Part-DB1\templates\_sidebar.html.twig:63 + Part-DB1\templates\AdminPages\EntityAdminBase.html.twig:19 + Part-DB1\templates\_navbar_search.html.twig:61 + Part-DB1\templates\_sidebar.html.twig:27 + Part-DB1\templates\_sidebar.html.twig:43 + Part-DB1\templates\_sidebar.html.twig:63 + templates\AdminPages\EntityAdminBase.html.twig:9 + templates\base.html.twig:80 + templates\base.html.twig:179 + templates\base.html.twig:206 + templates\base.html.twig:237 + + + search.placeholder + Søg + + + + + part.labelp + Komponenter + + + + + entity.select.group.new_not_added_to_DB + Ny (endnu ikke tilføjet til database) + + + + + user.password_strength.very_weak + Meget svag + + + + + user.password_strength.weak + Svag + + + + + user.password_strength.medium + Middel + + + + + user.password_strength.strong + Stærk + + + + + user.password_strength.very_strong + Meget stærk + + + + + Part-DB1\templates\_navbar_search.html.twig:68 + Part-DB1\templates\_navbar_search.html.twig:62 + + + search.submit + Kom nu! + + + + diff --git a/translations/frontend.de.xlf b/translations/frontend.de.xlf new file mode 100644 index 00000000..661ddb30 --- /dev/null +++ b/translations/frontend.de.xlf @@ -0,0 +1,80 @@ + + + + + + Part-DB1\templates\AdminPages\EntityAdminBase.html.twig:19 + Part-DB1\templates\_navbar_search.html.twig:67 + Part-DB1\templates\_sidebar.html.twig:27 + Part-DB1\templates\_sidebar.html.twig:43 + Part-DB1\templates\_sidebar.html.twig:63 + Part-DB1\templates\AdminPages\EntityAdminBase.html.twig:19 + Part-DB1\templates\_navbar_search.html.twig:61 + Part-DB1\templates\_sidebar.html.twig:27 + Part-DB1\templates\_sidebar.html.twig:43 + Part-DB1\templates\_sidebar.html.twig:63 + templates\AdminPages\EntityAdminBase.html.twig:9 + templates\base.html.twig:80 + templates\base.html.twig:179 + templates\base.html.twig:206 + templates\base.html.twig:237 + + + search.placeholder + Suche + + + + + part.labelp + Bauteile + + + + + entity.select.group.new_not_added_to_DB + Neu (noch nicht zur DB hinzugefügt) + + + + + user.password_strength.very_weak + Sehr schwach + + + + + user.password_strength.weak + Schwach + + + + + user.password_strength.medium + Mittel + + + + + user.password_strength.strong + Stark + + + + + user.password_strength.very_strong + Sehr stark + + + + + Part-DB1\templates\_navbar_search.html.twig:68 + Part-DB1\templates\_navbar_search.html.twig:62 + + + search.submit + Los! + + + + diff --git a/translations/frontend.el.xlf b/translations/frontend.el.xlf new file mode 100644 index 00000000..6d734823 --- /dev/null +++ b/translations/frontend.el.xlf @@ -0,0 +1,28 @@ + + + + + + Part-DB1\templates\AdminPages\EntityAdminBase.html.twig:19 + Part-DB1\templates\_navbar_search.html.twig:67 + Part-DB1\templates\_sidebar.html.twig:27 + Part-DB1\templates\_sidebar.html.twig:43 + Part-DB1\templates\_sidebar.html.twig:63 + Part-DB1\templates\AdminPages\EntityAdminBase.html.twig:19 + Part-DB1\templates\_navbar_search.html.twig:61 + Part-DB1\templates\_sidebar.html.twig:27 + Part-DB1\templates\_sidebar.html.twig:43 + Part-DB1\templates\_sidebar.html.twig:63 + templates\AdminPages\EntityAdminBase.html.twig:9 + templates\base.html.twig:80 + templates\base.html.twig:179 + templates\base.html.twig:206 + templates\base.html.twig:237 + + + search.placeholder + Αναζήτηση + + + + diff --git a/translations/frontend.en.xlf b/translations/frontend.en.xlf new file mode 100644 index 00000000..6e9fcadd --- /dev/null +++ b/translations/frontend.en.xlf @@ -0,0 +1,80 @@ + + + + + + Part-DB1\templates\AdminPages\EntityAdminBase.html.twig:19 + Part-DB1\templates\_navbar_search.html.twig:67 + Part-DB1\templates\_sidebar.html.twig:27 + Part-DB1\templates\_sidebar.html.twig:43 + Part-DB1\templates\_sidebar.html.twig:63 + Part-DB1\templates\AdminPages\EntityAdminBase.html.twig:19 + Part-DB1\templates\_navbar_search.html.twig:61 + Part-DB1\templates\_sidebar.html.twig:27 + Part-DB1\templates\_sidebar.html.twig:43 + Part-DB1\templates\_sidebar.html.twig:63 + templates\AdminPages\EntityAdminBase.html.twig:9 + templates\base.html.twig:80 + templates\base.html.twig:179 + templates\base.html.twig:206 + templates\base.html.twig:237 + + + search.placeholder + Search + + + + + part.labelp + Parts + + + + + entity.select.group.new_not_added_to_DB + New (not added to DB yet) + + + + + user.password_strength.very_weak + Very weak + + + + + user.password_strength.weak + Weak + + + + + user.password_strength.medium + Medium + + + + + user.password_strength.strong + Strong + + + + + user.password_strength.very_strong + Very strong + + + + + Part-DB1\templates\_navbar_search.html.twig:68 + Part-DB1\templates\_navbar_search.html.twig:62 + + + search.submit + Go! + + + + diff --git a/translations/frontend.es.xlf b/translations/frontend.es.xlf new file mode 100644 index 00000000..dc96b800 --- /dev/null +++ b/translations/frontend.es.xlf @@ -0,0 +1,80 @@ + + + + + + Part-DB1\templates\AdminPages\EntityAdminBase.html.twig:19 + Part-DB1\templates\_navbar_search.html.twig:67 + Part-DB1\templates\_sidebar.html.twig:27 + Part-DB1\templates\_sidebar.html.twig:43 + Part-DB1\templates\_sidebar.html.twig:63 + Part-DB1\templates\AdminPages\EntityAdminBase.html.twig:19 + Part-DB1\templates\_navbar_search.html.twig:61 + Part-DB1\templates\_sidebar.html.twig:27 + Part-DB1\templates\_sidebar.html.twig:43 + Part-DB1\templates\_sidebar.html.twig:63 + templates\AdminPages\EntityAdminBase.html.twig:9 + templates\base.html.twig:80 + templates\base.html.twig:179 + templates\base.html.twig:206 + templates\base.html.twig:237 + + + search.placeholder + Buscar + + + + + part.labelp + Componentes + + + + + entity.select.group.new_not_added_to_DB + Nuevo (no añadido a la base de datos) + + + + + user.password_strength.very_weak + Muy débil + + + + + user.password_strength.weak + Débil + + + + + user.password_strength.medium + Medio + + + + + user.password_strength.strong + Fuerte + + + + + user.password_strength.very_strong + Muy fuerte + + + + + Part-DB1\templates\_navbar_search.html.twig:68 + Part-DB1\templates\_navbar_search.html.twig:62 + + + search.submit + ¡Vamos! + + + + diff --git a/translations/frontend.fr.xlf b/translations/frontend.fr.xlf new file mode 100644 index 00000000..8363fabd --- /dev/null +++ b/translations/frontend.fr.xlf @@ -0,0 +1,44 @@ + + + + + + Part-DB1\templates\AdminPages\EntityAdminBase.html.twig:19 + Part-DB1\templates\_navbar_search.html.twig:67 + Part-DB1\templates\_sidebar.html.twig:27 + Part-DB1\templates\_sidebar.html.twig:43 + Part-DB1\templates\_sidebar.html.twig:63 + Part-DB1\templates\AdminPages\EntityAdminBase.html.twig:19 + Part-DB1\templates\_navbar_search.html.twig:61 + Part-DB1\templates\_sidebar.html.twig:27 + Part-DB1\templates\_sidebar.html.twig:43 + Part-DB1\templates\_sidebar.html.twig:63 + templates\AdminPages\EntityAdminBase.html.twig:9 + templates\base.html.twig:80 + templates\base.html.twig:179 + templates\base.html.twig:206 + templates\base.html.twig:237 + + + search.placeholder + Recherche + + + + + part.labelp + Composants + + + + + Part-DB1\templates\_navbar_search.html.twig:68 + Part-DB1\templates\_navbar_search.html.twig:62 + + + search.submit + Rechercher! + + + + diff --git a/translations/frontend.hu.xlf b/translations/frontend.hu.xlf new file mode 100644 index 00000000..c2d312bc --- /dev/null +++ b/translations/frontend.hu.xlf @@ -0,0 +1,80 @@ + + + + + + Part-DB1\templates\AdminPages\EntityAdminBase.html.twig:19 + Part-DB1\templates\_navbar_search.html.twig:67 + Part-DB1\templates\_sidebar.html.twig:27 + Part-DB1\templates\_sidebar.html.twig:43 + Part-DB1\templates\_sidebar.html.twig:63 + Part-DB1\templates\AdminPages\EntityAdminBase.html.twig:19 + Part-DB1\templates\_navbar_search.html.twig:61 + Part-DB1\templates\_sidebar.html.twig:27 + Part-DB1\templates\_sidebar.html.twig:43 + Part-DB1\templates\_sidebar.html.twig:63 + templates\AdminPages\EntityAdminBase.html.twig:9 + templates\base.html.twig:80 + templates\base.html.twig:179 + templates\base.html.twig:206 + templates\base.html.twig:237 + + + search.placeholder + Keresés + + + + + part.labelp + Alkatrészek + + + + + entity.select.group.new_not_added_to_DB + Új (még nem hozzáadva az adatbázishoz) + + + + + user.password_strength.very_weak + Nagyon gyenge + + + + + user.password_strength.weak + Gyenge + + + + + user.password_strength.medium + Közepes + + + + + user.password_strength.strong + Erős + + + + + user.password_strength.very_strong + Nagyon erős + + + + + Part-DB1\templates\_navbar_search.html.twig:68 + Part-DB1\templates\_navbar_search.html.twig:62 + + + search.submit + Indítás! + + + + diff --git a/translations/frontend.it.xlf b/translations/frontend.it.xlf new file mode 100644 index 00000000..9df0eee0 --- /dev/null +++ b/translations/frontend.it.xlf @@ -0,0 +1,80 @@ + + + + + + Part-DB1\templates\AdminPages\EntityAdminBase.html.twig:19 + Part-DB1\templates\_navbar_search.html.twig:67 + Part-DB1\templates\_sidebar.html.twig:27 + Part-DB1\templates\_sidebar.html.twig:43 + Part-DB1\templates\_sidebar.html.twig:63 + Part-DB1\templates\AdminPages\EntityAdminBase.html.twig:19 + Part-DB1\templates\_navbar_search.html.twig:61 + Part-DB1\templates\_sidebar.html.twig:27 + Part-DB1\templates\_sidebar.html.twig:43 + Part-DB1\templates\_sidebar.html.twig:63 + templates\AdminPages\EntityAdminBase.html.twig:9 + templates\base.html.twig:80 + templates\base.html.twig:179 + templates\base.html.twig:206 + templates\base.html.twig:237 + + + search.placeholder + Ricerca + + + + + part.labelp + Componenti + + + + + entity.select.group.new_not_added_to_DB + Nuovo (non ancora aggiunto al DB) + + + + + user.password_strength.very_weak + Molto debole + + + + + user.password_strength.weak + Debole + + + + + user.password_strength.medium + Media + + + + + user.password_strength.strong + Forte + + + + + user.password_strength.very_strong + Molto forte + + + + + Part-DB1\templates\_navbar_search.html.twig:68 + Part-DB1\templates\_navbar_search.html.twig:62 + + + search.submit + Cerca! + + + + diff --git a/translations/frontend.ja.xlf b/translations/frontend.ja.xlf new file mode 100644 index 00000000..91a60f0d --- /dev/null +++ b/translations/frontend.ja.xlf @@ -0,0 +1,44 @@ + + + + + + Part-DB1\templates\AdminPages\EntityAdminBase.html.twig:19 + Part-DB1\templates\_navbar_search.html.twig:67 + Part-DB1\templates\_sidebar.html.twig:27 + Part-DB1\templates\_sidebar.html.twig:43 + Part-DB1\templates\_sidebar.html.twig:63 + Part-DB1\templates\AdminPages\EntityAdminBase.html.twig:19 + Part-DB1\templates\_navbar_search.html.twig:61 + Part-DB1\templates\_sidebar.html.twig:27 + Part-DB1\templates\_sidebar.html.twig:43 + Part-DB1\templates\_sidebar.html.twig:63 + templates\AdminPages\EntityAdminBase.html.twig:9 + templates\base.html.twig:80 + templates\base.html.twig:179 + templates\base.html.twig:206 + templates\base.html.twig:237 + + + search.placeholder + 検索 + + + + + part.labelp + 部品 + + + + + Part-DB1\templates\_navbar_search.html.twig:68 + Part-DB1\templates\_navbar_search.html.twig:62 + + + search.submit + 検索 + + + + diff --git a/translations/frontend.nl.xlf b/translations/frontend.nl.xlf new file mode 100644 index 00000000..67514891 --- /dev/null +++ b/translations/frontend.nl.xlf @@ -0,0 +1,28 @@ + + + + + + Part-DB1\templates\AdminPages\EntityAdminBase.html.twig:19 + Part-DB1\templates\_navbar_search.html.twig:67 + Part-DB1\templates\_sidebar.html.twig:27 + Part-DB1\templates\_sidebar.html.twig:43 + Part-DB1\templates\_sidebar.html.twig:63 + Part-DB1\templates\AdminPages\EntityAdminBase.html.twig:19 + Part-DB1\templates\_navbar_search.html.twig:61 + Part-DB1\templates\_sidebar.html.twig:27 + Part-DB1\templates\_sidebar.html.twig:43 + Part-DB1\templates\_sidebar.html.twig:63 + templates\AdminPages\EntityAdminBase.html.twig:9 + templates\base.html.twig:80 + templates\base.html.twig:179 + templates\base.html.twig:206 + templates\base.html.twig:237 + + + search.placeholder + Zoeken + + + + diff --git a/translations/frontend.pl.xlf b/translations/frontend.pl.xlf new file mode 100644 index 00000000..31f59cf4 --- /dev/null +++ b/translations/frontend.pl.xlf @@ -0,0 +1,80 @@ + + + + + + Part-DB1\templates\AdminPages\EntityAdminBase.html.twig:19 + Part-DB1\templates\_navbar_search.html.twig:67 + Part-DB1\templates\_sidebar.html.twig:27 + Part-DB1\templates\_sidebar.html.twig:43 + Part-DB1\templates\_sidebar.html.twig:63 + Part-DB1\templates\AdminPages\EntityAdminBase.html.twig:19 + Part-DB1\templates\_navbar_search.html.twig:61 + Part-DB1\templates\_sidebar.html.twig:27 + Part-DB1\templates\_sidebar.html.twig:43 + Part-DB1\templates\_sidebar.html.twig:63 + templates\AdminPages\EntityAdminBase.html.twig:9 + templates\base.html.twig:80 + templates\base.html.twig:179 + templates\base.html.twig:206 + templates\base.html.twig:237 + + + search.placeholder + Szukaj + + + + + part.labelp + Komponenty + + + + + entity.select.group.new_not_added_to_DB + Nowość (jeszcze niedodana do DB) + + + + + user.password_strength.very_weak + Bardzo słabe + + + + + user.password_strength.weak + Słabe + + + + + user.password_strength.medium + Średnie + + + + + user.password_strength.strong + Mocne + + + + + user.password_strength.very_strong + Bardzo mocne + + + + + Part-DB1\templates\_navbar_search.html.twig:68 + Part-DB1\templates\_navbar_search.html.twig:62 + + + search.submit + Idź! + + + + diff --git a/translations/frontend.ru.xlf b/translations/frontend.ru.xlf new file mode 100644 index 00000000..f63367d9 --- /dev/null +++ b/translations/frontend.ru.xlf @@ -0,0 +1,80 @@ + + + + + + Part-DB1\templates\AdminPages\EntityAdminBase.html.twig:19 + Part-DB1\templates\_navbar_search.html.twig:67 + Part-DB1\templates\_sidebar.html.twig:27 + Part-DB1\templates\_sidebar.html.twig:43 + Part-DB1\templates\_sidebar.html.twig:63 + Part-DB1\templates\AdminPages\EntityAdminBase.html.twig:19 + Part-DB1\templates\_navbar_search.html.twig:61 + Part-DB1\templates\_sidebar.html.twig:27 + Part-DB1\templates\_sidebar.html.twig:43 + Part-DB1\templates\_sidebar.html.twig:63 + templates\AdminPages\EntityAdminBase.html.twig:9 + templates\base.html.twig:80 + templates\base.html.twig:179 + templates\base.html.twig:206 + templates\base.html.twig:237 + + + search.placeholder + Поиск + + + + + part.labelp + Компоненты + + + + + entity.select.group.new_not_added_to_DB + Новый (еще не добавленный в БД) + + + + + user.password_strength.very_weak + Очень слабый + + + + + user.password_strength.weak + Слабый + + + + + user.password_strength.medium + Средний + + + + + user.password_strength.strong + Сильный + + + + + user.password_strength.very_strong + Очень сильный + + + + + Part-DB1\templates\_navbar_search.html.twig:68 + Part-DB1\templates\_navbar_search.html.twig:62 + + + search.submit + Поехали! + + + + diff --git a/translations/frontend.zh.xlf b/translations/frontend.zh.xlf new file mode 100644 index 00000000..08817189 --- /dev/null +++ b/translations/frontend.zh.xlf @@ -0,0 +1,80 @@ + + + + + + Part-DB1\templates\AdminPages\EntityAdminBase.html.twig:19 + Part-DB1\templates\_navbar_search.html.twig:67 + Part-DB1\templates\_sidebar.html.twig:27 + Part-DB1\templates\_sidebar.html.twig:43 + Part-DB1\templates\_sidebar.html.twig:63 + Part-DB1\templates\AdminPages\EntityAdminBase.html.twig:19 + Part-DB1\templates\_navbar_search.html.twig:61 + Part-DB1\templates\_sidebar.html.twig:27 + Part-DB1\templates\_sidebar.html.twig:43 + Part-DB1\templates\_sidebar.html.twig:63 + templates\AdminPages\EntityAdminBase.html.twig:9 + templates\base.html.twig:80 + templates\base.html.twig:179 + templates\base.html.twig:206 + templates\base.html.twig:237 + + + search.placeholder + 搜索 + + + + + part.labelp + 部件 + + + + + entity.select.group.new_not_added_to_DB + 新建(尚未添加到数据库) + + + + + user.password_strength.very_weak + 非常弱 + + + + + user.password_strength.weak + + + + + + user.password_strength.medium + + + + + + user.password_strength.strong + + + + + + user.password_strength.very_strong + 非常强 + + + + + Part-DB1\templates\_navbar_search.html.twig:68 + Part-DB1\templates\_navbar_search.html.twig:62 + + + search.submit + GO! + + + + diff --git a/translations/messages.cs.xlf b/translations/messages.cs.xlf index 096bf247..298e1479 100644 --- a/translations/messages.cs.xlf +++ b/translations/messages.cs.xlf @@ -4025,16 +4025,6 @@ Pokud jste to provedli nesprávně nebo pokud počítač již není důvěryhodn Reg.Ex. shoda - - - Part-DB1\templates\_navbar_search.html.twig:68 - Part-DB1\templates\_navbar_search.html.twig:62 - - - search.submit - Jdi! - - Part-DB1\templates\_sidebar.html.twig:37 @@ -11224,36 +11214,6 @@ Element 3 Není uveden žádný textový obsah! Popisky zůstanou prázdné. - - - user.password_strength.very_weak - Velmi slabé - - - - - user.password_strength.weak - Slabé - - - - - user.password_strength.medium - Střední - - - - - user.password_strength.strong - Silné - - - - - user.password_strength.very_strong - Velmi silné - - perm.users.impersonate diff --git a/translations/messages.da.xlf b/translations/messages.da.xlf index ca536a5d..8ed10c07 100644 --- a/translations/messages.da.xlf +++ b/translations/messages.da.xlf @@ -4032,16 +4032,6 @@ Bemærk også, at uden to-faktor-godkendelse er din konto ikke længere så godt Reg. Ex. matching - - - Part-DB1\templates\_navbar_search.html.twig:68 - Part-DB1\templates\_navbar_search.html.twig:62 - - - search.submit - Kom nu! - - Part-DB1\templates\_sidebar.html.twig:37 @@ -11256,36 +11246,6 @@ Oversættelsen Intet tekstindhold angivet! De oprettede etiketter vil være tomme. - - - user.password_strength.very_weak - Meget svag - - - - - user.password_strength.weak - Svag - - - - - user.password_strength.medium - Middel - - - - - user.password_strength.strong - Stærk - - - - - user.password_strength.very_strong - Meget stærk - - perm.users.impersonate diff --git a/translations/messages.de.xlf b/translations/messages.de.xlf index 10c7e7a7..1930fbbe 100644 --- a/translations/messages.de.xlf +++ b/translations/messages.de.xlf @@ -4024,16 +4024,6 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr Reg.Ex. Matching - - - Part-DB1\templates\_navbar_search.html.twig:68 - Part-DB1\templates\_navbar_search.html.twig:62 - - - search.submit - Los! - - Part-DB1\templates\_sidebar.html.twig:37 @@ -11304,36 +11294,6 @@ Element 1 -> Element 1.2]]> Kein Textinhalt angegeben! Die erzeugten Label werden leer sein. - - - user.password_strength.very_weak - Sehr schwach - - - - - user.password_strength.weak - Schwach - - - - - user.password_strength.medium - Mittel - - - - - user.password_strength.strong - Stark - - - - - user.password_strength.very_strong - Sehr stark - - perm.users.impersonate diff --git a/translations/messages.en.xlf b/translations/messages.en.xlf index feea210a..f7f10146 100644 --- a/translations/messages.en.xlf +++ b/translations/messages.en.xlf @@ -3959,16 +3959,6 @@ If you have done this incorrectly or if a computer is no longer trusted, you can Reg.Ex. Matching - - - Part-DB1\templates\_navbar_search.html.twig:68 - Part-DB1\templates\_navbar_search.html.twig:62 - - - search.submit - Go! - - Part-DB1\templates\_sidebar.html.twig:37 @@ -11153,36 +11143,6 @@ Element 1 -> Element 1.2]]> No text content given! The labels will remain empty. - - - user.password_strength.very_weak - Very weak - - - - - user.password_strength.weak - Weak - - - - - user.password_strength.medium - Medium - - - - - user.password_strength.strong - Strong - - - - - user.password_strength.very_strong - Very strong - - perm.users.impersonate diff --git a/translations/messages.es.xlf b/translations/messages.es.xlf index 8e3057ac..a7c1f906 100644 --- a/translations/messages.es.xlf +++ b/translations/messages.es.xlf @@ -4024,16 +4024,6 @@ Subelementos serán desplazados hacia arriba. Reg.Ex. Matching - - - Part-DB1\templates\_navbar_search.html.twig:68 - Part-DB1\templates\_navbar_search.html.twig:62 - - - search.submit - ¡Vamos! - - Part-DB1\templates\_sidebar.html.twig:37 @@ -11242,36 +11232,6 @@ Elemento 3 ¡No se ha dado contenido de texto! Las etiquetas permanecerán vacías. - - - user.password_strength.very_weak - Muy débil - - - - - user.password_strength.weak - Débil - - - - - user.password_strength.medium - Medio - - - - - user.password_strength.strong - Fuerte - - - - - user.password_strength.very_strong - Muy fuerte - - perm.users.impersonate diff --git a/translations/messages.fr.xlf b/translations/messages.fr.xlf index 7428ca38..9492a94d 100644 --- a/translations/messages.fr.xlf +++ b/translations/messages.fr.xlf @@ -4014,16 +4014,6 @@ Si vous avez fait cela de manière incorrecte ou si un ordinateur n'est plus fia Reg.Ex. Correspondance - - - Part-DB1\templates\_navbar_search.html.twig:68 - Part-DB1\templates\_navbar_search.html.twig:62 - - - search.submit - Rechercher! - - Part-DB1\templates\_sidebar.html.twig:2 diff --git a/translations/messages.hu.xlf b/translations/messages.hu.xlf index c06475ea..a7a56611 100644 --- a/translations/messages.hu.xlf +++ b/translations/messages.hu.xlf @@ -3952,16 +3952,6 @@ Reguláris kifejezés egyezés - - - Part-DB1\templates\_navbar_search.html.twig:68 - Part-DB1\templates\_navbar_search.html.twig:62 - - - search.submit - Indítás! - - Part-DB1\templates\_sidebar.html.twig:37 @@ -11157,36 +11147,6 @@ Nincs szöveges tartalom megadva! A címkék üresek maradnak. - - - user.password_strength.very_weak - Nagyon gyenge - - - - - user.password_strength.weak - Gyenge - - - - - user.password_strength.medium - Közepes - - - - - user.password_strength.strong - Erős - - - - - user.password_strength.very_strong - Nagyon erős - - perm.users.impersonate diff --git a/translations/messages.it.xlf b/translations/messages.it.xlf index 372ca686..5de5b7e5 100644 --- a/translations/messages.it.xlf +++ b/translations/messages.it.xlf @@ -4026,16 +4026,6 @@ Se è stato fatto in modo errato o se un computer non è più attendibile, puoi Corrispondenza Reg.Ex. - - - Part-DB1\templates\_navbar_search.html.twig:68 - Part-DB1\templates\_navbar_search.html.twig:62 - - - search.submit - Cerca! - - Part-DB1\templates\_sidebar.html.twig:37 @@ -11244,36 +11234,6 @@ Element 3 Nessun contenuto di testo specificato! Le etichette generate saranno vuote. - - - user.password_strength.very_weak - Molto debole - - - - - user.password_strength.weak - Debole - - - - - user.password_strength.medium - Media - - - - - user.password_strength.strong - Forte - - - - - user.password_strength.very_strong - Molto forte - - perm.users.impersonate diff --git a/translations/messages.ja.xlf b/translations/messages.ja.xlf index 569c7fc9..acb0fdd9 100644 --- a/translations/messages.ja.xlf +++ b/translations/messages.ja.xlf @@ -4014,16 +4014,6 @@ 正規表現で検索 - - - Part-DB1\templates\_navbar_search.html.twig:68 - Part-DB1\templates\_navbar_search.html.twig:62 - - - search.submit - 検索 - - Part-DB1\templates\_sidebar.html.twig:2 diff --git a/translations/messages.pl.xlf b/translations/messages.pl.xlf index 4fd30d6e..7409e4df 100644 --- a/translations/messages.pl.xlf +++ b/translations/messages.pl.xlf @@ -4029,16 +4029,6 @@ Jeśli zrobiłeś to niepoprawnie lub komputer nie jest już godny zaufania, mo Dopasowywanie Reg.Ex. - - - Part-DB1\templates\_navbar_search.html.twig:68 - Part-DB1\templates\_navbar_search.html.twig:62 - - - search.submit - Idź! - - Part-DB1\templates\_sidebar.html.twig:37 @@ -11247,36 +11237,6 @@ Element 3 Nie podano zawartości tekstowej! Etykiety pozostaną puste. - - - user.password_strength.very_weak - Bardzo słabe - - - - - user.password_strength.weak - Słabe - - - - - user.password_strength.medium - Średnie - - - - - user.password_strength.strong - Mocne - - - - - user.password_strength.very_strong - Bardzo mocne - - perm.users.impersonate diff --git a/translations/messages.ru.xlf b/translations/messages.ru.xlf index 3055fc31..c5100410 100644 --- a/translations/messages.ru.xlf +++ b/translations/messages.ru.xlf @@ -4035,16 +4035,6 @@ Соответствие рег.выраж. - - - Part-DB1\templates\_navbar_search.html.twig:68 - Part-DB1\templates\_navbar_search.html.twig:62 - - - search.submit - Поехали! - - Part-DB1\templates\_sidebar.html.twig:37 @@ -11251,36 +11241,6 @@ Текстовое содержание не указано! Созданные ярлыки будут пустыми. - - - user.password_strength.very_weak - Очень слабый - - - - - user.password_strength.weak - Слабый - - - - - user.password_strength.medium - Средний - - - - - user.password_strength.strong - Сильный - - - - - user.password_strength.very_strong - Очень сильный - - perm.users.impersonate diff --git a/translations/messages.zh.xlf b/translations/messages.zh.xlf index 5e1c8538..44678eb6 100644 --- a/translations/messages.zh.xlf +++ b/translations/messages.zh.xlf @@ -4033,16 +4033,6 @@ 正则匹配 - - - Part-DB1\templates\_navbar_search.html.twig:68 - Part-DB1\templates\_navbar_search.html.twig:62 - - - search.submit - GO! - - Part-DB1\templates\_sidebar.html.twig:37 @@ -11250,36 +11240,6 @@ Element 3 没有文字内容。标签将保持为空 - - - user.password_strength.very_weak - 非常弱 - - - - - user.password_strength.weak - - - - - - user.password_strength.medium - - - - - - user.password_strength.strong - - - - - - user.password_strength.very_strong - 非常强 - - perm.users.impersonate