diff --git a/app/Controllers/Items.php b/app/Controllers/Items.php index b3797ce16..ae45ec86a 100644 --- a/app/Controllers/Items.php +++ b/app/Controllers/Items.php @@ -614,7 +614,7 @@ class Items extends Secure_Controller $success = TRUE; $new_item = FALSE; - if($item_id == NEW_ITEM) + if($item_id === NEW_ITEM) { $item_id = $item_data['item_id']; $new_item = TRUE; diff --git a/app/Controllers/Messages.php b/app/Controllers/Messages.php index f22f12793..6bb625185 100644 --- a/app/Controllers/Messages.php +++ b/app/Controllers/Messages.php @@ -51,11 +51,11 @@ class Messages extends Secure_Controller if($response) { - echo json_encode (['success' => TRUE, 'message' => lang('Messages.successfully_sent') . ' ' . $phone]); + echo json_encode (['success' => TRUE, 'message' => lang('Messages.successfully_sent') . ' ' . esc($phone)]); } else { - echo json_encode (['success' => FALSE, 'message' => lang('Messages.unsuccessfully_sent') . ' ' . $phone]); + echo json_encode (['success' => FALSE, 'message' => lang('Messages.unsuccessfully_sent') . ' ' . esc($phone)]); } } @@ -76,7 +76,7 @@ class Messages extends Secure_Controller { echo json_encode ([ 'success' => TRUE, - 'message' => lang('Messages.successfully_sent') . ' ' . $phone, + 'message' => lang('Messages.successfully_sent') . ' ' . esc($phone), 'person_id' => $person_id //TODO: Replace -1 with a constant ]); } @@ -84,9 +84,9 @@ class Messages extends Secure_Controller { echo json_encode ([ 'success' => FALSE, - 'message' => lang('Messages.unsuccessfully_sent') . ' ' . $phone, + 'message' => lang('Messages.unsuccessfully_sent') . ' ' . esc($phone), 'person_id' => -1 //TODO: Replace -1 with a constant ]); } } -} \ No newline at end of file +} diff --git a/app/Helpers/tabular_helper.php b/app/Helpers/tabular_helper.php index 27f4d7a72..448bfe2df 100644 --- a/app/Helpers/tabular_helper.php +++ b/app/Helpers/tabular_helper.php @@ -155,9 +155,9 @@ function get_sale_data_last_row(ResultInterface $sales): array return [ 'sale_id' => '-', 'sale_time' => lang('Sales.total'), - 'amount_due' => ''.to_currency($sum_amount_due).'', - 'amount_tendered' => ''. to_currency($sum_amount_tendered).'', - 'change_due' => ''.to_currency($sum_change_due).'' + 'amount_due' => to_currency($sum_amount_due), + 'amount_tendered' => to_currency($sum_amount_tendered), + 'change_due' => to_currency($sum_change_due) ]; } @@ -910,4 +910,4 @@ function get_cash_up_data_row(object $cash_up): array ] ) ]; -} \ No newline at end of file +} diff --git a/app/Language/ar-EG/attributes_lang.php b/app/Language/ar-EG/Attributes.php similarity index 100% rename from app/Language/ar-EG/attributes_lang.php rename to app/Language/ar-EG/Attributes.php diff --git a/app/Language/ar-EG/bootstrap_tables_lang.php b/app/Language/ar-EG/Bootstrap_tables.php similarity index 100% rename from app/Language/ar-EG/bootstrap_tables_lang.php rename to app/Language/ar-EG/Bootstrap_tables.php diff --git a/app/Language/ar-EG/cashups_lang.php b/app/Language/ar-EG/Cashups.php similarity index 100% rename from app/Language/ar-EG/cashups_lang.php rename to app/Language/ar-EG/Cashups.php diff --git a/app/Language/ar-EG/common_lang.php b/app/Language/ar-EG/Common.php similarity index 100% rename from app/Language/ar-EG/common_lang.php rename to app/Language/ar-EG/Common.php diff --git a/app/Language/ar-EG/config_lang.php b/app/Language/ar-EG/Config.php similarity index 100% rename from app/Language/ar-EG/config_lang.php rename to app/Language/ar-EG/Config.php diff --git a/app/Language/ar-EG/customers_lang.php b/app/Language/ar-EG/Customers.php similarity index 100% rename from app/Language/ar-EG/customers_lang.php rename to app/Language/ar-EG/Customers.php diff --git a/app/Language/ar-EG/datepicker_lang.php b/app/Language/ar-EG/Datepicker.php similarity index 100% rename from app/Language/ar-EG/datepicker_lang.php rename to app/Language/ar-EG/Datepicker.php diff --git a/app/Language/ar-EG/employees_lang.php b/app/Language/ar-EG/Employees.php similarity index 100% rename from app/Language/ar-EG/employees_lang.php rename to app/Language/ar-EG/Employees.php diff --git a/app/Language/ar-EG/enum_lang.php b/app/Language/ar-EG/Enum.php similarity index 100% rename from app/Language/ar-EG/enum_lang.php rename to app/Language/ar-EG/Enum.php diff --git a/app/Language/ar-EG/error_lang.php b/app/Language/ar-EG/Error.php similarity index 100% rename from app/Language/ar-EG/error_lang.php rename to app/Language/ar-EG/Error.php diff --git a/app/Language/ar-EG/expenses_lang.php b/app/Language/ar-EG/Expenses.php similarity index 100% rename from app/Language/ar-EG/expenses_lang.php rename to app/Language/ar-EG/Expenses.php diff --git a/app/Language/ar-EG/expenses_categories_lang.php b/app/Language/ar-EG/Expenses_categories.php similarity index 100% rename from app/Language/ar-EG/expenses_categories_lang.php rename to app/Language/ar-EG/Expenses_categories.php diff --git a/app/Language/ar-EG/giftcards_lang.php b/app/Language/ar-EG/Giftcards.php similarity index 100% rename from app/Language/ar-EG/giftcards_lang.php rename to app/Language/ar-EG/Giftcards.php diff --git a/app/Language/ar-EG/item_kits_lang.php b/app/Language/ar-EG/Item_kits.php similarity index 100% rename from app/Language/ar-EG/item_kits_lang.php rename to app/Language/ar-EG/Item_kits.php diff --git a/app/Language/ar-EG/items_lang.php b/app/Language/ar-EG/Items.php similarity index 100% rename from app/Language/ar-EG/items_lang.php rename to app/Language/ar-EG/Items.php diff --git a/app/Language/ar-EG/login_lang.php b/app/Language/ar-EG/Login.php similarity index 100% rename from app/Language/ar-EG/login_lang.php rename to app/Language/ar-EG/Login.php diff --git a/app/Language/ar-EG/messages_lang.php b/app/Language/ar-EG/Messages.php similarity index 100% rename from app/Language/ar-EG/messages_lang.php rename to app/Language/ar-EG/Messages.php diff --git a/app/Language/ar-EG/module_lang.php b/app/Language/ar-EG/Module.php similarity index 100% rename from app/Language/ar-EG/module_lang.php rename to app/Language/ar-EG/Module.php diff --git a/app/Language/ar-EG/receivings_lang.php b/app/Language/ar-EG/Receivings.php similarity index 100% rename from app/Language/ar-EG/receivings_lang.php rename to app/Language/ar-EG/Receivings.php diff --git a/app/Language/ar-EG/reports_lang.php b/app/Language/ar-EG/Reports.php similarity index 100% rename from app/Language/ar-EG/reports_lang.php rename to app/Language/ar-EG/Reports.php diff --git a/app/Language/ar-EG/sales_lang.php b/app/Language/ar-EG/Sales.php similarity index 100% rename from app/Language/ar-EG/sales_lang.php rename to app/Language/ar-EG/Sales.php diff --git a/app/Language/ar-EG/suppliers_lang.php b/app/Language/ar-EG/Suppliers.php similarity index 100% rename from app/Language/ar-EG/suppliers_lang.php rename to app/Language/ar-EG/Suppliers.php diff --git a/app/Language/ar-EG/taxes_lang.php b/app/Language/ar-EG/Taxes.php similarity index 100% rename from app/Language/ar-EG/taxes_lang.php rename to app/Language/ar-EG/Taxes.php diff --git a/app/Language/ar-LB/attributes_lang.php b/app/Language/ar-LB/Attributes.php similarity index 100% rename from app/Language/ar-LB/attributes_lang.php rename to app/Language/ar-LB/Attributes.php diff --git a/app/Language/ar-LB/bootstrap_tables_lang.php b/app/Language/ar-LB/Bootstrap_tables.php similarity index 100% rename from app/Language/ar-LB/bootstrap_tables_lang.php rename to app/Language/ar-LB/Bootstrap_tables.php diff --git a/app/Language/ar-LB/cashups_lang.php b/app/Language/ar-LB/Cashups.php similarity index 100% rename from app/Language/ar-LB/cashups_lang.php rename to app/Language/ar-LB/Cashups.php diff --git a/app/Language/ar-LB/common_lang.php b/app/Language/ar-LB/Common.php similarity index 100% rename from app/Language/ar-LB/common_lang.php rename to app/Language/ar-LB/Common.php diff --git a/app/Language/ar-LB/config_lang.php b/app/Language/ar-LB/Config.php similarity index 100% rename from app/Language/ar-LB/config_lang.php rename to app/Language/ar-LB/Config.php diff --git a/app/Language/ar-LB/customers_lang.php b/app/Language/ar-LB/Customers.php similarity index 100% rename from app/Language/ar-LB/customers_lang.php rename to app/Language/ar-LB/Customers.php diff --git a/app/Language/ar-LB/datepicker_lang.php b/app/Language/ar-LB/Datepicker.php similarity index 100% rename from app/Language/ar-LB/datepicker_lang.php rename to app/Language/ar-LB/Datepicker.php diff --git a/app/Language/ar-LB/employees_lang.php b/app/Language/ar-LB/Employees.php similarity index 100% rename from app/Language/ar-LB/employees_lang.php rename to app/Language/ar-LB/Employees.php diff --git a/app/Language/ar-LB/enum_lang.php b/app/Language/ar-LB/Enum.php similarity index 100% rename from app/Language/ar-LB/enum_lang.php rename to app/Language/ar-LB/Enum.php diff --git a/app/Language/ar-LB/error_lang.php b/app/Language/ar-LB/Error.php similarity index 100% rename from app/Language/ar-LB/error_lang.php rename to app/Language/ar-LB/Error.php diff --git a/app/Language/ar-LB/expenses_lang.php b/app/Language/ar-LB/Expenses.php similarity index 100% rename from app/Language/ar-LB/expenses_lang.php rename to app/Language/ar-LB/Expenses.php diff --git a/app/Language/ar-LB/expenses_categories_lang.php b/app/Language/ar-LB/Expenses_categories.php similarity index 100% rename from app/Language/ar-LB/expenses_categories_lang.php rename to app/Language/ar-LB/Expenses_categories.php diff --git a/app/Language/ar-LB/giftcards_lang.php b/app/Language/ar-LB/Giftcards.php similarity index 100% rename from app/Language/ar-LB/giftcards_lang.php rename to app/Language/ar-LB/Giftcards.php diff --git a/app/Language/ar-LB/item_kits_lang.php b/app/Language/ar-LB/Item_kits.php similarity index 100% rename from app/Language/ar-LB/item_kits_lang.php rename to app/Language/ar-LB/Item_kits.php diff --git a/app/Language/ar-LB/items_lang.php b/app/Language/ar-LB/Items.php similarity index 100% rename from app/Language/ar-LB/items_lang.php rename to app/Language/ar-LB/Items.php diff --git a/app/Language/ar-LB/login_lang.php b/app/Language/ar-LB/Login.php similarity index 100% rename from app/Language/ar-LB/login_lang.php rename to app/Language/ar-LB/Login.php diff --git a/app/Language/ar-LB/messages_lang.php b/app/Language/ar-LB/Messages.php similarity index 100% rename from app/Language/ar-LB/messages_lang.php rename to app/Language/ar-LB/Messages.php diff --git a/app/Language/ar-LB/module_lang.php b/app/Language/ar-LB/Module.php similarity index 100% rename from app/Language/ar-LB/module_lang.php rename to app/Language/ar-LB/Module.php diff --git a/app/Language/ar-LB/receivings_lang.php b/app/Language/ar-LB/Receivings.php similarity index 100% rename from app/Language/ar-LB/receivings_lang.php rename to app/Language/ar-LB/Receivings.php diff --git a/app/Language/ar-LB/reports_lang.php b/app/Language/ar-LB/Reports.php similarity index 100% rename from app/Language/ar-LB/reports_lang.php rename to app/Language/ar-LB/Reports.php diff --git a/app/Language/ar-LB/sales_lang.php b/app/Language/ar-LB/Sales.php similarity index 100% rename from app/Language/ar-LB/sales_lang.php rename to app/Language/ar-LB/Sales.php diff --git a/app/Language/ar-LB/suppliers_lang.php b/app/Language/ar-LB/Suppliers.php similarity index 100% rename from app/Language/ar-LB/suppliers_lang.php rename to app/Language/ar-LB/Suppliers.php diff --git a/app/Language/ar-LB/taxes_lang.php b/app/Language/ar-LB/Taxes.php similarity index 100% rename from app/Language/ar-LB/taxes_lang.php rename to app/Language/ar-LB/Taxes.php diff --git a/app/Language/az-AZ/attributes_lang.php b/app/Language/az-AZ/Attributes.php similarity index 100% rename from app/Language/az-AZ/attributes_lang.php rename to app/Language/az-AZ/Attributes.php diff --git a/app/Language/az-AZ/bootstrap_tables_lang.php b/app/Language/az-AZ/Bootstrap_tables.php similarity index 100% rename from app/Language/az-AZ/bootstrap_tables_lang.php rename to app/Language/az-AZ/Bootstrap_tables.php diff --git a/app/Language/az-AZ/cashups_lang.php b/app/Language/az-AZ/Cashups.php similarity index 100% rename from app/Language/az-AZ/cashups_lang.php rename to app/Language/az-AZ/Cashups.php diff --git a/app/Language/az-AZ/common_lang.php b/app/Language/az-AZ/Common.php similarity index 100% rename from app/Language/az-AZ/common_lang.php rename to app/Language/az-AZ/Common.php diff --git a/app/Language/az-AZ/config_lang.php b/app/Language/az-AZ/Config.php similarity index 100% rename from app/Language/az-AZ/config_lang.php rename to app/Language/az-AZ/Config.php diff --git a/app/Language/az-AZ/customers_lang.php b/app/Language/az-AZ/Customers.php similarity index 100% rename from app/Language/az-AZ/customers_lang.php rename to app/Language/az-AZ/Customers.php diff --git a/app/Language/az-AZ/datepicker_lang.php b/app/Language/az-AZ/Datepicker.php similarity index 100% rename from app/Language/az-AZ/datepicker_lang.php rename to app/Language/az-AZ/Datepicker.php diff --git a/app/Language/az-AZ/employees_lang.php b/app/Language/az-AZ/Employees.php similarity index 100% rename from app/Language/az-AZ/employees_lang.php rename to app/Language/az-AZ/Employees.php diff --git a/app/Language/az-AZ/enum_lang.php b/app/Language/az-AZ/Enum.php similarity index 100% rename from app/Language/az-AZ/enum_lang.php rename to app/Language/az-AZ/Enum.php diff --git a/app/Language/az-AZ/error_lang.php b/app/Language/az-AZ/Error.php similarity index 100% rename from app/Language/az-AZ/error_lang.php rename to app/Language/az-AZ/Error.php diff --git a/app/Language/az-AZ/expenses_lang.php b/app/Language/az-AZ/Expenses.php similarity index 100% rename from app/Language/az-AZ/expenses_lang.php rename to app/Language/az-AZ/Expenses.php diff --git a/app/Language/az-AZ/expenses_categories_lang.php b/app/Language/az-AZ/Expenses_categories.php similarity index 100% rename from app/Language/az-AZ/expenses_categories_lang.php rename to app/Language/az-AZ/Expenses_categories.php diff --git a/app/Language/az-AZ/giftcards_lang.php b/app/Language/az-AZ/Giftcards.php similarity index 100% rename from app/Language/az-AZ/giftcards_lang.php rename to app/Language/az-AZ/Giftcards.php diff --git a/app/Language/az-AZ/item_kits_lang.php b/app/Language/az-AZ/Item_kits.php similarity index 100% rename from app/Language/az-AZ/item_kits_lang.php rename to app/Language/az-AZ/Item_kits.php diff --git a/app/Language/az-AZ/items_lang.php b/app/Language/az-AZ/Items.php similarity index 100% rename from app/Language/az-AZ/items_lang.php rename to app/Language/az-AZ/Items.php diff --git a/app/Language/az-AZ/login_lang.php b/app/Language/az-AZ/Login.php similarity index 100% rename from app/Language/az-AZ/login_lang.php rename to app/Language/az-AZ/Login.php diff --git a/app/Language/az-AZ/messages_lang.php b/app/Language/az-AZ/Messages.php similarity index 100% rename from app/Language/az-AZ/messages_lang.php rename to app/Language/az-AZ/Messages.php diff --git a/app/Language/az-AZ/module_lang.php b/app/Language/az-AZ/Module.php similarity index 100% rename from app/Language/az-AZ/module_lang.php rename to app/Language/az-AZ/Module.php diff --git a/app/Language/az-AZ/receivings_lang.php b/app/Language/az-AZ/Receivings.php similarity index 100% rename from app/Language/az-AZ/receivings_lang.php rename to app/Language/az-AZ/Receivings.php diff --git a/app/Language/az-AZ/reports_lang.php b/app/Language/az-AZ/Reports.php similarity index 100% rename from app/Language/az-AZ/reports_lang.php rename to app/Language/az-AZ/Reports.php diff --git a/app/Language/az-AZ/sales_lang.php b/app/Language/az-AZ/Sales.php similarity index 100% rename from app/Language/az-AZ/sales_lang.php rename to app/Language/az-AZ/Sales.php diff --git a/app/Language/az-AZ/suppliers_lang.php b/app/Language/az-AZ/Suppliers.php similarity index 100% rename from app/Language/az-AZ/suppliers_lang.php rename to app/Language/az-AZ/Suppliers.php diff --git a/app/Language/az-AZ/taxes_lang.php b/app/Language/az-AZ/Taxes.php similarity index 100% rename from app/Language/az-AZ/taxes_lang.php rename to app/Language/az-AZ/Taxes.php diff --git a/app/Language/bg/attributes_lang.php b/app/Language/bg/Attributes.php similarity index 100% rename from app/Language/bg/attributes_lang.php rename to app/Language/bg/Attributes.php diff --git a/app/Language/bg/bootstrap_tables_lang.php b/app/Language/bg/Bootstrap_tables.php similarity index 100% rename from app/Language/bg/bootstrap_tables_lang.php rename to app/Language/bg/Bootstrap_tables.php diff --git a/app/Language/bg/cashups_lang.php b/app/Language/bg/Cashups.php similarity index 100% rename from app/Language/bg/cashups_lang.php rename to app/Language/bg/Cashups.php diff --git a/app/Language/bg/common_lang.php b/app/Language/bg/Common.php similarity index 100% rename from app/Language/bg/common_lang.php rename to app/Language/bg/Common.php diff --git a/app/Language/bg/config_lang.php b/app/Language/bg/Config.php similarity index 100% rename from app/Language/bg/config_lang.php rename to app/Language/bg/Config.php diff --git a/app/Language/bg/customers_lang.php b/app/Language/bg/Customers.php similarity index 100% rename from app/Language/bg/customers_lang.php rename to app/Language/bg/Customers.php diff --git a/app/Language/bg/datepicker_lang.php b/app/Language/bg/Datepicker.php similarity index 100% rename from app/Language/bg/datepicker_lang.php rename to app/Language/bg/Datepicker.php diff --git a/app/Language/bg/employees_lang.php b/app/Language/bg/Employees.php similarity index 100% rename from app/Language/bg/employees_lang.php rename to app/Language/bg/Employees.php diff --git a/app/Language/bg/enum_lang.php b/app/Language/bg/Enum.php similarity index 100% rename from app/Language/bg/enum_lang.php rename to app/Language/bg/Enum.php diff --git a/app/Language/bg/error_lang.php b/app/Language/bg/Error.php similarity index 100% rename from app/Language/bg/error_lang.php rename to app/Language/bg/Error.php diff --git a/app/Language/bg/expenses_lang.php b/app/Language/bg/Expenses.php similarity index 100% rename from app/Language/bg/expenses_lang.php rename to app/Language/bg/Expenses.php diff --git a/app/Language/bg/expenses_categories_lang.php b/app/Language/bg/Expenses_categories.php similarity index 100% rename from app/Language/bg/expenses_categories_lang.php rename to app/Language/bg/Expenses_categories.php diff --git a/app/Language/bg/giftcards_lang.php b/app/Language/bg/Giftcards.php similarity index 100% rename from app/Language/bg/giftcards_lang.php rename to app/Language/bg/Giftcards.php diff --git a/app/Language/bg/item_kits_lang.php b/app/Language/bg/Item_kits.php similarity index 100% rename from app/Language/bg/item_kits_lang.php rename to app/Language/bg/Item_kits.php diff --git a/app/Language/bg/items_lang.php b/app/Language/bg/Items.php similarity index 100% rename from app/Language/bg/items_lang.php rename to app/Language/bg/Items.php diff --git a/app/Language/bg/login_lang.php b/app/Language/bg/Login.php similarity index 100% rename from app/Language/bg/login_lang.php rename to app/Language/bg/Login.php diff --git a/app/Language/bg/messages_lang.php b/app/Language/bg/Messages.php similarity index 100% rename from app/Language/bg/messages_lang.php rename to app/Language/bg/Messages.php diff --git a/app/Language/bg/module_lang.php b/app/Language/bg/Module.php similarity index 100% rename from app/Language/bg/module_lang.php rename to app/Language/bg/Module.php diff --git a/app/Language/bg/receivings_lang.php b/app/Language/bg/Receivings.php similarity index 100% rename from app/Language/bg/receivings_lang.php rename to app/Language/bg/Receivings.php diff --git a/app/Language/bg/reports_lang.php b/app/Language/bg/Reports.php similarity index 100% rename from app/Language/bg/reports_lang.php rename to app/Language/bg/Reports.php diff --git a/app/Language/bg/sales_lang.php b/app/Language/bg/Sales.php similarity index 100% rename from app/Language/bg/sales_lang.php rename to app/Language/bg/Sales.php diff --git a/app/Language/bg/suppliers_lang.php b/app/Language/bg/Suppliers.php similarity index 100% rename from app/Language/bg/suppliers_lang.php rename to app/Language/bg/Suppliers.php diff --git a/app/Language/bg/taxes_lang.php b/app/Language/bg/Taxes.php similarity index 100% rename from app/Language/bg/taxes_lang.php rename to app/Language/bg/Taxes.php diff --git a/app/Language/bs-BA/attributes_lang.php b/app/Language/bs-BA/Attributes.php similarity index 100% rename from app/Language/bs-BA/attributes_lang.php rename to app/Language/bs-BA/Attributes.php diff --git a/app/Language/bs-BA/bootstrap_tables_lang.php b/app/Language/bs-BA/Bootstrap_tables.php similarity index 100% rename from app/Language/bs-BA/bootstrap_tables_lang.php rename to app/Language/bs-BA/Bootstrap_tables.php diff --git a/app/Language/bs-BA/cashups_lang.php b/app/Language/bs-BA/Cashups.php similarity index 100% rename from app/Language/bs-BA/cashups_lang.php rename to app/Language/bs-BA/Cashups.php diff --git a/app/Language/bs-BA/common_lang.php b/app/Language/bs-BA/Common.php similarity index 100% rename from app/Language/bs-BA/common_lang.php rename to app/Language/bs-BA/Common.php diff --git a/app/Language/bs-BA/config_lang.php b/app/Language/bs-BA/Config.php similarity index 100% rename from app/Language/bs-BA/config_lang.php rename to app/Language/bs-BA/Config.php diff --git a/app/Language/bs-BA/customers_lang.php b/app/Language/bs-BA/Customers.php similarity index 100% rename from app/Language/bs-BA/customers_lang.php rename to app/Language/bs-BA/Customers.php diff --git a/app/Language/bs-BA/datepicker_lang.php b/app/Language/bs-BA/Datepicker.php similarity index 100% rename from app/Language/bs-BA/datepicker_lang.php rename to app/Language/bs-BA/Datepicker.php diff --git a/app/Language/bs-BA/employees_lang.php b/app/Language/bs-BA/Employees.php similarity index 100% rename from app/Language/bs-BA/employees_lang.php rename to app/Language/bs-BA/Employees.php diff --git a/app/Language/bs-BA/enum_lang.php b/app/Language/bs-BA/Enum.php similarity index 100% rename from app/Language/bs-BA/enum_lang.php rename to app/Language/bs-BA/Enum.php diff --git a/app/Language/bs-BA/error_lang.php b/app/Language/bs-BA/Error.php similarity index 100% rename from app/Language/bs-BA/error_lang.php rename to app/Language/bs-BA/Error.php diff --git a/app/Language/bs-BA/expenses_lang.php b/app/Language/bs-BA/Expenses.php similarity index 100% rename from app/Language/bs-BA/expenses_lang.php rename to app/Language/bs-BA/Expenses.php diff --git a/app/Language/bs-BA/expenses_categories_lang.php b/app/Language/bs-BA/Expenses_categories.php similarity index 100% rename from app/Language/bs-BA/expenses_categories_lang.php rename to app/Language/bs-BA/Expenses_categories.php diff --git a/app/Language/bs-BA/giftcards_lang.php b/app/Language/bs-BA/Giftcards.php similarity index 100% rename from app/Language/bs-BA/giftcards_lang.php rename to app/Language/bs-BA/Giftcards.php diff --git a/app/Language/bs-BA/item_kits_lang.php b/app/Language/bs-BA/Item_kits.php similarity index 100% rename from app/Language/bs-BA/item_kits_lang.php rename to app/Language/bs-BA/Item_kits.php diff --git a/app/Language/bs-BA/items_lang.php b/app/Language/bs-BA/Items.php similarity index 100% rename from app/Language/bs-BA/items_lang.php rename to app/Language/bs-BA/Items.php diff --git a/app/Language/bs-BA/login_lang.php b/app/Language/bs-BA/Login.php similarity index 100% rename from app/Language/bs-BA/login_lang.php rename to app/Language/bs-BA/Login.php diff --git a/app/Language/bs-BA/messages_lang.php b/app/Language/bs-BA/Messages.php similarity index 100% rename from app/Language/bs-BA/messages_lang.php rename to app/Language/bs-BA/Messages.php diff --git a/app/Language/bs-BA/module_lang.php b/app/Language/bs-BA/Module.php similarity index 100% rename from app/Language/bs-BA/module_lang.php rename to app/Language/bs-BA/Module.php diff --git a/app/Language/bs-BA/receivings_lang.php b/app/Language/bs-BA/Receivings.php similarity index 100% rename from app/Language/bs-BA/receivings_lang.php rename to app/Language/bs-BA/Receivings.php diff --git a/app/Language/bs-BA/reports_lang.php b/app/Language/bs-BA/Reports.php similarity index 100% rename from app/Language/bs-BA/reports_lang.php rename to app/Language/bs-BA/Reports.php diff --git a/app/Language/bs-BA/sales_lang.php b/app/Language/bs-BA/Sales.php similarity index 100% rename from app/Language/bs-BA/sales_lang.php rename to app/Language/bs-BA/Sales.php diff --git a/app/Language/bs-BA/suppliers_lang.php b/app/Language/bs-BA/Suppliers.php similarity index 100% rename from app/Language/bs-BA/suppliers_lang.php rename to app/Language/bs-BA/Suppliers.php diff --git a/app/Language/bs-BA/taxes_lang.php b/app/Language/bs-BA/Taxes.php similarity index 100% rename from app/Language/bs-BA/taxes_lang.php rename to app/Language/bs-BA/Taxes.php diff --git a/app/Language/cs/attributes_lang.php b/app/Language/cs/Attributes.php similarity index 100% rename from app/Language/cs/attributes_lang.php rename to app/Language/cs/Attributes.php diff --git a/app/Language/cs/bootstrap_tables_lang.php b/app/Language/cs/Bootstrap_tables.php similarity index 100% rename from app/Language/cs/bootstrap_tables_lang.php rename to app/Language/cs/Bootstrap_tables.php diff --git a/app/Language/cs/cashups_lang.php b/app/Language/cs/Cashups.php similarity index 100% rename from app/Language/cs/cashups_lang.php rename to app/Language/cs/Cashups.php diff --git a/app/Language/cs/common_lang.php b/app/Language/cs/Common.php similarity index 100% rename from app/Language/cs/common_lang.php rename to app/Language/cs/Common.php diff --git a/app/Language/cs/config_lang.php b/app/Language/cs/Config.php similarity index 100% rename from app/Language/cs/config_lang.php rename to app/Language/cs/Config.php diff --git a/app/Language/cs/customers_lang.php b/app/Language/cs/Customers.php similarity index 100% rename from app/Language/cs/customers_lang.php rename to app/Language/cs/Customers.php diff --git a/app/Language/cs/datepicker_lang.php b/app/Language/cs/Datepicker.php similarity index 100% rename from app/Language/cs/datepicker_lang.php rename to app/Language/cs/Datepicker.php diff --git a/app/Language/cs/employees_lang.php b/app/Language/cs/Employees.php similarity index 100% rename from app/Language/cs/employees_lang.php rename to app/Language/cs/Employees.php diff --git a/app/Language/cs/enum_lang.php b/app/Language/cs/Enum.php similarity index 100% rename from app/Language/cs/enum_lang.php rename to app/Language/cs/Enum.php diff --git a/app/Language/cs/error_lang.php b/app/Language/cs/Error.php similarity index 100% rename from app/Language/cs/error_lang.php rename to app/Language/cs/Error.php diff --git a/app/Language/cs/expenses_lang.php b/app/Language/cs/Expenses.php similarity index 100% rename from app/Language/cs/expenses_lang.php rename to app/Language/cs/Expenses.php diff --git a/app/Language/cs/expenses_categories_lang.php b/app/Language/cs/Expenses_categories.php similarity index 100% rename from app/Language/cs/expenses_categories_lang.php rename to app/Language/cs/Expenses_categories.php diff --git a/app/Language/cs/giftcards_lang.php b/app/Language/cs/Giftcards.php similarity index 100% rename from app/Language/cs/giftcards_lang.php rename to app/Language/cs/Giftcards.php diff --git a/app/Language/cs/item_kits_lang.php b/app/Language/cs/Item_kits.php similarity index 100% rename from app/Language/cs/item_kits_lang.php rename to app/Language/cs/Item_kits.php diff --git a/app/Language/cs/items_lang.php b/app/Language/cs/Items.php similarity index 100% rename from app/Language/cs/items_lang.php rename to app/Language/cs/Items.php diff --git a/app/Language/cs/login_lang.php b/app/Language/cs/Login.php similarity index 100% rename from app/Language/cs/login_lang.php rename to app/Language/cs/Login.php diff --git a/app/Language/cs/messages_lang.php b/app/Language/cs/Messages.php similarity index 100% rename from app/Language/cs/messages_lang.php rename to app/Language/cs/Messages.php diff --git a/app/Language/cs/module_lang.php b/app/Language/cs/Module.php similarity index 100% rename from app/Language/cs/module_lang.php rename to app/Language/cs/Module.php diff --git a/app/Language/cs/receivings_lang.php b/app/Language/cs/Receivings.php similarity index 100% rename from app/Language/cs/receivings_lang.php rename to app/Language/cs/Receivings.php diff --git a/app/Language/cs/reports_lang.php b/app/Language/cs/Reports.php similarity index 100% rename from app/Language/cs/reports_lang.php rename to app/Language/cs/Reports.php diff --git a/app/Language/cs/sales_lang.php b/app/Language/cs/Sales.php similarity index 100% rename from app/Language/cs/sales_lang.php rename to app/Language/cs/Sales.php diff --git a/app/Language/cs/suppliers_lang.php b/app/Language/cs/Suppliers.php similarity index 100% rename from app/Language/cs/suppliers_lang.php rename to app/Language/cs/Suppliers.php diff --git a/app/Language/cs/taxes_lang.php b/app/Language/cs/Taxes.php similarity index 100% rename from app/Language/cs/taxes_lang.php rename to app/Language/cs/Taxes.php diff --git a/app/Language/da/attributes_lang.php b/app/Language/da/Attributes.php similarity index 100% rename from app/Language/da/attributes_lang.php rename to app/Language/da/Attributes.php diff --git a/app/Language/da/bootstrap_tables_lang.php b/app/Language/da/Bootstrap_tables.php similarity index 100% rename from app/Language/da/bootstrap_tables_lang.php rename to app/Language/da/Bootstrap_tables.php diff --git a/app/Language/da/cashups_lang.php b/app/Language/da/Cashups.php similarity index 100% rename from app/Language/da/cashups_lang.php rename to app/Language/da/Cashups.php diff --git a/app/Language/da/common_lang.php b/app/Language/da/Common.php similarity index 100% rename from app/Language/da/common_lang.php rename to app/Language/da/Common.php diff --git a/app/Language/da/config_lang.php b/app/Language/da/Config.php similarity index 100% rename from app/Language/da/config_lang.php rename to app/Language/da/Config.php diff --git a/app/Language/da/customers_lang.php b/app/Language/da/Customers.php similarity index 100% rename from app/Language/da/customers_lang.php rename to app/Language/da/Customers.php diff --git a/app/Language/da/datepicker_lang.php b/app/Language/da/Datepicker.php similarity index 100% rename from app/Language/da/datepicker_lang.php rename to app/Language/da/Datepicker.php diff --git a/app/Language/da/employees_lang.php b/app/Language/da/Employees.php similarity index 100% rename from app/Language/da/employees_lang.php rename to app/Language/da/Employees.php diff --git a/app/Language/da/enum_lang.php b/app/Language/da/Enum.php similarity index 100% rename from app/Language/da/enum_lang.php rename to app/Language/da/Enum.php diff --git a/app/Language/da/error_lang.php b/app/Language/da/Error.php similarity index 100% rename from app/Language/da/error_lang.php rename to app/Language/da/Error.php diff --git a/app/Language/da/expenses_lang.php b/app/Language/da/Expenses.php similarity index 100% rename from app/Language/da/expenses_lang.php rename to app/Language/da/Expenses.php diff --git a/app/Language/da/expenses_categories_lang.php b/app/Language/da/Expenses_categories.php similarity index 100% rename from app/Language/da/expenses_categories_lang.php rename to app/Language/da/Expenses_categories.php diff --git a/app/Language/da/giftcards_lang.php b/app/Language/da/Giftcards.php similarity index 100% rename from app/Language/da/giftcards_lang.php rename to app/Language/da/Giftcards.php diff --git a/app/Language/da/item_kits_lang.php b/app/Language/da/Item_kits.php similarity index 100% rename from app/Language/da/item_kits_lang.php rename to app/Language/da/Item_kits.php diff --git a/app/Language/da/items_lang.php b/app/Language/da/Items.php similarity index 100% rename from app/Language/da/items_lang.php rename to app/Language/da/Items.php diff --git a/app/Language/da/login_lang.php b/app/Language/da/Login.php similarity index 100% rename from app/Language/da/login_lang.php rename to app/Language/da/Login.php diff --git a/app/Language/da/messages_lang.php b/app/Language/da/Messages.php similarity index 100% rename from app/Language/da/messages_lang.php rename to app/Language/da/Messages.php diff --git a/app/Language/da/module_lang.php b/app/Language/da/Module.php similarity index 100% rename from app/Language/da/module_lang.php rename to app/Language/da/Module.php diff --git a/app/Language/da/receivings_lang.php b/app/Language/da/Receivings.php similarity index 100% rename from app/Language/da/receivings_lang.php rename to app/Language/da/Receivings.php diff --git a/app/Language/da/reports_lang.php b/app/Language/da/Reports.php similarity index 100% rename from app/Language/da/reports_lang.php rename to app/Language/da/Reports.php diff --git a/app/Language/da/sales_lang.php b/app/Language/da/Sales.php similarity index 100% rename from app/Language/da/sales_lang.php rename to app/Language/da/Sales.php diff --git a/app/Language/da/suppliers_lang.php b/app/Language/da/Suppliers.php similarity index 100% rename from app/Language/da/suppliers_lang.php rename to app/Language/da/Suppliers.php diff --git a/app/Language/da/taxes_lang.php b/app/Language/da/Taxes.php similarity index 100% rename from app/Language/da/taxes_lang.php rename to app/Language/da/Taxes.php diff --git a/app/Language/de-CH/attributes_lang.php b/app/Language/de-CH/Attributes.php similarity index 100% rename from app/Language/de-CH/attributes_lang.php rename to app/Language/de-CH/Attributes.php diff --git a/app/Language/de-CH/bootstrap_tables_lang.php b/app/Language/de-CH/Bootstrap_tables.php similarity index 100% rename from app/Language/de-CH/bootstrap_tables_lang.php rename to app/Language/de-CH/Bootstrap_tables.php diff --git a/app/Language/de-CH/cashups_lang.php b/app/Language/de-CH/Cashups.php similarity index 100% rename from app/Language/de-CH/cashups_lang.php rename to app/Language/de-CH/Cashups.php diff --git a/app/Language/de-CH/common_lang.php b/app/Language/de-CH/Common.php similarity index 100% rename from app/Language/de-CH/common_lang.php rename to app/Language/de-CH/Common.php diff --git a/app/Language/de-CH/config_lang.php b/app/Language/de-CH/Config.php similarity index 100% rename from app/Language/de-CH/config_lang.php rename to app/Language/de-CH/Config.php diff --git a/app/Language/de-CH/customers_lang.php b/app/Language/de-CH/Customers.php similarity index 100% rename from app/Language/de-CH/customers_lang.php rename to app/Language/de-CH/Customers.php diff --git a/app/Language/de-CH/datepicker_lang.php b/app/Language/de-CH/Datepicker.php similarity index 100% rename from app/Language/de-CH/datepicker_lang.php rename to app/Language/de-CH/Datepicker.php diff --git a/app/Language/de-CH/employees_lang.php b/app/Language/de-CH/Employees.php similarity index 100% rename from app/Language/de-CH/employees_lang.php rename to app/Language/de-CH/Employees.php diff --git a/app/Language/de-CH/enum_lang.php b/app/Language/de-CH/Enum.php similarity index 100% rename from app/Language/de-CH/enum_lang.php rename to app/Language/de-CH/Enum.php diff --git a/app/Language/de-CH/error_lang.php b/app/Language/de-CH/Error.php similarity index 100% rename from app/Language/de-CH/error_lang.php rename to app/Language/de-CH/Error.php diff --git a/app/Language/de-CH/expenses_lang.php b/app/Language/de-CH/Expenses.php similarity index 100% rename from app/Language/de-CH/expenses_lang.php rename to app/Language/de-CH/Expenses.php diff --git a/app/Language/de-CH/expenses_categories_lang.php b/app/Language/de-CH/Expenses_categories.php similarity index 100% rename from app/Language/de-CH/expenses_categories_lang.php rename to app/Language/de-CH/Expenses_categories.php diff --git a/app/Language/de-CH/giftcards_lang.php b/app/Language/de-CH/Giftcards.php similarity index 100% rename from app/Language/de-CH/giftcards_lang.php rename to app/Language/de-CH/Giftcards.php diff --git a/app/Language/de-CH/item_kits_lang.php b/app/Language/de-CH/Item_kits.php similarity index 100% rename from app/Language/de-CH/item_kits_lang.php rename to app/Language/de-CH/Item_kits.php diff --git a/app/Language/de-CH/items_lang.php b/app/Language/de-CH/Items.php similarity index 100% rename from app/Language/de-CH/items_lang.php rename to app/Language/de-CH/Items.php diff --git a/app/Language/de-CH/login_lang.php b/app/Language/de-CH/Login.php similarity index 100% rename from app/Language/de-CH/login_lang.php rename to app/Language/de-CH/Login.php diff --git a/app/Language/de-CH/messages_lang.php b/app/Language/de-CH/Messages.php similarity index 100% rename from app/Language/de-CH/messages_lang.php rename to app/Language/de-CH/Messages.php diff --git a/app/Language/de-CH/module_lang.php b/app/Language/de-CH/Module.php similarity index 100% rename from app/Language/de-CH/module_lang.php rename to app/Language/de-CH/Module.php diff --git a/app/Language/de-CH/receivings_lang.php b/app/Language/de-CH/Receivings.php similarity index 100% rename from app/Language/de-CH/receivings_lang.php rename to app/Language/de-CH/Receivings.php diff --git a/app/Language/de-CH/reports_lang.php b/app/Language/de-CH/Reports.php similarity index 100% rename from app/Language/de-CH/reports_lang.php rename to app/Language/de-CH/Reports.php diff --git a/app/Language/de-CH/sales_lang.php b/app/Language/de-CH/Sales.php similarity index 100% rename from app/Language/de-CH/sales_lang.php rename to app/Language/de-CH/Sales.php diff --git a/app/Language/de-CH/suppliers_lang.php b/app/Language/de-CH/Suppliers.php similarity index 100% rename from app/Language/de-CH/suppliers_lang.php rename to app/Language/de-CH/Suppliers.php diff --git a/app/Language/de-CH/taxes_lang.php b/app/Language/de-CH/Taxes.php similarity index 100% rename from app/Language/de-CH/taxes_lang.php rename to app/Language/de-CH/Taxes.php diff --git a/app/Language/de/attributes_lang.php b/app/Language/de/Attributes.php similarity index 100% rename from app/Language/de/attributes_lang.php rename to app/Language/de/Attributes.php diff --git a/app/Language/de/bootstrap_tables_lang.php b/app/Language/de/Bootstrap_tables.php similarity index 100% rename from app/Language/de/bootstrap_tables_lang.php rename to app/Language/de/Bootstrap_tables.php diff --git a/app/Language/de/cashups_lang.php b/app/Language/de/Cashups.php similarity index 100% rename from app/Language/de/cashups_lang.php rename to app/Language/de/Cashups.php diff --git a/app/Language/de/common_lang.php b/app/Language/de/Common.php similarity index 100% rename from app/Language/de/common_lang.php rename to app/Language/de/Common.php diff --git a/app/Language/de/config_lang.php b/app/Language/de/Config.php similarity index 100% rename from app/Language/de/config_lang.php rename to app/Language/de/Config.php diff --git a/app/Language/de/customers_lang.php b/app/Language/de/Customers.php similarity index 100% rename from app/Language/de/customers_lang.php rename to app/Language/de/Customers.php diff --git a/app/Language/de/datepicker_lang.php b/app/Language/de/Datepicker.php similarity index 100% rename from app/Language/de/datepicker_lang.php rename to app/Language/de/Datepicker.php diff --git a/app/Language/de/employees_lang.php b/app/Language/de/Employees.php similarity index 100% rename from app/Language/de/employees_lang.php rename to app/Language/de/Employees.php diff --git a/app/Language/de/enum_lang.php b/app/Language/de/Enum.php similarity index 100% rename from app/Language/de/enum_lang.php rename to app/Language/de/Enum.php diff --git a/app/Language/de/error_lang.php b/app/Language/de/Error.php similarity index 100% rename from app/Language/de/error_lang.php rename to app/Language/de/Error.php diff --git a/app/Language/de/expenses_lang.php b/app/Language/de/Expenses.php similarity index 100% rename from app/Language/de/expenses_lang.php rename to app/Language/de/Expenses.php diff --git a/app/Language/de/expenses_categories_lang.php b/app/Language/de/Expenses_categories.php similarity index 100% rename from app/Language/de/expenses_categories_lang.php rename to app/Language/de/Expenses_categories.php diff --git a/app/Language/de/giftcards_lang.php b/app/Language/de/Giftcards.php similarity index 100% rename from app/Language/de/giftcards_lang.php rename to app/Language/de/Giftcards.php diff --git a/app/Language/de/item_kits_lang.php b/app/Language/de/Item_kits.php similarity index 100% rename from app/Language/de/item_kits_lang.php rename to app/Language/de/Item_kits.php diff --git a/app/Language/de/items_lang.php b/app/Language/de/Items.php similarity index 100% rename from app/Language/de/items_lang.php rename to app/Language/de/Items.php diff --git a/app/Language/de/login_lang.php b/app/Language/de/Login.php similarity index 100% rename from app/Language/de/login_lang.php rename to app/Language/de/Login.php diff --git a/app/Language/de/messages_lang.php b/app/Language/de/Messages.php similarity index 100% rename from app/Language/de/messages_lang.php rename to app/Language/de/Messages.php diff --git a/app/Language/de/module_lang.php b/app/Language/de/Module.php similarity index 100% rename from app/Language/de/module_lang.php rename to app/Language/de/Module.php diff --git a/app/Language/de/receivings_lang.php b/app/Language/de/Receivings.php similarity index 100% rename from app/Language/de/receivings_lang.php rename to app/Language/de/Receivings.php diff --git a/app/Language/de/reports_lang.php b/app/Language/de/Reports.php similarity index 100% rename from app/Language/de/reports_lang.php rename to app/Language/de/Reports.php diff --git a/app/Language/de/sales_lang.php b/app/Language/de/Sales.php similarity index 100% rename from app/Language/de/sales_lang.php rename to app/Language/de/Sales.php diff --git a/app/Language/de/suppliers_lang.php b/app/Language/de/Suppliers.php similarity index 100% rename from app/Language/de/suppliers_lang.php rename to app/Language/de/Suppliers.php diff --git a/app/Language/de/taxes_lang.php b/app/Language/de/Taxes.php similarity index 100% rename from app/Language/de/taxes_lang.php rename to app/Language/de/Taxes.php diff --git a/app/Language/el/attributes_lang.php b/app/Language/el/Attributes.php similarity index 100% rename from app/Language/el/attributes_lang.php rename to app/Language/el/Attributes.php diff --git a/app/Language/el/bootstrap_tables_lang.php b/app/Language/el/Bootstrap_tables.php similarity index 100% rename from app/Language/el/bootstrap_tables_lang.php rename to app/Language/el/Bootstrap_tables.php diff --git a/app/Language/el/cashups_lang.php b/app/Language/el/Cashups.php similarity index 100% rename from app/Language/el/cashups_lang.php rename to app/Language/el/Cashups.php diff --git a/app/Language/el/common_lang.php b/app/Language/el/Common.php similarity index 100% rename from app/Language/el/common_lang.php rename to app/Language/el/Common.php diff --git a/app/Language/el/config_lang.php b/app/Language/el/Config.php similarity index 100% rename from app/Language/el/config_lang.php rename to app/Language/el/Config.php diff --git a/app/Language/el/customers_lang.php b/app/Language/el/Customers.php similarity index 100% rename from app/Language/el/customers_lang.php rename to app/Language/el/Customers.php diff --git a/app/Language/el/datepicker_lang.php b/app/Language/el/Datepicker.php similarity index 100% rename from app/Language/el/datepicker_lang.php rename to app/Language/el/Datepicker.php diff --git a/app/Language/el/employees_lang.php b/app/Language/el/Employees.php similarity index 100% rename from app/Language/el/employees_lang.php rename to app/Language/el/Employees.php diff --git a/app/Language/el/enum_lang.php b/app/Language/el/Enum.php similarity index 100% rename from app/Language/el/enum_lang.php rename to app/Language/el/Enum.php diff --git a/app/Language/el/error_lang.php b/app/Language/el/Error.php similarity index 100% rename from app/Language/el/error_lang.php rename to app/Language/el/Error.php diff --git a/app/Language/el/expenses_lang.php b/app/Language/el/Expenses.php similarity index 100% rename from app/Language/el/expenses_lang.php rename to app/Language/el/Expenses.php diff --git a/app/Language/el/expenses_categories_lang.php b/app/Language/el/Expenses_categories.php similarity index 100% rename from app/Language/el/expenses_categories_lang.php rename to app/Language/el/Expenses_categories.php diff --git a/app/Language/el/giftcards_lang.php b/app/Language/el/Giftcards.php similarity index 100% rename from app/Language/el/giftcards_lang.php rename to app/Language/el/Giftcards.php diff --git a/app/Language/el/item_kits_lang.php b/app/Language/el/Item_kits.php similarity index 100% rename from app/Language/el/item_kits_lang.php rename to app/Language/el/Item_kits.php diff --git a/app/Language/el/items_lang.php b/app/Language/el/Items.php similarity index 100% rename from app/Language/el/items_lang.php rename to app/Language/el/Items.php diff --git a/app/Language/el/login_lang.php b/app/Language/el/Login.php similarity index 100% rename from app/Language/el/login_lang.php rename to app/Language/el/Login.php diff --git a/app/Language/el/messages_lang.php b/app/Language/el/Messages.php similarity index 100% rename from app/Language/el/messages_lang.php rename to app/Language/el/Messages.php diff --git a/app/Language/el/module_lang.php b/app/Language/el/Module.php similarity index 100% rename from app/Language/el/module_lang.php rename to app/Language/el/Module.php diff --git a/app/Language/el/receivings_lang.php b/app/Language/el/Receivings.php similarity index 100% rename from app/Language/el/receivings_lang.php rename to app/Language/el/Receivings.php diff --git a/app/Language/el/reports_lang.php b/app/Language/el/Reports.php similarity index 100% rename from app/Language/el/reports_lang.php rename to app/Language/el/Reports.php diff --git a/app/Language/el/sales_lang.php b/app/Language/el/Sales.php similarity index 100% rename from app/Language/el/sales_lang.php rename to app/Language/el/Sales.php diff --git a/app/Language/el/suppliers_lang.php b/app/Language/el/Suppliers.php similarity index 100% rename from app/Language/el/suppliers_lang.php rename to app/Language/el/Suppliers.php diff --git a/app/Language/el/taxes_lang.php b/app/Language/el/Taxes.php similarity index 100% rename from app/Language/el/taxes_lang.php rename to app/Language/el/Taxes.php diff --git a/app/Language/en-GB/attributes_lang.php b/app/Language/en-GB/Attributes.php similarity index 100% rename from app/Language/en-GB/attributes_lang.php rename to app/Language/en-GB/Attributes.php diff --git a/app/Language/en-GB/bootstrap_tables_lang.php b/app/Language/en-GB/Bootstrap_tables.php similarity index 100% rename from app/Language/en-GB/bootstrap_tables_lang.php rename to app/Language/en-GB/Bootstrap_tables.php diff --git a/app/Language/en-GB/cashups_lang.php b/app/Language/en-GB/Cashups.php similarity index 100% rename from app/Language/en-GB/cashups_lang.php rename to app/Language/en-GB/Cashups.php diff --git a/app/Language/en-GB/common_lang.php b/app/Language/en-GB/Common.php similarity index 100% rename from app/Language/en-GB/common_lang.php rename to app/Language/en-GB/Common.php diff --git a/app/Language/en-GB/config_lang.php b/app/Language/en-GB/Config.php similarity index 100% rename from app/Language/en-GB/config_lang.php rename to app/Language/en-GB/Config.php diff --git a/app/Language/en-GB/customers_lang.php b/app/Language/en-GB/Customers.php similarity index 100% rename from app/Language/en-GB/customers_lang.php rename to app/Language/en-GB/Customers.php diff --git a/app/Language/en-GB/datepicker_lang.php b/app/Language/en-GB/Datepicker.php similarity index 100% rename from app/Language/en-GB/datepicker_lang.php rename to app/Language/en-GB/Datepicker.php diff --git a/app/Language/en-GB/employees_lang.php b/app/Language/en-GB/Employees.php similarity index 100% rename from app/Language/en-GB/employees_lang.php rename to app/Language/en-GB/Employees.php diff --git a/app/Language/en-GB/enum_lang.php b/app/Language/en-GB/Enum.php similarity index 100% rename from app/Language/en-GB/enum_lang.php rename to app/Language/en-GB/Enum.php diff --git a/app/Language/en-GB/error_lang.php b/app/Language/en-GB/Error.php similarity index 100% rename from app/Language/en-GB/error_lang.php rename to app/Language/en-GB/Error.php diff --git a/app/Language/en-GB/expenses_lang.php b/app/Language/en-GB/Expenses.php similarity index 100% rename from app/Language/en-GB/expenses_lang.php rename to app/Language/en-GB/Expenses.php diff --git a/app/Language/en-GB/expenses_categories_lang.php b/app/Language/en-GB/Expenses_categories.php similarity index 100% rename from app/Language/en-GB/expenses_categories_lang.php rename to app/Language/en-GB/Expenses_categories.php diff --git a/app/Language/en-GB/giftcards_lang.php b/app/Language/en-GB/Giftcards.php similarity index 100% rename from app/Language/en-GB/giftcards_lang.php rename to app/Language/en-GB/Giftcards.php diff --git a/app/Language/en-GB/item_kits_lang.php b/app/Language/en-GB/Item_kits.php similarity index 100% rename from app/Language/en-GB/item_kits_lang.php rename to app/Language/en-GB/Item_kits.php diff --git a/app/Language/en-GB/items_lang.php b/app/Language/en-GB/Items.php similarity index 100% rename from app/Language/en-GB/items_lang.php rename to app/Language/en-GB/Items.php diff --git a/app/Language/en-GB/login_lang.php b/app/Language/en-GB/Login.php similarity index 100% rename from app/Language/en-GB/login_lang.php rename to app/Language/en-GB/Login.php diff --git a/app/Language/en-GB/messages_lang.php b/app/Language/en-GB/Messages.php similarity index 100% rename from app/Language/en-GB/messages_lang.php rename to app/Language/en-GB/Messages.php diff --git a/app/Language/en-GB/module_lang.php b/app/Language/en-GB/Module.php similarity index 100% rename from app/Language/en-GB/module_lang.php rename to app/Language/en-GB/Module.php diff --git a/app/Language/en-GB/receivings_lang.php b/app/Language/en-GB/Receivings.php similarity index 100% rename from app/Language/en-GB/receivings_lang.php rename to app/Language/en-GB/Receivings.php diff --git a/app/Language/en-GB/reports_lang.php b/app/Language/en-GB/Reports.php similarity index 100% rename from app/Language/en-GB/reports_lang.php rename to app/Language/en-GB/Reports.php diff --git a/app/Language/en-GB/sales_lang.php b/app/Language/en-GB/Sales.php similarity index 100% rename from app/Language/en-GB/sales_lang.php rename to app/Language/en-GB/Sales.php diff --git a/app/Language/en-GB/suppliers_lang.php b/app/Language/en-GB/Suppliers.php similarity index 100% rename from app/Language/en-GB/suppliers_lang.php rename to app/Language/en-GB/Suppliers.php diff --git a/app/Language/en-GB/taxes_lang.php b/app/Language/en-GB/Taxes.php similarity index 100% rename from app/Language/en-GB/taxes_lang.php rename to app/Language/en-GB/Taxes.php diff --git a/app/Language/es/attributes_lang.php b/app/Language/es/Attributes.php similarity index 100% rename from app/Language/es/attributes_lang.php rename to app/Language/es/Attributes.php diff --git a/app/Language/es/bootstrap_tables_lang.php b/app/Language/es/Bootstrap_tables.php similarity index 100% rename from app/Language/es/bootstrap_tables_lang.php rename to app/Language/es/Bootstrap_tables.php diff --git a/app/Language/es/cashups_lang.php b/app/Language/es/Cashups.php similarity index 100% rename from app/Language/es/cashups_lang.php rename to app/Language/es/Cashups.php diff --git a/app/Language/es/common_lang.php b/app/Language/es/Common.php similarity index 100% rename from app/Language/es/common_lang.php rename to app/Language/es/Common.php diff --git a/app/Language/es/config_lang.php b/app/Language/es/Config.php similarity index 100% rename from app/Language/es/config_lang.php rename to app/Language/es/Config.php diff --git a/app/Language/es/customers_lang.php b/app/Language/es/Customers.php similarity index 100% rename from app/Language/es/customers_lang.php rename to app/Language/es/Customers.php diff --git a/app/Language/es/datepicker_lang.php b/app/Language/es/Datepicker.php similarity index 100% rename from app/Language/es/datepicker_lang.php rename to app/Language/es/Datepicker.php diff --git a/app/Language/es/employees_lang.php b/app/Language/es/Employees.php similarity index 100% rename from app/Language/es/employees_lang.php rename to app/Language/es/Employees.php diff --git a/app/Language/es/enum_lang.php b/app/Language/es/Enum.php similarity index 100% rename from app/Language/es/enum_lang.php rename to app/Language/es/Enum.php diff --git a/app/Language/es/error_lang.php b/app/Language/es/Error.php similarity index 100% rename from app/Language/es/error_lang.php rename to app/Language/es/Error.php diff --git a/app/Language/es/expenses_lang.php b/app/Language/es/Expenses.php similarity index 100% rename from app/Language/es/expenses_lang.php rename to app/Language/es/Expenses.php diff --git a/app/Language/es/expenses_categories_lang.php b/app/Language/es/Expenses_categories.php similarity index 100% rename from app/Language/es/expenses_categories_lang.php rename to app/Language/es/Expenses_categories.php diff --git a/app/Language/es/giftcards_lang.php b/app/Language/es/Giftcards.php similarity index 100% rename from app/Language/es/giftcards_lang.php rename to app/Language/es/Giftcards.php diff --git a/app/Language/es/item_kits_lang.php b/app/Language/es/Item_kits.php similarity index 100% rename from app/Language/es/item_kits_lang.php rename to app/Language/es/Item_kits.php diff --git a/app/Language/es/items_lang.php b/app/Language/es/Items.php similarity index 100% rename from app/Language/es/items_lang.php rename to app/Language/es/Items.php diff --git a/app/Language/es/login_lang.php b/app/Language/es/Login.php similarity index 100% rename from app/Language/es/login_lang.php rename to app/Language/es/Login.php diff --git a/app/Language/es/messages_lang.php b/app/Language/es/Messages.php similarity index 100% rename from app/Language/es/messages_lang.php rename to app/Language/es/Messages.php diff --git a/app/Language/es/module_lang.php b/app/Language/es/Module.php similarity index 100% rename from app/Language/es/module_lang.php rename to app/Language/es/Module.php diff --git a/app/Language/es/receivings_lang.php b/app/Language/es/Receivings.php similarity index 100% rename from app/Language/es/receivings_lang.php rename to app/Language/es/Receivings.php diff --git a/app/Language/es/reports_lang.php b/app/Language/es/Reports.php similarity index 100% rename from app/Language/es/reports_lang.php rename to app/Language/es/Reports.php diff --git a/app/Language/es/sales_lang.php b/app/Language/es/Sales.php similarity index 100% rename from app/Language/es/sales_lang.php rename to app/Language/es/Sales.php diff --git a/app/Language/es/suppliers_lang.php b/app/Language/es/Suppliers.php similarity index 100% rename from app/Language/es/suppliers_lang.php rename to app/Language/es/Suppliers.php diff --git a/app/Language/es/taxes_lang.php b/app/Language/es/Taxes.php similarity index 100% rename from app/Language/es/taxes_lang.php rename to app/Language/es/Taxes.php diff --git a/app/Language/es_MX/attributes_lang.php b/app/Language/es_MX/Attributes.php similarity index 100% rename from app/Language/es_MX/attributes_lang.php rename to app/Language/es_MX/Attributes.php diff --git a/app/Language/es_MX/bootstrap_tables_lang.php b/app/Language/es_MX/Bootstrap_tables.php similarity index 100% rename from app/Language/es_MX/bootstrap_tables_lang.php rename to app/Language/es_MX/Bootstrap_tables.php diff --git a/app/Language/es_MX/cashups_lang.php b/app/Language/es_MX/Cashups.php similarity index 100% rename from app/Language/es_MX/cashups_lang.php rename to app/Language/es_MX/Cashups.php diff --git a/app/Language/es_MX/common_lang.php b/app/Language/es_MX/Common.php similarity index 100% rename from app/Language/es_MX/common_lang.php rename to app/Language/es_MX/Common.php diff --git a/app/Language/es_MX/config_lang.php b/app/Language/es_MX/Config.php similarity index 100% rename from app/Language/es_MX/config_lang.php rename to app/Language/es_MX/Config.php diff --git a/app/Language/es_MX/customers_lang.php b/app/Language/es_MX/Customers.php similarity index 100% rename from app/Language/es_MX/customers_lang.php rename to app/Language/es_MX/Customers.php diff --git a/app/Language/es_MX/datepicker_lang.php b/app/Language/es_MX/Datepicker.php similarity index 100% rename from app/Language/es_MX/datepicker_lang.php rename to app/Language/es_MX/Datepicker.php diff --git a/app/Language/es_MX/employees_lang.php b/app/Language/es_MX/Employees.php similarity index 100% rename from app/Language/es_MX/employees_lang.php rename to app/Language/es_MX/Employees.php diff --git a/app/Language/es_MX/enum_lang.php b/app/Language/es_MX/Enum.php similarity index 100% rename from app/Language/es_MX/enum_lang.php rename to app/Language/es_MX/Enum.php diff --git a/app/Language/es_MX/error_lang.php b/app/Language/es_MX/Error.php similarity index 100% rename from app/Language/es_MX/error_lang.php rename to app/Language/es_MX/Error.php diff --git a/app/Language/es_MX/expenses_lang.php b/app/Language/es_MX/Expenses.php similarity index 100% rename from app/Language/es_MX/expenses_lang.php rename to app/Language/es_MX/Expenses.php diff --git a/app/Language/es_MX/expenses_categories_lang.php b/app/Language/es_MX/Expenses_categories.php similarity index 100% rename from app/Language/es_MX/expenses_categories_lang.php rename to app/Language/es_MX/Expenses_categories.php diff --git a/app/Language/es_MX/giftcards_lang.php b/app/Language/es_MX/Giftcards.php similarity index 100% rename from app/Language/es_MX/giftcards_lang.php rename to app/Language/es_MX/Giftcards.php diff --git a/app/Language/es_MX/item_kits_lang.php b/app/Language/es_MX/Item_kits.php similarity index 100% rename from app/Language/es_MX/item_kits_lang.php rename to app/Language/es_MX/Item_kits.php diff --git a/app/Language/es_MX/items_lang.php b/app/Language/es_MX/Items.php similarity index 100% rename from app/Language/es_MX/items_lang.php rename to app/Language/es_MX/Items.php diff --git a/app/Language/es_MX/login_lang.php b/app/Language/es_MX/Login.php similarity index 100% rename from app/Language/es_MX/login_lang.php rename to app/Language/es_MX/Login.php diff --git a/app/Language/es_MX/messages_lang.php b/app/Language/es_MX/Messages.php similarity index 100% rename from app/Language/es_MX/messages_lang.php rename to app/Language/es_MX/Messages.php diff --git a/app/Language/es_MX/module_lang.php b/app/Language/es_MX/Module.php similarity index 100% rename from app/Language/es_MX/module_lang.php rename to app/Language/es_MX/Module.php diff --git a/app/Language/es_MX/receivings_lang.php b/app/Language/es_MX/Receivings.php similarity index 100% rename from app/Language/es_MX/receivings_lang.php rename to app/Language/es_MX/Receivings.php diff --git a/app/Language/es_MX/reports_lang.php b/app/Language/es_MX/Reports.php similarity index 100% rename from app/Language/es_MX/reports_lang.php rename to app/Language/es_MX/Reports.php diff --git a/app/Language/es_MX/sales_lang.php b/app/Language/es_MX/Sales.php similarity index 100% rename from app/Language/es_MX/sales_lang.php rename to app/Language/es_MX/Sales.php diff --git a/app/Language/es_MX/suppliers_lang.php b/app/Language/es_MX/Suppliers.php similarity index 100% rename from app/Language/es_MX/suppliers_lang.php rename to app/Language/es_MX/Suppliers.php diff --git a/app/Language/es_MX/taxes_lang.php b/app/Language/es_MX/Taxes.php similarity index 100% rename from app/Language/es_MX/taxes_lang.php rename to app/Language/es_MX/Taxes.php diff --git a/app/Language/fa-IR/attributes_lang.php b/app/Language/fa-IR/Attributes.php similarity index 100% rename from app/Language/fa-IR/attributes_lang.php rename to app/Language/fa-IR/Attributes.php diff --git a/app/Language/fa-IR/bootstrap_tables_lang.php b/app/Language/fa-IR/Bootstrap_tables.php similarity index 100% rename from app/Language/fa-IR/bootstrap_tables_lang.php rename to app/Language/fa-IR/Bootstrap_tables.php diff --git a/app/Language/fa-IR/cashups_lang.php b/app/Language/fa-IR/Cashups.php similarity index 100% rename from app/Language/fa-IR/cashups_lang.php rename to app/Language/fa-IR/Cashups.php diff --git a/app/Language/fa-IR/common_lang.php b/app/Language/fa-IR/Common.php similarity index 100% rename from app/Language/fa-IR/common_lang.php rename to app/Language/fa-IR/Common.php diff --git a/app/Language/fa-IR/config_lang.php b/app/Language/fa-IR/Config.php similarity index 100% rename from app/Language/fa-IR/config_lang.php rename to app/Language/fa-IR/Config.php diff --git a/app/Language/fa-IR/customers_lang.php b/app/Language/fa-IR/Customers.php similarity index 100% rename from app/Language/fa-IR/customers_lang.php rename to app/Language/fa-IR/Customers.php diff --git a/app/Language/fa-IR/datepicker_lang.php b/app/Language/fa-IR/Datepicker.php similarity index 100% rename from app/Language/fa-IR/datepicker_lang.php rename to app/Language/fa-IR/Datepicker.php diff --git a/app/Language/fa-IR/employees_lang.php b/app/Language/fa-IR/Employees.php similarity index 100% rename from app/Language/fa-IR/employees_lang.php rename to app/Language/fa-IR/Employees.php diff --git a/app/Language/fa-IR/enum_lang.php b/app/Language/fa-IR/Enum.php similarity index 100% rename from app/Language/fa-IR/enum_lang.php rename to app/Language/fa-IR/Enum.php diff --git a/app/Language/fa-IR/error_lang.php b/app/Language/fa-IR/Error.php similarity index 100% rename from app/Language/fa-IR/error_lang.php rename to app/Language/fa-IR/Error.php diff --git a/app/Language/fa-IR/expenses_lang.php b/app/Language/fa-IR/Expenses.php similarity index 100% rename from app/Language/fa-IR/expenses_lang.php rename to app/Language/fa-IR/Expenses.php diff --git a/app/Language/fa-IR/expenses_categories_lang.php b/app/Language/fa-IR/Expenses_categories.php similarity index 100% rename from app/Language/fa-IR/expenses_categories_lang.php rename to app/Language/fa-IR/Expenses_categories.php diff --git a/app/Language/fa-IR/giftcards_lang.php b/app/Language/fa-IR/Giftcards.php similarity index 100% rename from app/Language/fa-IR/giftcards_lang.php rename to app/Language/fa-IR/Giftcards.php diff --git a/app/Language/fa-IR/item_kits_lang.php b/app/Language/fa-IR/Item_kits.php similarity index 100% rename from app/Language/fa-IR/item_kits_lang.php rename to app/Language/fa-IR/Item_kits.php diff --git a/app/Language/fa-IR/items_lang.php b/app/Language/fa-IR/Items.php similarity index 100% rename from app/Language/fa-IR/items_lang.php rename to app/Language/fa-IR/Items.php diff --git a/app/Language/fa-IR/login_lang.php b/app/Language/fa-IR/Login.php similarity index 100% rename from app/Language/fa-IR/login_lang.php rename to app/Language/fa-IR/Login.php diff --git a/app/Language/fa-IR/messages_lang.php b/app/Language/fa-IR/Messages.php similarity index 100% rename from app/Language/fa-IR/messages_lang.php rename to app/Language/fa-IR/Messages.php diff --git a/app/Language/fa-IR/module_lang.php b/app/Language/fa-IR/Module.php similarity index 100% rename from app/Language/fa-IR/module_lang.php rename to app/Language/fa-IR/Module.php diff --git a/app/Language/fa-IR/receivings_lang.php b/app/Language/fa-IR/Receivings.php similarity index 100% rename from app/Language/fa-IR/receivings_lang.php rename to app/Language/fa-IR/Receivings.php diff --git a/app/Language/fa-IR/reports_lang.php b/app/Language/fa-IR/Reports.php similarity index 100% rename from app/Language/fa-IR/reports_lang.php rename to app/Language/fa-IR/Reports.php diff --git a/app/Language/fa-IR/sales_lang.php b/app/Language/fa-IR/Sales.php similarity index 100% rename from app/Language/fa-IR/sales_lang.php rename to app/Language/fa-IR/Sales.php diff --git a/app/Language/fa-IR/suppliers_lang.php b/app/Language/fa-IR/Suppliers.php similarity index 100% rename from app/Language/fa-IR/suppliers_lang.php rename to app/Language/fa-IR/Suppliers.php diff --git a/app/Language/fa-IR/taxes_lang.php b/app/Language/fa-IR/Taxes.php similarity index 100% rename from app/Language/fa-IR/taxes_lang.php rename to app/Language/fa-IR/Taxes.php diff --git a/app/Language/fr/attributes_lang.php b/app/Language/fr/Attributes.php similarity index 100% rename from app/Language/fr/attributes_lang.php rename to app/Language/fr/Attributes.php diff --git a/app/Language/fr/bootstrap_tables_lang.php b/app/Language/fr/Bootstrap_tables.php similarity index 100% rename from app/Language/fr/bootstrap_tables_lang.php rename to app/Language/fr/Bootstrap_tables.php diff --git a/app/Language/fr/cashups_lang.php b/app/Language/fr/Cashups.php similarity index 100% rename from app/Language/fr/cashups_lang.php rename to app/Language/fr/Cashups.php diff --git a/app/Language/fr/common_lang.php b/app/Language/fr/Common.php similarity index 100% rename from app/Language/fr/common_lang.php rename to app/Language/fr/Common.php diff --git a/app/Language/fr/config_lang.php b/app/Language/fr/Config.php similarity index 100% rename from app/Language/fr/config_lang.php rename to app/Language/fr/Config.php diff --git a/app/Language/fr/customers_lang.php b/app/Language/fr/Customers.php similarity index 100% rename from app/Language/fr/customers_lang.php rename to app/Language/fr/Customers.php diff --git a/app/Language/fr/datepicker_lang.php b/app/Language/fr/Datepicker.php similarity index 100% rename from app/Language/fr/datepicker_lang.php rename to app/Language/fr/Datepicker.php diff --git a/app/Language/fr/employees_lang.php b/app/Language/fr/Employees.php similarity index 100% rename from app/Language/fr/employees_lang.php rename to app/Language/fr/Employees.php diff --git a/app/Language/fr/enum_lang.php b/app/Language/fr/Enum.php similarity index 100% rename from app/Language/fr/enum_lang.php rename to app/Language/fr/Enum.php diff --git a/app/Language/fr/error_lang.php b/app/Language/fr/Error.php similarity index 100% rename from app/Language/fr/error_lang.php rename to app/Language/fr/Error.php diff --git a/app/Language/fr/expenses_lang.php b/app/Language/fr/Expenses.php similarity index 100% rename from app/Language/fr/expenses_lang.php rename to app/Language/fr/Expenses.php diff --git a/app/Language/fr/expenses_categories_lang.php b/app/Language/fr/Expenses_categories.php similarity index 100% rename from app/Language/fr/expenses_categories_lang.php rename to app/Language/fr/Expenses_categories.php diff --git a/app/Language/fr/giftcards_lang.php b/app/Language/fr/Giftcards.php similarity index 100% rename from app/Language/fr/giftcards_lang.php rename to app/Language/fr/Giftcards.php diff --git a/app/Language/fr/item_kits_lang.php b/app/Language/fr/Item_kits.php similarity index 100% rename from app/Language/fr/item_kits_lang.php rename to app/Language/fr/Item_kits.php diff --git a/app/Language/fr/items_lang.php b/app/Language/fr/Items.php similarity index 100% rename from app/Language/fr/items_lang.php rename to app/Language/fr/Items.php diff --git a/app/Language/fr/login_lang.php b/app/Language/fr/Login.php similarity index 100% rename from app/Language/fr/login_lang.php rename to app/Language/fr/Login.php diff --git a/app/Language/fr/messages_lang.php b/app/Language/fr/Messages.php similarity index 100% rename from app/Language/fr/messages_lang.php rename to app/Language/fr/Messages.php diff --git a/app/Language/fr/module_lang.php b/app/Language/fr/Module.php similarity index 100% rename from app/Language/fr/module_lang.php rename to app/Language/fr/Module.php diff --git a/app/Language/fr/receivings_lang.php b/app/Language/fr/Receivings.php similarity index 100% rename from app/Language/fr/receivings_lang.php rename to app/Language/fr/Receivings.php diff --git a/app/Language/fr/reports_lang.php b/app/Language/fr/Reports.php similarity index 100% rename from app/Language/fr/reports_lang.php rename to app/Language/fr/Reports.php diff --git a/app/Language/fr/sales_lang.php b/app/Language/fr/Sales.php similarity index 100% rename from app/Language/fr/sales_lang.php rename to app/Language/fr/Sales.php diff --git a/app/Language/fr/suppliers_lang.php b/app/Language/fr/Suppliers.php similarity index 100% rename from app/Language/fr/suppliers_lang.php rename to app/Language/fr/Suppliers.php diff --git a/app/Language/fr/taxes_lang.php b/app/Language/fr/Taxes.php similarity index 100% rename from app/Language/fr/taxes_lang.php rename to app/Language/fr/Taxes.php diff --git a/app/Language/he/attributes_lang.php b/app/Language/he/Attributes.php similarity index 100% rename from app/Language/he/attributes_lang.php rename to app/Language/he/Attributes.php diff --git a/app/Language/he/bootstrap_tables_lang.php b/app/Language/he/Bootstrap_tables.php similarity index 100% rename from app/Language/he/bootstrap_tables_lang.php rename to app/Language/he/Bootstrap_tables.php diff --git a/app/Language/he/cashups_lang.php b/app/Language/he/Cashups.php similarity index 100% rename from app/Language/he/cashups_lang.php rename to app/Language/he/Cashups.php diff --git a/app/Language/he/common_lang.php b/app/Language/he/Common.php similarity index 100% rename from app/Language/he/common_lang.php rename to app/Language/he/Common.php diff --git a/app/Language/he/config_lang.php b/app/Language/he/Config.php similarity index 100% rename from app/Language/he/config_lang.php rename to app/Language/he/Config.php diff --git a/app/Language/he/customers_lang.php b/app/Language/he/Customers.php similarity index 100% rename from app/Language/he/customers_lang.php rename to app/Language/he/Customers.php diff --git a/app/Language/he/datepicker_lang.php b/app/Language/he/Datepicker.php similarity index 100% rename from app/Language/he/datepicker_lang.php rename to app/Language/he/Datepicker.php diff --git a/app/Language/he/employees_lang.php b/app/Language/he/Employees.php similarity index 100% rename from app/Language/he/employees_lang.php rename to app/Language/he/Employees.php diff --git a/app/Language/he/enum_lang.php b/app/Language/he/Enum.php similarity index 100% rename from app/Language/he/enum_lang.php rename to app/Language/he/Enum.php diff --git a/app/Language/he/error_lang.php b/app/Language/he/Error.php similarity index 100% rename from app/Language/he/error_lang.php rename to app/Language/he/Error.php diff --git a/app/Language/he/expenses_lang.php b/app/Language/he/Expenses.php similarity index 100% rename from app/Language/he/expenses_lang.php rename to app/Language/he/Expenses.php diff --git a/app/Language/he/expenses_categories_lang.php b/app/Language/he/Expenses_categories.php similarity index 100% rename from app/Language/he/expenses_categories_lang.php rename to app/Language/he/Expenses_categories.php diff --git a/app/Language/he/giftcards_lang.php b/app/Language/he/Giftcards.php similarity index 100% rename from app/Language/he/giftcards_lang.php rename to app/Language/he/Giftcards.php diff --git a/app/Language/he/item_kits_lang.php b/app/Language/he/Item_kits.php similarity index 100% rename from app/Language/he/item_kits_lang.php rename to app/Language/he/Item_kits.php diff --git a/app/Language/he/items_lang.php b/app/Language/he/Items.php similarity index 100% rename from app/Language/he/items_lang.php rename to app/Language/he/Items.php diff --git a/app/Language/he/login_lang.php b/app/Language/he/Login.php similarity index 100% rename from app/Language/he/login_lang.php rename to app/Language/he/Login.php diff --git a/app/Language/he/messages_lang.php b/app/Language/he/Messages.php similarity index 100% rename from app/Language/he/messages_lang.php rename to app/Language/he/Messages.php diff --git a/app/Language/he/module_lang.php b/app/Language/he/Module.php similarity index 100% rename from app/Language/he/module_lang.php rename to app/Language/he/Module.php diff --git a/app/Language/he/receivings_lang.php b/app/Language/he/Receivings.php similarity index 100% rename from app/Language/he/receivings_lang.php rename to app/Language/he/Receivings.php diff --git a/app/Language/he/reports_lang.php b/app/Language/he/Reports.php similarity index 100% rename from app/Language/he/reports_lang.php rename to app/Language/he/Reports.php diff --git a/app/Language/he/sales_lang.php b/app/Language/he/Sales.php similarity index 100% rename from app/Language/he/sales_lang.php rename to app/Language/he/Sales.php diff --git a/app/Language/he/suppliers_lang.php b/app/Language/he/Suppliers.php similarity index 100% rename from app/Language/he/suppliers_lang.php rename to app/Language/he/Suppliers.php diff --git a/app/Language/he/taxes_lang.php b/app/Language/he/Taxes.php similarity index 100% rename from app/Language/he/taxes_lang.php rename to app/Language/he/Taxes.php diff --git a/app/Language/hr-HR/attributes_lang.php b/app/Language/hr-HR/Attributes.php similarity index 100% rename from app/Language/hr-HR/attributes_lang.php rename to app/Language/hr-HR/Attributes.php diff --git a/app/Language/hr-HR/bootstrap_tables_lang.php b/app/Language/hr-HR/Bootstrap_tables.php similarity index 100% rename from app/Language/hr-HR/bootstrap_tables_lang.php rename to app/Language/hr-HR/Bootstrap_tables.php diff --git a/app/Language/hr-HR/cashups_lang.php b/app/Language/hr-HR/Cashups.php similarity index 100% rename from app/Language/hr-HR/cashups_lang.php rename to app/Language/hr-HR/Cashups.php diff --git a/app/Language/hr-HR/common_lang.php b/app/Language/hr-HR/Common.php similarity index 100% rename from app/Language/hr-HR/common_lang.php rename to app/Language/hr-HR/Common.php diff --git a/app/Language/hr-HR/config_lang.php b/app/Language/hr-HR/Config.php similarity index 100% rename from app/Language/hr-HR/config_lang.php rename to app/Language/hr-HR/Config.php diff --git a/app/Language/hr-HR/customers_lang.php b/app/Language/hr-HR/Customers.php similarity index 100% rename from app/Language/hr-HR/customers_lang.php rename to app/Language/hr-HR/Customers.php diff --git a/app/Language/hr-HR/datepicker_lang.php b/app/Language/hr-HR/Datepicker.php similarity index 100% rename from app/Language/hr-HR/datepicker_lang.php rename to app/Language/hr-HR/Datepicker.php diff --git a/app/Language/hr-HR/employees_lang.php b/app/Language/hr-HR/Employees.php similarity index 100% rename from app/Language/hr-HR/employees_lang.php rename to app/Language/hr-HR/Employees.php diff --git a/app/Language/hr-HR/enum_lang.php b/app/Language/hr-HR/Enum.php similarity index 100% rename from app/Language/hr-HR/enum_lang.php rename to app/Language/hr-HR/Enum.php diff --git a/app/Language/hr-HR/error_lang.php b/app/Language/hr-HR/Error.php similarity index 100% rename from app/Language/hr-HR/error_lang.php rename to app/Language/hr-HR/Error.php diff --git a/app/Language/hr-HR/expenses_lang.php b/app/Language/hr-HR/Expenses.php similarity index 100% rename from app/Language/hr-HR/expenses_lang.php rename to app/Language/hr-HR/Expenses.php diff --git a/app/Language/hr-HR/expenses_categories_lang.php b/app/Language/hr-HR/Expenses_categories.php similarity index 100% rename from app/Language/hr-HR/expenses_categories_lang.php rename to app/Language/hr-HR/Expenses_categories.php diff --git a/app/Language/hr-HR/giftcards_lang.php b/app/Language/hr-HR/Giftcards.php similarity index 100% rename from app/Language/hr-HR/giftcards_lang.php rename to app/Language/hr-HR/Giftcards.php diff --git a/app/Language/hr-HR/item_kits_lang.php b/app/Language/hr-HR/Item_kits.php similarity index 100% rename from app/Language/hr-HR/item_kits_lang.php rename to app/Language/hr-HR/Item_kits.php diff --git a/app/Language/hr-HR/items_lang.php b/app/Language/hr-HR/Items.php similarity index 100% rename from app/Language/hr-HR/items_lang.php rename to app/Language/hr-HR/Items.php diff --git a/app/Language/hr-HR/login_lang.php b/app/Language/hr-HR/Login.php similarity index 100% rename from app/Language/hr-HR/login_lang.php rename to app/Language/hr-HR/Login.php diff --git a/app/Language/hr-HR/messages_lang.php b/app/Language/hr-HR/Messages.php similarity index 100% rename from app/Language/hr-HR/messages_lang.php rename to app/Language/hr-HR/Messages.php diff --git a/app/Language/hr-HR/module_lang.php b/app/Language/hr-HR/Module.php similarity index 100% rename from app/Language/hr-HR/module_lang.php rename to app/Language/hr-HR/Module.php diff --git a/app/Language/hr-HR/receivings_lang.php b/app/Language/hr-HR/Receivings.php similarity index 100% rename from app/Language/hr-HR/receivings_lang.php rename to app/Language/hr-HR/Receivings.php diff --git a/app/Language/hr-HR/reports_lang.php b/app/Language/hr-HR/Reports.php similarity index 100% rename from app/Language/hr-HR/reports_lang.php rename to app/Language/hr-HR/Reports.php diff --git a/app/Language/hr-HR/sales_lang.php b/app/Language/hr-HR/Sales.php similarity index 100% rename from app/Language/hr-HR/sales_lang.php rename to app/Language/hr-HR/Sales.php diff --git a/app/Language/hr-HR/suppliers_lang.php b/app/Language/hr-HR/Suppliers.php similarity index 100% rename from app/Language/hr-HR/suppliers_lang.php rename to app/Language/hr-HR/Suppliers.php diff --git a/app/Language/hr-HR/taxes_lang.php b/app/Language/hr-HR/Taxes.php similarity index 100% rename from app/Language/hr-HR/taxes_lang.php rename to app/Language/hr-HR/Taxes.php diff --git a/app/Language/hu-HU/attributes_lang.php b/app/Language/hu-HU/Attributes.php similarity index 100% rename from app/Language/hu-HU/attributes_lang.php rename to app/Language/hu-HU/Attributes.php diff --git a/app/Language/hu-HU/bootstrap_tables_lang.php b/app/Language/hu-HU/Bootstrap_tables.php similarity index 100% rename from app/Language/hu-HU/bootstrap_tables_lang.php rename to app/Language/hu-HU/Bootstrap_tables.php diff --git a/app/Language/hu-HU/cashups_lang.php b/app/Language/hu-HU/Cashups.php similarity index 100% rename from app/Language/hu-HU/cashups_lang.php rename to app/Language/hu-HU/Cashups.php diff --git a/app/Language/hu-HU/common_lang.php b/app/Language/hu-HU/Common.php similarity index 100% rename from app/Language/hu-HU/common_lang.php rename to app/Language/hu-HU/Common.php diff --git a/app/Language/hu-HU/config_lang.php b/app/Language/hu-HU/Config.php similarity index 100% rename from app/Language/hu-HU/config_lang.php rename to app/Language/hu-HU/Config.php diff --git a/app/Language/hu-HU/customers_lang.php b/app/Language/hu-HU/Customers.php similarity index 100% rename from app/Language/hu-HU/customers_lang.php rename to app/Language/hu-HU/Customers.php diff --git a/app/Language/hu-HU/datepicker_lang.php b/app/Language/hu-HU/Datepicker.php similarity index 100% rename from app/Language/hu-HU/datepicker_lang.php rename to app/Language/hu-HU/Datepicker.php diff --git a/app/Language/hu-HU/employees_lang.php b/app/Language/hu-HU/Employees.php similarity index 100% rename from app/Language/hu-HU/employees_lang.php rename to app/Language/hu-HU/Employees.php diff --git a/app/Language/hu-HU/enum_lang.php b/app/Language/hu-HU/Enum.php similarity index 100% rename from app/Language/hu-HU/enum_lang.php rename to app/Language/hu-HU/Enum.php diff --git a/app/Language/hu-HU/error_lang.php b/app/Language/hu-HU/Error.php similarity index 100% rename from app/Language/hu-HU/error_lang.php rename to app/Language/hu-HU/Error.php diff --git a/app/Language/hu-HU/expenses_lang.php b/app/Language/hu-HU/Expenses.php similarity index 100% rename from app/Language/hu-HU/expenses_lang.php rename to app/Language/hu-HU/Expenses.php diff --git a/app/Language/hu-HU/expenses_categories_lang.php b/app/Language/hu-HU/Expenses_categories.php similarity index 100% rename from app/Language/hu-HU/expenses_categories_lang.php rename to app/Language/hu-HU/Expenses_categories.php diff --git a/app/Language/hu-HU/giftcards_lang.php b/app/Language/hu-HU/Giftcards.php similarity index 100% rename from app/Language/hu-HU/giftcards_lang.php rename to app/Language/hu-HU/Giftcards.php diff --git a/app/Language/hu-HU/item_kits_lang.php b/app/Language/hu-HU/Item_kits.php similarity index 100% rename from app/Language/hu-HU/item_kits_lang.php rename to app/Language/hu-HU/Item_kits.php diff --git a/app/Language/hu-HU/items_lang.php b/app/Language/hu-HU/Items.php similarity index 100% rename from app/Language/hu-HU/items_lang.php rename to app/Language/hu-HU/Items.php diff --git a/app/Language/hu-HU/login_lang.php b/app/Language/hu-HU/Login.php similarity index 100% rename from app/Language/hu-HU/login_lang.php rename to app/Language/hu-HU/Login.php diff --git a/app/Language/hu-HU/messages_lang.php b/app/Language/hu-HU/Messages.php similarity index 100% rename from app/Language/hu-HU/messages_lang.php rename to app/Language/hu-HU/Messages.php diff --git a/app/Language/hu-HU/module_lang.php b/app/Language/hu-HU/Module.php similarity index 100% rename from app/Language/hu-HU/module_lang.php rename to app/Language/hu-HU/Module.php diff --git a/app/Language/hu-HU/receivings_lang.php b/app/Language/hu-HU/Receivings.php similarity index 100% rename from app/Language/hu-HU/receivings_lang.php rename to app/Language/hu-HU/Receivings.php diff --git a/app/Language/hu-HU/reports_lang.php b/app/Language/hu-HU/Reports.php similarity index 100% rename from app/Language/hu-HU/reports_lang.php rename to app/Language/hu-HU/Reports.php diff --git a/app/Language/hu-HU/sales_lang.php b/app/Language/hu-HU/Sales.php similarity index 100% rename from app/Language/hu-HU/sales_lang.php rename to app/Language/hu-HU/Sales.php diff --git a/app/Language/hu-HU/suppliers_lang.php b/app/Language/hu-HU/Suppliers.php similarity index 100% rename from app/Language/hu-HU/suppliers_lang.php rename to app/Language/hu-HU/Suppliers.php diff --git a/app/Language/hu-HU/taxes_lang.php b/app/Language/hu-HU/Taxes.php similarity index 100% rename from app/Language/hu-HU/taxes_lang.php rename to app/Language/hu-HU/Taxes.php diff --git a/app/Language/hy/attributes_lang.php b/app/Language/hy/Attributes.php similarity index 100% rename from app/Language/hy/attributes_lang.php rename to app/Language/hy/Attributes.php diff --git a/app/Language/hy/bootstrap_tables_lang.php b/app/Language/hy/Bootstrap_tables.php similarity index 100% rename from app/Language/hy/bootstrap_tables_lang.php rename to app/Language/hy/Bootstrap_tables.php diff --git a/app/Language/hy/cashups_lang.php b/app/Language/hy/Cashups.php similarity index 100% rename from app/Language/hy/cashups_lang.php rename to app/Language/hy/Cashups.php diff --git a/app/Language/hy/common_lang.php b/app/Language/hy/Common.php similarity index 100% rename from app/Language/hy/common_lang.php rename to app/Language/hy/Common.php diff --git a/app/Language/hy/config_lang.php b/app/Language/hy/Config.php similarity index 100% rename from app/Language/hy/config_lang.php rename to app/Language/hy/Config.php diff --git a/app/Language/hy/customers_lang.php b/app/Language/hy/Customers.php similarity index 100% rename from app/Language/hy/customers_lang.php rename to app/Language/hy/Customers.php diff --git a/app/Language/hy/datepicker_lang.php b/app/Language/hy/Datepicker.php similarity index 100% rename from app/Language/hy/datepicker_lang.php rename to app/Language/hy/Datepicker.php diff --git a/app/Language/hy/employees_lang.php b/app/Language/hy/Employees.php similarity index 100% rename from app/Language/hy/employees_lang.php rename to app/Language/hy/Employees.php diff --git a/app/Language/hy/enum_lang.php b/app/Language/hy/Enum.php similarity index 100% rename from app/Language/hy/enum_lang.php rename to app/Language/hy/Enum.php diff --git a/app/Language/hy/error_lang.php b/app/Language/hy/Error.php similarity index 100% rename from app/Language/hy/error_lang.php rename to app/Language/hy/Error.php diff --git a/app/Language/hy/expenses_lang.php b/app/Language/hy/Expenses.php similarity index 100% rename from app/Language/hy/expenses_lang.php rename to app/Language/hy/Expenses.php diff --git a/app/Language/hy/expenses_categories_lang.php b/app/Language/hy/Expenses_categories.php similarity index 100% rename from app/Language/hy/expenses_categories_lang.php rename to app/Language/hy/Expenses_categories.php diff --git a/app/Language/hy/giftcards_lang.php b/app/Language/hy/Giftcards.php similarity index 100% rename from app/Language/hy/giftcards_lang.php rename to app/Language/hy/Giftcards.php diff --git a/app/Language/hy/item_kits_lang.php b/app/Language/hy/Item_kits.php similarity index 100% rename from app/Language/hy/item_kits_lang.php rename to app/Language/hy/Item_kits.php diff --git a/app/Language/hy/items_lang.php b/app/Language/hy/Items.php similarity index 100% rename from app/Language/hy/items_lang.php rename to app/Language/hy/Items.php diff --git a/app/Language/hy/login_lang.php b/app/Language/hy/Login.php similarity index 100% rename from app/Language/hy/login_lang.php rename to app/Language/hy/Login.php diff --git a/app/Language/hy/messages_lang.php b/app/Language/hy/Messages.php similarity index 100% rename from app/Language/hy/messages_lang.php rename to app/Language/hy/Messages.php diff --git a/app/Language/hy/module_lang.php b/app/Language/hy/Module.php similarity index 100% rename from app/Language/hy/module_lang.php rename to app/Language/hy/Module.php diff --git a/app/Language/hy/receivings_lang.php b/app/Language/hy/Receivings.php similarity index 100% rename from app/Language/hy/receivings_lang.php rename to app/Language/hy/Receivings.php diff --git a/app/Language/hy/reports_lang.php b/app/Language/hy/Reports.php similarity index 100% rename from app/Language/hy/reports_lang.php rename to app/Language/hy/Reports.php diff --git a/app/Language/hy/sales_lang.php b/app/Language/hy/Sales.php similarity index 100% rename from app/Language/hy/sales_lang.php rename to app/Language/hy/Sales.php diff --git a/app/Language/hy/suppliers_lang.php b/app/Language/hy/Suppliers.php similarity index 100% rename from app/Language/hy/suppliers_lang.php rename to app/Language/hy/Suppliers.php diff --git a/app/Language/hy/taxes_lang.php b/app/Language/hy/Taxes.php similarity index 100% rename from app/Language/hy/taxes_lang.php rename to app/Language/hy/Taxes.php diff --git a/app/Language/id/attributes_lang.php b/app/Language/id/Attributes.php similarity index 100% rename from app/Language/id/attributes_lang.php rename to app/Language/id/Attributes.php diff --git a/app/Language/id/bootstrap_tables_lang.php b/app/Language/id/Bootstrap_tables.php similarity index 100% rename from app/Language/id/bootstrap_tables_lang.php rename to app/Language/id/Bootstrap_tables.php diff --git a/app/Language/id/cashups_lang.php b/app/Language/id/Cashups.php similarity index 100% rename from app/Language/id/cashups_lang.php rename to app/Language/id/Cashups.php diff --git a/app/Language/id/common_lang.php b/app/Language/id/Common.php similarity index 100% rename from app/Language/id/common_lang.php rename to app/Language/id/Common.php diff --git a/app/Language/id/config_lang.php b/app/Language/id/Config.php similarity index 100% rename from app/Language/id/config_lang.php rename to app/Language/id/Config.php diff --git a/app/Language/id/customers_lang.php b/app/Language/id/Customers.php similarity index 100% rename from app/Language/id/customers_lang.php rename to app/Language/id/Customers.php diff --git a/app/Language/id/datepicker_lang.php b/app/Language/id/Datepicker.php similarity index 100% rename from app/Language/id/datepicker_lang.php rename to app/Language/id/Datepicker.php diff --git a/app/Language/id/employees_lang.php b/app/Language/id/Employees.php similarity index 100% rename from app/Language/id/employees_lang.php rename to app/Language/id/Employees.php diff --git a/app/Language/id/enum_lang.php b/app/Language/id/Enum.php similarity index 100% rename from app/Language/id/enum_lang.php rename to app/Language/id/Enum.php diff --git a/app/Language/id/error_lang.php b/app/Language/id/Error.php similarity index 100% rename from app/Language/id/error_lang.php rename to app/Language/id/Error.php diff --git a/app/Language/id/expenses_lang.php b/app/Language/id/Expenses.php similarity index 100% rename from app/Language/id/expenses_lang.php rename to app/Language/id/Expenses.php diff --git a/app/Language/id/expenses_categories_lang.php b/app/Language/id/Expenses_categories.php similarity index 100% rename from app/Language/id/expenses_categories_lang.php rename to app/Language/id/Expenses_categories.php diff --git a/app/Language/id/giftcards_lang.php b/app/Language/id/Giftcards.php similarity index 100% rename from app/Language/id/giftcards_lang.php rename to app/Language/id/Giftcards.php diff --git a/app/Language/id/item_kits_lang.php b/app/Language/id/Item_kits.php similarity index 100% rename from app/Language/id/item_kits_lang.php rename to app/Language/id/Item_kits.php diff --git a/app/Language/id/items_lang.php b/app/Language/id/Items.php similarity index 100% rename from app/Language/id/items_lang.php rename to app/Language/id/Items.php diff --git a/app/Language/id/login_lang.php b/app/Language/id/Login.php similarity index 100% rename from app/Language/id/login_lang.php rename to app/Language/id/Login.php diff --git a/app/Language/id/messages_lang.php b/app/Language/id/Messages.php similarity index 100% rename from app/Language/id/messages_lang.php rename to app/Language/id/Messages.php diff --git a/app/Language/id/module_lang.php b/app/Language/id/Module.php similarity index 100% rename from app/Language/id/module_lang.php rename to app/Language/id/Module.php diff --git a/app/Language/id/receivings_lang.php b/app/Language/id/Receivings.php similarity index 100% rename from app/Language/id/receivings_lang.php rename to app/Language/id/Receivings.php diff --git a/app/Language/id/reports_lang.php b/app/Language/id/Reports.php similarity index 100% rename from app/Language/id/reports_lang.php rename to app/Language/id/Reports.php diff --git a/app/Language/id/sales_lang.php b/app/Language/id/Sales.php similarity index 100% rename from app/Language/id/sales_lang.php rename to app/Language/id/Sales.php diff --git a/app/Language/id/suppliers_lang.php b/app/Language/id/Suppliers.php similarity index 100% rename from app/Language/id/suppliers_lang.php rename to app/Language/id/Suppliers.php diff --git a/app/Language/id/taxes_lang.php b/app/Language/id/Taxes.php similarity index 100% rename from app/Language/id/taxes_lang.php rename to app/Language/id/Taxes.php diff --git a/app/Language/it/attributes_lang.php b/app/Language/it/Attributes.php similarity index 100% rename from app/Language/it/attributes_lang.php rename to app/Language/it/Attributes.php diff --git a/app/Language/it/bootstrap_tables_lang.php b/app/Language/it/Bootstrap_tables.php similarity index 100% rename from app/Language/it/bootstrap_tables_lang.php rename to app/Language/it/Bootstrap_tables.php diff --git a/app/Language/it/cashups_lang.php b/app/Language/it/Cashups.php similarity index 100% rename from app/Language/it/cashups_lang.php rename to app/Language/it/Cashups.php diff --git a/app/Language/it/common_lang.php b/app/Language/it/Common.php similarity index 100% rename from app/Language/it/common_lang.php rename to app/Language/it/Common.php diff --git a/app/Language/it/config_lang.php b/app/Language/it/Config.php similarity index 100% rename from app/Language/it/config_lang.php rename to app/Language/it/Config.php diff --git a/app/Language/it/customers_lang.php b/app/Language/it/Customers.php similarity index 100% rename from app/Language/it/customers_lang.php rename to app/Language/it/Customers.php diff --git a/app/Language/it/datepicker_lang.php b/app/Language/it/Datepicker.php similarity index 100% rename from app/Language/it/datepicker_lang.php rename to app/Language/it/Datepicker.php diff --git a/app/Language/it/employees_lang.php b/app/Language/it/Employees.php similarity index 100% rename from app/Language/it/employees_lang.php rename to app/Language/it/Employees.php diff --git a/app/Language/it/enum_lang.php b/app/Language/it/Enum.php similarity index 100% rename from app/Language/it/enum_lang.php rename to app/Language/it/Enum.php diff --git a/app/Language/it/error_lang.php b/app/Language/it/Error.php similarity index 100% rename from app/Language/it/error_lang.php rename to app/Language/it/Error.php diff --git a/app/Language/it/expenses_lang.php b/app/Language/it/Expenses.php similarity index 100% rename from app/Language/it/expenses_lang.php rename to app/Language/it/Expenses.php diff --git a/app/Language/it/expenses_categories_lang.php b/app/Language/it/Expenses_categories.php similarity index 100% rename from app/Language/it/expenses_categories_lang.php rename to app/Language/it/Expenses_categories.php diff --git a/app/Language/it/giftcards_lang.php b/app/Language/it/Giftcards.php similarity index 100% rename from app/Language/it/giftcards_lang.php rename to app/Language/it/Giftcards.php diff --git a/app/Language/it/item_kits_lang.php b/app/Language/it/Item_kits.php similarity index 100% rename from app/Language/it/item_kits_lang.php rename to app/Language/it/Item_kits.php diff --git a/app/Language/it/items_lang.php b/app/Language/it/Items.php similarity index 100% rename from app/Language/it/items_lang.php rename to app/Language/it/Items.php diff --git a/app/Language/it/login_lang.php b/app/Language/it/Login.php similarity index 100% rename from app/Language/it/login_lang.php rename to app/Language/it/Login.php diff --git a/app/Language/it/messages_lang.php b/app/Language/it/Messages.php similarity index 100% rename from app/Language/it/messages_lang.php rename to app/Language/it/Messages.php diff --git a/app/Language/it/module_lang.php b/app/Language/it/Module.php similarity index 100% rename from app/Language/it/module_lang.php rename to app/Language/it/Module.php diff --git a/app/Language/it/receivings_lang.php b/app/Language/it/Receivings.php similarity index 100% rename from app/Language/it/receivings_lang.php rename to app/Language/it/Receivings.php diff --git a/app/Language/it/reports_lang.php b/app/Language/it/Reports.php similarity index 100% rename from app/Language/it/reports_lang.php rename to app/Language/it/Reports.php diff --git a/app/Language/it/sales_lang.php b/app/Language/it/Sales.php similarity index 100% rename from app/Language/it/sales_lang.php rename to app/Language/it/Sales.php diff --git a/app/Language/it/suppliers_lang.php b/app/Language/it/Suppliers.php similarity index 100% rename from app/Language/it/suppliers_lang.php rename to app/Language/it/Suppliers.php diff --git a/app/Language/it/taxes_lang.php b/app/Language/it/Taxes.php similarity index 100% rename from app/Language/it/taxes_lang.php rename to app/Language/it/Taxes.php diff --git a/app/Language/km/attributes_lang.php b/app/Language/km/Attributes.php similarity index 100% rename from app/Language/km/attributes_lang.php rename to app/Language/km/Attributes.php diff --git a/app/Language/km/bootstrap_tables_lang.php b/app/Language/km/Bootstrap_tables.php similarity index 100% rename from app/Language/km/bootstrap_tables_lang.php rename to app/Language/km/Bootstrap_tables.php diff --git a/app/Language/km/cashups_lang.php b/app/Language/km/Cashups.php similarity index 100% rename from app/Language/km/cashups_lang.php rename to app/Language/km/Cashups.php diff --git a/app/Language/km/common_lang.php b/app/Language/km/Common.php similarity index 100% rename from app/Language/km/common_lang.php rename to app/Language/km/Common.php diff --git a/app/Language/km/config_lang.php b/app/Language/km/Config.php similarity index 100% rename from app/Language/km/config_lang.php rename to app/Language/km/Config.php diff --git a/app/Language/km/customers_lang.php b/app/Language/km/Customers.php similarity index 100% rename from app/Language/km/customers_lang.php rename to app/Language/km/Customers.php diff --git a/app/Language/km/datepicker_lang.php b/app/Language/km/Datepicker.php similarity index 100% rename from app/Language/km/datepicker_lang.php rename to app/Language/km/Datepicker.php diff --git a/app/Language/km/employees_lang.php b/app/Language/km/Employees.php similarity index 100% rename from app/Language/km/employees_lang.php rename to app/Language/km/Employees.php diff --git a/app/Language/km/enum_lang.php b/app/Language/km/Enum.php similarity index 100% rename from app/Language/km/enum_lang.php rename to app/Language/km/Enum.php diff --git a/app/Language/km/error_lang.php b/app/Language/km/Error.php similarity index 100% rename from app/Language/km/error_lang.php rename to app/Language/km/Error.php diff --git a/app/Language/km/expenses_lang.php b/app/Language/km/Expenses.php similarity index 100% rename from app/Language/km/expenses_lang.php rename to app/Language/km/Expenses.php diff --git a/app/Language/km/expenses_categories_lang.php b/app/Language/km/Expenses_categories.php similarity index 100% rename from app/Language/km/expenses_categories_lang.php rename to app/Language/km/Expenses_categories.php diff --git a/app/Language/km/giftcards_lang.php b/app/Language/km/Giftcards.php similarity index 100% rename from app/Language/km/giftcards_lang.php rename to app/Language/km/Giftcards.php diff --git a/app/Language/km/item_kits_lang.php b/app/Language/km/Item_kits.php similarity index 100% rename from app/Language/km/item_kits_lang.php rename to app/Language/km/Item_kits.php diff --git a/app/Language/km/items_lang.php b/app/Language/km/Items.php similarity index 100% rename from app/Language/km/items_lang.php rename to app/Language/km/Items.php diff --git a/app/Language/km/login_lang.php b/app/Language/km/Login.php similarity index 100% rename from app/Language/km/login_lang.php rename to app/Language/km/Login.php diff --git a/app/Language/km/messages_lang.php b/app/Language/km/Messages.php similarity index 100% rename from app/Language/km/messages_lang.php rename to app/Language/km/Messages.php diff --git a/app/Language/km/module_lang.php b/app/Language/km/Module.php similarity index 100% rename from app/Language/km/module_lang.php rename to app/Language/km/Module.php diff --git a/app/Language/km/receivings_lang.php b/app/Language/km/Receivings.php similarity index 100% rename from app/Language/km/receivings_lang.php rename to app/Language/km/Receivings.php diff --git a/app/Language/km/reports_lang.php b/app/Language/km/Reports.php similarity index 100% rename from app/Language/km/reports_lang.php rename to app/Language/km/Reports.php diff --git a/app/Language/km/sales_lang.php b/app/Language/km/Sales.php similarity index 100% rename from app/Language/km/sales_lang.php rename to app/Language/km/Sales.php diff --git a/app/Language/km/suppliers_lang.php b/app/Language/km/Suppliers.php similarity index 100% rename from app/Language/km/suppliers_lang.php rename to app/Language/km/Suppliers.php diff --git a/app/Language/km/taxes_lang.php b/app/Language/km/Taxes.php similarity index 100% rename from app/Language/km/taxes_lang.php rename to app/Language/km/Taxes.php diff --git a/app/Language/lo/attributes_lang.php b/app/Language/lo/Attributes.php similarity index 100% rename from app/Language/lo/attributes_lang.php rename to app/Language/lo/Attributes.php diff --git a/app/Language/lo/bootstrap_tables_lang.php b/app/Language/lo/Bootstrap_tables.php similarity index 100% rename from app/Language/lo/bootstrap_tables_lang.php rename to app/Language/lo/Bootstrap_tables.php diff --git a/app/Language/lo/cashups_lang.php b/app/Language/lo/Cashups.php similarity index 100% rename from app/Language/lo/cashups_lang.php rename to app/Language/lo/Cashups.php diff --git a/app/Language/lo/common_lang.php b/app/Language/lo/Common.php similarity index 100% rename from app/Language/lo/common_lang.php rename to app/Language/lo/Common.php diff --git a/app/Language/lo/config_lang.php b/app/Language/lo/Config.php similarity index 100% rename from app/Language/lo/config_lang.php rename to app/Language/lo/Config.php diff --git a/app/Language/lo/customers_lang.php b/app/Language/lo/Customers.php similarity index 100% rename from app/Language/lo/customers_lang.php rename to app/Language/lo/Customers.php diff --git a/app/Language/lo/datepicker_lang.php b/app/Language/lo/Datepicker.php similarity index 100% rename from app/Language/lo/datepicker_lang.php rename to app/Language/lo/Datepicker.php diff --git a/app/Language/lo/employees_lang.php b/app/Language/lo/Employees.php similarity index 100% rename from app/Language/lo/employees_lang.php rename to app/Language/lo/Employees.php diff --git a/app/Language/lo/enum_lang.php b/app/Language/lo/Enum.php similarity index 100% rename from app/Language/lo/enum_lang.php rename to app/Language/lo/Enum.php diff --git a/app/Language/lo/error_lang.php b/app/Language/lo/Error.php similarity index 100% rename from app/Language/lo/error_lang.php rename to app/Language/lo/Error.php diff --git a/app/Language/lo/expenses_lang.php b/app/Language/lo/Expenses.php similarity index 100% rename from app/Language/lo/expenses_lang.php rename to app/Language/lo/Expenses.php diff --git a/app/Language/lo/expenses_categories_lang.php b/app/Language/lo/Expenses_categories.php similarity index 100% rename from app/Language/lo/expenses_categories_lang.php rename to app/Language/lo/Expenses_categories.php diff --git a/app/Language/lo/giftcards_lang.php b/app/Language/lo/Giftcards.php similarity index 100% rename from app/Language/lo/giftcards_lang.php rename to app/Language/lo/Giftcards.php diff --git a/app/Language/lo/item_kits_lang.php b/app/Language/lo/Item_kits.php similarity index 100% rename from app/Language/lo/item_kits_lang.php rename to app/Language/lo/Item_kits.php diff --git a/app/Language/lo/items_lang.php b/app/Language/lo/Items.php similarity index 100% rename from app/Language/lo/items_lang.php rename to app/Language/lo/Items.php diff --git a/app/Language/lo/login_lang.php b/app/Language/lo/Login.php similarity index 100% rename from app/Language/lo/login_lang.php rename to app/Language/lo/Login.php diff --git a/app/Language/lo/messages_lang.php b/app/Language/lo/Messages.php similarity index 100% rename from app/Language/lo/messages_lang.php rename to app/Language/lo/Messages.php diff --git a/app/Language/lo/module_lang.php b/app/Language/lo/Module.php similarity index 100% rename from app/Language/lo/module_lang.php rename to app/Language/lo/Module.php diff --git a/app/Language/lo/receivings_lang.php b/app/Language/lo/Receivings.php similarity index 100% rename from app/Language/lo/receivings_lang.php rename to app/Language/lo/Receivings.php diff --git a/app/Language/lo/reports_lang.php b/app/Language/lo/Reports.php similarity index 100% rename from app/Language/lo/reports_lang.php rename to app/Language/lo/Reports.php diff --git a/app/Language/lo/sales_lang.php b/app/Language/lo/Sales.php similarity index 100% rename from app/Language/lo/sales_lang.php rename to app/Language/lo/Sales.php diff --git a/app/Language/lo/suppliers_lang.php b/app/Language/lo/Suppliers.php similarity index 100% rename from app/Language/lo/suppliers_lang.php rename to app/Language/lo/Suppliers.php diff --git a/app/Language/lo/taxes_lang.php b/app/Language/lo/Taxes.php similarity index 100% rename from app/Language/lo/taxes_lang.php rename to app/Language/lo/Taxes.php diff --git a/app/Language/ml/attributes_lang.php b/app/Language/ml/Attributes.php similarity index 100% rename from app/Language/ml/attributes_lang.php rename to app/Language/ml/Attributes.php diff --git a/app/Language/ml/bootstrap_tables_lang.php b/app/Language/ml/Bootstrap_tables.php similarity index 100% rename from app/Language/ml/bootstrap_tables_lang.php rename to app/Language/ml/Bootstrap_tables.php diff --git a/app/Language/ml/cashups_lang.php b/app/Language/ml/Cashups.php similarity index 100% rename from app/Language/ml/cashups_lang.php rename to app/Language/ml/Cashups.php diff --git a/app/Language/ml/common_lang.php b/app/Language/ml/Common.php similarity index 100% rename from app/Language/ml/common_lang.php rename to app/Language/ml/Common.php diff --git a/app/Language/ml/config_lang.php b/app/Language/ml/Config.php similarity index 100% rename from app/Language/ml/config_lang.php rename to app/Language/ml/Config.php diff --git a/app/Language/ml/customers_lang.php b/app/Language/ml/Customers.php similarity index 100% rename from app/Language/ml/customers_lang.php rename to app/Language/ml/Customers.php diff --git a/app/Language/ml/datepicker_lang.php b/app/Language/ml/Datepicker.php similarity index 100% rename from app/Language/ml/datepicker_lang.php rename to app/Language/ml/Datepicker.php diff --git a/app/Language/ml/employees_lang.php b/app/Language/ml/Employees.php similarity index 100% rename from app/Language/ml/employees_lang.php rename to app/Language/ml/Employees.php diff --git a/app/Language/ml/enum_lang.php b/app/Language/ml/Enum.php similarity index 100% rename from app/Language/ml/enum_lang.php rename to app/Language/ml/Enum.php diff --git a/app/Language/ml/error_lang.php b/app/Language/ml/Error.php similarity index 100% rename from app/Language/ml/error_lang.php rename to app/Language/ml/Error.php diff --git a/app/Language/ml/expenses_lang.php b/app/Language/ml/Expenses.php similarity index 100% rename from app/Language/ml/expenses_lang.php rename to app/Language/ml/Expenses.php diff --git a/app/Language/ml/expenses_categories_lang.php b/app/Language/ml/Expenses_categories.php similarity index 100% rename from app/Language/ml/expenses_categories_lang.php rename to app/Language/ml/Expenses_categories.php diff --git a/app/Language/ml/giftcards_lang.php b/app/Language/ml/Giftcards.php similarity index 100% rename from app/Language/ml/giftcards_lang.php rename to app/Language/ml/Giftcards.php diff --git a/app/Language/ml/item_kits_lang.php b/app/Language/ml/Item_kits.php similarity index 100% rename from app/Language/ml/item_kits_lang.php rename to app/Language/ml/Item_kits.php diff --git a/app/Language/ml/items_lang.php b/app/Language/ml/Items.php similarity index 100% rename from app/Language/ml/items_lang.php rename to app/Language/ml/Items.php diff --git a/app/Language/ml/login_lang.php b/app/Language/ml/Login.php similarity index 100% rename from app/Language/ml/login_lang.php rename to app/Language/ml/Login.php diff --git a/app/Language/ml/messages_lang.php b/app/Language/ml/Messages.php similarity index 100% rename from app/Language/ml/messages_lang.php rename to app/Language/ml/Messages.php diff --git a/app/Language/ml/module_lang.php b/app/Language/ml/Module.php similarity index 100% rename from app/Language/ml/module_lang.php rename to app/Language/ml/Module.php diff --git a/app/Language/ml/receivings_lang.php b/app/Language/ml/Receivings.php similarity index 100% rename from app/Language/ml/receivings_lang.php rename to app/Language/ml/Receivings.php diff --git a/app/Language/ml/reports_lang.php b/app/Language/ml/Reports.php similarity index 100% rename from app/Language/ml/reports_lang.php rename to app/Language/ml/Reports.php diff --git a/app/Language/ml/sales_lang.php b/app/Language/ml/Sales.php similarity index 100% rename from app/Language/ml/sales_lang.php rename to app/Language/ml/Sales.php diff --git a/app/Language/ml/suppliers_lang.php b/app/Language/ml/Suppliers.php similarity index 100% rename from app/Language/ml/suppliers_lang.php rename to app/Language/ml/Suppliers.php diff --git a/app/Language/ml/taxes_lang.php b/app/Language/ml/Taxes.php similarity index 100% rename from app/Language/ml/taxes_lang.php rename to app/Language/ml/Taxes.php diff --git a/app/Language/nb_NO/attributes_lang.php b/app/Language/nb_NO/Attributes.php similarity index 100% rename from app/Language/nb_NO/attributes_lang.php rename to app/Language/nb_NO/Attributes.php diff --git a/app/Language/nb_NO/bootstrap_tables_lang.php b/app/Language/nb_NO/Bootstrap_tables.php similarity index 100% rename from app/Language/nb_NO/bootstrap_tables_lang.php rename to app/Language/nb_NO/Bootstrap_tables.php diff --git a/app/Language/nb_NO/cashups_lang.php b/app/Language/nb_NO/Cashups.php similarity index 100% rename from app/Language/nb_NO/cashups_lang.php rename to app/Language/nb_NO/Cashups.php diff --git a/app/Language/nb_NO/common_lang.php b/app/Language/nb_NO/Common.php similarity index 100% rename from app/Language/nb_NO/common_lang.php rename to app/Language/nb_NO/Common.php diff --git a/app/Language/nb_NO/config_lang.php b/app/Language/nb_NO/Config.php similarity index 100% rename from app/Language/nb_NO/config_lang.php rename to app/Language/nb_NO/Config.php diff --git a/app/Language/nb_NO/customers_lang.php b/app/Language/nb_NO/Customers.php similarity index 100% rename from app/Language/nb_NO/customers_lang.php rename to app/Language/nb_NO/Customers.php diff --git a/app/Language/nb_NO/datepicker_lang.php b/app/Language/nb_NO/Datepicker.php similarity index 100% rename from app/Language/nb_NO/datepicker_lang.php rename to app/Language/nb_NO/Datepicker.php diff --git a/app/Language/nb_NO/employees_lang.php b/app/Language/nb_NO/Employees.php similarity index 100% rename from app/Language/nb_NO/employees_lang.php rename to app/Language/nb_NO/Employees.php diff --git a/app/Language/nb_NO/enum_lang.php b/app/Language/nb_NO/Enum.php similarity index 100% rename from app/Language/nb_NO/enum_lang.php rename to app/Language/nb_NO/Enum.php diff --git a/app/Language/nb_NO/error_lang.php b/app/Language/nb_NO/Error.php similarity index 100% rename from app/Language/nb_NO/error_lang.php rename to app/Language/nb_NO/Error.php diff --git a/app/Language/nb_NO/expenses_lang.php b/app/Language/nb_NO/Expenses.php similarity index 100% rename from app/Language/nb_NO/expenses_lang.php rename to app/Language/nb_NO/Expenses.php diff --git a/app/Language/nb_NO/expenses_categories_lang.php b/app/Language/nb_NO/Expenses_categories.php similarity index 100% rename from app/Language/nb_NO/expenses_categories_lang.php rename to app/Language/nb_NO/Expenses_categories.php diff --git a/app/Language/nb_NO/giftcards_lang.php b/app/Language/nb_NO/Giftcards.php similarity index 100% rename from app/Language/nb_NO/giftcards_lang.php rename to app/Language/nb_NO/Giftcards.php diff --git a/app/Language/nb_NO/item_kits_lang.php b/app/Language/nb_NO/Item_kits.php similarity index 100% rename from app/Language/nb_NO/item_kits_lang.php rename to app/Language/nb_NO/Item_kits.php diff --git a/app/Language/nb_NO/items_lang.php b/app/Language/nb_NO/Items.php similarity index 100% rename from app/Language/nb_NO/items_lang.php rename to app/Language/nb_NO/Items.php diff --git a/app/Language/nb_NO/login_lang.php b/app/Language/nb_NO/Login.php similarity index 100% rename from app/Language/nb_NO/login_lang.php rename to app/Language/nb_NO/Login.php diff --git a/app/Language/nb_NO/messages_lang.php b/app/Language/nb_NO/Messages.php similarity index 100% rename from app/Language/nb_NO/messages_lang.php rename to app/Language/nb_NO/Messages.php diff --git a/app/Language/nb_NO/module_lang.php b/app/Language/nb_NO/Module.php similarity index 100% rename from app/Language/nb_NO/module_lang.php rename to app/Language/nb_NO/Module.php diff --git a/app/Language/nb_NO/receivings_lang.php b/app/Language/nb_NO/Receivings.php similarity index 100% rename from app/Language/nb_NO/receivings_lang.php rename to app/Language/nb_NO/Receivings.php diff --git a/app/Language/nb_NO/reports_lang.php b/app/Language/nb_NO/Reports.php similarity index 100% rename from app/Language/nb_NO/reports_lang.php rename to app/Language/nb_NO/Reports.php diff --git a/app/Language/nb_NO/sales_lang.php b/app/Language/nb_NO/Sales.php similarity index 100% rename from app/Language/nb_NO/sales_lang.php rename to app/Language/nb_NO/Sales.php diff --git a/app/Language/nb_NO/suppliers_lang.php b/app/Language/nb_NO/Suppliers.php similarity index 100% rename from app/Language/nb_NO/suppliers_lang.php rename to app/Language/nb_NO/Suppliers.php diff --git a/app/Language/nb_NO/taxes_lang.php b/app/Language/nb_NO/Taxes.php similarity index 100% rename from app/Language/nb_NO/taxes_lang.php rename to app/Language/nb_NO/Taxes.php diff --git a/app/Language/nl-BE/attributes_lang.php b/app/Language/nl-BE/Attributes.php similarity index 100% rename from app/Language/nl-BE/attributes_lang.php rename to app/Language/nl-BE/Attributes.php diff --git a/app/Language/nl-BE/bootstrap_tables_lang.php b/app/Language/nl-BE/Bootstrap_tables.php similarity index 100% rename from app/Language/nl-BE/bootstrap_tables_lang.php rename to app/Language/nl-BE/Bootstrap_tables.php diff --git a/app/Language/nl-BE/cashups_lang.php b/app/Language/nl-BE/Cashups.php similarity index 100% rename from app/Language/nl-BE/cashups_lang.php rename to app/Language/nl-BE/Cashups.php diff --git a/app/Language/nl-BE/common_lang.php b/app/Language/nl-BE/Common.php similarity index 100% rename from app/Language/nl-BE/common_lang.php rename to app/Language/nl-BE/Common.php diff --git a/app/Language/nl-BE/config_lang.php b/app/Language/nl-BE/Config.php similarity index 100% rename from app/Language/nl-BE/config_lang.php rename to app/Language/nl-BE/Config.php diff --git a/app/Language/nl-BE/customers_lang.php b/app/Language/nl-BE/Customers.php similarity index 100% rename from app/Language/nl-BE/customers_lang.php rename to app/Language/nl-BE/Customers.php diff --git a/app/Language/nl-BE/datepicker_lang.php b/app/Language/nl-BE/Datepicker.php similarity index 100% rename from app/Language/nl-BE/datepicker_lang.php rename to app/Language/nl-BE/Datepicker.php diff --git a/app/Language/nl-BE/employees_lang.php b/app/Language/nl-BE/Employees.php similarity index 100% rename from app/Language/nl-BE/employees_lang.php rename to app/Language/nl-BE/Employees.php diff --git a/app/Language/nl-BE/enum_lang.php b/app/Language/nl-BE/Enum.php similarity index 100% rename from app/Language/nl-BE/enum_lang.php rename to app/Language/nl-BE/Enum.php diff --git a/app/Language/nl-BE/error_lang.php b/app/Language/nl-BE/Error.php similarity index 100% rename from app/Language/nl-BE/error_lang.php rename to app/Language/nl-BE/Error.php diff --git a/app/Language/nl-BE/expenses_lang.php b/app/Language/nl-BE/Expenses.php similarity index 100% rename from app/Language/nl-BE/expenses_lang.php rename to app/Language/nl-BE/Expenses.php diff --git a/app/Language/nl-BE/expenses_categories_lang.php b/app/Language/nl-BE/Expenses_categories.php similarity index 100% rename from app/Language/nl-BE/expenses_categories_lang.php rename to app/Language/nl-BE/Expenses_categories.php diff --git a/app/Language/nl-BE/giftcards_lang.php b/app/Language/nl-BE/Giftcards.php similarity index 100% rename from app/Language/nl-BE/giftcards_lang.php rename to app/Language/nl-BE/Giftcards.php diff --git a/app/Language/nl-BE/item_kits_lang.php b/app/Language/nl-BE/Item_kits.php similarity index 100% rename from app/Language/nl-BE/item_kits_lang.php rename to app/Language/nl-BE/Item_kits.php diff --git a/app/Language/nl-BE/items_lang.php b/app/Language/nl-BE/Items.php similarity index 100% rename from app/Language/nl-BE/items_lang.php rename to app/Language/nl-BE/Items.php diff --git a/app/Language/nl-BE/login_lang.php b/app/Language/nl-BE/Login.php similarity index 100% rename from app/Language/nl-BE/login_lang.php rename to app/Language/nl-BE/Login.php diff --git a/app/Language/nl-BE/messages_lang.php b/app/Language/nl-BE/Messages.php similarity index 100% rename from app/Language/nl-BE/messages_lang.php rename to app/Language/nl-BE/Messages.php diff --git a/app/Language/nl-BE/module_lang.php b/app/Language/nl-BE/Module.php similarity index 100% rename from app/Language/nl-BE/module_lang.php rename to app/Language/nl-BE/Module.php diff --git a/app/Language/nl-BE/receivings_lang.php b/app/Language/nl-BE/Receivings.php similarity index 100% rename from app/Language/nl-BE/receivings_lang.php rename to app/Language/nl-BE/Receivings.php diff --git a/app/Language/nl-BE/reports_lang.php b/app/Language/nl-BE/Reports.php similarity index 100% rename from app/Language/nl-BE/reports_lang.php rename to app/Language/nl-BE/Reports.php diff --git a/app/Language/nl-BE/sales_lang.php b/app/Language/nl-BE/Sales.php similarity index 100% rename from app/Language/nl-BE/sales_lang.php rename to app/Language/nl-BE/Sales.php diff --git a/app/Language/nl-BE/suppliers_lang.php b/app/Language/nl-BE/Suppliers.php similarity index 100% rename from app/Language/nl-BE/suppliers_lang.php rename to app/Language/nl-BE/Suppliers.php diff --git a/app/Language/nl-BE/taxes_lang.php b/app/Language/nl-BE/Taxes.php similarity index 100% rename from app/Language/nl-BE/taxes_lang.php rename to app/Language/nl-BE/Taxes.php diff --git a/app/Language/nl/attributes_lang.php b/app/Language/nl/Attributes.php similarity index 100% rename from app/Language/nl/attributes_lang.php rename to app/Language/nl/Attributes.php diff --git a/app/Language/nl/bootstrap_tables_lang.php b/app/Language/nl/Bootstrap_tables.php similarity index 100% rename from app/Language/nl/bootstrap_tables_lang.php rename to app/Language/nl/Bootstrap_tables.php diff --git a/app/Language/nl/cashups_lang.php b/app/Language/nl/Cashups.php similarity index 100% rename from app/Language/nl/cashups_lang.php rename to app/Language/nl/Cashups.php diff --git a/app/Language/nl/common_lang.php b/app/Language/nl/Common.php similarity index 100% rename from app/Language/nl/common_lang.php rename to app/Language/nl/Common.php diff --git a/app/Language/nl/config_lang.php b/app/Language/nl/Config.php similarity index 100% rename from app/Language/nl/config_lang.php rename to app/Language/nl/Config.php diff --git a/app/Language/nl/customers_lang.php b/app/Language/nl/Customers.php similarity index 100% rename from app/Language/nl/customers_lang.php rename to app/Language/nl/Customers.php diff --git a/app/Language/nl/datepicker_lang.php b/app/Language/nl/Datepicker.php similarity index 100% rename from app/Language/nl/datepicker_lang.php rename to app/Language/nl/Datepicker.php diff --git a/app/Language/nl/employees_lang.php b/app/Language/nl/Employees.php similarity index 100% rename from app/Language/nl/employees_lang.php rename to app/Language/nl/Employees.php diff --git a/app/Language/nl/enum_lang.php b/app/Language/nl/Enum.php similarity index 100% rename from app/Language/nl/enum_lang.php rename to app/Language/nl/Enum.php diff --git a/app/Language/nl/error_lang.php b/app/Language/nl/Error.php similarity index 100% rename from app/Language/nl/error_lang.php rename to app/Language/nl/Error.php diff --git a/app/Language/nl/expenses_lang.php b/app/Language/nl/Expenses.php similarity index 100% rename from app/Language/nl/expenses_lang.php rename to app/Language/nl/Expenses.php diff --git a/app/Language/nl/expenses_categories_lang.php b/app/Language/nl/Expenses_categories.php similarity index 100% rename from app/Language/nl/expenses_categories_lang.php rename to app/Language/nl/Expenses_categories.php diff --git a/app/Language/nl/giftcards_lang.php b/app/Language/nl/Giftcards.php similarity index 100% rename from app/Language/nl/giftcards_lang.php rename to app/Language/nl/Giftcards.php diff --git a/app/Language/nl/item_kits_lang.php b/app/Language/nl/Item_kits.php similarity index 100% rename from app/Language/nl/item_kits_lang.php rename to app/Language/nl/Item_kits.php diff --git a/app/Language/nl/items_lang.php b/app/Language/nl/Items.php similarity index 100% rename from app/Language/nl/items_lang.php rename to app/Language/nl/Items.php diff --git a/app/Language/nl/login_lang.php b/app/Language/nl/Login.php similarity index 100% rename from app/Language/nl/login_lang.php rename to app/Language/nl/Login.php diff --git a/app/Language/nl/messages_lang.php b/app/Language/nl/Messages.php similarity index 100% rename from app/Language/nl/messages_lang.php rename to app/Language/nl/Messages.php diff --git a/app/Language/nl/module_lang.php b/app/Language/nl/Module.php similarity index 100% rename from app/Language/nl/module_lang.php rename to app/Language/nl/Module.php diff --git a/app/Language/nl/receivings_lang.php b/app/Language/nl/Receivings.php similarity index 100% rename from app/Language/nl/receivings_lang.php rename to app/Language/nl/Receivings.php diff --git a/app/Language/nl/reports_lang.php b/app/Language/nl/Reports.php similarity index 100% rename from app/Language/nl/reports_lang.php rename to app/Language/nl/Reports.php diff --git a/app/Language/nl/sales_lang.php b/app/Language/nl/Sales.php similarity index 100% rename from app/Language/nl/sales_lang.php rename to app/Language/nl/Sales.php diff --git a/app/Language/nl/suppliers_lang.php b/app/Language/nl/Suppliers.php similarity index 100% rename from app/Language/nl/suppliers_lang.php rename to app/Language/nl/Suppliers.php diff --git a/app/Language/nl/taxes_lang.php b/app/Language/nl/Taxes.php similarity index 100% rename from app/Language/nl/taxes_lang.php rename to app/Language/nl/Taxes.php diff --git a/app/Language/pl/attributes_lang.php b/app/Language/pl/Attributes.php similarity index 100% rename from app/Language/pl/attributes_lang.php rename to app/Language/pl/Attributes.php diff --git a/app/Language/pl/bootstrap_tables_lang.php b/app/Language/pl/Bootstrap_tables.php similarity index 100% rename from app/Language/pl/bootstrap_tables_lang.php rename to app/Language/pl/Bootstrap_tables.php diff --git a/app/Language/pl/cashups_lang.php b/app/Language/pl/Cashups.php similarity index 100% rename from app/Language/pl/cashups_lang.php rename to app/Language/pl/Cashups.php diff --git a/app/Language/pl/common_lang.php b/app/Language/pl/Common.php similarity index 100% rename from app/Language/pl/common_lang.php rename to app/Language/pl/Common.php diff --git a/app/Language/pl/config_lang.php b/app/Language/pl/Config.php similarity index 100% rename from app/Language/pl/config_lang.php rename to app/Language/pl/Config.php diff --git a/app/Language/pl/customers_lang.php b/app/Language/pl/Customers.php similarity index 100% rename from app/Language/pl/customers_lang.php rename to app/Language/pl/Customers.php diff --git a/app/Language/pl/datepicker_lang.php b/app/Language/pl/Datepicker.php similarity index 100% rename from app/Language/pl/datepicker_lang.php rename to app/Language/pl/Datepicker.php diff --git a/app/Language/pl/employees_lang.php b/app/Language/pl/Employees.php similarity index 100% rename from app/Language/pl/employees_lang.php rename to app/Language/pl/Employees.php diff --git a/app/Language/pl/enum_lang.php b/app/Language/pl/Enum.php similarity index 100% rename from app/Language/pl/enum_lang.php rename to app/Language/pl/Enum.php diff --git a/app/Language/pl/error_lang.php b/app/Language/pl/Error.php similarity index 100% rename from app/Language/pl/error_lang.php rename to app/Language/pl/Error.php diff --git a/app/Language/pl/expenses_lang.php b/app/Language/pl/Expenses.php similarity index 100% rename from app/Language/pl/expenses_lang.php rename to app/Language/pl/Expenses.php diff --git a/app/Language/pl/expenses_categories_lang.php b/app/Language/pl/Expenses_categories.php similarity index 100% rename from app/Language/pl/expenses_categories_lang.php rename to app/Language/pl/Expenses_categories.php diff --git a/app/Language/pl/giftcards_lang.php b/app/Language/pl/Giftcards.php similarity index 100% rename from app/Language/pl/giftcards_lang.php rename to app/Language/pl/Giftcards.php diff --git a/app/Language/pl/item_kits_lang.php b/app/Language/pl/Item_kits.php similarity index 100% rename from app/Language/pl/item_kits_lang.php rename to app/Language/pl/Item_kits.php diff --git a/app/Language/pl/items_lang.php b/app/Language/pl/Items.php similarity index 100% rename from app/Language/pl/items_lang.php rename to app/Language/pl/Items.php diff --git a/app/Language/pl/login_lang.php b/app/Language/pl/Login.php similarity index 100% rename from app/Language/pl/login_lang.php rename to app/Language/pl/Login.php diff --git a/app/Language/pl/messages_lang.php b/app/Language/pl/Messages.php similarity index 100% rename from app/Language/pl/messages_lang.php rename to app/Language/pl/Messages.php diff --git a/app/Language/pl/module_lang.php b/app/Language/pl/Module.php similarity index 100% rename from app/Language/pl/module_lang.php rename to app/Language/pl/Module.php diff --git a/app/Language/pl/receivings_lang.php b/app/Language/pl/Receivings.php similarity index 100% rename from app/Language/pl/receivings_lang.php rename to app/Language/pl/Receivings.php diff --git a/app/Language/pl/reports_lang.php b/app/Language/pl/Reports.php similarity index 100% rename from app/Language/pl/reports_lang.php rename to app/Language/pl/Reports.php diff --git a/app/Language/pl/sales_lang.php b/app/Language/pl/Sales.php similarity index 100% rename from app/Language/pl/sales_lang.php rename to app/Language/pl/Sales.php diff --git a/app/Language/pl/suppliers_lang.php b/app/Language/pl/Suppliers.php similarity index 100% rename from app/Language/pl/suppliers_lang.php rename to app/Language/pl/Suppliers.php diff --git a/app/Language/pl/taxes_lang.php b/app/Language/pl/Taxes.php similarity index 100% rename from app/Language/pl/taxes_lang.php rename to app/Language/pl/Taxes.php diff --git a/app/Language/pt-BR/attributes_lang.php b/app/Language/pt-BR/Attributes.php similarity index 100% rename from app/Language/pt-BR/attributes_lang.php rename to app/Language/pt-BR/Attributes.php diff --git a/app/Language/pt-BR/bootstrap_tables_lang.php b/app/Language/pt-BR/Bootstrap_tables.php similarity index 100% rename from app/Language/pt-BR/bootstrap_tables_lang.php rename to app/Language/pt-BR/Bootstrap_tables.php diff --git a/app/Language/pt-BR/cashups_lang.php b/app/Language/pt-BR/Cashups.php similarity index 100% rename from app/Language/pt-BR/cashups_lang.php rename to app/Language/pt-BR/Cashups.php diff --git a/app/Language/pt-BR/common_lang.php b/app/Language/pt-BR/Common.php similarity index 100% rename from app/Language/pt-BR/common_lang.php rename to app/Language/pt-BR/Common.php diff --git a/app/Language/pt-BR/config_lang.php b/app/Language/pt-BR/Config.php similarity index 100% rename from app/Language/pt-BR/config_lang.php rename to app/Language/pt-BR/Config.php diff --git a/app/Language/pt-BR/customers_lang.php b/app/Language/pt-BR/Customers.php similarity index 100% rename from app/Language/pt-BR/customers_lang.php rename to app/Language/pt-BR/Customers.php diff --git a/app/Language/pt-BR/datepicker_lang.php b/app/Language/pt-BR/Datepicker.php similarity index 100% rename from app/Language/pt-BR/datepicker_lang.php rename to app/Language/pt-BR/Datepicker.php diff --git a/app/Language/pt-BR/employees_lang.php b/app/Language/pt-BR/Employees.php similarity index 100% rename from app/Language/pt-BR/employees_lang.php rename to app/Language/pt-BR/Employees.php diff --git a/app/Language/pt-BR/enum_lang.php b/app/Language/pt-BR/Enum.php similarity index 100% rename from app/Language/pt-BR/enum_lang.php rename to app/Language/pt-BR/Enum.php diff --git a/app/Language/pt-BR/error_lang.php b/app/Language/pt-BR/Error.php similarity index 100% rename from app/Language/pt-BR/error_lang.php rename to app/Language/pt-BR/Error.php diff --git a/app/Language/pt-BR/expenses_lang.php b/app/Language/pt-BR/Expenses.php similarity index 100% rename from app/Language/pt-BR/expenses_lang.php rename to app/Language/pt-BR/Expenses.php diff --git a/app/Language/pt-BR/expenses_categories_lang.php b/app/Language/pt-BR/Expenses_categories.php similarity index 100% rename from app/Language/pt-BR/expenses_categories_lang.php rename to app/Language/pt-BR/Expenses_categories.php diff --git a/app/Language/pt-BR/giftcards_lang.php b/app/Language/pt-BR/Giftcards.php similarity index 100% rename from app/Language/pt-BR/giftcards_lang.php rename to app/Language/pt-BR/Giftcards.php diff --git a/app/Language/pt-BR/item_kits_lang.php b/app/Language/pt-BR/Item_kits.php similarity index 100% rename from app/Language/pt-BR/item_kits_lang.php rename to app/Language/pt-BR/Item_kits.php diff --git a/app/Language/pt-BR/items_lang.php b/app/Language/pt-BR/Items.php similarity index 100% rename from app/Language/pt-BR/items_lang.php rename to app/Language/pt-BR/Items.php diff --git a/app/Language/pt-BR/login_lang.php b/app/Language/pt-BR/Login.php similarity index 100% rename from app/Language/pt-BR/login_lang.php rename to app/Language/pt-BR/Login.php diff --git a/app/Language/pt-BR/messages_lang.php b/app/Language/pt-BR/Messages.php similarity index 100% rename from app/Language/pt-BR/messages_lang.php rename to app/Language/pt-BR/Messages.php diff --git a/app/Language/pt-BR/module_lang.php b/app/Language/pt-BR/Module.php similarity index 100% rename from app/Language/pt-BR/module_lang.php rename to app/Language/pt-BR/Module.php diff --git a/app/Language/pt-BR/receivings_lang.php b/app/Language/pt-BR/Receivings.php similarity index 100% rename from app/Language/pt-BR/receivings_lang.php rename to app/Language/pt-BR/Receivings.php diff --git a/app/Language/pt-BR/reports_lang.php b/app/Language/pt-BR/Reports.php similarity index 100% rename from app/Language/pt-BR/reports_lang.php rename to app/Language/pt-BR/Reports.php diff --git a/app/Language/pt-BR/sales_lang.php b/app/Language/pt-BR/Sales.php similarity index 100% rename from app/Language/pt-BR/sales_lang.php rename to app/Language/pt-BR/Sales.php diff --git a/app/Language/pt-BR/suppliers_lang.php b/app/Language/pt-BR/Suppliers.php similarity index 100% rename from app/Language/pt-BR/suppliers_lang.php rename to app/Language/pt-BR/Suppliers.php diff --git a/app/Language/pt-BR/taxes_lang.php b/app/Language/pt-BR/Taxes.php similarity index 100% rename from app/Language/pt-BR/taxes_lang.php rename to app/Language/pt-BR/Taxes.php diff --git a/app/Language/ro/attributes_lang.php b/app/Language/ro/Attributes.php similarity index 100% rename from app/Language/ro/attributes_lang.php rename to app/Language/ro/Attributes.php diff --git a/app/Language/ro/bootstrap_tables_lang.php b/app/Language/ro/Bootstrap_tables.php similarity index 100% rename from app/Language/ro/bootstrap_tables_lang.php rename to app/Language/ro/Bootstrap_tables.php diff --git a/app/Language/ro/cashups_lang.php b/app/Language/ro/Cashups.php similarity index 100% rename from app/Language/ro/cashups_lang.php rename to app/Language/ro/Cashups.php diff --git a/app/Language/ro/common_lang.php b/app/Language/ro/Common.php similarity index 100% rename from app/Language/ro/common_lang.php rename to app/Language/ro/Common.php diff --git a/app/Language/ro/config_lang.php b/app/Language/ro/Config.php similarity index 100% rename from app/Language/ro/config_lang.php rename to app/Language/ro/Config.php diff --git a/app/Language/ro/customers_lang.php b/app/Language/ro/Customers.php similarity index 100% rename from app/Language/ro/customers_lang.php rename to app/Language/ro/Customers.php diff --git a/app/Language/ro/datepicker_lang.php b/app/Language/ro/Datepicker.php similarity index 100% rename from app/Language/ro/datepicker_lang.php rename to app/Language/ro/Datepicker.php diff --git a/app/Language/ro/employees_lang.php b/app/Language/ro/Employees.php similarity index 100% rename from app/Language/ro/employees_lang.php rename to app/Language/ro/Employees.php diff --git a/app/Language/ro/enum_lang.php b/app/Language/ro/Enum.php similarity index 100% rename from app/Language/ro/enum_lang.php rename to app/Language/ro/Enum.php diff --git a/app/Language/ro/error_lang.php b/app/Language/ro/Error.php similarity index 100% rename from app/Language/ro/error_lang.php rename to app/Language/ro/Error.php diff --git a/app/Language/ro/expenses_lang.php b/app/Language/ro/Expenses.php similarity index 100% rename from app/Language/ro/expenses_lang.php rename to app/Language/ro/Expenses.php diff --git a/app/Language/ro/expenses_categories_lang.php b/app/Language/ro/Expenses_categories.php similarity index 100% rename from app/Language/ro/expenses_categories_lang.php rename to app/Language/ro/Expenses_categories.php diff --git a/app/Language/ro/giftcards_lang.php b/app/Language/ro/Giftcards.php similarity index 100% rename from app/Language/ro/giftcards_lang.php rename to app/Language/ro/Giftcards.php diff --git a/app/Language/ro/item_kits_lang.php b/app/Language/ro/Item_kits.php similarity index 100% rename from app/Language/ro/item_kits_lang.php rename to app/Language/ro/Item_kits.php diff --git a/app/Language/ro/items_lang.php b/app/Language/ro/Items.php similarity index 100% rename from app/Language/ro/items_lang.php rename to app/Language/ro/Items.php diff --git a/app/Language/ro/login_lang.php b/app/Language/ro/Login.php similarity index 100% rename from app/Language/ro/login_lang.php rename to app/Language/ro/Login.php diff --git a/app/Language/ro/messages_lang.php b/app/Language/ro/Messages.php similarity index 100% rename from app/Language/ro/messages_lang.php rename to app/Language/ro/Messages.php diff --git a/app/Language/ro/module_lang.php b/app/Language/ro/Module.php similarity index 100% rename from app/Language/ro/module_lang.php rename to app/Language/ro/Module.php diff --git a/app/Language/ro/receivings_lang.php b/app/Language/ro/Receivings.php similarity index 100% rename from app/Language/ro/receivings_lang.php rename to app/Language/ro/Receivings.php diff --git a/app/Language/ro/reports_lang.php b/app/Language/ro/Reports.php similarity index 100% rename from app/Language/ro/reports_lang.php rename to app/Language/ro/Reports.php diff --git a/app/Language/ro/sales_lang.php b/app/Language/ro/Sales.php similarity index 100% rename from app/Language/ro/sales_lang.php rename to app/Language/ro/Sales.php diff --git a/app/Language/ro/suppliers_lang.php b/app/Language/ro/Suppliers.php similarity index 100% rename from app/Language/ro/suppliers_lang.php rename to app/Language/ro/Suppliers.php diff --git a/app/Language/ro/taxes_lang.php b/app/Language/ro/Taxes.php similarity index 100% rename from app/Language/ro/taxes_lang.php rename to app/Language/ro/Taxes.php diff --git a/app/Language/ru/attributes_lang.php b/app/Language/ru/Attributes.php similarity index 100% rename from app/Language/ru/attributes_lang.php rename to app/Language/ru/Attributes.php diff --git a/app/Language/ru/bootstrap_tables_lang.php b/app/Language/ru/Bootstrap_tables.php similarity index 100% rename from app/Language/ru/bootstrap_tables_lang.php rename to app/Language/ru/Bootstrap_tables.php diff --git a/app/Language/ru/cashups_lang.php b/app/Language/ru/Cashups.php similarity index 100% rename from app/Language/ru/cashups_lang.php rename to app/Language/ru/Cashups.php diff --git a/app/Language/ru/common_lang.php b/app/Language/ru/Common.php similarity index 100% rename from app/Language/ru/common_lang.php rename to app/Language/ru/Common.php diff --git a/app/Language/ru/config_lang.php b/app/Language/ru/Config.php similarity index 100% rename from app/Language/ru/config_lang.php rename to app/Language/ru/Config.php diff --git a/app/Language/ru/customers_lang.php b/app/Language/ru/Customers.php similarity index 100% rename from app/Language/ru/customers_lang.php rename to app/Language/ru/Customers.php diff --git a/app/Language/ru/datepicker_lang.php b/app/Language/ru/Datepicker.php similarity index 100% rename from app/Language/ru/datepicker_lang.php rename to app/Language/ru/Datepicker.php diff --git a/app/Language/ru/employees_lang.php b/app/Language/ru/Employees.php similarity index 100% rename from app/Language/ru/employees_lang.php rename to app/Language/ru/Employees.php diff --git a/app/Language/ru/enum_lang.php b/app/Language/ru/Enum.php similarity index 100% rename from app/Language/ru/enum_lang.php rename to app/Language/ru/Enum.php diff --git a/app/Language/ru/error_lang.php b/app/Language/ru/Error.php similarity index 100% rename from app/Language/ru/error_lang.php rename to app/Language/ru/Error.php diff --git a/app/Language/ru/expenses_lang.php b/app/Language/ru/Expenses.php similarity index 100% rename from app/Language/ru/expenses_lang.php rename to app/Language/ru/Expenses.php diff --git a/app/Language/ru/expenses_categories_lang.php b/app/Language/ru/Expenses_categories.php similarity index 100% rename from app/Language/ru/expenses_categories_lang.php rename to app/Language/ru/Expenses_categories.php diff --git a/app/Language/ru/giftcards_lang.php b/app/Language/ru/Giftcards.php similarity index 100% rename from app/Language/ru/giftcards_lang.php rename to app/Language/ru/Giftcards.php diff --git a/app/Language/ru/item_kits_lang.php b/app/Language/ru/Item_kits.php similarity index 100% rename from app/Language/ru/item_kits_lang.php rename to app/Language/ru/Item_kits.php diff --git a/app/Language/ru/items_lang.php b/app/Language/ru/Items.php similarity index 100% rename from app/Language/ru/items_lang.php rename to app/Language/ru/Items.php diff --git a/app/Language/ru/login_lang.php b/app/Language/ru/Login.php similarity index 100% rename from app/Language/ru/login_lang.php rename to app/Language/ru/Login.php diff --git a/app/Language/ru/messages_lang.php b/app/Language/ru/Messages.php similarity index 100% rename from app/Language/ru/messages_lang.php rename to app/Language/ru/Messages.php diff --git a/app/Language/ru/module_lang.php b/app/Language/ru/Module.php similarity index 100% rename from app/Language/ru/module_lang.php rename to app/Language/ru/Module.php diff --git a/app/Language/ru/receivings_lang.php b/app/Language/ru/Receivings.php similarity index 100% rename from app/Language/ru/receivings_lang.php rename to app/Language/ru/Receivings.php diff --git a/app/Language/ru/reports_lang.php b/app/Language/ru/Reports.php similarity index 100% rename from app/Language/ru/reports_lang.php rename to app/Language/ru/Reports.php diff --git a/app/Language/ru/sales_lang.php b/app/Language/ru/Sales.php similarity index 100% rename from app/Language/ru/sales_lang.php rename to app/Language/ru/Sales.php diff --git a/app/Language/ru/suppliers_lang.php b/app/Language/ru/Suppliers.php similarity index 100% rename from app/Language/ru/suppliers_lang.php rename to app/Language/ru/Suppliers.php diff --git a/app/Language/ru/taxes_lang.php b/app/Language/ru/Taxes.php similarity index 100% rename from app/Language/ru/taxes_lang.php rename to app/Language/ru/Taxes.php diff --git a/app/Language/sv/attributes_lang.php b/app/Language/sv/Attributes.php similarity index 100% rename from app/Language/sv/attributes_lang.php rename to app/Language/sv/Attributes.php diff --git a/app/Language/sv/bootstrap_tables_lang.php b/app/Language/sv/Bootstrap_tables.php similarity index 100% rename from app/Language/sv/bootstrap_tables_lang.php rename to app/Language/sv/Bootstrap_tables.php diff --git a/app/Language/sv/cashups_lang.php b/app/Language/sv/Cashups.php similarity index 100% rename from app/Language/sv/cashups_lang.php rename to app/Language/sv/Cashups.php diff --git a/app/Language/sv/common_lang.php b/app/Language/sv/Common.php similarity index 100% rename from app/Language/sv/common_lang.php rename to app/Language/sv/Common.php diff --git a/app/Language/sv/config_lang.php b/app/Language/sv/Config.php similarity index 100% rename from app/Language/sv/config_lang.php rename to app/Language/sv/Config.php diff --git a/app/Language/sv/customers_lang.php b/app/Language/sv/Customers.php similarity index 100% rename from app/Language/sv/customers_lang.php rename to app/Language/sv/Customers.php diff --git a/app/Language/sv/datepicker_lang.php b/app/Language/sv/Datepicker.php similarity index 100% rename from app/Language/sv/datepicker_lang.php rename to app/Language/sv/Datepicker.php diff --git a/app/Language/sv/employees_lang.php b/app/Language/sv/Employees.php similarity index 100% rename from app/Language/sv/employees_lang.php rename to app/Language/sv/Employees.php diff --git a/app/Language/sv/enum_lang.php b/app/Language/sv/Enum.php similarity index 100% rename from app/Language/sv/enum_lang.php rename to app/Language/sv/Enum.php diff --git a/app/Language/sv/error_lang.php b/app/Language/sv/Error.php similarity index 100% rename from app/Language/sv/error_lang.php rename to app/Language/sv/Error.php diff --git a/app/Language/sv/expenses_lang.php b/app/Language/sv/Expenses.php similarity index 100% rename from app/Language/sv/expenses_lang.php rename to app/Language/sv/Expenses.php diff --git a/app/Language/sv/expenses_categories_lang.php b/app/Language/sv/Expenses_categories.php similarity index 100% rename from app/Language/sv/expenses_categories_lang.php rename to app/Language/sv/Expenses_categories.php diff --git a/app/Language/sv/giftcards_lang.php b/app/Language/sv/Giftcards.php similarity index 100% rename from app/Language/sv/giftcards_lang.php rename to app/Language/sv/Giftcards.php diff --git a/app/Language/sv/item_kits_lang.php b/app/Language/sv/Item_kits.php similarity index 100% rename from app/Language/sv/item_kits_lang.php rename to app/Language/sv/Item_kits.php diff --git a/app/Language/sv/items_lang.php b/app/Language/sv/Items.php similarity index 100% rename from app/Language/sv/items_lang.php rename to app/Language/sv/Items.php diff --git a/app/Language/sv/login_lang.php b/app/Language/sv/Login.php similarity index 100% rename from app/Language/sv/login_lang.php rename to app/Language/sv/Login.php diff --git a/app/Language/sv/messages_lang.php b/app/Language/sv/Messages.php similarity index 100% rename from app/Language/sv/messages_lang.php rename to app/Language/sv/Messages.php diff --git a/app/Language/sv/module_lang.php b/app/Language/sv/Module.php similarity index 100% rename from app/Language/sv/module_lang.php rename to app/Language/sv/Module.php diff --git a/app/Language/sv/receivings_lang.php b/app/Language/sv/Receivings.php similarity index 100% rename from app/Language/sv/receivings_lang.php rename to app/Language/sv/Receivings.php diff --git a/app/Language/sv/reports_lang.php b/app/Language/sv/Reports.php similarity index 100% rename from app/Language/sv/reports_lang.php rename to app/Language/sv/Reports.php diff --git a/app/Language/sv/sales_lang.php b/app/Language/sv/Sales.php similarity index 100% rename from app/Language/sv/sales_lang.php rename to app/Language/sv/Sales.php diff --git a/app/Language/sv/suppliers_lang.php b/app/Language/sv/Suppliers.php similarity index 100% rename from app/Language/sv/suppliers_lang.php rename to app/Language/sv/Suppliers.php diff --git a/app/Language/sv/taxes_lang.php b/app/Language/sv/Taxes.php similarity index 100% rename from app/Language/sv/taxes_lang.php rename to app/Language/sv/Taxes.php diff --git a/app/Language/ta/attributes_lang.php b/app/Language/ta/Attributes.php similarity index 100% rename from app/Language/ta/attributes_lang.php rename to app/Language/ta/Attributes.php diff --git a/app/Language/ta/bootstrap_tables_lang.php b/app/Language/ta/Bootstrap_tables.php similarity index 100% rename from app/Language/ta/bootstrap_tables_lang.php rename to app/Language/ta/Bootstrap_tables.php diff --git a/app/Language/ta/cashups_lang.php b/app/Language/ta/Cashups.php similarity index 100% rename from app/Language/ta/cashups_lang.php rename to app/Language/ta/Cashups.php diff --git a/app/Language/ta/common_lang.php b/app/Language/ta/Common.php similarity index 100% rename from app/Language/ta/common_lang.php rename to app/Language/ta/Common.php diff --git a/app/Language/ta/config_lang.php b/app/Language/ta/Config.php similarity index 100% rename from app/Language/ta/config_lang.php rename to app/Language/ta/Config.php diff --git a/app/Language/ta/customers_lang.php b/app/Language/ta/Customers.php similarity index 100% rename from app/Language/ta/customers_lang.php rename to app/Language/ta/Customers.php diff --git a/app/Language/ta/datepicker_lang.php b/app/Language/ta/Datepicker.php similarity index 100% rename from app/Language/ta/datepicker_lang.php rename to app/Language/ta/Datepicker.php diff --git a/app/Language/ta/employees_lang.php b/app/Language/ta/Employees.php similarity index 100% rename from app/Language/ta/employees_lang.php rename to app/Language/ta/Employees.php diff --git a/app/Language/ta/enum_lang.php b/app/Language/ta/Enum.php similarity index 100% rename from app/Language/ta/enum_lang.php rename to app/Language/ta/Enum.php diff --git a/app/Language/ta/error_lang.php b/app/Language/ta/Error.php similarity index 100% rename from app/Language/ta/error_lang.php rename to app/Language/ta/Error.php diff --git a/app/Language/ta/expenses_lang.php b/app/Language/ta/Expenses.php similarity index 100% rename from app/Language/ta/expenses_lang.php rename to app/Language/ta/Expenses.php diff --git a/app/Language/ta/expenses_categories_lang.php b/app/Language/ta/Expenses_categories.php similarity index 100% rename from app/Language/ta/expenses_categories_lang.php rename to app/Language/ta/Expenses_categories.php diff --git a/app/Language/ta/giftcards_lang.php b/app/Language/ta/Giftcards.php similarity index 100% rename from app/Language/ta/giftcards_lang.php rename to app/Language/ta/Giftcards.php diff --git a/app/Language/ta/item_kits_lang.php b/app/Language/ta/Item_kits.php similarity index 100% rename from app/Language/ta/item_kits_lang.php rename to app/Language/ta/Item_kits.php diff --git a/app/Language/ta/items_lang.php b/app/Language/ta/Items.php similarity index 100% rename from app/Language/ta/items_lang.php rename to app/Language/ta/Items.php diff --git a/app/Language/ta/login_lang.php b/app/Language/ta/Login.php similarity index 100% rename from app/Language/ta/login_lang.php rename to app/Language/ta/Login.php diff --git a/app/Language/ta/messages_lang.php b/app/Language/ta/Messages.php similarity index 100% rename from app/Language/ta/messages_lang.php rename to app/Language/ta/Messages.php diff --git a/app/Language/ta/module_lang.php b/app/Language/ta/Module.php similarity index 100% rename from app/Language/ta/module_lang.php rename to app/Language/ta/Module.php diff --git a/app/Language/ta/receivings_lang.php b/app/Language/ta/Receivings.php similarity index 100% rename from app/Language/ta/receivings_lang.php rename to app/Language/ta/Receivings.php diff --git a/app/Language/ta/reports_lang.php b/app/Language/ta/Reports.php similarity index 100% rename from app/Language/ta/reports_lang.php rename to app/Language/ta/Reports.php diff --git a/app/Language/ta/sales_lang.php b/app/Language/ta/Sales.php similarity index 100% rename from app/Language/ta/sales_lang.php rename to app/Language/ta/Sales.php diff --git a/app/Language/ta/suppliers_lang.php b/app/Language/ta/Suppliers.php similarity index 100% rename from app/Language/ta/suppliers_lang.php rename to app/Language/ta/Suppliers.php diff --git a/app/Language/ta/taxes_lang.php b/app/Language/ta/Taxes.php similarity index 100% rename from app/Language/ta/taxes_lang.php rename to app/Language/ta/Taxes.php diff --git a/app/Language/th/attributes_lang.php b/app/Language/th/Attributes.php similarity index 100% rename from app/Language/th/attributes_lang.php rename to app/Language/th/Attributes.php diff --git a/app/Language/th/bootstrap_tables_lang.php b/app/Language/th/Bootstrap_tables.php similarity index 100% rename from app/Language/th/bootstrap_tables_lang.php rename to app/Language/th/Bootstrap_tables.php diff --git a/app/Language/th/cashups_lang.php b/app/Language/th/Cashups.php similarity index 100% rename from app/Language/th/cashups_lang.php rename to app/Language/th/Cashups.php diff --git a/app/Language/th/common_lang.php b/app/Language/th/Common.php similarity index 100% rename from app/Language/th/common_lang.php rename to app/Language/th/Common.php diff --git a/app/Language/th/config_lang.php b/app/Language/th/Config.php similarity index 100% rename from app/Language/th/config_lang.php rename to app/Language/th/Config.php diff --git a/app/Language/th/customers_lang.php b/app/Language/th/Customers.php similarity index 100% rename from app/Language/th/customers_lang.php rename to app/Language/th/Customers.php diff --git a/app/Language/th/datepicker_lang.php b/app/Language/th/Datepicker.php similarity index 100% rename from app/Language/th/datepicker_lang.php rename to app/Language/th/Datepicker.php diff --git a/app/Language/th/employees_lang.php b/app/Language/th/Employees.php similarity index 100% rename from app/Language/th/employees_lang.php rename to app/Language/th/Employees.php diff --git a/app/Language/th/enum_lang.php b/app/Language/th/Enum.php similarity index 100% rename from app/Language/th/enum_lang.php rename to app/Language/th/Enum.php diff --git a/app/Language/th/error_lang.php b/app/Language/th/Error.php similarity index 100% rename from app/Language/th/error_lang.php rename to app/Language/th/Error.php diff --git a/app/Language/th/expenses_lang.php b/app/Language/th/Expenses.php similarity index 100% rename from app/Language/th/expenses_lang.php rename to app/Language/th/Expenses.php diff --git a/app/Language/th/expenses_categories_lang.php b/app/Language/th/Expenses_categories.php similarity index 100% rename from app/Language/th/expenses_categories_lang.php rename to app/Language/th/Expenses_categories.php diff --git a/app/Language/th/giftcards_lang.php b/app/Language/th/Giftcards.php similarity index 100% rename from app/Language/th/giftcards_lang.php rename to app/Language/th/Giftcards.php diff --git a/app/Language/th/item_kits_lang.php b/app/Language/th/Item_kits.php similarity index 100% rename from app/Language/th/item_kits_lang.php rename to app/Language/th/Item_kits.php diff --git a/app/Language/th/items_lang.php b/app/Language/th/Items.php similarity index 100% rename from app/Language/th/items_lang.php rename to app/Language/th/Items.php diff --git a/app/Language/th/login_lang.php b/app/Language/th/Login.php similarity index 100% rename from app/Language/th/login_lang.php rename to app/Language/th/Login.php diff --git a/app/Language/th/messages_lang.php b/app/Language/th/Messages.php similarity index 100% rename from app/Language/th/messages_lang.php rename to app/Language/th/Messages.php diff --git a/app/Language/th/module_lang.php b/app/Language/th/Module.php similarity index 100% rename from app/Language/th/module_lang.php rename to app/Language/th/Module.php diff --git a/app/Language/th/receivings_lang.php b/app/Language/th/Receivings.php similarity index 100% rename from app/Language/th/receivings_lang.php rename to app/Language/th/Receivings.php diff --git a/app/Language/th/reports_lang.php b/app/Language/th/Reports.php similarity index 100% rename from app/Language/th/reports_lang.php rename to app/Language/th/Reports.php diff --git a/app/Language/th/sales_lang.php b/app/Language/th/Sales.php similarity index 100% rename from app/Language/th/sales_lang.php rename to app/Language/th/Sales.php diff --git a/app/Language/th/suppliers_lang.php b/app/Language/th/Suppliers.php similarity index 100% rename from app/Language/th/suppliers_lang.php rename to app/Language/th/Suppliers.php diff --git a/app/Language/th/taxes_lang.php b/app/Language/th/Taxes.php similarity index 100% rename from app/Language/th/taxes_lang.php rename to app/Language/th/Taxes.php diff --git a/app/Language/tl-PH/attributes_lang.php b/app/Language/tl-PH/Attributes.php similarity index 100% rename from app/Language/tl-PH/attributes_lang.php rename to app/Language/tl-PH/Attributes.php diff --git a/app/Language/tl-PH/bootstrap_tables_lang.php b/app/Language/tl-PH/Bootstrap_tables.php similarity index 100% rename from app/Language/tl-PH/bootstrap_tables_lang.php rename to app/Language/tl-PH/Bootstrap_tables.php diff --git a/app/Language/tl-PH/cashups_lang.php b/app/Language/tl-PH/Cashups.php similarity index 100% rename from app/Language/tl-PH/cashups_lang.php rename to app/Language/tl-PH/Cashups.php diff --git a/app/Language/tl-PH/common_lang.php b/app/Language/tl-PH/Common.php similarity index 100% rename from app/Language/tl-PH/common_lang.php rename to app/Language/tl-PH/Common.php diff --git a/app/Language/tl-PH/config_lang.php b/app/Language/tl-PH/Config.php similarity index 100% rename from app/Language/tl-PH/config_lang.php rename to app/Language/tl-PH/Config.php diff --git a/app/Language/tl-PH/customers_lang.php b/app/Language/tl-PH/Customers.php similarity index 100% rename from app/Language/tl-PH/customers_lang.php rename to app/Language/tl-PH/Customers.php diff --git a/app/Language/tl-PH/datepicker_lang.php b/app/Language/tl-PH/Datepicker.php similarity index 100% rename from app/Language/tl-PH/datepicker_lang.php rename to app/Language/tl-PH/Datepicker.php diff --git a/app/Language/tl-PH/employees_lang.php b/app/Language/tl-PH/Employees.php similarity index 100% rename from app/Language/tl-PH/employees_lang.php rename to app/Language/tl-PH/Employees.php diff --git a/app/Language/tl-PH/enum_lang.php b/app/Language/tl-PH/Enum.php similarity index 100% rename from app/Language/tl-PH/enum_lang.php rename to app/Language/tl-PH/Enum.php diff --git a/app/Language/tl-PH/error_lang.php b/app/Language/tl-PH/Error.php similarity index 100% rename from app/Language/tl-PH/error_lang.php rename to app/Language/tl-PH/Error.php diff --git a/app/Language/tl-PH/expenses_lang.php b/app/Language/tl-PH/Expenses.php similarity index 100% rename from app/Language/tl-PH/expenses_lang.php rename to app/Language/tl-PH/Expenses.php diff --git a/app/Language/tl-PH/expenses_categories_lang.php b/app/Language/tl-PH/Expenses_categories.php similarity index 100% rename from app/Language/tl-PH/expenses_categories_lang.php rename to app/Language/tl-PH/Expenses_categories.php diff --git a/app/Language/tl-PH/giftcards_lang.php b/app/Language/tl-PH/Giftcards.php similarity index 100% rename from app/Language/tl-PH/giftcards_lang.php rename to app/Language/tl-PH/Giftcards.php diff --git a/app/Language/tl-PH/item_kits_lang.php b/app/Language/tl-PH/Item_kits.php similarity index 100% rename from app/Language/tl-PH/item_kits_lang.php rename to app/Language/tl-PH/Item_kits.php diff --git a/app/Language/tl-PH/items_lang.php b/app/Language/tl-PH/Items.php similarity index 100% rename from app/Language/tl-PH/items_lang.php rename to app/Language/tl-PH/Items.php diff --git a/app/Language/tl-PH/login_lang.php b/app/Language/tl-PH/Login.php similarity index 100% rename from app/Language/tl-PH/login_lang.php rename to app/Language/tl-PH/Login.php diff --git a/app/Language/tl-PH/messages_lang.php b/app/Language/tl-PH/Messages.php similarity index 100% rename from app/Language/tl-PH/messages_lang.php rename to app/Language/tl-PH/Messages.php diff --git a/app/Language/tl-PH/module_lang.php b/app/Language/tl-PH/Module.php similarity index 100% rename from app/Language/tl-PH/module_lang.php rename to app/Language/tl-PH/Module.php diff --git a/app/Language/tl-PH/receivings_lang.php b/app/Language/tl-PH/Receivings.php similarity index 100% rename from app/Language/tl-PH/receivings_lang.php rename to app/Language/tl-PH/Receivings.php diff --git a/app/Language/tl-PH/reports_lang.php b/app/Language/tl-PH/Reports.php similarity index 100% rename from app/Language/tl-PH/reports_lang.php rename to app/Language/tl-PH/Reports.php diff --git a/app/Language/tl-PH/sales_lang.php b/app/Language/tl-PH/Sales.php similarity index 100% rename from app/Language/tl-PH/sales_lang.php rename to app/Language/tl-PH/Sales.php diff --git a/app/Language/tl-PH/suppliers_lang.php b/app/Language/tl-PH/Suppliers.php similarity index 100% rename from app/Language/tl-PH/suppliers_lang.php rename to app/Language/tl-PH/Suppliers.php diff --git a/app/Language/tl-PH/taxes_lang.php b/app/Language/tl-PH/Taxes.php similarity index 100% rename from app/Language/tl-PH/taxes_lang.php rename to app/Language/tl-PH/Taxes.php diff --git a/app/Language/tr/attributes_lang.php b/app/Language/tr/Attributes.php similarity index 100% rename from app/Language/tr/attributes_lang.php rename to app/Language/tr/Attributes.php diff --git a/app/Language/tr/bootstrap_tables_lang.php b/app/Language/tr/Bootstrap_tables.php similarity index 100% rename from app/Language/tr/bootstrap_tables_lang.php rename to app/Language/tr/Bootstrap_tables.php diff --git a/app/Language/tr/cashups_lang.php b/app/Language/tr/Cashups.php similarity index 100% rename from app/Language/tr/cashups_lang.php rename to app/Language/tr/Cashups.php diff --git a/app/Language/tr/common_lang.php b/app/Language/tr/Common.php similarity index 100% rename from app/Language/tr/common_lang.php rename to app/Language/tr/Common.php diff --git a/app/Language/tr/config_lang.php b/app/Language/tr/Config.php similarity index 100% rename from app/Language/tr/config_lang.php rename to app/Language/tr/Config.php diff --git a/app/Language/tr/customers_lang.php b/app/Language/tr/Customers.php similarity index 100% rename from app/Language/tr/customers_lang.php rename to app/Language/tr/Customers.php diff --git a/app/Language/tr/datepicker_lang.php b/app/Language/tr/Datepicker.php similarity index 100% rename from app/Language/tr/datepicker_lang.php rename to app/Language/tr/Datepicker.php diff --git a/app/Language/tr/employees_lang.php b/app/Language/tr/Employees.php similarity index 100% rename from app/Language/tr/employees_lang.php rename to app/Language/tr/Employees.php diff --git a/app/Language/tr/enum_lang.php b/app/Language/tr/Enum.php similarity index 100% rename from app/Language/tr/enum_lang.php rename to app/Language/tr/Enum.php diff --git a/app/Language/tr/error_lang.php b/app/Language/tr/Error.php similarity index 100% rename from app/Language/tr/error_lang.php rename to app/Language/tr/Error.php diff --git a/app/Language/tr/expenses_lang.php b/app/Language/tr/Expenses.php similarity index 100% rename from app/Language/tr/expenses_lang.php rename to app/Language/tr/Expenses.php diff --git a/app/Language/tr/expenses_categories_lang.php b/app/Language/tr/Expenses_categories.php similarity index 100% rename from app/Language/tr/expenses_categories_lang.php rename to app/Language/tr/Expenses_categories.php diff --git a/app/Language/tr/giftcards_lang.php b/app/Language/tr/Giftcards.php similarity index 100% rename from app/Language/tr/giftcards_lang.php rename to app/Language/tr/Giftcards.php diff --git a/app/Language/tr/item_kits_lang.php b/app/Language/tr/Item_kits.php similarity index 100% rename from app/Language/tr/item_kits_lang.php rename to app/Language/tr/Item_kits.php diff --git a/app/Language/tr/items_lang.php b/app/Language/tr/Items.php similarity index 100% rename from app/Language/tr/items_lang.php rename to app/Language/tr/Items.php diff --git a/app/Language/tr/login_lang.php b/app/Language/tr/Login.php similarity index 100% rename from app/Language/tr/login_lang.php rename to app/Language/tr/Login.php diff --git a/app/Language/tr/messages_lang.php b/app/Language/tr/Messages.php similarity index 100% rename from app/Language/tr/messages_lang.php rename to app/Language/tr/Messages.php diff --git a/app/Language/tr/module_lang.php b/app/Language/tr/Module.php similarity index 100% rename from app/Language/tr/module_lang.php rename to app/Language/tr/Module.php diff --git a/app/Language/tr/receivings_lang.php b/app/Language/tr/Receivings.php similarity index 100% rename from app/Language/tr/receivings_lang.php rename to app/Language/tr/Receivings.php diff --git a/app/Language/tr/reports_lang.php b/app/Language/tr/Reports.php similarity index 100% rename from app/Language/tr/reports_lang.php rename to app/Language/tr/Reports.php diff --git a/app/Language/tr/sales_lang.php b/app/Language/tr/Sales.php similarity index 100% rename from app/Language/tr/sales_lang.php rename to app/Language/tr/Sales.php diff --git a/app/Language/tr/suppliers_lang.php b/app/Language/tr/Suppliers.php similarity index 100% rename from app/Language/tr/suppliers_lang.php rename to app/Language/tr/Suppliers.php diff --git a/app/Language/tr/taxes_lang.php b/app/Language/tr/Taxes.php similarity index 100% rename from app/Language/tr/taxes_lang.php rename to app/Language/tr/Taxes.php diff --git a/app/Language/uk-UA/attributes_lang.php b/app/Language/uk-UA/Attributes.php similarity index 100% rename from app/Language/uk-UA/attributes_lang.php rename to app/Language/uk-UA/Attributes.php diff --git a/app/Language/uk-UA/bootstrap_tables_lang.php b/app/Language/uk-UA/Bootstrap_tables.php similarity index 100% rename from app/Language/uk-UA/bootstrap_tables_lang.php rename to app/Language/uk-UA/Bootstrap_tables.php diff --git a/app/Language/uk-UA/cashups_lang.php b/app/Language/uk-UA/Cashups.php similarity index 100% rename from app/Language/uk-UA/cashups_lang.php rename to app/Language/uk-UA/Cashups.php diff --git a/app/Language/uk-UA/common_lang.php b/app/Language/uk-UA/Common.php similarity index 100% rename from app/Language/uk-UA/common_lang.php rename to app/Language/uk-UA/Common.php diff --git a/app/Language/uk-UA/config_lang.php b/app/Language/uk-UA/Config.php similarity index 100% rename from app/Language/uk-UA/config_lang.php rename to app/Language/uk-UA/Config.php diff --git a/app/Language/uk-UA/customers_lang.php b/app/Language/uk-UA/Customers.php similarity index 100% rename from app/Language/uk-UA/customers_lang.php rename to app/Language/uk-UA/Customers.php diff --git a/app/Language/uk-UA/datepicker_lang.php b/app/Language/uk-UA/Datepicker.php similarity index 100% rename from app/Language/uk-UA/datepicker_lang.php rename to app/Language/uk-UA/Datepicker.php diff --git a/app/Language/uk-UA/employees_lang.php b/app/Language/uk-UA/Employees.php similarity index 100% rename from app/Language/uk-UA/employees_lang.php rename to app/Language/uk-UA/Employees.php diff --git a/app/Language/uk-UA/enum_lang.php b/app/Language/uk-UA/Enum.php similarity index 100% rename from app/Language/uk-UA/enum_lang.php rename to app/Language/uk-UA/Enum.php diff --git a/app/Language/uk-UA/error_lang.php b/app/Language/uk-UA/Error.php similarity index 100% rename from app/Language/uk-UA/error_lang.php rename to app/Language/uk-UA/Error.php diff --git a/app/Language/uk-UA/expenses_lang.php b/app/Language/uk-UA/Expenses.php similarity index 100% rename from app/Language/uk-UA/expenses_lang.php rename to app/Language/uk-UA/Expenses.php diff --git a/app/Language/uk-UA/expenses_categories_lang.php b/app/Language/uk-UA/Expenses_categories.php similarity index 100% rename from app/Language/uk-UA/expenses_categories_lang.php rename to app/Language/uk-UA/Expenses_categories.php diff --git a/app/Language/uk-UA/giftcards_lang.php b/app/Language/uk-UA/Giftcards.php similarity index 100% rename from app/Language/uk-UA/giftcards_lang.php rename to app/Language/uk-UA/Giftcards.php diff --git a/app/Language/uk-UA/item_kits_lang.php b/app/Language/uk-UA/Item_kits.php similarity index 100% rename from app/Language/uk-UA/item_kits_lang.php rename to app/Language/uk-UA/Item_kits.php diff --git a/app/Language/uk-UA/items_lang.php b/app/Language/uk-UA/Items.php similarity index 100% rename from app/Language/uk-UA/items_lang.php rename to app/Language/uk-UA/Items.php diff --git a/app/Language/uk-UA/login_lang.php b/app/Language/uk-UA/Login.php similarity index 100% rename from app/Language/uk-UA/login_lang.php rename to app/Language/uk-UA/Login.php diff --git a/app/Language/uk-UA/messages_lang.php b/app/Language/uk-UA/Messages.php similarity index 100% rename from app/Language/uk-UA/messages_lang.php rename to app/Language/uk-UA/Messages.php diff --git a/app/Language/uk-UA/module_lang.php b/app/Language/uk-UA/Module.php similarity index 100% rename from app/Language/uk-UA/module_lang.php rename to app/Language/uk-UA/Module.php diff --git a/app/Language/uk-UA/receivings_lang.php b/app/Language/uk-UA/Receivings.php similarity index 100% rename from app/Language/uk-UA/receivings_lang.php rename to app/Language/uk-UA/Receivings.php diff --git a/app/Language/uk-UA/reports_lang.php b/app/Language/uk-UA/Reports.php similarity index 100% rename from app/Language/uk-UA/reports_lang.php rename to app/Language/uk-UA/Reports.php diff --git a/app/Language/uk-UA/sales_lang.php b/app/Language/uk-UA/Sales.php similarity index 100% rename from app/Language/uk-UA/sales_lang.php rename to app/Language/uk-UA/Sales.php diff --git a/app/Language/uk-UA/suppliers_lang.php b/app/Language/uk-UA/Suppliers.php similarity index 100% rename from app/Language/uk-UA/suppliers_lang.php rename to app/Language/uk-UA/Suppliers.php diff --git a/app/Language/uk-UA/taxes_lang.php b/app/Language/uk-UA/Taxes.php similarity index 100% rename from app/Language/uk-UA/taxes_lang.php rename to app/Language/uk-UA/Taxes.php diff --git a/app/Language/ur_PK/attributes_lang.php b/app/Language/ur_PK/Attributes.php similarity index 100% rename from app/Language/ur_PK/attributes_lang.php rename to app/Language/ur_PK/Attributes.php diff --git a/app/Language/ur_PK/bootstrap_tables_lang.php b/app/Language/ur_PK/Bootstrap_tables.php similarity index 100% rename from app/Language/ur_PK/bootstrap_tables_lang.php rename to app/Language/ur_PK/Bootstrap_tables.php diff --git a/app/Language/ur_PK/cashups_lang.php b/app/Language/ur_PK/Cashups.php similarity index 100% rename from app/Language/ur_PK/cashups_lang.php rename to app/Language/ur_PK/Cashups.php diff --git a/app/Language/ur_PK/common_lang.php b/app/Language/ur_PK/Common.php similarity index 100% rename from app/Language/ur_PK/common_lang.php rename to app/Language/ur_PK/Common.php diff --git a/app/Language/ur_PK/config_lang.php b/app/Language/ur_PK/Config.php similarity index 100% rename from app/Language/ur_PK/config_lang.php rename to app/Language/ur_PK/Config.php diff --git a/app/Language/ur_PK/customers_lang.php b/app/Language/ur_PK/Customers.php similarity index 100% rename from app/Language/ur_PK/customers_lang.php rename to app/Language/ur_PK/Customers.php diff --git a/app/Language/ur_PK/datepicker_lang.php b/app/Language/ur_PK/Datepicker.php similarity index 100% rename from app/Language/ur_PK/datepicker_lang.php rename to app/Language/ur_PK/Datepicker.php diff --git a/app/Language/ur_PK/employees_lang.php b/app/Language/ur_PK/Employees.php similarity index 100% rename from app/Language/ur_PK/employees_lang.php rename to app/Language/ur_PK/Employees.php diff --git a/app/Language/ur_PK/enum_lang.php b/app/Language/ur_PK/Enum.php similarity index 100% rename from app/Language/ur_PK/enum_lang.php rename to app/Language/ur_PK/Enum.php diff --git a/app/Language/ur_PK/error_lang.php b/app/Language/ur_PK/Error.php similarity index 100% rename from app/Language/ur_PK/error_lang.php rename to app/Language/ur_PK/Error.php diff --git a/app/Language/ur_PK/expenses_lang.php b/app/Language/ur_PK/Expenses.php similarity index 100% rename from app/Language/ur_PK/expenses_lang.php rename to app/Language/ur_PK/Expenses.php diff --git a/app/Language/ur_PK/expenses_categories_lang.php b/app/Language/ur_PK/Expenses_categories.php similarity index 100% rename from app/Language/ur_PK/expenses_categories_lang.php rename to app/Language/ur_PK/Expenses_categories.php diff --git a/app/Language/ur_PK/giftcards_lang.php b/app/Language/ur_PK/Giftcards.php similarity index 100% rename from app/Language/ur_PK/giftcards_lang.php rename to app/Language/ur_PK/Giftcards.php diff --git a/app/Language/ur_PK/item_kits_lang.php b/app/Language/ur_PK/Item_kits.php similarity index 100% rename from app/Language/ur_PK/item_kits_lang.php rename to app/Language/ur_PK/Item_kits.php diff --git a/app/Language/ur_PK/items_lang.php b/app/Language/ur_PK/Items.php similarity index 100% rename from app/Language/ur_PK/items_lang.php rename to app/Language/ur_PK/Items.php diff --git a/app/Language/ur_PK/login_lang.php b/app/Language/ur_PK/Login.php similarity index 100% rename from app/Language/ur_PK/login_lang.php rename to app/Language/ur_PK/Login.php diff --git a/app/Language/ur_PK/messages_lang.php b/app/Language/ur_PK/Messages.php similarity index 100% rename from app/Language/ur_PK/messages_lang.php rename to app/Language/ur_PK/Messages.php diff --git a/app/Language/ur_PK/module_lang.php b/app/Language/ur_PK/Module.php similarity index 100% rename from app/Language/ur_PK/module_lang.php rename to app/Language/ur_PK/Module.php diff --git a/app/Language/ur_PK/receivings_lang.php b/app/Language/ur_PK/Receivings.php similarity index 100% rename from app/Language/ur_PK/receivings_lang.php rename to app/Language/ur_PK/Receivings.php diff --git a/app/Language/ur_PK/reports_lang.php b/app/Language/ur_PK/Reports.php similarity index 100% rename from app/Language/ur_PK/reports_lang.php rename to app/Language/ur_PK/Reports.php diff --git a/app/Language/ur_PK/sales_lang.php b/app/Language/ur_PK/Sales.php similarity index 100% rename from app/Language/ur_PK/sales_lang.php rename to app/Language/ur_PK/Sales.php diff --git a/app/Language/ur_PK/suppliers_lang.php b/app/Language/ur_PK/Suppliers.php similarity index 100% rename from app/Language/ur_PK/suppliers_lang.php rename to app/Language/ur_PK/Suppliers.php diff --git a/app/Language/ur_PK/taxes_lang.php b/app/Language/ur_PK/Taxes.php similarity index 100% rename from app/Language/ur_PK/taxes_lang.php rename to app/Language/ur_PK/Taxes.php diff --git a/app/Language/vi/attributes_lang.php b/app/Language/vi/Attributes.php similarity index 100% rename from app/Language/vi/attributes_lang.php rename to app/Language/vi/Attributes.php diff --git a/app/Language/vi/bootstrap_tables_lang.php b/app/Language/vi/Bootstrap_tables.php similarity index 100% rename from app/Language/vi/bootstrap_tables_lang.php rename to app/Language/vi/Bootstrap_tables.php diff --git a/app/Language/vi/cashups_lang.php b/app/Language/vi/Cashups.php similarity index 100% rename from app/Language/vi/cashups_lang.php rename to app/Language/vi/Cashups.php diff --git a/app/Language/vi/common_lang.php b/app/Language/vi/Common.php similarity index 100% rename from app/Language/vi/common_lang.php rename to app/Language/vi/Common.php diff --git a/app/Language/vi/config_lang.php b/app/Language/vi/Config.php similarity index 100% rename from app/Language/vi/config_lang.php rename to app/Language/vi/Config.php diff --git a/app/Language/vi/customers_lang.php b/app/Language/vi/Customers.php similarity index 100% rename from app/Language/vi/customers_lang.php rename to app/Language/vi/Customers.php diff --git a/app/Language/vi/datepicker_lang.php b/app/Language/vi/Datepicker.php similarity index 100% rename from app/Language/vi/datepicker_lang.php rename to app/Language/vi/Datepicker.php diff --git a/app/Language/vi/employees_lang.php b/app/Language/vi/Employees.php similarity index 100% rename from app/Language/vi/employees_lang.php rename to app/Language/vi/Employees.php diff --git a/app/Language/vi/enum_lang.php b/app/Language/vi/Enum.php similarity index 100% rename from app/Language/vi/enum_lang.php rename to app/Language/vi/Enum.php diff --git a/app/Language/vi/error_lang.php b/app/Language/vi/Error.php similarity index 100% rename from app/Language/vi/error_lang.php rename to app/Language/vi/Error.php diff --git a/app/Language/vi/expenses_lang.php b/app/Language/vi/Expenses.php similarity index 100% rename from app/Language/vi/expenses_lang.php rename to app/Language/vi/Expenses.php diff --git a/app/Language/vi/expenses_categories_lang.php b/app/Language/vi/Expenses_categories.php similarity index 100% rename from app/Language/vi/expenses_categories_lang.php rename to app/Language/vi/Expenses_categories.php diff --git a/app/Language/vi/giftcards_lang.php b/app/Language/vi/Giftcards.php similarity index 100% rename from app/Language/vi/giftcards_lang.php rename to app/Language/vi/Giftcards.php diff --git a/app/Language/vi/item_kits_lang.php b/app/Language/vi/Item_kits.php similarity index 100% rename from app/Language/vi/item_kits_lang.php rename to app/Language/vi/Item_kits.php diff --git a/app/Language/vi/items_lang.php b/app/Language/vi/Items.php similarity index 100% rename from app/Language/vi/items_lang.php rename to app/Language/vi/Items.php diff --git a/app/Language/vi/login_lang.php b/app/Language/vi/Login.php similarity index 100% rename from app/Language/vi/login_lang.php rename to app/Language/vi/Login.php diff --git a/app/Language/vi/messages_lang.php b/app/Language/vi/Messages.php similarity index 100% rename from app/Language/vi/messages_lang.php rename to app/Language/vi/Messages.php diff --git a/app/Language/vi/module_lang.php b/app/Language/vi/Module.php similarity index 100% rename from app/Language/vi/module_lang.php rename to app/Language/vi/Module.php diff --git a/app/Language/vi/receivings_lang.php b/app/Language/vi/Receivings.php similarity index 100% rename from app/Language/vi/receivings_lang.php rename to app/Language/vi/Receivings.php diff --git a/app/Language/vi/reports_lang.php b/app/Language/vi/Reports.php similarity index 100% rename from app/Language/vi/reports_lang.php rename to app/Language/vi/Reports.php diff --git a/app/Language/vi/sales_lang.php b/app/Language/vi/Sales.php similarity index 100% rename from app/Language/vi/sales_lang.php rename to app/Language/vi/Sales.php diff --git a/app/Language/vi/suppliers_lang.php b/app/Language/vi/Suppliers.php similarity index 100% rename from app/Language/vi/suppliers_lang.php rename to app/Language/vi/Suppliers.php diff --git a/app/Language/vi/taxes_lang.php b/app/Language/vi/Taxes.php similarity index 100% rename from app/Language/vi/taxes_lang.php rename to app/Language/vi/Taxes.php diff --git a/app/Language/zh-Hans/attributes_lang.php b/app/Language/zh-Hans/Attributes.php similarity index 100% rename from app/Language/zh-Hans/attributes_lang.php rename to app/Language/zh-Hans/Attributes.php diff --git a/app/Language/zh-Hans/bootstrap_tables_lang.php b/app/Language/zh-Hans/Bootstrap_tables.php similarity index 100% rename from app/Language/zh-Hans/bootstrap_tables_lang.php rename to app/Language/zh-Hans/Bootstrap_tables.php diff --git a/app/Language/zh-Hans/cashups_lang.php b/app/Language/zh-Hans/Cashups.php similarity index 100% rename from app/Language/zh-Hans/cashups_lang.php rename to app/Language/zh-Hans/Cashups.php diff --git a/app/Language/zh-Hans/common_lang.php b/app/Language/zh-Hans/Common.php similarity index 100% rename from app/Language/zh-Hans/common_lang.php rename to app/Language/zh-Hans/Common.php diff --git a/app/Language/zh-Hans/config_lang.php b/app/Language/zh-Hans/Config.php similarity index 100% rename from app/Language/zh-Hans/config_lang.php rename to app/Language/zh-Hans/Config.php diff --git a/app/Language/zh-Hans/customers_lang.php b/app/Language/zh-Hans/Customers.php similarity index 100% rename from app/Language/zh-Hans/customers_lang.php rename to app/Language/zh-Hans/Customers.php diff --git a/app/Language/zh-Hans/datepicker_lang.php b/app/Language/zh-Hans/Datepicker.php similarity index 100% rename from app/Language/zh-Hans/datepicker_lang.php rename to app/Language/zh-Hans/Datepicker.php diff --git a/app/Language/zh-Hans/employees_lang.php b/app/Language/zh-Hans/Employees.php similarity index 100% rename from app/Language/zh-Hans/employees_lang.php rename to app/Language/zh-Hans/Employees.php diff --git a/app/Language/zh-Hans/enum_lang.php b/app/Language/zh-Hans/Enum.php similarity index 100% rename from app/Language/zh-Hans/enum_lang.php rename to app/Language/zh-Hans/Enum.php diff --git a/app/Language/zh-Hans/error_lang.php b/app/Language/zh-Hans/Error.php similarity index 100% rename from app/Language/zh-Hans/error_lang.php rename to app/Language/zh-Hans/Error.php diff --git a/app/Language/zh-Hans/expenses_lang.php b/app/Language/zh-Hans/Expenses.php similarity index 100% rename from app/Language/zh-Hans/expenses_lang.php rename to app/Language/zh-Hans/Expenses.php diff --git a/app/Language/zh-Hans/expenses_categories_lang.php b/app/Language/zh-Hans/Expenses_categories.php similarity index 100% rename from app/Language/zh-Hans/expenses_categories_lang.php rename to app/Language/zh-Hans/Expenses_categories.php diff --git a/app/Language/zh-Hans/giftcards_lang.php b/app/Language/zh-Hans/Giftcards.php similarity index 100% rename from app/Language/zh-Hans/giftcards_lang.php rename to app/Language/zh-Hans/Giftcards.php diff --git a/app/Language/zh-Hans/item_kits_lang.php b/app/Language/zh-Hans/Item_kits.php similarity index 100% rename from app/Language/zh-Hans/item_kits_lang.php rename to app/Language/zh-Hans/Item_kits.php diff --git a/app/Language/zh-Hans/items_lang.php b/app/Language/zh-Hans/Items.php similarity index 100% rename from app/Language/zh-Hans/items_lang.php rename to app/Language/zh-Hans/Items.php diff --git a/app/Language/zh-Hans/login_lang.php b/app/Language/zh-Hans/Login.php similarity index 100% rename from app/Language/zh-Hans/login_lang.php rename to app/Language/zh-Hans/Login.php diff --git a/app/Language/zh-Hans/messages_lang.php b/app/Language/zh-Hans/Messages.php similarity index 100% rename from app/Language/zh-Hans/messages_lang.php rename to app/Language/zh-Hans/Messages.php diff --git a/app/Language/zh-Hans/module_lang.php b/app/Language/zh-Hans/Module.php similarity index 100% rename from app/Language/zh-Hans/module_lang.php rename to app/Language/zh-Hans/Module.php diff --git a/app/Language/zh-Hans/receivings_lang.php b/app/Language/zh-Hans/Receivings.php similarity index 100% rename from app/Language/zh-Hans/receivings_lang.php rename to app/Language/zh-Hans/Receivings.php diff --git a/app/Language/zh-Hans/reports_lang.php b/app/Language/zh-Hans/Reports.php similarity index 100% rename from app/Language/zh-Hans/reports_lang.php rename to app/Language/zh-Hans/Reports.php diff --git a/app/Language/zh-Hans/sales_lang.php b/app/Language/zh-Hans/Sales.php similarity index 100% rename from app/Language/zh-Hans/sales_lang.php rename to app/Language/zh-Hans/Sales.php diff --git a/app/Language/zh-Hans/suppliers_lang.php b/app/Language/zh-Hans/Suppliers.php similarity index 100% rename from app/Language/zh-Hans/suppliers_lang.php rename to app/Language/zh-Hans/Suppliers.php diff --git a/app/Language/zh-Hans/taxes_lang.php b/app/Language/zh-Hans/Taxes.php similarity index 100% rename from app/Language/zh-Hans/taxes_lang.php rename to app/Language/zh-Hans/Taxes.php diff --git a/app/Language/zh-Hant/attributes_lang.php b/app/Language/zh-Hant/Attributes.php similarity index 100% rename from app/Language/zh-Hant/attributes_lang.php rename to app/Language/zh-Hant/Attributes.php diff --git a/app/Language/zh-Hant/bootstrap_tables_lang.php b/app/Language/zh-Hant/Bootstrap_tables.php similarity index 100% rename from app/Language/zh-Hant/bootstrap_tables_lang.php rename to app/Language/zh-Hant/Bootstrap_tables.php diff --git a/app/Language/zh-Hant/cashups_lang.php b/app/Language/zh-Hant/Cashups.php similarity index 100% rename from app/Language/zh-Hant/cashups_lang.php rename to app/Language/zh-Hant/Cashups.php diff --git a/app/Language/zh-Hant/common_lang.php b/app/Language/zh-Hant/Common.php similarity index 100% rename from app/Language/zh-Hant/common_lang.php rename to app/Language/zh-Hant/Common.php diff --git a/app/Language/zh-Hant/config_lang.php b/app/Language/zh-Hant/Config.php similarity index 100% rename from app/Language/zh-Hant/config_lang.php rename to app/Language/zh-Hant/Config.php diff --git a/app/Language/zh-Hant/customers_lang.php b/app/Language/zh-Hant/Customers.php similarity index 100% rename from app/Language/zh-Hant/customers_lang.php rename to app/Language/zh-Hant/Customers.php diff --git a/app/Language/zh-Hant/datepicker_lang.php b/app/Language/zh-Hant/Datepicker.php similarity index 100% rename from app/Language/zh-Hant/datepicker_lang.php rename to app/Language/zh-Hant/Datepicker.php diff --git a/app/Language/zh-Hant/employees_lang.php b/app/Language/zh-Hant/Employees.php similarity index 100% rename from app/Language/zh-Hant/employees_lang.php rename to app/Language/zh-Hant/Employees.php diff --git a/app/Language/zh-Hant/enum_lang.php b/app/Language/zh-Hant/Enum.php similarity index 100% rename from app/Language/zh-Hant/enum_lang.php rename to app/Language/zh-Hant/Enum.php diff --git a/app/Language/zh-Hant/error_lang.php b/app/Language/zh-Hant/Error.php similarity index 100% rename from app/Language/zh-Hant/error_lang.php rename to app/Language/zh-Hant/Error.php diff --git a/app/Language/zh-Hant/expenses_lang.php b/app/Language/zh-Hant/Expenses.php similarity index 100% rename from app/Language/zh-Hant/expenses_lang.php rename to app/Language/zh-Hant/Expenses.php diff --git a/app/Language/zh-Hant/expenses_categories_lang.php b/app/Language/zh-Hant/Expenses_categories.php similarity index 100% rename from app/Language/zh-Hant/expenses_categories_lang.php rename to app/Language/zh-Hant/Expenses_categories.php diff --git a/app/Language/zh-Hant/giftcards_lang.php b/app/Language/zh-Hant/Giftcards.php similarity index 100% rename from app/Language/zh-Hant/giftcards_lang.php rename to app/Language/zh-Hant/Giftcards.php diff --git a/app/Language/zh-Hant/item_kits_lang.php b/app/Language/zh-Hant/Item_kits.php similarity index 100% rename from app/Language/zh-Hant/item_kits_lang.php rename to app/Language/zh-Hant/Item_kits.php diff --git a/app/Language/zh-Hant/items_lang.php b/app/Language/zh-Hant/Items.php similarity index 100% rename from app/Language/zh-Hant/items_lang.php rename to app/Language/zh-Hant/Items.php diff --git a/app/Language/zh-Hant/login_lang.php b/app/Language/zh-Hant/Login.php similarity index 100% rename from app/Language/zh-Hant/login_lang.php rename to app/Language/zh-Hant/Login.php diff --git a/app/Language/zh-Hant/messages_lang.php b/app/Language/zh-Hant/Messages.php similarity index 100% rename from app/Language/zh-Hant/messages_lang.php rename to app/Language/zh-Hant/Messages.php diff --git a/app/Language/zh-Hant/module_lang.php b/app/Language/zh-Hant/Module.php similarity index 100% rename from app/Language/zh-Hant/module_lang.php rename to app/Language/zh-Hant/Module.php diff --git a/app/Language/zh-Hant/receivings_lang.php b/app/Language/zh-Hant/Receivings.php similarity index 100% rename from app/Language/zh-Hant/receivings_lang.php rename to app/Language/zh-Hant/Receivings.php diff --git a/app/Language/zh-Hant/reports_lang.php b/app/Language/zh-Hant/Reports.php similarity index 100% rename from app/Language/zh-Hant/reports_lang.php rename to app/Language/zh-Hant/Reports.php diff --git a/app/Language/zh-Hant/sales_lang.php b/app/Language/zh-Hant/Sales.php similarity index 100% rename from app/Language/zh-Hant/sales_lang.php rename to app/Language/zh-Hant/Sales.php diff --git a/app/Language/zh-Hant/suppliers_lang.php b/app/Language/zh-Hant/Suppliers.php similarity index 100% rename from app/Language/zh-Hant/suppliers_lang.php rename to app/Language/zh-Hant/Suppliers.php diff --git a/app/Language/zh-Hant/taxes_lang.php b/app/Language/zh-Hant/Taxes.php similarity index 100% rename from app/Language/zh-Hant/taxes_lang.php rename to app/Language/zh-Hant/Taxes.php diff --git a/app/Models/Reports/Detailed_sales.php b/app/Models/Reports/Detailed_sales.php index 625a3d434..689752aaf 100644 --- a/app/Models/Reports/Detailed_sales.php +++ b/app/Models/Reports/Detailed_sales.php @@ -184,7 +184,7 @@ class Detailed_sales extends Report $builder->join('attribute_values', 'attribute_values.attribute_id = attribute_links.attribute_id', 'left'); } - $builder->groupBy('sales_items_temp.sale_id, sales_items_temp.item_id, sales_items_temp.line'); + $builder->groupBy('sales_items_temp.sale_id, sales_items_temp.item_id, sales_items_temp.sale_id'); $builder->where('sales_items_temp.sale_id', $value['sale_id']); $data['details'][$key] = $builder->get()->getResultArray(); @@ -247,4 +247,4 @@ class Detailed_sales extends Report return $builder->get()->getRowArray(); } -} \ No newline at end of file +} diff --git a/app/Models/Reports/Summary_taxes.php b/app/Models/Reports/Summary_taxes.php index 380cd20aa..90873a965 100644 --- a/app/Models/Reports/Summary_taxes.php +++ b/app/Models/Reports/Summary_taxes.php @@ -7,9 +7,9 @@ class Summary_taxes extends Summary_report protected function _get_data_columns(): array //TODO: hungarian notation { return [ - ['tax_name' => $this->lang->line('Reports.tax_name'), 'sorter' => FALSE], + ['tax_name' => $this->lang->line('Reports.tax_name'), 'sortable' => FALSE], ['tax_percent' => lang('Reports.tax_percent'), 'sorter' => 'number_sorter'], - ['report_count' => lang('Reports.sales'), sorter => 'number_sorter'], + ['report_count' => lang('Reports.sales'), 'sorter' => 'number_sorter'], ['subtotal' => lang('Reports.subtotal'), 'sorter' => 'number_sorter'], ['tax' => lang('Reports.tax'), 'sorter' => 'number_sorter'], ['total' => lang('Reports.total'), 'sorter' => 'number_sorter'] diff --git a/app/Models/Sale.php b/app/Models/Sale.php index 816b76c18..9ae0e6df8 100644 --- a/app/Models/Sale.php +++ b/app/Models/Sale.php @@ -692,7 +692,7 @@ class Sale extends Model $builder->insert($sales_payments_data); - $total_amount = floatval($total_amount) + floatval($payment['payment_amount']); + $total_amount = floatval($total_amount) + floatval($payment['payment_amount']) - floatval($payment['cash_refund']); } $this->save_customer_rewards($customer_id, $sale_id, $total_amount, $total_amount_used); @@ -1532,4 +1532,4 @@ class Sale extends Model } } } -} \ No newline at end of file +}