diff options
| author | Oliver Beard <[email protected]> | 2023-11-16 12:46:09 +0000 |
|---|---|---|
| committer | Méven Car <[email protected]> | 2023-11-21 08:58:22 +0000 |
| commit | cee87e2e33154be460ee78b8163e30d5803fdd3e (patch) | |
| tree | 489e8f4859da43247b88f88fe8629032af18068e /src | |
| parent | 18f3790fd85b2787e80b45decd473c007c5f1837 (diff) | |
dolphinview: Change case of status bar text
We should use lower case for this text, matching other strings (properties dialog, information panel).
Diffstat (limited to 'src')
| -rw-r--r-- | src/views/dolphinview.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/views/dolphinview.cpp b/src/views/dolphinview.cpp index 0bb73e623..704ecda0c 100644 --- a/src/views/dolphinview.cpp +++ b/src/views/dolphinview.cpp @@ -640,11 +640,11 @@ void DolphinView::emitStatusBarText(const int folderCount, const int fileCount, if (selection == HasSelection) { // At least 2 items are selected because the case of 1 selected item is handled in // DolphinView::requestStatusBarText(). - foldersText = i18ncp("@info:status", "1 Folder selected", "%1 Folders selected", folderCount); - filesText = i18ncp("@info:status", "1 File selected", "%1 Files selected", fileCount); + foldersText = i18ncp("@info:status", "1 folder selected", "%1 folders selected", folderCount); + filesText = i18ncp("@info:status", "1 file selected", "%1 files selected", fileCount); } else { - foldersText = i18ncp("@info:status", "1 Folder", "%1 Folders", folderCount); - filesText = i18ncp("@info:status", "1 File", "%1 Files", fileCount); + foldersText = i18ncp("@info:status", "1 folder", "%1 folders", folderCount); + filesText = i18ncp("@info:status", "1 file", "%1 files", fileCount); } if (fileCount > 0 && folderCount > 0) { @@ -654,7 +654,7 @@ void DolphinView::emitStatusBarText(const int folderCount, const int fileCount, } else if (folderCount > 0) { summary = foldersText; } else { - summary = i18nc("@info:status", "0 Folders, 0 Files"); + summary = i18nc("@info:status", "0 folders, 0 files"); } Q_EMIT statusBarTextChanged(summary); } |
