Bläddra i källkod

Backend : traductions

reduction
Guillaume 4 år sedan
förälder
incheckning
479a52f1f8
3 ändrade filer med 23 tillägg och 6 borttagningar
  1. +1
    -1
      ShopBundle/Model/MerchantConfig.php
  2. +15
    -0
      ShopBundle/Resources/translations/lcshop.fr.yaml
  3. +7
    -5
      ShopBundle/Resources/views/backend/form/custom_bootstrap_4.html.twig

+ 1
- 1
ShopBundle/Model/MerchantConfig.php Visa fil

@@ -90,7 +90,7 @@ abstract class MerchantConfig

public function getLabel()
{
return $this->getOptionValue('label') ;
return 'field.MerchantConfig.'.$this->getOptionValue('id') ;
}

public function getFieldType()

+ 15
- 0
ShopBundle/Resources/translations/lcshop.fr.yaml Visa fil

@@ -8,6 +8,8 @@ list:
listChildren: Afficher les enfants
edit: Éditer
delete: Supprimer
send: Envoyer

product:
title: Titre
titleHelp: Un message d'aide
@@ -16,6 +18,8 @@ group:
main: Général
address: Adresse
default: Édition
Général: Général
Adresse: Adresse
ProductFamily:
addresses: Livraisons & facturation
main: Général
@@ -92,6 +96,17 @@ field:
alert: Alerte
info: Information
warningMessage: Contenu du message d'avertissement
newsletters: Newsletters
isPublic: Publique
isDepository: Dépôt
productCategories: Catégories
parent: Parent
date: Date
content: Contenu
devAlias: Alias
merchantConfigs: Configuration
taxRate: Règle de taxe
value: Valeur

ProductFamily:
activeProducts: Activer les déclinaisons

+ 7
- 5
ShopBundle/Resources/views/backend/form/custom_bootstrap_4.html.twig Visa fil

@@ -110,15 +110,17 @@
'%id%': id,
}) %}
{%- else -%}
{% set label = 'form.field.'~easyadmin['entity']['name']~'.'~name %}
{% if label|trans({}, 'lcshop') == label %}{% set label = 'form.field.default.'~name %}{% endif %}
{% if 'field.MerchantConfig.' in label %}
{% set name_trad = label|replace({'field.MerchantConfig.': ''}) %}
{% set trad = name_trad|lc_trad(easyadmin['entity']['name'], 'field') %}
{% else %}
{% set trad = name|lc_trad(easyadmin['entity']['name'], 'field') %}
{% endif %}
{%- endif -%}
<{{ element|default('label') }}{% if label_attr %}{% with { attr: label_attr } %}{{ block('attributes') }}{% endwith %}{% endif %}>{{ name|lc_trad(easyadmin['entity']['name'], 'field') }}</{{ element|default('label') }}>

<{{ element|default('label') }}{% if label_attr %}{% with { attr: label_attr } %}{{ block('attributes') }}{% endwith %}{% endif %}>{{ trad }}</{{ element|default('label') }}>
{%- endif -%}
{%- endblock form_label %}


{% block easyadmin_rest %}
{{- form_rest(form) -}}


Laddar…
Avbryt
Spara