diff --git a/js/ui/appDisplay.js b/js/ui/appDisplay.js index 99c052b79..08febc491 100644 --- a/js/ui/appDisplay.js +++ b/js/ui/appDisplay.js @@ -115,7 +115,8 @@ function _findBestFolderName(apps) { }, commonCategories); for (let category of commonCategories) { - let translated = Shell.util_get_translated_folder_name(category); + const directory = '%s.directory'.format(category); + const translated = Shell.util_get_translated_folder_name(directory); if (translated !== null) return translated; }