Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Correct code
Signed-off-by: Valdnet <47037905+Valdnet@users.noreply.github.com>
  • Loading branch information
Valdnet authored Nov 2, 2021
commit 0bd9f4b92c0a06a92c2f6cd9c4fd303ed73e4b52
1 change: 1 addition & 0 deletions templates/settings-admin.php
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@ function FormatMegabytes(int $byte): string {
</div>
<div class="col col-12">
<p><?php p($l->t('Operating System').':'); ?> <strong id="numFilesStorage"><?php p($_['osname']); ?></strong></p>
<p><?php p($l->t('CPU').':'); ?>
Comment on lines +59 to +60
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
<p><?php p($l->t('Operating System').':'); ?> <strong id="numFilesStorage"><?php p($_['osname']); ?></strong></p>
<p><?php p($l->t('CPU').':'); ?>
<p><?php p($l->t('Operating System:')); ?> <strong id="numFilesStorage"><?php p($_['osname']); ?></strong></p>
<p><?php p($l->t('CPU:')); ?>

etc so french translators can add their space before the colon

<?php if ($_['cpu'] !== 'Unknown Processor'): ?>
<strong id="numFilesStorage"><?php p($_['cpu']) ?></strong></p>
<?php else: ?>
Expand Down