mirror of
https://github.com/FossifyOrg/Gallery.git
synced 2024-11-23 13:08:00 +01:00
Merge branch 'master' into spanish
This commit is contained in:
commit
f569236b2e
22 changed files with 121 additions and 746 deletions
|
@ -321,45 +321,47 @@ class DirectoryAdapter(val activity: SimpleActivity, val dirs: MutableList<Direc
|
||||||
class ViewHolder(view: View, val itemClick: (Directory) -> (Unit)) : SwappingHolder(view, MultiSelector()) {
|
class ViewHolder(view: View, val itemClick: (Directory) -> (Unit)) : SwappingHolder(view, MultiSelector()) {
|
||||||
fun bindView(activity: SimpleActivity, multiSelectorCallback: ModalMultiSelectorCallback, multiSelector: MultiSelector, directory: Directory, pos: Int, isPinned: Boolean)
|
fun bindView(activity: SimpleActivity, multiSelectorCallback: ModalMultiSelectorCallback, multiSelector: MultiSelector, directory: Directory, pos: Int, isPinned: Boolean)
|
||||||
: View {
|
: View {
|
||||||
itemView.dir_name.text = directory.name
|
itemView.apply {
|
||||||
itemView.photo_cnt.text = directory.mediaCnt.toString()
|
dir_name.text = directory.name
|
||||||
itemView.dir_pin.visibility = if (isPinned) View.VISIBLE else View.GONE
|
photo_cnt.text = directory.mediaCnt.toString()
|
||||||
toggleItemSelection(itemView, markedItems.contains(pos), pos)
|
dir_pin.visibility = if (isPinned) View.VISIBLE else View.GONE
|
||||||
|
toggleItemSelection(this, markedItems.contains(pos), pos)
|
||||||
|
|
||||||
val tmb = directory.thumbnail
|
val tmb = directory.thumbnail
|
||||||
val timestampSignature = StringSignature(directory.date_modified.toString())
|
val timestampSignature = StringSignature(directory.date_modified.toString())
|
||||||
if (tmb.isGif()) {
|
if (tmb.isGif()) {
|
||||||
if (animateGifs) {
|
if (animateGifs) {
|
||||||
Glide.with(activity).load(tmb).asGif().diskCacheStrategy(DiskCacheStrategy.NONE).signature(timestampSignature)
|
Glide.with(activity).load(tmb).asGif().diskCacheStrategy(DiskCacheStrategy.NONE).signature(timestampSignature)
|
||||||
.placeholder(backgroundColor).centerCrop().crossFade().into(itemView.dir_thumbnail)
|
.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 {
|
} else {
|
||||||
Glide.with(activity).load(tmb).asBitmap().diskCacheStrategy(DiskCacheStrategy.RESULT).signature(timestampSignature)
|
Glide.with(activity).load(tmb).diskCacheStrategy(DiskCacheStrategy.RESULT).signature(timestampSignature)
|
||||||
.placeholder(backgroundColor).centerCrop().into(itemView.dir_thumbnail)
|
.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) }
|
setOnClickListener { viewClicked(multiSelector, directory, pos) }
|
||||||
itemView.setOnLongClickListener {
|
setOnLongClickListener {
|
||||||
if (!multiSelector.isSelectable) {
|
if (!multiSelector.isSelectable) {
|
||||||
activity.startSupportActionMode(multiSelectorCallback)
|
activity.startSupportActionMode(multiSelectorCallback)
|
||||||
multiSelector.setSelected(this, true)
|
multiSelector.setSelected(this@ViewHolder, true)
|
||||||
updateTitle(multiSelector.selectedPositions.size)
|
updateTitle(multiSelector.selectedPositions.size)
|
||||||
toggleItemSelection(itemView, true, pos)
|
toggleItemSelection(this, true, pos)
|
||||||
actMode?.invalidate()
|
actMode?.invalidate()
|
||||||
|
}
|
||||||
|
true
|
||||||
}
|
}
|
||||||
true
|
|
||||||
}
|
|
||||||
|
|
||||||
if (Build.VERSION.SDK_INT < Build.VERSION_CODES.M)
|
if (Build.VERSION.SDK_INT < Build.VERSION_CODES.M)
|
||||||
(getProperView(itemView) as FrameLayout).foreground = foregroundColor.createSelector()
|
(getProperView(this) as FrameLayout).foreground = foregroundColor.createSelector()
|
||||||
else
|
else
|
||||||
getProperView(itemView).foreground = foregroundColor.createSelector()
|
getProperView(this).foreground = foregroundColor.createSelector()
|
||||||
|
}
|
||||||
return itemView
|
return itemView
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -243,46 +243,47 @@ class MediaAdapter(val activity: SimpleActivity, var media: MutableList<Medium>,
|
||||||
|
|
||||||
class ViewHolder(view: View, val itemClick: (Medium) -> (Unit)) : SwappingHolder(view, MultiSelector()) {
|
class ViewHolder(view: View, val itemClick: (Medium) -> (Unit)) : SwappingHolder(view, MultiSelector()) {
|
||||||
fun bindView(activity: SimpleActivity, multiSelectorCallback: ModalMultiSelectorCallback, multiSelector: MultiSelector, medium: Medium, pos: Int): View {
|
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.apply {
|
||||||
itemView.file_name.beVisibleIf(displayFilenames)
|
play_outline.visibility = if (medium.isVideo) View.VISIBLE else View.GONE
|
||||||
itemView.file_name.text = medium.name
|
file_name.beVisibleIf(displayFilenames)
|
||||||
toggleItemSelection(itemView, markedItems.contains(pos), pos)
|
file_name.text = medium.name
|
||||||
|
toggleItemSelection(this, markedItems.contains(pos), pos)
|
||||||
|
|
||||||
val path = medium.path
|
val path = medium.path
|
||||||
val timestampSignature = StringSignature(medium.date_modified.toString())
|
val timestampSignature = StringSignature(medium.date_modified.toString())
|
||||||
if (medium.isGif()) {
|
if (medium.isGif()) {
|
||||||
if (animateGifs) {
|
if (animateGifs) {
|
||||||
Glide.with(activity).load(path).asGif().diskCacheStrategy(DiskCacheStrategy.NONE).signature(timestampSignature)
|
Glide.with(activity).load(path).asGif().diskCacheStrategy(DiskCacheStrategy.NONE).signature(timestampSignature)
|
||||||
.placeholder(backgroundColor).centerCrop().crossFade().into(itemView.medium_thumbnail)
|
.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 {
|
} else {
|
||||||
Glide.with(activity).load(path).asBitmap().diskCacheStrategy(DiskCacheStrategy.NONE).signature(timestampSignature)
|
Glide.with(activity).load(path).diskCacheStrategy(DiskCacheStrategy.RESULT).signature(timestampSignature)
|
||||||
.placeholder(backgroundColor).centerCrop().into(itemView.medium_thumbnail)
|
.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) }
|
setOnClickListener { viewClicked(multiSelector, medium, pos) }
|
||||||
itemView.setOnLongClickListener {
|
setOnLongClickListener {
|
||||||
if (!multiSelector.isSelectable) {
|
if (!multiSelector.isSelectable) {
|
||||||
activity.startSupportActionMode(multiSelectorCallback)
|
activity.startSupportActionMode(multiSelectorCallback)
|
||||||
multiSelector.setSelected(this, true)
|
multiSelector.setSelected(this@ViewHolder, true)
|
||||||
updateTitle(multiSelector.selectedPositions.size)
|
updateTitle(multiSelector.selectedPositions.size)
|
||||||
toggleItemSelection(itemView, true, pos)
|
toggleItemSelection(this, true, pos)
|
||||||
actMode?.invalidate()
|
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
|
return itemView
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -24,10 +24,11 @@ class ChangeSortingDialog(val activity: SimpleActivity, val isDirectorySorting:
|
||||||
|
|
||||||
init {
|
init {
|
||||||
config = activity.config
|
config = activity.config
|
||||||
view = LayoutInflater.from(activity).inflate(R.layout.dialog_change_sorting, null)
|
view = LayoutInflater.from(activity).inflate(R.layout.dialog_change_sorting, null).apply {
|
||||||
view.use_for_this_folder_divider.beVisibleIf(showFolderCheckbox)
|
use_for_this_folder_divider.beVisibleIf(showFolderCheckbox)
|
||||||
view.sorting_dialog_use_for_this_folder.beVisibleIf(showFolderCheckbox)
|
sorting_dialog_use_for_this_folder.beVisibleIf(showFolderCheckbox)
|
||||||
view.sorting_dialog_use_for_this_folder.isChecked = config.hasCustomSorting(path)
|
sorting_dialog_use_for_this_folder.isChecked = config.hasCustomSorting(path)
|
||||||
|
}
|
||||||
|
|
||||||
AlertDialog.Builder(activity)
|
AlertDialog.Builder(activity)
|
||||||
.setPositiveButton(R.string.ok, this)
|
.setPositiveButton(R.string.ok, this)
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<LinearLayout
|
<LinearLayout
|
||||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
android:id="@+id/sorting_dialog_holder"
|
android:id="@+id/dialog_holder"
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="match_parent"
|
android:layout_height="match_parent"
|
||||||
android:orientation="vertical"
|
android:orientation="vertical"
|
||||||
|
|
|
@ -82,52 +82,12 @@
|
||||||
<string name="animate_gifs">Animate gifs at thumbnails</string>
|
<string name="animate_gifs">Animate gifs at thumbnails</string>
|
||||||
<string name="max_brightness">Maximum brightness when viewing media</string>
|
<string name="max_brightness">Maximum brightness when viewing media</string>
|
||||||
|
|
||||||
<!-- Release notes -->
|
|
||||||
<string name="release_83">
|
|
||||||
Fixed some sharing and editor issues\n
|
|
||||||
Sorry for the frequent updates lately, they should be stopped now.
|
|
||||||
</string>
|
|
||||||
<string name="release_77">
|
|
||||||
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
|
|
||||||
</string>
|
|
||||||
<string name="release_76">Added an option to toggle gif animation at thumbnails</string>
|
|
||||||
<string name="release_74">Allow setting different sorting per folder</string>
|
|
||||||
<string name="release_72">
|
|
||||||
Implement proper folder hiding via .nomedia file\n
|
|
||||||
Allow managing excluded folders in Settings
|
|
||||||
</string>
|
|
||||||
<string name="release_70">Added menu items for easy image rotating in fullscreen view</string>
|
|
||||||
<string name="release_69">Added menu buttons for changing the column count</string>
|
|
||||||
<string name="release_66">Allow picking colors by hex codes</string>
|
|
||||||
<string name="release_65">Allow showing the photos and videos on a map, if there are available map coordinates</string>
|
|
||||||
<string name="release_62">Show some additional Exif data at photo properties</string>
|
|
||||||
<string name="release_58">
|
|
||||||
Allow zooming pngs and gifs\n
|
|
||||||
Allow creating new folders at Copy/Move or Save as dialog destinations
|
|
||||||
</string>
|
|
||||||
<string name="release_54">Added an option to loop videos automatically</string>
|
|
||||||
<string name="release_52">
|
|
||||||
Added more color customization options\n
|
|
||||||
Your settings have been cleared, please reset them</string>
|
|
||||||
<string name="release_51">Allow changing the column count with pinch gestures</string>
|
|
||||||
<string name="release_50">Added an option to display images or videos only</string>
|
|
||||||
<string name="release_49">Added a Select all button at selecting media and folders</string>
|
|
||||||
<string name="release_47">
|
|
||||||
Added an image resizer to the editor\n
|
|
||||||
Allow displaying images and videos from all folders together
|
|
||||||
</string>
|
|
||||||
<string name="release_46">Allow pinning folders at the top</string>
|
|
||||||
|
|
||||||
<!-- Strings displayed only on Google Playstore. Optional, but good to have -->
|
<!-- Strings displayed only on Google Playstore. Optional, but good to have -->
|
||||||
<!-- Short description has to have less than 80 chars -->
|
<!-- Short description has to have less than 80 chars -->
|
||||||
<string name="app_short_description">A gallery for viewing photos and videos without ads.</string>
|
<string name="app_short_description">A gallery for viewing photos and videos without ads.</string>
|
||||||
<string name="app_long_description">
|
<string name="app_long_description">
|
||||||
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.
|
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.
|
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.
|
Contains no ads or unnecessary permissions. It is fully opensource, provides customizable colors.
|
||||||
|
|
|
@ -82,52 +82,12 @@
|
||||||
<string name="animate_gifs">Animate gifs at thumbnails</string>
|
<string name="animate_gifs">Animate gifs at thumbnails</string>
|
||||||
<string name="max_brightness">Maximum brightness when viewing media</string>
|
<string name="max_brightness">Maximum brightness when viewing media</string>
|
||||||
|
|
||||||
<!-- Release notes -->
|
|
||||||
<string name="release_83">
|
|
||||||
Fixed some sharing and editor issues\n
|
|
||||||
Sorry for the frequent updates lately, they should be stopped now.
|
|
||||||
</string>
|
|
||||||
<string name="release_77">
|
|
||||||
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
|
|
||||||
</string>
|
|
||||||
<string name="release_76">Added an option to toggle gif animation at thumbnails</string>
|
|
||||||
<string name="release_74">Allow setting different sorting per folder</string>
|
|
||||||
<string name="release_72">
|
|
||||||
Implement proper folder hiding via .nomedia file\n
|
|
||||||
Allow managing excluded folders in Settings
|
|
||||||
</string>
|
|
||||||
<string name="release_70">Added menu items for easy image rotating in fullscreen view</string>
|
|
||||||
<string name="release_69">Added menu buttons for changing the column count</string>
|
|
||||||
<string name="release_66">Allow picking colors by hex codes</string>
|
|
||||||
<string name="release_65">Allow showing the photos and videos on a map, if there are available map coordinates</string>
|
|
||||||
<string name="release_62">Show some additional Exif data at photo properties</string>
|
|
||||||
<string name="release_58">
|
|
||||||
Allow zooming pngs and gifs\n
|
|
||||||
Allow creating new folders at Copy/Move or Save as dialog destinations
|
|
||||||
</string>
|
|
||||||
<string name="release_54">Added an option to loop videos automatically</string>
|
|
||||||
<string name="release_52">
|
|
||||||
Added more color customization options\n
|
|
||||||
Your settings have been cleared, please reset them</string>
|
|
||||||
<string name="release_51">Allow changing the column count with pinch gestures</string>
|
|
||||||
<string name="release_50">Added an option to display images or videos only</string>
|
|
||||||
<string name="release_49">Added a Select all button at selecting media and folders</string>
|
|
||||||
<string name="release_47">
|
|
||||||
Added an image resizer to the editor\n
|
|
||||||
Allow displaying images and videos from all folders together
|
|
||||||
</string>
|
|
||||||
<string name="release_46">Allow pinning folders at the top</string>
|
|
||||||
|
|
||||||
<!-- Strings displayed only on Google Playstore. Optional, but good to have -->
|
<!-- Strings displayed only on Google Playstore. Optional, but good to have -->
|
||||||
<!-- Short description has to have less than 80 chars -->
|
<!-- Short description has to have less than 80 chars -->
|
||||||
<string name="app_short_description">A gallery for viewing photos and videos without ads.</string>
|
<string name="app_short_description">A gallery for viewing photos and videos without ads.</string>
|
||||||
<string name="app_long_description">
|
<string name="app_long_description">
|
||||||
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.
|
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.
|
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.
|
Contains no ads or unnecessary permissions. It is fully opensource, provides customizable colors.
|
||||||
|
|
|
@ -82,52 +82,12 @@
|
||||||
<string name="animate_gifs">Animar las miniaturas de gifs</string>
|
<string name="animate_gifs">Animar las miniaturas de gifs</string>
|
||||||
<string name="max_brightness">Brillo máximo cuando se muestran los medios</string>
|
<string name="max_brightness">Brillo máximo cuando se muestran los medios</string>
|
||||||
|
|
||||||
<!-- Release notes -->
|
|
||||||
<string name="release_83">
|
|
||||||
Fixed some sharing and editor issues\n
|
|
||||||
Sorry for the frequent updates lately, they should be stopped now.
|
|
||||||
</string>
|
|
||||||
<string name="release_77">
|
|
||||||
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
|
|
||||||
</string>
|
|
||||||
<string name="release_76">Added an option to toggle gif animation at thumbnails</string>
|
|
||||||
<string name="release_74">Allow setting different sorting per folder</string>
|
|
||||||
<string name="release_72">
|
|
||||||
Implement proper folder hiding via .nomedia file\n
|
|
||||||
Allow managing excluded folders in Settings
|
|
||||||
</string>
|
|
||||||
<string name="release_70">Added menu items for easy image rotating in fullscreen view</string>
|
|
||||||
<string name="release_69">Added menu buttons for changing the column count</string>
|
|
||||||
<string name="release_66">Allow picking colors by hex codes</string>
|
|
||||||
<string name="release_65">Allow showing the photos and videos on a map, if there are available map coordinates</string>
|
|
||||||
<string name="release_62">Show some additional Exif data at photo properties</string>
|
|
||||||
<string name="release_58">
|
|
||||||
Allow zooming pngs and gifs\n
|
|
||||||
Allow creating new folders at Copy/Move or Save as dialog destinations
|
|
||||||
</string>
|
|
||||||
<string name="release_54">Added an option to loop videos automatically</string>
|
|
||||||
<string name="release_52">
|
|
||||||
Added more color customization options\n
|
|
||||||
Your settings have been cleared, please reset them</string>
|
|
||||||
<string name="release_51">Allow changing the column count with pinch gestures</string>
|
|
||||||
<string name="release_50">Added an option to display images or videos only</string>
|
|
||||||
<string name="release_49">Added a Select all button at selecting media and folders</string>
|
|
||||||
<string name="release_47">
|
|
||||||
Added an image resizer to the editor\n
|
|
||||||
Allow displaying images and videos from all folders together
|
|
||||||
</string>
|
|
||||||
<string name="release_46">Allow pinning folders at the top</string>
|
|
||||||
|
|
||||||
<!-- Strings displayed only on Google Playstore. Optional, but good to have -->
|
<!-- Strings displayed only on Google Playstore. Optional, but good to have -->
|
||||||
<!-- Short description has to have less than 80 chars -->
|
<!-- Short description has to have less than 80 chars -->
|
||||||
<string name="app_short_description">Una galería para ver fotos y vídeos sin publicidad.</string>
|
<string name="app_short_description">Una galería para ver fotos y vídeos sin publicidad.</string>
|
||||||
<string name="app_long_description">
|
<string name="app_long_description">
|
||||||
Una herramienta sencilla que se puede usar para ver fotos y vídeos. Los elementos se peden ordenar por fecha, tamaño, nombre tanto ascendente como descendente; se puede hacer zoom en las fotos. Los archivos de medios se muestran en múltiples columnas dependiendo del tamaño de la pantalla, y se pede cambiar el número de columnas mediante gestos. Permite renombrar, compartir, borrar, mover. Las imágenes también se pueden recortar, rotar o usarse como fondo de pantalla directamente desde la aplicación.
|
Una herramienta sencilla que se puede usar para ver fotos y vídeos. Los elementos se peden ordenar por fecha, tamaño, nombre tanto ascendente como descendente; se puede hacer zoom en las fotos. Los archivos de medios se muestran en múltiples columnas dependiendo del tamaño de la pantalla, y se pede cambiar el número de columnas mediante gestos. Permite renombrar, compartir, borrar, mover. Las imágenes también se pueden recortar, rotar o usarse como fondo de pantalla directamente desde la aplicación.
|
||||||
|
|
||||||
|
|
||||||
Gallery también se ofrece para uso de terceros para previsualizar imágenes / vídeos, agregar adjuntos en clientes de correo, etc. Es perfecta para uso diario.
|
Gallery también se ofrece para uso de terceros para previsualizar imágenes / vídeos, agregar adjuntos en clientes de correo, etc. Es perfecta para uso diario.
|
||||||
|
|
||||||
No contiene publicidad ni permisos innecesarios. Es totalmente libre, proporciona colores personalizables.
|
No contiene publicidad ni permisos innecesarios. Es totalmente libre, proporciona colores personalizables.
|
||||||
|
|
|
@ -82,49 +82,12 @@
|
||||||
<string name="animate_gifs">Animate gifs at thumbnails</string>
|
<string name="animate_gifs">Animate gifs at thumbnails</string>
|
||||||
<string name="max_brightness">Maximum brightness when viewing media</string>
|
<string name="max_brightness">Maximum brightness when viewing media</string>
|
||||||
|
|
||||||
<!-- Release notes -->
|
|
||||||
<string name="release_83">
|
|
||||||
Fixed some sharing and editor issues\n
|
|
||||||
Sorry for the frequent updates lately, they should be stopped now.
|
|
||||||
</string>
|
|
||||||
<string name="release_77">
|
|
||||||
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
|
|
||||||
</string>
|
|
||||||
<string name="release_76">Added an option to toggle gif animation at thumbnails</string>
|
|
||||||
<string name="release_74">Allow setting different sorting per folder</string>
|
|
||||||
<string name="release_72">
|
|
||||||
Implement proper folder hiding via .nomedia file\n
|
|
||||||
Allow managing excluded folders in Settings
|
|
||||||
</string>
|
|
||||||
<string name="release_70">Added menu items for easy image rotating in fullscreen view</string>
|
|
||||||
<string name="release_69">Added menu buttons for changing the column count</string>
|
|
||||||
<string name="release_66">Allow picking colors by hex codes</string>
|
|
||||||
<string name="release_65">Allow showing the photos and videos on a map, if there are available map coordinates</string>
|
|
||||||
<string name="release_62">Show some additional Exif data at photo properties</string>
|
|
||||||
<string name="release_58">
|
|
||||||
Allow zooming pngs and gifs\n
|
|
||||||
Allow creating new folders at Copy/Move or Save as dialog destinations
|
|
||||||
</string>
|
|
||||||
<string name="release_54">Ajouter une option pour tourner en boucle les vidéos automatiquement.</string>
|
|
||||||
<string name="release_52">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.</string>
|
|
||||||
<string name="release_51">Permettre de changer le nombre de colonnes à afficher avec un mouvement de pincement.</string>
|
|
||||||
<string name="release_50">Une option pour afficher afficher exclusivement les photos, ou exclusivement les vidéos a été ajoutée.</string>
|
|
||||||
<string name="release_49">Un bouton pour tout sélectionner a été ajouté.</string>
|
|
||||||
<string name="release_47">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.</string>
|
|
||||||
<string name="release_46">Permettre d\'épingler les dossiers en haut</string>
|
|
||||||
|
|
||||||
<!-- Strings displayed only on Google Playstore. Optional, but good to have -->
|
<!-- Strings displayed only on Google Playstore. Optional, but good to have -->
|
||||||
<!-- Short description has to have less than 80 chars -->
|
<!-- Short description has to have less than 80 chars -->
|
||||||
<string name="app_short_description">Un album pour visionner photos et vidéos sans publicité.</string>
|
<string name="app_short_description">Un album pour visionner photos et vidéos sans publicité.</string>
|
||||||
<string name="app_long_description">
|
<string name="app_long_description">
|
||||||
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.
|
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.
|
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.
|
L\'application ne contient ni de publicité ni d\'autorisation inutile. Elle est totalement OpenSource et est aussi fournie avec un thème sombre.
|
||||||
|
|
|
@ -82,52 +82,12 @@
|
||||||
<string name="animate_gifs">Animate gifs at thumbnails</string>
|
<string name="animate_gifs">Animate gifs at thumbnails</string>
|
||||||
<string name="max_brightness">Maximum brightness when viewing media</string>
|
<string name="max_brightness">Maximum brightness when viewing media</string>
|
||||||
|
|
||||||
<!-- Release notes -->
|
|
||||||
<string name="release_83">
|
|
||||||
Fixed some sharing and editor issues\n
|
|
||||||
Sorry for the frequent updates lately, they should be stopped now.
|
|
||||||
</string>
|
|
||||||
<string name="release_77">
|
|
||||||
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
|
|
||||||
</string>
|
|
||||||
<string name="release_76">Added an option to toggle gif animation at thumbnails</string>
|
|
||||||
<string name="release_74">Allow setting different sorting per folder</string>
|
|
||||||
<string name="release_72">
|
|
||||||
Implement proper folder hiding via .nomedia file\n
|
|
||||||
Allow managing excluded folders in Settings
|
|
||||||
</string>
|
|
||||||
<string name="release_70">Added menu items for easy image rotating in fullscreen view</string>
|
|
||||||
<string name="release_69">Added menu buttons for changing the column count</string>
|
|
||||||
<string name="release_66">Allow picking colors by hex codes</string>
|
|
||||||
<string name="release_65">Allow showing the photos and videos on a map, if there are available map coordinates</string>
|
|
||||||
<string name="release_62">Show some additional Exif data at photo properties</string>
|
|
||||||
<string name="release_58">
|
|
||||||
Allow zooming pngs and gifs\n
|
|
||||||
Allow creating new folders at Copy/Move or Save as dialog destinations
|
|
||||||
</string>
|
|
||||||
<string name="release_54">Added an option to loop videos automatically</string>
|
|
||||||
<string name="release_52">
|
|
||||||
Added more color customization options\n
|
|
||||||
Your settings have been cleared, please reset them</string>
|
|
||||||
<string name="release_51">Allow changing the column count with pinch gestures</string>
|
|
||||||
<string name="release_50">Added an option to display images or videos only</string>
|
|
||||||
<string name="release_49">Added a Select all button at selecting media and folders</string>
|
|
||||||
<string name="release_47">
|
|
||||||
Added an image resizer to the editor\n
|
|
||||||
Allow displaying images and videos from all folders together
|
|
||||||
</string>
|
|
||||||
<string name="release_46">Allow pinning folders at the top</string>
|
|
||||||
|
|
||||||
<!-- Strings displayed only on Google Playstore. Optional, but good to have -->
|
<!-- Strings displayed only on Google Playstore. Optional, but good to have -->
|
||||||
<!-- Short description has to have less than 80 chars -->
|
<!-- Short description has to have less than 80 chars -->
|
||||||
<string name="app_short_description">A gallery for viewing photos and videos without ads.</string>
|
<string name="app_short_description">A gallery for viewing photos and videos without ads.</string>
|
||||||
<string name="app_long_description">
|
<string name="app_long_description">
|
||||||
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.
|
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.
|
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.
|
Contains no ads or unnecessary permissions. It is fully opensource, provides customizable colors.
|
||||||
|
|
|
@ -82,52 +82,12 @@
|
||||||
<string name="animate_gifs">Animate gifs at thumbnails</string>
|
<string name="animate_gifs">Animate gifs at thumbnails</string>
|
||||||
<string name="max_brightness">Maximum brightness when viewing media</string>
|
<string name="max_brightness">Maximum brightness when viewing media</string>
|
||||||
|
|
||||||
<!-- Release notes -->
|
|
||||||
<string name="release_83">
|
|
||||||
Fixed some sharing and editor issues\n
|
|
||||||
Sorry for the frequent updates lately, they should be stopped now.
|
|
||||||
</string>
|
|
||||||
<string name="release_77">
|
|
||||||
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
|
|
||||||
</string>
|
|
||||||
<string name="release_76">Added an option to toggle gif animation at thumbnails</string>
|
|
||||||
<string name="release_74">Allow setting different sorting per folder</string>
|
|
||||||
<string name="release_72">
|
|
||||||
Implement proper folder hiding via .nomedia file\n
|
|
||||||
Allow managing excluded folders in Settings
|
|
||||||
</string>
|
|
||||||
<string name="release_70">Added menu items for easy image rotating in fullscreen view</string>
|
|
||||||
<string name="release_69">Added menu buttons for changing the column count</string>
|
|
||||||
<string name="release_66">Allow picking colors by hex codes</string>
|
|
||||||
<string name="release_65">Allow showing the photos and videos on a map, if there are available map coordinates</string>
|
|
||||||
<string name="release_62">Show some additional Exif data at photo properties</string>
|
|
||||||
<string name="release_58">
|
|
||||||
Allow zooming pngs and gifs\n
|
|
||||||
Allow creating new folders at Copy/Move or Save as dialog destinations
|
|
||||||
</string>
|
|
||||||
<string name="release_54">Added an option to loop videos automatically</string>
|
|
||||||
<string name="release_52">
|
|
||||||
Added more color customization options\n
|
|
||||||
Your settings have been cleared, please reset them</string>
|
|
||||||
<string name="release_51">Allow changing the column count with pinch gestures</string>
|
|
||||||
<string name="release_50">Added an option to display images or videos only</string>
|
|
||||||
<string name="release_49">Added a Select all button at selecting media and folders</string>
|
|
||||||
<string name="release_47">
|
|
||||||
Added an image resizer to the editor\n
|
|
||||||
Allow displaying images and videos from all folders together
|
|
||||||
</string>
|
|
||||||
<string name="release_46">Allow pinning folders at the top</string>
|
|
||||||
|
|
||||||
<!-- Strings displayed only on Google Playstore. Optional, but good to have -->
|
<!-- Strings displayed only on Google Playstore. Optional, but good to have -->
|
||||||
<!-- Short description has to have less than 80 chars -->
|
<!-- Short description has to have less than 80 chars -->
|
||||||
<string name="app_short_description">A gallery for viewing photos and videos without ads.</string>
|
<string name="app_short_description">A gallery for viewing photos and videos without ads.</string>
|
||||||
<string name="app_long_description">
|
<string name="app_long_description">
|
||||||
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.
|
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.
|
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.
|
Contains no ads or unnecessary permissions. It is fully opensource, provides customizable colors.
|
||||||
|
|
|
@ -82,52 +82,12 @@
|
||||||
<string name="animate_gifs">Animate gifs at thumbnails</string>
|
<string name="animate_gifs">Animate gifs at thumbnails</string>
|
||||||
<string name="max_brightness">Maximum brightness when viewing media</string>
|
<string name="max_brightness">Maximum brightness when viewing media</string>
|
||||||
|
|
||||||
<!-- Release notes -->
|
|
||||||
<string name="release_83">
|
|
||||||
Fixed some sharing and editor issues\n
|
|
||||||
Sorry for the frequent updates lately, they should be stopped now.
|
|
||||||
</string>
|
|
||||||
<string name="release_77">
|
|
||||||
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
|
|
||||||
</string>
|
|
||||||
<string name="release_76">Added an option to toggle gif animation at thumbnails</string>
|
|
||||||
<string name="release_74">Allow setting different sorting per folder</string>
|
|
||||||
<string name="release_72">
|
|
||||||
Implement proper folder hiding via .nomedia file\n
|
|
||||||
Allow managing excluded folders in Settings
|
|
||||||
</string>
|
|
||||||
<string name="release_70">Added menu items for easy image rotating in fullscreen view</string>
|
|
||||||
<string name="release_69">Added menu buttons for changing the column count</string>
|
|
||||||
<string name="release_66">Allow picking colors by hex codes</string>
|
|
||||||
<string name="release_65">Allow showing the photos and videos on a map, if there are available map coordinates</string>
|
|
||||||
<string name="release_62">Show some additional Exif data at photo properties</string>
|
|
||||||
<string name="release_58">
|
|
||||||
Allow zooming pngs and gifs\n
|
|
||||||
Allow creating new folders at Copy/Move or Save as dialog destinations
|
|
||||||
</string>
|
|
||||||
<string name="release_54">Added an option to loop videos automatically</string>
|
|
||||||
<string name="release_52">
|
|
||||||
Added more color customization options\n
|
|
||||||
Your settings have been cleared, please reset them</string>
|
|
||||||
<string name="release_51">Allow changing the column count with pinch gestures</string>
|
|
||||||
<string name="release_50">Added an option to display images or videos only</string>
|
|
||||||
<string name="release_49">Added a Select all button at selecting media and folders</string>
|
|
||||||
<string name="release_47">
|
|
||||||
Added an image resizer to the editor\n
|
|
||||||
Allow displaying images and videos from all folders together
|
|
||||||
</string>
|
|
||||||
<string name="release_46">Allow pinning folders at the top</string>
|
|
||||||
|
|
||||||
<!-- Strings displayed only on Google Playstore. Optional, but good to have -->
|
<!-- Strings displayed only on Google Playstore. Optional, but good to have -->
|
||||||
<!-- Short description has to have less than 80 chars -->
|
<!-- Short description has to have less than 80 chars -->
|
||||||
<string name="app_short_description">A gallery for viewing photos and videos without ads.</string>
|
<string name="app_short_description">A gallery for viewing photos and videos without ads.</string>
|
||||||
<string name="app_long_description">
|
<string name="app_long_description">
|
||||||
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.
|
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.
|
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.
|
Contains no ads or unnecessary permissions. It is fully opensource, provides customizable colors.
|
||||||
|
|
|
@ -82,52 +82,12 @@
|
||||||
<string name="animate_gifs">Animate gifs at thumbnails</string>
|
<string name="animate_gifs">Animate gifs at thumbnails</string>
|
||||||
<string name="max_brightness">Maximum brightness when viewing media</string>
|
<string name="max_brightness">Maximum brightness when viewing media</string>
|
||||||
|
|
||||||
<!-- Release notes -->
|
|
||||||
<string name="release_83">
|
|
||||||
Fixed some sharing and editor issues\n
|
|
||||||
Sorry for the frequent updates lately, they should be stopped now.
|
|
||||||
</string>
|
|
||||||
<string name="release_77">
|
|
||||||
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
|
|
||||||
</string>
|
|
||||||
<string name="release_76">Added an option to toggle gif animation at thumbnails</string>
|
|
||||||
<string name="release_74">Allow setting different sorting per folder</string>
|
|
||||||
<string name="release_72">
|
|
||||||
Implement proper folder hiding via .nomedia file\n
|
|
||||||
Allow managing excluded folders in Settings
|
|
||||||
</string>
|
|
||||||
<string name="release_70">Added menu items for easy image rotating in fullscreen view</string>
|
|
||||||
<string name="release_69">Added menu buttons for changing the column count</string>
|
|
||||||
<string name="release_66">Allow picking colors by hex codes</string>
|
|
||||||
<string name="release_65">Allow showing the photos and videos on a map, if there are available map coordinates</string>
|
|
||||||
<string name="release_62">Show some additional Exif data at photo properties</string>
|
|
||||||
<string name="release_58">
|
|
||||||
Allow zooming pngs and gifs\n
|
|
||||||
Allow creating new folders at Copy/Move or Save as dialog destinations
|
|
||||||
</string>
|
|
||||||
<string name="release_54">Added an option to loop videos automatically</string>
|
|
||||||
<string name="release_52">
|
|
||||||
Added more color customization options\n
|
|
||||||
Your settings have been cleared, please reset them</string>
|
|
||||||
<string name="release_51">Allow changing the column count with pinch gestures</string>
|
|
||||||
<string name="release_50">Added an option to display images or videos only</string>
|
|
||||||
<string name="release_49">Added a Select all button at selecting media and folders</string>
|
|
||||||
<string name="release_47">
|
|
||||||
Added an image resizer to the editor\n
|
|
||||||
Allow displaying images and videos from all folders together
|
|
||||||
</string>
|
|
||||||
<string name="release_46">Allow pinning folders at the top</string>
|
|
||||||
|
|
||||||
<!-- Strings displayed only on Google Playstore. Optional, but good to have -->
|
<!-- Strings displayed only on Google Playstore. Optional, but good to have -->
|
||||||
<!-- Short description has to have less than 80 chars -->
|
<!-- Short description has to have less than 80 chars -->
|
||||||
<string name="app_short_description">写真やビデオを見るためのギャラリー。広告はありません。</string>
|
<string name="app_short_description">写真やビデオを見るためのギャラリー。広告はありません。</string>
|
||||||
<string name="app_long_description">
|
<string name="app_long_description">
|
||||||
写真やビデオを見るためのシンプルなツール。 日付、サイズ、名前で、昇順または降順にアイテムを並べ替えることができ、写真は拡大表示できます。 メディアファイルは、ディスプレイのサイズに応じて複数の列に表示されます。 名前の変更、共有、削除、コピー、移動が可能です。 画像をトリミング、回転、または壁紙としてアプリから直接設定することもできます。
|
写真やビデオを見るためのシンプルなツール。 日付、サイズ、名前で、昇順または降順にアイテムを並べ替えることができ、写真は拡大表示できます。 メディアファイルは、ディスプレイのサイズに応じて複数の列に表示されます。 名前の変更、共有、削除、コピー、移動が可能です。 画像をトリミング、回転、または壁紙としてアプリから直接設定することもできます。
|
||||||
|
|
||||||
|
|
||||||
ギャラリーは、画像やビデオのプレビュー、メールクライアントで添付ファイルの追加など、サードパーティの用途にも提供されます。 毎日の使用には完璧です。
|
ギャラリーは、画像やビデオのプレビュー、メールクライアントで添付ファイルの追加など、サードパーティの用途にも提供されます。 毎日の使用には完璧です。
|
||||||
|
|
||||||
広告や不要なアクセス許可は含まれていません。 完全にオープンソースで、ダークテーマも提供しています。
|
広告や不要なアクセス許可は含まれていません。 完全にオープンソースで、ダークテーマも提供しています。
|
||||||
|
|
|
@ -82,45 +82,6 @@
|
||||||
<string name="animate_gifs">Animowanie gify z miniaturkami</string>
|
<string name="animate_gifs">Animowanie gify z miniaturkami</string>
|
||||||
<string name="max_brightness">Maximum brightness when viewing media</string>
|
<string name="max_brightness">Maximum brightness when viewing media</string>
|
||||||
|
|
||||||
<!-- Release notes -->
|
|
||||||
<string name="release_83">
|
|
||||||
Fixed some sharing and editor issues\n
|
|
||||||
Sorry for the frequent updates lately, they should be stopped now.
|
|
||||||
</string>
|
|
||||||
<string name="release_77">
|
|
||||||
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
|
|
||||||
</string>
|
|
||||||
<string name="release_76">Dodano opcję, aby przełączyć animację gif w miniaturach</string>
|
|
||||||
<string name="release_74">Pozwala na ustawienie innego sortowania w folderze</string>
|
|
||||||
<string name="release_72">
|
|
||||||
Wdrożenie odpowiedniego ukrywania folderów poprzez .nomedia pliku\n
|
|
||||||
Pozwala zarządzać ukrytymi folderami w menu Ustawienia
|
|
||||||
</string>
|
|
||||||
<string name="release_70">Dodano elementy menu ułatwiające obracanie obrazu w widoku pełnoekranowym</string>
|
|
||||||
<string name="release_69">Dodano przyciski menu do zmiany liczby kolumn</string>
|
|
||||||
<string name="release_66">Pozwala wybierać kolory przez hex codes</string>
|
|
||||||
<string name="release_65">Pozwala pokazać zdjęcia i filmy na mapie, jeśli są dostępne współrzędne geograficzne</string>
|
|
||||||
<string name="release_62">Pokaż dodatkowe dane EXIF z właściwości zdjęcia</string>
|
|
||||||
<string name="release_58">
|
|
||||||
Pozwala powiększyć png i gif\n
|
|
||||||
Pozwalają na tworzenie nowych folderów Kopiuj / przenieś lub zapisać
|
|
||||||
</string>
|
|
||||||
<string name="release_54">Dodano automatyczną opcję filmy w pętli</string>
|
|
||||||
<string name="release_52">
|
|
||||||
Dodano opcje doboru kolorów\n
|
|
||||||
Twoje ustawienia zostały wyczyszczone, należy je zresetować</string>
|
|
||||||
<string name="release_51">Pozwala zmieniając liczyć kolumna gestami</string>
|
|
||||||
<string name="release_50">Dodano opcję wyświetlania: zdjęcia albo filmy</string>
|
|
||||||
<string name="release_49">Dodano przycisk: Zaznacz wszystko w wyborze plików i folderów</string>
|
|
||||||
<string name="release_47">
|
|
||||||
Dodano opcję zmianu rozmiaru w edytorze\n
|
|
||||||
Pozwala na wyświetlanie zdjęć i filmów razem
|
|
||||||
</string>
|
|
||||||
<string name="release_46">Pozwala na przypinanie folderów na szczycie</string>
|
|
||||||
|
|
||||||
<!-- Strings displayed only on Google Playstore. Optional, but good to have -->
|
<!-- Strings displayed only on Google Playstore. Optional, but good to have -->
|
||||||
<!-- Short description has to have less than 80 chars -->
|
<!-- Short description has to have less than 80 chars -->
|
||||||
<string name="app_short_description">Darmowa Galeria bez reklam do przeglądania zdjęć i filmów.</string>
|
<string name="app_short_description">Darmowa Galeria bez reklam do przeglądania zdjęć i filmów.</string>
|
||||||
|
|
|
@ -82,52 +82,12 @@
|
||||||
<string name="animate_gifs">Animação de gifs nas miniaturas</string>
|
<string name="animate_gifs">Animação de gifs nas miniaturas</string>
|
||||||
<string name="max_brightness">Maximum brightness when viewing media</string>
|
<string name="max_brightness">Maximum brightness when viewing media</string>
|
||||||
|
|
||||||
<!-- Release notes -->
|
|
||||||
<string name="release_83">
|
|
||||||
Fixed some sharing and editor issues\n
|
|
||||||
Sorry for the frequent updates lately, they should be stopped now.
|
|
||||||
</string>
|
|
||||||
<string name="release_77">
|
|
||||||
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
|
|
||||||
</string>
|
|
||||||
<string name="release_76">Added an option to toggle gif animation at thumbnails</string>
|
|
||||||
<string name="release_74">Allow setting different sorting per folder</string>
|
|
||||||
<string name="release_72">
|
|
||||||
Implement proper folder hiding via .nomedia file\n
|
|
||||||
Allow managing excluded folders in Settings
|
|
||||||
</string>
|
|
||||||
<string name="release_70">Added menu items for easy image rotating in fullscreen view</string>
|
|
||||||
<string name="release_69">Added menu buttons for changing the column count</string>
|
|
||||||
<string name="release_66">Allow picking colors by hex codes</string>
|
|
||||||
<string name="release_65">Allow showing the photos and videos on a map, if there are available map coordinates</string>
|
|
||||||
<string name="release_62">Show some additional Exif data at photo properties</string>
|
|
||||||
<string name="release_58">
|
|
||||||
Allow zooming pngs and gifs\n
|
|
||||||
Allow creating new folders at Copy/Move or Save as dialog destinations
|
|
||||||
</string>
|
|
||||||
<string name="release_54">Added an option to loop videos automatically</string>
|
|
||||||
<string name="release_52">
|
|
||||||
Added more color customization options\n
|
|
||||||
Your settings have been cleared, please reset them</string>
|
|
||||||
<string name="release_51">Allow changing the column count with pinch gestures</string>
|
|
||||||
<string name="release_50">Added an option to display images or videos only</string>
|
|
||||||
<string name="release_49">Added a Select all button at selecting media and folders</string>
|
|
||||||
<string name="release_47">
|
|
||||||
Added an image resizer to the editor\n
|
|
||||||
Allow displaying images and videos from all folders together
|
|
||||||
</string>
|
|
||||||
<string name="release_46">Allow pinning folders at the top</string>
|
|
||||||
|
|
||||||
<!-- Strings displayed only on Google Playstore. Optional, but good to have -->
|
<!-- Strings displayed only on Google Playstore. Optional, but good to have -->
|
||||||
<!-- Short description has to have less than 80 chars -->
|
<!-- Short description has to have less than 80 chars -->
|
||||||
<string name="app_short_description">Uma aplicação para ver fotografias e vídeos.</string>
|
<string name="app_short_description">Uma aplicação para ver fotografias e vídeos.</string>
|
||||||
<string name="app_long_description">
|
<string name="app_long_description">
|
||||||
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.
|
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.
|
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\'.
|
Não contém anúncios nem permissões desnecessárias. Disponibiliza um tema escuro e é totalmente \'open source\'.
|
||||||
|
|
|
@ -82,52 +82,12 @@
|
||||||
<string name="animate_gifs">Animate gifs at thumbnails</string>
|
<string name="animate_gifs">Animate gifs at thumbnails</string>
|
||||||
<string name="max_brightness">Maximum brightness when viewing media</string>
|
<string name="max_brightness">Maximum brightness when viewing media</string>
|
||||||
|
|
||||||
<!-- Release notes -->
|
|
||||||
<string name="release_83">
|
|
||||||
Fixed some sharing and editor issues\n
|
|
||||||
Sorry for the frequent updates lately, they should be stopped now.
|
|
||||||
</string>
|
|
||||||
<string name="release_77">
|
|
||||||
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
|
|
||||||
</string>
|
|
||||||
<string name="release_76">Added an option to toggle gif animation at thumbnails</string>
|
|
||||||
<string name="release_74">Allow setting different sorting per folder</string>
|
|
||||||
<string name="release_72">
|
|
||||||
Implement proper folder hiding via .nomedia file\n
|
|
||||||
Allow managing excluded folders in Settings
|
|
||||||
</string>
|
|
||||||
<string name="release_70">Добавлены элементы меню, позволяющие легко повернуть изображение в полноэкранном режиме</string>
|
|
||||||
<string name="release_69">В меню добавлены кнопки для изменения количества столбцов на гравном экране</string>
|
|
||||||
<string name="release_66">Добавлена возможность выбирать цвета по hex-кодам</string>
|
|
||||||
<string name="release_65">Добавлена возможность показывать место съёмки фото или видео на карте, если указаны координаты</string>
|
|
||||||
<string name="release_62">В свойствах фото теперь отображаются некоторые Exif-данные</string>
|
|
||||||
<string name="release_58">
|
|
||||||
Добавлена возможность масштабирования png и gif изображений\n
|
|
||||||
Добавлена возможность создания новой папки в диалогах "Копировать/Переместить" и "Сохранить как"
|
|
||||||
</string>
|
|
||||||
<string name="release_54">Добавлена возможность повторять видео автоматически</string>
|
|
||||||
<string name="release_52">
|
|
||||||
Добавлена возможность изменять цветовое оформление\n
|
|
||||||
Настройки приложения в этой версии были сброшены к первоначальным, пожалуйста, настройте снова</string>
|
|
||||||
<string name="release_51">Добавлена возможность изменять количество столбцов щипком</string>
|
|
||||||
<string name="release_50">Добавлен переключатель для отображения только изображений или видео</string>
|
|
||||||
<string name="release_49">Добавлена кнопка "Выбрать всё"</string>
|
|
||||||
<string name="release_47">
|
|
||||||
Добавлена возможность изменения размера изображения в редакторе\n
|
|
||||||
Добавлена возможность отображения всех изображений и видео одним потоком
|
|
||||||
</string>
|
|
||||||
<string name="release_46">Добавлена возможность закреплять папки</string>
|
|
||||||
|
|
||||||
<!-- Strings displayed only on Google Playstore. Optional, but good to have -->
|
<!-- Strings displayed only on Google Playstore. Optional, but good to have -->
|
||||||
<!-- Short description has to have less than 80 chars -->
|
<!-- Short description has to have less than 80 chars -->
|
||||||
<string name="app_short_description">Галерея для просмотра изображений и видео. Без рекламы.</string>
|
<string name="app_short_description">Галерея для просмотра изображений и видео. Без рекламы.</string>
|
||||||
<string name="app_long_description">
|
<string name="app_long_description">
|
||||||
Простое приложение для просмотра изображений и видеозаписей. Отображаемые файлы могут быть отсортированы как по возрастанию, так и по убыванию даты, размера или имени. Фотографии можно масштабировать. В зависимости от размера экрана, медиафайлы располагаются в несколько столбцов, можно изменять число столбцов щипком двумя пальцами. Можно переименовывать, удалять, копировать, перемещать и делиться файлами из галереи. В приложении есть возможность обрезать и поворачивать изображения или устанавливать их в качестве обоев.
|
Простое приложение для просмотра изображений и видеозаписей. Отображаемые файлы могут быть отсортированы как по возрастанию, так и по убыванию даты, размера или имени. Фотографии можно масштабировать. В зависимости от размера экрана, медиафайлы располагаются в несколько столбцов, можно изменять число столбцов щипком двумя пальцами. Можно переименовывать, удалять, копировать, перемещать и делиться файлами из галереи. В приложении есть возможность обрезать и поворачивать изображения или устанавливать их в качестве обоев.
|
||||||
|
|
||||||
|
|
||||||
Галерея идеальна для повседневных задач (предпросмотр фото/видео, добавление вложений в почтовых клиентах и т.д.).
|
Галерея идеальна для повседневных задач (предпросмотр фото/видео, добавление вложений в почтовых клиентах и т.д.).
|
||||||
|
|
||||||
Это приложение не будет показывать рекламу или запрашивать ненужные разрешения. У него полностью открытый исходный код и настраиваемые цвета оформления.
|
Это приложение не будет показывать рекламу или запрашивать ненужные разрешения. У него полностью открытый исходный код и настраиваемые цвета оформления.
|
||||||
|
|
|
@ -82,52 +82,12 @@
|
||||||
<string name="animate_gifs">Animovať gif súbory pri náhľade</string>
|
<string name="animate_gifs">Animovať gif súbory pri náhľade</string>
|
||||||
<string name="max_brightness">Maximum brightness when viewing media</string>
|
<string name="max_brightness">Maximum brightness when viewing media</string>
|
||||||
|
|
||||||
<!-- Release notes -->
|
|
||||||
<string name="release_83">
|
|
||||||
Boli opravené problémy s editorom a zdieľaním\n
|
|
||||||
Ospravedlňujeme sa za časté aktualizácie, už by mali prestať.
|
|
||||||
</string>
|
|
||||||
<string name="release_77">
|
|
||||||
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č
|
|
||||||
</string>
|
|
||||||
<string name="release_76">Bola pridaná možnosť vypnutia prehrávania gif súborov pri náhľadoch</string>
|
|
||||||
<string name="release_74">Bola pridaná možnosť vlastného zoradenia jednotlivých priečinkov</string>
|
|
||||||
<string name="release_72">
|
|
||||||
Bolo pridané správne ukrývanie priečinkov pomocou súboru .nomedia\n
|
|
||||||
Bolo pridané spravovanie vylúčených súborov v nastaveniach
|
|
||||||
</string>
|
|
||||||
<string name="release_70">Do celoobrazovkového pohľadu boli pridané tlačidlá na jednoduché otáčanie obrázkov</string>
|
|
||||||
<string name="release_69">Boli pridané tlačidlá na zmenu počtu stĺpcov</string>
|
|
||||||
<string name="release_66">Allow picking colors by hex codes</string>
|
|
||||||
<string name="release_65">Allow showing the photos and videos on a map, if there are available map coordinates</string>
|
|
||||||
<string name="release_62">Show some additional Exif data at photo properties</string>
|
|
||||||
<string name="release_58">
|
|
||||||
Allow zooming pngs and gifs\n
|
|
||||||
Allow creating new folders at Copy/Move or Save as dialog destinations
|
|
||||||
</string>
|
|
||||||
<string name="release_54">Added an option to loop videos automatically</string>
|
|
||||||
<string name="release_52">
|
|
||||||
Added more color customization options\n
|
|
||||||
Your settings have been cleared, please reset them</string>
|
|
||||||
<string name="release_51">Allow changing the column count with pinch gestures</string>
|
|
||||||
<string name="release_50">Added an option to display images or videos only</string>
|
|
||||||
<string name="release_49">Added a Select all button at selecting media and folders</string>
|
|
||||||
<string name="release_47">
|
|
||||||
Added an image resizer to the editor\n
|
|
||||||
Allow displaying images and videos from all folders together
|
|
||||||
</string>
|
|
||||||
<string name="release_46">Allow pinning folders at the top</string>
|
|
||||||
|
|
||||||
<!-- Strings displayed only on Google Playstore. Optional, but good to have -->
|
<!-- Strings displayed only on Google Playstore. Optional, but good to have -->
|
||||||
<!-- Short description has to have less than 80 chars -->
|
<!-- Short description has to have less than 80 chars -->
|
||||||
<string name="app_short_description">Galéria na prezeranie obrázkov a videí bez reklám.</string>
|
<string name="app_short_description">Galéria na prezeranie obrázkov a videí bez reklám.</string>
|
||||||
<string name="app_long_description">
|
<string name="app_long_description">
|
||||||
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í.
|
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.
|
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.
|
Neobsahuje žiadne reklamy a nepotrebné oprávnenia. Je opensource, poskytuje možnosť zmeny farieb.
|
||||||
|
|
|
@ -82,52 +82,12 @@
|
||||||
<string name="animate_gifs">Animate gifs at thumbnails</string>
|
<string name="animate_gifs">Animate gifs at thumbnails</string>
|
||||||
<string name="max_brightness">Maximum brightness when viewing media</string>
|
<string name="max_brightness">Maximum brightness when viewing media</string>
|
||||||
|
|
||||||
<!-- Release notes -->
|
|
||||||
<string name="release_83">
|
|
||||||
Fixed some sharing and editor issues\n
|
|
||||||
Sorry for the frequent updates lately, they should be stopped now.
|
|
||||||
</string>
|
|
||||||
<string name="release_77">
|
|
||||||
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
|
|
||||||
</string>
|
|
||||||
<string name="release_76">Added an option to toggle gif animation at thumbnails</string>
|
|
||||||
<string name="release_74">Allow setting different sorting per folder</string>
|
|
||||||
<string name="release_72">
|
|
||||||
Implement proper folder hiding via .nomedia file\n
|
|
||||||
Allow managing excluded folders in Settings
|
|
||||||
</string>
|
|
||||||
<string name="release_70">Added menu items for easy image rotating in fullscreen view</string>
|
|
||||||
<string name="release_69">Added menu buttons for changing the column count</string>
|
|
||||||
<string name="release_66">Allow picking colors by hex codes</string>
|
|
||||||
<string name="release_65">Allow showing the photos and videos on a map, if there are available map coordinates</string>
|
|
||||||
<string name="release_62">Show some additional Exif data at photo properties</string>
|
|
||||||
<string name="release_58">
|
|
||||||
Allow zooming pngs and gifs\n
|
|
||||||
Allow creating new folders at Copy/Move or Save as dialog destinations
|
|
||||||
</string>
|
|
||||||
<string name="release_54">Added an option to loop videos automatically</string>
|
|
||||||
<string name="release_52">
|
|
||||||
Added more color customization options\n
|
|
||||||
Your settings have been cleared, please reset them</string>
|
|
||||||
<string name="release_51">Allow changing the column count with pinch gestures</string>
|
|
||||||
<string name="release_50">Added an option to display images or videos only</string>
|
|
||||||
<string name="release_49">Added a Select all button at selecting media and folders</string>
|
|
||||||
<string name="release_47">
|
|
||||||
Added an image resizer to the editor\n
|
|
||||||
Allow displaying images and videos from all folders together
|
|
||||||
</string>
|
|
||||||
<string name="release_46">Allow pinning folders at the top</string>
|
|
||||||
|
|
||||||
<!-- Strings displayed only on Google Playstore. Optional, but good to have -->
|
<!-- Strings displayed only on Google Playstore. Optional, but good to have -->
|
||||||
<!-- Short description has to have less than 80 chars -->
|
<!-- Short description has to have less than 80 chars -->
|
||||||
<string name="app_short_description">Ett Galleri för att visa bilder och videos utan en massa reklam.</string>
|
<string name="app_short_description">Ett Galleri för att visa bilder och videos utan en massa reklam.</string>
|
||||||
<string name="app_long_description">
|
<string name="app_long_description">
|
||||||
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.
|
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.
|
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.
|
Innehåller ingen reklam eller onödiga behörigheter. Det är helt och hållet opensource, innehåller anpassningsbara färger.
|
||||||
|
|
|
@ -82,49 +82,12 @@
|
||||||
<string name="animate_gifs">Küçük resimlerde gif\'leri canlandırın</string>
|
<string name="animate_gifs">Küçük resimlerde gif\'leri canlandırın</string>
|
||||||
<string name="max_brightness">Maximum brightness when viewing media</string>
|
<string name="max_brightness">Maximum brightness when viewing media</string>
|
||||||
|
|
||||||
<!-- Release notes -->
|
|
||||||
<string name="release_83">
|
|
||||||
Fixed some sharing and editor issues\n
|
|
||||||
Sorry for the frequent updates lately, they should be stopped now.
|
|
||||||
</string>
|
|
||||||
<string name="release_77">
|
|
||||||
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
|
|
||||||
</string>
|
|
||||||
<string name="release_76">Küçük resimlerde gif animasyonunu değiştirmek için bir seçenek eklendi</string>
|
|
||||||
<string name="release_74">Her klasör için farklı sıralama ayarı yapmaya izin ver</string>
|
|
||||||
<string name="release_72">
|
|
||||||
Medya yok fil dosyası üzerinden uygun klasörü gizleme uygulayın\n
|
|
||||||
Ayarlar\'da hariç tutulan klasörleri yönetmeye izin ver
|
|
||||||
</string>
|
|
||||||
<string name="release_70">Tam ekran görünümünde kolay resim dönmesi için menü öğeleri eklendi</string>
|
|
||||||
<string name="release_69">Sütun sayısını değiştirmek için menü düğmeleri eklendi</string>
|
|
||||||
<string name="release_66">Renkleri hex kodlarla toplama izni verin</string>
|
|
||||||
<string name="release_65">Kullanılabilir harita koordinatları varsa fotoğrafları ve videoları bir haritada göstermeye izin ver</string>
|
|
||||||
<string name="release_62">Fotoğraf özelliklerine ek Exif verileri göster</string>
|
|
||||||
<string name="release_58">
|
|
||||||
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</string>
|
|
||||||
<string name="release_54">Videoları otomatik olarak iliştirmek için bir seçenek eklendi</string>
|
|
||||||
<string name="release_52">
|
|
||||||
Daha fazla renk özelleştirme seçeneği eklendi\n
|
|
||||||
Ayarlarınız silindi, lütfen onları sıfırlayın</string>
|
|
||||||
<string name="release_51">Sıkıştırma hareketi ile sütun sayısının değiştirilmesine izin ver</string>
|
|
||||||
<string name="release_50">Yalnızca resim veya videoları görüntülemek için bir seçenek eklendi</string>
|
|
||||||
<string name="release_49">Ortamı ve klasörleri seçerken Tümünü seç düğmesi eklendi</string>
|
|
||||||
<string name="release_47">
|
|
||||||
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</string>
|
|
||||||
<string name="release_46">Üst kısımdaki sabitleme klasörlerine izin ver</string>
|
|
||||||
|
|
||||||
<!-- Strings displayed only on Google Playstore. Optional, but good to have -->
|
<!-- Strings displayed only on Google Playstore. Optional, but good to have -->
|
||||||
<!-- Short description has to have less than 80 chars -->
|
<!-- Short description has to have less than 80 chars -->
|
||||||
<string name="app_short_description">Fotoğrafları ve videoları reklamsız görüntülemek için kullanılan bir galeri.</string>
|
<string name="app_short_description">Fotoğrafları ve videoları reklamsız görüntülemek için kullanılan bir galeri.</string>
|
||||||
<string name="app_long_description">
|
<string name="app_long_description">
|
||||||
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.
|
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.
|
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.
|
Reklam içermeyen veya gereksiz izinler. Tamamen açık kaynaktır, özelleştirilebilir renkler sağlar.
|
||||||
|
|
|
@ -82,51 +82,11 @@
|
||||||
<string name="animate_gifs">Animate gifs at thumbnails</string>
|
<string name="animate_gifs">Animate gifs at thumbnails</string>
|
||||||
<string name="max_brightness">Maximum brightness when viewing media</string>
|
<string name="max_brightness">Maximum brightness when viewing media</string>
|
||||||
|
|
||||||
<!-- Release notes -->
|
|
||||||
<string name="release_83">
|
|
||||||
Fixed some sharing and editor issues\n
|
|
||||||
Sorry for the frequent updates lately, they should be stopped now.
|
|
||||||
</string>
|
|
||||||
<string name="release_77">
|
|
||||||
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
|
|
||||||
</string>
|
|
||||||
<string name="release_76">Added an option to toggle gif animation at thumbnails</string>
|
|
||||||
<string name="release_74">Allow setting different sorting per folder</string>
|
|
||||||
<string name="release_72">
|
|
||||||
Implement proper folder hiding via .nomedia file\n
|
|
||||||
Allow managing excluded folders in Settings
|
|
||||||
</string>
|
|
||||||
<string name="release_70">Added menu items for easy image rotating in fullscreen view</string>
|
|
||||||
<string name="release_69">Added menu buttons for changing the column count</string>
|
|
||||||
<string name="release_66">Allow picking colors by hex codes</string>
|
|
||||||
<string name="release_65">Allow showing the photos and videos on a map, if there are available map coordinates</string>
|
|
||||||
<string name="release_62">Show some additional Exif data at photo properties</string>
|
|
||||||
<string name="release_58">
|
|
||||||
Allow zooming pngs and gifs\n
|
|
||||||
Allow creating new folders at Copy/Move or Save as dialog destinations
|
|
||||||
</string>
|
|
||||||
<string name="release_54">Added an option to loop videos automatically</string>
|
|
||||||
<string name="release_52">
|
|
||||||
Added more color customization options\n
|
|
||||||
Your settings have been cleared, please reset them</string>
|
|
||||||
<string name="release_51">Allow changing the column count with pinch gestures</string>
|
|
||||||
<string name="release_50">Added an option to display images or videos only</string>
|
|
||||||
<string name="release_49">Added a Select all button at selecting media and folders</string>
|
|
||||||
<string name="release_47">
|
|
||||||
Added an image resizer to the editor\n
|
|
||||||
Allow displaying images and videos from all folders together
|
|
||||||
</string>
|
|
||||||
<string name="release_46">Allow pinning folders at the top</string>
|
|
||||||
|
|
||||||
<!-- Strings displayed only on Google Playstore. Optional, but good to have -->
|
<!-- Strings displayed only on Google Playstore. Optional, but good to have -->
|
||||||
<!-- Short description has to have less than 80 chars -->
|
<!-- Short description has to have less than 80 chars -->
|
||||||
<string name="app_short_description">一个没有广告,用来观看照片及视频的相册。</string>
|
<string name="app_short_description">一个没有广告,用来观看照片及视频的相册。</string>
|
||||||
<string name="app_long_description">
|
<string name="app_long_description">
|
||||||
一个观看照片和视频的简单实用工具。项目可以根据日期、大小、名称来递增或递减排序,照片可以缩放。媒体文件根据屏幕的大小排列在多个方格中,您可以使用缩放手势来调整每一列的方格数量。媒体文件可以被重命名、分享、删除、复制以及移动。照片亦可被剪切、旋转或是直接在应用中设为壁纸。
|
一个观看照片和视频的简单实用工具。项目可以根据日期、大小、名称来递增或递减排序,照片可以缩放。媒体文件根据屏幕的大小排列在多个方格中,您可以使用缩放手势来调整每一列的方格数量。媒体文件可以被重命名、分享、删除、复制以及移动。照片亦可被剪切、旋转或是直接在应用中设为壁纸。
|
||||||
|
|
||||||
|
|
||||||
相册亦提供能让第三方应用预览图片/视频、向电子邮件客户端添加附件等的功能。非常适合日常使用。
|
相册亦提供能让第三方应用预览图片/视频、向电子邮件客户端添加附件等的功能。非常适合日常使用。
|
||||||
|
|
||||||
|
|
|
@ -82,52 +82,12 @@
|
||||||
<string name="animate_gifs">Animate gifs at thumbnails</string>
|
<string name="animate_gifs">Animate gifs at thumbnails</string>
|
||||||
<string name="max_brightness">Maximum brightness when viewing media</string>
|
<string name="max_brightness">Maximum brightness when viewing media</string>
|
||||||
|
|
||||||
<!-- Release notes -->
|
|
||||||
<string name="release_83">
|
|
||||||
Fixed some sharing and editor issues\n
|
|
||||||
Sorry for the frequent updates lately, they should be stopped now.
|
|
||||||
</string>
|
|
||||||
<string name="release_77">
|
|
||||||
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
|
|
||||||
</string>
|
|
||||||
<string name="release_76">Added an option to toggle gif animation at thumbnails</string>
|
|
||||||
<string name="release_74">Allow setting different sorting per folder</string>
|
|
||||||
<string name="release_72">
|
|
||||||
Implement proper folder hiding via .nomedia file\n
|
|
||||||
Allow managing excluded folders in Settings
|
|
||||||
</string>
|
|
||||||
<string name="release_70">Added menu items for easy image rotating in fullscreen view</string>
|
|
||||||
<string name="release_69">Added menu buttons for changing the column count</string>
|
|
||||||
<string name="release_66">Allow picking colors by hex codes</string>
|
|
||||||
<string name="release_65">Allow showing the photos and videos on a map, if there are available map coordinates</string>
|
|
||||||
<string name="release_62">Show some additional Exif data at photo properties</string>
|
|
||||||
<string name="release_58">
|
|
||||||
Allow zooming pngs and gifs\n
|
|
||||||
Allow creating new folders at Copy/Move or Save as dialog destinations
|
|
||||||
</string>
|
|
||||||
<string name="release_54">Added an option to loop videos automatically</string>
|
|
||||||
<string name="release_52">
|
|
||||||
加入更多顏色的自訂選項\n
|
|
||||||
Your settings have been cleared, please reset them</string>
|
|
||||||
<string name="release_51">允許用捏放手勢變更照片清單欄數</string>
|
|
||||||
<string name="release_50">加入只顯示圖片或影片的選項</string>
|
|
||||||
<string name="release_49">加入一個「選取全部」按鈕</string>
|
|
||||||
<string name="release_47">
|
|
||||||
加入一個圖片改變尺寸大小器至圖片編輯器中\n
|
|
||||||
允許列出所有的資料夾中的圖片跟影片
|
|
||||||
</string>
|
|
||||||
<string name="release_46">允許將資料夾釘選到頂端</string>
|
|
||||||
|
|
||||||
<!-- Strings displayed only on Google Playstore. Optional, but good to have -->
|
<!-- Strings displayed only on Google Playstore. Optional, but good to have -->
|
||||||
<!-- Short description has to have less than 80 chars -->
|
<!-- Short description has to have less than 80 chars -->
|
||||||
<string name="app_short_description">一個沒有廣告,用來觀看照片及影片的藝廊。</string>
|
<string name="app_short_description">一個沒有廣告,用來觀看照片及影片的藝廊。</string>
|
||||||
<string name="app_long_description">
|
<string name="app_long_description">
|
||||||
一個觀看照片跟影片的簡單實用工具。項目可以根據日期、大小、名稱來進行遞增及遞減排序,照片可以縮放。媒體檔案們根據螢幕的大小呈列在多個方格中,您可以使用捏放手勢來調整一列中的方格數量。媒體檔案可以被重新命名、分享、刪除、複製以及移動。照片亦可被裁切、旋轉或是直接在應用軟體中設定為桌布。
|
一個觀看照片跟影片的簡單實用工具。項目可以根據日期、大小、名稱來進行遞增及遞減排序,照片可以縮放。媒體檔案們根據螢幕的大小呈列在多個方格中,您可以使用捏放手勢來調整一列中的方格數量。媒體檔案可以被重新命名、分享、刪除、複製以及移動。照片亦可被裁切、旋轉或是直接在應用軟體中設定為桌布。
|
||||||
|
|
||||||
|
|
||||||
藝廊亦提供讓第三方軟體能夠用來預覽圖片/影片、添加附件於電子郵件客戶端軟體中等功能。非常適合日常使用。
|
藝廊亦提供讓第三方軟體能夠用來預覽圖片/影片、添加附件於電子郵件客戶端軟體中等功能。非常適合日常使用。
|
||||||
|
|
||||||
應用軟體不包含廣告與非必要的權限。它是完全開放原始碼的,並內建自訂顔色之使用者介面主題。
|
應用軟體不包含廣告與非必要的權限。它是完全開放原始碼的,並內建自訂顔色之使用者介面主題。
|
||||||
|
|
44
app/src/main/res/values/donottranslate.xml
Normal file
44
app/src/main/res/values/donottranslate.xml
Normal file
|
@ -0,0 +1,44 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<resources>
|
||||||
|
|
||||||
|
<!-- Release notes -->
|
||||||
|
<string name="release_84">Added an option to use max brightness at viewing fullscreen media</string>
|
||||||
|
<string name="release_83">
|
||||||
|
Fixed some sharing and editor issues\n
|
||||||
|
Sorry for the frequent updates lately, they should be stopped now.
|
||||||
|
</string>
|
||||||
|
<string name="release_77">
|
||||||
|
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
|
||||||
|
</string>
|
||||||
|
<string name="release_76">Added an option to toggle gif animation at thumbnails</string>
|
||||||
|
<string name="release_74">Allow setting different sorting per folder</string>
|
||||||
|
<string name="release_72">
|
||||||
|
Implement proper folder hiding via .nomedia file\n
|
||||||
|
Allow managing excluded folders in Settings
|
||||||
|
</string>
|
||||||
|
<string name="release_70">Added menu items for easy image rotating in fullscreen view</string>
|
||||||
|
<string name="release_69">Added menu buttons for changing the column count</string>
|
||||||
|
<string name="release_66">Allow picking colors by hex codes</string>
|
||||||
|
<string name="release_65">Allow showing the photos and videos on a map, if there are available map coordinates</string>
|
||||||
|
<string name="release_62">Show some additional Exif data at photo properties</string>
|
||||||
|
<string name="release_58">
|
||||||
|
Allow zooming pngs and gifs\n
|
||||||
|
Allow creating new folders at Copy/Move or Save as dialog destinations
|
||||||
|
</string>
|
||||||
|
<string name="release_54">Added an option to loop videos automatically</string>
|
||||||
|
<string name="release_52">
|
||||||
|
Added more color customization options\n
|
||||||
|
Your settings have been cleared, please reset them</string>
|
||||||
|
<string name="release_51">Allow changing the column count with pinch gestures</string>
|
||||||
|
<string name="release_50">Added an option to display images or videos only</string>
|
||||||
|
<string name="release_49">Added a Select all button at selecting media and folders</string>
|
||||||
|
<string name="release_47">
|
||||||
|
Added an image resizer to the editor\n
|
||||||
|
Allow displaying images and videos from all folders together
|
||||||
|
</string>
|
||||||
|
<string name="release_46">Allow pinning folders at the top</string>
|
||||||
|
|
||||||
|
</resources>
|
|
@ -82,52 +82,12 @@
|
||||||
<string name="animate_gifs">Animate gifs at thumbnails</string>
|
<string name="animate_gifs">Animate gifs at thumbnails</string>
|
||||||
<string name="max_brightness">Maximum brightness when viewing media</string>
|
<string name="max_brightness">Maximum brightness when viewing media</string>
|
||||||
|
|
||||||
<!-- Release notes -->
|
|
||||||
<string name="release_83">
|
|
||||||
Fixed some sharing and editor issues\n
|
|
||||||
Sorry for the frequent updates lately, they should be stopped now.
|
|
||||||
</string>
|
|
||||||
<string name="release_77">
|
|
||||||
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
|
|
||||||
</string>
|
|
||||||
<string name="release_76">Added an option to toggle gif animation at thumbnails</string>
|
|
||||||
<string name="release_74">Allow setting different sorting per folder</string>
|
|
||||||
<string name="release_72">
|
|
||||||
Implement proper folder hiding via .nomedia file\n
|
|
||||||
Allow managing excluded folders in Settings
|
|
||||||
</string>
|
|
||||||
<string name="release_70">Added menu items for easy image rotating in fullscreen view</string>
|
|
||||||
<string name="release_69">Added menu buttons for changing the column count</string>
|
|
||||||
<string name="release_66">Allow picking colors by hex codes</string>
|
|
||||||
<string name="release_65">Allow showing the photos and videos on a map, if there are available map coordinates</string>
|
|
||||||
<string name="release_62">Show some additional Exif data at photo properties</string>
|
|
||||||
<string name="release_58">
|
|
||||||
Allow zooming pngs and gifs\n
|
|
||||||
Allow creating new folders at Copy/Move or Save as dialog destinations
|
|
||||||
</string>
|
|
||||||
<string name="release_54">Added an option to loop videos automatically</string>
|
|
||||||
<string name="release_52">
|
|
||||||
Added more color customization options\n
|
|
||||||
Your settings have been cleared, please reset them</string>
|
|
||||||
<string name="release_51">Allow changing the column count with pinch gestures</string>
|
|
||||||
<string name="release_50">Added an option to display images or videos only</string>
|
|
||||||
<string name="release_49">Added a Select all button at selecting media and folders</string>
|
|
||||||
<string name="release_47">
|
|
||||||
Added an image resizer to the editor\n
|
|
||||||
Allow displaying images and videos from all folders together
|
|
||||||
</string>
|
|
||||||
<string name="release_46">Allow pinning folders at the top</string>
|
|
||||||
|
|
||||||
<!-- Strings displayed only on Google Playstore. Optional, but good to have -->
|
<!-- Strings displayed only on Google Playstore. Optional, but good to have -->
|
||||||
<!-- Short description has to have less than 80 chars -->
|
<!-- Short description has to have less than 80 chars -->
|
||||||
<string name="app_short_description">A gallery for viewing photos and videos without ads.</string>
|
<string name="app_short_description">A gallery for viewing photos and videos without ads.</string>
|
||||||
<string name="app_long_description">
|
<string name="app_long_description">
|
||||||
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.
|
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.
|
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.
|
Contains no ads or unnecessary permissions. It is fully opensource, provides customizable colors.
|
||||||
|
|
Loading…
Reference in a new issue