From 95ff1b1b9516c13325c7b249980bb17f06d2093b Mon Sep 17 00:00:00 2001 From: tibbi Date: Sat, 11 Mar 2017 11:14:54 +0100 Subject: [PATCH 1/4] using an Apply at sorting dialog --- .../gallery/dialogs/ChangeSortingDialog.kt | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/app/src/main/kotlin/com/simplemobiletools/gallery/dialogs/ChangeSortingDialog.kt b/app/src/main/kotlin/com/simplemobiletools/gallery/dialogs/ChangeSortingDialog.kt index fee14edbb..f28d3b2c2 100644 --- a/app/src/main/kotlin/com/simplemobiletools/gallery/dialogs/ChangeSortingDialog.kt +++ b/app/src/main/kotlin/com/simplemobiletools/gallery/dialogs/ChangeSortingDialog.kt @@ -24,10 +24,11 @@ class ChangeSortingDialog(val activity: SimpleActivity, val isDirectorySorting: init { config = activity.config - view = LayoutInflater.from(activity).inflate(R.layout.dialog_change_sorting, null) - view.use_for_this_folder_divider.beVisibleIf(showFolderCheckbox) - view.sorting_dialog_use_for_this_folder.beVisibleIf(showFolderCheckbox) - view.sorting_dialog_use_for_this_folder.isChecked = config.hasCustomSorting(path) + view = LayoutInflater.from(activity).inflate(R.layout.dialog_change_sorting, null).apply { + use_for_this_folder_divider.beVisibleIf(showFolderCheckbox) + sorting_dialog_use_for_this_folder.beVisibleIf(showFolderCheckbox) + sorting_dialog_use_for_this_folder.isChecked = config.hasCustomSorting(path) + } AlertDialog.Builder(activity) .setPositiveButton(R.string.ok, this) From 95cc4d11214bd5406b23ef223a5b303692b38c5d Mon Sep 17 00:00:00 2001 From: tibbi Date: Sat, 11 Mar 2017 12:03:04 +0100 Subject: [PATCH 2/4] use an itemView.apply to shorten some adapters --- .../gallery/adapters/DirectoryAdapter.kt | 68 +++++++++--------- .../gallery/adapters/MediaAdapter.kt | 69 ++++++++++--------- 2 files changed, 70 insertions(+), 67 deletions(-) diff --git a/app/src/main/kotlin/com/simplemobiletools/gallery/adapters/DirectoryAdapter.kt b/app/src/main/kotlin/com/simplemobiletools/gallery/adapters/DirectoryAdapter.kt index dd2e72917..22e60d289 100644 --- a/app/src/main/kotlin/com/simplemobiletools/gallery/adapters/DirectoryAdapter.kt +++ b/app/src/main/kotlin/com/simplemobiletools/gallery/adapters/DirectoryAdapter.kt @@ -321,45 +321,47 @@ class DirectoryAdapter(val activity: SimpleActivity, val dirs: MutableList (Unit)) : SwappingHolder(view, MultiSelector()) { fun bindView(activity: SimpleActivity, multiSelectorCallback: ModalMultiSelectorCallback, multiSelector: MultiSelector, directory: Directory, pos: Int, isPinned: Boolean) : View { - itemView.dir_name.text = directory.name - itemView.photo_cnt.text = directory.mediaCnt.toString() - itemView.dir_pin.visibility = if (isPinned) View.VISIBLE else View.GONE - toggleItemSelection(itemView, markedItems.contains(pos), pos) + itemView.apply { + dir_name.text = directory.name + photo_cnt.text = directory.mediaCnt.toString() + dir_pin.visibility = if (isPinned) View.VISIBLE else View.GONE + toggleItemSelection(this, markedItems.contains(pos), pos) - val tmb = directory.thumbnail - val timestampSignature = StringSignature(directory.date_modified.toString()) - if (tmb.isGif()) { - if (animateGifs) { - Glide.with(activity).load(tmb).asGif().diskCacheStrategy(DiskCacheStrategy.NONE).signature(timestampSignature) - .placeholder(backgroundColor).centerCrop().crossFade().into(itemView.dir_thumbnail) + val tmb = directory.thumbnail + val timestampSignature = StringSignature(directory.date_modified.toString()) + if (tmb.isGif()) { + if (animateGifs) { + Glide.with(activity).load(tmb).asGif().diskCacheStrategy(DiskCacheStrategy.NONE).signature(timestampSignature) + .placeholder(backgroundColor).centerCrop().crossFade().into(dir_thumbnail) + } else { + Glide.with(activity).load(tmb).asBitmap().diskCacheStrategy(DiskCacheStrategy.RESULT).signature(timestampSignature) + .placeholder(backgroundColor).centerCrop().into(dir_thumbnail) + } + } else if (tmb.toLowerCase().endsWith(".png")) { + Glide.with(activity).load(tmb).asBitmap().format(DecodeFormat.PREFER_ARGB_8888).diskCacheStrategy(DiskCacheStrategy.RESULT) + .signature(timestampSignature).placeholder(backgroundColor).centerCrop().into(dir_thumbnail) } else { - Glide.with(activity).load(tmb).asBitmap().diskCacheStrategy(DiskCacheStrategy.RESULT).signature(timestampSignature) - .placeholder(backgroundColor).centerCrop().into(itemView.dir_thumbnail) + Glide.with(activity).load(tmb).diskCacheStrategy(DiskCacheStrategy.RESULT).signature(timestampSignature) + .placeholder(backgroundColor).centerCrop().crossFade().into(dir_thumbnail) } - } else if (tmb.toLowerCase().endsWith(".png")) { - Glide.with(activity).load(tmb).asBitmap().format(DecodeFormat.PREFER_ARGB_8888).diskCacheStrategy(DiskCacheStrategy.RESULT) - .signature(timestampSignature).placeholder(backgroundColor).centerCrop().into(itemView.dir_thumbnail) - } else { - Glide.with(activity).load(tmb).diskCacheStrategy(DiskCacheStrategy.RESULT).signature(timestampSignature) - .placeholder(backgroundColor).centerCrop().crossFade().into(itemView.dir_thumbnail) - } - itemView.setOnClickListener { viewClicked(multiSelector, directory, pos) } - itemView.setOnLongClickListener { - if (!multiSelector.isSelectable) { - activity.startSupportActionMode(multiSelectorCallback) - multiSelector.setSelected(this, true) - updateTitle(multiSelector.selectedPositions.size) - toggleItemSelection(itemView, true, pos) - actMode?.invalidate() + setOnClickListener { viewClicked(multiSelector, directory, pos) } + setOnLongClickListener { + if (!multiSelector.isSelectable) { + activity.startSupportActionMode(multiSelectorCallback) + multiSelector.setSelected(this@ViewHolder, true) + updateTitle(multiSelector.selectedPositions.size) + toggleItemSelection(this, true, pos) + actMode?.invalidate() + } + true } - true - } - if (Build.VERSION.SDK_INT < Build.VERSION_CODES.M) - (getProperView(itemView) as FrameLayout).foreground = foregroundColor.createSelector() - else - getProperView(itemView).foreground = foregroundColor.createSelector() + if (Build.VERSION.SDK_INT < Build.VERSION_CODES.M) + (getProperView(this) as FrameLayout).foreground = foregroundColor.createSelector() + else + getProperView(this).foreground = foregroundColor.createSelector() + } return itemView } diff --git a/app/src/main/kotlin/com/simplemobiletools/gallery/adapters/MediaAdapter.kt b/app/src/main/kotlin/com/simplemobiletools/gallery/adapters/MediaAdapter.kt index 0061d429a..e7a7b31bc 100644 --- a/app/src/main/kotlin/com/simplemobiletools/gallery/adapters/MediaAdapter.kt +++ b/app/src/main/kotlin/com/simplemobiletools/gallery/adapters/MediaAdapter.kt @@ -243,46 +243,47 @@ class MediaAdapter(val activity: SimpleActivity, var media: MutableList, class ViewHolder(view: View, val itemClick: (Medium) -> (Unit)) : SwappingHolder(view, MultiSelector()) { fun bindView(activity: SimpleActivity, multiSelectorCallback: ModalMultiSelectorCallback, multiSelector: MultiSelector, medium: Medium, pos: Int): View { - itemView.play_outline.visibility = if (medium.isVideo) View.VISIBLE else View.GONE - itemView.file_name.beVisibleIf(displayFilenames) - itemView.file_name.text = medium.name - toggleItemSelection(itemView, markedItems.contains(pos), pos) + itemView.apply { + play_outline.visibility = if (medium.isVideo) View.VISIBLE else View.GONE + file_name.beVisibleIf(displayFilenames) + file_name.text = medium.name + toggleItemSelection(this, markedItems.contains(pos), pos) - val path = medium.path - val timestampSignature = StringSignature(medium.date_modified.toString()) - if (medium.isGif()) { - if (animateGifs) { - Glide.with(activity).load(path).asGif().diskCacheStrategy(DiskCacheStrategy.NONE).signature(timestampSignature) - .placeholder(backgroundColor).centerCrop().crossFade().into(itemView.medium_thumbnail) + val path = medium.path + val timestampSignature = StringSignature(medium.date_modified.toString()) + if (medium.isGif()) { + if (animateGifs) { + Glide.with(activity).load(path).asGif().diskCacheStrategy(DiskCacheStrategy.NONE).signature(timestampSignature) + .placeholder(backgroundColor).centerCrop().crossFade().into(medium_thumbnail) + } else { + Glide.with(activity).load(path).asBitmap().diskCacheStrategy(DiskCacheStrategy.NONE).signature(timestampSignature) + .placeholder(backgroundColor).centerCrop().into(medium_thumbnail) + } + } else if (medium.isPng()) { + Glide.with(activity).load(path).asBitmap().format(DecodeFormat.PREFER_ARGB_8888).diskCacheStrategy(DiskCacheStrategy.RESULT) + .signature(timestampSignature).placeholder(backgroundColor).centerCrop().into(medium_thumbnail) } else { - Glide.with(activity).load(path).asBitmap().diskCacheStrategy(DiskCacheStrategy.NONE).signature(timestampSignature) - .placeholder(backgroundColor).centerCrop().into(itemView.medium_thumbnail) + Glide.with(activity).load(path).diskCacheStrategy(DiskCacheStrategy.RESULT).signature(timestampSignature) + .placeholder(backgroundColor).centerCrop().crossFade().into(medium_thumbnail) } - } else if (medium.isPng()) { - Glide.with(activity).load(path).asBitmap().format(DecodeFormat.PREFER_ARGB_8888).diskCacheStrategy(DiskCacheStrategy.RESULT) - .signature(timestampSignature).placeholder(backgroundColor).centerCrop().into(itemView.medium_thumbnail) - } else { - Glide.with(activity).load(path).diskCacheStrategy(DiskCacheStrategy.RESULT).signature(timestampSignature) - .placeholder(backgroundColor).centerCrop().crossFade().into(itemView.medium_thumbnail) - } - itemView.setOnClickListener { viewClicked(multiSelector, medium, pos) } - itemView.setOnLongClickListener { - if (!multiSelector.isSelectable) { - activity.startSupportActionMode(multiSelectorCallback) - multiSelector.setSelected(this, true) - updateTitle(multiSelector.selectedPositions.size) - toggleItemSelection(itemView, true, pos) - actMode?.invalidate() + setOnClickListener { viewClicked(multiSelector, medium, pos) } + setOnLongClickListener { + if (!multiSelector.isSelectable) { + activity.startSupportActionMode(multiSelectorCallback) + multiSelector.setSelected(this@ViewHolder, true) + updateTitle(multiSelector.selectedPositions.size) + toggleItemSelection(this, true, pos) + actMode?.invalidate() + } + true } - true + + if (Build.VERSION.SDK_INT < Build.VERSION_CODES.M) + (getProperView(this) as FrameLayout).foreground = foregroundColor.createSelector() + else + getProperView(this).foreground = foregroundColor.createSelector() } - - if (Build.VERSION.SDK_INT < Build.VERSION_CODES.M) - (getProperView(itemView) as FrameLayout).foreground = foregroundColor.createSelector() - else - getProperView(itemView).foreground = foregroundColor.createSelector() - return itemView } From 9fd463a5aea1be6b77abd10763c43b38842d6812 Mon Sep 17 00:00:00 2001 From: tibbi Date: Sat, 11 Mar 2017 22:42:40 +0100 Subject: [PATCH 3/4] do not translate the release notes, its too late for that --- app/src/main/res/layout/dialog_copy_move.xml | 2 +- app/src/main/res/values-ca-rES/strings.xml | 40 ------------------ app/src/main/res/values-de/strings.xml | 40 ------------------ app/src/main/res/values-es-rES/strings.xml | 40 ------------------ app/src/main/res/values-fr/strings.xml | 39 +----------------- app/src/main/res/values-gl-rES/strings.xml | 40 ------------------ app/src/main/res/values-hu/strings.xml | 40 ------------------ app/src/main/res/values-it/strings.xml | 40 ------------------ app/src/main/res/values-ja/strings.xml | 40 ------------------ app/src/main/res/values-pl/strings.xml | 39 ------------------ app/src/main/res/values-pt-rPT/strings.xml | 40 ------------------ app/src/main/res/values-ru/strings.xml | 40 ------------------ app/src/main/res/values-sk/strings.xml | 40 ------------------ app/src/main/res/values-sv/strings.xml | 40 ------------------ app/src/main/res/values-tr/strings.xml | 37 ----------------- app/src/main/res/values-zh-rCN/strings.xml | 40 ------------------ app/src/main/res/values-zh-rTW/strings.xml | 40 ------------------ app/src/main/res/values/donottranslate.xml | 43 ++++++++++++++++++++ app/src/main/res/values/strings.xml | 40 ------------------ 19 files changed, 45 insertions(+), 675 deletions(-) create mode 100644 app/src/main/res/values/donottranslate.xml diff --git a/app/src/main/res/layout/dialog_copy_move.xml b/app/src/main/res/layout/dialog_copy_move.xml index 469532a9f..2f67e7a63 100644 --- a/app/src/main/res/layout/dialog_copy_move.xml +++ b/app/src/main/res/layout/dialog_copy_move.xml @@ -1,7 +1,7 @@ Animate gifs at thumbnails Maximum brightness when viewing media - - - Fixed some sharing and editor issues\n - Sorry for the frequent updates lately, they should be stopped now. - - - Exclude the subfolders of excluded folders too\n - Added an easy way of excluding parent folders from the exclude confirmation dialog\n - Added draggable scrollbars\n - Allow setting a third party video player as the default - - Added an option to toggle gif animation at thumbnails - Allow setting different sorting per folder - - Implement proper folder hiding via .nomedia file\n - Allow managing excluded folders in Settings - - Added menu items for easy image rotating in fullscreen view - Added menu buttons for changing the column count - Allow picking colors by hex codes - Allow showing the photos and videos on a map, if there are available map coordinates - Show some additional Exif data at photo properties - - Allow zooming pngs and gifs\n - Allow creating new folders at Copy/Move or Save as dialog destinations - - Added an option to loop videos automatically - - Added more color customization options\n - Your settings have been cleared, please reset them - Allow changing the column count with pinch gestures - Added an option to display images or videos only - Added a Select all button at selecting media and folders - - Added an image resizer to the editor\n - Allow displaying images and videos from all folders together - - Allow pinning folders at the top - A gallery for viewing photos and videos without ads. A simple tool usable for viewing photos and videos. Items can be sorted by date, size, name both ascending or descending, photos can be zoomed in. Media files are shown in multiple columns depending on the size of the display, you can change the column count by pinch gestures. They can be renamed, shared, deleted, copied, moved. Images can also be cropped, rotated or set as Wallpaper directly from the app. - The Gallery is also offered for third party usage for previewing images / videos, adding attachments at email clients etc. It\'s perfect for everyday usage. Contains no ads or unnecessary permissions. It is fully opensource, provides customizable colors. diff --git a/app/src/main/res/values-de/strings.xml b/app/src/main/res/values-de/strings.xml index aabe5a8ad..efcdf3ddb 100644 --- a/app/src/main/res/values-de/strings.xml +++ b/app/src/main/res/values-de/strings.xml @@ -82,52 +82,12 @@ Animate gifs at thumbnails Maximum brightness when viewing media - - - Fixed some sharing and editor issues\n - Sorry for the frequent updates lately, they should be stopped now. - - - Exclude the subfolders of excluded folders too\n - Added an easy way of excluding parent folders from the exclude confirmation dialog\n - Added draggable scrollbars\n - Allow setting a third party video player as the default - - Added an option to toggle gif animation at thumbnails - Allow setting different sorting per folder - - Implement proper folder hiding via .nomedia file\n - Allow managing excluded folders in Settings - - Added menu items for easy image rotating in fullscreen view - Added menu buttons for changing the column count - Allow picking colors by hex codes - Allow showing the photos and videos on a map, if there are available map coordinates - Show some additional Exif data at photo properties - - Allow zooming pngs and gifs\n - Allow creating new folders at Copy/Move or Save as dialog destinations - - Added an option to loop videos automatically - - Added more color customization options\n - Your settings have been cleared, please reset them - Allow changing the column count with pinch gestures - Added an option to display images or videos only - Added a Select all button at selecting media and folders - - Added an image resizer to the editor\n - Allow displaying images and videos from all folders together - - Allow pinning folders at the top - A gallery for viewing photos and videos without ads. A simple tool usable for viewing photos and videos. Items can be sorted by date, size, name both ascending or descending, photos can be zoomed in. Media files are shown in multiple columns depending on the size of the display, you can change the column count by pinch gestures. They can be renamed, shared, deleted, copied, moved. Images can also be cropped, rotated or set as Wallpaper directly from the app. - The Gallery is also offered for third party usage for previewing images / videos, adding attachments at email clients etc. It\'s perfect for everyday usage. Contains no ads or unnecessary permissions. It is fully opensource, provides customizable colors. diff --git a/app/src/main/res/values-es-rES/strings.xml b/app/src/main/res/values-es-rES/strings.xml index 559699d5e..386c344ff 100644 --- a/app/src/main/res/values-es-rES/strings.xml +++ b/app/src/main/res/values-es-rES/strings.xml @@ -82,52 +82,12 @@ Animate gifs at thumbnails Maximum brightness when viewing media - - - Fixed some sharing and editor issues\n - Sorry for the frequent updates lately, they should be stopped now. - - - Exclude the subfolders of excluded folders too\n - Added an easy way of excluding parent folders from the exclude confirmation dialog\n - Added draggable scrollbars\n - Allow setting a third party video player as the default - - Added an option to toggle gif animation at thumbnails - Allow setting different sorting per folder - - Implement proper folder hiding via .nomedia file\n - Allow managing excluded folders in Settings - - Added menu items for easy image rotating in fullscreen view - Added menu buttons for changing the column count - Allow picking colors by hex codes - Allow showing the photos and videos on a map, if there are available map coordinates - Show some additional Exif data at photo properties - - Allow zooming pngs and gifs\n - Allow creating new folders at Copy/Move or Save as dialog destinations - - Added an option to loop videos automatically - - Added more color customization options\n - Your settings have been cleared, please reset them - Allow changing the column count with pinch gestures - Added an option to display images or videos only - Added a Select all button at selecting media and folders - - Added an image resizer to the editor\n - Allow displaying images and videos from all folders together - - Allow pinning folders at the top - A gallery for viewing photos and videos without ads. A simple tool usable for viewing photos and videos. Items can be sorted by date, size, name both ascending or descending, photos can be zoomed in. Media files are shown in multiple columns depending on the size of the display, you can change the column count by pinch gestures. They can be renamed, shared, deleted, copied, moved. Images can also be cropped, rotated or set as Wallpaper directly from the app. - The Gallery is also offered for third party usage for previewing images / videos, adding attachments at email clients etc. It\'s perfect for everyday usage. Contains no ads or unnecessary permissions. It is fully opensource, provides customizable colors. diff --git a/app/src/main/res/values-fr/strings.xml b/app/src/main/res/values-fr/strings.xml index eb1bff510..7100ec49d 100644 --- a/app/src/main/res/values-fr/strings.xml +++ b/app/src/main/res/values-fr/strings.xml @@ -82,49 +82,12 @@ Animate gifs at thumbnails Maximum brightness when viewing media - - - Fixed some sharing and editor issues\n - Sorry for the frequent updates lately, they should be stopped now. - - - Exclude the subfolders of excluded folders too\n - Added an easy way of excluding parent folders from the exclude confirmation dialog\n - Added draggable scrollbars\n - Allow setting a third party video player as the default - - Added an option to toggle gif animation at thumbnails - Allow setting different sorting per folder - - Implement proper folder hiding via .nomedia file\n - Allow managing excluded folders in Settings - - Added menu items for easy image rotating in fullscreen view - Added menu buttons for changing the column count - Allow picking colors by hex codes - Allow showing the photos and videos on a map, if there are available map coordinates - Show some additional Exif data at photo properties - - Allow zooming pngs and gifs\n - Allow creating new folders at Copy/Move or Save as dialog destinations - - Ajouter une option pour tourner en boucle les vidéos automatiquement. - Plus d\'option de couleurs personnalisée ajouté.\n - Vos paramètres ont été réinitialisés aux valeurs par défaut, veuillez les reparamétrer à votre convenance. - Permettre de changer le nombre de colonnes à afficher avec un mouvement de pincement. - Une option pour afficher afficher exclusivement les photos, ou exclusivement les vidéos a été ajoutée. - Un bouton pour tout sélectionner a été ajouté. - Une option pour redimmensionner les images a été ajouté à l\'éditeur.\n - Permettre d\'afficher les images et vidéos de tous les dossiers ensemble. - Permettre d\'épingler les dossiers en haut - Un album pour visionner photos et vidéos sans publicité. Un simple outil pour visionner les photos et les vidéos. Elles peuvent être triées par dates, tailles, noms dans les deux sens (alphabétique comme désalphabétique), il est possible de zoomer sur les photos. Les fichiers sont affichés sur de multiple colonnes en fonction de la taille de l\'écran, vous pouvez changer le nombre de colonnes par pincement. Elles peuvent être renommées, partagées, supprimées, copiées et déplacées. Les images peuvent en plus être tournées, rognées ou être définies comme fond d\'écran directement depuis l\'application. - - + La galerie est aussi offerte pour l\'utiliser comme une tierce partie pour de la prévisualisation des images/vidéos, joindre aux clients mail etc. C\'est parfait pour un usage au quotidien. L\'application ne contient ni de publicité ni d\'autorisation inutile. Elle est totalement OpenSource et est aussi fournie avec un thème sombre. diff --git a/app/src/main/res/values-gl-rES/strings.xml b/app/src/main/res/values-gl-rES/strings.xml index 559699d5e..386c344ff 100644 --- a/app/src/main/res/values-gl-rES/strings.xml +++ b/app/src/main/res/values-gl-rES/strings.xml @@ -82,52 +82,12 @@ Animate gifs at thumbnails Maximum brightness when viewing media - - - Fixed some sharing and editor issues\n - Sorry for the frequent updates lately, they should be stopped now. - - - Exclude the subfolders of excluded folders too\n - Added an easy way of excluding parent folders from the exclude confirmation dialog\n - Added draggable scrollbars\n - Allow setting a third party video player as the default - - Added an option to toggle gif animation at thumbnails - Allow setting different sorting per folder - - Implement proper folder hiding via .nomedia file\n - Allow managing excluded folders in Settings - - Added menu items for easy image rotating in fullscreen view - Added menu buttons for changing the column count - Allow picking colors by hex codes - Allow showing the photos and videos on a map, if there are available map coordinates - Show some additional Exif data at photo properties - - Allow zooming pngs and gifs\n - Allow creating new folders at Copy/Move or Save as dialog destinations - - Added an option to loop videos automatically - - Added more color customization options\n - Your settings have been cleared, please reset them - Allow changing the column count with pinch gestures - Added an option to display images or videos only - Added a Select all button at selecting media and folders - - Added an image resizer to the editor\n - Allow displaying images and videos from all folders together - - Allow pinning folders at the top - A gallery for viewing photos and videos without ads. A simple tool usable for viewing photos and videos. Items can be sorted by date, size, name both ascending or descending, photos can be zoomed in. Media files are shown in multiple columns depending on the size of the display, you can change the column count by pinch gestures. They can be renamed, shared, deleted, copied, moved. Images can also be cropped, rotated or set as Wallpaper directly from the app. - The Gallery is also offered for third party usage for previewing images / videos, adding attachments at email clients etc. It\'s perfect for everyday usage. Contains no ads or unnecessary permissions. It is fully opensource, provides customizable colors. diff --git a/app/src/main/res/values-hu/strings.xml b/app/src/main/res/values-hu/strings.xml index 2b09abf0a..268325618 100644 --- a/app/src/main/res/values-hu/strings.xml +++ b/app/src/main/res/values-hu/strings.xml @@ -82,52 +82,12 @@ Animate gifs at thumbnails Maximum brightness when viewing media - - - Fixed some sharing and editor issues\n - Sorry for the frequent updates lately, they should be stopped now. - - - Exclude the subfolders of excluded folders too\n - Added an easy way of excluding parent folders from the exclude confirmation dialog\n - Added draggable scrollbars\n - Allow setting a third party video player as the default - - Added an option to toggle gif animation at thumbnails - Allow setting different sorting per folder - - Implement proper folder hiding via .nomedia file\n - Allow managing excluded folders in Settings - - Added menu items for easy image rotating in fullscreen view - Added menu buttons for changing the column count - Allow picking colors by hex codes - Allow showing the photos and videos on a map, if there are available map coordinates - Show some additional Exif data at photo properties - - Allow zooming pngs and gifs\n - Allow creating new folders at Copy/Move or Save as dialog destinations - - Added an option to loop videos automatically - - Added more color customization options\n - Your settings have been cleared, please reset them - Allow changing the column count with pinch gestures - Added an option to display images or videos only - Added a Select all button at selecting media and folders - - Added an image resizer to the editor\n - Allow displaying images and videos from all folders together - - Allow pinning folders at the top - A gallery for viewing photos and videos without ads. A simple tool usable for viewing photos and videos. Items can be sorted by date, size, name both ascending or descending, photos can be zoomed in. Media files are shown in multiple columns depending on the size of the display, you can change the column count by pinch gestures. They can be renamed, shared, deleted, copied, moved. Images can also be cropped, rotated or set as Wallpaper directly from the app. - The Gallery is also offered for third party usage for previewing images / videos, adding attachments at email clients etc. It\'s perfect for everyday usage. Contains no ads or unnecessary permissions. It is fully opensource, provides customizable colors. diff --git a/app/src/main/res/values-it/strings.xml b/app/src/main/res/values-it/strings.xml index 74fbd8fa5..e9b0f3bc6 100644 --- a/app/src/main/res/values-it/strings.xml +++ b/app/src/main/res/values-it/strings.xml @@ -82,52 +82,12 @@ Animate gifs at thumbnails Maximum brightness when viewing media - - - Fixed some sharing and editor issues\n - Sorry for the frequent updates lately, they should be stopped now. - - - Exclude the subfolders of excluded folders too\n - Added an easy way of excluding parent folders from the exclude confirmation dialog\n - Added draggable scrollbars\n - Allow setting a third party video player as the default - - Added an option to toggle gif animation at thumbnails - Allow setting different sorting per folder - - Implement proper folder hiding via .nomedia file\n - Allow managing excluded folders in Settings - - Added menu items for easy image rotating in fullscreen view - Added menu buttons for changing the column count - Allow picking colors by hex codes - Allow showing the photos and videos on a map, if there are available map coordinates - Show some additional Exif data at photo properties - - Allow zooming pngs and gifs\n - Allow creating new folders at Copy/Move or Save as dialog destinations - - Added an option to loop videos automatically - - Added more color customization options\n - Your settings have been cleared, please reset them - Allow changing the column count with pinch gestures - Added an option to display images or videos only - Added a Select all button at selecting media and folders - - Added an image resizer to the editor\n - Allow displaying images and videos from all folders together - - Allow pinning folders at the top - A gallery for viewing photos and videos without ads. A simple tool usable for viewing photos and videos. Items can be sorted by date, size, name both ascending or descending, photos can be zoomed in. Media files are shown in multiple columns depending on the size of the display, you can change the column count by pinch gestures. They can be renamed, shared, deleted, copied, moved. Images can also be cropped, rotated or set as Wallpaper directly from the app. - The Gallery is also offered for third party usage for previewing images / videos, adding attachments at email clients etc. It\'s perfect for everyday usage. Contains no ads or unnecessary permissions. It is fully opensource, provides customizable colors. diff --git a/app/src/main/res/values-ja/strings.xml b/app/src/main/res/values-ja/strings.xml index 993e6f3ae..f7e2fbda8 100644 --- a/app/src/main/res/values-ja/strings.xml +++ b/app/src/main/res/values-ja/strings.xml @@ -82,52 +82,12 @@ Animate gifs at thumbnails Maximum brightness when viewing media - - - Fixed some sharing and editor issues\n - Sorry for the frequent updates lately, they should be stopped now. - - - Exclude the subfolders of excluded folders too\n - Added an easy way of excluding parent folders from the exclude confirmation dialog\n - Added draggable scrollbars\n - Allow setting a third party video player as the default - - Added an option to toggle gif animation at thumbnails - Allow setting different sorting per folder - - Implement proper folder hiding via .nomedia file\n - Allow managing excluded folders in Settings - - Added menu items for easy image rotating in fullscreen view - Added menu buttons for changing the column count - Allow picking colors by hex codes - Allow showing the photos and videos on a map, if there are available map coordinates - Show some additional Exif data at photo properties - - Allow zooming pngs and gifs\n - Allow creating new folders at Copy/Move or Save as dialog destinations - - Added an option to loop videos automatically - - Added more color customization options\n - Your settings have been cleared, please reset them - Allow changing the column count with pinch gestures - Added an option to display images or videos only - Added a Select all button at selecting media and folders - - Added an image resizer to the editor\n - Allow displaying images and videos from all folders together - - Allow pinning folders at the top - 写真やビデオを見るためのギャラリー。広告はありません。 写真やビデオを見るためのシンプルなツール。 日付、サイズ、名前で、昇順または降順にアイテムを並べ替えることができ、写真は拡大表示できます。 メディアファイルは、ディスプレイのサイズに応じて複数の列に表示されます。 名前の変更、共有、削除、コピー、移動が可能です。 画像をトリミング、回転、または壁紙としてアプリから直接設定することもできます。 - ギャラリーは、画像やビデオのプレビュー、メールクライアントで添付ファイルの追加など、サードパーティの用途にも提供されます。 毎日の使用には完璧です。 広告や不要なアクセス許可は含まれていません。 完全にオープンソースで、ダークテーマも提供しています。 diff --git a/app/src/main/res/values-pl/strings.xml b/app/src/main/res/values-pl/strings.xml index 2a7e7b944..fc17730c4 100644 --- a/app/src/main/res/values-pl/strings.xml +++ b/app/src/main/res/values-pl/strings.xml @@ -82,45 +82,6 @@ Animowanie gify z miniaturkami Maximum brightness when viewing media - - - Fixed some sharing and editor issues\n - Sorry for the frequent updates lately, they should be stopped now. - - - Wykluczyć podfoldery folderów wykluczonych\n - Dodano łatwy sposób bez folderów nadrzędnych w oknie potwierdzenia wykluczenia\n - Added draggable scrollbars\n - Allow setting a third party video player as the default - - Dodano opcję, aby przełączyć animację gif w miniaturach - Pozwala na ustawienie innego sortowania w folderze - - Wdrożenie odpowiedniego ukrywania folderów poprzez .nomedia pliku\n - Pozwala zarządzać ukrytymi folderami w menu Ustawienia - - Dodano elementy menu ułatwiające obracanie obrazu w widoku pełnoekranowym - Dodano przyciski menu do zmiany liczby kolumn - Pozwala wybierać kolory przez hex codes - Pozwala pokazać zdjęcia i filmy na mapie, jeśli są dostępne współrzędne geograficzne - Pokaż dodatkowe dane EXIF z właściwości zdjęcia - - Pozwala powiększyć png i gif\n - Pozwalają na tworzenie nowych folderów Kopiuj / przenieś lub zapisać - - Dodano automatyczną opcję filmy w pętli - - Dodano opcje doboru kolorów\n - Twoje ustawienia zostały wyczyszczone, należy je zresetować - Pozwala zmieniając liczyć kolumna gestami - Dodano opcję wyświetlania: zdjęcia albo filmy - Dodano przycisk: Zaznacz wszystko w wyborze plików i folderów - - Dodano opcję zmianu rozmiaru w edytorze\n - Pozwala na wyświetlanie zdjęć i filmów razem - - Pozwala na przypinanie folderów na szczycie - Darmowa Galeria bez reklam do przeglądania zdjęć i filmów. diff --git a/app/src/main/res/values-pt-rPT/strings.xml b/app/src/main/res/values-pt-rPT/strings.xml index 045a5aa7e..c6793ecba 100644 --- a/app/src/main/res/values-pt-rPT/strings.xml +++ b/app/src/main/res/values-pt-rPT/strings.xml @@ -82,52 +82,12 @@ Animação de gifs nas miniaturas Maximum brightness when viewing media - - - Fixed some sharing and editor issues\n - Sorry for the frequent updates lately, they should be stopped now. - - - Exclude the subfolders of excluded folders too\n - Added an easy way of excluding parent folders from the exclude confirmation dialog\n - Added draggable scrollbars\n - Allow setting a third party video player as the default - - Added an option to toggle gif animation at thumbnails - Allow setting different sorting per folder - - Implement proper folder hiding via .nomedia file\n - Allow managing excluded folders in Settings - - Added menu items for easy image rotating in fullscreen view - Added menu buttons for changing the column count - Allow picking colors by hex codes - Allow showing the photos and videos on a map, if there are available map coordinates - Show some additional Exif data at photo properties - - Allow zooming pngs and gifs\n - Allow creating new folders at Copy/Move or Save as dialog destinations - - Added an option to loop videos automatically - - Added more color customization options\n - Your settings have been cleared, please reset them - Allow changing the column count with pinch gestures - Added an option to display images or videos only - Added a Select all button at selecting media and folders - - Added an image resizer to the editor\n - Allow displaying images and videos from all folders together - - Allow pinning folders at the top - Uma aplicação para ver fotografias e vídeos. Uma ferramenta simples para ver fotos e vídeos. Pode organizar os itens por data, tamanho, nome e ampliar as fotografias. Os ficheiros multimédia são mostrados em colunas e a sua exibição está dependente do tamanho do ecrã, podendo alterar o número de colunas através de gestos. Pode renomear, partilhar, apagar, copiar e mover as fotografias. Também pode recortar, rodar e definir as imagens como fundo do ecrã a partir da aplicação. - Também pode ser utilizada para pré-visualizar imagens e vídeos ou para adicionar como anexos ao e-mail, entre outros. É perfeita para a utilização diária. Não contém anúncios nem permissões desnecessárias. Disponibiliza um tema escuro e é totalmente \'open source\'. diff --git a/app/src/main/res/values-ru/strings.xml b/app/src/main/res/values-ru/strings.xml index c3b7ad7fd..7fbec55eb 100644 --- a/app/src/main/res/values-ru/strings.xml +++ b/app/src/main/res/values-ru/strings.xml @@ -82,52 +82,12 @@ Animate gifs at thumbnails Maximum brightness when viewing media - - - Fixed some sharing and editor issues\n - Sorry for the frequent updates lately, they should be stopped now. - - - Exclude the subfolders of excluded folders too\n - Added an easy way of excluding parent folders from the exclude confirmation dialog\n - Added draggable scrollbars\n - Allow setting a third party video player as the default - - Added an option to toggle gif animation at thumbnails - Allow setting different sorting per folder - - Implement proper folder hiding via .nomedia file\n - Allow managing excluded folders in Settings - - Добавлены элементы меню, позволяющие легко повернуть изображение в полноэкранном режиме - В меню добавлены кнопки для изменения количества столбцов на гравном экране - Добавлена возможность выбирать цвета по hex-кодам - Добавлена возможность показывать место съёмки фото или видео на карте, если указаны координаты - В свойствах фото теперь отображаются некоторые Exif-данные - - Добавлена возможность масштабирования png и gif изображений\n - Добавлена возможность создания новой папки в диалогах "Копировать/Переместить" и "Сохранить как" - - Добавлена возможность повторять видео автоматически - - Добавлена возможность изменять цветовое оформление\n - Настройки приложения в этой версии были сброшены к первоначальным, пожалуйста, настройте снова - Добавлена возможность изменять количество столбцов щипком - Добавлен переключатель для отображения только изображений или видео - Добавлена кнопка "Выбрать всё" - - Добавлена возможность изменения размера изображения в редакторе\n - Добавлена возможность отображения всех изображений и видео одним потоком - - Добавлена возможность закреплять папки - Галерея для просмотра изображений и видео. Без рекламы. Простое приложение для просмотра изображений и видеозаписей. Отображаемые файлы могут быть отсортированы как по возрастанию, так и по убыванию даты, размера или имени. Фотографии можно масштабировать. В зависимости от размера экрана, медиафайлы располагаются в несколько столбцов, можно изменять число столбцов щипком двумя пальцами. Можно переименовывать, удалять, копировать, перемещать и делиться файлами из галереи. В приложении есть возможность обрезать и поворачивать изображения или устанавливать их в качестве обоев. - Галерея идеальна для повседневных задач (предпросмотр фото/видео, добавление вложений в почтовых клиентах и т.д.). Это приложение не будет показывать рекламу или запрашивать ненужные разрешения. У него полностью открытый исходный код и настраиваемые цвета оформления. diff --git a/app/src/main/res/values-sk/strings.xml b/app/src/main/res/values-sk/strings.xml index d898cd5a6..e4ccfc526 100644 --- a/app/src/main/res/values-sk/strings.xml +++ b/app/src/main/res/values-sk/strings.xml @@ -82,52 +82,12 @@ Animovať gif súbory pri náhľade Maximum brightness when viewing media - - - Boli opravené problémy s editorom a zdieľaním\n - Ospravedlňujeme sa za časté aktualizácie, už by mali prestať. - - - Bulo pridané vylučovanie podpriečinky vylúčených priečinkov\n - Bol pridaný jednoduchý spôsob vylučovania rodičovských priečinkov z potvrdzujúceho okna\n - Boli pridané presúvateľné scrollbary\n - Bola pridaná možnosť nastavenia aplikácie tretej strany ako predvolený video prehrávač - - Bola pridaná možnosť vypnutia prehrávania gif súborov pri náhľadoch - Bola pridaná možnosť vlastného zoradenia jednotlivých priečinkov - - Bolo pridané správne ukrývanie priečinkov pomocou súboru .nomedia\n - Bolo pridané spravovanie vylúčených súborov v nastaveniach - - Do celoobrazovkového pohľadu boli pridané tlačidlá na jednoduché otáčanie obrázkov - Boli pridané tlačidlá na zmenu počtu stĺpcov - Allow picking colors by hex codes - Allow showing the photos and videos on a map, if there are available map coordinates - Show some additional Exif data at photo properties - - Allow zooming pngs and gifs\n - Allow creating new folders at Copy/Move or Save as dialog destinations - - Added an option to loop videos automatically - - Added more color customization options\n - Your settings have been cleared, please reset them - Allow changing the column count with pinch gestures - Added an option to display images or videos only - Added a Select all button at selecting media and folders - - Added an image resizer to the editor\n - Allow displaying images and videos from all folders together - - Allow pinning folders at the top - Galéria na prezeranie obrázkov a videí bez reklám. Jednoduchá nástroj použiteľný na prezeranie obrázkov a videí. Položky môžu byť zoradené podľa dátumu, veľkosti, názvu oboma smermi, obrázky je možné aj priblížiť. Položky sú zobrazované vo viacerých stĺpcoch v závislosti od veľkosti displeja, počet stĺpcov je možné meniť pomocou gesta prstami. Súbory môžete premenovať, zdieľať, mazať, kopírovať, premiestňovaŤ. Obrázky môžete orezať, otočiť, alebo nastaviť ako tapeta priamo v aplikácií. - Galéria je tiež poskytovaná pre použitie treťou stranou pre prehliadanie fotiek a videí, pridávanie príloh v emailových klientoch. Je perfektná na každodenné použitie. Neobsahuje žiadne reklamy a nepotrebné oprávnenia. Je opensource, poskytuje možnosť zmeny farieb. diff --git a/app/src/main/res/values-sv/strings.xml b/app/src/main/res/values-sv/strings.xml index a026b9392..b3525c5d9 100644 --- a/app/src/main/res/values-sv/strings.xml +++ b/app/src/main/res/values-sv/strings.xml @@ -82,52 +82,12 @@ Animate gifs at thumbnails Maximum brightness when viewing media - - - Fixed some sharing and editor issues\n - Sorry for the frequent updates lately, they should be stopped now. - - - Exclude the subfolders of excluded folders too\n - Added an easy way of excluding parent folders from the exclude confirmation dialog\n - Added draggable scrollbars\n - Allow setting a third party video player as the default - - Added an option to toggle gif animation at thumbnails - Allow setting different sorting per folder - - Implement proper folder hiding via .nomedia file\n - Allow managing excluded folders in Settings - - Added menu items for easy image rotating in fullscreen view - Added menu buttons for changing the column count - Allow picking colors by hex codes - Allow showing the photos and videos on a map, if there are available map coordinates - Show some additional Exif data at photo properties - - Allow zooming pngs and gifs\n - Allow creating new folders at Copy/Move or Save as dialog destinations - - Added an option to loop videos automatically - - Added more color customization options\n - Your settings have been cleared, please reset them - Allow changing the column count with pinch gestures - Added an option to display images or videos only - Added a Select all button at selecting media and folders - - Added an image resizer to the editor\n - Allow displaying images and videos from all folders together - - Allow pinning folders at the top - Ett Galleri för att visa bilder och videos utan en massa reklam. Ett enkelt verktyg för att visa bilder och vdeos. Objekten kan sorteras efter datum, storlek, namn både stigande och fallande, bilder kan zoomas in. Mediafiler visas i flera kolumner beroende av skärmens storlek, du kan ändra antalet kolumner genom en nyp-rörelse. De går att döpa om, dela, ta bort, kopiera, flytta. Bilder kan också beskäras, roteras och anges som bakgrundsbild direkt från appen. - Galleriet kan också användas av tredjeparts för förhandsgranskning av bilder / videos, bifoga bilagor i e-postklienter etc. Den är perfekt för det dagliga användandet. Innehåller ingen reklam eller onödiga behörigheter. Det är helt och hållet opensource, innehåller anpassningsbara färger. diff --git a/app/src/main/res/values-tr/strings.xml b/app/src/main/res/values-tr/strings.xml index ed946ccde..98b8aee31 100644 --- a/app/src/main/res/values-tr/strings.xml +++ b/app/src/main/res/values-tr/strings.xml @@ -82,49 +82,12 @@ Küçük resimlerde gif\'leri canlandırın Maximum brightness when viewing media - - - Fixed some sharing and editor issues\n - Sorry for the frequent updates lately, they should be stopped now. - - - Hariç tutulan klasörlerin alt klasörlerini de hariç tutun\n - Dışlama onay iletişim kutusundan üst klasörleri hariç tutmanın kolay bir yol ekledi\n - Sürüklenebilir kaydırma çubukları eklendi\n - Bir üçüncü taraf video oynatıcının varsayılan ayarına izin verme - - Küçük resimlerde gif animasyonunu değiştirmek için bir seçenek eklendi - Her klasör için farklı sıralama ayarı yapmaya izin ver - - Medya yok fil dosyası üzerinden uygun klasörü gizleme uygulayın\n - Ayarlar\'da hariç tutulan klasörleri yönetmeye izin ver - - Tam ekran görünümünde kolay resim dönmesi için menü öğeleri eklendi - Sütun sayısını değiştirmek için menü düğmeleri eklendi - Renkleri hex kodlarla toplama izni verin - Kullanılabilir harita koordinatları varsa fotoğrafları ve videoları bir haritada göstermeye izin ver - Fotoğraf özelliklerine ek Exif verileri göster - - Png ve gif\'leri yakınlaştırmaya izin ver\n - Kopyala/Taşı veya Farklı Kaydet iletişim hedeflerinde yeni klasörler oluşturmaya izin ver - Videoları otomatik olarak iliştirmek için bir seçenek eklendi - - Daha fazla renk özelleştirme seçeneği eklendi\n - Ayarlarınız silindi, lütfen onları sıfırlayın - Sıkıştırma hareketi ile sütun sayısının değiştirilmesine izin ver - Yalnızca resim veya videoları görüntülemek için bir seçenek eklendi - Ortamı ve klasörleri seçerken Tümünü seç düğmesi eklendi - - Düzenleyiciye bir resim editörü ekledi\n Tüm klasörlerdeki görüntüleri ve videoları birlikte görüntülemeye izin ver - Üst kısımdaki sabitleme klasörlerine izin ver - Fotoğrafları ve videoları reklamsız görüntülemek için kullanılan bir galeri. Fotoğrafları ve videoları görüntülemek için kullanılabilecek basit bir araç. Öğeler tarihine, boyutuna, adına göre artan veya azalan olarak sıralanabilir, fotoğraflar yakınlaştırılabilir. Medya dosyaları, ekranın boyutuna bağlı olarak birden fazla sütunda gösterilir, sıkıştırma hareketleriyle sütun sayısını değiştirebilirsiniz. Yeniden adlandırılabilir, paylaşılabilir, silinebilir, kopyalanabilir, taşınabilirler. Resimler ayrıca kırpılabilir, döndürülebilir veya doğrudan uygulama\'dan Duvar kağıdı olarak ayarlanabilir. - Galeri, görüntüleri/videoları önizlemek, e-posta istemcilerine ek ekler yapmak için üçüncü taraf kullanımı için de önerilir. Bu\'s günlük kullanım için mükemmel. Reklam içermeyen veya gereksiz izinler. Tamamen açık kaynaktır, özelleştirilebilir renkler sağlar. diff --git a/app/src/main/res/values-zh-rCN/strings.xml b/app/src/main/res/values-zh-rCN/strings.xml index 469d445f3..22913d338 100644 --- a/app/src/main/res/values-zh-rCN/strings.xml +++ b/app/src/main/res/values-zh-rCN/strings.xml @@ -82,51 +82,11 @@ Animate gifs at thumbnails Maximum brightness when viewing media - - - Fixed some sharing and editor issues\n - Sorry for the frequent updates lately, they should be stopped now. - - - Exclude the subfolders of excluded folders too\n - Added an easy way of excluding parent folders from the exclude confirmation dialog\n - Added draggable scrollbars\n - Allow setting a third party video player as the default - - Added an option to toggle gif animation at thumbnails - Allow setting different sorting per folder - - Implement proper folder hiding via .nomedia file\n - Allow managing excluded folders in Settings - - Added menu items for easy image rotating in fullscreen view - Added menu buttons for changing the column count - Allow picking colors by hex codes - Allow showing the photos and videos on a map, if there are available map coordinates - Show some additional Exif data at photo properties - - Allow zooming pngs and gifs\n - Allow creating new folders at Copy/Move or Save as dialog destinations - - Added an option to loop videos automatically - - Added more color customization options\n - Your settings have been cleared, please reset them - Allow changing the column count with pinch gestures - Added an option to display images or videos only - Added a Select all button at selecting media and folders - - Added an image resizer to the editor\n - Allow displaying images and videos from all folders together - - Allow pinning folders at the top - 一个没有广告,用来观看照片及视频的相册。 一个观看照片和视频的简单实用工具。项目可以根据日期、大小、名称来递增或递减排序,照片可以缩放。媒体文件根据屏幕的大小排列在多个方格中,您可以使用缩放手势来调整每一列的方格数量。媒体文件可以被重命名、分享、删除、复制以及移动。照片亦可被剪切、旋转或是直接在应用中设为壁纸。 - 相册亦提供能让第三方应用预览图片/视频、向电子邮件客户端添加附件等的功能。非常适合日常使用。 diff --git a/app/src/main/res/values-zh-rTW/strings.xml b/app/src/main/res/values-zh-rTW/strings.xml index 67442eee1..fb4a14b65 100644 --- a/app/src/main/res/values-zh-rTW/strings.xml +++ b/app/src/main/res/values-zh-rTW/strings.xml @@ -82,52 +82,12 @@ Animate gifs at thumbnails Maximum brightness when viewing media - - - Fixed some sharing and editor issues\n - Sorry for the frequent updates lately, they should be stopped now. - - - Exclude the subfolders of excluded folders too\n - Added an easy way of excluding parent folders from the exclude confirmation dialog\n - Added draggable scrollbars\n - Allow setting a third party video player as the default - - Added an option to toggle gif animation at thumbnails - Allow setting different sorting per folder - - Implement proper folder hiding via .nomedia file\n - Allow managing excluded folders in Settings - - Added menu items for easy image rotating in fullscreen view - Added menu buttons for changing the column count - Allow picking colors by hex codes - Allow showing the photos and videos on a map, if there are available map coordinates - Show some additional Exif data at photo properties - - Allow zooming pngs and gifs\n - Allow creating new folders at Copy/Move or Save as dialog destinations - - Added an option to loop videos automatically - - 加入更多顏色的自訂選項\n - Your settings have been cleared, please reset them - 允許用捏放手勢變更照片清單欄數 - 加入只顯示圖片或影片的選項 - 加入一個「選取全部」按鈕 - - 加入一個圖片改變尺寸大小器至圖片編輯器中\n - 允許列出所有的資料夾中的圖片跟影片 - - 允許將資料夾釘選到頂端 - 一個沒有廣告,用來觀看照片及影片的藝廊。 一個觀看照片跟影片的簡單實用工具。項目可以根據日期、大小、名稱來進行遞增及遞減排序,照片可以縮放。媒體檔案們根據螢幕的大小呈列在多個方格中,您可以使用捏放手勢來調整一列中的方格數量。媒體檔案可以被重新命名、分享、刪除、複製以及移動。照片亦可被裁切、旋轉或是直接在應用軟體中設定為桌布。 - 藝廊亦提供讓第三方軟體能夠用來預覽圖片/影片、添加附件於電子郵件客戶端軟體中等功能。非常適合日常使用。 應用軟體不包含廣告與非必要的權限。它是完全開放原始碼的,並內建自訂顔色之使用者介面主題。 diff --git a/app/src/main/res/values/donottranslate.xml b/app/src/main/res/values/donottranslate.xml new file mode 100644 index 000000000..432cda790 --- /dev/null +++ b/app/src/main/res/values/donottranslate.xml @@ -0,0 +1,43 @@ + + + + + + Fixed some sharing and editor issues\n + Sorry for the frequent updates lately, they should be stopped now. + + + Exclude the subfolders of excluded folders too\n + Added an easy way of excluding parent folders from the exclude confirmation dialog\n + Added draggable scrollbars\n + Allow setting a third party video player as the default + + Added an option to toggle gif animation at thumbnails + Allow setting different sorting per folder + + Implement proper folder hiding via .nomedia file\n + Allow managing excluded folders in Settings + + Added menu items for easy image rotating in fullscreen view + Added menu buttons for changing the column count + Allow picking colors by hex codes + Allow showing the photos and videos on a map, if there are available map coordinates + Show some additional Exif data at photo properties + + Allow zooming pngs and gifs\n + Allow creating new folders at Copy/Move or Save as dialog destinations + + Added an option to loop videos automatically + + Added more color customization options\n + Your settings have been cleared, please reset them + Allow changing the column count with pinch gestures + Added an option to display images or videos only + Added a Select all button at selecting media and folders + + Added an image resizer to the editor\n + Allow displaying images and videos from all folders together + + Allow pinning folders at the top + + diff --git a/app/src/main/res/values/strings.xml b/app/src/main/res/values/strings.xml index 2b09abf0a..268325618 100644 --- a/app/src/main/res/values/strings.xml +++ b/app/src/main/res/values/strings.xml @@ -82,52 +82,12 @@ Animate gifs at thumbnails Maximum brightness when viewing media - - - Fixed some sharing and editor issues\n - Sorry for the frequent updates lately, they should be stopped now. - - - Exclude the subfolders of excluded folders too\n - Added an easy way of excluding parent folders from the exclude confirmation dialog\n - Added draggable scrollbars\n - Allow setting a third party video player as the default - - Added an option to toggle gif animation at thumbnails - Allow setting different sorting per folder - - Implement proper folder hiding via .nomedia file\n - Allow managing excluded folders in Settings - - Added menu items for easy image rotating in fullscreen view - Added menu buttons for changing the column count - Allow picking colors by hex codes - Allow showing the photos and videos on a map, if there are available map coordinates - Show some additional Exif data at photo properties - - Allow zooming pngs and gifs\n - Allow creating new folders at Copy/Move or Save as dialog destinations - - Added an option to loop videos automatically - - Added more color customization options\n - Your settings have been cleared, please reset them - Allow changing the column count with pinch gestures - Added an option to display images or videos only - Added a Select all button at selecting media and folders - - Added an image resizer to the editor\n - Allow displaying images and videos from all folders together - - Allow pinning folders at the top - A gallery for viewing photos and videos without ads. A simple tool usable for viewing photos and videos. Items can be sorted by date, size, name both ascending or descending, photos can be zoomed in. Media files are shown in multiple columns depending on the size of the display, you can change the column count by pinch gestures. They can be renamed, shared, deleted, copied, moved. Images can also be cropped, rotated or set as Wallpaper directly from the app. - The Gallery is also offered for third party usage for previewing images / videos, adding attachments at email clients etc. It\'s perfect for everyday usage. Contains no ads or unnecessary permissions. It is fully opensource, provides customizable colors. From c62a0a92999f5c9625b9856bc8263bfe48b10c71 Mon Sep 17 00:00:00 2001 From: tibbi Date: Sat, 11 Mar 2017 22:42:52 +0100 Subject: [PATCH 4/4] add the max brightness to release notes --- app/src/main/res/values/donottranslate.xml | 1 + 1 file changed, 1 insertion(+) diff --git a/app/src/main/res/values/donottranslate.xml b/app/src/main/res/values/donottranslate.xml index 432cda790..833785932 100644 --- a/app/src/main/res/values/donottranslate.xml +++ b/app/src/main/res/values/donottranslate.xml @@ -2,6 +2,7 @@ + Added an option to use max brightness at viewing fullscreen media Fixed some sharing and editor issues\n Sorry for the frequent updates lately, they should be stopped now.