mirror of
https://github.com/Part-DB/Part-DB-server.git
synced 2025-12-24 03:49:31 +00:00
* Implementiere bevorzugte Sprachauswahl und Datenquellen-Synonyme Die Spracheinstellungen/System-Settings wurden um die Möglichkeit ergänzt, bevorzugte Sprachen für die Dropdown-Menüs festzulegen. Zudem wurde ein Datenquellen-Synonymsystem implementiert, um benutzerfreundlichere Bezeichnungen anzuzeigen und zu personalisieren. * Anpassung aus Analyse * Entferne alten JSON-basierten Datenquellen-Synonym-Handler Die Verwaltung der Datenquellen-Synonyme wurde überarbeitet, um ein flexibleres und strukturiertes Konzept zu ermöglichen. Der bestehende JSON-basierte Ansatz wurde durch eine neue Service-basierte Architektur ersetzt, die eine bessere Handhabung und Erweiterbarkeit erlaubt. * Ermögliche Rückgabe aller möglichen Sprachoptionen in Verbindung mit den vom Nutzer freigeschalteten. * Removed unnecessary service definition The tag is applied via autoconfiguration * Use default translations for the NotBlank constraint * Started refactoring ElementTypeNameGenerator * Made ElementTypeNameGenerator class readonly * Modified form to work properly with new datastructure * Made the form more beautiful and space saving * Made synonym form even more space saving * Allow to define overrides for any element label there is * Use defined synonyms in ElementTypeNameGenerator * Use ElementTypeNameGenerator where possible * Register synonyms for element types as global translation parameters * Revert changes done to permission layout * Use new synonym system for admin page titles * Removed now unnecessary services * Reworked settings name and translation * Renamed all files to Synonyms * Removed unnecessary translations * Removed unnecessary translations * Fixed duplicate check * Renamed synoynms translations * Use our synonyms for permission translations * Fixed phpstan issue * Added tests --------- Co-authored-by: Marcel Diegelmann <marcel.diegelmann@gmail.com> Co-authored-by: Jan Böhmer <mail@jan-boehmer.de>
59 lines
2.7 KiB
Twig
59 lines
2.7 KiB
Twig
{% macro renderForm(child) %}
|
|
<div class="tc-item mt-1 px-2 pb-1 border-bottom">
|
|
{% form_theme child "form/vertical_bootstrap_layout.html.twig" %}
|
|
<div class="row">
|
|
<div class="col">{{ form_row(child.dataSource) }}</div>
|
|
<div class="col">{{ form_row(child.locale) }}</div>
|
|
<div class="col">{{ form_row(child.translation_singular) }}</div>
|
|
<div class="col">{{ form_row(child.translation_plural) }}</div>
|
|
<div class="col">
|
|
<button type="button" class="btn btn-outline-danger btn-sm tc-remove" {{ stimulus_action('pages/synonyms_collection', 'remove' )}}>
|
|
<i class="fa fa-trash"></i> {{ 'settings.synonyms.type_synonym.remove_entry'|trans }}
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endmacro %}
|
|
|
|
{% block type_synonyms_collection_widget %}
|
|
{% set _attrs = attr|default({}) %}
|
|
{% set _attrs = _attrs|merge({
|
|
class: (_attrs.class|default('') ~ ' type_synonyms_collection-widget')|trim
|
|
}) %}
|
|
|
|
{% set has_proto = prototype is defined %}
|
|
{% if has_proto %}
|
|
{% set __proto %}
|
|
{{- _self.renderForm(prototype) -}}
|
|
{% endset %}
|
|
{% set _proto_html = __proto|e('html_attr') %}
|
|
{% set _proto_name = form.vars.prototype_name|default('__name__') %}
|
|
{% set _index = form|length %}
|
|
{% endif %}
|
|
|
|
<div
|
|
{{ stimulus_controller('pages/synonyms_collection', {
|
|
prototype: has_proto ? _proto_html : '',
|
|
prototypeName: has_proto ? _proto_name : '__name__',
|
|
index: has_proto ? _index : (form|length)
|
|
}) }}
|
|
{{ block('widget_container_attributes')|raw }}{% for k,v in _attrs %} {{ k }}="{{ v }}"{% endfor %}
|
|
>
|
|
<div class="row">
|
|
<div class="col text-center"><strong>{% trans%}settings.synonyms.type_synonym.type{% endtrans%}</strong></div>
|
|
<div class="col text-center"><strong>{% trans%}settings.synonyms.type_synonym.language{% endtrans%}</strong></div>
|
|
<div class="col text-center"><strong>{% trans%}settings.synonyms.type_synonym.translation_singular{% endtrans%}</strong></div>
|
|
<div class="col text-center"><strong>{% trans%}settings.synonyms.type_synonym.translation_plural{% endtrans%}</strong></div>
|
|
<div class="col text-center"></div>
|
|
</div>
|
|
|
|
<div class="tc-items" {{ stimulus_target('pages/synonyms_collection', 'items') }}>
|
|
{% for child in form %}
|
|
{{ _self.renderForm(child) }}
|
|
{% endfor %}
|
|
</div>
|
|
<button type="button" class="btn btn-outline-primary btn-sm mt-2 tc-add" {{ stimulus_action('pages/synonyms_collection', 'add')}}>
|
|
<i class="fa fa-plus"></i> {{ 'settings.synonyms.type_synonym.add_entry'|trans }}
|
|
</button>
|
|
</div>
|
|
{% endblock %}
|