89 lines
3.4 KiB
PHP
89 lines
3.4 KiB
PHP
|
|
<?php
|
||
|
|
|
||
|
|
return [
|
||
|
|
'unauthorized' => 'Unauthorized. Token not found.',
|
||
|
|
'mobile' => 'Please update your mobile number.',
|
||
|
|
'something_went_wrong' => 'Something went wrong.',
|
||
|
|
'vihar' => [
|
||
|
|
'list' => 'Get vihars successfully!',
|
||
|
|
'store' => 'Vihar added successfully!',
|
||
|
|
'update' => 'Vihar updated successfully!',
|
||
|
|
'destroy' => 'Vihar deleted successfully!',
|
||
|
|
],
|
||
|
|
'chaturmas' => [
|
||
|
|
'list' => 'Get chaturmas successfully!',
|
||
|
|
'store' => 'Chaturmas added successfully!',
|
||
|
|
'update' => 'Chaturmas updated successfully!',
|
||
|
|
'exist' => 'Chaturmas already exist for selected year.',
|
||
|
|
],
|
||
|
|
'chaturmas_review' => [
|
||
|
|
'list' => 'Get chaturmas review successfully!',
|
||
|
|
'store' => 'Chaturmas review added successfully!',
|
||
|
|
'update' => 'Chaturmas review updated successfully!',
|
||
|
|
'exist' => 'Chaturmas already exist for selected year.',
|
||
|
|
],
|
||
|
|
'messages' => [
|
||
|
|
'list' => 'Retrived all the messages successfully!',
|
||
|
|
'send' => 'Message sent successfully!',
|
||
|
|
'clear' => 'All messages are cleared!'
|
||
|
|
],
|
||
|
|
'message_thread' => [
|
||
|
|
'list' => 'Retrived all the message threads successfully!',
|
||
|
|
'delete' => 'Message thread deleted successfully!'
|
||
|
|
],
|
||
|
|
'posts' => [
|
||
|
|
'category_list' => 'Get post catrgory successfully!',
|
||
|
|
'list' => 'Get posts successfully!',
|
||
|
|
'store' => 'Post added successfully!',
|
||
|
|
'update' => 'Post updated successfully!',
|
||
|
|
'destroy' => 'Post deleted successfully!',
|
||
|
|
'show' => 'Get post info successfully!',
|
||
|
|
'like' => 'Post liked successfully!',
|
||
|
|
'dislike' => 'Post disliked successfully!',
|
||
|
|
'hide' => 'Post is hidden!',
|
||
|
|
'unhide' => 'Post is visible again!',
|
||
|
|
'already_hidden' => 'The post is already hidden!',
|
||
|
|
'already_visible' => 'The post is already visible!'
|
||
|
|
],
|
||
|
|
'comments' => [
|
||
|
|
'list' => 'Get comments successfully!',
|
||
|
|
'store' => 'Comment added successfully!',
|
||
|
|
'update' => 'Comment updated successfully!',
|
||
|
|
'destroy' => 'Comment deleted successfully!',
|
||
|
|
],
|
||
|
|
'sant' => [
|
||
|
|
'show' => 'Get sant info successfully!',
|
||
|
|
'follow' => 'Sant follow successfully!',
|
||
|
|
'unfollow' => 'Sant unfollow successfully!',
|
||
|
|
'followlist' => 'Get sant follow list successfully!',
|
||
|
|
'feeds' => 'Get sant feeds list successfully!',
|
||
|
|
],
|
||
|
|
'passive' => [
|
||
|
|
'list' => 'Get childs successfully!',
|
||
|
|
'store' => 'Child added successfully!',
|
||
|
|
'update' => 'Child updated successfully!',
|
||
|
|
'destroy' => 'Child deleted successfully!',
|
||
|
|
'show' => 'Child show successfully!',
|
||
|
|
],
|
||
|
|
'sangh' => [
|
||
|
|
'show' => 'Get sangh info successfully!',
|
||
|
|
'follow' => 'Sangh follow successfully!',
|
||
|
|
'unfollow' => 'Sangh unfollow successfully!',
|
||
|
|
'followlist' => 'Get sangh follow list successfully!',
|
||
|
|
],
|
||
|
|
'thana' => [
|
||
|
|
'list' => 'Get thana successfully!',
|
||
|
|
'store' => 'Thana added successfully!',
|
||
|
|
'update' => 'Thana updated successfully!',
|
||
|
|
'destroy' => 'Thana deleted successfully!',
|
||
|
|
'show' => 'Thana show successfully!',
|
||
|
|
'leader' => 'Make leader successfully!',
|
||
|
|
],
|
||
|
|
'user' => [
|
||
|
|
'block' => 'User profile blocked successfully!',
|
||
|
|
'unblock' => 'User profile unblocked successfully!',
|
||
|
|
'already_blocked' => 'You already blocked this profile.',
|
||
|
|
'already_unblocked' => 'You already unblocked this profile.'
|
||
|
|
]
|
||
|
|
];
|