Changed title in sharing dialog from 'Share link' to 'Sharing' (seen in web UI)

This commit is contained in:
David A. Velasco 2015-10-13 16:16:45 +02:00
parent 2855a81cf0
commit bc5687b74a
2 changed files with 2 additions and 2 deletions

View file

@ -367,7 +367,7 @@
<string name="file_list__footer__files_and_folder">%1$d files, 1 folder</string>
<string name="file_list__footer__files_and_folders">%1$d files, %2$d folders</string>
<string name="share_link_title">Share link</string>
<string name="share_dialog_title">Sharing</string>
<string name="share_with_user_section_title">Share with Users and Groups</string>
<string name="share_no_users">No data shared with users yet</string>
<string name="share_add_user_or_group">Add User or Group</string>

View file

@ -129,7 +129,7 @@ public class ShareFileDialogFragment extends DialogFragment
AlertDialog.Builder builder = new AlertDialog.Builder(getActivity());
builder.setView(view)
.setPositiveButton(R.string.common_ok, this)
.setTitle(R.string.share_link_title);
.setTitle(R.string.share_dialog_title);
Dialog d = builder.create();
return d;