mirror of
https://github.com/koreader/koreader.git
synced 2025-08-10 00:52:38 +00:00
[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
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:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user