Skip to content

Commit

Permalink
fix(translation): typo in localizable tring
Browse files Browse the repository at this point in the history
  • Loading branch information
btry committed May 17, 2023
1 parent 39a5dce commit 3bb2f3d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion inc/translation.class.php
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ public static function getEditorFieldsHtml(PluginFormcreatorForm_Language $formL
if (!isset($translatableString['id'][$id])) {
// Show nothing if string definitively not found
// Should not happen
return '<td colspan="2">' . __('Iternal error : translatable string not found.', 'formcreator') . '</td>';;
return '<td colspan="2">' . __('Internal error: translatable string not found.', 'formcreator') . '</td>';
}

$type = $translatableString['id'][$id] ?? 'string';
Expand Down

0 comments on commit 3bb2f3d

Please sign in to comment.