Skip to content

Commit

Permalink
Merge pull request #1775 from tomudding/fix/bylaws-vs-articles-of-ass…
Browse files Browse the repository at this point in the history
…ociation

Fix 'Bylaws' vs 'Articles of Association'
  • Loading branch information
tomudding authored Jan 1, 2024
2 parents 9df01ab + dd2b5d9 commit 440a30f
Show file tree
Hide file tree
Showing 6 changed files with 44 additions and 25 deletions.
20 changes: 13 additions & 7 deletions module/Application/language/en.po

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

18 changes: 12 additions & 6 deletions module/Application/language/gewisweb.pot

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

20 changes: 13 additions & 7 deletions module/Application/language/nl.po

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion module/Decision/src/Model/Enums/MembershipTypes.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
use Laminas\Mvc\I18n\Translator;

/**
* Enum for the different membership types as defined in the bylaws of the association.
* Enum for the different membership types as defined in the articles of association.
*/
enum MembershipTypes: string
{
Expand Down
5 changes: 3 additions & 2 deletions module/Decision/src/Model/Member.php
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ enumType: MembershipTypes::class,
/**
* Date when the real membership ("ordinary" or "external") of the member will have ended, in other words, from this
* date onwards they are "graduate". If `null`, the expiration is rolling and will be silently renewed if the member
* still meets the requirements as set forth in the bylaws and internal regulations.
* still meets the requirements as set forth in the articles of association and internal regulations.
*/
#[Column(
type: 'date',
Expand All @@ -147,7 +147,8 @@ enumType: MembershipTypes::class,

/**
* The date on which the membership of the member is set to expire and will therefore have to be renewed, which
* happens either automatically or has to be done manually, as set forth in the bylaws and internal regulations.
* happens either automatically or has to be done manually, as set forth in the articles of association and internal
* regulations.
*/
#[Column(type: 'date')]
protected DateTime $expiration;
Expand Down
4 changes: 2 additions & 2 deletions module/Decision/view/decision/member/index.phtml
Original file line number Diff line number Diff line change
Expand Up @@ -239,10 +239,10 @@ $this->headTitle($this->translate('Members'));
'sub_category' => 'reglementen',
'sub_categoryEn' => 'regulations',
'name' => 'statuten',
'nameEn' => 'bylaws',
'nameEn' => 'articles-of-association',
],
) ?>">
<?= $this->translate('Bylaws') ?>
<?= $this->translate('Articles of Association') ?>
</a>
</li>
<li>
Expand Down

0 comments on commit 440a30f

Please sign in to comment.