Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Internationalisation (i18n) #50

Merged
merged 44 commits into from
Jun 21, 2024
Merged
Changes from 1 commit
Commits
Show all changes
44 commits
Select commit Hold shift + click to select a range
86b7b2c
Update fr.po
zarevskaya Jun 15, 2024
00cf261
Merge branch 'develop' into patch-1
zarevskaya Jun 15, 2024
12de4b2
Update fr.po
zarevskaya Jun 15, 2024
2815d25
Update fr.po
zarevskaya Jun 15, 2024
ca601eb
Merge pull request #5 from zarevskaya/zarevskaya-patch-5
zarevskaya Jun 15, 2024
de31c1c
Update fr.po
zarevskaya Jun 15, 2024
405f5ab
Update fr.po
zarevskaya Jun 15, 2024
686d718
Merge branch 'develop' into patch-1
zarevskaya Jun 15, 2024
2dd23fe
Update fr.po
zarevskaya Jun 15, 2024
4d35eeb
Merge pull request #6 from zarevskaya/zarevskaya-patch-6
zarevskaya Jun 15, 2024
3bc60c3
Merge branch 'develop' into patch-1
zarevskaya Jun 16, 2024
7a6bf20
translating back end to spanish by adding the es folder
Romerolweb Jun 16, 2024
831164f
Internationalization (i18n)
daveearley Jun 17, 2024
d00f02a
Merge branch 'i18n' into patch-1
daveearley Jun 18, 2024
f578b6a
Merge pull request #42 from zarevskaya/patch-1
daveearley Jun 18, 2024
43294e4
Merge branch 'develop' into spanish
Romerolweb Jun 18, 2024
8385da4
Merge branch 'develop' into i18n
daveearley Jun 19, 2024
5d82451
Merge branch 'i18n' of github.com:HiEventsDev/hi.events into i18n
daveearley Jun 19, 2024
21b2c93
compile translations
daveearley Jun 19, 2024
9b388ac
Merge branch 'develop' into spanish
daveearley Jun 19, 2024
94b8f6b
Merge branch 'i18n' into spanish
daveearley Jun 19, 2024
b4ebb5e
Merge pull request #48 from Romerolweb/spanish
daveearley Jun 19, 2024
7b35193
Update zh-cn.json (POEditor.com)
daveearley Jun 19, 2024
f050eb4
Update fr.json (POEditor.com)
daveearley Jun 19, 2024
2d6949f
Update de.json (POEditor.com)
daveearley Jun 19, 2024
a80a890
Update es.json (POEditor.com)
daveearley Jun 19, 2024
0a3433d
Update pt.json (POEditor.com)
daveearley Jun 19, 2024
cab4513
Update pt-br.json (POEditor.com)
daveearley Jun 19, 2024
4ef96fb
Add ability to switch language
daveearley Jun 20, 2024
bb4cb17
fix tests
daveearley Jun 20, 2024
812fed8
compile i18n
daveearley Jun 21, 2024
8b4f5ce
Update zh-cn.po (POEditor.com)
daveearley Jun 21, 2024
a95b792
Update fr.po (POEditor.com)
daveearley Jun 21, 2024
ef4c03f
Update de.po (POEditor.com)
daveearley Jun 21, 2024
bf68692
Update pt.po (POEditor.com)
daveearley Jun 21, 2024
4a3451d
Update pt-br.po (POEditor.com)
daveearley Jun 21, 2024
6077a9b
Update es.po (POEditor.com)
daveearley Jun 21, 2024
22410de
Update zh-cn.json (POEditor.com)
daveearley Jun 21, 2024
3cbf5ef
Update fr.json (POEditor.com)
daveearley Jun 21, 2024
e28042d
Update de.json (POEditor.com)
daveearley Jun 21, 2024
5da9307
Update pt.json (POEditor.com)
daveearley Jun 21, 2024
18f5927
Update pt-br.json (POEditor.com)
daveearley Jun 21, 2024
977b4c3
Update es.json (POEditor.com)
daveearley Jun 21, 2024
387ca3c
Merge branch 'develop' into i18n
daveearley Jun 21, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -82,6 +82,11 @@ public function testCancelOrder(): void
$this->mailer->shouldReceive('to')
->once()
->andReturnSelf();

$this->mailer->shouldReceive('locale')
->once()
->andReturnSelf();

$this->mailer->shouldReceive('send')->once()->withArgs(function ($mail) {
return $mail instanceof OrderCancelled;
});