Skip to content

Commit

Permalink
Avoid translating untranslatable names.
Browse files Browse the repository at this point in the history
  • Loading branch information
dedccegodk committed Sep 18, 2019
1 parent 85e511c commit 72ab01b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion View/Helper/BoostCakeFormHelper.php
Original file line number Diff line number Diff line change
Expand Up @@ -307,7 +307,7 @@ public function inputs($fields = null, $blacklist = null, $options = array()) {
$actionName = __d('cake', 'Edit %s');
}
$modelName = Inflector::humanize(Inflector::underscore($model));
$legend = sprintf($actionName, __($modelName));
$legend = sprintf($actionName, $modelName);
}

$out = null;
Expand Down

0 comments on commit 72ab01b

Please sign in to comment.