mirror of
https://github.com/SimpleMobileTools/Simple-Camera.git
synced 2025-06-27 09:02:59 +02:00
Merge pull request #423 from fatihergin/feature/adding-location-data-to-medias
Feature/adding location data to medias
This commit is contained in:
@ -63,7 +63,7 @@ android {
|
||||
}
|
||||
|
||||
dependencies {
|
||||
implementation 'com.github.SimpleMobileTools:Simple-Commons:4c83ec8740'
|
||||
implementation 'com.github.SimpleMobileTools:Simple-Commons:a113438b6b'
|
||||
implementation 'androidx.documentfile:documentfile:1.0.1'
|
||||
implementation "androidx.exifinterface:exifinterface:1.3.5"
|
||||
implementation "androidx.lifecycle:lifecycle-runtime-ktx:2.5.1"
|
||||
|
@ -23,6 +23,9 @@
|
||||
<uses-permission android:name="android.permission.READ_MEDIA_IMAGES" />
|
||||
<uses-permission android:name="android.permission.READ_MEDIA_VIDEO" />
|
||||
|
||||
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
|
||||
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
|
||||
|
||||
<uses-permission
|
||||
android:name="android.permission.WRITE_EXTERNAL_STORAGE"
|
||||
android:maxSdkVersion="32" />
|
||||
|
@ -4,15 +4,12 @@ import android.annotation.SuppressLint
|
||||
import android.os.Bundle
|
||||
import com.simplemobiletools.camera.BuildConfig
|
||||
import com.simplemobiletools.camera.R
|
||||
import com.simplemobiletools.camera.extensions.checkLocationPermission
|
||||
import com.simplemobiletools.camera.extensions.config
|
||||
import com.simplemobiletools.camera.models.CaptureMode
|
||||
import com.simplemobiletools.commons.dialogs.FeatureLockedDialog
|
||||
import com.simplemobiletools.commons.dialogs.FilePickerDialog
|
||||
import com.simplemobiletools.commons.dialogs.RadioGroupDialog
|
||||
import com.simplemobiletools.commons.dialogs.*
|
||||
import com.simplemobiletools.commons.extensions.*
|
||||
import com.simplemobiletools.commons.helpers.LICENSE_GLIDE
|
||||
import com.simplemobiletools.commons.helpers.NavigationIcon
|
||||
import com.simplemobiletools.commons.helpers.isTiramisuPlus
|
||||
import com.simplemobiletools.commons.helpers.*
|
||||
import com.simplemobiletools.commons.models.FAQItem
|
||||
import com.simplemobiletools.commons.models.RadioItem
|
||||
import kotlinx.android.synthetic.main.activity_settings.*
|
||||
@ -43,6 +40,7 @@ class SettingsActivity : SimpleActivity() {
|
||||
setupVolumeButtonsAsShutter()
|
||||
setupFlipPhotos()
|
||||
setupSavePhotoMetadata()
|
||||
setupSavePhotoVideoLocation()
|
||||
setupSavePhotosFolder()
|
||||
setupPhotoQuality()
|
||||
setupCaptureMode()
|
||||
@ -165,6 +163,34 @@ class SettingsActivity : SimpleActivity() {
|
||||
}
|
||||
}
|
||||
|
||||
private fun setupSavePhotoVideoLocation() {
|
||||
settings_save_photo_video_location.isChecked = config.savePhotoVideoLocation
|
||||
settings_save_photo_video_location_holder.setOnClickListener {
|
||||
val willEnableSavePhotoVideoLocation = !config.savePhotoVideoLocation
|
||||
|
||||
if (willEnableSavePhotoVideoLocation) {
|
||||
if (checkLocationPermission()) {
|
||||
updateSavePhotoVideoLocationConfig(true)
|
||||
} else {
|
||||
handlePermission(PERMISSION_ACCESS_FINE_LOCATION) { _ ->
|
||||
if (checkLocationPermission()) {
|
||||
updateSavePhotoVideoLocationConfig(true)
|
||||
} else {
|
||||
OpenDeviceSettingsDialog(activity = this@SettingsActivity, message = getString(R.string.allow_location_permission))
|
||||
}
|
||||
}
|
||||
}
|
||||
} else {
|
||||
updateSavePhotoVideoLocationConfig(false)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
private fun updateSavePhotoVideoLocationConfig(enabled: Boolean) {
|
||||
settings_save_photo_video_location.isChecked = enabled
|
||||
config.savePhotoVideoLocation = enabled
|
||||
}
|
||||
|
||||
private fun setupSavePhotosFolder() {
|
||||
settings_save_photos_label.text = addLockedLabelIfNeeded(R.string.save_photos)
|
||||
settings_save_photos.text = getLastPart(config.savePhotosFolder)
|
||||
|
@ -2,9 +2,13 @@ package com.simplemobiletools.camera.extensions
|
||||
|
||||
import android.content.Context
|
||||
import com.simplemobiletools.camera.helpers.Config
|
||||
import com.simplemobiletools.commons.extensions.hasPermission
|
||||
import com.simplemobiletools.commons.helpers.PERMISSION_ACCESS_COARSE_LOCATION
|
||||
import com.simplemobiletools.commons.helpers.PERMISSION_ACCESS_FINE_LOCATION
|
||||
import java.io.File
|
||||
import java.text.SimpleDateFormat
|
||||
import java.util.*
|
||||
import java.util.Date
|
||||
import java.util.Locale
|
||||
|
||||
val Context.config: Config get() = Config.newInstance(applicationContext)
|
||||
|
||||
@ -41,3 +45,7 @@ fun getRandomMediaName(isPhoto: Boolean): String {
|
||||
"VID_$timestamp"
|
||||
}
|
||||
}
|
||||
|
||||
fun Context.checkLocationPermission(): Boolean {
|
||||
return hasPermission(PERMISSION_ACCESS_FINE_LOCATION) || hasPermission(PERMISSION_ACCESS_COARSE_LOCATION)
|
||||
}
|
||||
|
@ -68,6 +68,10 @@ class Config(context: Context) : BaseConfig(context) {
|
||||
get() = prefs.getBoolean(SAVE_PHOTO_METADATA, true)
|
||||
set(savePhotoMetadata) = prefs.edit().putBoolean(SAVE_PHOTO_METADATA, savePhotoMetadata).apply()
|
||||
|
||||
var savePhotoVideoLocation: Boolean
|
||||
get() = prefs.getBoolean(SAVE_PHOTO_VIDEO_LOCATION, false)
|
||||
set(savePhotoVideoLocation) = prefs.edit().putBoolean(SAVE_PHOTO_VIDEO_LOCATION, savePhotoVideoLocation).apply()
|
||||
|
||||
var photoQuality: Int
|
||||
get() = prefs.getInt(PHOTO_QUALITY, 80)
|
||||
set(photoQuality) = prefs.edit().putInt(PHOTO_QUALITY, photoQuality).apply()
|
||||
|
@ -18,6 +18,7 @@ const val BACK_VIDEO_RESOLUTION_INDEX = "back_video_resolution_index_3"
|
||||
const val FRONT_PHOTO_RESOLUTION_INDEX = "front_photo_resolution_index_3"
|
||||
const val FRONT_VIDEO_RESOLUTION_INDEX = "front_video_resolution_index_3"
|
||||
const val SAVE_PHOTO_METADATA = "save_photo_metadata"
|
||||
const val SAVE_PHOTO_VIDEO_LOCATION = "save_photo_video_location"
|
||||
const val PHOTO_QUALITY = "photo_quality"
|
||||
const val CAPTURE_MODE = "capture_mode"
|
||||
const val TIMER_MODE = "timer_mode"
|
||||
|
@ -0,0 +1,63 @@
|
||||
package com.simplemobiletools.camera.helpers
|
||||
|
||||
import android.Manifest
|
||||
import android.location.Location
|
||||
import android.location.LocationListener
|
||||
import android.location.LocationManager
|
||||
import androidx.annotation.RequiresPermission
|
||||
import com.simplemobiletools.camera.extensions.checkLocationPermission
|
||||
import com.simplemobiletools.commons.activities.BaseSimpleActivity
|
||||
|
||||
class SimpleLocationManager(private val activity: BaseSimpleActivity) {
|
||||
|
||||
companion object {
|
||||
private const val LOCATION_UPDATE_MIN_TIME_INTERVAL_MS = 5000L
|
||||
private const val LOCATION_UPDATE_MIN_DISTANCE_M = 10F
|
||||
}
|
||||
|
||||
private val locationManager = activity.getSystemService(LocationManager::class.java)!!
|
||||
private val locationListener = LocationListener { location ->
|
||||
this@SimpleLocationManager.location = location
|
||||
}
|
||||
|
||||
private var location: Location? = null
|
||||
|
||||
fun getLocation(): Location? {
|
||||
if (location == null) {
|
||||
location = getLastKnownLocation()
|
||||
}
|
||||
|
||||
return location
|
||||
}
|
||||
|
||||
private fun getLastKnownLocation(): Location? {
|
||||
return if (activity.checkLocationPermission()) {
|
||||
var accurateLocation: Location? = null
|
||||
for (provider in locationManager.allProviders) {
|
||||
val location = locationManager.getLastKnownLocation(provider) ?: continue
|
||||
if (accurateLocation == null || location.accuracy < accurateLocation.accuracy) {
|
||||
accurateLocation = location
|
||||
}
|
||||
}
|
||||
accurateLocation
|
||||
} else {
|
||||
null
|
||||
}
|
||||
}
|
||||
|
||||
@RequiresPermission(anyOf = [Manifest.permission.ACCESS_FINE_LOCATION, Manifest.permission.ACCESS_COARSE_LOCATION])
|
||||
fun requestLocationUpdates() {
|
||||
locationManager.allProviders.forEach { provider ->
|
||||
locationManager.requestLocationUpdates(
|
||||
provider,
|
||||
LOCATION_UPDATE_MIN_TIME_INTERVAL_MS,
|
||||
LOCATION_UPDATE_MIN_DISTANCE_M,
|
||||
locationListener
|
||||
)
|
||||
}
|
||||
}
|
||||
|
||||
fun dropLocationUpdates() {
|
||||
locationManager.removeUpdates(locationListener)
|
||||
}
|
||||
}
|
@ -10,8 +10,6 @@ import android.util.Rational
|
||||
import android.util.Size
|
||||
import android.view.*
|
||||
import android.view.GestureDetector.SimpleOnGestureListener
|
||||
import android.widget.Toast
|
||||
import androidx.appcompat.app.AppCompatActivity
|
||||
import androidx.camera.core.*
|
||||
import androidx.camera.core.ImageCapture.*
|
||||
import androidx.camera.lifecycle.ProcessCameraProvider
|
||||
@ -34,11 +32,13 @@ import com.simplemobiletools.camera.models.CaptureMode
|
||||
import com.simplemobiletools.camera.models.MediaOutput
|
||||
import com.simplemobiletools.camera.models.MySize
|
||||
import com.simplemobiletools.camera.models.ResolutionOption
|
||||
import com.simplemobiletools.commons.activities.BaseSimpleActivity
|
||||
import com.simplemobiletools.commons.extensions.toast
|
||||
import com.simplemobiletools.commons.helpers.PERMISSION_ACCESS_FINE_LOCATION
|
||||
import com.simplemobiletools.commons.helpers.ensureBackgroundThread
|
||||
|
||||
class CameraXPreview(
|
||||
private val activity: AppCompatActivity,
|
||||
private val activity: BaseSimpleActivity,
|
||||
private val previewView: PreviewView,
|
||||
private val mediaSoundHelper: MediaSoundHelper,
|
||||
private val mediaOutputHelper: MediaOutputHelper,
|
||||
@ -122,6 +122,7 @@ class CameraXPreview(
|
||||
private var isPhotoCapture = initInPhotoMode
|
||||
private var lastRotation = 0
|
||||
private var lastCameraStartTime = 0L
|
||||
private var simpleLocationManager: SimpleLocationManager? = null
|
||||
|
||||
init {
|
||||
bindToLifeCycle()
|
||||
@ -351,6 +352,37 @@ class CameraXPreview(
|
||||
}
|
||||
}
|
||||
|
||||
override fun onResume(owner: LifecycleOwner) {
|
||||
super.onResume(owner)
|
||||
if (config.savePhotoVideoLocation) {
|
||||
if (simpleLocationManager == null) {
|
||||
simpleLocationManager = SimpleLocationManager(activity)
|
||||
}
|
||||
requestLocationUpdates()
|
||||
}
|
||||
}
|
||||
|
||||
private fun requestLocationUpdates() {
|
||||
activity.apply {
|
||||
if (checkLocationPermission()) {
|
||||
simpleLocationManager?.requestLocationUpdates()
|
||||
} else {
|
||||
handlePermission(PERMISSION_ACCESS_FINE_LOCATION) { _ ->
|
||||
if (checkLocationPermission()) {
|
||||
simpleLocationManager?.requestLocationUpdates()
|
||||
} else {
|
||||
config.savePhotoVideoLocation = false
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
override fun onPause(owner: LifecycleOwner) {
|
||||
super.onPause(owner)
|
||||
simpleLocationManager?.dropLocationUpdates()
|
||||
}
|
||||
|
||||
override fun onStop(owner: LifecycleOwner) {
|
||||
orientationEventListener.disable()
|
||||
}
|
||||
@ -473,6 +505,9 @@ class CameraXPreview(
|
||||
|
||||
val metadata = Metadata().apply {
|
||||
isReversedHorizontal = isFrontCameraInUse() && config.flipPhotos
|
||||
if (config.savePhotoVideoLocation) {
|
||||
location = simpleLocationManager?.getLocation()
|
||||
}
|
||||
}
|
||||
|
||||
val mediaOutput = mediaOutputHelper.getImageMediaOutput()
|
||||
@ -572,16 +607,26 @@ class CameraXPreview(
|
||||
|
||||
val recording = when (val mediaOutput = mediaOutputHelper.getVideoMediaOutput()) {
|
||||
is MediaOutput.FileDescriptorMediaOutput -> {
|
||||
FileDescriptorOutputOptions.Builder(mediaOutput.fileDescriptor).build()
|
||||
.let { videoCapture!!.output.prepareRecording(activity, it) }
|
||||
FileDescriptorOutputOptions.Builder(mediaOutput.fileDescriptor).apply {
|
||||
if (config.savePhotoVideoLocation) {
|
||||
setLocation(simpleLocationManager?.getLocation())
|
||||
}
|
||||
}.build().let { videoCapture!!.output.prepareRecording(activity, it) }
|
||||
}
|
||||
is MediaOutput.FileMediaOutput -> {
|
||||
FileOutputOptions.Builder(mediaOutput.file).build()
|
||||
.let { videoCapture!!.output.prepareRecording(activity, it) }
|
||||
FileOutputOptions.Builder(mediaOutput.file).apply {
|
||||
if (config.savePhotoVideoLocation) {
|
||||
setLocation(simpleLocationManager?.getLocation())
|
||||
}
|
||||
}.build().let { videoCapture!!.output.prepareRecording(activity, it) }
|
||||
}
|
||||
is MediaOutput.MediaStoreOutput -> {
|
||||
MediaStoreOutputOptions.Builder(contentResolver, mediaOutput.contentUri).setContentValues(mediaOutput.contentValues).build()
|
||||
.let { videoCapture!!.output.prepareRecording(activity, it) }
|
||||
MediaStoreOutputOptions.Builder(contentResolver, mediaOutput.contentUri).apply {
|
||||
setContentValues(mediaOutput.contentValues)
|
||||
if (config.savePhotoVideoLocation) {
|
||||
setLocation(simpleLocationManager?.getLocation())
|
||||
}
|
||||
}.build().let { videoCapture!!.output.prepareRecording(activity, it) }
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -204,6 +204,21 @@
|
||||
|
||||
</RelativeLayout>
|
||||
|
||||
<RelativeLayout
|
||||
android:id="@+id/settings_save_photo_video_location_holder"
|
||||
style="@style/SettingsHolderCheckboxStyle"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content">
|
||||
|
||||
<com.simplemobiletools.commons.views.MyAppCompatCheckbox
|
||||
android:id="@+id/settings_save_photo_video_location"
|
||||
style="@style/SettingsCheckboxStyle"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="@string/save_photo_video_location" />
|
||||
|
||||
</RelativeLayout>
|
||||
|
||||
<RelativeLayout
|
||||
android:id="@+id/settings_flip_photos_holder"
|
||||
style="@style/SettingsHolderCheckboxStyle"
|
||||
|
@ -47,12 +47,12 @@
|
||||
<string name="keep_settings_visible">إبقاء أزرار الإعداد مرئيا</string>
|
||||
<string name="always_open_back_camera">افتح التطبيق دائمًا بالكاميرا الخلفية</string>
|
||||
<string name="save_photo_metadata">حفظ بيانات الصورة الوصفية</string>
|
||||
<string name="save_photo_location">حفظ موقع الصورة</string>
|
||||
<string name="save_photo_video_location">Save photo and video location</string>
|
||||
<string name="photo_compression_quality">جودة ضغط الصور</string>
|
||||
<string name="shutter">الغالق</string>
|
||||
<string name="allow_location_permission">You must allow Camera accessing location, else it cannot complete this action.</string>
|
||||
<!--
|
||||
Haven't found some strings? There's more at
|
||||
https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res
|
||||
-->
|
||||
</resources>
|
||||
</resources>
|
||||
|
@ -50,10 +50,10 @@
|
||||
<string name="keep_settings_visible">Parametrlər düyməsini göstər</string>
|
||||
<string name="always_open_back_camera">Tətbiqi həmişə Arxa kamerada başlat</string>
|
||||
<string name="save_photo_metadata">Şəklin haqqında əlavələri saxla</string>
|
||||
<string name="save_photo_location">Save photo location</string>
|
||||
<string name="save_photo_video_location">Save photo and video location</string>
|
||||
<string name="photo_compression_quality">Şəkil sıxışdırma keyfiyyəti</string>
|
||||
<string name="shutter">Çəkən</string>
|
||||
<string name="allow_location_permission">You must allow Camera accessing location, else it cannot complete this action.</string>
|
||||
<!--
|
||||
Haven't found some strings? There's more at
|
||||
https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res
|
||||
|
@ -47,10 +47,10 @@
|
||||
<string name="keep_settings_visible">Трымайце кнопкі налад бачнымі</string>
|
||||
<string name="always_open_back_camera">Заўсёды адкрывайце праграму з задняй камерай</string>
|
||||
<string name="save_photo_metadata">Захоўваць метаданые EXIF</string>
|
||||
<string name="save_photo_location">Save photo location</string>
|
||||
<string name="save_photo_video_location">Save photo and video location</string>
|
||||
<string name="photo_compression_quality">Якасць сціску фота</string>
|
||||
<string name="shutter">Затвор</string>
|
||||
<string name="allow_location_permission">You must allow Camera accessing location, else it cannot complete this action.</string>
|
||||
<!--
|
||||
Haven't found some strings? There's more at
|
||||
https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res
|
||||
|
@ -47,10 +47,10 @@
|
||||
<string name="keep_settings_visible">Бутоните за настройки остават видими</string>
|
||||
<string name="always_open_back_camera">Приложението винаги се отваря със Задната камера</string>
|
||||
<string name="save_photo_metadata">Запазване на снимкови exif метаданни</string>
|
||||
<string name="save_photo_location">Save photo location</string>
|
||||
<string name="save_photo_video_location">Save photo and video location</string>
|
||||
<string name="photo_compression_quality">Ниво на компресия на снимките</string>
|
||||
<string name="shutter">Затвор</string>
|
||||
<string name="allow_location_permission">You must allow Camera accessing location, else it cannot complete this action.</string>
|
||||
<!--
|
||||
Haven't found some strings? There's more at
|
||||
https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res
|
||||
|
@ -47,12 +47,12 @@
|
||||
<string name="keep_settings_visible">Mantén els botons de configuració visibles</string>
|
||||
<string name="always_open_back_camera">Obre sempre l\'aplicació amb la càmera del darrere</string>
|
||||
<string name="save_photo_metadata">Desa les metadades Exif de la foto</string>
|
||||
<string name="save_photo_location">Desa la ubicació de la foto</string>
|
||||
<string name="save_photo_video_location">Save photo and video location</string>
|
||||
<string name="photo_compression_quality">Qualitat de compressió fotogràfica</string>
|
||||
<string name="shutter">Obturador</string>
|
||||
<string name="allow_location_permission">You must allow Camera accessing location, else it cannot complete this action.</string>
|
||||
<!--
|
||||
Haven't found some strings? There's more at
|
||||
https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res
|
||||
-->
|
||||
</resources>
|
||||
</resources>
|
||||
|
@ -47,12 +47,12 @@
|
||||
<string name="keep_settings_visible">Neskrývat tlačítka nastavení</string>
|
||||
<string name="always_open_back_camera">Aplikaci vždy otevřít s aktivním zadním fotoaparátem</string>
|
||||
<string name="save_photo_metadata">Ukládat exif metadata fotografií</string>
|
||||
<string name="save_photo_location">Save photo location</string>
|
||||
<string name="save_photo_video_location">Save photo and video location</string>
|
||||
<string name="photo_compression_quality">Úroveň komprese fotografií</string>
|
||||
<string name="shutter">Spoušť</string>
|
||||
<string name="allow_location_permission">You must allow Camera accessing location, else it cannot complete this action.</string>
|
||||
<!--
|
||||
Haven't found some strings? There's more at
|
||||
https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res
|
||||
-->
|
||||
</resources>
|
||||
</resources>
|
||||
|
@ -47,12 +47,12 @@
|
||||
<string name="keep_settings_visible">Cadw\'r botymau gosodiadau mewn golwg</string>
|
||||
<string name="always_open_back_camera">Agor yr ap gyda\'r camera cefn bob tro</string>
|
||||
<string name="save_photo_metadata">Cadw metaddata lluniau</string>
|
||||
<string name="save_photo_location">Save photo location</string>
|
||||
<string name="save_photo_video_location">Save photo and video location</string>
|
||||
<string name="photo_compression_quality">Ansawdd cywasgiad lluniau</string>
|
||||
<string name="shutter">Caead</string>
|
||||
<string name="allow_location_permission">You must allow Camera accessing location, else it cannot complete this action.</string>
|
||||
<!--
|
||||
Haven't found some strings? There's more at
|
||||
https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res
|
||||
-->
|
||||
</resources>
|
||||
</resources>
|
||||
|
@ -47,10 +47,10 @@
|
||||
<string name="keep_settings_visible">Lad indstillingsknapperne være synlige</string>
|
||||
<string name="always_open_back_camera">Åbn altid appen med kameraet på bagsiden</string>
|
||||
<string name="save_photo_metadata">Gem Exif-metadata i fotos</string>
|
||||
<string name="save_photo_location">Save photo location</string>
|
||||
<string name="save_photo_video_location">Save photo and video location</string>
|
||||
<string name="photo_compression_quality">Fotokomprimeringskvalitet</string>
|
||||
<string name="shutter">Lukker</string>
|
||||
<string name="allow_location_permission">You must allow Camera accessing location, else it cannot complete this action.</string>
|
||||
<!--
|
||||
Haven't found some strings? There's more at
|
||||
https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res
|
||||
|
@ -47,12 +47,12 @@
|
||||
<string name="keep_settings_visible">Taste für Einstellungen immer sichtbar</string>
|
||||
<string name="always_open_back_camera">Anwendung immer mit der Rückkamera starten</string>
|
||||
<string name="save_photo_metadata">Exif-Metadaten in Fotos speichern</string>
|
||||
<string name="save_photo_location">Fotostandort speichern</string>
|
||||
<string name="save_photo_video_location">Save photo and video location</string>
|
||||
<string name="photo_compression_quality">Fotokomprimierungsqualität</string>
|
||||
<string name="shutter">Verschluss</string>
|
||||
<string name="allow_location_permission">You must allow Camera accessing location, else it cannot complete this action.</string>
|
||||
<!--
|
||||
Haven't found some strings? There's more at
|
||||
https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res
|
||||
-->
|
||||
</resources>
|
||||
</resources>
|
||||
|
@ -50,10 +50,10 @@
|
||||
<string name="keep_settings_visible">Διατήρηση εμφανών κουμπιών ρύθμισης</string>
|
||||
<string name="always_open_back_camera">Πάντα άνοιγμα της εφαρμογής με την πίσω κάμερα</string>
|
||||
<string name="save_photo_metadata">Αποθήκευση μεταδεδομένων exif φωτογραφίας</string>
|
||||
<string name="save_photo_location">Αποθήκευση τοποθεσίας φωτογραφίας</string>
|
||||
<string name="save_photo_video_location">Save photo and video location</string>
|
||||
<string name="photo_compression_quality">Ποιότητα συμπίεσης φωτογραφιών</string>
|
||||
<string name="shutter">Κλείστρο</string>
|
||||
<string name="allow_location_permission">You must allow Camera accessing location, else it cannot complete this action.</string>
|
||||
<!--
|
||||
Haven't found some strings? There's more at
|
||||
https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res
|
||||
|
@ -47,10 +47,10 @@
|
||||
<string name="keep_settings_visible">Keep the setting buttons visible</string>
|
||||
<string name="always_open_back_camera">Always open the app with the Back camera</string>
|
||||
<string name="save_photo_metadata">Save photo exif metadata</string>
|
||||
<string name="save_photo_location">Save photo location</string>
|
||||
<string name="save_photo_video_location">Save photo and video location</string>
|
||||
<string name="photo_compression_quality">Photo compression quality</string>
|
||||
<string name="shutter">Shutter</string>
|
||||
<string name="allow_location_permission">You must allow Camera accessing location, else it cannot complete this action.</string>
|
||||
<!--
|
||||
Haven't found some strings? There's more at
|
||||
https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res
|
||||
|
@ -47,12 +47,12 @@
|
||||
<string name="keep_settings_visible">Mantenga los botones de configuración visibles</string>
|
||||
<string name="always_open_back_camera">Abra siempre la aplicación con la cámara trasera</string>
|
||||
<string name="save_photo_metadata">Guardar los metadatos exif de las fotos</string>
|
||||
<string name="save_photo_location">Save photo location</string>
|
||||
<string name="save_photo_video_location">Save photo and video location</string>
|
||||
<string name="photo_compression_quality">Calidad de compresión de la fotográfica</string>
|
||||
<string name="shutter">Obturador</string>
|
||||
<string name="allow_location_permission">You must allow Camera accessing location, else it cannot complete this action.</string>
|
||||
<!--
|
||||
Haven't found some strings? There's more at
|
||||
https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res
|
||||
-->
|
||||
</resources>
|
||||
</resources>
|
||||
|
@ -47,12 +47,12 @@
|
||||
<string name="keep_settings_visible">Hoia seadistusnupud nähtaval</string>
|
||||
<string name="always_open_back_camera">Rakenduse käivitamisel kasuta esmalt tagakaamerat</string>
|
||||
<string name="save_photo_metadata">Salvesta fotofaili EXIF-metateave</string>
|
||||
<string name="save_photo_location">Foto salvestamise asukoht</string>
|
||||
<string name="save_photo_video_location">Save photo and video location</string>
|
||||
<string name="photo_compression_quality">Fotode pakkimise tase</string>
|
||||
<string name="shutter">Katik</string>
|
||||
<string name="allow_location_permission">You must allow Camera accessing location, else it cannot complete this action.</string>
|
||||
<!--
|
||||
Haven't found some strings? There's more at
|
||||
https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res
|
||||
-->
|
||||
</resources>
|
||||
</resources>
|
||||
|
@ -47,12 +47,12 @@
|
||||
<string name="keep_settings_visible">Pidä asetuspainikkeet näkyvissä</string>
|
||||
<string name="always_open_back_camera">Avaa sovellus aina takakamera aktiivisena</string>
|
||||
<string name="save_photo_metadata">Tallenna valokuvien Exif-metatiedot</string>
|
||||
<string name="save_photo_location">Save photo location</string>
|
||||
<string name="save_photo_video_location">Save photo and video location</string>
|
||||
<string name="photo_compression_quality">Valokuvien pakkauslaatu</string>
|
||||
<string name="shutter">Suljin</string>
|
||||
<string name="allow_location_permission">You must allow Camera accessing location, else it cannot complete this action.</string>
|
||||
<!--
|
||||
Haven't found some strings? There's more at
|
||||
https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res
|
||||
-->
|
||||
</resources>
|
||||
</resources>
|
||||
|
@ -47,12 +47,12 @@
|
||||
<string name="keep_settings_visible">Garder visible les boutons de réglage</string>
|
||||
<string name="always_open_back_camera">Toujours ouvrir l\'application avec l\'appareil photo arrière</string>
|
||||
<string name="save_photo_metadata">Enregistrer les métadonnées Exif dans les photos</string>
|
||||
<string name="save_photo_location">Enregistrer l’emplacement de la photo</string>
|
||||
<string name="save_photo_video_location">Save photo and video location</string>
|
||||
<string name="photo_compression_quality">Qualité des photos</string>
|
||||
<string name="shutter">Obturateur</string>
|
||||
<string name="allow_location_permission">You must allow Camera accessing location, else it cannot complete this action.</string>
|
||||
<!--
|
||||
Haven't found some strings? There's more at
|
||||
https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res
|
||||
-->
|
||||
</resources>
|
||||
</resources>
|
||||
|
@ -47,12 +47,12 @@
|
||||
<string name="keep_settings_visible">Manter visibles os botóns dos axustes</string>
|
||||
<string name="always_open_back_camera">Abrir sempre o aplicativo coa cámara traseira</string>
|
||||
<string name="save_photo_metadata">Gardar metadatos EXIF da foto</string>
|
||||
<string name="save_photo_location">Save photo location</string>
|
||||
<string name="save_photo_video_location">Save photo and video location</string>
|
||||
<string name="photo_compression_quality">Calidade da compresión da foto</string>
|
||||
<string name="shutter">Obturador</string>
|
||||
<string name="allow_location_permission">You must allow Camera accessing location, else it cannot complete this action.</string>
|
||||
<!--
|
||||
Haven't found some strings? There's more at
|
||||
https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res
|
||||
-->
|
||||
</resources>
|
||||
</resources>
|
||||
|
@ -47,12 +47,12 @@
|
||||
<string name="keep_settings_visible">Ostavi gumbe postavki vidljivima</string>
|
||||
<string name="always_open_back_camera">Otvori aplikaciju uvijek pomoću stražnje kamere</string>
|
||||
<string name="save_photo_metadata">Spremi exif metapodatke fotografije</string>
|
||||
<string name="save_photo_location">Save photo location</string>
|
||||
<string name="save_photo_video_location">Save photo and video location</string>
|
||||
<string name="photo_compression_quality">Kvaliteta kompresije fotografije</string>
|
||||
<string name="shutter">Otvor objektiva</string>
|
||||
<string name="allow_location_permission">You must allow Camera accessing location, else it cannot complete this action.</string>
|
||||
<!--
|
||||
Haven't found some strings? There's more at
|
||||
https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res
|
||||
-->
|
||||
</resources>
|
||||
</resources>
|
||||
|
@ -47,12 +47,12 @@
|
||||
<string name="keep_settings_visible">Tartsa láthatóvá a beállítási gombokat</string>
|
||||
<string name="always_open_back_camera">Mindig a Hátsó kamerával nyissa meg az alkalmazást</string>
|
||||
<string name="save_photo_metadata">Fotó adatok mentése</string>
|
||||
<string name="save_photo_location">Save photo location</string>
|
||||
<string name="save_photo_video_location">Save photo and video location</string>
|
||||
<string name="photo_compression_quality">Fotó tömörítés minősége</string>
|
||||
<string name="shutter">Záró</string>
|
||||
<string name="allow_location_permission">You must allow Camera accessing location, else it cannot complete this action.</string>
|
||||
<!--
|
||||
Haven't found some strings? There's more at
|
||||
https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res
|
||||
-->
|
||||
</resources>
|
||||
</resources>
|
||||
|
@ -47,12 +47,12 @@
|
||||
<string name="keep_settings_visible">Selalu tampilkan tombol pengaturan</string>
|
||||
<string name="always_open_back_camera">Selalu buka aplikasi dengan kamera belakang</string>
|
||||
<string name="save_photo_metadata">Simpan metadata exif foto</string>
|
||||
<string name="save_photo_location">Lokasi penyimpanan foto</string>
|
||||
<string name="save_photo_video_location">Save photo and video location</string>
|
||||
<string name="photo_compression_quality">Kualitas kompresi foto</string>
|
||||
<string name="shutter">Rana</string>
|
||||
<string name="allow_location_permission">You must allow Camera accessing location, else it cannot complete this action.</string>
|
||||
<!--
|
||||
Haven't found some strings? There's more at
|
||||
https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res
|
||||
-->
|
||||
</resources>
|
||||
</resources>
|
||||
|
@ -47,12 +47,12 @@
|
||||
<string name="keep_settings_visible">Mantieni il pulsante delle impostazioni visibile</string>
|
||||
<string name="always_open_back_camera">Apri sempre l\'app con la fotocamera posteriore</string>
|
||||
<string name="save_photo_metadata">Salva i metadati Exif nelle foto</string>
|
||||
<string name="save_photo_location">Salva la posizione della foto</string>
|
||||
<string name="save_photo_video_location">Save photo and video location</string>
|
||||
<string name="photo_compression_quality">Qualità della compressione delle foto</string>
|
||||
<string name="shutter">Otturatore</string>
|
||||
<string name="allow_location_permission">You must allow Camera accessing location, else it cannot complete this action.</string>
|
||||
<!--
|
||||
Haven't found some strings? There's more at
|
||||
https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res
|
||||
-->
|
||||
</resources>
|
||||
</resources>
|
||||
|
@ -49,10 +49,10 @@
|
||||
<string name="keep_settings_visible">השאר את לחצני ההגדרה גלויים</string>
|
||||
<string name="always_open_back_camera">פתח את האפליקציה תמיד עם המצלמה האחורית</string>
|
||||
<string name="save_photo_metadata">שמור מטא נתונים של Exif של תמונה</string>
|
||||
<string name="save_photo_location">Save photo location</string>
|
||||
<string name="save_photo_video_location">Save photo and video location</string>
|
||||
<string name="photo_compression_quality">איכות דחיסת תמונה</string>
|
||||
<string name="shutter">תריס</string>
|
||||
<string name="allow_location_permission">You must allow Camera accessing location, else it cannot complete this action.</string>
|
||||
<!--
|
||||
Haven't found some strings? There's more at
|
||||
https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res
|
||||
|
@ -47,12 +47,12 @@
|
||||
<string name="keep_settings_visible">設定ボタンを表示したままにする</string>
|
||||
<string name="always_open_back_camera">常に背面カメラでアプリを開く</string>
|
||||
<string name="save_photo_metadata">写真のEXIFデータを保存する</string>
|
||||
<string name="save_photo_location">Save photo location</string>
|
||||
<string name="save_photo_video_location">Save photo and video location</string>
|
||||
<string name="photo_compression_quality">写真の圧縮品質</string>
|
||||
<string name="shutter">シャッター</string>
|
||||
<string name="allow_location_permission">You must allow Camera accessing location, else it cannot complete this action.</string>
|
||||
<!--
|
||||
Haven't found some strings? There's more at
|
||||
https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res
|
||||
-->
|
||||
</resources>
|
||||
</resources>
|
||||
|
@ -47,10 +47,10 @@
|
||||
<string name="keep_settings_visible">설정 버튼 표시 유지</string>
|
||||
<string name="always_open_back_camera">항상 후면카메라로 실행</string>
|
||||
<string name="save_photo_metadata">사진 exif 메타 데이터 저장</string>
|
||||
<string name="save_photo_location">Save photo location</string>
|
||||
<string name="save_photo_video_location">Save photo and video location</string>
|
||||
<string name="photo_compression_quality">사진 압축 품질</string>
|
||||
<string name="shutter">Shutter</string>
|
||||
<string name="allow_location_permission">You must allow Camera accessing location, else it cannot complete this action.</string>
|
||||
<!--
|
||||
Haven't found some strings? There's more at
|
||||
https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res
|
||||
|
@ -47,12 +47,12 @@
|
||||
<string name="keep_settings_visible">Palikti nustatymų mygtukus matomus</string>
|
||||
<string name="always_open_back_camera">Visada atverti programėlę su įjungta galine kamera</string>
|
||||
<string name="save_photo_metadata">Įrašyti į nuotraukas EXIF metaduomenis</string>
|
||||
<string name="save_photo_location">Save photo location</string>
|
||||
<string name="save_photo_video_location">Save photo and video location</string>
|
||||
<string name="photo_compression_quality">Nuotraukų glaudinimo kokybė</string>
|
||||
<string name="shutter">Sklendė</string>
|
||||
<string name="allow_location_permission">You must allow Camera accessing location, else it cannot complete this action.</string>
|
||||
<!--
|
||||
Haven't found some strings? There's more at
|
||||
https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res
|
||||
-->
|
||||
</resources>
|
||||
</resources>
|
||||
|
@ -47,10 +47,10 @@
|
||||
<string name="keep_settings_visible">ക്രമീകരണ ബട്ടൺ ദൃശ്യമാക്കുക </string>
|
||||
<string name="always_open_back_camera">എല്ലായ്പ്പോഴും പുറകിലെ ക്യാമറ ഉപയോഗിച്ച് അപ്ലിക്കേഷൻ തുറക്കുക</string>
|
||||
<string name="save_photo_metadata">ഫോട്ടോ exif മെറ്റാഡാറ്റ സംരക്ഷിക്കുക</string>
|
||||
<string name="save_photo_location">Save photo location</string>
|
||||
<string name="save_photo_video_location">Save photo and video location</string>
|
||||
<string name="photo_compression_quality">ഫോട്ടോ കംപ്രഷൻ ക്വാളിറ്റി</string>
|
||||
<string name="shutter">ഷട്ടർ</string>
|
||||
<string name="allow_location_permission">You must allow Camera accessing location, else it cannot complete this action.</string>
|
||||
<!--
|
||||
Haven't found some strings? There's more at
|
||||
https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res
|
||||
|
@ -47,10 +47,10 @@
|
||||
<string name="keep_settings_visible">Behold innstillingsknappene synlig</string>
|
||||
<string name="always_open_back_camera">Alltid åpne programmet med kameraet på baksiden</string>
|
||||
<string name="save_photo_metadata">Lagre Exif-metadata i bilder</string>
|
||||
<string name="save_photo_location">Save photo location</string>
|
||||
<string name="save_photo_video_location">Save photo and video location</string>
|
||||
<string name="photo_compression_quality">Bildekompresjonskvalitet</string>
|
||||
<string name="shutter">Lukker</string>
|
||||
<string name="allow_location_permission">You must allow Camera accessing location, else it cannot complete this action.</string>
|
||||
<!--
|
||||
Haven't found some strings? There's more at
|
||||
https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res
|
||||
|
@ -50,10 +50,10 @@
|
||||
<string name="keep_settings_visible">सेटिङलाई देखिनेगरि राख्नुहोस</string>
|
||||
<string name="always_open_back_camera">सधै यो एप खोल्दा पछाडिको क्यामेरा प्रयोग हुने</string>
|
||||
<string name="save_photo_metadata">फोटो बचत exif मेटाडेटा</string>
|
||||
<string name="save_photo_location">Save photo location</string>
|
||||
<string name="save_photo_video_location">Save photo and video location</string>
|
||||
<string name="photo_compression_quality">फोटो खदाईको गुणस्तर</string>
|
||||
<string name="shutter">खिच्ने</string>
|
||||
<string name="allow_location_permission">You must allow Camera accessing location, else it cannot complete this action.</string>
|
||||
<!--
|
||||
Haven't found some strings? There's more at
|
||||
https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res
|
||||
|
@ -47,12 +47,12 @@
|
||||
<string name="keep_settings_visible">Knop Instellingen altijd tonen</string>
|
||||
<string name="always_open_back_camera">Bij openen app altijd camera achterop activeren</string>
|
||||
<string name="save_photo_metadata">EXIF-metadata in foto\'s opslaan</string>
|
||||
<string name="save_photo_location">Fotolocatie opslaan</string>
|
||||
<string name="save_photo_video_location">Save photo and video location</string>
|
||||
<string name="photo_compression_quality">Kwaliteit foto\'s</string>
|
||||
<string name="shutter">Sluiter</string>
|
||||
<string name="allow_location_permission">You must allow Camera accessing location, else it cannot complete this action.</string>
|
||||
<!--
|
||||
Haven't found some strings? There's more at
|
||||
https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res
|
||||
-->
|
||||
</resources>
|
||||
</resources>
|
||||
|
@ -47,12 +47,12 @@
|
||||
<string name="keep_settings_visible">Held innstillingknappen synleg</string>
|
||||
<string name="always_open_back_camera">Byt til kameraet bak når appen vert opna</string>
|
||||
<string name="save_photo_metadata">Gøym Exif-metadata i bilete</string>
|
||||
<string name="save_photo_location">Save photo location</string>
|
||||
<string name="save_photo_video_location">Save photo and video location</string>
|
||||
<string name="photo_compression_quality">Biletekvalitet (Merk: høgre % tek au meir rom)</string>
|
||||
<string name="shutter">Opptak</string>
|
||||
<string name="allow_location_permission">You must allow Camera accessing location, else it cannot complete this action.</string>
|
||||
<!--
|
||||
Haven't found some strings? There's more at
|
||||
https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res
|
||||
-->
|
||||
</resources>
|
||||
</resources>
|
||||
|
@ -47,8 +47,8 @@
|
||||
<string name="keep_settings_visible">Keep the setting buttons visible</string>
|
||||
<string name="always_open_back_camera">Always open the app with the Back camera</string>
|
||||
<string name="save_photo_metadata">ایکسیف میٹاڈیٹا سامبھو</string>
|
||||
<string name="save_photo_location">Save photo location</string>
|
||||
<string name="save_photo_video_location">Save photo and video location</string>
|
||||
<string name="photo_compression_quality">Photo compression quality</string>
|
||||
<string name="shutter">Shutter</string>
|
||||
<string name="allow_location_permission">You must allow Camera accessing location, else it cannot complete this action.</string>
|
||||
</resources>
|
||||
|
@ -47,12 +47,12 @@
|
||||
<string name="keep_settings_visible">Pozostawiaj przyciski ustawień widoczne</string>
|
||||
<string name="always_open_back_camera">Zawsze otwieraj aplikację z włączonym tylnym aparatem</string>
|
||||
<string name="save_photo_metadata">Zapisuj metadane EXIF w zdjęciach</string>
|
||||
<string name="save_photo_location">Zapisuj lokalizację zdjęcia</string>
|
||||
<string name="save_photo_video_location">Save photo and video location</string>
|
||||
<string name="photo_compression_quality">Jakość kompresji zdjęć</string>
|
||||
<string name="shutter">Migawka</string>
|
||||
<string name="allow_location_permission">You must allow Camera accessing location, else it cannot complete this action.</string>
|
||||
<!--
|
||||
Haven't found some strings? There's more at
|
||||
https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res
|
||||
-->
|
||||
</resources>
|
||||
</resources>
|
||||
|
@ -47,12 +47,12 @@
|
||||
<string name="keep_settings_visible">Mantenha os botões de configuração visíveis</string>
|
||||
<string name="always_open_back_camera">Sempre abra o aplicativo com a câmera traseira</string>
|
||||
<string name="save_photo_metadata">Salvar metadados exif da foto</string>
|
||||
<string name="save_photo_location">Save photo location</string>
|
||||
<string name="save_photo_video_location">Save photo and video location</string>
|
||||
<string name="photo_compression_quality">Qualidade de compresão de imagem</string>
|
||||
<string name="shutter">Obturador</string>
|
||||
<string name="allow_location_permission">You must allow Camera accessing location, else it cannot complete this action.</string>
|
||||
<!--
|
||||
Haven't found some strings? There's more at
|
||||
https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res
|
||||
-->
|
||||
</resources>
|
||||
</resources>
|
||||
|
@ -47,12 +47,12 @@
|
||||
<string name="keep_settings_visible">Botão de definições sempre visível</string>
|
||||
<string name="always_open_back_camera">Abrir a aplicação sempre com a câmara traseira</string>
|
||||
<string name="save_photo_metadata">Guardar dados exif das fotos</string>
|
||||
<string name="save_photo_location">Save photo location</string>
|
||||
<string name="save_photo_video_location">Save photo and video location</string>
|
||||
<string name="photo_compression_quality">Qualidade da compressão</string>
|
||||
<string name="shutter">Obturador</string>
|
||||
<string name="allow_location_permission">You must allow Camera accessing location, else it cannot complete this action.</string>
|
||||
<!--
|
||||
Não encontrou todas as cadeias a traduzir? Existem mais algumas em:
|
||||
https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res
|
||||
-->
|
||||
</resources>
|
||||
</resources>
|
||||
|
@ -47,12 +47,12 @@
|
||||
<string name="keep_settings_visible">Manter botão de definições visível</string>
|
||||
<string name="always_open_back_camera">Abrir sempre a aplicação com a câmera traseira</string>
|
||||
<string name="save_photo_metadata">Guardar dados exif com a foto</string>
|
||||
<string name="save_photo_location">Local para guardar as fotos</string>
|
||||
<string name="save_photo_video_location">Save photo and video location</string>
|
||||
<string name="photo_compression_quality">Qualidade de compressão da foto</string>
|
||||
<string name="shutter">Obturador</string>
|
||||
<string name="allow_location_permission">You must allow Camera accessing location, else it cannot complete this action.</string>
|
||||
<!--
|
||||
Não encontrou todas as cadeias a traduzir? Existem mais algumas em:
|
||||
https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res
|
||||
-->
|
||||
</resources>
|
||||
</resources>
|
||||
|
@ -47,10 +47,10 @@
|
||||
<string name="keep_settings_visible">Păstrați vizibile butoanele de setări</string>
|
||||
<string name="always_open_back_camera">Deschideți întotdeauna aplicația cu camera din spate</string>
|
||||
<string name="save_photo_metadata">Salvați metadatele exif ale fotografiilor</string>
|
||||
<string name="save_photo_location">Save photo location</string>
|
||||
<string name="save_photo_video_location">Save photo and video location</string>
|
||||
<string name="photo_compression_quality">Calitatea comprimării fotografiilor</string>
|
||||
<string name="shutter">Declanșator</string>
|
||||
<string name="allow_location_permission">You must allow Camera accessing location, else it cannot complete this action.</string>
|
||||
<!--
|
||||
Haven't found some strings? There's more at
|
||||
https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res
|
||||
|
@ -47,12 +47,12 @@
|
||||
<string name="keep_settings_visible">Всегда показывать панель настроек</string>
|
||||
<string name="always_open_back_camera">Всегда включать заднюю камеру при запуске</string>
|
||||
<string name="save_photo_metadata">Сохранять в фото данные EXIF</string>
|
||||
<string name="save_photo_location">Сохранять место съёмки</string>
|
||||
<string name="save_photo_video_location">Save photo and video location</string>
|
||||
<string name="photo_compression_quality">Качество фото после сжатия</string>
|
||||
<string name="shutter">Затвор</string>
|
||||
<string name="allow_location_permission">You must allow Camera accessing location, else it cannot complete this action.</string>
|
||||
<!--
|
||||
Haven't found some strings? There's more at
|
||||
https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res
|
||||
-->
|
||||
</resources>
|
||||
</resources>
|
||||
|
@ -50,10 +50,10 @@
|
||||
<string name="keep_settings_visible">Neskrývať tlačidlá nastavení</string>
|
||||
<string name="always_open_back_camera">Stále otvárať aplikáciu s aktívnou zadnou kamerou</string>
|
||||
<string name="save_photo_metadata">Ukladať exif metadáta fotografií</string>
|
||||
<string name="save_photo_location">Ukladať údaje o polohe</string>
|
||||
<string name="save_photo_video_location">Ukladať údaje o polohe fotiek a videí</string>
|
||||
<string name="photo_compression_quality">Kvalita kompresie fotiek</string>
|
||||
<string name="shutter">Spúšť</string>
|
||||
<string name="allow_location_permission">You must allow Camera accessing location, else it cannot complete this action.</string>
|
||||
<!--
|
||||
Haven't found some strings? There's more at
|
||||
https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res
|
||||
|
@ -47,8 +47,8 @@
|
||||
<string name="keep_settings_visible">Ohranite vidne gumbe za nastavitve</string>
|
||||
<string name="always_open_back_camera">Aplikacijo odprite vedno z zadnjo kamero</string>
|
||||
<string name="save_photo_metadata">Shranite exif metapodatke fotografije</string>
|
||||
<string name="save_photo_location">Save photo location</string>
|
||||
<string name="save_photo_video_location">Save photo and video location</string>
|
||||
<string name="photo_compression_quality">Kakovost stiskanja fotografij</string>
|
||||
<string name="shutter">Zaklopka</string>
|
||||
<string name="allow_location_permission">You must allow Camera accessing location, else it cannot complete this action.</string>
|
||||
</resources>
|
||||
|
@ -47,8 +47,8 @@
|
||||
<string name="keep_settings_visible">Држите тастере за подешавање видљивим</string>
|
||||
<string name="always_open_back_camera">Увек отварајте апликацију помоћу задње камере</string>
|
||||
<string name="save_photo_metadata">Сачувајте екиф метаподатке фотографије</string>
|
||||
<string name="save_photo_location">Save photo location</string>
|
||||
<string name="save_photo_video_location">Save photo and video location</string>
|
||||
<string name="photo_compression_quality">Квалитет компресије фотографија</string>
|
||||
<string name="shutter">Затварач</string>
|
||||
<string name="allow_location_permission">You must allow Camera accessing location, else it cannot complete this action.</string>
|
||||
</resources>
|
||||
|
@ -47,12 +47,12 @@
|
||||
<string name="keep_settings_visible">Behåll inställningsknapparna synliga</string>
|
||||
<string name="always_open_back_camera">Växla till den bakre kameran när appen öppnas</string>
|
||||
<string name="save_photo_metadata">Spara fotonas Exif-metadata</string>
|
||||
<string name="save_photo_location">Spara platser för foton</string>
|
||||
<string name="save_photo_video_location">Save photo and video location</string>
|
||||
<string name="photo_compression_quality">Fotokomprimeringskvalitet</string>
|
||||
<string name="shutter">Slutare</string>
|
||||
<string name="allow_location_permission">You must allow Camera accessing location, else it cannot complete this action.</string>
|
||||
<!--
|
||||
Haven't found some strings? There's more at
|
||||
https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res
|
||||
-->
|
||||
</resources>
|
||||
</resources>
|
||||
|
@ -51,10 +51,10 @@
|
||||
<string name="keep_settings_visible">Keep the setting buttons visible</string>
|
||||
<string name="always_open_back_camera">Always open the app with the Back camera</string>
|
||||
<string name="save_photo_metadata">Save photo exif metadata</string>
|
||||
<string name="save_photo_location">Save photo location</string>
|
||||
<string name="save_photo_video_location">Save photo and video location</string>
|
||||
<string name="photo_compression_quality">Photo compression quality</string>
|
||||
<string name="shutter">Shutter</string>
|
||||
<string name="allow_location_permission">You must allow Camera accessing location, else it cannot complete this action.</string>
|
||||
<!--
|
||||
Haven't found some strings? There's more at
|
||||
https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res
|
||||
|
@ -47,12 +47,12 @@
|
||||
<string name="keep_settings_visible">Ayar düğmelerini görünür durumda tut</string>
|
||||
<string name="always_open_back_camera">Uygulamayı her zaman arka kamera ile aç</string>
|
||||
<string name="save_photo_metadata">Fotoğraflara Exif meta verilerini kaydet</string>
|
||||
<string name="save_photo_location">Fotoğraf konumunu kaydet</string>
|
||||
<string name="save_photo_video_location">Save photo and video location</string>
|
||||
<string name="photo_compression_quality">Fotoğraf sıkıştırma kalitesi</string>
|
||||
<string name="shutter">Deklanşör</string>
|
||||
<string name="allow_location_permission">Kamera uygulamasının konum erişimine izin vermelisiniz, aksi halde bu işlem tamamlanamaz.</string>
|
||||
<!--
|
||||
Haven't found some strings? There's more at
|
||||
https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res
|
||||
-->
|
||||
</resources>
|
||||
</resources>
|
||||
|
@ -47,12 +47,12 @@
|
||||
<string name="keep_settings_visible">Завжди показувати панель налаштувань</string>
|
||||
<string name="always_open_back_camera">Завжди активувати задню камеру під час запуску додатка</string>
|
||||
<string name="save_photo_metadata">Зберігати метадані EXIF</string>
|
||||
<string name="save_photo_location">Зберігати розташування фото</string>
|
||||
<string name="save_photo_video_location">Save photo and video location</string>
|
||||
<string name="photo_compression_quality">Якість фото після стиснення</string>
|
||||
<string name="shutter">Затвор</string>
|
||||
<string name="allow_location_permission">You must allow Camera accessing location, else it cannot complete this action.</string>
|
||||
<!--
|
||||
Haven't found some strings? There's more at
|
||||
https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res
|
||||
-->
|
||||
</resources>
|
||||
</resources>
|
||||
|
@ -47,12 +47,12 @@
|
||||
<string name="keep_settings_visible">设置按钮保持可见</string>
|
||||
<string name="always_open_back_camera">打开应用时切换到后置相机</string>
|
||||
<string name="save_photo_metadata">保存照片 EXIF 元数据</string>
|
||||
<string name="save_photo_location">保存照片位置</string>
|
||||
<string name="save_photo_video_location">Save photo and video location</string>
|
||||
<string name="photo_compression_quality">照片压缩品质</string>
|
||||
<string name="shutter">快门</string>
|
||||
<string name="allow_location_permission">You must allow Camera accessing location, else it cannot complete this action.</string>
|
||||
<!--
|
||||
Haven't found some strings? There's more at
|
||||
https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res
|
||||
-->
|
||||
</resources>
|
||||
</resources>
|
||||
|
@ -49,10 +49,10 @@
|
||||
<string name="keep_settings_visible">設定按鈕不消失</string>
|
||||
<string name="always_open_back_camera">開啟程式總是用後鏡頭</string>
|
||||
<string name="save_photo_metadata">儲存相片EXIF資訊</string>
|
||||
<string name="save_photo_location">Save photo location</string>
|
||||
<string name="save_photo_video_location">Save photo and video location</string>
|
||||
<string name="photo_compression_quality">相片壓縮品質</string>
|
||||
<string name="shutter">快門</string>
|
||||
<string name="allow_location_permission">You must allow Camera accessing location, else it cannot complete this action.</string>
|
||||
<!--
|
||||
Haven't found some strings? There's more at
|
||||
https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res
|
||||
|
@ -50,10 +50,10 @@
|
||||
<string name="keep_settings_visible">Keep the setting buttons visible</string>
|
||||
<string name="always_open_back_camera">Always open the app with the Back camera</string>
|
||||
<string name="save_photo_metadata">Save photo exif metadata</string>
|
||||
<string name="save_photo_location">Save photo location</string>
|
||||
<string name="save_photo_video_location">Save photo and video location</string>
|
||||
<string name="photo_compression_quality">Photo compression quality</string>
|
||||
<string name="shutter">Shutter</string>
|
||||
<string name="allow_location_permission">You must allow Camera accessing location, else it cannot complete this action.</string>
|
||||
<!--
|
||||
Haven't found some strings? There's more at
|
||||
https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res
|
||||
|
Reference in New Issue
Block a user