feat: add routes, lang, tests, stubs, docs, and docker configurations

This commit is contained in:
2026-05-21 16:05:16 +07:00
parent fad70d096b
commit 28a06315b8
3385 changed files with 177070 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
<?php
return [
'messages' => [
'uploading_file' => 'በመጫን ላይ...',
],
];
+9
View File
@@ -0,0 +1,9 @@
<?php
return [
'messages' => [
'copied' => 'ተቀድቶዋል',
],
];
+12
View File
@@ -0,0 +1,12 @@
<?php
return [
'actions' => [
'close' => [
'label' => 'ዝጋ',
],
],
];
+41
View File
@@ -0,0 +1,41 @@
<?php
return [
'label' => 'የገጽታ አሰሳ',
'overview' => '{1} ከ1 መዝገብ 1 በማሳየት ላይ |[2,*] ከጠቅላላ :total መዝገቦች ከ:first እስከ :last በማሳየት ላይ::',
'fields' => [
'records_per_page' => [
'label' => 'በየ ገጽ',
'options' => [
'all' => 'ሁሉም',
],
],
],
'actions' => [
'first' => [
'label' => 'መጀመርያ',
],
'go_to_page' => [
'label' => 'ወደ ገጽ :page ሂድ',
],
'last' => [
'label' => 'መጨረሻ',
],
'next' => [
'label' => 'ቀጣይ',
],
'previous' => [
'label' => 'ያለፈው',
],
],
];