This commit is contained in:
Lizandro Guarnizo
2026-01-06 15:35:59 -05:00
commit a768146f65
602 changed files with 42505 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' => '복사 완료',
],
];
+13
View File
@@ -0,0 +1,13 @@
<?php
return [
'actions' => [
'close' => [
'label' => '닫기',
],
],
];
+47
View File
@@ -0,0 +1,47 @@
<?php
return [
'label' => '페이지 탐색',
'overview' => ':total 건 중 :first 건부터 :last 건까지 보기',
'fields' => [
'records_per_page' => [
'label' => '페이지 당',
'options' => [
'all' => '전체',
],
],
],
'actions' => [
'first' => [
'label' => '첫 페이지',
],
'go_to_page' => [
'label' => ':page 페이지로 이동',
],
'last' => [
'label' => '마지막 페이지',
],
'next' => [
'label' => '다음',
],
'previous' => [
'label' => '이전',
],
],
];