From 5de593c2df23b214a3f871d019c7a4a8cbf60b44 Mon Sep 17 00:00:00 2001 From: chreddy Date: Thu, 7 Mar 2019 09:16:02 +0100 Subject: [PATCH 01/18] Updating danish translation --- app/src/main/res/values-da/strings.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/main/res/values-da/strings.xml b/app/src/main/res/values-da/strings.xml index 747d47b15..f90a8eec1 100644 --- a/app/src/main/res/values-da/strings.xml +++ b/app/src/main/res/values-da/strings.xml @@ -132,7 +132,7 @@ Dato taget Filtype Filudvidelse - Please note that grouping and sorting are 2 independent fields + Vær opmærksom på at gruppering og sortering er to individuelle felter Mappe vist på widget: From 2cc93282ffe3e34f93fce2d86994d6ce677517c9 Mon Sep 17 00:00:00 2001 From: tibbi Date: Sat, 9 Mar 2019 17:30:56 +0100 Subject: [PATCH 02/18] update commons to 5.10.6 --- app/build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/build.gradle b/app/build.gradle index 8dd25ee8d..23e13c0d5 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -61,7 +61,7 @@ android { } dependencies { - implementation 'com.simplemobiletools:commons:5.10.0' + implementation 'com.simplemobiletools:commons:5.10.6' implementation 'com.theartofdev.edmodo:android-image-cropper:2.8.0' implementation 'androidx.multidex:multidex:2.0.1' implementation 'it.sephiroth.android.exif:library:1.0.1' From 15f6d18f4685485c69cae07c6c7453cb2dde4503 Mon Sep 17 00:00:00 2001 From: tibbi Date: Sat, 9 Mar 2019 20:07:15 +0100 Subject: [PATCH 03/18] fix #1293, create a JobService for storing new media files in db --- app/src/main/AndroidManifest.xml | 5 + .../gallery/pro/activities/MainActivity.kt | 9 ++ .../gallery/pro/extensions/Context.kt | 7 +- .../gallery/pro/jobs/NewPhotoFetcher.kt | 101 ++++++++++++++++++ 4 files changed, 121 insertions(+), 1 deletion(-) create mode 100644 app/src/main/kotlin/com/simplemobiletools/gallery/pro/jobs/NewPhotoFetcher.kt diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml index dff3c06f6..aa2a48308 100644 --- a/app/src/main/AndroidManifest.xml +++ b/app/src/main/AndroidManifest.xml @@ -263,6 +263,11 @@ android:resource="@xml/widget_info"/> + + TYPE_VIDEOS path.isGif() -> TYPE_GIFS @@ -709,8 +713,9 @@ fun Context.addPathToDB(path: String) { else -> TYPE_IMAGES } + val videoDuration = if (type == TYPE_VIDEOS) path.getVideoDuration() else 0 val medium = Medium(null, path.getFilenameFromPath(), path, path.getParentPath(), System.currentTimeMillis(), System.currentTimeMillis(), - File(path).length(), type, 0, false, 0L) + File(path).length(), type, videoDuration, false, 0L) galleryDB.MediumDao().insert(medium) }.start() } diff --git a/app/src/main/kotlin/com/simplemobiletools/gallery/pro/jobs/NewPhotoFetcher.kt b/app/src/main/kotlin/com/simplemobiletools/gallery/pro/jobs/NewPhotoFetcher.kt new file mode 100644 index 000000000..8039ae280 --- /dev/null +++ b/app/src/main/kotlin/com/simplemobiletools/gallery/pro/jobs/NewPhotoFetcher.kt @@ -0,0 +1,101 @@ +package com.simplemobiletools.gallery.pro.jobs + +import android.annotation.TargetApi +import android.app.job.JobInfo +import android.app.job.JobParameters +import android.app.job.JobScheduler +import android.app.job.JobService +import android.content.ComponentName +import android.content.Context +import android.database.Cursor +import android.net.Uri +import android.os.Build +import android.os.Handler +import android.provider.MediaStore +import com.simplemobiletools.commons.extensions.getStringValue +import com.simplemobiletools.gallery.pro.extensions.addPathToDB + +// based on https://developer.android.com/reference/android/app/job/JobInfo.Builder.html#addTriggerContentUri(android.app.job.JobInfo.TriggerContentUri) +@TargetApi(Build.VERSION_CODES.N) +class NewPhotoFetcher : JobService() { + companion object { + const val PHOTO_VIDEO_CONTENT_JOB = 1 + private val MEDIA_URI = Uri.parse("content://${MediaStore.AUTHORITY}/") + private val PHOTO_PATH_SEGMENTS = MediaStore.Images.Media.EXTERNAL_CONTENT_URI.pathSegments + private val VIDEO_PATH_SEGMENTS = MediaStore.Video.Media.EXTERNAL_CONTENT_URI.pathSegments + } + + private val mHandler = Handler() + private val mWorker = Runnable { + scheduleJob(this@NewPhotoFetcher) + jobFinished(mRunningParams, false) + } + + private var mRunningParams: JobParameters? = null + + fun scheduleJob(context: Context) { + val componentName = ComponentName(context, NewPhotoFetcher::class.java) + val photoUri = MediaStore.Images.Media.EXTERNAL_CONTENT_URI + val videoUri = MediaStore.Video.Media.EXTERNAL_CONTENT_URI + JobInfo.Builder(PHOTO_VIDEO_CONTENT_JOB, componentName).apply { + addTriggerContentUri(JobInfo.TriggerContentUri(photoUri, JobInfo.TriggerContentUri.FLAG_NOTIFY_FOR_DESCENDANTS)) + addTriggerContentUri(JobInfo.TriggerContentUri(videoUri, JobInfo.TriggerContentUri.FLAG_NOTIFY_FOR_DESCENDANTS)) + addTriggerContentUri(JobInfo.TriggerContentUri(MEDIA_URI, 0)) + context.getSystemService(JobScheduler::class.java).schedule(build()) + } + } + + fun isScheduled(context: Context): Boolean { + val jobScheduler = context.getSystemService(JobScheduler::class.java) + val jobs = jobScheduler.allPendingJobs ?: return false + return jobs.any { it.id == PHOTO_VIDEO_CONTENT_JOB } + } + + override fun onStartJob(params: JobParameters): Boolean { + mRunningParams = params + + if (params.triggeredContentAuthorities != null && params.triggeredContentUris != null) { + val ids = arrayListOf() + for (uri in params.triggeredContentUris!!) { + val path = uri.pathSegments + if (path != null && (path.size == PHOTO_PATH_SEGMENTS.size + 1 || path.size == VIDEO_PATH_SEGMENTS.size + 1)) { + ids.add(path[path.size - 1]) + } + } + + if (ids.isNotEmpty()) { + val selection = StringBuilder() + for (id in ids) { + if (selection.isNotEmpty()) { + selection.append(" OR ") + } + selection.append("${MediaStore.Images.ImageColumns._ID} = '$id'") + } + + var cursor: Cursor? = null + try { + val projection = arrayOf(MediaStore.Images.ImageColumns.DATA) + val uris = arrayListOf(MediaStore.Images.Media.EXTERNAL_CONTENT_URI, MediaStore.Video.Media.EXTERNAL_CONTENT_URI) + uris.forEach { + cursor = contentResolver.query(it, projection, selection.toString(), null, null) + while (cursor!!.moveToNext()) { + val path = cursor!!.getStringValue(MediaStore.Images.ImageColumns.DATA) + addPathToDB(path) + } + } + } catch (ignored: Exception) { + } finally { + cursor?.close() + } + } + } + + mHandler.post(mWorker) + return true + } + + override fun onStopJob(params: JobParameters): Boolean { + mHandler.removeCallbacks(mWorker) + return false + } +} From ae91cfda72e3c81b688101f99ccd18f610366d8c Mon Sep 17 00:00:00 2001 From: tibbi Date: Sat, 9 Mar 2019 20:17:16 +0100 Subject: [PATCH 04/18] exclude facebook stickers by default --- .../gallery/pro/activities/MainActivity.kt | 16 ++++++++++++++++ .../gallery/pro/helpers/Config.kt | 4 ++++ .../gallery/pro/helpers/Constants.kt | 1 + 3 files changed, 21 insertions(+) diff --git a/app/src/main/kotlin/com/simplemobiletools/gallery/pro/activities/MainActivity.kt b/app/src/main/kotlin/com/simplemobiletools/gallery/pro/activities/MainActivity.kt index 7861e16cf..95ab1db88 100644 --- a/app/src/main/kotlin/com/simplemobiletools/gallery/pro/activities/MainActivity.kt +++ b/app/src/main/kotlin/com/simplemobiletools/gallery/pro/activities/MainActivity.kt @@ -400,10 +400,26 @@ class MainActivity : SimpleActivity(), DirectoryOperationsListener { }.start() } + private fun checkDefaultSpamFolders() { + if (!config.spamFoldersChecked) { + val spamFolders = arrayListOf( + "/storage/emulated/0/Android/data/com.facebook.orca/files/stickers" + ) + + spamFolders.forEach { + if (File(it).exists()) { + config.addExcludedFolder(it) + } + } + config.spamFoldersChecked = true + } + } + private fun tryLoadGallery() { handlePermission(PERMISSION_WRITE_STORAGE) { if (it) { checkOTGPath() + checkDefaultSpamFolders() if (config.showAll) { showAllMedia() diff --git a/app/src/main/kotlin/com/simplemobiletools/gallery/pro/helpers/Config.kt b/app/src/main/kotlin/com/simplemobiletools/gallery/pro/helpers/Config.kt index 8720bf3a8..82de77525 100644 --- a/app/src/main/kotlin/com/simplemobiletools/gallery/pro/helpers/Config.kt +++ b/app/src/main/kotlin/com/simplemobiletools/gallery/pro/helpers/Config.kt @@ -471,4 +471,8 @@ class Config(context: Context) : BaseConfig(context) { var showNotch: Boolean get() = prefs.getBoolean(SHOW_NOTCH, true) set(showNotch) = prefs.edit().putBoolean(SHOW_NOTCH, showNotch).apply() + + var spamFoldersChecked: Boolean + get() = prefs.getBoolean(SPAM_FOLDERS_CHECKED, false) + set(spamFoldersChecked) = prefs.edit().putBoolean(SPAM_FOLDERS_CHECKED, spamFoldersChecked).apply() } diff --git a/app/src/main/kotlin/com/simplemobiletools/gallery/pro/helpers/Constants.kt b/app/src/main/kotlin/com/simplemobiletools/gallery/pro/helpers/Constants.kt index 98eec7dfb..d0f2ee922 100644 --- a/app/src/main/kotlin/com/simplemobiletools/gallery/pro/helpers/Constants.kt +++ b/app/src/main/kotlin/com/simplemobiletools/gallery/pro/helpers/Constants.kt @@ -79,6 +79,7 @@ const val LAST_EDITOR_DRAW_COLOR = "last_editor_draw_color" const val LAST_EDITOR_BRUSH_SIZE = "last_editor_brush_size" const val SHOW_NOTCH = "show_notch" const val FILE_LOADING_PRIORITY = "file_loading_priority" +const val SPAM_FOLDERS_CHECKED = "spam_folders_checked" // slideshow const val SLIDESHOW_INTERVAL = "slideshow_interval" From 23d6fd110db2ad7990b8dea9f2f96f5026e43794 Mon Sep 17 00:00:00 2001 From: tibbi Date: Sat, 9 Mar 2019 20:34:57 +0100 Subject: [PATCH 05/18] update commons to 5.10.8 --- app/build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/build.gradle b/app/build.gradle index 23e13c0d5..77254d49a 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -61,7 +61,7 @@ android { } dependencies { - implementation 'com.simplemobiletools:commons:5.10.6' + implementation 'com.simplemobiletools:commons:5.10.8' implementation 'com.theartofdev.edmodo:android-image-cropper:2.8.0' implementation 'androidx.multidex:multidex:2.0.1' implementation 'it.sephiroth.android.exif:library:1.0.1' From 804eb08143c4f8d08d3c96e78c87812fa741fd99 Mon Sep 17 00:00:00 2001 From: tibbi Date: Sat, 9 Mar 2019 21:59:35 +0100 Subject: [PATCH 06/18] catch exceptions thrown at getting recycle bin files in the settings --- .../gallery/pro/activities/SettingsActivity.kt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/app/src/main/kotlin/com/simplemobiletools/gallery/pro/activities/SettingsActivity.kt b/app/src/main/kotlin/com/simplemobiletools/gallery/pro/activities/SettingsActivity.kt index 2b879b9b5..8c8586f8f 100644 --- a/app/src/main/kotlin/com/simplemobiletools/gallery/pro/activities/SettingsActivity.kt +++ b/app/src/main/kotlin/com/simplemobiletools/gallery/pro/activities/SettingsActivity.kt @@ -573,7 +573,10 @@ class SettingsActivity : SimpleActivity() { private fun setupEmptyRecycleBin() { Thread { - mRecycleBinContentSize = galleryDB.MediumDao().getDeletedMedia().sumByLong { it.size } + try { + mRecycleBinContentSize = galleryDB.MediumDao().getDeletedMedia().sumByLong { it.size } + } catch (ignored: Exception) { + } runOnUiThread { settings_empty_recycle_bin_size.text = mRecycleBinContentSize.formatSize() } From 8290f432822f55f52c007cc65243a6d1456cd7c0 Mon Sep 17 00:00:00 2001 From: tibbi Date: Sat, 9 Mar 2019 23:25:56 +0100 Subject: [PATCH 07/18] catch and show exceptions thrown at Editor filtering --- .../gallery/pro/activities/EditActivity.kt | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/app/src/main/kotlin/com/simplemobiletools/gallery/pro/activities/EditActivity.kt b/app/src/main/kotlin/com/simplemobiletools/gallery/pro/activities/EditActivity.kt index bde21bca8..aa4d554a6 100644 --- a/app/src/main/kotlin/com/simplemobiletools/gallery/pro/activities/EditActivity.kt +++ b/app/src/main/kotlin/com/simplemobiletools/gallery/pro/activities/EditActivity.kt @@ -583,7 +583,14 @@ class EditActivity : SimpleActivity(), CropImageView.OnCropImageCompleteListener val thumbnailSize = resources.getDimension(R.dimen.bottom_filters_thumbnail_size).toInt() val bitmap = Glide.with(this) .asBitmap() - .load(uri) + .load(uri).listener(object : RequestListener { + override fun onLoadFailed(e: GlideException?, model: Any?, target: Target?, isFirstResource: Boolean): Boolean { + showErrorToast(e.toString()) + return false + } + + override fun onResourceReady(resource: Bitmap?, model: Any?, target: Target?, dataSource: DataSource?, isFirstResource: Boolean) = false + }) .submit(thumbnailSize, thumbnailSize) .get() From 9d2026e6395daf7b67f339350c73b6b85bbe94c8 Mon Sep 17 00:00:00 2001 From: tibbi Date: Sat, 9 Mar 2019 23:28:46 +0100 Subject: [PATCH 08/18] catch some more exceptions at loading folders --- .../gallery/pro/activities/MainActivity.kt | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/app/src/main/kotlin/com/simplemobiletools/gallery/pro/activities/MainActivity.kt b/app/src/main/kotlin/com/simplemobiletools/gallery/pro/activities/MainActivity.kt index 95ab1db88..2d838281b 100644 --- a/app/src/main/kotlin/com/simplemobiletools/gallery/pro/activities/MainActivity.kt +++ b/app/src/main/kotlin/com/simplemobiletools/gallery/pro/activities/MainActivity.kt @@ -899,16 +899,16 @@ class MainActivity : SimpleActivity(), DirectoryOperationsListener { } } } - } catch (ignored: Exception) { - } - if (dirPathsToRemove.isNotEmpty()) { - val dirsToRemove = dirs.filter { dirPathsToRemove.contains(it.path) } - dirsToRemove.forEach { - mDirectoryDao.deleteDirPath(it.path) + if (dirPathsToRemove.isNotEmpty()) { + val dirsToRemove = dirs.filter { dirPathsToRemove.contains(it.path) } + dirsToRemove.forEach { + mDirectoryDao.deleteDirPath(it.path) + } + dirs.removeAll(dirsToRemove) + setupAdapter(dirs) } - dirs.removeAll(dirsToRemove) - setupAdapter(dirs) + } catch (ignored: Exception) { } val foldersToScan = mediaFetcher.getFoldersToScan() From bee4b0ff7256aa98d58ffb731ab5154fd7c96ac2 Mon Sep 17 00:00:00 2001 From: tibbi Date: Sat, 9 Mar 2019 23:30:02 +0100 Subject: [PATCH 09/18] adding a few more checks at activity state at loading fullscreen images --- .../simplemobiletools/gallery/pro/fragments/PhotoFragment.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/main/kotlin/com/simplemobiletools/gallery/pro/fragments/PhotoFragment.kt b/app/src/main/kotlin/com/simplemobiletools/gallery/pro/fragments/PhotoFragment.kt index 4a4754c94..6cad0ebcc 100644 --- a/app/src/main/kotlin/com/simplemobiletools/gallery/pro/fragments/PhotoFragment.kt +++ b/app/src/main/kotlin/com/simplemobiletools/gallery/pro/fragments/PhotoFragment.kt @@ -373,7 +373,7 @@ class PhotoFragment : ViewPagerFragment() { .apply(options) .listener(object : RequestListener { override fun onLoadFailed(e: GlideException?, model: Any?, target: Target?, isFirstResource: Boolean): Boolean { - if (activity != null) { + if (activity != null && !activity!!.isDestroyed && !activity!!.isFinishing) { tryLoadingWithPicasso(addZoomableView) } return false From 5592c23c4e9d7ee00d79dda18dd0e895a6f9df6c Mon Sep 17 00:00:00 2001 From: tibbi Date: Sun, 10 Mar 2019 09:58:50 +0100 Subject: [PATCH 10/18] ignore the photoFetcher at Android versions below 7 --- .../gallery/pro/activities/MainActivity.kt | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/app/src/main/kotlin/com/simplemobiletools/gallery/pro/activities/MainActivity.kt b/app/src/main/kotlin/com/simplemobiletools/gallery/pro/activities/MainActivity.kt index 2d838281b..f0eaac7cd 100644 --- a/app/src/main/kotlin/com/simplemobiletools/gallery/pro/activities/MainActivity.kt +++ b/app/src/main/kotlin/com/simplemobiletools/gallery/pro/activities/MainActivity.kt @@ -368,9 +368,11 @@ class MainActivity : SimpleActivity(), DirectoryOperationsListener { } private fun startNewPhotoFetcher() { - val photoFetcher = NewPhotoFetcher() - if (isNougatPlus() && !photoFetcher.isScheduled(applicationContext)) { - photoFetcher.scheduleJob(applicationContext) + if (isNougatPlus()) { + val photoFetcher = NewPhotoFetcher() + if (!photoFetcher.isScheduled(applicationContext)) { + photoFetcher.scheduleJob(applicationContext) + } } } From 14fb60f43caadd7d18b9c06e2da46a276b6d5414 Mon Sep 17 00:00:00 2001 From: tibbi Date: Sun, 10 Mar 2019 11:54:03 +0100 Subject: [PATCH 11/18] update version to 6.6.0 --- app/build.gradle | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/build.gradle b/app/build.gradle index 77254d49a..f159f6046 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -15,8 +15,8 @@ android { applicationId "com.simplemobiletools.gallery.pro" minSdkVersion 21 targetSdkVersion 28 - versionCode 233 - versionName "6.5.5" + versionCode 234 + versionName "6.6.0" multiDexEnabled true setProperty("archivesBaseName", "gallery") } From f283828ea2a04d5113ce9e980fcfd456ad2fff12 Mon Sep 17 00:00:00 2001 From: tibbi Date: Sun, 10 Mar 2019 11:54:10 +0100 Subject: [PATCH 12/18] updating changelog --- CHANGELOG.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index c99717a4d..02d4fd9d6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,13 @@ Changelog ========== +Version 6.6.0 *(2019-03-10)* +---------------------------- + + * Further improved new file discovery + * Exclude some folders by default, like fb stickers + * Added other stability and ux improvements + Version 6.5.5 *(2019-03-05)* ---------------------------- From 0dc1b8d8593b305a629e22a5f15916a7f4203cf2 Mon Sep 17 00:00:00 2001 From: FTno <16176811+FTno@users.noreply.github.com> Date: Sun, 10 Mar 2019 17:34:48 +0100 Subject: [PATCH 13/18] Update strings.xml Norwegian (nb) translation update --- app/src/main/res/values-nb/strings.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/main/res/values-nb/strings.xml b/app/src/main/res/values-nb/strings.xml index 1ba3f0202..f392ec28a 100644 --- a/app/src/main/res/values-nb/strings.xml +++ b/app/src/main/res/values-nb/strings.xml @@ -132,7 +132,7 @@ Dato tatt Filtype Endelse - Please note that grouping and sorting are 2 independent fields + Vær oppmerksom på at gruppering og sortering er to uavhengige områder Mappe vist på modulen: From 064bf7a74c80239addd0bbfccc73929e9a1694fb Mon Sep 17 00:00:00 2001 From: tibbi Date: Sun, 10 Mar 2019 17:38:25 +0100 Subject: [PATCH 14/18] updating the app short and long google play descriptions --- app/src/main/res/values-ar/strings.xml | 70 ++++++++++++------ app/src/main/res/values-az/strings.xml | 70 ++++++++++++------ app/src/main/res/values-ca/strings.xml | 70 ++++++++++++------ app/src/main/res/values-cs/strings.xml | 70 ++++++++++++------ app/src/main/res/values-da/strings.xml | 70 ++++++++++++------ app/src/main/res/values-de/strings.xml | 70 ++++++++++++------ app/src/main/res/values-el/strings.xml | 70 ++++++++++++------ app/src/main/res/values-es/strings.xml | 70 ++++++++++++------ app/src/main/res/values-fi/strings.xml | 70 ++++++++++++------ app/src/main/res/values-fr/strings.xml | 70 ++++++++++++------ app/src/main/res/values-gl/strings.xml | 70 ++++++++++++------ app/src/main/res/values-hr/strings.xml | 70 ++++++++++++------ app/src/main/res/values-hu/strings.xml | 70 ++++++++++++------ app/src/main/res/values-id/strings.xml | 70 ++++++++++++------ app/src/main/res/values-it/strings.xml | 70 ++++++++++++------ app/src/main/res/values-ja/strings.xml | 70 ++++++++++++------ app/src/main/res/values-ko-rKR/strings.xml | 70 ++++++++++++------ app/src/main/res/values-lt/strings.xml | 70 ++++++++++++------ app/src/main/res/values-nb/strings.xml | 70 ++++++++++++------ app/src/main/res/values-nl/strings.xml | 70 ++++++++++++------ app/src/main/res/values-pl/strings.xml | 72 ++++++++++++------ app/src/main/res/values-pt-rBR/strings.xml | 70 ++++++++++++------ app/src/main/res/values-pt/strings.xml | 70 ++++++++++++------ app/src/main/res/values-ru/strings.xml | 70 ++++++++++++------ app/src/main/res/values-sk/strings.xml | 70 ++++++++++++------ app/src/main/res/values-sl/strings.xml | 73 +++++++++++++------ app/src/main/res/values-sv/strings.xml | 70 ++++++++++++------ app/src/main/res/values-tr/strings.xml | 70 ++++++++++++------ app/src/main/res/values-uk/strings.xml | 70 ++++++++++++------ app/src/main/res/values-zh-rCN/strings.xml | 70 ++++++++++++------ app/src/main/res/values-zh-rTW/strings.xml | 70 ++++++++++++------ app/src/main/res/values/strings.xml | 70 ++++++++++++------ .../android/en-US/full_description.txt | 68 +++++++++++------ .../android/en-US/short_description.txt | 2 +- 34 files changed, 1587 insertions(+), 728 deletions(-) diff --git a/app/src/main/res/values-ar/strings.xml b/app/src/main/res/values-ar/strings.xml index 335301841..d66f0af28 100644 --- a/app/src/main/res/values-ar/strings.xml +++ b/app/src/main/res/values-ar/strings.xml @@ -224,33 +224,59 @@ - An offline gallery for managing your files without ads, respecting your privacy. + Offline gallery without ads. Organize, edit, recover and protect photos & videos - A highly customizable gallery capable of displaying many different image and video types including SVGs, RAWs, panoramic photos and videos. + Simple Gallery Pro is a highly customizable offline gallery. Organize & edit your photos, recover deleted files with the recycle bin, protect & hide files and view a huge variety of different photo & video formats including RAW, SVG and much more. - It is open source, contains no ads or unnecessary permissions. + The app contains no ads and unnecessary permissions. As the app doesn’t require internet access either, your privacy is protected. - Let\'s list some of its features worth mentioning: - 1. Search - 2. Slideshow - 3. Notch support - 4. Pinning folders to the top - 5. Filtering media files by type - 6. Recycle bin for easy file recovery - 7. Fullscreen view orientation locking - 8. Marking favorite files for easy access - 9. Quick fullscreen media closing with down gesture - 10. An editor for modifying images and applying filters - 11. Password protection for protecting hidden items or the whole app - 12. Changing the thumbnail column count with gestures or menu buttons - 13. Customizable bottom actions at the fullscreen view for quick access - 14. Showing extended details over fullscreen media with desired file properties - 15. Several different ways of sorting or grouping items, both ascending and descending - 16. Hiding folders (affects other apps too), excluding folders (affects only Simple Gallery) + ------------------------------------------------- + SIMPLE GALLERY PRO – FEATURES + ------------------------------------------------- - The fingerprint permission is needed for locking either hidden item visibility, the whole app, or protecting files from being deleted. + • Offline gallery with no ads or popups + • Simple gallery photo editor – crop, rotate, resize, draw, filters & more + • No internet access needed, giving you more privacy and security + • No unnecessary permissions required + • Quickly search images, videos & files + • Open & view many different photo and video types (RAW, SVG, panoramic etc) + • A variety of intuitive gestures to easily edit & organize files + • Lots of ways to filter, group & sort files + • Customize the appearance of Simple Gallery Pro + • Available in 32 languages + • Mark files as favorites for quick access + • Protect your photos & videos with a pattern, pin or fingerprint + • Use pin, pattern & fingerprint to protect the app launch or specific functions too + • Recover deleted photos & videos from the recycle bin + • Toggle visibility of files to hide photos & videos + • Create a customizable slideshow of your files + • View detailed information of your files (resolution, EXIF values etc) + • Simple Gallery Pro is open source + … and much much more! - This app is just one piece of a bigger series of apps. You can find the rest of them at https://www.simplemobiletools.com + PHOTO GALLERY EDITOR + Simple Gallery Pro makes it easy to edit your pictures on the fly. Crop, flip, rotate and resize your pictures. If you’re feeling a little more creative you can add filters and draw on your pictures! + + SUPPORT FOR MANY FILE TYPES + Unlike some other gallery viewers & photo organizers, Simple Gallery Pro supports a huge range of different file types including JPEG, PNG, MP4, MKV, RAW, SVG, Panoramic photos, Panoramic videos and many more. + + HIGHLY CUSTOMIZABLE GALLERY MANAGER + From the UI to the function buttons on the bottom toolbar, Simple Gallery Pro is highly customizable and works the way you want it to. No other gallery manager has this kind of flexibility! Thanks to being open source, we’re also available in 32 languages! + + RECOVER DELETED PHOTOS & VIDEOS + Accidentally deleted a precious photo or video? Don’t worry! Simple Gallery Pro features a handy recycle bin where you can recover deleted photos & videos easily. + + PROTECT & HIDE PHOTOS, VIDEOS & FILES + Using pin, pattern or your device’s fingerprint scanner you can protect and hide photos, videos & entire albums. You can protect the app itself or place locks on specific functions of the app. For example, you can’t delete a file without a fingerprint scan, helping to protect your files from accidental deletion. + + Check out the full suite of Simple Tools here: + https://www.simplemobiletools.com + + Facebook: + https://www.facebook.com/simplemobiletools + + Reddit: + https://www.reddit.com/r/SimpleMobileTools - An offline gallery for managing your files without ads, respecting your privacy. + Offline gallery without ads. Organize, edit, recover and protect photos & videos - A highly customizable gallery capable of displaying many different image and video types including SVGs, RAWs, panoramic photos and videos. + Simple Gallery Pro is a highly customizable offline gallery. Organize & edit your photos, recover deleted files with the recycle bin, protect & hide files and view a huge variety of different photo & video formats including RAW, SVG and much more. - It is open source, contains no ads or unnecessary permissions. + The app contains no ads and unnecessary permissions. As the app doesn’t require internet access either, your privacy is protected. - Let\'s list some of its features worth mentioning: - 1. Search - 2. Slideshow - 3. Notch support - 4. Pinning folders to the top - 5. Filtering media files by type - 6. Recycle bin for easy file recovery - 7. Fullscreen view orientation locking - 8. Marking favorite files for easy access - 9. Quick fullscreen media closing with down gesture - 10. An editor for modifying images and applying filters - 11. Password protection for protecting hidden items or the whole app - 12. Changing the thumbnail column count with gestures or menu buttons - 13. Customizable bottom actions at the fullscreen view for quick access - 14. Showing extended details over fullscreen media with desired file properties - 15. Several different ways of sorting or grouping items, both ascending and descending - 16. Hiding folders (affects other apps too), excluding folders (affects only Simple Gallery) + ------------------------------------------------- + SIMPLE GALLERY PRO – FEATURES + ------------------------------------------------- - The fingerprint permission is needed for locking either hidden item visibility, the whole app, or protecting files from being deleted. + • Offline gallery with no ads or popups + • Simple gallery photo editor – crop, rotate, resize, draw, filters & more + • No internet access needed, giving you more privacy and security + • No unnecessary permissions required + • Quickly search images, videos & files + • Open & view many different photo and video types (RAW, SVG, panoramic etc) + • A variety of intuitive gestures to easily edit & organize files + • Lots of ways to filter, group & sort files + • Customize the appearance of Simple Gallery Pro + • Available in 32 languages + • Mark files as favorites for quick access + • Protect your photos & videos with a pattern, pin or fingerprint + • Use pin, pattern & fingerprint to protect the app launch or specific functions too + • Recover deleted photos & videos from the recycle bin + • Toggle visibility of files to hide photos & videos + • Create a customizable slideshow of your files + • View detailed information of your files (resolution, EXIF values etc) + • Simple Gallery Pro is open source + … and much much more! - This app is just one piece of a bigger series of apps. You can find the rest of them at https://www.simplemobiletools.com + PHOTO GALLERY EDITOR + Simple Gallery Pro makes it easy to edit your pictures on the fly. Crop, flip, rotate and resize your pictures. If you’re feeling a little more creative you can add filters and draw on your pictures! + + SUPPORT FOR MANY FILE TYPES + Unlike some other gallery viewers & photo organizers, Simple Gallery Pro supports a huge range of different file types including JPEG, PNG, MP4, MKV, RAW, SVG, Panoramic photos, Panoramic videos and many more. + + HIGHLY CUSTOMIZABLE GALLERY MANAGER + From the UI to the function buttons on the bottom toolbar, Simple Gallery Pro is highly customizable and works the way you want it to. No other gallery manager has this kind of flexibility! Thanks to being open source, we’re also available in 32 languages! + + RECOVER DELETED PHOTOS & VIDEOS + Accidentally deleted a precious photo or video? Don’t worry! Simple Gallery Pro features a handy recycle bin where you can recover deleted photos & videos easily. + + PROTECT & HIDE PHOTOS, VIDEOS & FILES + Using pin, pattern or your device’s fingerprint scanner you can protect and hide photos, videos & entire albums. You can protect the app itself or place locks on specific functions of the app. For example, you can’t delete a file without a fingerprint scan, helping to protect your files from accidental deletion. + + Check out the full suite of Simple Tools here: + https://www.simplemobiletools.com + + Facebook: + https://www.facebook.com/simplemobiletools + + Reddit: + https://www.reddit.com/r/SimpleMobileTools - Una galeria senzilla, sense anuncis i respectant la vostra privadesa. + Offline gallery without ads. Organize, edit, recover and protect photos & videos - Una galeria molt personalitzable capaç de mostrar molts tipus d\'imatge i de vídeo diferents, inclosos SVGs, RAWs, fotos panoràmiques i vídeos. + Simple Gallery Pro is a highly customizable offline gallery. Organize & edit your photos, recover deleted files with the recycle bin, protect & hide files and view a huge variety of different photo & video formats including RAW, SVG and much more. - És de codi obert, no conté anuncis ni permisos innecessaris. + The app contains no ads and unnecessary permissions. As the app doesn’t require internet access either, your privacy is protected. - Anem a enumerar algunes de les seves característiques que val la pena esmentar: - 1. Cerca - 2. Presentació de diapositives - 3. Suport per notch - 4. Enganxar carpetes a la part superior - 5. Filtrar fitxers multimèdia per tipus - 6. Paperera de reciclatge per a una fàcil recuperació d\'arxius - 7. Bloqueig d\'orientació de la vista en pantalla completa - 8. Marcatge dels fitxers preferits per facilitar l\'accés - 9. Tancament ràpid de mitjans de pantalla amb gest d\'avall - 10. Un editor per modificar imatges i aplicar filtres - 11. Protecció per contrasenya per protegir elements ocults o tota l\'aplicació - 12. Canviar el número de columnes en miniatura amb gestos o botons de menú - 13. Botons inferiors personalitzables a la vista de pantalla completa per a un accés ràpid - 14. Mostrar detalls ampliats sobre els suports de pantalla completa amb les propietats del fitxer desitjades - 15. Diverses maneres diferents de classificar o agrupar elements, tant ascendents com descendents - 16. Ocultació de carpetes (també afecta altres aplicacions), eExclusió de carpetes (afecta només a la Galeria simple) + ------------------------------------------------- + SIMPLE GALLERY PRO – FEATURES + ------------------------------------------------- - El permís d\'empremtes dactilars és necessari per bloquejar la visibilitat d\'elements ocults, l\'aplicació sencera o la protecció dels fitxers. + • Offline gallery with no ads or popups + • Simple gallery photo editor – crop, rotate, resize, draw, filters & more + • No internet access needed, giving you more privacy and security + • No unnecessary permissions required + • Quickly search images, videos & files + • Open & view many different photo and video types (RAW, SVG, panoramic etc) + • A variety of intuitive gestures to easily edit & organize files + • Lots of ways to filter, group & sort files + • Customize the appearance of Simple Gallery Pro + • Available in 32 languages + • Mark files as favorites for quick access + • Protect your photos & videos with a pattern, pin or fingerprint + • Use pin, pattern & fingerprint to protect the app launch or specific functions too + • Recover deleted photos & videos from the recycle bin + • Toggle visibility of files to hide photos & videos + • Create a customizable slideshow of your files + • View detailed information of your files (resolution, EXIF values etc) + • Simple Gallery Pro is open source + … and much much more! - Aquesta aplicació és només una part d\'una sèrie més gran d\'aplicacions. Podeu trobar la resta a https://www.simplemobiletools.com + PHOTO GALLERY EDITOR + Simple Gallery Pro makes it easy to edit your pictures on the fly. Crop, flip, rotate and resize your pictures. If you’re feeling a little more creative you can add filters and draw on your pictures! + + SUPPORT FOR MANY FILE TYPES + Unlike some other gallery viewers & photo organizers, Simple Gallery Pro supports a huge range of different file types including JPEG, PNG, MP4, MKV, RAW, SVG, Panoramic photos, Panoramic videos and many more. + + HIGHLY CUSTOMIZABLE GALLERY MANAGER + From the UI to the function buttons on the bottom toolbar, Simple Gallery Pro is highly customizable and works the way you want it to. No other gallery manager has this kind of flexibility! Thanks to being open source, we’re also available in 32 languages! + + RECOVER DELETED PHOTOS & VIDEOS + Accidentally deleted a precious photo or video? Don’t worry! Simple Gallery Pro features a handy recycle bin where you can recover deleted photos & videos easily. + + PROTECT & HIDE PHOTOS, VIDEOS & FILES + Using pin, pattern or your device’s fingerprint scanner you can protect and hide photos, videos & entire albums. You can protect the app itself or place locks on specific functions of the app. For example, you can’t delete a file without a fingerprint scan, helping to protect your files from accidental deletion. + + Check out the full suite of Simple Tools here: + https://www.simplemobiletools.com + + Facebook: + https://www.facebook.com/simplemobiletools + + Reddit: + https://www.reddit.com/r/SimpleMobileTools - An offline gallery for managing your files without ads, respecting your privacy. + Offline gallery without ads. Organize, edit, recover and protect photos & videos - Přizpůsobitelná galerie na zobrazování množství rozličných druhů obrázků a videí, včetně SVG, RAW souborů, panoramatických fotek a videí. + Simple Gallery Pro is a highly customizable offline gallery. Organize & edit your photos, recover deleted files with the recycle bin, protect & hide files and view a huge variety of different photo & video formats including RAW, SVG and much more. - Je open source, neobsahuje reklamy a nepotřebné oprávnění. + The app contains no ads and unnecessary permissions. As the app doesn’t require internet access either, your privacy is protected. - Seznamte se s některými funkcemi, které stojí za zmínku: - 1. Vyhledávání - 2. Prezentace - 3. Podpora pro výřez v displeji - 4. Připínání složek na vrch - 5. Filtrování médií podle typu - 6. Odpadkový koš pro snadnou obnovu souborů - 7. Uzamykání orientace celoobrazovkového režimu - 8. Označování oblíbených položek pro snadný přístup - 9. Rychlé ukončování celoobrazovkového režimu pomocí potažení prstu dolů - 10. Editor pro úpravu obrázků a aplikaci filtrů - 11. Ochrana heslem pro zobrazování skrytých souborů nebo celé aplikace - 12. Změna počtu sloupců s náhledy buď gesty nebo pomocí menu tlačítek - 13. Nastavitelné spodní akce na celoobrazovkovém režimu pro rychlý přístup - 14. Zobrazení nastavitelných rozšířených vlastností přes celoobrazovkové média - 15. Několik různých způsobů řazení a seskupování položek vzestupně nebo sestupně - 16. Ukrývání složek (ovlivňuje i jiné aplikace), nebo jejich vyloučení (ovlivní pouze Jednoduchou galerii) + ------------------------------------------------- + SIMPLE GALLERY PRO – FEATURES + ------------------------------------------------- - Oprávnění k otiskům prstů je potřebný pro ochranu zobrazení skrytých položek, celé aplikace, nebo ochranu souborů před jejich odstraněním. + • Offline gallery with no ads or popups + • Simple gallery photo editor – crop, rotate, resize, draw, filters & more + • No internet access needed, giving you more privacy and security + • No unnecessary permissions required + • Quickly search images, videos & files + • Open & view many different photo and video types (RAW, SVG, panoramic etc) + • A variety of intuitive gestures to easily edit & organize files + • Lots of ways to filter, group & sort files + • Customize the appearance of Simple Gallery Pro + • Available in 32 languages + • Mark files as favorites for quick access + • Protect your photos & videos with a pattern, pin or fingerprint + • Use pin, pattern & fingerprint to protect the app launch or specific functions too + • Recover deleted photos & videos from the recycle bin + • Toggle visibility of files to hide photos & videos + • Create a customizable slideshow of your files + • View detailed information of your files (resolution, EXIF values etc) + • Simple Gallery Pro is open source + … and much much more! - Tato aplikace je pouze jednou ze skupiny aplikací. Ostatní můžete najít na https://www.simplemobiletools.com + PHOTO GALLERY EDITOR + Simple Gallery Pro makes it easy to edit your pictures on the fly. Crop, flip, rotate and resize your pictures. If you’re feeling a little more creative you can add filters and draw on your pictures! + + SUPPORT FOR MANY FILE TYPES + Unlike some other gallery viewers & photo organizers, Simple Gallery Pro supports a huge range of different file types including JPEG, PNG, MP4, MKV, RAW, SVG, Panoramic photos, Panoramic videos and many more. + + HIGHLY CUSTOMIZABLE GALLERY MANAGER + From the UI to the function buttons on the bottom toolbar, Simple Gallery Pro is highly customizable and works the way you want it to. No other gallery manager has this kind of flexibility! Thanks to being open source, we’re also available in 32 languages! + + RECOVER DELETED PHOTOS & VIDEOS + Accidentally deleted a precious photo or video? Don’t worry! Simple Gallery Pro features a handy recycle bin where you can recover deleted photos & videos easily. + + PROTECT & HIDE PHOTOS, VIDEOS & FILES + Using pin, pattern or your device’s fingerprint scanner you can protect and hide photos, videos & entire albums. You can protect the app itself or place locks on specific functions of the app. For example, you can’t delete a file without a fingerprint scan, helping to protect your files from accidental deletion. + + Check out the full suite of Simple Tools here: + https://www.simplemobiletools.com + + Facebook: + https://www.facebook.com/simplemobiletools + + Reddit: + https://www.reddit.com/r/SimpleMobileTools - An offline gallery for managing your files without ads, respecting your privacy. + Offline gallery without ads. Organize, edit, recover and protect photos & videos - A highly customizable gallery capable of displaying many different image and video types including SVGs, RAWs, panoramic photos and videos. + Simple Gallery Pro is a highly customizable offline gallery. Organize & edit your photos, recover deleted files with the recycle bin, protect & hide files and view a huge variety of different photo & video formats including RAW, SVG and much more. - It is open source, contains no ads or unnecessary permissions. + The app contains no ads and unnecessary permissions. As the app doesn’t require internet access either, your privacy is protected. - Let\'s list some of its features worth mentioning: - 1. Search - 2. Slideshow - 3. Notch support - 4. Pinning folders to the top - 5. Filtering media files by type - 6. Recycle bin for easy file recovery - 7. Fullscreen view orientation locking - 8. Marking favorite files for easy access - 9. Quick fullscreen media closing with down gesture - 10. An editor for modifying images and applying filters - 11. Password protection for protecting hidden items or the whole app - 12. Changing the thumbnail column count with gestures or menu buttons - 13. Customizable bottom actions at the fullscreen view for quick access - 14. Showing extended details over fullscreen media with desired file properties - 15. Several different ways of sorting or grouping items, both ascending and descending - 16. Hiding folders (affects other apps too), excluding folders (affects only Simple Gallery) + ------------------------------------------------- + SIMPLE GALLERY PRO – FEATURES + ------------------------------------------------- - The fingerprint permission is needed for locking either hidden item visibility, the whole app, or protecting files from being deleted. + • Offline gallery with no ads or popups + • Simple gallery photo editor – crop, rotate, resize, draw, filters & more + • No internet access needed, giving you more privacy and security + • No unnecessary permissions required + • Quickly search images, videos & files + • Open & view many different photo and video types (RAW, SVG, panoramic etc) + • A variety of intuitive gestures to easily edit & organize files + • Lots of ways to filter, group & sort files + • Customize the appearance of Simple Gallery Pro + • Available in 32 languages + • Mark files as favorites for quick access + • Protect your photos & videos with a pattern, pin or fingerprint + • Use pin, pattern & fingerprint to protect the app launch or specific functions too + • Recover deleted photos & videos from the recycle bin + • Toggle visibility of files to hide photos & videos + • Create a customizable slideshow of your files + • View detailed information of your files (resolution, EXIF values etc) + • Simple Gallery Pro is open source + … and much much more! - This app is just one piece of a bigger series of apps. You can find the rest of them at https://www.simplemobiletools.com + PHOTO GALLERY EDITOR + Simple Gallery Pro makes it easy to edit your pictures on the fly. Crop, flip, rotate and resize your pictures. If you’re feeling a little more creative you can add filters and draw on your pictures! + + SUPPORT FOR MANY FILE TYPES + Unlike some other gallery viewers & photo organizers, Simple Gallery Pro supports a huge range of different file types including JPEG, PNG, MP4, MKV, RAW, SVG, Panoramic photos, Panoramic videos and many more. + + HIGHLY CUSTOMIZABLE GALLERY MANAGER + From the UI to the function buttons on the bottom toolbar, Simple Gallery Pro is highly customizable and works the way you want it to. No other gallery manager has this kind of flexibility! Thanks to being open source, we’re also available in 32 languages! + + RECOVER DELETED PHOTOS & VIDEOS + Accidentally deleted a precious photo or video? Don’t worry! Simple Gallery Pro features a handy recycle bin where you can recover deleted photos & videos easily. + + PROTECT & HIDE PHOTOS, VIDEOS & FILES + Using pin, pattern or your device’s fingerprint scanner you can protect and hide photos, videos & entire albums. You can protect the app itself or place locks on specific functions of the app. For example, you can’t delete a file without a fingerprint scan, helping to protect your files from accidental deletion. + + Check out the full suite of Simple Tools here: + https://www.simplemobiletools.com + + Facebook: + https://www.facebook.com/simplemobiletools + + Reddit: + https://www.reddit.com/r/SimpleMobileTools - An offline gallery for managing your files without ads, respecting your privacy. + Offline gallery without ads. Organize, edit, recover and protect photos & videos - Eine stark anpassbare Galerie fähig zur Anzeige von diversen Bild- und Videoarten u. a. SVG, RAW, Panoramafotos und -videos. + Simple Gallery Pro is a highly customizable offline gallery. Organize & edit your photos, recover deleted files with the recycle bin, protect & hide files and view a huge variety of different photo & video formats including RAW, SVG and much more. - Sie ist Open Source, enthält keine Werbung und verlangt keine unnötigen Berechtigungen. + The app contains no ads and unnecessary permissions. As the app doesn’t require internet access either, your privacy is protected. - Hier eine Liste von einigen nennenswerten Eigenschaften: - 1. Suche - 2. Diashow - 3. Kerbenunterstützung - 4. Ordner zuoberst anheften - 5. Mediendateien nach Typ filtern - 6. Papierkorb für die einfache Dateiwiederherstellung - 7. Orientierung der Vollbildansicht arretieren - 8. Markierung von favorisierten Dateien für einfachen Zugriff - 9. Rasches Schliessen der Vollbildansicht durch Abwärtsgeste - 10. Ein Editor für die Bearbeitung von Bildern und die Anwendung von Filtern - 11. Passwortschutz für den Schutz von versteckten Elementen oder der ganzen App - 12. Ändern der Vorschauspaltenanzahl mit Gesten oder Menüknöpfen - 13. Anpassbare Aktionen am unteren Ende der Vollbildansicht für raschen Zugriff - 14. Anzeigen von weiteren Eigenschaften der Datei in der Vollbildansicht - 15. Diverse Arten der Sortierung oder Gruppierung von Elementen, beides an- und absteigend - 16. Ordner verstecken (betrifft andere Apps ebenfalls) und ausschliessen (betrifft nur Schlichte Galerie) + ------------------------------------------------- + SIMPLE GALLERY PRO – FEATURES + ------------------------------------------------- - Die Fingerabdruckberechtigung ist nötig für entweder das Festsetzen der Sichtbarkeit von versteckten Elementen/der ganzen App oder das Schützen von Dateien vor dem Löschen. + • Offline gallery with no ads or popups + • Simple gallery photo editor – crop, rotate, resize, draw, filters & more + • No internet access needed, giving you more privacy and security + • No unnecessary permissions required + • Quickly search images, videos & files + • Open & view many different photo and video types (RAW, SVG, panoramic etc) + • A variety of intuitive gestures to easily edit & organize files + • Lots of ways to filter, group & sort files + • Customize the appearance of Simple Gallery Pro + • Available in 32 languages + • Mark files as favorites for quick access + • Protect your photos & videos with a pattern, pin or fingerprint + • Use pin, pattern & fingerprint to protect the app launch or specific functions too + • Recover deleted photos & videos from the recycle bin + • Toggle visibility of files to hide photos & videos + • Create a customizable slideshow of your files + • View detailed information of your files (resolution, EXIF values etc) + • Simple Gallery Pro is open source + … and much much more! - Diese App ist nur ein Teil einer grösseren Serie von Apps. Der Rest befindet sich unter https://www.simplemobiletools.com . + PHOTO GALLERY EDITOR + Simple Gallery Pro makes it easy to edit your pictures on the fly. Crop, flip, rotate and resize your pictures. If you’re feeling a little more creative you can add filters and draw on your pictures! + + SUPPORT FOR MANY FILE TYPES + Unlike some other gallery viewers & photo organizers, Simple Gallery Pro supports a huge range of different file types including JPEG, PNG, MP4, MKV, RAW, SVG, Panoramic photos, Panoramic videos and many more. + + HIGHLY CUSTOMIZABLE GALLERY MANAGER + From the UI to the function buttons on the bottom toolbar, Simple Gallery Pro is highly customizable and works the way you want it to. No other gallery manager has this kind of flexibility! Thanks to being open source, we’re also available in 32 languages! + + RECOVER DELETED PHOTOS & VIDEOS + Accidentally deleted a precious photo or video? Don’t worry! Simple Gallery Pro features a handy recycle bin where you can recover deleted photos & videos easily. + + PROTECT & HIDE PHOTOS, VIDEOS & FILES + Using pin, pattern or your device’s fingerprint scanner you can protect and hide photos, videos & entire albums. You can protect the app itself or place locks on specific functions of the app. For example, you can’t delete a file without a fingerprint scan, helping to protect your files from accidental deletion. + + Check out the full suite of Simple Tools here: + https://www.simplemobiletools.com + + Facebook: + https://www.facebook.com/simplemobiletools + + Reddit: + https://www.reddit.com/r/SimpleMobileTools - Μια offline Gallery χωρίς διαφημίσεις, σεβόμενοι τα προσωπικά σας δεδομένα. + Offline gallery without ads. Organize, edit, recover and protect photos & videos - Μια εξαιρετικά προσαρμόσιμη Gallery ικανή να εμφανίζει πολλούς διαφορετικούς τύπους εικόνας και βίντεο, όπως SVGs, RAWs, πανοραμικές φωτογραφίες και βίντεο. + Simple Gallery Pro is a highly customizable offline gallery. Organize & edit your photos, recover deleted files with the recycle bin, protect & hide files and view a huge variety of different photo & video formats including RAW, SVG and much more. - Είναι ανοικτού κώδικα, δεν περιέχει διαφημίσεις ή περιττά δικαιώματα. + The app contains no ads and unnecessary permissions. As the app doesn’t require internet access either, your privacy is protected. - Ας περιγράψουμε μερικά από τα χαρακτηριστικά που αξίζει να αναφέρουμε: - 1. Αναζήτηση - 2. Slideshow - 3. Υποστήριξη Notch - 4. Καρφίτσωμα φακέλων στην αρχή - 5. Φιλτράρισμα αρχείων πολυμέσων ανά τύπο - 6. Κάδος για εύκολη ανάκτηση αρχείων - 7. Κλείδωμα προσανατολισμού πλήρους οθόνης - 8. Σήμανση αγαπημένων αρχείων για εύκολη πρόσβαση - 9. Γρήγορο κλείσιμο πολυμέσων πλήρους οθόνης με χειρονομία κάτω - 10. Ένα πρόγρ. επεξεργασίας εικόνων για τροποποίηση και εφαρμογή φίλτρων - 11. Προστασία με κωδικό για προστασία κρυφών στοιχείων ή ολόκληρης της εφαρμ. - 12. Αλλαγή αριθμού στήλης μικρογραφιών με χειρονομίες ή με πλήκτρα μενού - 13. Προσαρμόσιμες λειτουργίες κάτω σε πλήρη οθόνη για γρήγορη πρόσβαση - 14. Εμφάνιση πρόσθετων λεπτομ. πολυμέσων σε πλήρη οθόνη με επιθυμητές ιδιότητες αρχείου - 15. Διάφοροι διαφορετικοί τρόποι Ταξιν/Ομαδοπ, τόσο προς τα επάνω ή κάτω - 16. Απόκρυψη φακέλων (επηρεάζει και άλλες εφαρμ.), με εξαίρεση τους φακέλους (επηρεάζει μόνο την Simple Gallery) + ------------------------------------------------- + SIMPLE GALLERY PRO – FEATURES + ------------------------------------------------- - Το δικαίωμα δακτυλικών αποτυπωμάτων είναι απαραίτητο για το κλείδωμα, είτε της προβολής κρυφών στοιχείων, ή της εφαρμογής ή των αρχείων από τη διαγραφή τους. + • Offline gallery with no ads or popups + • Simple gallery photo editor – crop, rotate, resize, draw, filters & more + • No internet access needed, giving you more privacy and security + • No unnecessary permissions required + • Quickly search images, videos & files + • Open & view many different photo and video types (RAW, SVG, panoramic etc) + • A variety of intuitive gestures to easily edit & organize files + • Lots of ways to filter, group & sort files + • Customize the appearance of Simple Gallery Pro + • Available in 32 languages + • Mark files as favorites for quick access + • Protect your photos & videos with a pattern, pin or fingerprint + • Use pin, pattern & fingerprint to protect the app launch or specific functions too + • Recover deleted photos & videos from the recycle bin + • Toggle visibility of files to hide photos & videos + • Create a customizable slideshow of your files + • View detailed information of your files (resolution, EXIF values etc) + • Simple Gallery Pro is open source + … and much much more! - Αυτή η εφαρμογή είναι μόνο ένα μέρος μιας ευρείας σειράς εφαρμογών. Μπορείτε να βρείτε τις υπόλοιπες στο https://www.simplemobiletools.com + PHOTO GALLERY EDITOR + Simple Gallery Pro makes it easy to edit your pictures on the fly. Crop, flip, rotate and resize your pictures. If you’re feeling a little more creative you can add filters and draw on your pictures! + + SUPPORT FOR MANY FILE TYPES + Unlike some other gallery viewers & photo organizers, Simple Gallery Pro supports a huge range of different file types including JPEG, PNG, MP4, MKV, RAW, SVG, Panoramic photos, Panoramic videos and many more. + + HIGHLY CUSTOMIZABLE GALLERY MANAGER + From the UI to the function buttons on the bottom toolbar, Simple Gallery Pro is highly customizable and works the way you want it to. No other gallery manager has this kind of flexibility! Thanks to being open source, we’re also available in 32 languages! + + RECOVER DELETED PHOTOS & VIDEOS + Accidentally deleted a precious photo or video? Don’t worry! Simple Gallery Pro features a handy recycle bin where you can recover deleted photos & videos easily. + + PROTECT & HIDE PHOTOS, VIDEOS & FILES + Using pin, pattern or your device’s fingerprint scanner you can protect and hide photos, videos & entire albums. You can protect the app itself or place locks on specific functions of the app. For example, you can’t delete a file without a fingerprint scan, helping to protect your files from accidental deletion. + + Check out the full suite of Simple Tools here: + https://www.simplemobiletools.com + + Facebook: + https://www.facebook.com/simplemobiletools + + Reddit: + https://www.reddit.com/r/SimpleMobileTools - Una galería senzilla, sin anuncios y respetando su privacidad. + Offline gallery without ads. Organize, edit, recover and protect photos & videos - Una galería altamente personalizable capaz de mostrar diferentes tipos de imágenes y videos, incluyendo SVG, RAW, fotos panorámicas y videos. + Simple Gallery Pro is a highly customizable offline gallery. Organize & edit your photos, recover deleted files with the recycle bin, protect & hide files and view a huge variety of different photo & video formats including RAW, SVG and much more. - Es de código abierto, no contiene anuncios o permisos innecesarios. + The app contains no ads and unnecessary permissions. As the app doesn’t require internet access either, your privacy is protected. - Vamos a enumerar algunas de sus características que vale la pena mencionar: - 1. Buscar - 2. Presentación de diapositivas - 3. Soporte de muesca - 4. Fijado de carpetas en la parte superior. - 5. Filtrado de archivos multimedia por tipo - 6. Papelera de reciclaje para una fácil recuperación de archivos - 7. Bloqueo de orientación de vista de pantalla completa - 8. Marcar los archivos favoritos para facilitar el acceso - 9. Cierre rápido de medios a pantalla completa con gesto hacia abajo. - 10. Un editor para modificar imágenes y aplicar filtros. - 11. Protección de contraseña para proteger elementos ocultos o la aplicación completa - 12. Cambiar el número de la columna de miniaturas con gestos o botones de menú - 13. Acciones inferiores personalizables en la vista de pantalla completa para un acceso rápido - 14. Mostrar detalles extendidos en medios de pantalla completa con las propiedades de archivo deseadas - 15. Varias formas diferentes de clasificar o agrupar elementos, tanto ascendentes como descendentes - 16. Ocultar carpetas (afecta también a otras aplicaciones), excluyendo carpetas (afecta solo a Simple Gallery) + ------------------------------------------------- + SIMPLE GALLERY PRO – FEATURES + ------------------------------------------------- - El permiso de huella digital es necesario para bloquear la visibilidad de los elementos ocultos, la aplicación completa o proteger los archivos para evitar que se eliminen. + • Offline gallery with no ads or popups + • Simple gallery photo editor – crop, rotate, resize, draw, filters & more + • No internet access needed, giving you more privacy and security + • No unnecessary permissions required + • Quickly search images, videos & files + • Open & view many different photo and video types (RAW, SVG, panoramic etc) + • A variety of intuitive gestures to easily edit & organize files + • Lots of ways to filter, group & sort files + • Customize the appearance of Simple Gallery Pro + • Available in 32 languages + • Mark files as favorites for quick access + • Protect your photos & videos with a pattern, pin or fingerprint + • Use pin, pattern & fingerprint to protect the app launch or specific functions too + • Recover deleted photos & videos from the recycle bin + • Toggle visibility of files to hide photos & videos + • Create a customizable slideshow of your files + • View detailed information of your files (resolution, EXIF values etc) + • Simple Gallery Pro is open source + … and much much more! - Esta aplicación es solo una parte de una serie más grande de aplicaciones. Puede encontrar el resto de ellos en https://www.simplemobiletools.com + PHOTO GALLERY EDITOR + Simple Gallery Pro makes it easy to edit your pictures on the fly. Crop, flip, rotate and resize your pictures. If you’re feeling a little more creative you can add filters and draw on your pictures! + + SUPPORT FOR MANY FILE TYPES + Unlike some other gallery viewers & photo organizers, Simple Gallery Pro supports a huge range of different file types including JPEG, PNG, MP4, MKV, RAW, SVG, Panoramic photos, Panoramic videos and many more. + + HIGHLY CUSTOMIZABLE GALLERY MANAGER + From the UI to the function buttons on the bottom toolbar, Simple Gallery Pro is highly customizable and works the way you want it to. No other gallery manager has this kind of flexibility! Thanks to being open source, we’re also available in 32 languages! + + RECOVER DELETED PHOTOS & VIDEOS + Accidentally deleted a precious photo or video? Don’t worry! Simple Gallery Pro features a handy recycle bin where you can recover deleted photos & videos easily. + + PROTECT & HIDE PHOTOS, VIDEOS & FILES + Using pin, pattern or your device’s fingerprint scanner you can protect and hide photos, videos & entire albums. You can protect the app itself or place locks on specific functions of the app. For example, you can’t delete a file without a fingerprint scan, helping to protect your files from accidental deletion. + + Check out the full suite of Simple Tools here: + https://www.simplemobiletools.com + + Facebook: + https://www.facebook.com/simplemobiletools + + Reddit: + https://www.reddit.com/r/SimpleMobileTools - An offline gallery for managing your files without ads, respecting your privacy. + Offline gallery without ads. Organize, edit, recover and protect photos & videos - A highly customizable gallery capable of displaying many different image and video types including SVGs, RAWs, panoramic photos and videos. + Simple Gallery Pro is a highly customizable offline gallery. Organize & edit your photos, recover deleted files with the recycle bin, protect & hide files and view a huge variety of different photo & video formats including RAW, SVG and much more. - It is open source, contains no ads or unnecessary permissions. + The app contains no ads and unnecessary permissions. As the app doesn’t require internet access either, your privacy is protected. - Let\'s list some of its features worth mentioning: - 1. Search - 2. Slideshow - 3. Notch support - 4. Pinning folders to the top - 5. Filtering media files by type - 6. Recycle bin for easy file recovery - 7. Fullscreen view orientation locking - 8. Marking favorite files for easy access - 9. Quick fullscreen media closing with down gesture - 10. An editor for modifying images and applying filters - 11. Password protection for protecting hidden items or the whole app - 12. Changing the thumbnail column count with gestures or menu buttons - 13. Customizable bottom actions at the fullscreen view for quick access - 14. Showing extended details over fullscreen media with desired file properties - 15. Several different ways of sorting or grouping items, both ascending and descending - 16. Hiding folders (affects other apps too), excluding folders (affects only Simple Gallery) + ------------------------------------------------- + SIMPLE GALLERY PRO – FEATURES + ------------------------------------------------- - The fingerprint permission is needed for locking either hidden item visibility, the whole app, or protecting files from being deleted. + • Offline gallery with no ads or popups + • Simple gallery photo editor – crop, rotate, resize, draw, filters & more + • No internet access needed, giving you more privacy and security + • No unnecessary permissions required + • Quickly search images, videos & files + • Open & view many different photo and video types (RAW, SVG, panoramic etc) + • A variety of intuitive gestures to easily edit & organize files + • Lots of ways to filter, group & sort files + • Customize the appearance of Simple Gallery Pro + • Available in 32 languages + • Mark files as favorites for quick access + • Protect your photos & videos with a pattern, pin or fingerprint + • Use pin, pattern & fingerprint to protect the app launch or specific functions too + • Recover deleted photos & videos from the recycle bin + • Toggle visibility of files to hide photos & videos + • Create a customizable slideshow of your files + • View detailed information of your files (resolution, EXIF values etc) + • Simple Gallery Pro is open source + … and much much more! - This app is just one piece of a bigger series of apps. You can find the rest of them at https://www.simplemobiletools.com + PHOTO GALLERY EDITOR + Simple Gallery Pro makes it easy to edit your pictures on the fly. Crop, flip, rotate and resize your pictures. If you’re feeling a little more creative you can add filters and draw on your pictures! + + SUPPORT FOR MANY FILE TYPES + Unlike some other gallery viewers & photo organizers, Simple Gallery Pro supports a huge range of different file types including JPEG, PNG, MP4, MKV, RAW, SVG, Panoramic photos, Panoramic videos and many more. + + HIGHLY CUSTOMIZABLE GALLERY MANAGER + From the UI to the function buttons on the bottom toolbar, Simple Gallery Pro is highly customizable and works the way you want it to. No other gallery manager has this kind of flexibility! Thanks to being open source, we’re also available in 32 languages! + + RECOVER DELETED PHOTOS & VIDEOS + Accidentally deleted a precious photo or video? Don’t worry! Simple Gallery Pro features a handy recycle bin where you can recover deleted photos & videos easily. + + PROTECT & HIDE PHOTOS, VIDEOS & FILES + Using pin, pattern or your device’s fingerprint scanner you can protect and hide photos, videos & entire albums. You can protect the app itself or place locks on specific functions of the app. For example, you can’t delete a file without a fingerprint scan, helping to protect your files from accidental deletion. + + Check out the full suite of Simple Tools here: + https://www.simplemobiletools.com + + Facebook: + https://www.facebook.com/simplemobiletools + + Reddit: + https://www.reddit.com/r/SimpleMobileTools - An offline gallery for managing your files without ads, respecting your privacy. + Offline gallery without ads. Organize, edit, recover and protect photos & videos - A highly customizable gallery capable of displaying many different image and video types including SVGs, RAWs, panoramic photos and videos. + Simple Gallery Pro is a highly customizable offline gallery. Organize & edit your photos, recover deleted files with the recycle bin, protect & hide files and view a huge variety of different photo & video formats including RAW, SVG and much more. - It is open source, contains no ads or unnecessary permissions. + The app contains no ads and unnecessary permissions. As the app doesn’t require internet access either, your privacy is protected. - Let\'s list some of its features worth mentioning: - 1. Search - 2. Slideshow - 3. Notch support - 4. Pinning folders to the top - 5. Filtering media files by type - 6. Recycle bin for easy file recovery - 7. Fullscreen view orientation locking - 8. Marking favorite files for easy access - 9. Quick fullscreen media closing with down gesture - 10. An editor for modifying images and applying filters - 11. Password protection for protecting hidden items or the whole app - 12. Changing the thumbnail column count with gestures or menu buttons - 13. Customizable bottom actions at the fullscreen view for quick access - 14. Showing extended details over fullscreen media with desired file properties - 15. Several different ways of sorting or grouping items, both ascending and descending - 16. Hiding folders (affects other apps too), excluding folders (affects only Simple Gallery) + ------------------------------------------------- + SIMPLE GALLERY PRO – FEATURES + ------------------------------------------------- - The fingerprint permission is needed for locking either hidden item visibility, the whole app, or protecting files from being deleted. + • Offline gallery with no ads or popups + • Simple gallery photo editor – crop, rotate, resize, draw, filters & more + • No internet access needed, giving you more privacy and security + • No unnecessary permissions required + • Quickly search images, videos & files + • Open & view many different photo and video types (RAW, SVG, panoramic etc) + • A variety of intuitive gestures to easily edit & organize files + • Lots of ways to filter, group & sort files + • Customize the appearance of Simple Gallery Pro + • Available in 32 languages + • Mark files as favorites for quick access + • Protect your photos & videos with a pattern, pin or fingerprint + • Use pin, pattern & fingerprint to protect the app launch or specific functions too + • Recover deleted photos & videos from the recycle bin + • Toggle visibility of files to hide photos & videos + • Create a customizable slideshow of your files + • View detailed information of your files (resolution, EXIF values etc) + • Simple Gallery Pro is open source + … and much much more! - This app is just one piece of a bigger series of apps. You can find the rest of them at https://www.simplemobiletools.com + PHOTO GALLERY EDITOR + Simple Gallery Pro makes it easy to edit your pictures on the fly. Crop, flip, rotate and resize your pictures. If you’re feeling a little more creative you can add filters and draw on your pictures! + + SUPPORT FOR MANY FILE TYPES + Unlike some other gallery viewers & photo organizers, Simple Gallery Pro supports a huge range of different file types including JPEG, PNG, MP4, MKV, RAW, SVG, Panoramic photos, Panoramic videos and many more. + + HIGHLY CUSTOMIZABLE GALLERY MANAGER + From the UI to the function buttons on the bottom toolbar, Simple Gallery Pro is highly customizable and works the way you want it to. No other gallery manager has this kind of flexibility! Thanks to being open source, we’re also available in 32 languages! + + RECOVER DELETED PHOTOS & VIDEOS + Accidentally deleted a precious photo or video? Don’t worry! Simple Gallery Pro features a handy recycle bin where you can recover deleted photos & videos easily. + + PROTECT & HIDE PHOTOS, VIDEOS & FILES + Using pin, pattern or your device’s fingerprint scanner you can protect and hide photos, videos & entire albums. You can protect the app itself or place locks on specific functions of the app. For example, you can’t delete a file without a fingerprint scan, helping to protect your files from accidental deletion. + + Check out the full suite of Simple Tools here: + https://www.simplemobiletools.com + + Facebook: + https://www.facebook.com/simplemobiletools + + Reddit: + https://www.reddit.com/r/SimpleMobileTools - An offline gallery for managing your files without ads, respecting your privacy. + Offline gallery without ads. Organize, edit, recover and protect photos & videos - A highly customizable gallery capable of displaying many different image and video types including SVGs, RAWs, panoramic photos and videos. + Simple Gallery Pro is a highly customizable offline gallery. Organize & edit your photos, recover deleted files with the recycle bin, protect & hide files and view a huge variety of different photo & video formats including RAW, SVG and much more. - It is open source, contains no ads or unnecessary permissions. + The app contains no ads and unnecessary permissions. As the app doesn’t require internet access either, your privacy is protected. - Let\'s list some of its features worth mentioning: - 1. Search - 2. Slideshow - 3. Notch support - 4. Pinning folders to the top - 5. Filtering media files by type - 6. Recycle bin for easy file recovery - 7. Fullscreen view orientation locking - 8. Marking favorite files for easy access - 9. Quick fullscreen media closing with down gesture - 10. An editor for modifying images and applying filters - 11. Password protection for protecting hidden items or the whole app - 12. Changing the thumbnail column count with gestures or menu buttons - 13. Customizable bottom actions at the fullscreen view for quick access - 14. Showing extended details over fullscreen media with desired file properties - 15. Several different ways of sorting or grouping items, both ascending and descending - 16. Hiding folders (affects other apps too), excluding folders (affects only Simple Gallery) + ------------------------------------------------- + SIMPLE GALLERY PRO – FEATURES + ------------------------------------------------- - The fingerprint permission is needed for locking either hidden item visibility, the whole app, or protecting files from being deleted. + • Offline gallery with no ads or popups + • Simple gallery photo editor – crop, rotate, resize, draw, filters & more + • No internet access needed, giving you more privacy and security + • No unnecessary permissions required + • Quickly search images, videos & files + • Open & view many different photo and video types (RAW, SVG, panoramic etc) + • A variety of intuitive gestures to easily edit & organize files + • Lots of ways to filter, group & sort files + • Customize the appearance of Simple Gallery Pro + • Available in 32 languages + • Mark files as favorites for quick access + • Protect your photos & videos with a pattern, pin or fingerprint + • Use pin, pattern & fingerprint to protect the app launch or specific functions too + • Recover deleted photos & videos from the recycle bin + • Toggle visibility of files to hide photos & videos + • Create a customizable slideshow of your files + • View detailed information of your files (resolution, EXIF values etc) + • Simple Gallery Pro is open source + … and much much more! - This app is just one piece of a bigger series of apps. You can find the rest of them at https://www.simplemobiletools.com + PHOTO GALLERY EDITOR + Simple Gallery Pro makes it easy to edit your pictures on the fly. Crop, flip, rotate and resize your pictures. If you’re feeling a little more creative you can add filters and draw on your pictures! + + SUPPORT FOR MANY FILE TYPES + Unlike some other gallery viewers & photo organizers, Simple Gallery Pro supports a huge range of different file types including JPEG, PNG, MP4, MKV, RAW, SVG, Panoramic photos, Panoramic videos and many more. + + HIGHLY CUSTOMIZABLE GALLERY MANAGER + From the UI to the function buttons on the bottom toolbar, Simple Gallery Pro is highly customizable and works the way you want it to. No other gallery manager has this kind of flexibility! Thanks to being open source, we’re also available in 32 languages! + + RECOVER DELETED PHOTOS & VIDEOS + Accidentally deleted a precious photo or video? Don’t worry! Simple Gallery Pro features a handy recycle bin where you can recover deleted photos & videos easily. + + PROTECT & HIDE PHOTOS, VIDEOS & FILES + Using pin, pattern or your device’s fingerprint scanner you can protect and hide photos, videos & entire albums. You can protect the app itself or place locks on specific functions of the app. For example, you can’t delete a file without a fingerprint scan, helping to protect your files from accidental deletion. + + Check out the full suite of Simple Tools here: + https://www.simplemobiletools.com + + Facebook: + https://www.facebook.com/simplemobiletools + + Reddit: + https://www.reddit.com/r/SimpleMobileTools - Izvanmrežna galerija za upravljanje datotekama,bez oglasa,poštujući privatnost. + Offline gallery without ads. Organize, edit, recover and protect photos & videos - Vrlo prilagodljiva galerija koja može prikazivati različite vrste slika i videozapisa, uključujući SVG-ove, RAW-ove, panoramske fotografije i videozapise. + Simple Gallery Pro is a highly customizable offline gallery. Organize & edit your photos, recover deleted files with the recycle bin, protect & hide files and view a huge variety of different photo & video formats including RAW, SVG and much more. - Otvorenog je koda, ne sadrži oglase ili nepotrebna dopuštenja. + The app contains no ads and unnecessary permissions. As the app doesn’t require internet access either, your privacy is protected. - Navedimo neke od značajki koje vrijedi spomenuti: - 1. Pretraživanje - 2. Dijaprojekcija - 3. Podrška za notch - 4. Pričvršćivanje mapa na vrh - 5. Filtriranje medijskih datoteka prema vrsti - 6. Koš za smeće za jednostavan oporavak datoteke - 7. Zaključavanje prikaza na cijelom zaslonu - 8. Označavanje omiljenih datoteka radi lakog pristupa - 9. Brzi mediji na cijelom zaslonu zatvaraju se pokretom prema dolje - 10. Urednik za izmjenu slika i primjenu filtara - 11. Zaštita lozinkom za zaštitu skrivenih stavki ili cijele aplikacije - 12. Promjena broja stupaca minijatura pomoću pokreta ili gumba izbornika - 13. Prilagodljive akcije na dnu cijelog zaslona za brzi pristup - 14. Prikazivanje proširenih detalja preko medija, preko cijelog zaslona sa željenim svojstvima datoteke - 15. Nekoliko različitih načina razvrstavanja ili grupiranja stavki, kako rastućih tako i silaznih - 16. Skrivanje mapa (utječe i na druge aplikacije), izuzimanje mapa (utječe samo na jednostavnu galeriju) + ------------------------------------------------- + SIMPLE GALLERY PRO – FEATURES + ------------------------------------------------- - Dopuštenje za otisak prsta potreban je za zaključavanje vidljivosti skrivenih stavki, cijele aplikacije ili za zaštitu datoteka od brisanja. + • Offline gallery with no ads or popups + • Simple gallery photo editor – crop, rotate, resize, draw, filters & more + • No internet access needed, giving you more privacy and security + • No unnecessary permissions required + • Quickly search images, videos & files + • Open & view many different photo and video types (RAW, SVG, panoramic etc) + • A variety of intuitive gestures to easily edit & organize files + • Lots of ways to filter, group & sort files + • Customize the appearance of Simple Gallery Pro + • Available in 32 languages + • Mark files as favorites for quick access + • Protect your photos & videos with a pattern, pin or fingerprint + • Use pin, pattern & fingerprint to protect the app launch or specific functions too + • Recover deleted photos & videos from the recycle bin + • Toggle visibility of files to hide photos & videos + • Create a customizable slideshow of your files + • View detailed information of your files (resolution, EXIF values etc) + • Simple Gallery Pro is open source + … and much much more! - Ova je aplikacija samo dio većeg broja aplikacija. Možete pronaći ostatak na https://www.simplemobiletools.com + PHOTO GALLERY EDITOR + Simple Gallery Pro makes it easy to edit your pictures on the fly. Crop, flip, rotate and resize your pictures. If you’re feeling a little more creative you can add filters and draw on your pictures! + + SUPPORT FOR MANY FILE TYPES + Unlike some other gallery viewers & photo organizers, Simple Gallery Pro supports a huge range of different file types including JPEG, PNG, MP4, MKV, RAW, SVG, Panoramic photos, Panoramic videos and many more. + + HIGHLY CUSTOMIZABLE GALLERY MANAGER + From the UI to the function buttons on the bottom toolbar, Simple Gallery Pro is highly customizable and works the way you want it to. No other gallery manager has this kind of flexibility! Thanks to being open source, we’re also available in 32 languages! + + RECOVER DELETED PHOTOS & VIDEOS + Accidentally deleted a precious photo or video? Don’t worry! Simple Gallery Pro features a handy recycle bin where you can recover deleted photos & videos easily. + + PROTECT & HIDE PHOTOS, VIDEOS & FILES + Using pin, pattern or your device’s fingerprint scanner you can protect and hide photos, videos & entire albums. You can protect the app itself or place locks on specific functions of the app. For example, you can’t delete a file without a fingerprint scan, helping to protect your files from accidental deletion. + + Check out the full suite of Simple Tools here: + https://www.simplemobiletools.com + + Facebook: + https://www.facebook.com/simplemobiletools + + Reddit: + https://www.reddit.com/r/SimpleMobileTools - Egy offline galéria a fájlok hirdetés nélküli kezelésére. + Offline gallery without ads. Organize, edit, recover and protect photos & videos - Nagyon testreszabható galéria, amely alkalmas számos különböző kép- és videotípus megjelenítésére, beleértve az SVG-ket, RAW-t, panorámaképeket és videókat. + Simple Gallery Pro is a highly customizable offline gallery. Organize & edit your photos, recover deleted files with the recycle bin, protect & hide files and view a huge variety of different photo & video formats including RAW, SVG and much more. - Nyitott forráskódú, nem tartalmaz hirdetéseket vagy szükségtelen engedélyeket. + The app contains no ads and unnecessary permissions. As the app doesn’t require internet access either, your privacy is protected. - Lista néhány fontosabb funkcióról - 1. Keresés - 2. Diavetítés - 3. Notch támogatás - 4. Mappa kitűzés felülre - 5. Médiafájlok szűrése típus szerint - 6. Lomtár a törölt fájlok könnyű helyreállításához - 7. Teljes képernyős nézet tájolás zárolása - 8. Kedvenc fájlok megjelölése az egyszerű eléréshez - 9. Teljes képernyős média gyors bezárása lefelé mozdulattal - 10. Szerkesztő a képek módosításához és szűrők alkalmazásához - 11. Jelszavas védelem a rejtett elemekhez vagy az egész alkalmazáshoz - 12. Az indexkép oszlop módosítása mozdulatokkal vagy a menüben - 13. Testreszabható gomb műveletek a teljes képernyős nézetben a gyors elérés érdekében - 14. Bővített részletek mutatása a teljes képernyős nézetben a kívánt fájlok tulajdonságainál - 15. Az elemek rendezése vagy csoportosítása különböző növekvő és csökkenő módon - 16. Mappák elrejtése (más alkalmazásokra is hatással van), kivéve a mappákat (csak a Simple Gallery-t érinti) + ------------------------------------------------- + SIMPLE GALLERY PRO – FEATURES + ------------------------------------------------- - Az ujjlenyomat engedély szükséges a rejtett elemek láthatóságának, az egész alkalmazásnak és a fájlok törlésének védelme érdekében. + • Offline gallery with no ads or popups + • Simple gallery photo editor – crop, rotate, resize, draw, filters & more + • No internet access needed, giving you more privacy and security + • No unnecessary permissions required + • Quickly search images, videos & files + • Open & view many different photo and video types (RAW, SVG, panoramic etc) + • A variety of intuitive gestures to easily edit & organize files + • Lots of ways to filter, group & sort files + • Customize the appearance of Simple Gallery Pro + • Available in 32 languages + • Mark files as favorites for quick access + • Protect your photos & videos with a pattern, pin or fingerprint + • Use pin, pattern & fingerprint to protect the app launch or specific functions too + • Recover deleted photos & videos from the recycle bin + • Toggle visibility of files to hide photos & videos + • Create a customizable slideshow of your files + • View detailed information of your files (resolution, EXIF values etc) + • Simple Gallery Pro is open source + … and much much more! - Ez az alkalmazás csak egy része egy nagyobb alkalmazás sorozatnak. A többi megtalálható a https://www.simplemobiletools.com címen. + PHOTO GALLERY EDITOR + Simple Gallery Pro makes it easy to edit your pictures on the fly. Crop, flip, rotate and resize your pictures. If you’re feeling a little more creative you can add filters and draw on your pictures! + + SUPPORT FOR MANY FILE TYPES + Unlike some other gallery viewers & photo organizers, Simple Gallery Pro supports a huge range of different file types including JPEG, PNG, MP4, MKV, RAW, SVG, Panoramic photos, Panoramic videos and many more. + + HIGHLY CUSTOMIZABLE GALLERY MANAGER + From the UI to the function buttons on the bottom toolbar, Simple Gallery Pro is highly customizable and works the way you want it to. No other gallery manager has this kind of flexibility! Thanks to being open source, we’re also available in 32 languages! + + RECOVER DELETED PHOTOS & VIDEOS + Accidentally deleted a precious photo or video? Don’t worry! Simple Gallery Pro features a handy recycle bin where you can recover deleted photos & videos easily. + + PROTECT & HIDE PHOTOS, VIDEOS & FILES + Using pin, pattern or your device’s fingerprint scanner you can protect and hide photos, videos & entire albums. You can protect the app itself or place locks on specific functions of the app. For example, you can’t delete a file without a fingerprint scan, helping to protect your files from accidental deletion. + + Check out the full suite of Simple Tools here: + https://www.simplemobiletools.com + + Facebook: + https://www.facebook.com/simplemobiletools + + Reddit: + https://www.reddit.com/r/SimpleMobileTools - An offline gallery for managing your files without ads, respecting your privacy. + Offline gallery without ads. Organize, edit, recover and protect photos & videos - Aplikasi galeri dengan banyak kustomisasi dan mampu menampilkan banyak jenis gambar dan video termasuk SVG, RAW, panorama foto dan video. + Simple Gallery Pro is a highly customizable offline gallery. Organize & edit your photos, recover deleted files with the recycle bin, protect & hide files and view a huge variety of different photo & video formats including RAW, SVG and much more. - Aplikasi ini open source, tidak berisi iklan atau izin yang tidak diperlukan. + The app contains no ads and unnecessary permissions. As the app doesn’t require internet access either, your privacy is protected. - Beberapa fiturnya antara lain: - 1. Pencarian - 2. Slideshow - 3. Dukungan notch (layar berponi) - 4. Pin folder di atas - 5. Filter media berdasarkan jenis - 6. Keranjang sampah untuk memulihkan file - 7. Kunci orientasi layar penuh - 8. Tandai file favorit agar mudah diakses - 9. Keluar dari layar penuh dengan menggeser ke bawah - 10. Editor bawaan untuk mengedit dan menambahkan filter - 11. Perlindungan password untuk item tersembunyi atau mengunci aplikasi - 12. Ubah jumlah kolom thumbnail lewat gerakan atau menu - 13. Sesuaikan tombol tindakan di bawah layar penuh untuk akses cepat - 14. Menampilkan detail tambahan di layar penuh dengan properti file yang diinginkan - 15. Berbagai cara untuk mengurutkan atau mengelompokkan item, dengan naik atau turun - 16. Sembunyikan folder (berpengaruh di aplikasi lain), kecualikan folder (hanya berpengaruh di Simple Gallery) + ------------------------------------------------- + SIMPLE GALLERY PRO – FEATURES + ------------------------------------------------- - Izin sidik jari diperlukan untuk mengunci item tersembunyi, mengunci aplikasi, atau melindungi agar file tidak dihapus. + • Offline gallery with no ads or popups + • Simple gallery photo editor – crop, rotate, resize, draw, filters & more + • No internet access needed, giving you more privacy and security + • No unnecessary permissions required + • Quickly search images, videos & files + • Open & view many different photo and video types (RAW, SVG, panoramic etc) + • A variety of intuitive gestures to easily edit & organize files + • Lots of ways to filter, group & sort files + • Customize the appearance of Simple Gallery Pro + • Available in 32 languages + • Mark files as favorites for quick access + • Protect your photos & videos with a pattern, pin or fingerprint + • Use pin, pattern & fingerprint to protect the app launch or specific functions too + • Recover deleted photos & videos from the recycle bin + • Toggle visibility of files to hide photos & videos + • Create a customizable slideshow of your files + • View detailed information of your files (resolution, EXIF values etc) + • Simple Gallery Pro is open source + … and much much more! - Aplikasi ini hanyalah bagian dari rangkaian aplikasi saya. Anda bisa menemukan aplikasi saya lainnya di https://www.simplemobiletools.com + PHOTO GALLERY EDITOR + Simple Gallery Pro makes it easy to edit your pictures on the fly. Crop, flip, rotate and resize your pictures. If you’re feeling a little more creative you can add filters and draw on your pictures! + + SUPPORT FOR MANY FILE TYPES + Unlike some other gallery viewers & photo organizers, Simple Gallery Pro supports a huge range of different file types including JPEG, PNG, MP4, MKV, RAW, SVG, Panoramic photos, Panoramic videos and many more. + + HIGHLY CUSTOMIZABLE GALLERY MANAGER + From the UI to the function buttons on the bottom toolbar, Simple Gallery Pro is highly customizable and works the way you want it to. No other gallery manager has this kind of flexibility! Thanks to being open source, we’re also available in 32 languages! + + RECOVER DELETED PHOTOS & VIDEOS + Accidentally deleted a precious photo or video? Don’t worry! Simple Gallery Pro features a handy recycle bin where you can recover deleted photos & videos easily. + + PROTECT & HIDE PHOTOS, VIDEOS & FILES + Using pin, pattern or your device’s fingerprint scanner you can protect and hide photos, videos & entire albums. You can protect the app itself or place locks on specific functions of the app. For example, you can’t delete a file without a fingerprint scan, helping to protect your files from accidental deletion. + + Check out the full suite of Simple Tools here: + https://www.simplemobiletools.com + + Facebook: + https://www.facebook.com/simplemobiletools + + Reddit: + https://www.reddit.com/r/SimpleMobileTools - Una galleria per gestire i propri file senza pubblicità che rispetta la privacy. + Offline gallery without ads. Organize, edit, recover and protect photos & videos - Una galleria altamente personalizzabile e capace di visualizzare tipi di file immagini e video differenti, fra cui SVG, RAW, foto panoramiche e video. + Simple Gallery Pro is a highly customizable offline gallery. Organize & edit your photos, recover deleted files with the recycle bin, protect & hide files and view a huge variety of different photo & video formats including RAW, SVG and much more. - L\'applicazione non contiene pubblicità o permessi non necessari; è completamente opensource e la si può personalizzare con i propri colori preferiti. + The app contains no ads and unnecessary permissions. As the app doesn’t require internet access either, your privacy is protected. - Alcune funzionalità che vale la pena accennare: - 1. Ricerca - 2. Presentazione - 3. Supporto al notch - 4. Fissare le cartelle in alto - 5. Filtro dei file per tipologia - 6. Cestino per un recupero facile dei file - 7. Blocco dell\'orientamento nella vista a schermo intero - 8. Selezione dei file preferiti per un accesso immediato - 9. Chisura rapida della vista a schermo intero con un movimento verso il basso - 10. Un editor per modificare le immagini e applicare filtri - 11. Protezione con password per proteggere elementi nascosti o l\'intera applicazione - 12. Cambio delle colonne delle anteprime con un movimento o tramite dei pulsanti nel menu - 13. Pulsanti rapidi per azioni personalizzabili nella vista a schermo intero - 14. Visualizzazione di determinati dettagli aggiuntivi nella vista a schermo intero - 15. Molti modi per ordinare o raggruppare gli elementi, sia in ordine crescente che decrescente - 16. Cartelle nascoste (anche per altre applicazioni), cartelle escluse (solo per Semplice Galleria) + ------------------------------------------------- + SIMPLE GALLERY PRO – FEATURES + ------------------------------------------------- - L\'autorizzazione per leggere le impronte digitali è necessaria per il blocco della visibilità, dell\'intera applicazione o per proteggere alcuni file dalla loro eliminazione. + • Offline gallery with no ads or popups + • Simple gallery photo editor – crop, rotate, resize, draw, filters & more + • No internet access needed, giving you more privacy and security + • No unnecessary permissions required + • Quickly search images, videos & files + • Open & view many different photo and video types (RAW, SVG, panoramic etc) + • A variety of intuitive gestures to easily edit & organize files + • Lots of ways to filter, group & sort files + • Customize the appearance of Simple Gallery Pro + • Available in 32 languages + • Mark files as favorites for quick access + • Protect your photos & videos with a pattern, pin or fingerprint + • Use pin, pattern & fingerprint to protect the app launch or specific functions too + • Recover deleted photos & videos from the recycle bin + • Toggle visibility of files to hide photos & videos + • Create a customizable slideshow of your files + • View detailed information of your files (resolution, EXIF values etc) + • Simple Gallery Pro is open source + … and much much more! - Questa è solamente una delle tante applicazioni della serie Simple Mobile Tools. Si possono trovare le altre su https://www.simplemobiletools.com + PHOTO GALLERY EDITOR + Simple Gallery Pro makes it easy to edit your pictures on the fly. Crop, flip, rotate and resize your pictures. If you’re feeling a little more creative you can add filters and draw on your pictures! + + SUPPORT FOR MANY FILE TYPES + Unlike some other gallery viewers & photo organizers, Simple Gallery Pro supports a huge range of different file types including JPEG, PNG, MP4, MKV, RAW, SVG, Panoramic photos, Panoramic videos and many more. + + HIGHLY CUSTOMIZABLE GALLERY MANAGER + From the UI to the function buttons on the bottom toolbar, Simple Gallery Pro is highly customizable and works the way you want it to. No other gallery manager has this kind of flexibility! Thanks to being open source, we’re also available in 32 languages! + + RECOVER DELETED PHOTOS & VIDEOS + Accidentally deleted a precious photo or video? Don’t worry! Simple Gallery Pro features a handy recycle bin where you can recover deleted photos & videos easily. + + PROTECT & HIDE PHOTOS, VIDEOS & FILES + Using pin, pattern or your device’s fingerprint scanner you can protect and hide photos, videos & entire albums. You can protect the app itself or place locks on specific functions of the app. For example, you can’t delete a file without a fingerprint scan, helping to protect your files from accidental deletion. + + Check out the full suite of Simple Tools here: + https://www.simplemobiletools.com + + Facebook: + https://www.facebook.com/simplemobiletools + + Reddit: + https://www.reddit.com/r/SimpleMobileTools - 広告なしでプライバシーを尊重する、ファイル管理用オフラインギャラリー。 + Offline gallery without ads. Organize, edit, recover and protect photos & videos - SVG、RAW、パノラマ写真、ビデオなど、さまざまな種類の画像やビデオを表示できる高度にカスタマイズ可能なギャラリー。 + Simple Gallery Pro is a highly customizable offline gallery. Organize & edit your photos, recover deleted files with the recycle bin, protect & hide files and view a huge variety of different photo & video formats including RAW, SVG and much more. - オープンソースで、広告も、不要な許可も含まれていません。 + The app contains no ads and unnecessary permissions. As the app doesn’t require internet access either, your privacy is protected. - 価値ある機能のいくつかをリストにしましょう: - 1.検索 - 2スライドショー - 3.ノッチをサポート - 4.フォルダを一番上に固定 - 5.メディアの種類によるフィルタリング - 6.簡単にファイルを復元できるゴミ箱 - 7.全面表示ロック適応 - 8.お気に入りファイルのマークで簡単アクセス - 9.ダウン・ジェスチャーですばやくフルスクリーンメディアを閉じる - 10.フィルタを適用できる画像修正エディタ - 11.隠しアイテムやアプリ全体を保護するためのパスワード - 12.ジェスチャーまたはメニューボタンでサムネイルの並び方を変更 - 13.すばやいアクセスが可能な全面表示でカスタマイズ可能な操作ボタン - 14.メディアファイルプロパティの詳細をフルスクリーンに表示 - 15.昇順と降順の両方で、アイテムをソートまたはグループ化するための異なる方法 - 16.フォルダの非表示(他のアプリにも影響)、フォルダの除外(Simple Galleryのみに影響) + ------------------------------------------------- + SIMPLE GALLERY PRO – FEATURES + ------------------------------------------------- - 隠れアイテムの表示、アプリ全体のロック、またはファイルの削除保護には指紋認証許可が必要です。 + • Offline gallery with no ads or popups + • Simple gallery photo editor – crop, rotate, resize, draw, filters & more + • No internet access needed, giving you more privacy and security + • No unnecessary permissions required + • Quickly search images, videos & files + • Open & view many different photo and video types (RAW, SVG, panoramic etc) + • A variety of intuitive gestures to easily edit & organize files + • Lots of ways to filter, group & sort files + • Customize the appearance of Simple Gallery Pro + • Available in 32 languages + • Mark files as favorites for quick access + • Protect your photos & videos with a pattern, pin or fingerprint + • Use pin, pattern & fingerprint to protect the app launch or specific functions too + • Recover deleted photos & videos from the recycle bin + • Toggle visibility of files to hide photos & videos + • Create a customizable slideshow of your files + • View detailed information of your files (resolution, EXIF values etc) + • Simple Gallery Pro is open source + … and much much more! - このアプリは、大きな一連のアプリの一つです。 他のアプリは https://www.simplemobiletools.com で見つけることができます + PHOTO GALLERY EDITOR + Simple Gallery Pro makes it easy to edit your pictures on the fly. Crop, flip, rotate and resize your pictures. If you’re feeling a little more creative you can add filters and draw on your pictures! + + SUPPORT FOR MANY FILE TYPES + Unlike some other gallery viewers & photo organizers, Simple Gallery Pro supports a huge range of different file types including JPEG, PNG, MP4, MKV, RAW, SVG, Panoramic photos, Panoramic videos and many more. + + HIGHLY CUSTOMIZABLE GALLERY MANAGER + From the UI to the function buttons on the bottom toolbar, Simple Gallery Pro is highly customizable and works the way you want it to. No other gallery manager has this kind of flexibility! Thanks to being open source, we’re also available in 32 languages! + + RECOVER DELETED PHOTOS & VIDEOS + Accidentally deleted a precious photo or video? Don’t worry! Simple Gallery Pro features a handy recycle bin where you can recover deleted photos & videos easily. + + PROTECT & HIDE PHOTOS, VIDEOS & FILES + Using pin, pattern or your device’s fingerprint scanner you can protect and hide photos, videos & entire albums. You can protect the app itself or place locks on specific functions of the app. For example, you can’t delete a file without a fingerprint scan, helping to protect your files from accidental deletion. + + Check out the full suite of Simple Tools here: + https://www.simplemobiletools.com + + Facebook: + https://www.facebook.com/simplemobiletools + + Reddit: + https://www.reddit.com/r/SimpleMobileTools - An offline gallery for managing your files without ads, respecting your privacy. + Offline gallery without ads. Organize, edit, recover and protect photos & videos - A highly customizable gallery capable of displaying many different image and video types including SVGs, RAWs, panoramic photos and videos. + Simple Gallery Pro is a highly customizable offline gallery. Organize & edit your photos, recover deleted files with the recycle bin, protect & hide files and view a huge variety of different photo & video formats including RAW, SVG and much more. - It is open source, contains no ads or unnecessary permissions. + The app contains no ads and unnecessary permissions. As the app doesn’t require internet access either, your privacy is protected. - Let\'s list some of its features worth mentioning: - 1. Search - 2. Slideshow - 3. Notch support - 4. Pinning folders to the top - 5. Filtering media files by type - 6. Recycle bin for easy file recovery - 7. Fullscreen view orientation locking - 8. Marking favorite files for easy access - 9. Quick fullscreen media closing with down gesture - 10. An editor for modifying images and applying filters - 11. Password protection for protecting hidden items or the whole app - 12. Changing the thumbnail column count with gestures or menu buttons - 13. Customizable bottom actions at the fullscreen view for quick access - 14. Showing extended details over fullscreen media with desired file properties - 15. Several different ways of sorting or grouping items, both ascending and descending - 16. Hiding folders (affects other apps too), excluding folders (affects only Simple Gallery) + ------------------------------------------------- + SIMPLE GALLERY PRO – FEATURES + ------------------------------------------------- - The fingerprint permission is needed for locking either hidden item visibility, the whole app, or protecting files from being deleted. + • Offline gallery with no ads or popups + • Simple gallery photo editor – crop, rotate, resize, draw, filters & more + • No internet access needed, giving you more privacy and security + • No unnecessary permissions required + • Quickly search images, videos & files + • Open & view many different photo and video types (RAW, SVG, panoramic etc) + • A variety of intuitive gestures to easily edit & organize files + • Lots of ways to filter, group & sort files + • Customize the appearance of Simple Gallery Pro + • Available in 32 languages + • Mark files as favorites for quick access + • Protect your photos & videos with a pattern, pin or fingerprint + • Use pin, pattern & fingerprint to protect the app launch or specific functions too + • Recover deleted photos & videos from the recycle bin + • Toggle visibility of files to hide photos & videos + • Create a customizable slideshow of your files + • View detailed information of your files (resolution, EXIF values etc) + • Simple Gallery Pro is open source + … and much much more! - This app is just one piece of a bigger series of apps. You can find the rest of them at https://www.simplemobiletools.com + PHOTO GALLERY EDITOR + Simple Gallery Pro makes it easy to edit your pictures on the fly. Crop, flip, rotate and resize your pictures. If you’re feeling a little more creative you can add filters and draw on your pictures! + + SUPPORT FOR MANY FILE TYPES + Unlike some other gallery viewers & photo organizers, Simple Gallery Pro supports a huge range of different file types including JPEG, PNG, MP4, MKV, RAW, SVG, Panoramic photos, Panoramic videos and many more. + + HIGHLY CUSTOMIZABLE GALLERY MANAGER + From the UI to the function buttons on the bottom toolbar, Simple Gallery Pro is highly customizable and works the way you want it to. No other gallery manager has this kind of flexibility! Thanks to being open source, we’re also available in 32 languages! + + RECOVER DELETED PHOTOS & VIDEOS + Accidentally deleted a precious photo or video? Don’t worry! Simple Gallery Pro features a handy recycle bin where you can recover deleted photos & videos easily. + + PROTECT & HIDE PHOTOS, VIDEOS & FILES + Using pin, pattern or your device’s fingerprint scanner you can protect and hide photos, videos & entire albums. You can protect the app itself or place locks on specific functions of the app. For example, you can’t delete a file without a fingerprint scan, helping to protect your files from accidental deletion. + + Check out the full suite of Simple Tools here: + https://www.simplemobiletools.com + + Facebook: + https://www.facebook.com/simplemobiletools + + Reddit: + https://www.reddit.com/r/SimpleMobileTools - An offline gallery for managing your files without ads, respecting your privacy. + Offline gallery without ads. Organize, edit, recover and protect photos & videos - A highly customizable gallery capable of displaying many different image and video types including SVGs, RAWs, panoramic photos and videos. + Simple Gallery Pro is a highly customizable offline gallery. Organize & edit your photos, recover deleted files with the recycle bin, protect & hide files and view a huge variety of different photo & video formats including RAW, SVG and much more. - It is open source, contains no ads or unnecessary permissions. + The app contains no ads and unnecessary permissions. As the app doesn’t require internet access either, your privacy is protected. - Let\'s list some of its features worth mentioning: - 1. Search - 2. Slideshow - 3. Notch support - 4. Pinning folders to the top - 5. Filtering media files by type - 6. Recycle bin for easy file recovery - 7. Fullscreen view orientation locking - 8. Marking favorite files for easy access - 9. Quick fullscreen media closing with down gesture - 10. An editor for modifying images and applying filters - 11. Password protection for protecting hidden items or the whole app - 12. Changing the thumbnail column count with gestures or menu buttons - 13. Customizable bottom actions at the fullscreen view for quick access - 14. Showing extended details over fullscreen media with desired file properties - 15. Several different ways of sorting or grouping items, both ascending and descending - 16. Hiding folders (affects other apps too), excluding folders (affects only Simple Gallery) + ------------------------------------------------- + SIMPLE GALLERY PRO – FEATURES + ------------------------------------------------- - The fingerprint permission is needed for locking either hidden item visibility, the whole app, or protecting files from being deleted. + • Offline gallery with no ads or popups + • Simple gallery photo editor – crop, rotate, resize, draw, filters & more + • No internet access needed, giving you more privacy and security + • No unnecessary permissions required + • Quickly search images, videos & files + • Open & view many different photo and video types (RAW, SVG, panoramic etc) + • A variety of intuitive gestures to easily edit & organize files + • Lots of ways to filter, group & sort files + • Customize the appearance of Simple Gallery Pro + • Available in 32 languages + • Mark files as favorites for quick access + • Protect your photos & videos with a pattern, pin or fingerprint + • Use pin, pattern & fingerprint to protect the app launch or specific functions too + • Recover deleted photos & videos from the recycle bin + • Toggle visibility of files to hide photos & videos + • Create a customizable slideshow of your files + • View detailed information of your files (resolution, EXIF values etc) + • Simple Gallery Pro is open source + … and much much more! - This app is just one piece of a bigger series of apps. You can find the rest of them at https://www.simplemobiletools.com + PHOTO GALLERY EDITOR + Simple Gallery Pro makes it easy to edit your pictures on the fly. Crop, flip, rotate and resize your pictures. If you’re feeling a little more creative you can add filters and draw on your pictures! + + SUPPORT FOR MANY FILE TYPES + Unlike some other gallery viewers & photo organizers, Simple Gallery Pro supports a huge range of different file types including JPEG, PNG, MP4, MKV, RAW, SVG, Panoramic photos, Panoramic videos and many more. + + HIGHLY CUSTOMIZABLE GALLERY MANAGER + From the UI to the function buttons on the bottom toolbar, Simple Gallery Pro is highly customizable and works the way you want it to. No other gallery manager has this kind of flexibility! Thanks to being open source, we’re also available in 32 languages! + + RECOVER DELETED PHOTOS & VIDEOS + Accidentally deleted a precious photo or video? Don’t worry! Simple Gallery Pro features a handy recycle bin where you can recover deleted photos & videos easily. + + PROTECT & HIDE PHOTOS, VIDEOS & FILES + Using pin, pattern or your device’s fingerprint scanner you can protect and hide photos, videos & entire albums. You can protect the app itself or place locks on specific functions of the app. For example, you can’t delete a file without a fingerprint scan, helping to protect your files from accidental deletion. + + Check out the full suite of Simple Tools here: + https://www.simplemobiletools.com + + Facebook: + https://www.facebook.com/simplemobiletools + + Reddit: + https://www.reddit.com/r/SimpleMobileTools - An offline gallery for managing your files without ads, respecting your privacy. + Offline gallery without ads. Organize, edit, recover and protect photos & videos - A highly customizable gallery capable of displaying many different image and video types including SVGs, RAWs, panoramic photos and videos. + Simple Gallery Pro is a highly customizable offline gallery. Organize & edit your photos, recover deleted files with the recycle bin, protect & hide files and view a huge variety of different photo & video formats including RAW, SVG and much more. - It is open source, contains no ads or unnecessary permissions. + The app contains no ads and unnecessary permissions. As the app doesn’t require internet access either, your privacy is protected. - Let\'s list some of its features worth mentioning: - 1. Search - 2. Slideshow - 3. Notch support - 4. Pinning folders to the top - 5. Filtering media files by type - 6. Recycle bin for easy file recovery - 7. Fullscreen view orientation locking - 8. Marking favorite files for easy access - 9. Quick fullscreen media closing with down gesture - 10. An editor for modifying images and applying filters - 11. Password protection for protecting hidden items or the whole app - 12. Changing the thumbnail column count with gestures or menu buttons - 13. Customizable bottom actions at the fullscreen view for quick access - 14. Showing extended details over fullscreen media with desired file properties - 15. Several different ways of sorting or grouping items, both ascending and descending - 16. Hiding folders (affects other apps too), excluding folders (affects only Simple Gallery) + ------------------------------------------------- + SIMPLE GALLERY PRO – FEATURES + ------------------------------------------------- - The fingerprint permission is needed for locking either hidden item visibility, the whole app, or protecting files from being deleted. + • Offline gallery with no ads or popups + • Simple gallery photo editor – crop, rotate, resize, draw, filters & more + • No internet access needed, giving you more privacy and security + • No unnecessary permissions required + • Quickly search images, videos & files + • Open & view many different photo and video types (RAW, SVG, panoramic etc) + • A variety of intuitive gestures to easily edit & organize files + • Lots of ways to filter, group & sort files + • Customize the appearance of Simple Gallery Pro + • Available in 32 languages + • Mark files as favorites for quick access + • Protect your photos & videos with a pattern, pin or fingerprint + • Use pin, pattern & fingerprint to protect the app launch or specific functions too + • Recover deleted photos & videos from the recycle bin + • Toggle visibility of files to hide photos & videos + • Create a customizable slideshow of your files + • View detailed information of your files (resolution, EXIF values etc) + • Simple Gallery Pro is open source + … and much much more! - This app is just one piece of a bigger series of apps. You can find the rest of them at https://www.simplemobiletools.com + PHOTO GALLERY EDITOR + Simple Gallery Pro makes it easy to edit your pictures on the fly. Crop, flip, rotate and resize your pictures. If you’re feeling a little more creative you can add filters and draw on your pictures! + + SUPPORT FOR MANY FILE TYPES + Unlike some other gallery viewers & photo organizers, Simple Gallery Pro supports a huge range of different file types including JPEG, PNG, MP4, MKV, RAW, SVG, Panoramic photos, Panoramic videos and many more. + + HIGHLY CUSTOMIZABLE GALLERY MANAGER + From the UI to the function buttons on the bottom toolbar, Simple Gallery Pro is highly customizable and works the way you want it to. No other gallery manager has this kind of flexibility! Thanks to being open source, we’re also available in 32 languages! + + RECOVER DELETED PHOTOS & VIDEOS + Accidentally deleted a precious photo or video? Don’t worry! Simple Gallery Pro features a handy recycle bin where you can recover deleted photos & videos easily. + + PROTECT & HIDE PHOTOS, VIDEOS & FILES + Using pin, pattern or your device’s fingerprint scanner you can protect and hide photos, videos & entire albums. You can protect the app itself or place locks on specific functions of the app. For example, you can’t delete a file without a fingerprint scan, helping to protect your files from accidental deletion. + + Check out the full suite of Simple Tools here: + https://www.simplemobiletools.com + + Facebook: + https://www.facebook.com/simplemobiletools + + Reddit: + https://www.reddit.com/r/SimpleMobileTools - Een privacyvriendelijke advertentievrije galerij voor afbeeldingen en video\'s. + Offline gallery without ads. Organize, edit, recover and protect photos & videos - Een zeer goed aan te passen galerij voor afbeeldingen en video\'s in vele bestandsformaten, waaronder SVG, RAW, panoramafoto\'s en -video\'s. + Simple Gallery Pro is a highly customizable offline gallery. Organize & edit your photos, recover deleted files with the recycle bin, protect & hide files and view a huge variety of different photo & video formats including RAW, SVG and much more. - Deze app is open-source, bevat geen advertenties en vraagt niet om onnodige machtigingen. + The app contains no ads and unnecessary permissions. As the app doesn’t require internet access either, your privacy is protected. - Een lijst met de belangrijkste mogelijkheden: - 1. Zoeken - 2. Diavoorstelling - 3. Ondersteuning voor schermen met een inkeping - 4. Mappen bovenaan vastzetten - 5. Media filteren op bestandstype - 6. Een prullenbak - 7. Oriëntatie vastzetten voor volledig scherm - 8. Favorieten - 9. Veeggebaren in volledig scherm - 10. Afbeeldingen bewerken en filters toepassen - 11. Verborgen items of de gehele app beveiligen met een wachtwoord - 12. Het aantal kolommen aanpassen via veeggebaren of menuknoppen - 13. De acties op de werkbalk in volledig scherm aanpassen - 14. Uitgebreide informatie tonen over de bestanden in volledig scherm - 15. Items sorteren en groeperen op verschillende manieren - 16. Mappen verbergen (ook voor andere apps), of mappen uitsluiten (alleen voor deze app) + ------------------------------------------------- + SIMPLE GALLERY PRO – FEATURES + ------------------------------------------------- - De machtiging voor vingerafdrukken is benodigd voor het beveiligen van verborgen items, of de hele app, of om te voorkomen dat bestanden kunnen worden verwijderd. + • Offline gallery with no ads or popups + • Simple gallery photo editor – crop, rotate, resize, draw, filters & more + • No internet access needed, giving you more privacy and security + • No unnecessary permissions required + • Quickly search images, videos & files + • Open & view many different photo and video types (RAW, SVG, panoramic etc) + • A variety of intuitive gestures to easily edit & organize files + • Lots of ways to filter, group & sort files + • Customize the appearance of Simple Gallery Pro + • Available in 32 languages + • Mark files as favorites for quick access + • Protect your photos & videos with a pattern, pin or fingerprint + • Use pin, pattern & fingerprint to protect the app launch or specific functions too + • Recover deleted photos & videos from the recycle bin + • Toggle visibility of files to hide photos & videos + • Create a customizable slideshow of your files + • View detailed information of your files (resolution, EXIF values etc) + • Simple Gallery Pro is open source + … and much much more! - Deze app is onderdeel van een grotere collectie. De andere apps zijn te vinden op https://www.simplemobiletools.com + PHOTO GALLERY EDITOR + Simple Gallery Pro makes it easy to edit your pictures on the fly. Crop, flip, rotate and resize your pictures. If you’re feeling a little more creative you can add filters and draw on your pictures! + + SUPPORT FOR MANY FILE TYPES + Unlike some other gallery viewers & photo organizers, Simple Gallery Pro supports a huge range of different file types including JPEG, PNG, MP4, MKV, RAW, SVG, Panoramic photos, Panoramic videos and many more. + + HIGHLY CUSTOMIZABLE GALLERY MANAGER + From the UI to the function buttons on the bottom toolbar, Simple Gallery Pro is highly customizable and works the way you want it to. No other gallery manager has this kind of flexibility! Thanks to being open source, we’re also available in 32 languages! + + RECOVER DELETED PHOTOS & VIDEOS + Accidentally deleted a precious photo or video? Don’t worry! Simple Gallery Pro features a handy recycle bin where you can recover deleted photos & videos easily. + + PROTECT & HIDE PHOTOS, VIDEOS & FILES + Using pin, pattern or your device’s fingerprint scanner you can protect and hide photos, videos & entire albums. You can protect the app itself or place locks on specific functions of the app. For example, you can’t delete a file without a fingerprint scan, helping to protect your files from accidental deletion. + + Check out the full suite of Simple Tools here: + https://www.simplemobiletools.com + + Facebook: + https://www.facebook.com/simplemobiletools + + Reddit: + https://www.reddit.com/r/SimpleMobileTools - Galeria pozwalająca na zarządzanie Twoimi plikami bez reklam, szanująca Twoją prywatność. + Offline gallery without ads. Organize, edit, recover and protect photos & videos - Wysoce konfigurowalna galeria obsługująca wiele formatów obrazów i filmów, w tym SVG, RAW oraz multimedia panoramiczne. - - Jest otwartoźródłowa, nie zawiera reklam i nie potrzebuje masy uprawnień. + Simple Gallery Pro is a highly customizable offline gallery. Organize & edit your photos, recover deleted files with the recycle bin, protect & hide files and view a huge variety of different photo & video formats including RAW, SVG and much more. - Oto lista wartych wspomnienia funkcji: - 1. Wyszukiwanie - 2. Pokazy slajdów - 3. Wsparcie dla wcięć w ekranach - 4. Przypinanie folderów - 5. Filtrowanie plików według typu - 6. Kosz dla łatwego odzyskiwania plików - 7. Blokowanie orientacji ekranu w widoku pełnoekranowym - 8. Oznaczanie plików jako ulubione dla łatwiejszego do nich dostępu - 9. Szybkie zamykanie pełnoekranowego widoku gestem pociągnięcia w dół - 10. Edytor do szybkich modyfikacji i poprawek - 11. Ochrona plików i/lub całej aplikacji hasłem - 12. Zmiana ilości kolumn w widoku miniatur gestami lub w menu - 13. Konfigurowalne przyciski akcji w widoku pełnoekranowym - 14. Rozszerzone informacje o multimediach w widoku pełnoekranowym - 15. Wiele sposobów sortowania i grupowania plików i folderów, rosnąco i malejąco - 16. Ukrywanie folderów (wszędzie) i ich wykluczanie (tylko w obrębie tej aplikacji) + The app contains no ads and unnecessary permissions. As the app doesn’t require internet access either, your privacy is protected. - Uprawnienie odnośnie odcisków palców potrzebne jest do blokowania widoczności plików i folderów, do ochrony przed ich usunięciem i do blokowania dostępu do aplikacji. + ------------------------------------------------- + SIMPLE GALLERY PRO – FEATURES + ------------------------------------------------- - Aplikacja ta jest tylko częścią serii. Pozostałe znajdziesz tutaj: https://www.simplemobiletools.com + • Offline gallery with no ads or popups + • Simple gallery photo editor – crop, rotate, resize, draw, filters & more + • No internet access needed, giving you more privacy and security + • No unnecessary permissions required + • Quickly search images, videos & files + • Open & view many different photo and video types (RAW, SVG, panoramic etc) + • A variety of intuitive gestures to easily edit & organize files + • Lots of ways to filter, group & sort files + • Customize the appearance of Simple Gallery Pro + • Available in 32 languages + • Mark files as favorites for quick access + • Protect your photos & videos with a pattern, pin or fingerprint + • Use pin, pattern & fingerprint to protect the app launch or specific functions too + • Recover deleted photos & videos from the recycle bin + • Toggle visibility of files to hide photos & videos + • Create a customizable slideshow of your files + • View detailed information of your files (resolution, EXIF values etc) + • Simple Gallery Pro is open source + … and much much more! + + PHOTO GALLERY EDITOR + Simple Gallery Pro makes it easy to edit your pictures on the fly. Crop, flip, rotate and resize your pictures. If you’re feeling a little more creative you can add filters and draw on your pictures! + + SUPPORT FOR MANY FILE TYPES + Unlike some other gallery viewers & photo organizers, Simple Gallery Pro supports a huge range of different file types including JPEG, PNG, MP4, MKV, RAW, SVG, Panoramic photos, Panoramic videos and many more. + + HIGHLY CUSTOMIZABLE GALLERY MANAGER + From the UI to the function buttons on the bottom toolbar, Simple Gallery Pro is highly customizable and works the way you want it to. No other gallery manager has this kind of flexibility! Thanks to being open source, we’re also available in 32 languages! + + RECOVER DELETED PHOTOS & VIDEOS + Accidentally deleted a precious photo or video? Don’t worry! Simple Gallery Pro features a handy recycle bin where you can recover deleted photos & videos easily. + + PROTECT & HIDE PHOTOS, VIDEOS & FILES + Using pin, pattern or your device’s fingerprint scanner you can protect and hide photos, videos & entire albums. You can protect the app itself or place locks on specific functions of the app. For example, you can’t delete a file without a fingerprint scan, helping to protect your files from accidental deletion. + + Check out the full suite of Simple Tools here: + https://www.simplemobiletools.com + + Facebook: + https://www.facebook.com/simplemobiletools + + Reddit: + https://www.reddit.com/r/SimpleMobileTools - An offline gallery for managing your files without ads, respecting your privacy. + Offline gallery without ads. Organize, edit, recover and protect photos & videos - A highly customizable gallery capable of displaying many different image and video types including SVGs, RAWs, panoramic photos and videos. + Simple Gallery Pro is a highly customizable offline gallery. Organize & edit your photos, recover deleted files with the recycle bin, protect & hide files and view a huge variety of different photo & video formats including RAW, SVG and much more. - It is open source, contains no ads or unnecessary permissions. + The app contains no ads and unnecessary permissions. As the app doesn’t require internet access either, your privacy is protected. - Let\'s list some of its features worth mentioning: - 1. Search - 2. Slideshow - 3. Notch support - 4. Pinning folders to the top - 5. Filtering media files by type - 6. Recycle bin for easy file recovery - 7. Fullscreen view orientation locking - 8. Marking favorite files for easy access - 9. Quick fullscreen media closing with down gesture - 10. An editor for modifying images and applying filters - 11. Password protection for protecting hidden items or the whole app - 12. Changing the thumbnail column count with gestures or menu buttons - 13. Customizable bottom actions at the fullscreen view for quick access - 14. Showing extended details over fullscreen media with desired file properties - 15. Several different ways of sorting or grouping items, both ascending and descending - 16. Hiding folders (affects other apps too), excluding folders (affects only Simple Gallery) + ------------------------------------------------- + SIMPLE GALLERY PRO – FEATURES + ------------------------------------------------- - The fingerprint permission is needed for locking either hidden item visibility, the whole app, or protecting files from being deleted. + • Offline gallery with no ads or popups + • Simple gallery photo editor – crop, rotate, resize, draw, filters & more + • No internet access needed, giving you more privacy and security + • No unnecessary permissions required + • Quickly search images, videos & files + • Open & view many different photo and video types (RAW, SVG, panoramic etc) + • A variety of intuitive gestures to easily edit & organize files + • Lots of ways to filter, group & sort files + • Customize the appearance of Simple Gallery Pro + • Available in 32 languages + • Mark files as favorites for quick access + • Protect your photos & videos with a pattern, pin or fingerprint + • Use pin, pattern & fingerprint to protect the app launch or specific functions too + • Recover deleted photos & videos from the recycle bin + • Toggle visibility of files to hide photos & videos + • Create a customizable slideshow of your files + • View detailed information of your files (resolution, EXIF values etc) + • Simple Gallery Pro is open source + … and much much more! - This app is just one piece of a bigger series of apps. You can find the rest of them at https://www.simplemobiletools.com + PHOTO GALLERY EDITOR + Simple Gallery Pro makes it easy to edit your pictures on the fly. Crop, flip, rotate and resize your pictures. If you’re feeling a little more creative you can add filters and draw on your pictures! + + SUPPORT FOR MANY FILE TYPES + Unlike some other gallery viewers & photo organizers, Simple Gallery Pro supports a huge range of different file types including JPEG, PNG, MP4, MKV, RAW, SVG, Panoramic photos, Panoramic videos and many more. + + HIGHLY CUSTOMIZABLE GALLERY MANAGER + From the UI to the function buttons on the bottom toolbar, Simple Gallery Pro is highly customizable and works the way you want it to. No other gallery manager has this kind of flexibility! Thanks to being open source, we’re also available in 32 languages! + + RECOVER DELETED PHOTOS & VIDEOS + Accidentally deleted a precious photo or video? Don’t worry! Simple Gallery Pro features a handy recycle bin where you can recover deleted photos & videos easily. + + PROTECT & HIDE PHOTOS, VIDEOS & FILES + Using pin, pattern or your device’s fingerprint scanner you can protect and hide photos, videos & entire albums. You can protect the app itself or place locks on specific functions of the app. For example, you can’t delete a file without a fingerprint scan, helping to protect your files from accidental deletion. + + Check out the full suite of Simple Tools here: + https://www.simplemobiletools.com + + Facebook: + https://www.facebook.com/simplemobiletools + + Reddit: + https://www.reddit.com/r/SimpleMobileTools - Aplicação para gerir os seus ficheiros, sem anúncios e com total privacidade. + Offline gallery without ads. Organize, edit, recover and protect photos & videos - Um aplicação capaz de mostrar diversos tipos de imagens e vídeos incluíndo SVG, RAW, fotos panorâmicas e vídeos. + Simple Gallery Pro is a highly customizable offline gallery. Organize & edit your photos, recover deleted files with the recycle bin, protect & hide files and view a huge variety of different photo & video formats including RAW, SVG and much more. - É totalmente open source, não tem anúncios nem requer permissões desnecessárias. + The app contains no ads and unnecessary permissions. As the app doesn’t require internet access either, your privacy is protected. - Algumas das suas funcionalidades: - 1. Pesquisa - 2. Apresentações - 3. Suporte notch - 4. Fixação de pastas - 5. Filtro de ficheiros por tipo - 6. Reciclagem para recuperação de ficheiros - 7. Possibilidade de bloquer a orientação da vista - 8. Possibilidade de marcar ficheiros como favoritos - 9. Possibilidade de sair de ecrã completo com um gesto - 10. Editor para modificar imagens e aplicar filtros - 11. Possibilidade de proteger ficheiros com palavra-passe - 12. Possibilidade de alterar o número de colunas com gestos ou botões de menu - 13. Botões de ação personalizados - 14. Possibilidade de mostrar detalhes extra em ecrã completo bem como as propriedades dos ficheiros - 15. Diversas formas para organizar e agrupar itens - 16. Proteção de pastas (com efeito nas outras aplicações) e exclusão de pastas (apenas Simple Gallery) + ------------------------------------------------- + SIMPLE GALLERY PRO – FEATURES + ------------------------------------------------- - A permissão Impressão digital é necessária para proteger a visibilidade dos itens ocultos, a aplicação e/ou para impedir a eliminação dos ficheiros. + • Offline gallery with no ads or popups + • Simple gallery photo editor – crop, rotate, resize, draw, filters & more + • No internet access needed, giving you more privacy and security + • No unnecessary permissions required + • Quickly search images, videos & files + • Open & view many different photo and video types (RAW, SVG, panoramic etc) + • A variety of intuitive gestures to easily edit & organize files + • Lots of ways to filter, group & sort files + • Customize the appearance of Simple Gallery Pro + • Available in 32 languages + • Mark files as favorites for quick access + • Protect your photos & videos with a pattern, pin or fingerprint + • Use pin, pattern & fingerprint to protect the app launch or specific functions too + • Recover deleted photos & videos from the recycle bin + • Toggle visibility of files to hide photos & videos + • Create a customizable slideshow of your files + • View detailed information of your files (resolution, EXIF values etc) + • Simple Gallery Pro is open source + … and much much more! - Esta aplicação é apenas parte de um conjunto mais vasto de aplicações. Saiba mais em http://www.simplemobiletools.com + PHOTO GALLERY EDITOR + Simple Gallery Pro makes it easy to edit your pictures on the fly. Crop, flip, rotate and resize your pictures. If you’re feeling a little more creative you can add filters and draw on your pictures! + + SUPPORT FOR MANY FILE TYPES + Unlike some other gallery viewers & photo organizers, Simple Gallery Pro supports a huge range of different file types including JPEG, PNG, MP4, MKV, RAW, SVG, Panoramic photos, Panoramic videos and many more. + + HIGHLY CUSTOMIZABLE GALLERY MANAGER + From the UI to the function buttons on the bottom toolbar, Simple Gallery Pro is highly customizable and works the way you want it to. No other gallery manager has this kind of flexibility! Thanks to being open source, we’re also available in 32 languages! + + RECOVER DELETED PHOTOS & VIDEOS + Accidentally deleted a precious photo or video? Don’t worry! Simple Gallery Pro features a handy recycle bin where you can recover deleted photos & videos easily. + + PROTECT & HIDE PHOTOS, VIDEOS & FILES + Using pin, pattern or your device’s fingerprint scanner you can protect and hide photos, videos & entire albums. You can protect the app itself or place locks on specific functions of the app. For example, you can’t delete a file without a fingerprint scan, helping to protect your files from accidental deletion. + + Check out the full suite of Simple Tools here: + https://www.simplemobiletools.com + + Facebook: + https://www.facebook.com/simplemobiletools + + Reddit: + https://www.reddit.com/r/SimpleMobileTools - Автономная галерея для управления файлами. Конфиденциальная. Без рекламы. + Offline gallery without ads. Organize, edit, recover and protect photos & videos - A highly customizable gallery capable of displaying many different image and video types including SVGs, RAWs, panoramic photos and videos. + Simple Gallery Pro is a highly customizable offline gallery. Organize & edit your photos, recover deleted files with the recycle bin, protect & hide files and view a huge variety of different photo & video formats including RAW, SVG and much more. - It is open source, contains no ads or unnecessary permissions. + The app contains no ads and unnecessary permissions. As the app doesn’t require internet access either, your privacy is protected. - Let\'s list some of its features worth mentioning: - 1. Search - 2. Slideshow - 3. Notch support - 4. Pinning folders to the top - 5. Filtering media files by type - 6. Recycle bin for easy file recovery - 7. Fullscreen view orientation locking - 8. Marking favorite files for easy access - 9. Quick fullscreen media closing with down gesture - 10. An editor for modifying images and applying filters - 11. Password protection for protecting hidden items or the whole app - 12. Changing the thumbnail column count with gestures or menu buttons - 13. Customizable bottom actions at the fullscreen view for quick access - 14. Showing extended details over fullscreen media with desired file properties - 15. Several different ways of sorting or grouping items, both ascending and descending - 16. Hiding folders (affects other apps too), excluding folders (affects only Simple Gallery) + ------------------------------------------------- + SIMPLE GALLERY PRO – FEATURES + ------------------------------------------------- - The fingerprint permission is needed for locking either hidden item visibility, the whole app, or protecting files from being deleted. + • Offline gallery with no ads or popups + • Simple gallery photo editor – crop, rotate, resize, draw, filters & more + • No internet access needed, giving you more privacy and security + • No unnecessary permissions required + • Quickly search images, videos & files + • Open & view many different photo and video types (RAW, SVG, panoramic etc) + • A variety of intuitive gestures to easily edit & organize files + • Lots of ways to filter, group & sort files + • Customize the appearance of Simple Gallery Pro + • Available in 32 languages + • Mark files as favorites for quick access + • Protect your photos & videos with a pattern, pin or fingerprint + • Use pin, pattern & fingerprint to protect the app launch or specific functions too + • Recover deleted photos & videos from the recycle bin + • Toggle visibility of files to hide photos & videos + • Create a customizable slideshow of your files + • View detailed information of your files (resolution, EXIF values etc) + • Simple Gallery Pro is open source + … and much much more! - This app is just one piece of a bigger series of apps. You can find the rest of them at https://www.simplemobiletools.com + PHOTO GALLERY EDITOR + Simple Gallery Pro makes it easy to edit your pictures on the fly. Crop, flip, rotate and resize your pictures. If you’re feeling a little more creative you can add filters and draw on your pictures! + + SUPPORT FOR MANY FILE TYPES + Unlike some other gallery viewers & photo organizers, Simple Gallery Pro supports a huge range of different file types including JPEG, PNG, MP4, MKV, RAW, SVG, Panoramic photos, Panoramic videos and many more. + + HIGHLY CUSTOMIZABLE GALLERY MANAGER + From the UI to the function buttons on the bottom toolbar, Simple Gallery Pro is highly customizable and works the way you want it to. No other gallery manager has this kind of flexibility! Thanks to being open source, we’re also available in 32 languages! + + RECOVER DELETED PHOTOS & VIDEOS + Accidentally deleted a precious photo or video? Don’t worry! Simple Gallery Pro features a handy recycle bin where you can recover deleted photos & videos easily. + + PROTECT & HIDE PHOTOS, VIDEOS & FILES + Using pin, pattern or your device’s fingerprint scanner you can protect and hide photos, videos & entire albums. You can protect the app itself or place locks on specific functions of the app. For example, you can’t delete a file without a fingerprint scan, helping to protect your files from accidental deletion. + + Check out the full suite of Simple Tools here: + https://www.simplemobiletools.com + + Facebook: + https://www.facebook.com/simplemobiletools + + Reddit: + https://www.reddit.com/r/SimpleMobileTools - Offline galéria na správu vašich súborov, rešpektujúca vaše súkromie. + Offline gallery without ads. Organize, edit, recover and protect photos & videos - Nastaviteľná galéria na zobrazovanie množstva rozličných druhov obrázkov a videí, vrátane SVG, RAW súborov, panoramatických fotiek a videí. + Simple Gallery Pro is a highly customizable offline gallery. Organize & edit your photos, recover deleted files with the recycle bin, protect & hide files and view a huge variety of different photo & video formats including RAW, SVG and much more. - Je open source, neobsahuje reklamy, ani nepotrebné oprávnenia. + The app contains no ads and unnecessary permissions. As the app doesn’t require internet access either, your privacy is protected. - Tu je niekoľko funkcií hodných spomenutia: - 1. Vyhľadávanie - 2. Slideshow - 3. Podpora pre zárez v displeji - 4. Pripínanie priečinkov na vrch - 5. Filtrovanie médií podľa typu - 6. Odpadkový kôš pre jednoduchú obnovu súborov - 7. Uzamykanie orientácie celoobrazovkového režimu - 8. Označovanie obľúbených položiek pre jednoduchý prístup - 9. Rýchle ukončovanie celoobrazovkového režimu pomocou potiahnutia prstom dole - 10. Editor na úpravu obrázkov a aplikáciu filtrov - 11. Ochrana heslom pre zobrazovanie skrytých súborov, alebo celej aplikácie - 12. Zmena počtu stĺpcov s náhľadmi buď gestúrami, alebo pomocou menu tlačidiel - 13. Nastaviteľné spodné akcie na celoobrazovkovom režime pre rýchly prístup - 14. Zobrazenie nastaviteľných rozšírených vlastností ponad celoobrazovkové médiá - 15. Niekoľko rozličných spôsobov radenia a zoskupovania položiek vzostupne, alebo zostupne - 16. Ukrývanie priečinkov (ovplyvňuje aj iné aplikácie), alebo ich vylúčenie (ovplyvní iba Jednoduchú galériu) + ------------------------------------------------- + SIMPLE GALLERY PRO – FEATURES + ------------------------------------------------- - Prístup k odtlačkom prstov je potrebný pre ochranu zobrazenia skrytých položiek, celej aplikácie, alebo ochranu súborov pred ich odstránením. + • Offline gallery with no ads or popups + • Simple gallery photo editor – crop, rotate, resize, draw, filters & more + • No internet access needed, giving you more privacy and security + • No unnecessary permissions required + • Quickly search images, videos & files + • Open & view many different photo and video types (RAW, SVG, panoramic etc) + • A variety of intuitive gestures to easily edit & organize files + • Lots of ways to filter, group & sort files + • Customize the appearance of Simple Gallery Pro + • Available in 32 languages + • Mark files as favorites for quick access + • Protect your photos & videos with a pattern, pin or fingerprint + • Use pin, pattern & fingerprint to protect the app launch or specific functions too + • Recover deleted photos & videos from the recycle bin + • Toggle visibility of files to hide photos & videos + • Create a customizable slideshow of your files + • View detailed information of your files (resolution, EXIF values etc) + • Simple Gallery Pro is open source + … and much much more! - Táto aplikácia je iba jednou zo skupiny aplikácií. Ostatné viete nájsť na https://www.simplemobiletools.com + PHOTO GALLERY EDITOR + Simple Gallery Pro makes it easy to edit your pictures on the fly. Crop, flip, rotate and resize your pictures. If you’re feeling a little more creative you can add filters and draw on your pictures! + + SUPPORT FOR MANY FILE TYPES + Unlike some other gallery viewers & photo organizers, Simple Gallery Pro supports a huge range of different file types including JPEG, PNG, MP4, MKV, RAW, SVG, Panoramic photos, Panoramic videos and many more. + + HIGHLY CUSTOMIZABLE GALLERY MANAGER + From the UI to the function buttons on the bottom toolbar, Simple Gallery Pro is highly customizable and works the way you want it to. No other gallery manager has this kind of flexibility! Thanks to being open source, we’re also available in 32 languages! + + RECOVER DELETED PHOTOS & VIDEOS + Accidentally deleted a precious photo or video? Don’t worry! Simple Gallery Pro features a handy recycle bin where you can recover deleted photos & videos easily. + + PROTECT & HIDE PHOTOS, VIDEOS & FILES + Using pin, pattern or your device’s fingerprint scanner you can protect and hide photos, videos & entire albums. You can protect the app itself or place locks on specific functions of the app. For example, you can’t delete a file without a fingerprint scan, helping to protect your files from accidental deletion. + + Check out the full suite of Simple Tools here: + https://www.simplemobiletools.com + + Facebook: + https://www.facebook.com/simplemobiletools + + Reddit: + https://www.reddit.com/r/SimpleMobileTools - Galerija brez obvezne internetne povezave za urejanje vaših datotek brez prikazovanja oglasov in z upoštevanjem vaše zasebnosti. + Offline gallery without ads. Organize, edit, recover and protect photos & videos - Visoko prilagodljiva galerija, zmožna prikazovanja različnih tipov fotografij in videoposnetkov, vključno s SVGji, RAWi, panoramskimi fotografijami in videoposnetki. + Simple Gallery Pro is a highly customizable offline gallery. Organize & edit your photos, recover deleted files with the recycle bin, protect & hide files and view a huge variety of different photo & video formats including RAW, SVG and much more. - Temelji na odprtokodnem principu, ne vsebuje reklam in ne zahteva nepotrebnih dovoljenj. + The app contains no ads and unnecessary permissions. As the app doesn’t require internet access either, your privacy is protected. - Poglejmo nekaj glavnih funkcij vrednih omembe: - 1. Iskanje - 2. Diaprojekcija - 3. Podpora za notch - 4. Pripenjanje map na vrh - 5. Filtriranje medijskih datotek po tipu - 6. Koš za preprosto vračanje izbrisanih datotek - 7. Zaklepanje orientacije zaslona v celozaslonskem načinu - 8. Označevanje priljubljenih datotek za lažji dostop - 9. Hitro zapiranje celozaslonskega načina z gestami - 10. Urejevalnih slik za urejanje in apliciranje različnih filtrov - 11. Zaščita skritih datotek ali celotne aplikacije z geslom - 12. Spreminjanje števila stolpcev z gestami ali gumbi v meniju - 13. Nastavljive akcije na dnu zaslona v celozaslonskem načinu - 14. Prikaz razširjenih podrobnosti nad prikazom v celozaslonskem načinu - 15. Različni načini razvrščanja in združevanja datotek, tako naraščajoče kot tudi padajoče - 16. Skrivanje map (vpliva tudi na druge aplikacije), izključevanje map (vpliva zgolj na Simple galerijo) + ------------------------------------------------- + SIMPLE GALLERY PRO – FEATURES + ------------------------------------------------- - Dovoljenje za prstni odtis je potrebno za zaklepanje vidljivosti skritih elementov, celotne aplikacije ali zaščito datotek pred brisanjem. + • Offline gallery with no ads or popups + • Simple gallery photo editor – crop, rotate, resize, draw, filters & more + • No internet access needed, giving you more privacy and security + • No unnecessary permissions required + • Quickly search images, videos & files + • Open & view many different photo and video types (RAW, SVG, panoramic etc) + • A variety of intuitive gestures to easily edit & organize files + • Lots of ways to filter, group & sort files + • Customize the appearance of Simple Gallery Pro + • Available in 32 languages + • Mark files as favorites for quick access + • Protect your photos & videos with a pattern, pin or fingerprint + • Use pin, pattern & fingerprint to protect the app launch or specific functions too + • Recover deleted photos & videos from the recycle bin + • Toggle visibility of files to hide photos & videos + • Create a customizable slideshow of your files + • View detailed information of your files (resolution, EXIF values etc) + • Simple Gallery Pro is open source + … and much much more! - Ta aplikacija je le del večje zbirke aplikacij. Ostale lahko najdete na https://www.simplemobiletools.com - + PHOTO GALLERY EDITOR + Simple Gallery Pro makes it easy to edit your pictures on the fly. Crop, flip, rotate and resize your pictures. If you’re feeling a little more creative you can add filters and draw on your pictures! + + SUPPORT FOR MANY FILE TYPES + Unlike some other gallery viewers & photo organizers, Simple Gallery Pro supports a huge range of different file types including JPEG, PNG, MP4, MKV, RAW, SVG, Panoramic photos, Panoramic videos and many more. + + HIGHLY CUSTOMIZABLE GALLERY MANAGER + From the UI to the function buttons on the bottom toolbar, Simple Gallery Pro is highly customizable and works the way you want it to. No other gallery manager has this kind of flexibility! Thanks to being open source, we’re also available in 32 languages! + + RECOVER DELETED PHOTOS & VIDEOS + Accidentally deleted a precious photo or video? Don’t worry! Simple Gallery Pro features a handy recycle bin where you can recover deleted photos & videos easily. + + PROTECT & HIDE PHOTOS, VIDEOS & FILES + Using pin, pattern or your device’s fingerprint scanner you can protect and hide photos, videos & entire albums. You can protect the app itself or place locks on specific functions of the app. For example, you can’t delete a file without a fingerprint scan, helping to protect your files from accidental deletion. + + Check out the full suite of Simple Tools here: + https://www.simplemobiletools.com + + Facebook: + https://www.facebook.com/simplemobiletools + + Reddit: + https://www.reddit.com/r/SimpleMobileTools + - Ett offlinegalleri för dina filer utan reklam, respekterar din integritet. + Offline gallery without ads. Organize, edit, recover and protect photos & videos - A highly customizable gallery capable of displaying many different image and video types including SVGs, RAWs, panoramic photos and videos. + Simple Gallery Pro is a highly customizable offline gallery. Organize & edit your photos, recover deleted files with the recycle bin, protect & hide files and view a huge variety of different photo & video formats including RAW, SVG and much more. - It is open source, contains no ads or unnecessary permissions. + The app contains no ads and unnecessary permissions. As the app doesn’t require internet access either, your privacy is protected. - Let\'s list some of its features worth mentioning: - 1. Search - 2. Slideshow - 3. Notch support - 4. Pinning folders to the top - 5. Filtering media files by type - 6. Recycle bin for easy file recovery - 7. Fullscreen view orientation locking - 8. Marking favorite files for easy access - 9. Quick fullscreen media closing with down gesture - 10. An editor for modifying images and applying filters - 11. Password protection for protecting hidden items or the whole app - 12. Changing the thumbnail column count with gestures or menu buttons - 13. Customizable bottom actions at the fullscreen view for quick access - 14. Showing extended details over fullscreen media with desired file properties - 15. Several different ways of sorting or grouping items, both ascending and descending - 16. Hiding folders (affects other apps too), excluding folders (affects only Simple Gallery) + ------------------------------------------------- + SIMPLE GALLERY PRO – FEATURES + ------------------------------------------------- - The fingerprint permission is needed for locking either hidden item visibility, the whole app, or protecting files from being deleted. + • Offline gallery with no ads or popups + • Simple gallery photo editor – crop, rotate, resize, draw, filters & more + • No internet access needed, giving you more privacy and security + • No unnecessary permissions required + • Quickly search images, videos & files + • Open & view many different photo and video types (RAW, SVG, panoramic etc) + • A variety of intuitive gestures to easily edit & organize files + • Lots of ways to filter, group & sort files + • Customize the appearance of Simple Gallery Pro + • Available in 32 languages + • Mark files as favorites for quick access + • Protect your photos & videos with a pattern, pin or fingerprint + • Use pin, pattern & fingerprint to protect the app launch or specific functions too + • Recover deleted photos & videos from the recycle bin + • Toggle visibility of files to hide photos & videos + • Create a customizable slideshow of your files + • View detailed information of your files (resolution, EXIF values etc) + • Simple Gallery Pro is open source + … and much much more! - This app is just one piece of a bigger series of apps. You can find the rest of them at https://www.simplemobiletools.com + PHOTO GALLERY EDITOR + Simple Gallery Pro makes it easy to edit your pictures on the fly. Crop, flip, rotate and resize your pictures. If you’re feeling a little more creative you can add filters and draw on your pictures! + + SUPPORT FOR MANY FILE TYPES + Unlike some other gallery viewers & photo organizers, Simple Gallery Pro supports a huge range of different file types including JPEG, PNG, MP4, MKV, RAW, SVG, Panoramic photos, Panoramic videos and many more. + + HIGHLY CUSTOMIZABLE GALLERY MANAGER + From the UI to the function buttons on the bottom toolbar, Simple Gallery Pro is highly customizable and works the way you want it to. No other gallery manager has this kind of flexibility! Thanks to being open source, we’re also available in 32 languages! + + RECOVER DELETED PHOTOS & VIDEOS + Accidentally deleted a precious photo or video? Don’t worry! Simple Gallery Pro features a handy recycle bin where you can recover deleted photos & videos easily. + + PROTECT & HIDE PHOTOS, VIDEOS & FILES + Using pin, pattern or your device’s fingerprint scanner you can protect and hide photos, videos & entire albums. You can protect the app itself or place locks on specific functions of the app. For example, you can’t delete a file without a fingerprint scan, helping to protect your files from accidental deletion. + + Check out the full suite of Simple Tools here: + https://www.simplemobiletools.com + + Facebook: + https://www.facebook.com/simplemobiletools + + Reddit: + https://www.reddit.com/r/SimpleMobileTools - Dosyalarınızı reklamsız yöneten, gizliliğinizi önemseyen bir çevrimdışı galeri. + Offline gallery without ads. Organize, edit, recover and protect photos & videos - SVG\'ler, RAW\'lar, panoramik fotoğraflar ve videolar dahil olmak üzere birçok farklı resim ve video türünü gösterebilen son derece özelleştirilebilir bir galeri. + Simple Gallery Pro is a highly customizable offline gallery. Organize & edit your photos, recover deleted files with the recycle bin, protect & hide files and view a huge variety of different photo & video formats including RAW, SVG and much more. - Açık kaynaktır, hiçbir reklam veya gereksiz izinler içermez. + The app contains no ads and unnecessary permissions. As the app doesn’t require internet access either, your privacy is protected. - Bahsetmeye değer özelliklerinden bazılarını listeleyelim: - 1. Arama - 2. Slayt gösterisi - 3. Çentik desteği - 4. Klasörleri en üste sabitleme - 5. Medya dosyalarını türüne göre filtreleme - 6. Kolayca dosya kurtarma için geri dönüşüm kutusu - 7. Tam ekran görünüm yönünü kilitleme - 8. Kolay erişim için favori dosyaları işaretleme - 9. Aşağı hareket ile hızlıca tam ekran medyayı kapatma - 10. Görüntüleri değiştirmek ve filtreleri uygulamak için bir düzenleyici - 11. Gizli öğeleri veya tüm uygulamayı korumak için parola koruması - 12. Küçük resim sütun sayısını hareketlerle veya menü düğmelerini kullanarak değiştirme - 13. Hızlı erişim için tam ekran görünümünde özelleştirilebilir alt eylemler - 14. İstenen dosya özellikleriyle tam ekran medya üzerinden genişletilmiş ayrıntıları gösterme - 15. Hem artan hem de azalan öğeleri sıralamak veya gruplandırmak için birkaç farklı yol - 16. Klasörleri gizleme (diğer uygulamaları da etkiler), klasörleri hariç tutma (yalnızca Basit Galeri\'yi etkiler) + ------------------------------------------------- + SIMPLE GALLERY PRO – FEATURES + ------------------------------------------------- - Parmak izi izni, gizli öğe görünürlüğünü, tüm uygulamayı kilitlemek veya dosyaların silinmesini önlemek için gereklidir. + • Offline gallery with no ads or popups + • Simple gallery photo editor – crop, rotate, resize, draw, filters & more + • No internet access needed, giving you more privacy and security + • No unnecessary permissions required + • Quickly search images, videos & files + • Open & view many different photo and video types (RAW, SVG, panoramic etc) + • A variety of intuitive gestures to easily edit & organize files + • Lots of ways to filter, group & sort files + • Customize the appearance of Simple Gallery Pro + • Available in 32 languages + • Mark files as favorites for quick access + • Protect your photos & videos with a pattern, pin or fingerprint + • Use pin, pattern & fingerprint to protect the app launch or specific functions too + • Recover deleted photos & videos from the recycle bin + • Toggle visibility of files to hide photos & videos + • Create a customizable slideshow of your files + • View detailed information of your files (resolution, EXIF values etc) + • Simple Gallery Pro is open source + … and much much more! - Bu uygulama, daha büyük bir uygulama serisinden sadece bir parça. Geri kalanı http://www.simplemobiletools.com adresinde bulabilirsiniz + PHOTO GALLERY EDITOR + Simple Gallery Pro makes it easy to edit your pictures on the fly. Crop, flip, rotate and resize your pictures. If you’re feeling a little more creative you can add filters and draw on your pictures! + + SUPPORT FOR MANY FILE TYPES + Unlike some other gallery viewers & photo organizers, Simple Gallery Pro supports a huge range of different file types including JPEG, PNG, MP4, MKV, RAW, SVG, Panoramic photos, Panoramic videos and many more. + + HIGHLY CUSTOMIZABLE GALLERY MANAGER + From the UI to the function buttons on the bottom toolbar, Simple Gallery Pro is highly customizable and works the way you want it to. No other gallery manager has this kind of flexibility! Thanks to being open source, we’re also available in 32 languages! + + RECOVER DELETED PHOTOS & VIDEOS + Accidentally deleted a precious photo or video? Don’t worry! Simple Gallery Pro features a handy recycle bin where you can recover deleted photos & videos easily. + + PROTECT & HIDE PHOTOS, VIDEOS & FILES + Using pin, pattern or your device’s fingerprint scanner you can protect and hide photos, videos & entire albums. You can protect the app itself or place locks on specific functions of the app. For example, you can’t delete a file without a fingerprint scan, helping to protect your files from accidental deletion. + + Check out the full suite of Simple Tools here: + https://www.simplemobiletools.com + + Facebook: + https://www.facebook.com/simplemobiletools + + Reddit: + https://www.reddit.com/r/SimpleMobileTools - Офлайн-галерея для керування файлами: без реклами та з повагою до приватності. + Offline gallery without ads. Organize, edit, recover and protect photos & videos - Тонко налаштовувана галерея, здатна відображати зображення та відео різноманітних типів, включаючи SVG-зображення, RAW-зображення,панорамні фото і відео. + Simple Gallery Pro is a highly customizable offline gallery. Organize & edit your photos, recover deleted files with the recycle bin, protect & hide files and view a huge variety of different photo & video formats including RAW, SVG and much more. - Джерельний код галереї відкритий, вона не містить реклами та не вимагає зайвих дозволів. + The app contains no ads and unnecessary permissions. As the app doesn’t require internet access either, your privacy is protected. - Ось кілька її переваг, які варто згадати: - 1. Пошук - 2. Слайдшоу - 3. Підтримка закладок (Notch) - 4. Закріплення тек вгорі екрану - 5. Фільтрування медіафайлів за типом - 6. Кошик для легкого відновлення файлів - 7. Фіксація повороту екрану при повноекранному перегляді - 8. Позначення улюблених файлів для швидкого доступу - 9. Швидке закриття повноекранного перегляду жестом згори вниз - 10. Редактор для редагування зображень та накладання фільтрів - 11. Захист паролем для захисту прихованих елементів або всього додатку - 12. Зміна кількості колонок піктограм жестом чи через меню - 13. Налаштовувані кнопки швидких дій внизу екрану при повноекранному перегляді - 14. Показ детальної інформації з обраними властивостями файлу при повноекранному перегляді - 15. Кілька різних способів сортування або групування елементів - як за зростанням, так і за спаданням - 16. Приховування тек (і в інших додатках також), виключення тек (тільки в Simple Gallery) + ------------------------------------------------- + SIMPLE GALLERY PRO – FEATURES + ------------------------------------------------- - Дозвіл на доступ до відбитку пальця потрібен для блокування або видимості прихованих елементів, або всього додатку, або для захисту файлів від видалення. + • Offline gallery with no ads or popups + • Simple gallery photo editor – crop, rotate, resize, draw, filters & more + • No internet access needed, giving you more privacy and security + • No unnecessary permissions required + • Quickly search images, videos & files + • Open & view many different photo and video types (RAW, SVG, panoramic etc) + • A variety of intuitive gestures to easily edit & organize files + • Lots of ways to filter, group & sort files + • Customize the appearance of Simple Gallery Pro + • Available in 32 languages + • Mark files as favorites for quick access + • Protect your photos & videos with a pattern, pin or fingerprint + • Use pin, pattern & fingerprint to protect the app launch or specific functions too + • Recover deleted photos & videos from the recycle bin + • Toggle visibility of files to hide photos & videos + • Create a customizable slideshow of your files + • View detailed information of your files (resolution, EXIF values etc) + • Simple Gallery Pro is open source + … and much much more! - Цей додаток входить в велику серію додатків. Ви можете знайти їх на https://www.simplemobiletools.com + PHOTO GALLERY EDITOR + Simple Gallery Pro makes it easy to edit your pictures on the fly. Crop, flip, rotate and resize your pictures. If you’re feeling a little more creative you can add filters and draw on your pictures! + + SUPPORT FOR MANY FILE TYPES + Unlike some other gallery viewers & photo organizers, Simple Gallery Pro supports a huge range of different file types including JPEG, PNG, MP4, MKV, RAW, SVG, Panoramic photos, Panoramic videos and many more. + + HIGHLY CUSTOMIZABLE GALLERY MANAGER + From the UI to the function buttons on the bottom toolbar, Simple Gallery Pro is highly customizable and works the way you want it to. No other gallery manager has this kind of flexibility! Thanks to being open source, we’re also available in 32 languages! + + RECOVER DELETED PHOTOS & VIDEOS + Accidentally deleted a precious photo or video? Don’t worry! Simple Gallery Pro features a handy recycle bin where you can recover deleted photos & videos easily. + + PROTECT & HIDE PHOTOS, VIDEOS & FILES + Using pin, pattern or your device’s fingerprint scanner you can protect and hide photos, videos & entire albums. You can protect the app itself or place locks on specific functions of the app. For example, you can’t delete a file without a fingerprint scan, helping to protect your files from accidental deletion. + + Check out the full suite of Simple Tools here: + https://www.simplemobiletools.com + + Facebook: + https://www.facebook.com/simplemobiletools + + Reddit: + https://www.reddit.com/r/SimpleMobileTools - 一个没有广告,尊重隐私,便于管理文件的离线图库。 + Offline gallery without ads. Organize, edit, recover and protect photos & videos - 一个高度可定制的图库,支持很多的图像和视频类型,包括SVG,RAW,全景照片和视频。 + Simple Gallery Pro is a highly customizable offline gallery. Organize & edit your photos, recover deleted files with the recycle bin, protect & hide files and view a huge variety of different photo & video formats including RAW, SVG and much more. - 本应用是开源的,没有广告以及不必要的权限。 + The app contains no ads and unnecessary permissions. As the app doesn’t require internet access either, your privacy is protected. - 列举一些值得一提的功能: - 1.搜索 - 2.幻灯片 - 3.支持留海屏 - 4.固定文件夹到顶部 - 5.按类型过滤媒体文件 - 6.回收站(便于恢复文件) - 7.全屏视图方向锁定 - 8.标记收藏文件以便于访问 - 9.使用下滑手势关闭全屏视图 - 10.图片编辑器,可用于修改图像和应用滤镜 - 11.密码保护,可用于保护应用和隐藏项目 - 12.可使用手势或菜单按钮来更改缩略图列数 - 13.可自定义全屏视图中的底栏操作按钮,方便快速 - 14.在全屏视图下显示文件属性具有的扩展详细信息 - 15.按照不同的方式对项目进行排序或分组,包括升序和降序 - 16.隐藏文件夹(会影响其他应用),排除文件夹(仅影响本应用) + ------------------------------------------------- + SIMPLE GALLERY PRO – FEATURES + ------------------------------------------------- - 如需锁定隐藏项目的可见性,或是锁定本应用,或是保护文件不被删除,则需要指纹权限。 + • Offline gallery with no ads or popups + • Simple gallery photo editor – crop, rotate, resize, draw, filters & more + • No internet access needed, giving you more privacy and security + • No unnecessary permissions required + • Quickly search images, videos & files + • Open & view many different photo and video types (RAW, SVG, panoramic etc) + • A variety of intuitive gestures to easily edit & organize files + • Lots of ways to filter, group & sort files + • Customize the appearance of Simple Gallery Pro + • Available in 32 languages + • Mark files as favorites for quick access + • Protect your photos & videos with a pattern, pin or fingerprint + • Use pin, pattern & fingerprint to protect the app launch or specific functions too + • Recover deleted photos & videos from the recycle bin + • Toggle visibility of files to hide photos & videos + • Create a customizable slideshow of your files + • View detailed information of your files (resolution, EXIF values etc) + • Simple Gallery Pro is open source + … and much much more! - 这个应用只是一个更大的应用系列的一小部分。您可以在https://www.simplemobiletools.com找到其余的应用。 + PHOTO GALLERY EDITOR + Simple Gallery Pro makes it easy to edit your pictures on the fly. Crop, flip, rotate and resize your pictures. If you’re feeling a little more creative you can add filters and draw on your pictures! + + SUPPORT FOR MANY FILE TYPES + Unlike some other gallery viewers & photo organizers, Simple Gallery Pro supports a huge range of different file types including JPEG, PNG, MP4, MKV, RAW, SVG, Panoramic photos, Panoramic videos and many more. + + HIGHLY CUSTOMIZABLE GALLERY MANAGER + From the UI to the function buttons on the bottom toolbar, Simple Gallery Pro is highly customizable and works the way you want it to. No other gallery manager has this kind of flexibility! Thanks to being open source, we’re also available in 32 languages! + + RECOVER DELETED PHOTOS & VIDEOS + Accidentally deleted a precious photo or video? Don’t worry! Simple Gallery Pro features a handy recycle bin where you can recover deleted photos & videos easily. + + PROTECT & HIDE PHOTOS, VIDEOS & FILES + Using pin, pattern or your device’s fingerprint scanner you can protect and hide photos, videos & entire albums. You can protect the app itself or place locks on specific functions of the app. For example, you can’t delete a file without a fingerprint scan, helping to protect your files from accidental deletion. + + Check out the full suite of Simple Tools here: + https://www.simplemobiletools.com + + Facebook: + https://www.facebook.com/simplemobiletools + + Reddit: + https://www.reddit.com/r/SimpleMobileTools - 一個沒有廣告的離線相簿,用來管理你的檔案,並且尊重您的隱私。 + Offline gallery without ads. Organize, edit, recover and protect photos & videos - 一個高自訂性的相簿,能夠顯示許多不同的圖片和影片類型,包含SVGs、RAWs、全景相片和影片。 + Simple Gallery Pro is a highly customizable offline gallery. Organize & edit your photos, recover deleted files with the recycle bin, protect & hide files and view a huge variety of different photo & video formats including RAW, SVG and much more. - 它是開源的,而且不包含廣告及非必要的權限。 + The app contains no ads and unnecessary permissions. As the app doesn’t require internet access either, your privacy is protected. - 讓我們列出一些值得一提的功能: - 1. 搜尋 - 2. 投影片 - 3. 支援瀏海螢幕 - 4. 釘選資料夾在頂端 - 5. 以類型篩選媒體檔案 - 6. 輕鬆恢復檔案的回收桶 - 7. 鎖定全螢幕檢視的方向 - 8. 標記我的最愛檔案以輕鬆存取 - 9. 下滑手勢來快速關閉全螢幕媒體 - 10. 一個編輯器來修改圖片和添加濾鏡 - 11. 用密碼保護隱藏的項目或整個應用程式 - 12. 用手勢或選單按鈕來改變縮圖欄數 - 13. 在全螢幕檢視下,自訂底部操作來快速存取 - 14. 在全螢幕媒體顯示,要求的檔案屬性其詳細資訊 - 15. 幾種不同的排序或歸類項目的方式,包含遞增和遞減 - 16. 隱藏資料夾(也影響其他程式),排除資料夾(只影響簡易相簿) + ------------------------------------------------- + SIMPLE GALLERY PRO – FEATURES + ------------------------------------------------- - 指紋權限用來鎖定隱藏的項目、整個應用程式,或保護檔案不被刪除。 + • Offline gallery with no ads or popups + • Simple gallery photo editor – crop, rotate, resize, draw, filters & more + • No internet access needed, giving you more privacy and security + • No unnecessary permissions required + • Quickly search images, videos & files + • Open & view many different photo and video types (RAW, SVG, panoramic etc) + • A variety of intuitive gestures to easily edit & organize files + • Lots of ways to filter, group & sort files + • Customize the appearance of Simple Gallery Pro + • Available in 32 languages + • Mark files as favorites for quick access + • Protect your photos & videos with a pattern, pin or fingerprint + • Use pin, pattern & fingerprint to protect the app launch or specific functions too + • Recover deleted photos & videos from the recycle bin + • Toggle visibility of files to hide photos & videos + • Create a customizable slideshow of your files + • View detailed information of your files (resolution, EXIF values etc) + • Simple Gallery Pro is open source + … and much much more! - 這程式只是一系列眾多應用程式的其中一項,你可以在這發現更多 https://www.simplemobiletools.com + PHOTO GALLERY EDITOR + Simple Gallery Pro makes it easy to edit your pictures on the fly. Crop, flip, rotate and resize your pictures. If you’re feeling a little more creative you can add filters and draw on your pictures! + + SUPPORT FOR MANY FILE TYPES + Unlike some other gallery viewers & photo organizers, Simple Gallery Pro supports a huge range of different file types including JPEG, PNG, MP4, MKV, RAW, SVG, Panoramic photos, Panoramic videos and many more. + + HIGHLY CUSTOMIZABLE GALLERY MANAGER + From the UI to the function buttons on the bottom toolbar, Simple Gallery Pro is highly customizable and works the way you want it to. No other gallery manager has this kind of flexibility! Thanks to being open source, we’re also available in 32 languages! + + RECOVER DELETED PHOTOS & VIDEOS + Accidentally deleted a precious photo or video? Don’t worry! Simple Gallery Pro features a handy recycle bin where you can recover deleted photos & videos easily. + + PROTECT & HIDE PHOTOS, VIDEOS & FILES + Using pin, pattern or your device’s fingerprint scanner you can protect and hide photos, videos & entire albums. You can protect the app itself or place locks on specific functions of the app. For example, you can’t delete a file without a fingerprint scan, helping to protect your files from accidental deletion. + + Check out the full suite of Simple Tools here: + https://www.simplemobiletools.com + + Facebook: + https://www.facebook.com/simplemobiletools + + Reddit: + https://www.reddit.com/r/SimpleMobileTools - An offline gallery for managing your files without ads, respecting your privacy. + Offline gallery without ads. Organize, edit, recover and protect photos & videos - A highly customizable gallery capable of displaying many different image and video types including SVGs, RAWs, panoramic photos and videos. + Simple Gallery Pro is a highly customizable offline gallery. Organize & edit your photos, recover deleted files with the recycle bin, protect & hide files and view a huge variety of different photo & video formats including RAW, SVG and much more. - It is open source, contains no ads or unnecessary permissions. + The app contains no ads and unnecessary permissions. As the app doesn’t require internet access either, your privacy is protected. - Let\'s list some of its features worth mentioning: - 1. Search - 2. Slideshow - 3. Notch support - 4. Pinning folders to the top - 5. Filtering media files by type - 6. Recycle bin for easy file recovery - 7. Fullscreen view orientation locking - 8. Marking favorite files for easy access - 9. Quick fullscreen media closing with down gesture - 10. An editor for modifying images and applying filters - 11. Password protection for protecting hidden items or the whole app - 12. Changing the thumbnail column count with gestures or menu buttons - 13. Customizable bottom actions at the fullscreen view for quick access - 14. Showing extended details over fullscreen media with desired file properties - 15. Several different ways of sorting or grouping items, both ascending and descending - 16. Hiding folders (affects other apps too), excluding folders (affects only Simple Gallery) + ------------------------------------------------- + SIMPLE GALLERY PRO – FEATURES + ------------------------------------------------- - The fingerprint permission is needed for locking either hidden item visibility, the whole app, or protecting files from being deleted. + • Offline gallery with no ads or popups + • Simple gallery photo editor – crop, rotate, resize, draw, filters & more + • No internet access needed, giving you more privacy and security + • No unnecessary permissions required + • Quickly search images, videos & files + • Open & view many different photo and video types (RAW, SVG, panoramic etc) + • A variety of intuitive gestures to easily edit & organize files + • Lots of ways to filter, group & sort files + • Customize the appearance of Simple Gallery Pro + • Available in 32 languages + • Mark files as favorites for quick access + • Protect your photos & videos with a pattern, pin or fingerprint + • Use pin, pattern & fingerprint to protect the app launch or specific functions too + • Recover deleted photos & videos from the recycle bin + • Toggle visibility of files to hide photos & videos + • Create a customizable slideshow of your files + • View detailed information of your files (resolution, EXIF values etc) + • Simple Gallery Pro is open source + … and much much more! - This app is just one piece of a bigger series of apps. You can find the rest of them at https://www.simplemobiletools.com + PHOTO GALLERY EDITOR + Simple Gallery Pro makes it easy to edit your pictures on the fly. Crop, flip, rotate and resize your pictures. If you’re feeling a little more creative you can add filters and draw on your pictures! + + SUPPORT FOR MANY FILE TYPES + Unlike some other gallery viewers & photo organizers, Simple Gallery Pro supports a huge range of different file types including JPEG, PNG, MP4, MKV, RAW, SVG, Panoramic photos, Panoramic videos and many more. + + HIGHLY CUSTOMIZABLE GALLERY MANAGER + From the UI to the function buttons on the bottom toolbar, Simple Gallery Pro is highly customizable and works the way you want it to. No other gallery manager has this kind of flexibility! Thanks to being open source, we’re also available in 32 languages! + + RECOVER DELETED PHOTOS & VIDEOS + Accidentally deleted a precious photo or video? Don’t worry! Simple Gallery Pro features a handy recycle bin where you can recover deleted photos & videos easily. + + PROTECT & HIDE PHOTOS, VIDEOS & FILES + Using pin, pattern or your device’s fingerprint scanner you can protect and hide photos, videos & entire albums. You can protect the app itself or place locks on specific functions of the app. For example, you can’t delete a file without a fingerprint scan, helping to protect your files from accidental deletion. + + Check out the full suite of Simple Tools here: + https://www.simplemobiletools.com + + Facebook: + https://www.facebook.com/simplemobiletools + + Reddit: + https://www.reddit.com/r/SimpleMobileTools - Offline gallery without ads. Organize, edit, recover and protect photos & videos + Offline galéria bez reklám. Organizujte, upravujte, a chráňte vaše súbory. - Simple Gallery Pro is a highly customizable offline gallery. Organize & edit your photos, recover deleted files with the recycle bin, protect & hide files and view a huge variety of different photo & video formats including RAW, SVG and much more. + Jednoduchá Galéria Pro je vysoko prispôsobiteľná offline galéria. Organizujte a upravujte vaše fotky, obnovujte vymazané súbory pomocou odpadkového koša, ochraňujte a skrývajte ich, alebo prehliadajte množstvo rôznych foto a video formátov vrátane RAW, SVG a mnoho ďalších. - The app contains no ads and unnecessary permissions. As the app doesn’t require internet access either, your privacy is protected. + Apka neobsahuje žiadne reklamy, ani nepotrebné oprávnenia. Keďže apka nemá prístup na internet, vaše súkromie je chránené. ------------------------------------------------- - SIMPLE GALLERY PRO – FEATURES + JEDNODUCHÁ GALÉRIA PRO - FUNKCIE ------------------------------------------------- - • Offline gallery with no ads or popups - • Simple gallery photo editor – crop, rotate, resize, draw, filters & more - • No internet access needed, giving you more privacy and security - • No unnecessary permissions required - • Quickly search images, videos & files - • Open & view many different photo and video types (RAW, SVG, panoramic etc) - • A variety of intuitive gestures to easily edit & organize files - • Lots of ways to filter, group & sort files - • Customize the appearance of Simple Gallery Pro - • Available in 32 languages - • Mark files as favorites for quick access - • Protect your photos & videos with a pattern, pin or fingerprint - • Use pin, pattern & fingerprint to protect the app launch or specific functions too - • Recover deleted photos & videos from the recycle bin - • Toggle visibility of files to hide photos & videos - • Create a customizable slideshow of your files - • View detailed information of your files (resolution, EXIF values etc) - • Simple Gallery Pro is open source - … and much much more! + • Offline galéria bez reklám a vyskakujúcich okien + • Editor Jednoduchej Galérie - orezávajte, otáčajte, meňte veľkosť, kreslite, používajte filtre a viac + • Nie je potrebný prístup na internet, vďaka čomu máte viac súkromia a bezpečia + • Nie sú potrebné žiadne podozrivé oprávnenia + • Rýchlo prehliadajte obrázky a videá + • Otvárajte mnoho rôznych typov fotiek a videí (RAW, SVG, panoramatické atď) + • Množstvo intuitívnych gest pre jednoduchú úpravu a organizovanie súborov + • Veľa rôznych spôsobov filtrovania, zoskupovania a radenia súborov + • Zmeňte si vzhľad Jednoduchej Galérie + • Dostupná v 32 jazykoch + • Označte obľúbené súbory pre rýchly prístup + • Chráňte vaše obrázky a videá vzorom, PIN kódom alebo odtlačkom prstov + • Použite PIN kód, vzor, alebo odtlačky prstov na zabezpečenie spúšťania apky, alebo niektorých funkcií + • Obnovte vymazané fotky a videá pomocou odpadkového koša + • Prepnite viditeľnosť súborov pre ich ochranu + • Vytvorte zo súborov prezentáciu + • Prezrite si detailné informácie o súboroch (rozlíšenie, EXIF hodnoty atď) + • Jednoduchá Galéria Pro má otvorený zdrojový kód + … a mnoho mnoho ďalšieho! - PHOTO GALLERY EDITOR - Simple Gallery Pro makes it easy to edit your pictures on the fly. Crop, flip, rotate and resize your pictures. If you’re feeling a little more creative you can add filters and draw on your pictures! + EDITOR OBRÁZKOV + Jednoduchá Galéria Pro umožňuje ľahkú úpravu obrázkov. Orezávajte, preklápajte, alebo meňte ich veľkosť. Ak sa cítite kreatívne, môžete aj aplikovať filtre, alebo na nich kresliť! - SUPPORT FOR MANY FILE TYPES - Unlike some other gallery viewers & photo organizers, Simple Gallery Pro supports a huge range of different file types including JPEG, PNG, MP4, MKV, RAW, SVG, Panoramic photos, Panoramic videos and many more. + PODPORA PRE MNOŽSTVO TYPOV SÚBOROV + Na rozdiel od niektorých galérií podporuje Jednoduchá Galéria množstvo rôznych druhov súborov vrátane JPEG, PNG, MP4, MKV, RAW, SVG, panoramatických fotografií a videí. - HIGHLY CUSTOMIZABLE GALLERY MANAGER - From the UI to the function buttons on the bottom toolbar, Simple Gallery Pro is highly customizable and works the way you want it to. No other gallery manager has this kind of flexibility! Thanks to being open source, we’re also available in 32 languages! + VYSOKO UPRAVITEĽNÝ SPRÁVCA SÚBOROV + Od vzhľadu po funkcie na spodej lište, Jednoduchá Galéria je upraviteľná a bude fungovať presne tak, ako chcete. Žiadna iná galéria nie je taká flexibilná! Vďaka otvorenému zdrojovému kódu je apka dostupná v 32 jazykoch! - RECOVER DELETED PHOTOS & VIDEOS - Accidentally deleted a precious photo or video? Don’t worry! Simple Gallery Pro features a handy recycle bin where you can recover deleted photos & videos easily. + OBNOVTE VYMAZANÉ FOTKY A VIDEÁ + Vymazali ste náhodou dôležitú fotku, alebo video? Jednoduchá Galéria Pro obsahuje užitočný odpadkový kôš, vďaka ktorému viete jednoducho obnoviť vymazané súbory. - PROTECT & HIDE PHOTOS, VIDEOS & FILES - Using pin, pattern or your device’s fingerprint scanner you can protect and hide photos, videos & entire albums. You can protect the app itself or place locks on specific functions of the app. For example, you can’t delete a file without a fingerprint scan, helping to protect your files from accidental deletion. + OCHRÁŇTE A SKRÝVAJTE FOTOGRAFIE A VIDEÁ + Použitím PIN kódu, vzoru, alebo odtlačkov prstov viete vaše súbory ochrániť, alebo ukryť. Taktiež viete ochrániť aj buď spúšťanie apky ako takej, alebo niektoré jej funkcie. Napríklad tým viete zabrániť náhodnému vymazaniu súborov bez vašich odtlačkov prstov. - Check out the full suite of Simple Tools here: + Pozrite si celú sadu aplikácií na: https://www.simplemobiletools.com Facebook: From 373c561d057ed805ab62134def365242cc20427b Mon Sep 17 00:00:00 2001 From: spkprs Date: Sun, 10 Mar 2019 21:10:18 +0200 Subject: [PATCH 16/18] Update strings.xml --- app/src/main/res/values-el/strings.xml | 70 +++++++++++++------------- 1 file changed, 35 insertions(+), 35 deletions(-) diff --git a/app/src/main/res/values-el/strings.xml b/app/src/main/res/values-el/strings.xml index d40bb3ee9..bc0d5787c 100644 --- a/app/src/main/res/values-el/strings.xml +++ b/app/src/main/res/values-el/strings.xml @@ -191,7 +191,7 @@ Εναλλαγή προβολής αρχείου - Πώς μπορώ να κάνω το Simple Gallery προκαθορισμένη εφαρμογή συλλογής πολυμέσων; + Πώς μπορώ να κάνω το Simple Gallery προεπιλεγμένη εφαρμογή συλλογής πολυμέσων; Αρχικά πρέπει να βρείτε την τρέχουσα προεπιλεγμένη εφαρμογή γκάλερι στις Ρυθμίσεις (τμήμα Εφαρμογών) της συσκευής. Αναζητήστε για ένα κουμπί που αναφέρει κάτι σαν \"Άνοιγμα με προεπιλογή\", πατήστε το, μετά επιλέξτε \"Καθαρισμός προεπιλεγμένων\". Την επόμενη φορά που θα προσπαθήσετε να ανοίξετε μία εικόνα ή ένα βίντεο θα πρέπει να δείτε έναν διάλογο επιλογής εφαρμογών, όπου μπορείτε να επιλέξετε Simple Gallery να το κάνετε προεπιλεγμένη εφαρμογή. Κλείδωσα την εφαρμογή με κωδικό, αλλά τον ξέχασα. Τι μπορώ να κάνω; @@ -222,52 +222,52 @@ - Offline gallery without ads. Organize, edit, recover and protect photos & videos + Μια Offline gallery χωρίς διαφημίσεις. Οργανώστε, επεξεργαστείτε, ανακτήστε και προστατέψτε τις φωτογραφίες και Βίντεο - Simple Gallery Pro is a highly customizable offline gallery. Organize & edit your photos, recover deleted files with the recycle bin, protect & hide files and view a huge variety of different photo & video formats including RAW, SVG and much more. + Η Simple Gallery Pro είναι εκτός σύνδεσης και εξαιρετικά προσαρμόσιμη. Οργανώστε και επεξεργαστείτε τις φωτογραφίες σας, ανακτήσετε διαγραμμένα αρχεία απο τον κάδο ανακύκλωσης, προστατεύσετε και αποκρύψτε αρχεία, προβάλετε πλήθος διαφορετικών φωτογραφιών και μορφών βίντεο, συμπεριλαμβανομένων των RAW, SVG και πολλών άλλων. - The app contains no ads and unnecessary permissions. As the app doesn’t require internet access either, your privacy is protected. + Η εφαρμογή δεν περιέχει διαφημίσεις και περιττά δικαιώματα. Εφόσον δεν απαιτεί πρόσβαση στο διαδίκτυο, έτσι προστατεύεται το απόρρητό σας. ------------------------------------------------- - SIMPLE GALLERY PRO – FEATURES + ΧΑΡΑΚΤΗΡΙΣΤΙΚΑ-SIMPLE GALLERY PRO ------------------------------------------------- - • Offline gallery with no ads or popups - • Simple gallery photo editor – crop, rotate, resize, draw, filters & more - • No internet access needed, giving you more privacy and security - • No unnecessary permissions required - • Quickly search images, videos & files - • Open & view many different photo and video types (RAW, SVG, panoramic etc) - • A variety of intuitive gestures to easily edit & organize files - • Lots of ways to filter, group & sort files - • Customize the appearance of Simple Gallery Pro - • Available in 32 languages - • Mark files as favorites for quick access - • Protect your photos & videos with a pattern, pin or fingerprint - • Use pin, pattern & fingerprint to protect the app launch or specific functions too - • Recover deleted photos & videos from the recycle bin - • Toggle visibility of files to hide photos & videos - • Create a customizable slideshow of your files - • View detailed information of your files (resolution, EXIF values etc) - • Simple Gallery Pro is open source - … and much much more! + • Εκτός σύνδεσης χωρίς διαφημίσεις ή αναδυόμενα παράθυρα + • Simple gallery photo editor – κόψιμο, περιστροφή, αλλαγή μεγέθους, σχεδίαση, φίλτρα και άλλα + • Δεν απαιτείται πρόσβαση στο διαδίκτυο, παρέχοντας μεγαλύτερη προστασία της ιδιωτικής ζωής και ασφάλειας + • Δεν απαιτούνται περιττά δικαιώματα + • Γρήγορη αναζήτηση εικόνων, βίντεο και αρχείων + • Άνοιγμα και προβολή πολλών διαφορετικών τύπων φωτογραφιών και βίντεο (RAW, SVG, πανοραμική κλπ) + • Μια ποικιλία διαισθητικών χειρονομιών για εύκολη επεξεργασία και οργάνωση αρχείων + • Πολλοί τρόποι για φιλτράρισμα, ομαδοποίησης και ταξινόμησης αρχείων + • Προσαρμογή εμφάνισης του Simple Gallery Pro + • Διατίθεται σε 32 γλώσσες + • Σημειώστε τα αρχεία ως αγαπημένα για γρήγορη πρόσβαση + • Προστατέψτε τις φωτογραφίες σας και βίντεο με μοτίβο, κωδικό ή δακτυλικό αποτύπωμα + • Χρησιμοποιήστε κωδικό, μοτίβο ή δακτυλικό αποτύπωμα για προστασία έναρξης της εφαρμογής ή συγκεκριμένων λειτουργιών + • Επαναφορά διαγραμμένων φωτογραφιών και βίντεο από τον κάδο ανακύκλωσης + • Εναλλαγή προβολής αρχείων για απόκρυψη φωτογραφιών και Βίντεο + • Δημιουργήστε μια προσαρμόσιμη παρουσίαση των αρχείων σας + • Δείτε λεπτομερείς πληροφορίες των αρχείων σας (ανάλυση, τιμές EXIF κλπ.) + • Η Simple Gallery Pro είναι ανοικτού κώδικα + … και πάρα πολλά ακόμα! - PHOTO GALLERY EDITOR - Simple Gallery Pro makes it easy to edit your pictures on the fly. Crop, flip, rotate and resize your pictures. If you’re feeling a little more creative you can add filters and draw on your pictures! + ΕΞΕΡΓΑΣΤΗΣ PHOTO GALLERY + Η Simple Gallery Pro σας διευκολύνει να επεξεργαστείτε τις φωτογραφίες σας άμεσα. Περικοπή, αναστροφή, περιστροφή και αλλαγή μεγέθους των εικόνων σας. Εάν αισθάνεστε λίγο πιο δημιουργικοί, μπορείτε να προσθέσετε φίλτρα και σχεδίαση στις φωτογραφίες σας! - SUPPORT FOR MANY FILE TYPES - Unlike some other gallery viewers & photo organizers, Simple Gallery Pro supports a huge range of different file types including JPEG, PNG, MP4, MKV, RAW, SVG, Panoramic photos, Panoramic videos and many more. + ΥΠΟΣΤΗΡΙΞΗ ΠΟΛΛΩΝ ΤΥΠΩΝ ΑΡΧΕΙΩΝ + Σε αντίθεση με κάποιες άλλες εφαρμογές η Simple Gallery Pro υποστηρίζει ένα τεράστιο φάσμα διαφορετικών τύπων αρχείων, όπως JPEG, PNG, MP4, MKV, RAW, SVG, Πανοραμικές φωτογραφίες, βίντεο πανοραμικών και πολλά άλλα. - HIGHLY CUSTOMIZABLE GALLERY MANAGER - From the UI to the function buttons on the bottom toolbar, Simple Gallery Pro is highly customizable and works the way you want it to. No other gallery manager has this kind of flexibility! Thanks to being open source, we’re also available in 32 languages! + ΠΟΛΥ ΠΡΟΣΑΡΜΟΣΙΜΟΣ ΔΙΑΧΕΙΡΙΣΤΗΣ GALLERY + Από το UI στα κουμπιά λειτουργιών στην κάτω γραμμή εργαλείων, η Simple Gallery Pro είναι ιδιαίτερα προσαρμόσιμη και λειτουργεί όπως εσείς θέλετε. Καμιά άλλη εφαρμογή δεν έχει τέτοια ευελιξία! Χάρη στον ανοιχτό κώδικα, είναι επίσης διαθέσιμη σε 32 γλώσσες! - RECOVER DELETED PHOTOS & VIDEOS - Accidentally deleted a precious photo or video? Don’t worry! Simple Gallery Pro features a handy recycle bin where you can recover deleted photos & videos easily. + ΕΠΑΝΑΦΟΡΑ ΔΙΑΓΡΑΜΕΝΩΝ ΦΩΤΟ ΚΑΙ ΒΙΝΤΕΟ + Διαγράψατε τυχαία μια πολύτιμη φωτογραφία ή βίντεο; Μην ανησυχείτε! Η Simple Gallery Pro διαθέτει έναν εύχρηστο κάδο ανακύκλωσης όπου μπορείτε να ανακτήσετε τις διαγραμμένες φωτογραφίες και βίντεο πανεύκολα. - PROTECT & HIDE PHOTOS, VIDEOS & FILES - Using pin, pattern or your device’s fingerprint scanner you can protect and hide photos, videos & entire albums. You can protect the app itself or place locks on specific functions of the app. For example, you can’t delete a file without a fingerprint scan, helping to protect your files from accidental deletion. + ΠΡΟΣΤΑΣΙΑ ΚΑΙ ΑΠΟΚΡΥΨΗ ΑΡΧΕΙΩΝ ΦΩΤΟ ΚΑΙ ΒΙΝΤΕΟ + Χρησιμοποιώντας κωδικό, μοτίβο ή τον σαρωτή δακτυλικών αποτυπωμάτων της συσκευής σας, μπορείτε να προστατεύσετε και να αποκρύψετε φωτογραφίες, βίντεο ή ολόκληρα άλμπουμ. Μπορείτε να προστατεύσετε την ίδια την εφαρμογή ή να κλειδώσετε συγκεκριμένες λειτουργίες της. Για παράδειγμα, δεν μπορείτε να διαγράψετε ένα αρχείο χωρίς χρήση των δακτυλικών αποτυπωμάτων, συμβάλλοντας στην προστασία των αρχείων σας από τυχαία διαγραφή. - Check out the full suite of Simple Tools here: + Δείτε την πλήρη σειρά των Simple Tools εδώ: https://www.simplemobiletools.com Facebook: From 2e9c94bab06bb0343e67972e44fb7b4025f7ad80 Mon Sep 17 00:00:00 2001 From: spkprs Date: Sun, 10 Mar 2019 21:42:42 +0200 Subject: [PATCH 17/18] Update strings.xml --- app/src/main/res/values-el/strings.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/main/res/values-el/strings.xml b/app/src/main/res/values-el/strings.xml index bc0d5787c..56ea536e0 100644 --- a/app/src/main/res/values-el/strings.xml +++ b/app/src/main/res/values-el/strings.xml @@ -222,7 +222,7 @@ - Μια Offline gallery χωρίς διαφημίσεις. Οργανώστε, επεξεργαστείτε, ανακτήστε και προστατέψτε τις φωτογραφίες και Βίντεο + Μια Offline gallery χωρίς διαφ/σεις. Επεξεργασία ανάκτηση προστασία Φωτό-Βίντεο Η Simple Gallery Pro είναι εκτός σύνδεσης και εξαιρετικά προσαρμόσιμη. Οργανώστε και επεξεργαστείτε τις φωτογραφίες σας, ανακτήσετε διαγραμμένα αρχεία απο τον κάδο ανακύκλωσης, προστατεύσετε και αποκρύψτε αρχεία, προβάλετε πλήθος διαφορετικών φωτογραφιών και μορφών βίντεο, συμπεριλαμβανομένων των RAW, SVG και πολλών άλλων. From c12a49b2455820a50c452b4b699459b9aaa14ebc Mon Sep 17 00:00:00 2001 From: rmajc <36705473+rmajc@users.noreply.github.com> Date: Mon, 11 Mar 2019 10:38:51 +0100 Subject: [PATCH 18/18] Update strings.xml --- app/src/main/res/values-sl/strings.xml | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/app/src/main/res/values-sl/strings.xml b/app/src/main/res/values-sl/strings.xml index 3dace02a5..639af04b2 100644 --- a/app/src/main/res/values-sl/strings.xml +++ b/app/src/main/res/values-sl/strings.xml @@ -31,7 +31,7 @@ Popravi datum posnetka Popravljam… Datumi uspešno popravljeni - Share a resized version + Deli spremenjeno verzijo Filtriranje datotek @@ -132,7 +132,7 @@ Posneto Tip datoteke Končnica - Please note that grouping and sorting are 2 independent fields + Združevanje in sortiranje sta dve neodvisni polji. Mapa uporabljena na pripomočku: @@ -172,12 +172,12 @@ Dovoli zapiranje celozaslonskega načina z gesto navzdol Dovoli 1:1 povečavo z dvojnim pritiskom Vedno odpri videoposnetke na ločenem zaslonu z novimi horizontalnimi gestami - Show a notch if available - Allow rotating images with gestures - File loading priority - Speed - Compromise - Avoid showing invalid files + Prikaži notch, če je na voljo + Dovoli obračanje slik z gestami + Prioriteta pri nalaganju datotek + Hitrost + Kompromis + Izogni se prikazovanju napačnih datotek Sličice @@ -199,7 +199,7 @@ Kako nastaviti, da se določen album vedno prikaže na vrhu? Z dolgim pritiskom na album se vam prikaže meni, v katerem je na voljo bucika, s katero pripnete album na željeno mesto. Na ta način lahko pripnete več albumov, ki bodo razvrščeni v skladu s privzetim načinom razvrščanja. Ali lahko hitro predvajam videoposnetke? - You can either drag your finger horizontally over the video player, or click on the current or max duration texts near the seekbar, that will move the video either backward, or forward. + To lahko storite tako, da s prstom vodoravno potegnete čez predvajalnik ali kliknete na izpis trenutnega oz. skupnega trajanja, kar bo videoposnetek premaknilo naprej ali nazaj. Kakšna je razlika med skrivanjem in izključevanjem mape? Izključevanje mape jo skrije le v Simple galeriji, medtem ko jo skrivanje skrije tudi v ostalih aplikacijah oz. galerijah. Deluje tako, da kreira prazno \".nomedia\" datoteko v izbrani mapi, katero lahko odstranite tudi s katerimkoli urejevalnikom datotek. Zakaj se v galeriji prikažejo datoteke z naslovnicami glasbenih map ali nalepk?