Skip to content

Commit

Permalink
fix(form_language): untranslated string
Browse files Browse the repository at this point in the history
  • Loading branch information
btry committed Feb 23, 2022
1 parent 809d68a commit c674334
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion inc/form_language.class.php
Original file line number Diff line number Diff line change
Expand Up @@ -392,7 +392,7 @@ public static function showForForm(CommonDBTM $item, $withtemplate = '') {
$formId = $item->getID();
$url = self::getFormURL();
echo "<div class='center'>" .
"<a class='vsubmit' href='#' onclick='plugin_formcreator.createLanguage($formId);'>" . __('Add a new language') .
"<a class='vsubmit' href='#' onclick='plugin_formcreator.createLanguage($formId);'>" . __('Add a new language', 'formcreator') .
"</a></div><br>";
echo '<div id="plugin_formcreator_formLanguage"></div>';
}
Expand Down

0 comments on commit c674334

Please sign in to comment.