Skip to content

Commit ac1991c

Browse files
committed
fix copy dialog title
1 parent 2057c14 commit ac1991c

File tree

1 file changed

+1
-1
lines changed
  • app/src/main/kotlin/com/simplemobiletools/filemanager/dialogs

1 file changed

+1
-1
lines changed

app/src/main/kotlin/com/simplemobiletools/filemanager/dialogs/CopyDialog.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ class CopyDialog(val activity: Activity, val files: List<File>, val path: String
3939
}
4040

4141
AlertDialog.Builder(mContext)
42-
.setTitle(mContext.resources.getString(R.string.create_new))
42+
.setTitle(mContext.resources.getString(if (files.size == 1) R.string.copy_item else R.string.copy_items))
4343
.setView(view)
4444
.setPositiveButton(R.string.ok, null)
4545
.setNegativeButton(R.string.cancel, null)

0 commit comments

Comments
 (0)