File tree Expand file tree Collapse file tree 3 files changed +3
-4
lines changed
kotlin/org/fossify/filemanager/activities Expand file tree Collapse file tree 3 files changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66
77## [ Unreleased]
88### Added
9- - Added multiple files "save as"-intent ([ #345 ] )
9+ - Support for saving multiple files ([ #345 ] )
1010
1111## [ 1.5.0] - 2025-12-16
1212### Changed
Original file line number Diff line number Diff line change @@ -13,7 +13,6 @@ import org.fossify.filemanager.extensions.config
1313import java.io.File
1414import java.io.IOException
1515
16- @Suppress(" TooManyFunctions" )
1716class SaveAsActivity : SimpleActivity () {
1817 private val binding by viewBinding(ActivitySaveAsBinding ::inflate)
1918
@@ -187,7 +186,8 @@ class SaveAsActivity : SimpleActivity() {
187186 runOnUiThread {
188187 when {
189188 result.successCount > 0 && result.errorCount == 0 -> {
190- toast(getString(R .string.file_saved))
189+ val message = resources.getQuantityString(R .plurals.files_saved,result.successCount)
190+ toast(message)
191191 }
192192 result.successCount > 0 && result.errorCount > 0 -> {
193193 toast(getString(R .string.files_saved_partially))
Original file line number Diff line number Diff line change 1313 <string name =" recents" >Recents</string >
1414 <string name =" show_recents" >Show recents</string >
1515 <string name =" invert_colors" >Invert colors</string >
16- <string name =" files_saved" >Files saved successfully</string >
1716 <string name =" files_saved_partially" >Files saved partially</string >
1817
1918 <!-- Open as -->
You can’t perform that action at this time.
0 commit comments