Skip to content

Commit

Permalink
fixed untranslated texts (#1841)
Browse files Browse the repository at this point in the history
  • Loading branch information
grossmannmartin authored May 12, 2020
1 parent 032f142 commit f00b218
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion assets/js/loadTranslations.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@ export default function loadTranslations () {
});
}

(new Register()).registerCallback(loadTranslations);
(new Register()).registerCallback(loadTranslations, 200);
2 changes: 1 addition & 1 deletion src/Form/Admin/ArticleFormTypeExtension.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ public function buildForm(FormBuilderInterface $builder, array $options)
'constraints' => [
new Constraints\NotBlank(['message' => 'Please enter date of creation']),
],
'label' => 'Creation date',
'label' => t('Creation date'),
]);
$builder->add($builderArticleDataGroup);
}
Expand Down

0 comments on commit f00b218

Please sign in to comment.