Skip to content

Commit

Permalink
Updated error message for failed folder synchronization ('download' n…
Browse files Browse the repository at this point in the history
…ot anymore)
  • Loading branch information
davivel committed Sep 7, 2015
1 parent 6596c22 commit 2d3919d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion res/values/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -341,7 +341,7 @@
<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>
Expand Down
2 changes: 1 addition & 1 deletion src/com/owncloud/android/utils/ErrorMessageAdapter.java
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,7 @@ public static String getErrorCauseMessage(RemoteOperationResult result,

} 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);
}
}
Expand Down

0 comments on commit 2d3919d

Please sign in to comment.