Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
# Conflicts:
#	CHANGELOG.md
#	source/misc.php
  • Loading branch information
forxer committed May 10, 2023
2 parents 0107193 + 2fea9a0 commit bce0e7f
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 10 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
CHANGELOG
=========

1.2.1 (2023-05-10)
------------------

- Change key in misc, replace "required" by "required_field" ; see https://github.com/Laravel-Lang/publisher/issues/329


1.2.0 (2023-05-01)
------------------

Expand Down
14 changes: 7 additions & 7 deletions GLOSSARY.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
|[Yes](#yes)|[No](#no)|[All](#all)|[All Fem](#all-fem)|[Previous](#previous)|
|[Previous Fem](#previous-fem)|[Next](#next)|[Next Fem](#next-fem)|[Or](#or)|[Other](#other)|
|[With](#with)|[Without](#without)|[Recycle Bin](#recycle-bin)|[Recycle Bin Of](#recycle-bin-of)|[Archives](#archives)|
|[Archives Of](#archives-of)|[Required](#required)|[Info Required Fields](#info-required-fields)|[Page N](#page-n)|[Developed By](#developed-by)|
|[Archives Of](#archives-of)|[Required Field](#required-field)|[Info Required Fields](#info-required-fields)|[Page N](#page-n)|[Developed By](#developed-by)|
|[Under Maintenance](#under-maintenance)|[Quoted](#quoted)| | | |


Expand Down Expand Up @@ -1627,17 +1627,17 @@ trans('misc.archives_of', [

[Back to top ^](#glossary)

### Required
### Required Field

<details>
<summary>Click for details and usage of Required</summary>
<summary>Click for details and usage of Required Field</summary>

- Key: `'required'`
- Value: `'required'`
- Usage: `'misc.required'`
- Key: `'required_field'`
- Value: `'required field'`
- Usage: `'misc.required_field'`

```php
trans('misc.required');
trans('misc.required_field');
```

</details>
Expand Down
2 changes: 1 addition & 1 deletion locales/en/php.json
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@
"refresh_something": "refresh :something",
"reload": "reload",
"reload_something": "reload :something",
"required": "required",
"required_field": "required field",
"restore": "restore",
"restore_something": "restore :something",
"save": "save",
Expand Down
2 changes: 1 addition & 1 deletion locales/fr/php.json
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@
"refresh_something": "rafraîchir :something",
"reload": "recharger",
"reload_something": "recharger :something",
"required": "requis",
"required_field": "champs requis",
"restore": "restaurer",
"restore_something": "restaurer :something",
"save": "enregistrer",
Expand Down
3 changes: 2 additions & 1 deletion source/misc.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,8 @@
'archives' => 'archives',
'archives_of' => 'archives of :things',

'required' => 'required',
'required_field' => 'required field',

'info_required_fields' => 'Mandatory fields are indicated by:',

'page_n' => 'Page :number',
Expand Down

0 comments on commit bce0e7f

Please sign in to comment.