Skip to content

Commit

Permalink
feat: add explanations for the individual values in the feed informat…
Browse files Browse the repository at this point in the history
…ion table

Signed-off-by: Wolfgang <[email protected]>
  • Loading branch information
wofferl committed Jan 6, 2025
1 parent c3ebe7e commit 21614f6
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ You can also check [on GitHub](https://github.com/nextcloud/news/releases), the
# Unreleased
## [25.x.x]
### Changed
- add explanations for the individual values in the feed information table

### Fixed

Expand Down
35 changes: 35 additions & 0 deletions src/components/modals/FeedInfoTable.vue
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,41 @@
@close="$emit('close')">
<div class="table-modal">
<h2>{{ t('news', 'Article feed information') }}</h2>
<table>
<tr>
<td>
{{ t('news', 'Last update') }}:
</td>
<td>
{{ t('news', 'Time when the feed was last downloaded') }}
</td>
</tr>
<tr>
<td>
{{ t('news', 'Next update') }}:
</td>
<td>
{{ t('news', 'Time when the next feed update will be done') }}<br>
({{ t('news', 'Only if activated in the admin settings, otherwise the regular update interval is used') }})
</td>
</tr>
<tr>
<td>
APU ({{ t('news', 'Articles per update') }}):
</td>
<td>
{{ t('news', 'Maximum number of articles reached in a feed update') }}
</td>
</tr>
<tr>
<td>
EC ({{ t('news', 'Error Count') }}):
</td>
<td>
{{ t('news', 'Number of errors that have occurred since the last successful feed update') }}
</td>
</tr>
</table>
<table>
<thead>
<tr>
Expand Down

0 comments on commit 21614f6

Please sign in to comment.