Skip to content

Commit 95e6f5b

Browse files
committed
minor #11727 Fix typo in word invitation (CrayD)
This PR was submitted for the 4.3 branch but it was merged into the 4.2 branch instead (closes #11727). Discussion ---------- Fix typo in word invitation <!-- If your pull request fixes a BUG, use the oldest maintained branch that contains the bug (see https://symfony.com/roadmap for the list of maintained branches). If your pull request documents a NEW FEATURE, use the same Symfony branch where the feature was introduced (and `master` for features of unreleased versions). --> Commits ------- 108fed6 Fix typo in word invitation
2 parents 07edca4 + 108fed6 commit 95e6f5b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

translation/message_format.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -132,13 +132,13 @@ the function name is ``select`` and its statement contains the "cases" of this
132132
select. This function is applied over the ``organizer_gender`` variable::
133133

134134
// prints "Ryan has invited you for his party!"
135-
echo $translator->trans('invition_title', [
135+
echo $translator->trans('invitation_title', [
136136
'organizer_name' => 'Ryan',
137137
'organizer_gender' => 'male',
138138
]);
139139

140140
// prints "John & Jane have invited you for their party!"
141-
echo $translator->trans('invition_title', [
141+
echo $translator->trans('invitation_title', [
142142
'organizer_name' => 'John & Jane',
143143
'organizer_gender' => 'not_applicable',
144144
]);

0 commit comments

Comments
 (0)