feat(LRL App): init V0

This commit is contained in:
2025-10-22 17:09:48 +02:00
parent d3303fee95
commit 0924da3cda
475 changed files with 44862 additions and 7 deletions

12
lang/en/contacts.php Normal file
View File

@@ -0,0 +1,12 @@
<?php
return [
'fields' => [
'contact' => 'Contact',
'contacts' => 'Contacts',
],
'responses' => [
'success' => 'Your message has been sent successfully',
'error' => 'An error occurred while sending the message',
]
];

12
lang/en/member_groups.php Normal file
View File

@@ -0,0 +1,12 @@
<?php
return [
'fields' => [
'group' => 'Group',
'groups' => 'Groups',
'name' => 'Name',
'description' => 'Description',
'created_at' => 'Created at',
'Updated at' => 'Updated at'
],
];

26
lang/en/members.php Normal file
View File

@@ -0,0 +1,26 @@
<?php
return [
'fields' => [
'member' => 'Member',
'keycloak_id' => 'Keycloak ID',
'status' => 'Status',
'nature' => 'Nature',
'group_id' => 'Group',
'lastname' => 'Last name',
'firstname' => 'First name',
'email' => 'Email address',
'company' => 'Company',
'date_of_birth' => 'Date of birth',
'address' => 'Address',
'zipcode' => 'Zip code',
'city' => 'City',
'country' => 'Country',
'phone1' => 'Phone 1',
'phone2' => 'Phone 2',
'public_membership' => 'Public membership',
'created_at' => 'Created at',
'updated_at' => 'Updated at',
'deleted_at' => 'Deleted at',
],
];

23
lang/en/membership.php Normal file
View File

@@ -0,0 +1,23 @@
<?php
return [
'membership' => 'Membership',
'memberships' => 'Memberships',
'member' => 'Member',
'members' => 'Members',
'member_id' => 'Member ID',
'admin_id' => 'Created by',
'status' => 'Status',
'pending' => 'Pending',
'active' => 'Active',
'expired' => 'Expired',
'start_date' => 'Start date',
'end_date' => 'End date',
'amount' => 'Amount',
'payment_status' => 'Payment status',
'paid' => 'Paid',
'unpaid' => 'Unpaid',
'partial' => 'Partially paid',
'created_at' => 'Created at',
'updated_at' => 'Updated at',
];

12
lang/en/packages.php Normal file
View File

@@ -0,0 +1,12 @@
<?php
return [
'fields' => [
'package' => 'Package',
'packages' => 'Packages',
'identifier' => 'identifier',
'name' => 'Name',
'description' => 'Description',
'is_active' => 'Active',
]
];

13
lang/en/services.php Normal file
View File

@@ -0,0 +1,13 @@
<?php
return [
'fields' => [
'service' => 'Service',
'services' => 'Services',
'identifier' => 'identifier',
'name' => 'Name',
'description' => 'Description',
'url' => 'URL',
'icon' => 'Icon',
]
];