Skip to content

Commit 0fbe1e5

Browse files
committed
Add crud translations
1 parent 2e640ef commit 0fbe1e5

File tree

2 files changed

+38
-0
lines changed

2 files changed

+38
-0
lines changed

src/lang/en/crud.php

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
<?php
2+
3+
return [
4+
5+
'listed' => 'Listed',
6+
'retrieved' => 'Retrieved',
7+
'viewed' => 'Viewed',
8+
'created' => 'Created',
9+
'updated' => 'Updated',
10+
'deleted' => 'Deleted',
11+
'not_found' => 'Not found',
12+
'could_not_deleted' => 'Could not deleted',
13+
'could_not_updated' => 'Could not updated',
14+
'exists' => 'Already Exists',
15+
'invalid_file_name' => 'Invalid file name',
16+
'error_while_uploading_file' => 'Error while uploading file',
17+
'upload_success' => 'Upload success',
18+
19+
];

src/lang/tr/crud.php

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
<?php
2+
3+
return [
4+
5+
'listed' => 'Listelendi',
6+
'retrieved' => 'Getirildi',
7+
'viewed' => 'Görüntülendi',
8+
'created' => 'Oluşturuldu',
9+
'updated' => 'Güncellendi',
10+
'deleted' => 'Silindi',
11+
'not_found' => 'Bulunamadı',
12+
'could_not_deleted' => 'Silinemedi',
13+
'could_not_updated' => 'Güncellenemedi',
14+
'exists' => 'Zaten Var',
15+
'invalid_file_name' => 'Geçersiz dosya adı',
16+
'error_while_uploading_file' => 'Dosya yüklenirken bir hata meydana geldi.',
17+
'upload_success' => 'Yükleme başarılı',
18+
19+
];

0 commit comments

Comments
 (0)