Skip to content
Snippets Groups Projects
Commit 10510cbd authored by Jared Hancock's avatar Jared Hancock
Browse files

i18n: 'After <n> month(s)' — make single phrase

parent 17bdd70c
No related branches found
No related tags found
No related merge requests found
...@@ -99,7 +99,8 @@ $gmtime = Misc::gmtime(); ...@@ -99,7 +99,8 @@ $gmtime = Misc::gmtime();
for ($i = 1; $i <=12; $i++) { for ($i = 1; $i <=12; $i++) {
?> ?>
<option <?php echo $config['log_graceperiod']==$i?'selected="selected"':''; ?> value="<?php echo $i; ?>"> <option <?php echo $config['log_graceperiod']==$i?'selected="selected"':''; ?> value="<?php echo $i; ?>">
<?php echo __('After');?>&nbsp;<?php echo $i; ?>&nbsp;<?php echo ($i>1)?__('Months'):__('Month'); ?></option> <?php echo sprintf(_N('After %d month', 'After %d months', $i), $i);?>
</option>
<?php <?php
} ?> } ?>
</select> </select>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment