Resolve "I18N für die Datenfelder der Tabelle user_inst"
4 unresolved threads
4 unresolved threads
Closes #605 (closed)
Edited by Thomas Hackl
Merge request reports
Activity
added QM::Code-Review? QM::Funktionalität? TIC labels
added 1 commit
- b2214cb2 - provide i18n for institute assignment data fields in user_inst, re #605 (closed)
added 3 commits
-
b2214cb2...9c51abb9 - 2 commits from branch
main
- 7eb6d738 - provide i18n for institute assignment data fields in user_inst, re #605 (closed)
-
b2214cb2...9c51abb9 - 2 commits from branch
added 2 commits
-
a47ef634 - 1 commit from branch
main
- 77b607da - provide i18n for institute assignment data fields in user_inst, re #605 (closed)
-
a47ef634 - 1 commit from branch
37 35 </label> 38 36 <label> 39 37 <?= _('Telefon') ?> 40 <input type="tel" name="tel" 41 value="<?= htmlReady($institute['telefon']) ?>" 42 <? if ($locked) echo 'disabled'; ?>> 38 <?= I18N::input('tel', $institute['telefon'], 39 ['id' => 'telefon', 'disabled' => $locked ? true : false]) ?> 43 40 </label> 44 41 <label> 45 42 <?= _('Fax') ?> 46 <input type="tel" name="fax" 47 value="<?= htmlReady($institute['fax']) ?>" 48 <? if ($locked) echo 'disabled'; ?>> 43 <?= I18N::input('fax', $institute['fax'], 44 ['id' => 'fax', 'disabled' => $locked ? true : false]) ?> 31 30 </label> 32 31 <label> 33 32 <?= _('Sprechzeit') ?> 34 <input type="text" name="sprech" id="sprech" 35 value="<?= htmlReady($institute['sprechzeiten']) ?>" 36 <? if ($locked) echo 'disabled'; ?>> 33 <?= I18N::input('sprech', $institute['sprechzeiten'], 34 ['id' => 'sprech', 'disabled' => $locked ? true : false]) ?> 37 35 </label> 38 36 <label> 39 37 <?= _('Telefon') ?> 40 <input type="tel" name="tel" 41 value="<?= htmlReady($institute['telefon']) ?>" 42 <? if ($locked) echo 'disabled'; ?>> 38 <?= I18N::input('tel', $institute['telefon'], 39 ['id' => 'telefon', 'disabled' => $locked ? true : false]) ?> 25 25 </label> 26 26 <label> 27 27 <?= _('Raum') ?> 28 <input type="text" name="raum" id="raum" 29 value="<?= htmlReady($institute['raum']) ?>" 30 <? if ($locked) echo 'disabled'; ?>> 28 <?= I18N::input('raum', $institute['raum'], 29 ['id' => 'raum', 'disabled' => $locked ? true : false]) ?> 31 30 </label> 32 31 <label> 33 32 <?= _('Sprechzeit') ?> 34 <input type="text" name="sprech" id="sprech" 35 value="<?= htmlReady($institute['sprechzeiten']) ?>" 36 <? if ($locked) echo 'disabled'; ?>> 33 <?= I18N::input('sprech', $institute['sprechzeiten'], 34 ['id' => 'sprech', 'disabled' => $locked ? true : false]) ?> 25 25 </label> 26 26 <label> 27 27 <?= _('Raum') ?> 28 <input type="text" name="raum" id="raum" 29 value="<?= htmlReady($institute['raum']) ?>" 30 <? if ($locked) echo 'disabled'; ?>> 28 <?= I18N::input('raum', $institute['raum'], 29 ['id' => 'raum', 'disabled' => $locked ? true : false]) ?> mentioned in commit 3c1c4f1f
mentioned in commit d3cecf0a
Please register or sign in to reply