Skip to content

Commit eb4c52d

Browse files
committed
Merge branch 'WEM-2.0' of https://github.com/SMEWebify/WebErpMesv2 into WEM-2.0
2 parents 16d5c08 + 4c095c1 commit eb4c52d

8 files changed

+42
-10
lines changed

SECURITY.md

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
# Security Policy
2+
3+
## Supported Versions
4+
5+
Please use the following versions of WEM as they are currently being supported with security updates.
6+
7+
| Version | Supported |
8+
| ------- | ------------------ |
9+
| 1.08 | :white_check_mark: |
10+
| < 1.07 | :x: |
11+
12+
## Reporting a Vulnerability
13+
14+
We take the security of our project very seriously. If you have discovered a security vulnerability within WEM, we encourage you to inform us immediately. Please follow these steps to report it responsibly.
15+
16+
1. **Do not publish the details of the vulnerability publicly.** This includes discussion forums or other GitHub issues that are not secured.
17+
18+
2. **Send a detailed report to** `[email protected]`. Be sure to include the necessary information to reproduce the issue. This helps us to quickly understand the scope and urgency of the situation.
19+
20+
3. **Do not disclose the details of the vulnerability to others until we have had a chance to address it.** We will give you a timeline of when and how the issue will be dealt with. We appreciate your help in maintaining confidentiality until we have a fix in place.
21+
22+
We will review all vulnerability reports and do our best to confirm the issues quickly. Once confirmed, we will release an update as swiftly as possible, depending on the complexity of the issue.
23+
24+
## Public Disclosure Process
25+
26+
Once a vulnerability in WEM has been fixed, we commit to publishing a public disclosure to inform the community about the issues and their solutions. This disclosure will include acknowledgments to the security researchers who have helped resolve the problem.
27+
28+
Thank you for helping us make WEM safer and we appreciate your effort in reporting issues responsibly.
29+
30+
---
31+
32+
**Thank you for contributing to the security of WEM!**

resources/lang/en/general_content.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -318,8 +318,8 @@
318318
'custom_fields_trans_key' => 'Custom fields',
319319

320320
// CARD HEADER
321-
'statistiques_trans_key' => 'Statistiques',
322-
'informations_trans_key' => 'Informations',
321+
'statistiques_trans_key' => 'Statistics',
322+
'informations_trans_key' => 'Information',
323323
'options_trans_key' => 'Options',
324324
'charts_trans_key' => 'Charts',
325325

@@ -415,7 +415,7 @@
415415
'add_to_document_trans_key' => 'Add to new document',
416416
'preferred_supplier_trans_key' => 'Preferreds suppliers',
417417

418-
'companie_name_trans_key' => 'Companie name',
418+
'companie_name_trans_key' => 'Company name',
419419
'adress_name_trans_key' => 'Address name',
420420
'adress_trans_key' => 'Address',
421421
'contact_name_trans_key' => 'Contact name',
@@ -558,7 +558,7 @@
558558

559559
//COMPANIES
560560
'companies_trans_key' => 'Companies',
561-
'companie_trans_key' => 'Companie',
561+
'companie_trans_key' => 'Company',
562562
'sort_companie_trans_key' => 'Sort companie',
563563
'companies_list_trans_key' => 'Companies list',
564564
'latest_companies_trans_key' => 'Latest companies ',

resources/views/include/form/form-select-companie.blade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<x-adminlte-select name="companies_id" label="Companie" label-class="text-lightblue" igroup-size="sm">
1+
<x-adminlte-select name="companies_id" label="{{ __('general_content.companie_trans_key') }}" label-class="text-lightblue" igroup-size="sm">
22
<x-slot name="prependSlot">
33
<div class="input-group-text bg-gradient-info">
44
<i class="fas fa-building"></i>

resources/views/purchases/purchases-invoice-show.blade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
<label for="code" class="text-success">{{ __('general_content.external_id_trans_key') }}</label> {{ $PurchaseInvoice->code }}
3939
</div>
4040
<div class="col-3">
41-
<x-adminlte-select name="statu" label="Statu" label-class="text-success" igroup-size="sm">
41+
<x-adminlte-select name="statu" label="{{ __('general_content.status_trans_key') }}" label-class="text-success" igroup-size="sm">
4242
<x-slot name="prependSlot">
4343
<div class="input-group-text bg-gradient-success">
4444
<i class="fas fa-exclamation"></i>

resources/views/purchases/purchases-quotation-show.blade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
<label for="code" class="text-success">{{ __('general_content.external_id_trans_key') }}</label> {{ $PurchaseQuotation->code }}
4242
</div>
4343
<div class="col-3">
44-
<x-adminlte-select name="statu" label="Statu" label-class="text-success" igroup-size="sm">
44+
<x-adminlte-select name="statu" label="{{ __('general_content.status_trans_key') }}" label-class="text-success" igroup-size="sm">
4545
<x-slot name="prependSlot">
4646
<div class="input-group-text bg-gradient-success">
4747
<i class="fas fa-exclamation"></i>

resources/views/purchases/purchases-receipt-show.blade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
<label for="code" class="text-success">{{ __('general_content.external_id_trans_key') }}</label> {{ $PurchaseReceipt->code }}
3939
</div>
4040
<div class="col-3">
41-
<x-adminlte-select name="statu" label="Statu" label-class="text-success" igroup-size="sm">
41+
<x-adminlte-select name="statu" label="{{ __('general_content.status_trans_key') }}" label-class="text-success" igroup-size="sm">
4242
<x-slot name="prependSlot">
4343
<div class="input-group-text bg-gradient-success">
4444
<i class="fas fa-exclamation"></i>

resources/views/purchases/purchases-show.blade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
<label for="code" class="text-success">{{ __('general_content.external_id_trans_key') }}</label> {{ $Purchase->code }}
4545
</div>
4646
<div class="col-3">
47-
<x-adminlte-select name="statu" label="Statu" label-class="text-success" igroup-size="sm">
47+
<x-adminlte-select name="statu" label="{{ __('general_content.status_trans_key') }}" label-class="text-success" igroup-size="sm">
4848
<x-slot name="prependSlot">
4949
<div class="input-group-text bg-gradient-success">
5050
<i class="fas fa-exclamation"></i>

resources/views/workflow/deliverys-show.blade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
<label for="code" class="text-success">{{ __('general_content.external_id_trans_key') }}</label> {{ $Delivery->code }}
4343
</div>
4444
<div class="col-4">
45-
<x-adminlte-select name="statu" label="Statu" label-class="text-success" igroup-size="sm">
45+
<x-adminlte-select name="statu" label="{{ __('general_content.status_trans_key') }}" label-class="text-success" igroup-size="sm">
4646
<x-slot name="prependSlot">
4747
<div class="input-group-text bg-gradient-success">
4848
<i class="fas fa-exclamation"></i>

0 commit comments

Comments
 (0)