diff --git a/config/config.default.php b/config/config.default.php index 89e424d9..19d56cc5 100644 --- a/config/config.default.php +++ b/config/config.default.php @@ -383,6 +383,9 @@ return [ '4XL' => '4XLarge Straight-Cut', ], + // T-shirt Size-Guide link + 'tshirt_link' => env('TSHIRT_LINK', null), + // Whether to show the current day of the event (-2, -1, 0, 1, 2…) in footer and on the dashboard. // The event start date has to be set for it to appear. 'enable_show_day_of_event' => false, diff --git a/resources/assets/themes/base.scss b/resources/assets/themes/base.scss index 5abf23ed..c9018032 100644 --- a/resources/assets/themes/base.scss +++ b/resources/assets/themes/base.scss @@ -23,6 +23,8 @@ $theme-colors: map-merge($theme-colors, $custom-colors); $form-label-font-weight: $font-weight-bold; +$choices-guttering: auto; + @import '~bootstrap/scss/utilities'; @import '~bootstrap/scss/root'; diff --git a/resources/lang/de_DE/default.po b/resources/lang/de_DE/default.po index 26f0c534..5d7eb575 100644 --- a/resources/lang/de_DE/default.po +++ b/resources/lang/de_DE/default.po @@ -1625,6 +1625,16 @@ msgstr "Dies kann jederzeit durch eine E-Mail an %1$s msgid "settings.profile.shirt_size" msgstr "T-Shirt-Größe" +msgid "settings.profile.shirt_size.hint" +msgstr "Ein straight-cut T-Shirt hat breite Schultern und einen fast quadratischen Körper. " +"Ein fitted-cut (tailliertes) T-Shirt hat eine geschwungene Seitennaht, die an der Taille schmaler " +"ist und einen größeren Brust- sowie Hüft-Umfang hat. " +"Normalerweise fallen fitted-cut (taillierte) T-Shirts kleiner aus als straight-cut T-Shirts in der gleichen Größe, " +"außerdem sind die Größen von Marke zu Marke unterscheiden." + +msgid "settings.profile.shirt.link" +msgstr "Mehr Informationen" + msgid "settings.profile.angeltypes.info" msgstr "Du kannst deine Engeltypen auf der Engeltypen-Seite verwalten." diff --git a/resources/lang/en_US/default.po b/resources/lang/en_US/default.po index 378317af..6ad9e303 100644 --- a/resources/lang/en_US/default.po +++ b/resources/lang/en_US/default.po @@ -344,6 +344,16 @@ msgstr "To withdraw your approval, send an e-mail to %1$s< msgid "settings.profile.shirt_size" msgstr "T-shirt size" +msgid "settings.profile.shirt_size.hint" +msgstr "A straight-cut shirt has wide shoulders and a body which is almost square. " +"A fitted-cut t-shirt has a curved side seam which comes in at the waist " +"and goes out at the upper and lower ends. " +"Normally fitted-cut shirts are smaller then same size straight-cut shirts, " +"and sizes differ between brands." + +msgid "settings.profile.shirt.link" +msgstr "More information" + msgid "settings.profile.angeltypes.info" msgstr "You can manage your Angeltypes on the Angeltypes page." diff --git a/resources/views/macros/form.twig b/resources/views/macros/form.twig index e577a2dc..581aa8d4 100644 --- a/resources/views/macros/form.twig +++ b/resources/views/macros/form.twig @@ -202,6 +202,15 @@ Renders a select element wrapped in a DIV with mb-3. {% endfor %} + {% if opt.form_text|default('') %} +