Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
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
4 changes: 2 additions & 2 deletions apps/settings/lib/SetupChecks/TaskProcessingSuccessRate.php
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ public function run(): SetupResult {
if ($taskCount === 0) {
return SetupResult::success(
$this->l10n->n(
'No scheduled tasks in the last day.',
'No scheduled tasks in the last %n day.',
'No scheduled tasks in the last %n days.',
$lastNDays
)
Expand All @@ -68,7 +68,7 @@ public function run(): SetupResult {
if (($failedCount / $taskCount) < self::MAX_FAILURE_PERCENTAGE) {
return SetupResult::success(
$this->l10n->n(
'Most tasks were successful in the last day.',
'Most tasks were successful in the last %n day.',
'Most tasks were successful in the last %n days.',
$lastNDays
)
Expand Down
4 changes: 2 additions & 2 deletions apps/systemtags/src/components/SystemTagPicker.vue
Original file line number Diff line number Diff line change
Expand Up @@ -286,7 +286,7 @@ export default defineComponent({
if (this.toAdd.length === 1 && this.toRemove.length === 1) {
return n(
'systemtags',
'{tag1} will be set and {tag2} will be removed from 1 file.',
'{tag1} will be set and {tag2} will be removed from {count} file.',
'{tag1} will be set and {tag2} will be removed from {count} files.',
this.nodes.length,
{
Expand Down Expand Up @@ -317,7 +317,7 @@ export default defineComponent({

const removeStringSingular = n(
'systemtags',
'{tag} will be removed from 1 file.',
'{tag} will be removed from {count} file.',
'{tag} will be removed from {count} files.',
this.nodes.length,
{
Expand Down
Loading