mirror of
https://github.com/SimpleMobileTools/Simple-Camera.git
synced 2025-02-03 08:37:30 +01:00
update location permission strings
This commit is contained in:
parent
e957ce607a
commit
90c6b3193b
@ -63,7 +63,7 @@ android {
|
||||
}
|
||||
|
||||
dependencies {
|
||||
implementation 'com.github.fatihergin:Simple-Commons:23b8cf8be1' // TODO: replace it with SimpleMobileTools after merging the Commons PR
|
||||
implementation 'com.github.fatihergin:Simple-Commons:4ef43732e6' // TODO: replace it with SimpleMobileTools after merging the Commons PR
|
||||
implementation 'androidx.documentfile:documentfile:1.0.1'
|
||||
implementation "androidx.exifinterface:exifinterface:1.3.5"
|
||||
implementation "androidx.lifecycle:lifecycle-runtime-ktx:2.5.1"
|
||||
|
@ -43,7 +43,7 @@ class SettingsActivity : SimpleActivity() {
|
||||
setupVolumeButtonsAsShutter()
|
||||
setupFlipPhotos()
|
||||
setupSavePhotoMetadata()
|
||||
setupSaveMediaLocation()
|
||||
setupSavePhotoVideoLocation()
|
||||
setupSavePhotosFolder()
|
||||
setupPhotoQuality()
|
||||
setupCaptureMode()
|
||||
@ -166,32 +166,32 @@ class SettingsActivity : SimpleActivity() {
|
||||
}
|
||||
}
|
||||
|
||||
private fun setupSaveMediaLocation() {
|
||||
settings_save_media_location.isChecked = config.saveMediaLocation
|
||||
settings_save_media_location_holder.setOnClickListener {
|
||||
val willEnableSaveMediaLocation = !config.saveMediaLocation
|
||||
private fun setupSavePhotoVideoLocation() {
|
||||
settings_save_photo_video_location.isChecked = config.savePhotoVideoLocation
|
||||
settings_save_photo_video_location_holder.setOnClickListener {
|
||||
val willEnableSavePhotoVideoLocation = !config.savePhotoVideoLocation
|
||||
|
||||
if (willEnableSaveMediaLocation) {
|
||||
if (willEnableSavePhotoVideoLocation) {
|
||||
if (checkLocationPermission()) {
|
||||
updateSaveMediaLocationConfig(true)
|
||||
updateSavePhotoVideoLocationConfig(true)
|
||||
} else {
|
||||
handlePermission(PERMISSION_ACCESS_FINE_LOCATION) { _ ->
|
||||
if (checkLocationPermission()) {
|
||||
updateSaveMediaLocationConfig(true)
|
||||
updateSavePhotoVideoLocationConfig(true)
|
||||
} else {
|
||||
OpenAppSettingsDialog(activity = this@SettingsActivity, permissionId = R.string.permission_name_location)
|
||||
OpenAppSettingsDialog(activity = this@SettingsActivity, message = getString(R.string.allow_location_permission))
|
||||
}
|
||||
}
|
||||
}
|
||||
} else {
|
||||
updateSaveMediaLocationConfig(false)
|
||||
updateSavePhotoVideoLocationConfig(false)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
private fun updateSaveMediaLocationConfig(enabled: Boolean) {
|
||||
settings_save_media_location.isChecked = enabled
|
||||
config.saveMediaLocation = enabled
|
||||
private fun updateSavePhotoVideoLocationConfig(enabled: Boolean) {
|
||||
settings_save_photo_video_location.isChecked = enabled
|
||||
config.savePhotoVideoLocation = enabled
|
||||
}
|
||||
|
||||
private fun setupSavePhotosFolder() {
|
||||
|
@ -68,9 +68,9 @@ class Config(context: Context) : BaseConfig(context) {
|
||||
get() = prefs.getBoolean(SAVE_PHOTO_METADATA, true)
|
||||
set(savePhotoMetadata) = prefs.edit().putBoolean(SAVE_PHOTO_METADATA, savePhotoMetadata).apply()
|
||||
|
||||
var saveMediaLocation: Boolean
|
||||
get() = prefs.getBoolean(SAVE_MEDIA_LOCATION, false)
|
||||
set(saveMediaLocation) = prefs.edit().putBoolean(SAVE_MEDIA_LOCATION, saveMediaLocation).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)
|
||||
|
@ -18,7 +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_MEDIA_LOCATION = "save_media_location"
|
||||
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"
|
||||
|
@ -34,6 +34,7 @@ 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(
|
||||
@ -353,7 +354,7 @@ class CameraXPreview(
|
||||
|
||||
override fun onResume(owner: LifecycleOwner) {
|
||||
super.onResume(owner)
|
||||
if (config.saveMediaLocation) {
|
||||
if (config.savePhotoVideoLocation) {
|
||||
if (simpleLocationManager == null) {
|
||||
simpleLocationManager = SimpleLocationManager(activity)
|
||||
}
|
||||
@ -488,7 +489,7 @@ class CameraXPreview(
|
||||
|
||||
val metadata = Metadata().apply {
|
||||
isReversedHorizontal = isFrontCameraInUse() && config.flipPhotos
|
||||
if (config.saveMediaLocation) {
|
||||
if (config.savePhotoVideoLocation) {
|
||||
location = simpleLocationManager?.getLocation()
|
||||
}
|
||||
}
|
||||
@ -591,14 +592,14 @@ class CameraXPreview(
|
||||
val recording = when (val mediaOutput = mediaOutputHelper.getVideoMediaOutput()) {
|
||||
is MediaOutput.FileDescriptorMediaOutput -> {
|
||||
FileDescriptorOutputOptions.Builder(mediaOutput.fileDescriptor).apply {
|
||||
if (config.saveMediaLocation) {
|
||||
if (config.savePhotoVideoLocation) {
|
||||
setLocation(simpleLocationManager?.getLocation())
|
||||
}
|
||||
}.build().let { videoCapture!!.output.prepareRecording(activity, it) }
|
||||
}
|
||||
is MediaOutput.FileMediaOutput -> {
|
||||
FileOutputOptions.Builder(mediaOutput.file).apply {
|
||||
if (config.saveMediaLocation) {
|
||||
if (config.savePhotoVideoLocation) {
|
||||
setLocation(simpleLocationManager?.getLocation())
|
||||
}
|
||||
}.build().let { videoCapture!!.output.prepareRecording(activity, it) }
|
||||
@ -606,7 +607,7 @@ class CameraXPreview(
|
||||
is MediaOutput.MediaStoreOutput -> {
|
||||
MediaStoreOutputOptions.Builder(contentResolver, mediaOutput.contentUri).apply {
|
||||
setContentValues(mediaOutput.contentValues)
|
||||
if (config.saveMediaLocation) {
|
||||
if (config.savePhotoVideoLocation) {
|
||||
setLocation(simpleLocationManager?.getLocation())
|
||||
}
|
||||
}.build().let { videoCapture!!.output.prepareRecording(activity, it) }
|
||||
|
@ -205,17 +205,17 @@
|
||||
</RelativeLayout>
|
||||
|
||||
<RelativeLayout
|
||||
android:id="@+id/settings_save_media_location_holder"
|
||||
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_media_location"
|
||||
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_location" />
|
||||
android:text="@string/save_photo_video_location" />
|
||||
|
||||
</RelativeLayout>
|
||||
|
||||
|
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user