Skip to content

Commit 5603e05

Browse files
committed
lang: [ar] adding Arabic translation support to shield
1 parent fb5484d commit 5603e05

File tree

2 files changed

+22
-1
lines changed

2 files changed

+22
-1
lines changed

tests/Language/AbstractTranslationTestCase.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ abstract class AbstractTranslationTestCase extends TestCase
4747
* @var array<string, string>
4848
*/
4949
public static array $locales = [
50-
// ArabicTranslationTest::class => 'ar',
50+
ArabicTranslationTest::class => 'ar',
5151
BulgarianTranslationTest::class => 'bg',
5252
// BosnianTranslationTest::class => 'bs',
5353
// CzechTranslationTest::class => 'cs',
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 ArabicTranslationTest extends AbstractTranslationTestCase
20+
{
21+
}

0 commit comments

Comments
 (0)