Updated error message for failed folder synchronization ('download' not anymore)
authorDavid A. Velasco <dvelasco@solidgear.es>
Fri, 28 Aug 2015 16:19:20 +0000 (18:19 +0200)
committerDavid A. Velasco <dvelasco@solidgear.es>
Fri, 25 Sep 2015 13:13:59 +0000 (15:13 +0200)
res/values/strings.xml
src/com/owncloud/android/utils/ErrorMessageAdapter.java

index 24f9fdd..c1bf789 100644 (file)
        <string name="prefs_category_security">Security</string>
 
        <string name="prefs_instant_video_upload_path_title">Upload Video Path</string>
-    <string name="download_folder_failed_content">Download of %1$s folder could not be completed</string>
+    <string name="sync_folder_failed_content">Synchronization of %1$s folder could not be completed</string>
 
        <string name="shared_subject_header">shared</string>
        <string name="with_you_subject_header">with you</string>
index b80cc57..945f70f 100644 (file)
@@ -238,7 +238,7 @@ public class ErrorMessageAdapter {
 
                 } else {    // Generic error
                     // Show a Message, operation finished without success
-                    message = String.format(res.getString(R.string.download_folder_failed_content),
+                    message = String.format(res.getString(R.string.sync_folder_failed_content),
                             folderPathName);
                 }
             }