Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Multimedia
JuK
Commits
e35afcaa
Commit
e35afcaa
authored
May 09, 2021
by
Yuri Chornoivan
Browse files
Take into account that some languages use different plural rules for n > 4
http://cldr.unicode.org/index/cldr-spec/plural-rules
parent
8da3155e
Pipeline
#61216
passed with stage
in 11 minutes and 28 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
playlist.cpp
View file @
e35afcaa
...
...
@@ -574,7 +574,9 @@ void Playlist::slotOpenItemDir()
if
(
pathList
.
length
()
>
4
)
{
if
(
KMessageBox
::
warningContinueCancel
(
this
,
i18n
(
"You are about to open %1 directories. Are you sure you want to continue?"
,
pathList
.
length
()),
i18np
(
"You are about to open directory. Are you sure you want to continue?"
,
"You are about to open %1 directories. Are you sure you want to continue?"
,
pathList
.
length
()),
i18n
(
"Open Containing Folder"
)
)
==
KMessageBox
::
Cancel
)
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment