Skip to content

Commit 5de6696

Browse files
committed
Added tests and made them pass
1 parent f4def60 commit 5de6696

File tree

3 files changed

+24
-3
lines changed

3 files changed

+24
-3
lines changed

src/Language/sv-SE/Auth.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@
8484
'needVerification' => 'Kontrollera din epost för att slutföra aktiveringen av kontot.',
8585

8686
// Activate
87-
'emailActivateTitle' => 'Email Activation',
87+
'emailActivateTitle' => 'Verifiering av epostadress',
8888
'emailActivateBody' => 'Ett meddelande har just skickats för att det skall gå att verifiera din epostadress. Kopiera aktiveringskoden från meddelandet och klistra in den nedan.',
8989
'emailActivateSubject' => 'Din aktiveringskod',
9090
'emailActivateMailBody' => 'Använd koden nedan för att aktivera ditt konto för att kunna använda webplatsen.',

tests/Language/AbstractTranslationTestCase.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,8 +69,8 @@ abstract class AbstractTranslationTestCase extends TestCase
6969
BrazilianTranslationTest::class => 'pt-BR',
7070
// RussianTranslationTest::class => 'ru',
7171
// SinhalaTranslationTest::class => 'si',
72-
SlovakTranslationTest::class => 'sk',
73-
// SwedishTranslationTest::class => 'sv-SE',
72+
SlovakTranslationTest::class => 'sk',
73+
SwedishTranslationTest::class => 'sv-SE',
7474
// ThaiTranslationTest::class => 'th',
7575
TurkishTranslationTest::class => 'tr',
7676
// UkrainianTranslationTest::class => 'uk',
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
<?php
2+
3+
declare(strict_types=1);
4+
5+
/**
6+
* This file is part of CodeIgniter 4 framework.
7+
*
8+
* (c) CodeIgniter Foundation <admin@codeigniter.com>
9+
*
10+
* For the full copyright and license information, please view
11+
* the LICENSE file that was distributed with this source code.
12+
*/
13+
14+
namespace Tests\Language;
15+
16+
/**
17+
* @internal
18+
*/
19+
final class SwedishTranslationTest extends AbstractTranslationTestCase
20+
{
21+
}

0 commit comments

Comments
 (0)