Mario Danic 8 жил өмнө
parent
commit
3058682268

+ 1 - 1
src/custom/res/values/setup.xml

@@ -59,7 +59,7 @@
     <bool name="multiaccount_support">true</bool>
 
     <!-- Drawer options -->
-    <bool name="recently_added_enabled">true</bool>
+    <bool name="recently_added_enabled">false</bool>
     <bool name="recently_modified_enabled">true</bool>
     <bool name="shared_enabled">true</bool>
     <bool name="videos_enabled">true</bool>

+ 13 - 9
src/main/java/com/owncloud/android/ui/activity/DrawerActivity.java

@@ -299,9 +299,13 @@ public abstract class DrawerActivity extends ToolbarActivity implements DisplayU
             navigationView.getMenu().removeItem(R.id.nav_all_files);
             navigationView.getMenu().removeItem(R.id.nav_settings);
             navigationView.getMenu().removeItem(R.id.nav_favorites);
-        } else if (getResources().getBoolean(R.bool.use_home)) {
+        }
+
+        if (getResources().getBoolean(R.bool.use_home) && navigationView.getMenu().findItem(R.id.nav_all_files) !=
+                null) {
             navigationView.getMenu().findItem(R.id.nav_all_files).setTitle(getResources().
                     getString(R.string.drawer_item_home));
+            navigationView.getMenu().findItem(R.id.nav_all_files).setIcon(R.drawable.ic_home);
         }
 
         if (!getResources().getBoolean(R.bool.participate_enabled)) {
@@ -309,20 +313,20 @@ public abstract class DrawerActivity extends ToolbarActivity implements DisplayU
         }
 
         if (AccountUtils.hasSearchSupport(AccountUtils.getCurrentOwnCloudAccount(MainApp.getAppContext()))) {
-            if (getResources().getBoolean(R.bool.recently_added_enabled)) {
-                navigationView.getMenu().findItem(R.id.nav_recently_added).setVisible(true);
+            if (!getResources().getBoolean(R.bool.recently_added_enabled)) {
+                navigationView.getMenu().removeItem(R.id.nav_recently_added);
             }
 
-            if (getResources().getBoolean(R.bool.recently_modified_enabled)) {
-                navigationView.getMenu().findItem(R.id.nav_recently_modified).setVisible(true);
+            if (!getResources().getBoolean(R.bool.recently_modified_enabled)) {
+                navigationView.getMenu().removeItem(R.id.nav_recently_modified);
             }
 
-            if (getResources().getBoolean(R.bool.shared_enabled)) {
-                navigationView.getMenu().findItem(R.id.nav_shared).setVisible(true);
+            if (!getResources().getBoolean(R.bool.shared_enabled)) {
+                navigationView.getMenu().removeItem(R.id.nav_shared);
             }
 
-            if (getResources().getBoolean(R.bool.videos_enabled)) {
-                navigationView.getMenu().findItem(R.id.nav_videos).setVisible(true);
+            if (!getResources().getBoolean(R.bool.videos_enabled)) {
+                navigationView.getMenu().removeItem(R.id.nav_videos);
             }
         }
     }

+ 0 - 50
src/main/java/com/owncloud/android/ui/activity/FileDisplayActivity.java

@@ -81,7 +81,6 @@ import com.owncloud.android.operations.SynchronizeFileOperation;
 import com.owncloud.android.operations.UploadFileOperation;
 import com.owncloud.android.services.observer.FileObserverService;
 import com.owncloud.android.syncadapter.FileSyncAdapter;
-import com.owncloud.android.ui.events.ToggleMenuItemsVisibilityEvent;
 import com.owncloud.android.ui.fragment.ExtendedListFragment;
 import com.owncloud.android.ui.fragment.FileDetailFragment;
 import com.owncloud.android.ui.fragment.FileFragment;
@@ -98,9 +97,6 @@ import com.owncloud.android.utils.DisplayUtils;
 import com.owncloud.android.utils.ErrorMessageAdapter;
 import com.owncloud.android.utils.PermissionUtil;
 
-import org.greenrobot.eventbus.Subscribe;
-import org.greenrobot.eventbus.ThreadMode;
-
 import java.io.File;
 import java.util.ArrayList;
 import java.util.Collection;
@@ -150,8 +146,6 @@ public class FileDisplayActivity extends HookActivity
     private OCFile mWaitingToSend;
 
     private Collection<MenuItem> mDrawerMenuItemstoShowHideList;
-    private Collection<MenuItem> mMenuItemsToHide = new ArrayList<>();
-    private Collection<MenuItem> mMenuItemsToShow = new ArrayList<>();
 
     private String searchQuery;
 
@@ -589,53 +583,9 @@ public class FileDisplayActivity extends HookActivity
             menuItem.setVisible(!drawerOpen);
         }
 
-        for (MenuItem menuItem : mMenuItemsToHide) {
-            menuItem.setVisible(false);
-        }
-
-        for (MenuItem menuItem : mMenuItemsToShow) {
-            menuItem.setVisible(true);
-        }
-
         return super.onPrepareOptionsMenu(menu);
     }
 
-    @Subscribe(threadMode = ThreadMode.MAIN)
-    public void onMessageEvent(final ToggleMenuItemsVisibilityEvent event) {
-        mMenuItemsToHide = new ArrayList<>();
-        mMenuItemsToShow = new ArrayList<>();
-
-        if (mMenu != null) {
-            if (event.getMenuHideType().equals(
-                    ToggleMenuItemsVisibilityEvent.MenuHideType.HIDE_LIST_GRID_SWITCH_ITEM)) {
-                if (event.isHideMenuItems()) {
-                    mMenuItemsToHide.add(mMenu.findItem(R.id.action_switch_view));
-                } else {
-                    mMenuItemsToShow.add(mMenu.findItem(R.id.action_switch_view));
-                }
-            } else if (event.getMenuHideType().equals(
-                    ToggleMenuItemsVisibilityEvent.MenuHideType.HIDE_SORT_AND_LG_SWITCH_ITEM)) {
-                if (event.isHideMenuItems()) {
-                    mMenuItemsToHide.add(mMenu.findItem(R.id.action_switch_view));
-                    mMenuItemsToHide.add(mMenu.findItem(R.id.action_sort));
-                } else {
-                    mMenuItemsToShow.add(mMenu.findItem(R.id.action_switch_view));
-                    mMenuItemsToHide.add(mMenu.findItem(R.id.action_sort));
-                }
-
-            } else if (event.getMenuHideType().equals(
-                    ToggleMenuItemsVisibilityEvent.MenuHideType.HIDE_SORT_ITEM)) {
-                if (event.isHideMenuItems()) {
-                    mMenuItemsToHide.add(mMenu.findItem(R.id.action_sort));
-                } else {
-                    mMenuItemsToShow.add(mMenu.findItem(R.id.action_sort));
-                }
-            }
-        }
-
-        invalidateOptionsMenu();
-    }
-
     @Override
     public boolean onCreateOptionsMenu(Menu menu) {
         MenuInflater inflater = getMenuInflater();

+ 20 - 12
src/main/java/com/owncloud/android/ui/adapter/FileListListAdapter.java

@@ -59,6 +59,7 @@ import com.owncloud.android.utils.DisplayUtils;
 import com.owncloud.android.utils.FileStorageUtils;
 import com.owncloud.android.utils.MimeTypeUtil;
 
+import java.io.File;
 import java.util.ArrayList;
 import java.util.Vector;
 
@@ -426,27 +427,34 @@ public class FileListListAdapter extends BaseAdapter {
         notifyDataSetChanged();
     }
 
+    private void searchForLocalFileInDefaultPath(OCFile file) {
+        if (file.getStoragePath() == null && !file.isFolder()) {
+            File f = new File(FileStorageUtils.getDefaultSavePathFor(mAccount.name, file));
+            if (f.exists()) {
+                file.setStoragePath(f.getAbsolutePath());
+                file.setLastSyncDateForData(f.lastModified());
+            }
+        }
+    }
+
     public void setData(ArrayList<Object> objects, ExtendedListFragment.SearchType searchType) {
         isSpecialFilter = true;
 
         mFiles = new Vector<>();
         for (int i = 0; i < objects.size(); i++) {
             OCFile ocFile = FileStorageUtils.fillOCFile((RemoteFile) objects.get(i));
+            searchForLocalFileInDefaultPath(ocFile);
+
             mFiles.add(ocFile);
         }
 
-        /*if (!mShowHiddenFiles) {
-            mFiles = filterHiddenFiles(mFiles);
-        }*/
+        /*if (!searchType.equals(ExtendedListFragment.SearchType.FAVORITE_SEARCH) &&
+                !searchType.equals(ExtendedListFragment.SearchType.FAVORITE_SEARCH_FILTER) &&
+                !searchType.equals(ExtendedListFragment.SearchType.RECENTLY_MODIFIED_SEARCH) &&
+                !searchType.equals(ExtendedListFragment.SearchType.RECENTLY_MODIFIED_SEARCH_FILTER)) {
+            mFiles = FileStorageUtils.sortOcFolder(mFiles);
+
 
-        if (searchType.equals(ExtendedListFragment.SearchType.FAVORITE_SEARCH) ||
-                searchType.equals(ExtendedListFragment.SearchType.FAVORITE_SEARCH_FILTER) ||
-                searchType.equals(ExtendedListFragment.SearchType.RECENTLY_MODIFIED_SEARCH) ||
-                searchType.equals(ExtendedListFragment.SearchType.RECENTLY_MODIFIED_SEARCH_FILTER) ||
-                searchType.equals(ExtendedListFragment.SearchType.PHOTO_SEARCH) ||
-                searchType.equals(ExtendedListFragment.SearchType.PHOTOS_SEARCH_FILTER) ||
-                searchType.equals(ExtendedListFragment.SearchType.VIDEO_SEARCH) ||
-                searchType.equals(ExtendedListFragment.SearchType.VIDEO_SEARCH_FILTER)) {
             Integer tempSortOrder = FileStorageUtils.mSortOrder;
             Boolean tempSortAsc = FileStorageUtils.mSortAscending;
             FileStorageUtils.mSortOrder = 1;
@@ -456,7 +464,7 @@ public class FileListListAdapter extends BaseAdapter {
             FileStorageUtils.mSortAscending = tempSortAsc;
         } else {
             mFiles = FileStorageUtils.sortOcFolder(mFiles);
-        }
+        }*/
 
         mFilesAll = new Vector<>();
         mFilesAll.addAll(mFiles);

+ 0 - 50
src/main/java/com/owncloud/android/ui/events/ToggleMenuItemsVisibilityEvent.java

@@ -1,50 +0,0 @@
-/**
- * Nextcloud Android client application
- *
- * @author Mario Danic
- * Copyright (C) 2017 Mario Danic
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Affero General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU Affero General Public License for more details.
- *
- * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
- */
-package com.owncloud.android.ui.events;
-
-/**
- * Hide menu items event
- */
-
-public class ToggleMenuItemsVisibilityEvent {
-    public enum MenuHideType {
-        HIDE_LIST_GRID_SWITCH_ITEM,
-        HIDE_SORT_ITEM,
-        HIDE_SORT_AND_LG_SWITCH_ITEM
-    }
-
-
-    public final MenuHideType menuHideType;
-    public final boolean hideMenuItems;
-
-    public ToggleMenuItemsVisibilityEvent(MenuHideType menuHideType, boolean hideMenuItems) {
-        this.menuHideType = menuHideType;
-        this.hideMenuItems = hideMenuItems;
-    }
-
-    public boolean isHideMenuItems() {
-        return hideMenuItems;
-    }
-
-    public MenuHideType getMenuHideType() {
-        return menuHideType;
-    }
-
-}

+ 17 - 9
src/main/java/com/owncloud/android/ui/fragment/ExtendedListFragment.java

@@ -78,6 +78,7 @@ import static com.owncloud.android.ui.fragment.ExtendedListFragment.SearchType.F
 import static com.owncloud.android.ui.fragment.ExtendedListFragment.SearchType.FAVORITE_SEARCH_FILTER;
 import static com.owncloud.android.ui.fragment.ExtendedListFragment.SearchType.FILE_SEARCH;
 import static com.owncloud.android.ui.fragment.ExtendedListFragment.SearchType.NO_SEARCH;
+import static com.owncloud.android.ui.fragment.ExtendedListFragment.SearchType.PHOTOS_SEARCH_FILTER;
 import static com.owncloud.android.ui.fragment.ExtendedListFragment.SearchType.PHOTO_SEARCH;
 import static com.owncloud.android.ui.fragment.ExtendedListFragment.SearchType.RECENTLY_ADDED_SEARCH;
 import static com.owncloud.android.ui.fragment.ExtendedListFragment.SearchType.RECENTLY_ADDED_SEARCH_FILTER;
@@ -637,30 +638,37 @@ public class ExtendedListFragment extends Fragment
                             R.string.file_list_empty, R.drawable.ic_search_light_grey);
                 } else if (searchType == FAVORITE_SEARCH) {
                     setMessageForEmptyList(R.string.file_list_empty_headline_server_search,
-                            R.string.file_list_empty_favorites, R.drawable.ic_search_light_grey);
+                            R.string.file_list_empty_favorites, R.drawable.ic_favorite_grey);
                 } else if (searchType == VIDEO_SEARCH) {
                     setMessageForEmptyList(R.string.file_list_empty_headline_server_search_videos,
-                            R.string.file_list_empty_text_videos, R.drawable.ic_search_light_grey);
+                            R.string.file_list_empty_text_videos, R.drawable.ic_list_empty_video);
                 } else if (searchType == PHOTO_SEARCH) {
                     setMessageForEmptyList(R.string.file_list_empty_headline_server_search_photos,
-                            R.string.file_list_empty_text_photos, R.drawable.ic_search_light_grey);
+                            R.string.file_list_empty_text_photos, R.drawable.ic_list_empty_image);
                 } else if (searchType == RECENTLY_MODIFIED_SEARCH) {
                     setMessageForEmptyList(R.string.file_list_empty_headline_server_search,
-                            R.string.file_list_empty_recently_modified, R.drawable.ic_search_light_grey);
+                            R.string.file_list_empty_recently_modified, R.drawable.ic_list_empty_recent);
                 } else if (searchType == RECENTLY_ADDED_SEARCH) {
                     setMessageForEmptyList(R.string.file_list_empty_headline_server_search,
-                            R.string.file_list_empty_recently_added, R.drawable.ic_search_light_grey);
+                            R.string.file_list_empty_recently_added, R.drawable.ic_list_empty_recent);
                 } else if (searchType == REGULAR_FILTER) {
                     setMessageForEmptyList(R.string.file_list_empty_headline_search,
                             R.string.file_list_empty_search, R.drawable.ic_search_light_grey);
                 } else if (searchType == FAVORITE_SEARCH_FILTER) {
-
+                    setMessageForEmptyList(R.string.file_list_empty_headline_server_search,
+                            R.string.file_list_empty_favorites_filter, R.drawable.ic_favorite_grey);
                 } else if (searchType == VIDEO_SEARCH_FILTER) {
-
+                    setMessageForEmptyList(R.string.file_list_empty_headline_server_search_videos,
+                            R.string.file_list_empty_text_videos_filter, R.drawable.ic_list_empty_video);
+                } else if (searchType == PHOTOS_SEARCH_FILTER) {
+                    setMessageForEmptyList(R.string.file_list_empty_headline_server_search_photos,
+                            R.string.file_list_empty_text_photos_filter, R.drawable.ic_list_empty_image);
                 } else if (searchType == RECENTLY_MODIFIED_SEARCH_FILTER) {
-
+                    setMessageForEmptyList(R.string.file_list_empty_headline_server_search,
+                            R.string.file_list_empty_recently_modified_filter, R.drawable.ic_list_empty_recent);
                 } else if (searchType == RECENTLY_ADDED_SEARCH_FILTER) {
-
+                    setMessageForEmptyList(R.string.file_list_empty_headline_server_search,
+                            R.string.file_list_empty_recently_added_filter, R.drawable.ic_list_empty_recent);
                 }
             }
         });

+ 1 - 10
src/main/java/com/owncloud/android/ui/fragment/OCFileListFragment.java

@@ -77,7 +77,6 @@ import com.owncloud.android.ui.dialog.RenameFileDialogFragment;
 import com.owncloud.android.ui.events.DummyDrawerEvent;
 import com.owncloud.android.ui.events.MenuItemClickEvent;
 import com.owncloud.android.ui.events.SearchEvent;
-import com.owncloud.android.ui.events.ToggleMenuItemsVisibilityEvent;
 import com.owncloud.android.ui.helpers.SparseBooleanArrayParcelable;
 import com.owncloud.android.ui.interfaces.OCFileListFragmentInterface;
 import com.owncloud.android.ui.preview.PreviewImageFragment;
@@ -210,6 +209,7 @@ public class OCFileListFragment extends ExtendedListFragment implements OCFileLi
         if (getResources().getBoolean(R.bool.use_home)) {
             bottomNavigationView.getMenu().findItem(R.id.nav_bar_files).setTitle(getResources().
                     getString(R.string.drawer_item_home));
+            bottomNavigationView.getMenu().findItem(R.id.nav_bar_files).setIcon(R.drawable.ic_home);
         }
 
         bottomNavigationView.setOnNavigationItemSelectedListener(
@@ -1156,7 +1156,6 @@ public class OCFileListFragment extends ExtendedListFragment implements OCFileLi
             SearchOperation operation = new SearchOperation(event.getSearchQuery(), event.getSearchType());
             RemoteOperationResult remoteOperationResult = operation.execute(mClient);
             if (remoteOperationResult.isSuccess() && remoteOperationResult.getData() != null) {
-
                 mAdapter.setData(remoteOperationResult.getData(), currentSearchType);
             }
 
@@ -1167,18 +1166,10 @@ public class OCFileListFragment extends ExtendedListFragment implements OCFileLi
                         switchToGridView();
                     }
                 });
-
-                EventBus.getDefault().post(new ToggleMenuItemsVisibilityEvent(
-                        ToggleMenuItemsVisibilityEvent.MenuHideType.HIDE_SORT_AND_LG_SWITCH_ITEM, true));
             } else if (currentSearchType.equals(SearchType.NO_SEARCH) || currentSearchType.equals(
                     SearchType.REGULAR_FILTER)) {
-                EventBus.getDefault().post(new ToggleMenuItemsVisibilityEvent(
-                        ToggleMenuItemsVisibilityEvent.MenuHideType.HIDE_SORT_AND_LG_SWITCH_ITEM, false));
-
                 new Handler(Looper.getMainLooper()).post(switchViewsRunnable);
             } else {
-                EventBus.getDefault().post(new ToggleMenuItemsVisibilityEvent(
-                        ToggleMenuItemsVisibilityEvent.MenuHideType.HIDE_SORT_ITEM, true));
                 new Handler(Looper.getMainLooper()).post(switchViewsRunnable);
             }
 

+ 25 - 17
src/main/res/menu/drawer_menu.xml

@@ -22,51 +22,57 @@
       all items in this group MUST have orderInCategory="0" set
 
     -->
-    <group android:id="@+id/drawer_menu_standard" android:checkableBehavior="single">
+    <group
+        android:id="@+id/drawer_menu_standard"
+        android:checkableBehavior="single">
         <item
-            android:orderInCategory="0"
             android:id="@+id/nav_all_files"
             android:icon="@drawable/ic_folder_open"
+            android:orderInCategory="0"
             android:title="@string/drawer_item_all_files"/>
         <item
-            android:orderInCategory="0"
             android:id="@+id/nav_favorites"
             android:icon="@drawable/ic_favorite"
+            android:orderInCategory="0"
             android:title="@string/drawer_item_favorites"/>
         <item
             android:id="@+id/nav_photos"
             android:icon="@drawable/file_image"
-            android:title="@string/drawer_item_photos"/>
+            android:title="@string/drawer_item_photos"
+            android:visible="false"/>
         <item
-            android:orderInCategory="0"
             android:id="@+id/nav_recently_added"
+            android:icon="@drawable/ic_recent"
+            android:orderInCategory="0"
             android:title="@string/drawer_item_recently_added"
             android:visible="false"/>
         <item
-            android:orderInCategory="0"
             android:id="@+id/nav_recently_modified"
+            android:icon="@drawable/ic_recent"
+            android:orderInCategory="0"
             android:title="@string/drawer_item_recently_modified"
             android:visible="false"/>
         <item
-            android:orderInCategory="0"
             android:id="@+id/nav_shared"
+            android:orderInCategory="0"
+            android:icon="@drawable/ic_shared"
             android:title="@string/drawer_item_shared"
             android:visible="false"/>
         <item
-            android:orderInCategory="0"
             android:id="@+id/nav_videos"
-            android:title="@string/drawer_item_videos"
             android:icon="@drawable/file_movie"
+            android:orderInCategory="0"
+            android:title="@string/drawer_item_videos"
             android:visible="false"/>
         <item
-            android:orderInCategory="0"
             android:id="@+id/nav_on_device"
             android:icon="@drawable/ic_action_available_offline"
+            android:orderInCategory="0"
             android:title="@string/drawer_item_on_device"/>
         <item
-            android:orderInCategory="0"
             android:id="@+id/nav_folder_sync"
             android:icon="@drawable/ic_cloud_upload"
+            android:orderInCategory="0"
             android:title="@string/drawer_folder_sync"/>
     </group>
 
@@ -77,35 +83,37 @@
     -->
     <group android:id="@+id/drawer_menu_accounts">
         <item
-            android:orderInCategory="2"
             android:id="@+id/drawer_menu_account_add"
             android:icon="@drawable/ic_account_plus"
+            android:orderInCategory="2"
             android:title="@string/prefs_add_account"/>
         <item
-            android:orderInCategory="2"
             android:id="@+id/drawer_menu_account_manage"
             android:icon="@drawable/ic_settings"
+            android:orderInCategory="2"
             android:title="@string/drawer_manage_accounts"/>
     </group>
 
     <!--
       all items in this group MUST have orderInCategory="3" set
     -->
-    <group android:id="@+id/drawer_menu_bottom" android:checkableBehavior="single">
+    <group
+        android:id="@+id/drawer_menu_bottom"
+        android:checkableBehavior="single">
         <item
-            android:orderInCategory="2"
             android:id="@+id/nav_uploads"
             android:icon="@drawable/ic_uploads"
+            android:orderInCategory="2"
             android:title="@string/drawer_item_uploads_list"/>
         <item
-            android:orderInCategory="3"
             android:id="@+id/nav_settings"
             android:icon="@drawable/ic_settings"
+            android:orderInCategory="3"
             android:title="@string/actionbar_settings"/>
         <item
-            android:orderInCategory="3"
             android:id="@+id/nav_participate"
             android:icon="@drawable/ic_participate"
+            android:orderInCategory="3"
             android:title="@string/drawer_participate"/>
     </group>
 

+ 2 - 1
src/main/res/menu/main_menu.xml

@@ -18,7 +18,8 @@
   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 -->
 <menu xmlns:android="http://schemas.android.com/apk/res/android"
-    xmlns:app="http://schemas.android.com/apk/res-auto">
+    xmlns:app="http://schemas.android.com/apk/res-auto"
+    >
 
     <item android:id="@+id/action_search"
           android:icon="@drawable/ic_search"

+ 7 - 1
src/main/res/values/strings.xml

@@ -89,6 +89,7 @@
     <string name="file_list_empty_headline">No files in here</string>
     <string name="file_list_empty">Upload some content or sync with your devices!</string>
     <string name="file_list_empty_favorites">Favorite some files or sync with your devices!</string>
+    <string name="file_list_empty_favorites_filter">No favorited files found for your query!</string>
     <string name="file_list_loading">Loading&#8230;</string>
     <string name="file_list_no_app_for_file_type">No app found for file type!</string>
     <string name="local_file_list_empty">There are no files in this folder.</string>
@@ -97,10 +98,15 @@
     <string name="file_list_empty_headline_server_search_videos">No videos</string>
     <string name="file_list_empty_headline_server_search_photos">No photos</string>
     <string name="file_list_empty_search">Try looking in another folder?</string>
-    <string name="file_list_empty_recently_modified">No recently modified files found</string>
+    <string name="file_list_empty_recently_modified">No files modified in the last 7 days found</string>
+    <string name="file_list_empty_recently_modified_filter">No files for your query that were modified
+        in the last 7 days found!</string>
     <string name="file_list_empty_recently_added">No recently added files found</string>
+    <string name="file_list_empty_recently_added_filter">No recently added files for your query found!</string>
     <string name="file_list_empty_text_photos">Upload some photos or activate auto upload!</string>
+    <string name="file_list_empty_text_photos_filter">No photos for your query found!</string>
     <string name="file_list_empty_text_videos">Upload some videos or activate auto upload!</string>
+    <string name="file_list_empty_text_videos_filter">No videos for your query found!</string>
     <string name="upload_list_empty_headline">No uploads available</string>
     <string name="upload_list_empty_text">Upload some content or activate instant upload!</string>
     <string name="upload_list_empty_text_auto_upload">Upload some content or activate auto upload!</string>