[i18n, plugins] Wallabag: use ngettext for plural (#13062)
Some checks are pending
macos / macOS ${{ matrix.image }} ${{ matrix.platform }} 🔨${{ matrix.xcode_version }} 🎯${{ matrix.deployment_target }} (10.15, 13, x86-64, 15.2) (push) Waiting to run
macos / macOS ${{ matrix.image }} ${{ matrix.platform }} 🔨${{ matrix.xcode_version }} 🎯${{ matrix.deployment_target }} (11.0, 14, ARM64, 15.4) (push) Waiting to run

This commit is contained in:
Frans de Jonge
2025-01-13 18:26:14 +01:00
committed by GitHub
parent 12b075a4ac
commit 4eea3f0cda

View File

@@ -872,10 +872,7 @@ function Wallabag:downloadArticles()
if articles then
logger.dbg("Wallabag:downloadArticles: got a list of", #articles, "articles")
info = InfoMessage:new{
text = T(
_("Received a list of %1 articles…"),
#articles
),
text = T(N_("Received a list of 1 article.", "Received a list of %1 articles.", #articles), #articles),
timeout = 3
}
UIManager:show(info)