Merge pull request #33684 from FHenry/feat_context_translation_for_grid_label
feat: allow Context for translation in DocField.label for Table DocField
This commit is contained in:
commit
59f320de4d
1 changed files with 1 additions and 1 deletions
|
|
@ -65,7 +65,7 @@ export default class Grid {
|
|||
make() {
|
||||
let template = `
|
||||
<div class="grid-field">
|
||||
<label class="control-label">${__(this.df.label || "")}</label>
|
||||
<label class="control-label">${__(this.df.label || "", null, this.df.parent)}</label>
|
||||
<span class="help"></span>
|
||||
<p class="text-muted small grid-description"></p>
|
||||
<div class="grid-custom-buttons"></div>
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue