fix: confusing wording for billing cycle

docs: update screenshots on readme
This commit is contained in:
Miguel Ribeiro
2024-03-12 21:50:47 +01:00
committed by GitHub
parent e9988e9851
commit 94ad0cb553
26 changed files with 64 additions and 20 deletions
+2 -2
View File
@@ -253,7 +253,7 @@
<div class="form-group">
<div class="inline">
<div class="split66">
<label for="cycle"><?= translate('billing_cycle', $i18n) ?></label>
<label for="cycle"><?= translate('payment_every', $i18n) ?></label>
<div class="inline">
<select id="frequency" name="frequency" placeholder="<?= translate('frequency', $i18n) ?>">
<?php
@@ -268,7 +268,7 @@
<?php
foreach ($cycles as $cycle) {
?>
<option value="<?= $cycle['id'] ?>" <?= $cycle['id'] == 3 ? "selected" : "" ?>><?= translate($cycle['name'], $i18n) ?></option>
<option value="<?= $cycle['id'] ?>" <?= $cycle['id'] == 3 ? "selected" : "" ?>><?= translate(strtolower($cycle['name']), $i18n) ?></option>
<?php
}
?>