Merge branch 'develop'
2
.flutter
|
@ -1 +1 @@
|
|||
Subproject commit b8f7f1f9869bb2d116aa6a70dbeac61000b52849
|
||||
Subproject commit 135454af32477f815a7525073027a3ff9eff1bfd
|
22
CHANGELOG.md
|
@ -4,6 +4,28 @@ All notable changes to this project will be documented in this file.
|
|||
|
||||
## <a id="unreleased"></a>[Unreleased]
|
||||
|
||||
## <a id="v1.7.8"></a>[v1.7.8] - 2022-12-20
|
||||
|
||||
### Added
|
||||
|
||||
- Android TV support
|
||||
- Viewer: optionally show rating & tags on overlay
|
||||
- Viewer: long press on copy/move/rating/tag quick action for quicker action
|
||||
- Viewer: long press on share quick action to share parts of motion photo
|
||||
- Search: missing address, portrait, landscape filters
|
||||
- Map: edit cluster location
|
||||
- Accessibility: optional alternative to pinch-to-zoom thumbnails
|
||||
- Lithuanian translation (thanks Gediminas Murauskas)
|
||||
- Norwegian (Bokmål) translation (thanks Allan Nordhøy)
|
||||
- Chinese (Traditional) translation (thanks pemibe)
|
||||
- Ukrainian translation (thanks Olexandr Mazur)
|
||||
|
||||
### Changed
|
||||
|
||||
- Viewer: allow setting default outside video player
|
||||
- Map: fit to most recent items if all items cannot fit on screen
|
||||
- upgraded Flutter to stable v3.3.10
|
||||
|
||||
## <a id="v1.7.7"></a>[v1.7.7] - 2022-11-27
|
||||
|
||||
### Added
|
||||
|
|
|
@ -24,10 +24,14 @@ Aves is a gallery and metadata explorer app. It is built for Android, with Flutt
|
|||
[<img src="https://gitlab.com/IzzyOnDroid/repo/-/raw/master/assets/IzzyOnDroid.png"
|
||||
alt='Get it on IzzyOnDroid'
|
||||
height="80">](https://apt.izzysoft.de/fdroid/index/apk/deckers.thibault.aves)
|
||||
[<img src="https://fdroid.gitlab.io/artwork/badge/get-it-on.png"
|
||||
alt='Get it on F-Droid'
|
||||
height="80">](https://f-droid.org/packages/deckers.thibault.aves.libre)
|
||||
[<img src="https://raw.githubusercontent.com/deckerst/common/main/assets/get-it-on-github.png"
|
||||
alt='Get it on GitHub'
|
||||
height="80">](https://github.com/deckerst/aves/releases/latest)
|
||||
|
||||
|
||||
[Compare versions](https://github.com/deckerst/aves/wiki/App-Versions)
|
||||
|
||||
<div align="left">
|
||||
|
@ -129,4 +133,4 @@ To run the app:
|
|||
```
|
||||
|
||||
[Version badge]: https://img.shields.io/github/v/release/deckerst/aves?include_prereleases&sort=semver
|
||||
[Build badge]: https://img.shields.io/github/workflow/status/deckerst/aves/Quality%20check
|
||||
[Build badge]: https://img.shields.io/github/actions/workflow/status/deckerst/aves/check.yml?branch=develop
|
||||
|
|
|
@ -183,6 +183,7 @@ dependencies {
|
|||
implementation 'androidx.core:core-ktx:1.9.0'
|
||||
implementation 'androidx.exifinterface:exifinterface:1.3.5'
|
||||
implementation 'androidx.lifecycle:lifecycle-process:2.5.1'
|
||||
implementation 'androidx.media:media:1.6.0'
|
||||
implementation 'androidx.multidex:multidex:2.0.1'
|
||||
|
||||
implementation 'com.caverock:androidsvg-aar:1.4'
|
||||
|
|
|
@ -11,6 +11,13 @@ This change eventually prevents building the app with Flutter v3.3.3.
|
|||
package="deckers.thibault.aves"
|
||||
android:installLocation="auto">
|
||||
|
||||
<uses-feature
|
||||
android:name="android.hardware.touchscreen"
|
||||
android:required="false" />
|
||||
<uses-feature
|
||||
android:name="android.software.leanback"
|
||||
android:required="false" />
|
||||
|
||||
<!--
|
||||
Scoped storage on Android 10 is inconvenient because users need to confirm edition on each individual file.
|
||||
So we request `WRITE_EXTERNAL_STORAGE` until Android 10 (API 29), and enable `requestLegacyExternalStorage`
|
||||
|
@ -67,6 +74,7 @@ This change eventually prevents building the app with Flutter v3.3.3.
|
|||
<application
|
||||
android:allowBackup="true"
|
||||
android:appCategory="image"
|
||||
android:banner="@drawable/banner"
|
||||
android:fullBackupOnly="true"
|
||||
android:icon="@mipmap/ic_launcher"
|
||||
android:label="@string/app_name"
|
||||
|
@ -83,6 +91,8 @@ This change eventually prevents building the app with Flutter v3.3.3.
|
|||
android:windowSoftInputMode="adjustResize">
|
||||
<intent-filter>
|
||||
<action android:name="android.intent.action.MAIN" />
|
||||
|
||||
<category android:name="android.intent.category.LEANBACK_LAUNCHER" />
|
||||
<category android:name="android.intent.category.LAUNCHER" />
|
||||
</intent-filter>
|
||||
<intent-filter>
|
||||
|
|
|
@ -83,6 +83,7 @@ open class MainActivity : FlutterActivity() {
|
|||
MethodChannel(messenger, HomeWidgetHandler.CHANNEL).setMethodCallHandler(HomeWidgetHandler(this))
|
||||
MethodChannel(messenger, MediaFetchBytesHandler.CHANNEL, AvesByteSendingMethodCodec.INSTANCE).setMethodCallHandler(MediaFetchBytesHandler(this))
|
||||
MethodChannel(messenger, MediaFetchObjectHandler.CHANNEL).setMethodCallHandler(MediaFetchObjectHandler(this))
|
||||
MethodChannel(messenger, MediaSessionHandler.CHANNEL).setMethodCallHandler(MediaSessionHandler(this))
|
||||
MethodChannel(messenger, MediaStoreHandler.CHANNEL).setMethodCallHandler(MediaStoreHandler(this))
|
||||
MethodChannel(messenger, MetadataFetchHandler.CHANNEL).setMethodCallHandler(MetadataFetchHandler(this))
|
||||
MethodChannel(messenger, StorageHandler.CHANNEL).setMethodCallHandler(StorageHandler(this))
|
||||
|
|
|
@ -9,8 +9,6 @@ import android.content.ServiceConnection
|
|||
import android.os.Build
|
||||
import android.os.IBinder
|
||||
import android.util.Log
|
||||
import androidx.lifecycle.Lifecycle
|
||||
import androidx.lifecycle.ProcessLifecycleOwner
|
||||
import deckers.thibault.aves.AnalysisService
|
||||
import deckers.thibault.aves.AnalysisServiceBinder
|
||||
import deckers.thibault.aves.AnalysisServiceListener
|
||||
|
@ -65,11 +63,9 @@ class AnalysisHandler(private val activity: Activity, private val onAnalysisComp
|
|||
.putExtra(AnalysisService.KEY_ENTRY_IDS, entryIds?.toIntArray())
|
||||
.putExtra(AnalysisService.KEY_FORCE, force)
|
||||
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
|
||||
val appState = ProcessLifecycleOwner.get().lifecycle.currentState
|
||||
if (!appState.isAtLeast(Lifecycle.State.STARTED)) {
|
||||
result.error("startAnalysis-background", "cannot start foreground service from background", null)
|
||||
return
|
||||
}
|
||||
// Foreground services cannot start from background, but the service here may start fine
|
||||
// while the current lifecycle state (via `ProcessLifecycleOwner.get().lifecycle.currentState`)
|
||||
// is only `INITIALIZED`, so we should not preemptively return when the state is below `STARTED`.
|
||||
activity.startForegroundService(intent)
|
||||
} else {
|
||||
activity.startService(intent)
|
||||
|
|
|
@ -232,7 +232,8 @@ class AppAdapterHandler(private val context: Context) : MethodCallHandler {
|
|||
val title = call.argument<String>("title")
|
||||
val uri = call.argument<String>("uri")?.let { Uri.parse(it) }
|
||||
val mimeType = call.argument<String>("mimeType")
|
||||
if (uri == null) {
|
||||
val forceChooser = call.argument<Boolean>("forceChooser")
|
||||
if (uri == null || forceChooser == null) {
|
||||
result.error("open-args", "missing arguments", null)
|
||||
return
|
||||
}
|
||||
|
@ -240,7 +241,7 @@ class AppAdapterHandler(private val context: Context) : MethodCallHandler {
|
|||
val intent = Intent(Intent.ACTION_VIEW)
|
||||
.addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION)
|
||||
.setDataAndType(getShareableUri(context, uri), mimeType)
|
||||
val started = safeStartActivityChooser(title, intent)
|
||||
val started = if (forceChooser) safeStartActivityChooser(title, intent) else safeStartActivity(intent)
|
||||
|
||||
result.success(started)
|
||||
}
|
||||
|
|
|
@ -46,6 +46,7 @@ class EmbeddedDataHandler(private val context: Context) : MethodCallHandler {
|
|||
override fun onMethodCall(call: MethodCall, result: MethodChannel.Result) {
|
||||
when (call.method) {
|
||||
"getExifThumbnails" -> ioScope.launch { safeSuspend(call, result, ::getExifThumbnails) }
|
||||
"extractMotionPhotoImage" -> ioScope.launch { safe(call, result, ::extractMotionPhotoImage) }
|
||||
"extractMotionPhotoVideo" -> ioScope.launch { safe(call, result, ::extractMotionPhotoVideo) }
|
||||
"extractVideoEmbeddedPicture" -> ioScope.launch { safe(call, result, ::extractVideoEmbeddedPicture) }
|
||||
"extractXmpDataProp" -> ioScope.launch { safe(call, result, ::extractXmpDataProp) }
|
||||
|
@ -83,6 +84,27 @@ class EmbeddedDataHandler(private val context: Context) : MethodCallHandler {
|
|||
result.success(thumbnails)
|
||||
}
|
||||
|
||||
private fun extractMotionPhotoImage(call: MethodCall, result: MethodChannel.Result) {
|
||||
val mimeType = call.argument<String>("mimeType")
|
||||
val uri = call.argument<String>("uri")?.let { Uri.parse(it) }
|
||||
val sizeBytes = call.argument<Number>("sizeBytes")?.toLong()
|
||||
val displayName = call.argument<String>("displayName")
|
||||
if (mimeType == null || uri == null || sizeBytes == null) {
|
||||
result.error("extractMotionPhotoImage-args", "missing arguments", null)
|
||||
return
|
||||
}
|
||||
|
||||
MultiPage.getMotionPhotoOffset(context, uri, mimeType, sizeBytes)?.let { videoSizeBytes ->
|
||||
val imageSizeBytes = sizeBytes - videoSizeBytes
|
||||
StorageUtils.openInputStream(context, uri)?.let { input ->
|
||||
copyEmbeddedBytes(result, mimeType, displayName, input, imageSizeBytes)
|
||||
}
|
||||
return
|
||||
}
|
||||
|
||||
result.error("extractMotionPhotoImage-empty", "failed to extract image from motion photo at uri=$uri", null)
|
||||
}
|
||||
|
||||
private fun extractMotionPhotoVideo(call: MethodCall, result: MethodChannel.Result) {
|
||||
val mimeType = call.argument<String>("mimeType")
|
||||
val uri = call.argument<String>("uri")?.let { Uri.parse(it) }
|
||||
|
@ -166,9 +188,9 @@ class EmbeddedDataHandler(private val context: Context) : MethodCallHandler {
|
|||
try {
|
||||
val embedBytes: ByteArray = if (props.size == 1) {
|
||||
val prop = props.first() as XMPPropName
|
||||
xmpDirs.mapNotNull { it.xmpMeta.getPropertyBase64(prop.nsUri, prop.toString()) }.first()
|
||||
xmpDirs.firstNotNullOf { it.xmpMeta.getPropertyBase64(prop.nsUri, prop.toString()) }
|
||||
} else {
|
||||
xmpDirs.mapNotNull { it.xmpMeta.getSafeStructField(props) }.first().let {
|
||||
xmpDirs.firstNotNullOf { it.xmpMeta.getSafeStructField(props) }.let {
|
||||
XMPUtils.decodeBase64(it.value)
|
||||
}
|
||||
}
|
||||
|
|
|
@ -0,0 +1,144 @@
|
|||
package deckers.thibault.aves.channel.calls
|
||||
|
||||
import android.content.Context
|
||||
import android.media.session.PlaybackState
|
||||
import android.net.Uri
|
||||
import android.support.v4.media.MediaMetadataCompat
|
||||
import android.support.v4.media.session.MediaSessionCompat
|
||||
import android.support.v4.media.session.PlaybackStateCompat
|
||||
import android.util.Log
|
||||
import deckers.thibault.aves.channel.calls.Coresult.Companion.safe
|
||||
import deckers.thibault.aves.channel.calls.Coresult.Companion.safeSuspend
|
||||
import deckers.thibault.aves.utils.FlutterUtils
|
||||
import deckers.thibault.aves.utils.LogUtils
|
||||
import io.flutter.plugin.common.MethodCall
|
||||
import io.flutter.plugin.common.MethodChannel
|
||||
import io.flutter.plugin.common.MethodChannel.MethodCallHandler
|
||||
import kotlinx.coroutines.CoroutineScope
|
||||
import kotlinx.coroutines.Dispatchers
|
||||
import kotlinx.coroutines.SupervisorJob
|
||||
import kotlinx.coroutines.launch
|
||||
|
||||
class MediaSessionHandler(private val context: Context) : MethodCallHandler {
|
||||
private val ioScope = CoroutineScope(SupervisorJob() + Dispatchers.IO)
|
||||
|
||||
private val sessions = HashMap<Uri, MediaSessionCompat>()
|
||||
|
||||
override fun onMethodCall(call: MethodCall, result: MethodChannel.Result) {
|
||||
when (call.method) {
|
||||
"update" -> ioScope.launch { safeSuspend(call, result, ::update) }
|
||||
"release" -> ioScope.launch { safe(call, result, ::release) }
|
||||
else -> result.notImplemented()
|
||||
}
|
||||
}
|
||||
|
||||
private suspend fun update(call: MethodCall, result: MethodChannel.Result) {
|
||||
val uri = call.argument<String>("uri")?.let { Uri.parse(it) }
|
||||
val title = call.argument<String>("title")
|
||||
val durationMillis = call.argument<Number>("durationMillis")?.toLong()
|
||||
val stateString = call.argument<String>("state")
|
||||
val positionMillis = call.argument<Number>("positionMillis")?.toLong()
|
||||
val playbackSpeed = call.argument<Number>("playbackSpeed")?.toFloat()
|
||||
|
||||
if (uri == null || title == null || durationMillis == null || stateString == null || positionMillis == null || playbackSpeed == null) {
|
||||
result.error("update-args", "missing arguments", null)
|
||||
return
|
||||
}
|
||||
|
||||
val state = when (stateString) {
|
||||
STATE_STOPPED -> PlaybackStateCompat.STATE_STOPPED
|
||||
STATE_PAUSED -> PlaybackStateCompat.STATE_PAUSED
|
||||
STATE_PLAYING -> PlaybackStateCompat.STATE_PLAYING
|
||||
else -> {
|
||||
result.error("update-state", "unknown state=$stateString", null)
|
||||
return
|
||||
}
|
||||
}
|
||||
|
||||
var actions = PlaybackStateCompat.ACTION_PLAY_PAUSE or PlaybackStateCompat.ACTION_SEEK_TO
|
||||
actions = if (state == PlaybackState.STATE_PLAYING) {
|
||||
actions or PlaybackStateCompat.ACTION_PAUSE or PlaybackStateCompat.ACTION_STOP
|
||||
} else {
|
||||
actions or PlaybackStateCompat.ACTION_PLAY
|
||||
}
|
||||
|
||||
val playbackState = PlaybackStateCompat.Builder()
|
||||
.setState(
|
||||
state,
|
||||
positionMillis,
|
||||
playbackSpeed,
|
||||
System.currentTimeMillis()
|
||||
)
|
||||
.setActions(actions)
|
||||
.build()
|
||||
|
||||
var session = sessions[uri]
|
||||
if (session == null) {
|
||||
session = MediaSessionCompat(context, "aves-$uri")
|
||||
sessions[uri] = session
|
||||
|
||||
val metadata = MediaMetadataCompat.Builder()
|
||||
.putString(MediaMetadataCompat.METADATA_KEY_TITLE, title)
|
||||
.putString(MediaMetadataCompat.METADATA_KEY_DISPLAY_TITLE, title)
|
||||
.putLong(MediaMetadataCompat.METADATA_KEY_DURATION, durationMillis)
|
||||
.putString(MediaMetadataCompat.METADATA_KEY_MEDIA_URI, uri.toString())
|
||||
.build()
|
||||
session.setMetadata(metadata)
|
||||
|
||||
val callback: MediaSessionCompat.Callback = object : MediaSessionCompat.Callback() {
|
||||
override fun onPlay() {
|
||||
super.onPlay()
|
||||
Log.d(LOG_TAG, "TLAD onPlay uri=$uri")
|
||||
}
|
||||
|
||||
override fun onPause() {
|
||||
super.onPause()
|
||||
Log.d(LOG_TAG, "TLAD onPause uri=$uri")
|
||||
}
|
||||
|
||||
override fun onStop() {
|
||||
super.onStop()
|
||||
Log.d(LOG_TAG, "TLAD onStop uri=$uri")
|
||||
}
|
||||
|
||||
override fun onSeekTo(pos: Long) {
|
||||
super.onSeekTo(pos)
|
||||
Log.d(LOG_TAG, "TLAD onSeekTo uri=$uri pos=$pos")
|
||||
}
|
||||
}
|
||||
FlutterUtils.runOnUiThread {
|
||||
session.setCallback(callback)
|
||||
}
|
||||
}
|
||||
|
||||
session.setPlaybackState(playbackState)
|
||||
|
||||
if (!session.isActive) {
|
||||
session.isActive = true
|
||||
}
|
||||
|
||||
result.success(null)
|
||||
}
|
||||
|
||||
private fun release(call: MethodCall, result: MethodChannel.Result) {
|
||||
val uri = call.argument<String>("uri")?.let { Uri.parse(it) }
|
||||
|
||||
if (uri == null) {
|
||||
result.error("release-args", "missing arguments", null)
|
||||
return
|
||||
}
|
||||
|
||||
sessions[uri]?.release()
|
||||
|
||||
result.success(null)
|
||||
}
|
||||
|
||||
companion object {
|
||||
private val LOG_TAG = LogUtils.createTag<MediaSessionHandler>()
|
||||
const val CHANNEL = "deckers.thibault/aves/media_session"
|
||||
|
||||
const val STATE_STOPPED = "stopped"
|
||||
const val STATE_PAUSED = "paused"
|
||||
const val STATE_PLAYING = "playing"
|
||||
}
|
||||
}
|
|
@ -20,10 +20,14 @@ class ActivityWindowHandler(private val activity: Activity) : WindowHandler(acti
|
|||
|
||||
val window = activity.window
|
||||
val flag = WindowManager.LayoutParams.FLAG_KEEP_SCREEN_ON
|
||||
if (on) {
|
||||
window.addFlags(flag)
|
||||
} else {
|
||||
window.clearFlags(flag)
|
||||
|
||||
val old = (window.attributes.flags and flag) != 0
|
||||
if (old != on) {
|
||||
if (on) {
|
||||
window.addFlags(flag)
|
||||
} else {
|
||||
window.clearFlags(flag)
|
||||
}
|
||||
}
|
||||
result.success(null)
|
||||
}
|
||||
|
|
BIN
android/app/src/main/res/drawable-nodpi/banner.png
Normal file
After Width: | Height: | Size: 6.9 KiB |
|
@ -1,2 +1,11 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<resources></resources>
|
||||
<resources>
|
||||
<string name="app_widget_label">إطار الصورة</string>
|
||||
<string name="wallpaper">الخلفية</string>
|
||||
<string name="search_shortcut_short_label">البحث</string>
|
||||
<string name="videos_shortcut_short_label">الفيديوهات</string>
|
||||
<string name="analysis_channel_name">فحص الوسائط</string>
|
||||
<string name="analysis_service_description">فحص الصور والفيديوهات</string>
|
||||
<string name="analysis_notification_default_title">يتم فحص الوسائط</string>
|
||||
<string name="analysis_notification_action_stop">إيقاف</string>
|
||||
</resources>
|
|
@ -1,2 +1,12 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<resources></resources>
|
||||
<resources>
|
||||
<string name="analysis_service_description">Nuskaityti paveikslėlius ir vaizdo įrašus</string>
|
||||
<string name="wallpaper">Ekrano paveikslėlis</string>
|
||||
<string name="videos_shortcut_short_label">Vaizdo įrašai</string>
|
||||
<string name="app_name">Aves</string>
|
||||
<string name="app_widget_label">Nuotraukų rėmelis</string>
|
||||
<string name="analysis_channel_name">Medijos nuskaitymas</string>
|
||||
<string name="search_shortcut_short_label">Paieška</string>
|
||||
<string name="analysis_notification_action_stop">Sustabdyti</string>
|
||||
<string name="analysis_notification_default_title">Nuskaitoma medija</string>
|
||||
</resources>
|
12
android/app/src/main/res/values-nn/strings.xml
Normal file
|
@ -0,0 +1,12 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<resources>
|
||||
<string name="app_name">Aves</string>
|
||||
<string name="app_widget_label">Bileteramme</string>
|
||||
<string name="wallpaper">Bakgrunnsbilete</string>
|
||||
<string name="search_shortcut_short_label">Søk</string>
|
||||
<string name="videos_shortcut_short_label">Videoar</string>
|
||||
<string name="analysis_channel_name">Mediasøking</string>
|
||||
<string name="analysis_service_description">Søk igjennom bilete og videoar</string>
|
||||
<string name="analysis_notification_default_title">Søkjer igjennom media</string>
|
||||
<string name="analysis_notification_action_stop">Stogg</string>
|
||||
</resources>
|
12
android/app/src/main/res/values-th/strings.xml
Normal file
|
@ -0,0 +1,12 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<resources>
|
||||
<string name="app_name">Aves</string>
|
||||
<string name="app_widget_label">กรอบรูป</string>
|
||||
<string name="wallpaper">ภาพพื้นหลัง</string>
|
||||
<string name="search_shortcut_short_label">ค้นหา</string>
|
||||
<string name="videos_shortcut_short_label">วิดีโอ</string>
|
||||
<string name="analysis_channel_name">สแกนสื่อบันเทิง</string>
|
||||
<string name="analysis_service_description">สแกนรูปภาพและวิดีโอ</string>
|
||||
<string name="analysis_notification_default_title">กำลังสแกนสื่อบันเทิง</string>
|
||||
<string name="analysis_notification_action_stop">หยุด</string>
|
||||
</resources>
|
12
android/app/src/main/res/values-uk/strings.xml
Normal file
|
@ -0,0 +1,12 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<resources>
|
||||
<string name="app_name">Aves</string>
|
||||
<string name="wallpaper">Шпалери</string>
|
||||
<string name="search_shortcut_short_label">Пошук</string>
|
||||
<string name="videos_shortcut_short_label">Відео</string>
|
||||
<string name="analysis_channel_name">Сканувати медіа</string>
|
||||
<string name="analysis_service_description">Сканувати зображення та відео</string>
|
||||
<string name="analysis_notification_action_stop">Стоп</string>
|
||||
<string name="app_widget_label">Фоторамка</string>
|
||||
<string name="analysis_notification_default_title">Сканування медіа</string>
|
||||
</resources>
|
12
android/app/src/main/res/values-zh-rTW/strings.xml
Normal file
|
@ -0,0 +1,12 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<resources>
|
||||
<string name="videos_shortcut_short_label">影片</string>
|
||||
<string name="wallpaper">桌布</string>
|
||||
<string name="analysis_notification_default_title">掃描媒體中</string>
|
||||
<string name="app_name">Aves</string>
|
||||
<string name="app_widget_label">相框</string>
|
||||
<string name="search_shortcut_short_label">搜尋</string>
|
||||
<string name="analysis_channel_name">媒體掃描</string>
|
||||
<string name="analysis_service_description">掃描圖片和影片</string>
|
||||
<string name="analysis_notification_action_stop">停止</string>
|
||||
</resources>
|
|
@ -2,4 +2,4 @@
|
|||
|
||||
<b>Navigation and search</b> is an important part of <i>Aves</i>. The goal is for users to easily flow from albums to photos to tags to maps, etc.
|
||||
|
||||
<i>Aves</i> integrates with Android (from <b>API 19 to 33</b>, i.e. from KitKat to Android 13) with features such as <b>widgets</b>, <b>app shortcuts</b>, <b>screen saver</b> and <b>global search</b> handling. It also works as a <b>media viewer and picker</b>.
|
||||
<i>Aves</i> integrates with Android (from KitKat to Android 13, including Android TV) with features such as <b>widgets</b>, <b>app shortcuts</b>, <b>screen saver</b> and <b>global search</b> handling. It also works as a <b>media viewer and picker</b>.
|
Before Width: | Height: | Size: 92 KiB After Width: | Height: | Size: 93 KiB |
Before Width: | Height: | Size: 87 KiB After Width: | Height: | Size: 88 KiB |
5
fastlane/metadata/android/en-US/changelogs/88.txt
Normal file
|
@ -0,0 +1,5 @@
|
|||
In v1.7.8:
|
||||
- Android TV support
|
||||
- long-press on the move/rate/tag quick actions in the viewer for quicker actions
|
||||
- enjoy the app in Romanian, Lithuanian, Norwegian (Bokmål), Chinese (Traditional) & Ukrainian
|
||||
Full changelog available on GitHub
|
5
fastlane/metadata/android/en-US/changelogs/8801.txt
Normal file
|
@ -0,0 +1,5 @@
|
|||
In v1.7.8:
|
||||
- Android TV support
|
||||
- long-press on the move/rate/tag quick actions in the viewer for quicker actions
|
||||
- enjoy the app in Romanian, Lithuanian, Norwegian (Bokmål), Chinese (Traditional) & Ukrainian
|
||||
Full changelog available on GitHub
|
|
@ -2,4 +2,4 @@
|
|||
|
||||
<b>Navigation and search</b> is an important part of <i>Aves</i>. The goal is for users to easily flow from albums to photos to tags to maps, etc.
|
||||
|
||||
<i>Aves</i> integrates with Android (from <b>API 19 to 33</b>, i.e. from KitKat to Android 13) with features such as <b>widgets</b>, <b>app shortcuts</b>, <b>screen saver</b> and <b>global search</b> handling. It also works as a <b>media viewer and picker</b>.
|
||||
<i>Aves</i> integrates with Android (from KitKat to Android 13, including Android TV) with features such as <b>widgets</b>, <b>app shortcuts</b>, <b>screen saver</b> and <b>global search</b> handling. It also works as a <b>media viewer and picker</b>.
|
Before Width: | Height: | Size: 92 KiB After Width: | Height: | Size: 92 KiB |
|
@ -2,4 +2,4 @@
|
|||
|
||||
La <b>navegación y búsqueda</b> son las partes más importantes de <i>Aves</i>. Su propósito es que los usuarios puedan fácilmente ir de álbumes a fotos, etiquetas, mapas, etc.
|
||||
|
||||
<i>Aves</i> se integra con Android (desde <b>API 19 a 33</b>, es decir, desde KitKat a Android 13) con funciones como <b>widgets</b>, <b>accesos directos a aplicaciones </b>, manejo de <b>salvapantallas</b> y <b>búsqueda global</b>. También funciona como un <b>visor y selector de medios</b>.
|
||||
<i>Aves</i> se integra con Android (desde KitKat hasta Android 13, incluido Android TV) con funciones como <b>complementos</b>, <b>accesos directos a aplicaciones</b>, <b>protector de pantalla</b> y <b>búsqueda global</b>. También funciona como un <b>visor y selector de medios</b>.
|
Before Width: | Height: | Size: 94 KiB After Width: | Height: | Size: 94 KiB |
|
@ -2,4 +2,4 @@
|
|||
|
||||
<b>Navigation and search</b> is an important part of <i>Aves</i>. The goal is for users to easily flow from albums to photos to tags to maps, etc.
|
||||
|
||||
<i>Aves</i> integrates with Android (from <b>API 19 to 33</b>, i.e. from KitKat to Android 13) with features such as <b>widgets</b>, <b>app shortcuts</b>, <b>screen saver</b> and <b>global search</b> handling. It also works as a <b>media viewer and picker</b>.
|
||||
<i>Aves</i> integrates with Android (from KitKat to Android 13, including Android TV) with features such as <b>widgets</b>, <b>app shortcuts</b>, <b>screen saver</b> and <b>global search</b> handling. It also works as a <b>media viewer and picker</b>.
|
|
@ -2,4 +2,4 @@
|
|||
|
||||
<b>La navigation et la recherche</b> sont une partie importante d’<i>Aves</i>. Le but est que les utilisateurs puissent passer facilement des albums aux photos, des photos aux tags, des tags aux cartes, etc.
|
||||
|
||||
<i>Aves</i> s’intègre avec Android (de l’<b>API 19 à 33</b>, c’est-à-dire de KitKat à Android 13) avec des fonctionnalités telles que les <b>widgets</b>, les <b>raccourcis d’application</b>, <b>économiseur d’écran</b> et la <b>recherche globale</b>. Il est également possible de l’utiliser comme <b>visionneuse et sélecteur de médias</b>.
|
||||
<i>Aves</i> s’intègre avec Android (de KitKat à Android 13, y compris Android TV) avec des fonctionnalités telles que les <b>widgets</b>, les <b>raccourcis d’application</b>, <b>économiseur d’écran</b> et la <b>recherche globale</b>. Il est également possible de l’utiliser comme <b>visionneuse et sélecteur de médias</b>.
|
Before Width: | Height: | Size: 94 KiB After Width: | Height: | Size: 94 KiB |
|
@ -2,4 +2,4 @@
|
|||
|
||||
A <b>navegación e busca</b> é unha parte importante de <i>Aves</i>. O obxectivo é que os usuarios poidan fluír facilmente de álbums a fotos, a etiquetas a mapas, etc.
|
||||
|
||||
<i>Aves</i> intégrase con Android (de <b>API 19 a 33</b>, é dicir, de KitKat a Android 13) con funcións como <b>widgets</b>, <b>atallos de aplicacións </b>, <b>salvapantallas</b> e manexo da <b>busca global</b>. Tamén funciona como <b>visor e selector de medios</b>.
|
||||
<i>Aves</i> intégrase con Android (desde KitKat ata Android 13, incluíndo Android TV) con funcións como <b>complementos</b>, <b>atallos de aplicacións</b>, <b>salvapantallas</b> e <b>busca global</b>. Tamén funciona como <b>visor e selector de medios</b>.
|
Before Width: | Height: | Size: 91 KiB After Width: | Height: | Size: 92 KiB |
|
@ -2,4 +2,4 @@
|
|||
|
||||
<b>Navigazione e ricerca</b> sono una parte importante di <i>Aves</i>. L'obiettivo è che gli utenti passino facilmente dagli album alle foto, ai tag, alle mappe, ecc.
|
||||
|
||||
<i>Aves</i> si integra con Android (da <b>API 19 a 33</b>, cioè da KitKat ad Android 13) con caratteristiche come <b>collegamenti alle app</b> e la gestione della <b>ricerca globale</b>. Funziona anche come <b>visualizzazione e raccolta di media</b>.
|
||||
<i>Aves</i> si integra con Android (da KitKat ad Android 13, anche Android TV) con funzionalità come <b>widget</b>, <b>scorciatoie app</b>, <b>salvaschermo</b> e gestione della <b>ricerca globale</b>. Funziona anche come <b>visualizzazione e raccolta di media</b>.
|
Before Width: | Height: | Size: 93 KiB After Width: | Height: | Size: 93 KiB |
Before Width: | Height: | Size: 89 KiB After Width: | Height: | Size: 90 KiB |
|
@ -2,4 +2,4 @@
|
|||
|
||||
<b>Navigation and search</b> is an important part of <i>Aves</i>. The goal is for users to easily flow from albums to photos to tags to maps, etc.
|
||||
|
||||
<i>Aves</i> integrates with Android (from <b>API 19 to 33</b>, i.e. from KitKat to Android 13) with features such as <b>widgets</b>, <b>app shortcuts</b>, <b>screen saver</b> and <b>global search</b> handling. It also works as a <b>media viewer and picker</b>.
|
||||
<i>Aves</i> integrates with Android (from KitKat to Android 13, including Android TV) with features such as <b>widgets</b>, <b>app shortcuts</b>, <b>screen saver</b> and <b>global search</b> handling. It also works as a <b>media viewer and picker</b>.
|
Before Width: | Height: | Size: 86 KiB After Width: | Height: | Size: 86 KiB |
|
@ -1,5 +1,5 @@
|
|||
<i>Aves</i> can handle all sorts of images and videos, including your typical JPEGs and MP4s, but also more exotic things like <b>multi-page TIFFs, SVGs, old AVIs and more</b>! It scans your media collection to identify <b>motion photos</b>, <b>panoramas</b> (aka photo spheres), <b>360° videos</b>, as well as <b>GeoTIFF</b> files.
|
||||
<i>„Aves”</i> gali tvarkyti įvairius vaizdus ir vaizdo įrašus, įskaitant įprastus JPEG ir MP4, o taip pat ir egzotiškesnius, pvz., <b>kelių puslapių TIFF, SVG, senus AVI ir dar daugiau</b>! Ji nuskaito jūsų medijos kolekciją, kad nustatytų <b>judančių nuotraukų</b>, <b>panoramų</b> (dar žinomų kaip nuotraukų-sferomis), <b>360° vaizdo įrašų</b>, taip pat <b>GeoTIFF</b> failus.
|
||||
|
||||
<b>Navigation and search</b> is an important part of <i>Aves</i>. The goal is for users to easily flow from albums to photos to tags to maps, etc.
|
||||
<b>Naršymas ir paieška</b> yra svarbi <i>„Aves”</i> dalis. Tikslas yra, kad vartotojai galėtų lengvai pereiti nuo albumų prie nuotraukų, žymų, žemėlapių ir kt.
|
||||
|
||||
<i>Aves</i> integrates with Android (from <b>API 19 to 33</b>, i.e. from KitKat to Android 13) with features such as <b>widgets</b>, <b>app shortcuts</b>, <b>screen saver</b> and <b>global search</b> handling. It also works as a <b>media viewer and picker</b>.
|
||||
<i>„Aves”</i> integruojasi su „Android” (nuo 19 iki 33 API, t. y. nuo „KitKat” iki 13 versijos „Android”) su tokiomis funkcijomis kaip <b>valdiklių</b>, <b>programėlių nuorodų</b> , <b>ekrano užsklandų</b> ir <b>globalios paieškos</b> palaikymu. Ji taip pat veikia kaip <b>medijos peržiūros priemonė ir rinkiklis</b>.
|
BIN
fastlane/metadata/android/lt/images/featureGraphic.png
Normal file
After Width: | Height: | Size: 16 KiB |
BIN
fastlane/metadata/android/lt/images/phoneScreenshots/1.png
Normal file
After Width: | Height: | Size: 282 KiB |
BIN
fastlane/metadata/android/lt/images/phoneScreenshots/2.png
Normal file
After Width: | Height: | Size: 499 KiB |
BIN
fastlane/metadata/android/lt/images/phoneScreenshots/3.png
Normal file
After Width: | Height: | Size: 214 KiB |
BIN
fastlane/metadata/android/lt/images/phoneScreenshots/4.png
Normal file
After Width: | Height: | Size: 94 KiB |
BIN
fastlane/metadata/android/lt/images/phoneScreenshots/5.png
Normal file
After Width: | Height: | Size: 68 KiB |
BIN
fastlane/metadata/android/lt/images/phoneScreenshots/6.png
Normal file
After Width: | Height: | Size: 341 KiB |
BIN
fastlane/metadata/android/lt/images/phoneScreenshots/7.png
Normal file
After Width: | Height: | Size: 346 KiB |
|
@ -1 +1 @@
|
|||
Gallery and metadata explorer
|
||||
Galerijos ir metaduomenų naršyklė
|
BIN
fastlane/metadata/android/nb-NO/images/featureGraphic.png
Normal file
After Width: | Height: | Size: 16 KiB |
BIN
fastlane/metadata/android/nb-NO/images/phoneScreenshots/1.png
Normal file
After Width: | Height: | Size: 278 KiB |
BIN
fastlane/metadata/android/nb-NO/images/phoneScreenshots/2.png
Normal file
After Width: | Height: | Size: 499 KiB |
BIN
fastlane/metadata/android/nb-NO/images/phoneScreenshots/3.png
Normal file
After Width: | Height: | Size: 208 KiB |
BIN
fastlane/metadata/android/nb-NO/images/phoneScreenshots/4.png
Normal file
After Width: | Height: | Size: 93 KiB |
BIN
fastlane/metadata/android/nb-NO/images/phoneScreenshots/5.png
Normal file
After Width: | Height: | Size: 70 KiB |
BIN
fastlane/metadata/android/nb-NO/images/phoneScreenshots/6.png
Normal file
After Width: | Height: | Size: 340 KiB |
BIN
fastlane/metadata/android/nb-NO/images/phoneScreenshots/7.png
Normal file
After Width: | Height: | Size: 342 KiB |
|
@ -2,4 +2,4 @@
|
|||
|
||||
<b>Navigation and search</b> is an important part of <i>Aves</i>. The goal is for users to easily flow from albums to photos to tags to maps, etc.
|
||||
|
||||
<i>Aves</i> integrates with Android (from <b>API 19 to 33</b>, i.e. from KitKat to Android 13) with features such as <b>widgets</b>, <b>app shortcuts</b>, <b>screen saver</b> and <b>global search</b> handling. It also works as a <b>media viewer and picker</b>.
|
||||
<i>Aves</i> integrates with Android (from KitKat to Android 13, including Android TV) with features such as <b>widgets</b>, <b>app shortcuts</b>, <b>screen saver</b> and <b>global search</b> handling. It also works as a <b>media viewer and picker</b>.
|
Before Width: | Height: | Size: 92 KiB After Width: | Height: | Size: 93 KiB |
5
fastlane/metadata/android/nn/full_description.txt
Normal file
|
@ -0,0 +1,5 @@
|
|||
<i>Aves</i> can handle all sorts of images and videos, including your typical JPEGs and MP4s, but also more exotic things like <b>multi-page TIFFs, SVGs, old AVIs and more</b>! It scans your media collection to identify <b>motion photos</b>, <b>panoramas</b> (aka photo spheres), <b>360° videos</b>, as well as <b>GeoTIFF</b> files.
|
||||
|
||||
<b>Navigation and search</b> is an important part of <i>Aves</i>. The goal is for users to easily flow from albums to photos to tags to maps, etc.
|
||||
|
||||
<i>Aves</i> integrates with Android (from KitKat to Android 13, including Android TV) with features such as <b>widgets</b>, <b>app shortcuts</b>, <b>screen saver</b> and <b>global search</b> handling. It also works as a <b>media viewer and picker</b>.
|
1
fastlane/metadata/android/nn/short_description.txt
Normal file
|
@ -0,0 +1 @@
|
|||
Galleri- og metadatagranskar
|
Before Width: | Height: | Size: 94 KiB After Width: | Height: | Size: 94 KiB |
|
@ -2,4 +2,4 @@
|
|||
|
||||
<b>Navigația și căutarea</b> sunt o parte importantă a <i>Aves</i>. Scopul este ca utilizatorii să treacă cu ușurință de la albume la fotografii la etichete la hărți etc.
|
||||
|
||||
<i>Aves</i> se integrează cu Android (de la <b>API 19 la 33</b>, adică de la KitKat la Android 13) cu funcții precum <b>widgeturi</b>, <b>comenzi rapide pentru aplicații</b>, <b>protector de ecran</b> și gestionarea <b>căutării globale</b>. De asemenea, funcționează ca <b>vizionator și selector de conținut media</b>.
|
||||
<i>Aves</i> se integrează cu Android (începând de la <b>API 19 la 33</b>, adică de la KitKat la Android 13) cu funcții precum <b>widget-uri</b>, <b>comenzi rapide pentru aplicații</b>, <b>protector de ecran</b> și gestionarea <b>căutării globale</b>. De asemenea, funcționează ca <b>vizionator și selector de conținut media</b>.
|
Before Width: | Height: | Size: 91 KiB After Width: | Height: | Size: 91 KiB |
Before Width: | Height: | Size: 93 KiB After Width: | Height: | Size: 94 KiB |
5
fastlane/metadata/android/th/full_description.txt
Normal file
|
@ -0,0 +1,5 @@
|
|||
<i>Aves</i> can handle all sorts of images and videos, including your typical JPEGs and MP4s, but also more exotic things like <b>multi-page TIFFs, SVGs, old AVIs and more</b>! It scans your media collection to identify <b>motion photos</b>, <b>panoramas</b> (aka photo spheres), <b>360° videos</b>, as well as <b>GeoTIFF</b> files.
|
||||
|
||||
<b>Navigation and search</b> is an important part of <i>Aves</i>. The goal is for users to easily flow from albums to photos to tags to maps, etc.
|
||||
|
||||
<i>Aves</i> integrates with Android (from KitKat to Android 13, including Android TV) with features such as <b>widgets</b>, <b>app shortcuts</b>, <b>screen saver</b> and <b>global search</b> handling. It also works as a <b>media viewer and picker</b>.
|
1
fastlane/metadata/android/th/short_description.txt
Normal file
|
@ -0,0 +1 @@
|
|||
Gallery and metadata explorer
|
Before Width: | Height: | Size: 93 KiB After Width: | Height: | Size: 93 KiB |
5
fastlane/metadata/android/uk/full_description.txt
Normal file
|
@ -0,0 +1,5 @@
|
|||
<i>Aves</i> може обробляти всі види зображень і відео, включаючи типові JPEG та MP4, а також більш екзотичні речі, такі як <b>багатосторінкові TIFF, SVG, старі AVI тощо</b>! Він сканує вашу медіа-колекцію, щоб визначити <b>фотографії з рухом</b>, <b>панорами</b> (так звані фото сфери), <b>360° відео</b>, а також <b>GeoTIFF</b> файли.
|
||||
|
||||
<b>Навігація та пошук</b> є важливою частиною <i>Aves</i>. Мета полягає в тому, щоб користувачі легко переходили від альбомів до фотографій, від тегів до карт тощо.
|
||||
|
||||
<i>Aves</i> інтегрується з Android (від KitKat до Android 13, включаючи Android TV) пропонуючи такі можливості як <b>віджети</b>, <b>ярлики додатка</b>, <b>заставка екрану</b> та работа з <b>глобальним пошуком</b>. Він також працює як <b>переглядач і засоб вибору медіа</b>.
|
BIN
fastlane/metadata/android/uk/images/featureGraphic.png
Normal file
After Width: | Height: | Size: 14 KiB |
BIN
fastlane/metadata/android/uk/images/phoneScreenshots/1.png
Normal file
After Width: | Height: | Size: 283 KiB |
BIN
fastlane/metadata/android/uk/images/phoneScreenshots/2.png
Normal file
After Width: | Height: | Size: 499 KiB |
BIN
fastlane/metadata/android/uk/images/phoneScreenshots/3.png
Normal file
After Width: | Height: | Size: 214 KiB |
BIN
fastlane/metadata/android/uk/images/phoneScreenshots/4.png
Normal file
After Width: | Height: | Size: 88 KiB |
BIN
fastlane/metadata/android/uk/images/phoneScreenshots/5.png
Normal file
After Width: | Height: | Size: 71 KiB |
BIN
fastlane/metadata/android/uk/images/phoneScreenshots/6.png
Normal file
After Width: | Height: | Size: 341 KiB |
BIN
fastlane/metadata/android/uk/images/phoneScreenshots/7.png
Normal file
After Width: | Height: | Size: 340 KiB |
1
fastlane/metadata/android/uk/short_description.txt
Normal file
|
@ -0,0 +1 @@
|
|||
Галерея та провідник метаданих
|
Before Width: | Height: | Size: 87 KiB After Width: | Height: | Size: 87 KiB |
5
fastlane/metadata/android/zh-Hant/full_description.txt
Normal file
|
@ -0,0 +1,5 @@
|
|||
<i>Aves</i> 能夠操作所有種類的圖片和影片, 包括典型的 JPEGs 和 MP4s, 而且更多奇特的類型像 <b>multi-page TIFFs, SVGs, old AVIs 等等</b>! 他掃描你的媒體收藏以識別出 <b>動態相片</b>, <b>全景圖</b> (又稱球體照片), <b>360° 影片</b>, 和<b>GeoTIFF</b> 檔案.
|
||||
|
||||
<b>瀏覽和搜尋</b> 是 <i>Aves</i>重要的一部份. 目的是為了讓使用者能夠輕易的從相簿, 相片, 標籤, 地圖, 等等之間順暢切換.
|
||||
|
||||
<i>Aves</i> 與 Android (從 KitKat 到 Android 13, 包括 Android TV) 整合, 具有特色像是 <b>小工具</b>, <b>app 捷徑</b>, <b>螢幕保護程式</b> 和 <b>全域搜尋</b> 等功能. 還可以當成 <b>媒體檢視和選擇器</b>.
|
BIN
fastlane/metadata/android/zh-Hant/images/featureGraphic.png
Normal file
After Width: | Height: | Size: 14 KiB |
BIN
fastlane/metadata/android/zh-Hant/images/phoneScreenshots/1.png
Normal file
After Width: | Height: | Size: 280 KiB |
BIN
fastlane/metadata/android/zh-Hant/images/phoneScreenshots/2.png
Normal file
After Width: | Height: | Size: 498 KiB |
BIN
fastlane/metadata/android/zh-Hant/images/phoneScreenshots/3.png
Normal file
After Width: | Height: | Size: 211 KiB |
BIN
fastlane/metadata/android/zh-Hant/images/phoneScreenshots/4.png
Normal file
After Width: | Height: | Size: 87 KiB |
BIN
fastlane/metadata/android/zh-Hant/images/phoneScreenshots/5.png
Normal file
After Width: | Height: | Size: 71 KiB |
BIN
fastlane/metadata/android/zh-Hant/images/phoneScreenshots/6.png
Normal file
After Width: | Height: | Size: 340 KiB |
BIN
fastlane/metadata/android/zh-Hant/images/phoneScreenshots/7.png
Normal file
After Width: | Height: | Size: 338 KiB |
1
fastlane/metadata/android/zh-Hant/short_description.txt
Normal file
|
@ -0,0 +1 @@
|
|||
圖庫和元資料瀏覽器
|
|
@ -1 +1,20 @@
|
|||
{}
|
||||
{
|
||||
"filePickerDoNotShowHiddenFiles": "عدم إظهار الملفات المخفية",
|
||||
"@filePickerDoNotShowHiddenFiles": {},
|
||||
"tagPlaceholderPlace": "المكان",
|
||||
"@tagPlaceholderPlace": {},
|
||||
"tagPlaceholderCountry": "البلد",
|
||||
"@tagPlaceholderCountry": {},
|
||||
"sourceViewerPageTitle": "المصدر",
|
||||
"@sourceViewerPageTitle": {},
|
||||
"panoramaDisableSensorControl": "تعطيل التحكم في المستشعر",
|
||||
"@panoramaDisableSensorControl": {},
|
||||
"filePickerNoItems": "لا توجد عناصر",
|
||||
"@filePickerNoItems": {},
|
||||
"filePickerOpenFrom": "فتح من",
|
||||
"@filePickerOpenFrom": {},
|
||||
"filePickerShowHiddenFiles": "إظهار الملفات المخفية",
|
||||
"@filePickerShowHiddenFiles": {},
|
||||
"panoramaEnableSensorControl": "تمكين التحكم في المستشعر",
|
||||
"@panoramaEnableSensorControl": {}
|
||||
}
|
||||
|
|
|
@ -347,7 +347,7 @@
|
|||
"@binEntriesConfirmationDialogMessage": {},
|
||||
"deleteEntriesConfirmationDialogMessage": "{count, plural, =1{Sicher, dass dieses Element gelöscht werden soll?} other{Sicher, dass diese {count} Elemente gelöscht werden sollen?}}",
|
||||
"@deleteEntriesConfirmationDialogMessage": {},
|
||||
"moveUndatedConfirmationDialogMessage": "Speichern Sie Artikeldaten, bevor Sie fortfahren?",
|
||||
"moveUndatedConfirmationDialogMessage": "Daten speichern, bevor es weitergeht?",
|
||||
"@moveUndatedConfirmationDialogMessage": {},
|
||||
"moveUndatedConfirmationDialogSetDate": "Datum einstellen",
|
||||
"@moveUndatedConfirmationDialogSetDate": {},
|
||||
|
@ -439,8 +439,8 @@
|
|||
"@removeEntryMetadataDialogMore": {},
|
||||
"removeEntryMetadataMotionPhotoXmpWarningDialogMessage": "XMP ist erforderlich, um das Video innerhalb eines bewegten Bildes abzuspielen.\n\nSicher, dass es entfernt werden soll?",
|
||||
"@removeEntryMetadataMotionPhotoXmpWarningDialogMessage": {},
|
||||
"convertMotionPhotoToStillImageWarningDialogMessage": "Sicher?",
|
||||
"@convertMotionPhotoToStillImageWarningDialogMessage": {},
|
||||
"genericDangerWarningDialogMessage": "Sicher?",
|
||||
"@genericDangerWarningDialogMessage": {},
|
||||
"videoSpeedDialogLabel": "Wiedergabegeschwindigkeit",
|
||||
"@videoSpeedDialogLabel": {},
|
||||
"videoStreamSelectionDialogVideo": "Video",
|
||||
|
@ -1089,9 +1089,9 @@
|
|||
"@mapZoomOutTooltip": {},
|
||||
"mapPointNorthUpTooltip": "Richtung Norden aufwärts",
|
||||
"@mapPointNorthUpTooltip": {},
|
||||
"mapAttributionOsmHot": "Kartendaten © [OpenStreetMap](https://www.openstreetmap.org/copyright) Mitwirkende - Kacheln von [HOT](https://www.hotosm.org/) - Gehostet von [OSM France](https://openstreetmap.fr/)",
|
||||
"mapAttributionOsmHot": "Kartendaten © [OpenStreetMap](https://www.openstreetmap.org/copyright) Mitwirkende • Kacheln von [HOT](https://www.hotosm.org/) • Gehostet von [OSM France](https://openstreetmap.fr/)",
|
||||
"@mapAttributionOsmHot": {},
|
||||
"mapAttributionStamen": "Kartendaten © [OpenStreetMap](https://www.openstreetmap.org/copyright) Mitwirkende - Kacheln von [Stamen Design](http://stamen.com), [CC BY 3.0](http://creativecommons.org/licenses/by/3.0)",
|
||||
"mapAttributionStamen": "Kartendaten © [OpenStreetMap](https://www.openstreetmap.org/copyright) Mitwirkende • Kacheln von [Stamen Design](https://stamen.com), [CC BY 3.0](https://creativecommons.org/licenses/by/3.0)",
|
||||
"@mapAttributionStamen": {},
|
||||
"openMapPageTooltip": "Auf der Karte anzeigen",
|
||||
"@openMapPageTooltip": {},
|
||||
|
@ -1158,5 +1158,35 @@
|
|||
"editEntryLocationDialogSetCustom": "Benutzerdefinierten Standort festlegen",
|
||||
"@editEntryLocationDialogSetCustom": {},
|
||||
"entryInfoActionExportMetadata": "Metadaten exportieren",
|
||||
"@entryInfoActionExportMetadata": {}
|
||||
"@entryInfoActionExportMetadata": {},
|
||||
"subtitlePositionTop": "Oben",
|
||||
"@subtitlePositionTop": {},
|
||||
"subtitlePositionBottom": "Unten",
|
||||
"@subtitlePositionBottom": {},
|
||||
"settingsSubtitleThemeTextPositionTile": "Textposition",
|
||||
"@settingsSubtitleThemeTextPositionTile": {},
|
||||
"filterNoAddressLabel": "Keine Adresse",
|
||||
"@filterNoAddressLabel": {},
|
||||
"settingsSubtitleThemeTextPositionDialogTitle": "Textposition",
|
||||
"@settingsSubtitleThemeTextPositionDialogTitle": {},
|
||||
"settingsWidgetDisplayedItem": "Angezeigtes Element",
|
||||
"@settingsWidgetDisplayedItem": {},
|
||||
"widgetDisplayedItemRandom": "Zufällig",
|
||||
"@widgetDisplayedItemRandom": {},
|
||||
"widgetDisplayedItemMostRecent": "Neueste",
|
||||
"@widgetDisplayedItemMostRecent": {},
|
||||
"settingsViewerShowRatingTags": "Bewertung & Tags anzeigen",
|
||||
"@settingsViewerShowRatingTags": {},
|
||||
"filterAspectRatioPortraitLabel": "Hochformat",
|
||||
"@filterAspectRatioPortraitLabel": {},
|
||||
"filterAspectRatioLandscapeLabel": "Querformat",
|
||||
"@filterAspectRatioLandscapeLabel": {},
|
||||
"entryActionShareImageOnly": "Nur das Bild teilen",
|
||||
"@entryActionShareImageOnly": {},
|
||||
"keepScreenOnVideoPlayback": "Während der Videowiedergabe",
|
||||
"@keepScreenOnVideoPlayback": {},
|
||||
"entryInfoActionRemoveLocation": "Standort entfernen",
|
||||
"@entryInfoActionRemoveLocation": {},
|
||||
"entryActionShareVideoOnly": "Nur das Video teilen",
|
||||
"@entryActionShareVideoOnly": {}
|
||||
}
|
||||
|
|
|
@ -439,8 +439,8 @@
|
|||
"@removeEntryMetadataDialogMore": {},
|
||||
"removeEntryMetadataMotionPhotoXmpWarningDialogMessage": "Απαιτείται XMP για την αναπαραγωγή του βίντεο μέσα σε μια κινούμενη φωτογραφία.\n\nΕίστε βέβαιοι ότι θέλετε να αφαιρεθεί;",
|
||||
"@removeEntryMetadataMotionPhotoXmpWarningDialogMessage": {},
|
||||
"convertMotionPhotoToStillImageWarningDialogMessage": "Είστε βέβαιοι;",
|
||||
"@convertMotionPhotoToStillImageWarningDialogMessage": {},
|
||||
"genericDangerWarningDialogMessage": "Είστε βέβαιοι;",
|
||||
"@genericDangerWarningDialogMessage": {},
|
||||
"videoSpeedDialogLabel": "Ταχύτητα αναπαραγωγής",
|
||||
"@videoSpeedDialogLabel": {},
|
||||
"videoStreamSelectionDialogVideo": "Βίντεο",
|
||||
|
@ -1091,7 +1091,7 @@
|
|||
"@mapPointNorthUpTooltip": {},
|
||||
"mapAttributionOsmHot": "Map data © [OpenStreetMap](https://www.openstreetmap.org/copyright) contributors • Tiles by [HOT](https://www.hotosm.org/) • Hosted by [OSM France](https://openstreetmap.fr/)",
|
||||
"@mapAttributionOsmHot": {},
|
||||
"mapAttributionStamen": "Map data © [OpenStreetMap](https://www.openstreetmap.org/copyright) contributors • Tiles by [Stamen Design](http://stamen.com), [CC BY 3.0](http://creativecommons.org/licenses/by/3.0)",
|
||||
"mapAttributionStamen": "Map data © [OpenStreetMap](https://www.openstreetmap.org/copyright) contributors • Tiles by [Stamen Design](https://stamen.com), [CC BY 3.0](https://creativecommons.org/licenses/by/3.0)",
|
||||
"@mapAttributionStamen": {},
|
||||
"openMapPageTooltip": "Προβολή στη σελίδα του χάρτη",
|
||||
"@openMapPageTooltip": {},
|
||||
|
@ -1172,5 +1172,29 @@
|
|||
"settingsSubtitleThemeTextPositionDialogTitle": "Θεση κειμενου",
|
||||
"@settingsSubtitleThemeTextPositionDialogTitle": {},
|
||||
"entryInfoActionExportMetadata": "Εξαγωγή μεταδεδομένων",
|
||||
"@entryInfoActionExportMetadata": {}
|
||||
"@entryInfoActionExportMetadata": {},
|
||||
"columnCount": "{count, plural, =1{1 στήλη} other{{count} στήλες}}",
|
||||
"@columnCount": {
|
||||
"placeholders": {
|
||||
"count": {}
|
||||
}
|
||||
},
|
||||
"keepScreenOnVideoPlayback": "Κατά την αναπαραγωγή βίντεο",
|
||||
"@keepScreenOnVideoPlayback": {},
|
||||
"settingsAccessibilityShowPinchGestureAlternatives": "Εμφάνιση χειρονομιών πολλαπλής αφής",
|
||||
"@settingsAccessibilityShowPinchGestureAlternatives": {},
|
||||
"entryActionShareImageOnly": "Κοινοποίηση μόνο την εικόνα",
|
||||
"@entryActionShareImageOnly": {},
|
||||
"entryActionShareVideoOnly": "Κοινοποίηση μόνο το βίντεο",
|
||||
"@entryActionShareVideoOnly": {},
|
||||
"entryInfoActionRemoveLocation": "Αφαίρεση τοποθεσίας",
|
||||
"@entryInfoActionRemoveLocation": {},
|
||||
"filterAspectRatioLandscapeLabel": "Oριζόντιες εικόνες",
|
||||
"@filterAspectRatioLandscapeLabel": {},
|
||||
"filterAspectRatioPortraitLabel": "Κατακόρυφες εικόνες",
|
||||
"@filterAspectRatioPortraitLabel": {},
|
||||
"filterNoAddressLabel": "Χωρίς διεύθυνση",
|
||||
"@filterNoAddressLabel": {},
|
||||
"settingsViewerShowRatingTags": "Εμφάνιση βαθμολογίας & ετικετών",
|
||||
"@settingsViewerShowRatingTags": {}
|
||||
}
|
||||
|
|
|
@ -9,6 +9,12 @@
|
|||
"count": {}
|
||||
}
|
||||
},
|
||||
"columnCount": "{count, plural, =1{1 column} other{{count} columns}}",
|
||||
"@columnCount": {
|
||||
"placeholders": {
|
||||
"count": {}
|
||||
}
|
||||
},
|
||||
|
||||
"timeSeconds": "{seconds, plural, =1{1 second} other{{seconds} seconds}}",
|
||||
"@timeSeconds": {
|
||||
|
@ -90,6 +96,8 @@
|
|||
"entryActionFlip": "Flip horizontally",
|
||||
"entryActionPrint": "Print",
|
||||
"entryActionShare": "Share",
|
||||
"entryActionShareImageOnly": "Share image only",
|
||||
"entryActionShareVideoOnly": "Share video only",
|
||||
"entryActionViewSource": "View source",
|
||||
"entryActionShowGeoTiffOnMap": "Show as map overlay",
|
||||
"entryActionConvertMotionPhotoToStillImage": "Convert to still image",
|
||||
|
@ -123,10 +131,14 @@
|
|||
"entryInfoActionEditTags": "Edit tags",
|
||||
"entryInfoActionRemoveMetadata": "Remove metadata",
|
||||
"entryInfoActionExportMetadata": "Export metadata",
|
||||
"entryInfoActionRemoveLocation": "Remove location",
|
||||
|
||||
"filterAspectRatioLandscapeLabel": "Landscape",
|
||||
"filterAspectRatioPortraitLabel": "Portrait",
|
||||
"filterBinLabel": "Recycle bin",
|
||||
"filterFavouriteLabel": "Favorite",
|
||||
"filterNoDateLabel": "Undated",
|
||||
"filterNoAddressLabel": "No address",
|
||||
"filterNoLocationLabel": "Unlocated",
|
||||
"filterNoRatingLabel": "Unrated",
|
||||
"filterNoTagLabel": "Untagged",
|
||||
|
@ -189,6 +201,7 @@
|
|||
"nameConflictStrategySkip": "Skip",
|
||||
|
||||
"keepScreenOnNever": "Never",
|
||||
"keepScreenOnVideoPlayback": "During video playback",
|
||||
"keepScreenOnViewerOnly": "Viewer page only",
|
||||
"keepScreenOnAlways": "Always",
|
||||
|
||||
|
@ -409,7 +422,6 @@
|
|||
"removeEntryMetadataDialogMore": "More",
|
||||
|
||||
"removeEntryMetadataMotionPhotoXmpWarningDialogMessage": "XMP is required to play the video inside a motion photo.\n\nAre you sure you want to remove it?",
|
||||
"convertMotionPhotoToStillImageWarningDialogMessage": "Are you sure?",
|
||||
|
||||
"videoSpeedDialogLabel": "Playback speed",
|
||||
|
||||
|
@ -422,6 +434,7 @@
|
|||
|
||||
"genericSuccessFeedback": "Done!",
|
||||
"genericFailureFeedback": "Failed",
|
||||
"genericDangerWarningDialogMessage": "Are you sure?",
|
||||
|
||||
"menuActionConfigureView": "View",
|
||||
"menuActionSelect": "Select",
|
||||
|
@ -716,6 +729,7 @@
|
|||
"settingsViewerShowMinimap": "Show minimap",
|
||||
"settingsViewerShowInformation": "Show information",
|
||||
"settingsViewerShowInformationSubtitle": "Show title, date, location, etc.",
|
||||
"settingsViewerShowRatingTags": "Show rating & tags",
|
||||
"settingsViewerShowShootingDetails": "Show shooting details",
|
||||
"settingsViewerShowOverlayThumbnails": "Show thumbnails",
|
||||
"settingsViewerEnableOverlayBlurEffect": "Blur effect",
|
||||
|
@ -792,6 +806,7 @@
|
|||
"settingsRemoveAnimationsTile": "Remove animations",
|
||||
"settingsRemoveAnimationsDialogTitle": "Remove Animations",
|
||||
"settingsTimeToTakeActionTile": "Time to take action",
|
||||
"settingsAccessibilityShowPinchGestureAlternatives": "Show multi-touch gesture alternatives",
|
||||
|
||||
"settingsDisplaySectionTitle": "Display",
|
||||
"settingsThemeBrightnessTile": "Theme",
|
||||
|
@ -857,7 +872,7 @@
|
|||
"mapZoomOutTooltip": "Zoom out",
|
||||
"mapPointNorthUpTooltip": "Point north up",
|
||||
"mapAttributionOsmHot": "Map data © [OpenStreetMap](https://www.openstreetmap.org/copyright) contributors • Tiles by [HOT](https://www.hotosm.org/) • Hosted by [OSM France](https://openstreetmap.fr/)",
|
||||
"mapAttributionStamen": "Map data © [OpenStreetMap](https://www.openstreetmap.org/copyright) contributors • Tiles by [Stamen Design](http://stamen.com), [CC BY 3.0](http://creativecommons.org/licenses/by/3.0)",
|
||||
"mapAttributionStamen": "Map data © [OpenStreetMap](https://www.openstreetmap.org/copyright) contributors • Tiles by [Stamen Design](https://stamen.com), [CC BY 3.0](https://creativecommons.org/licenses/by/3.0)",
|
||||
"openMapPageTooltip": "View on Map page",
|
||||
"mapEmptyRegion": "No images in this region",
|
||||
|
||||
|
|
|
@ -421,8 +421,8 @@
|
|||
"@removeEntryMetadataDialogMore": {},
|
||||
"removeEntryMetadataMotionPhotoXmpWarningDialogMessage": "XMP es necesario para reproducir la animación de una foto en movimiento.\n\n¿Está seguro de que desea removerlo?",
|
||||
"@removeEntryMetadataMotionPhotoXmpWarningDialogMessage": {},
|
||||
"convertMotionPhotoToStillImageWarningDialogMessage": "¿Está seguro?",
|
||||
"@convertMotionPhotoToStillImageWarningDialogMessage": {},
|
||||
"genericDangerWarningDialogMessage": "¿Está seguro?",
|
||||
"@genericDangerWarningDialogMessage": {},
|
||||
"videoSpeedDialogLabel": "Velocidad de reproducción",
|
||||
"@videoSpeedDialogLabel": {},
|
||||
"videoStreamSelectionDialogVideo": "Video",
|
||||
|
@ -1035,7 +1035,7 @@
|
|||
"@mapPointNorthUpTooltip": {},
|
||||
"mapAttributionOsmHot": "Datos de mapas © [OpenStreetMap](https://www.openstreetmap.org/copyright) contribuidores • Teselas por [HOT](https://www.hotosm.org/) • Alojado por [OSM France](https://openstreetmap.fr/)",
|
||||
"@mapAttributionOsmHot": {},
|
||||
"mapAttributionStamen": "Datos de mapas © [OpenStreetMap](https://www.openstreetmap.org/copyright) contribuidores • Teselas por [Stamen Design](http://stamen.com), [CC BY 3.0](http://creativecommons.org/licenses/by/3.0)",
|
||||
"mapAttributionStamen": "Datos de mapas © [OpenStreetMap](https://www.openstreetmap.org/copyright) contribuidores • Teselas por [Stamen Design](https://stamen.com), [CC BY 3.0](https://creativecommons.org/licenses/by/3.0)",
|
||||
"@mapAttributionStamen": {},
|
||||
"openMapPageTooltip": "Ver en página del mapa",
|
||||
"@openMapPageTooltip": {},
|
||||
|
@ -1172,5 +1172,29 @@
|
|||
"settingsSubtitleThemeTextPositionDialogTitle": "Posición del texto",
|
||||
"@settingsSubtitleThemeTextPositionDialogTitle": {},
|
||||
"settingsWidgetDisplayedItem": "Elemento para mostrar",
|
||||
"@settingsWidgetDisplayedItem": {}
|
||||
"@settingsWidgetDisplayedItem": {},
|
||||
"filterNoAddressLabel": "Sin dirección",
|
||||
"@filterNoAddressLabel": {},
|
||||
"filterAspectRatioLandscapeLabel": "Paisaje",
|
||||
"@filterAspectRatioLandscapeLabel": {},
|
||||
"filterAspectRatioPortraitLabel": "Retrato",
|
||||
"@filterAspectRatioPortraitLabel": {},
|
||||
"settingsViewerShowRatingTags": "Mostrar la valoración y las etiquetas",
|
||||
"@settingsViewerShowRatingTags": {},
|
||||
"entryInfoActionRemoveLocation": "Eliminar la ubicación",
|
||||
"@entryInfoActionRemoveLocation": {},
|
||||
"entryActionShareVideoOnly": "Compartir sólo el vídeo",
|
||||
"@entryActionShareVideoOnly": {},
|
||||
"entryActionShareImageOnly": "Compartir sólo la imagen",
|
||||
"@entryActionShareImageOnly": {},
|
||||
"keepScreenOnVideoPlayback": "Durante la reproducción de vídeo",
|
||||
"@keepScreenOnVideoPlayback": {},
|
||||
"settingsAccessibilityShowPinchGestureAlternatives": "Mostrar alternativas a gestos multitáctiles",
|
||||
"@settingsAccessibilityShowPinchGestureAlternatives": {},
|
||||
"columnCount": "{count, plural, =1{1 columna} other{{count} columnas}}",
|
||||
"@columnCount": {
|
||||
"placeholders": {
|
||||
"count": {}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1 +1,301 @@
|
|||
{}
|
||||
{
|
||||
"entryActionSetAs": "قرار دادن به عنوان",
|
||||
"@entryActionSetAs": {},
|
||||
"chipActionSetCover": "گذاشتن به عنوان سرپوش",
|
||||
"@chipActionSetCover": {},
|
||||
"chipActionRename": "تغییر نام فایل",
|
||||
"@chipActionRename": {},
|
||||
"sourceStateCataloguing": "در حال فهرست سازی",
|
||||
"@sourceStateCataloguing": {},
|
||||
"chipActionDelete": "حذف",
|
||||
"@chipActionDelete": {},
|
||||
"chipActionHide": "پنهان کردن",
|
||||
"@chipActionHide": {},
|
||||
"showTooltip": "نمایش",
|
||||
"@showTooltip": {},
|
||||
"showButtonLabel": "نمایش",
|
||||
"@showButtonLabel": {},
|
||||
"nextTooltip": "بعدی",
|
||||
"@nextTooltip": {},
|
||||
"videoActionReplay10": "برگشت 10 ثانیه به عقب",
|
||||
"@videoActionReplay10": {},
|
||||
"cancelTooltip": "لغو",
|
||||
"@cancelTooltip": {},
|
||||
"entryActionPrint": "چاپ",
|
||||
"@entryActionPrint": {},
|
||||
"slideshowActionShowInCollection": "نمایش در مجموعه",
|
||||
"@slideshowActionShowInCollection": {},
|
||||
"nextButtonLabel": "بعدی",
|
||||
"@nextButtonLabel": {},
|
||||
"pickTooltip": "انتخاب",
|
||||
"@pickTooltip": {},
|
||||
"actionRemove": "حذف",
|
||||
"@actionRemove": {},
|
||||
"chipActionGoToTagPage": "نمایش در برچسب ها",
|
||||
"@chipActionGoToTagPage": {},
|
||||
"applyButtonLabel": "اعمال کردن",
|
||||
"@applyButtonLabel": {},
|
||||
"entryActionRename": "تغییر نام",
|
||||
"@entryActionRename": {},
|
||||
"welcomeMessage": "به اِیوْز خوش آمدید",
|
||||
"@welcomeMessage": {},
|
||||
"welcomeTermsToggle": "من با شرایط و مقررات استفاده از خدمات و سرویسها موافق هستم",
|
||||
"@welcomeTermsToggle": {},
|
||||
"chipActionPin": "سنجاق به بالا",
|
||||
"@chipActionPin": {},
|
||||
"entryActionExport": "خروجی",
|
||||
"@entryActionExport": {},
|
||||
"continueButtonLabel": "ادامه",
|
||||
"@continueButtonLabel": {},
|
||||
"welcomeOptional": "اختیاری",
|
||||
"@welcomeOptional": {},
|
||||
"previousTooltip": "قبلی",
|
||||
"@previousTooltip": {},
|
||||
"chipActionUnpin": "برداشتن سنجاق از بالا",
|
||||
"@chipActionUnpin": {},
|
||||
"resetTooltip": "بازنشانی",
|
||||
"@resetTooltip": {},
|
||||
"sourceStateLocatingCountries": "در حال مکان یابی کشور ها",
|
||||
"@sourceStateLocatingCountries": {},
|
||||
"entryActionConvert": "تبدیل فایل",
|
||||
"@entryActionConvert": {},
|
||||
"hideButtonLabel": "پنهان",
|
||||
"@hideButtonLabel": {},
|
||||
"hideTooltip": "پنهان",
|
||||
"@hideTooltip": {},
|
||||
"chipActionCreateAlbum": "ایجاد البوم",
|
||||
"@chipActionCreateAlbum": {},
|
||||
"filterNoRatingLabel": "بدون رتبه",
|
||||
"@filterNoRatingLabel": {},
|
||||
"timeSeconds": "{seconds, plural, =1{1 ثانیع} other{{seconds} ثانیه}}",
|
||||
"@timeSeconds": {
|
||||
"placeholders": {
|
||||
"seconds": {}
|
||||
}
|
||||
},
|
||||
"deleteButtonLabel": "حذف کردن",
|
||||
"@deleteButtonLabel": {},
|
||||
"itemCount": "{count, plural, =1{1 فایل} other{{count} فایل}}",
|
||||
"@itemCount": {
|
||||
"placeholders": {
|
||||
"count": {}
|
||||
}
|
||||
},
|
||||
"chipActionGoToAlbumPage": "نمایش در البوم ها",
|
||||
"@chipActionGoToAlbumPage": {},
|
||||
"filterNoTagLabel": "بدون برچسب",
|
||||
"@filterNoTagLabel": {},
|
||||
"appName": "اِیوْز",
|
||||
"@appName": {},
|
||||
"entryActionRestore": "برگرداندن",
|
||||
"@entryActionRestore": {},
|
||||
"sourceStateLocatingPlaces": "در حال مکان یابی",
|
||||
"@sourceStateLocatingPlaces": {},
|
||||
"saveTooltip": "ذخیره",
|
||||
"@saveTooltip": {},
|
||||
"sourceStateLoading": "در حال بارگیری",
|
||||
"@sourceStateLoading": {},
|
||||
"doNotAskAgain": "دوباره نپرس",
|
||||
"@doNotAskAgain": {},
|
||||
"entryActionDelete": "حذف",
|
||||
"@entryActionDelete": {},
|
||||
"timeMinutes": "{minutes, plural, =1{1 دقیقه} other{{minutes} دقیقه}}",
|
||||
"@timeMinutes": {
|
||||
"placeholders": {
|
||||
"minutes": {}
|
||||
}
|
||||
},
|
||||
"entryActionInfo": "اطلاعات",
|
||||
"@entryActionInfo": {},
|
||||
"entryActionRotateCCW": "چرخش پادساعتگرد",
|
||||
"@entryActionRotateCCW": {},
|
||||
"chipActionGoToCountryPage": "نمایش در کشور ها",
|
||||
"@chipActionGoToCountryPage": {},
|
||||
"entryActionConvertMotionPhotoToStillImage": "تبدیل به عکس ثابت",
|
||||
"@entryActionConvertMotionPhotoToStillImage": {},
|
||||
"entryActionViewMotionPhotoVideo": "باز کردن ویدئو",
|
||||
"@entryActionViewMotionPhotoVideo": {},
|
||||
"videoActionSetSpeed": "سرعت پخش",
|
||||
"@videoActionSetSpeed": {},
|
||||
"entryInfoActionEditTitleDescription": "ویرایش عنوان و توضیحات",
|
||||
"@entryInfoActionEditTitleDescription": {},
|
||||
"entryActionRotateCW": "چرخش ساعتگرد",
|
||||
"@entryActionRotateCW": {},
|
||||
"entryInfoActionEditLocation": "ویرایش مکان",
|
||||
"@entryInfoActionEditLocation": {},
|
||||
"entryActionFlip": "ایینه کردن افقی",
|
||||
"@entryActionFlip": {},
|
||||
"entryActionShare": "اشتراک گذاری",
|
||||
"@entryActionShare": {},
|
||||
"entryActionViewSource": "مشاهده منبع",
|
||||
"@entryActionViewSource": {},
|
||||
"entryActionOpen": "باز کردن با برنامه ای دیگر",
|
||||
"@entryActionOpen": {},
|
||||
"entryActionOpenMap": "نمایش در برنامه نقشه",
|
||||
"@entryActionOpenMap": {},
|
||||
"videoActionCaptureFrame": "ذخیره فریم",
|
||||
"@videoActionCaptureFrame": {},
|
||||
"entryInfoActionEditDate": "ویرایش تاریخ",
|
||||
"@entryInfoActionEditDate": {},
|
||||
"filterBinLabel": "سطل اشغال",
|
||||
"@filterBinLabel": {},
|
||||
"filterNoDateLabel": "بدون تاریخ",
|
||||
"@filterNoDateLabel": {},
|
||||
"timeDays": "{days, plural, =1{1 روز} other{{days} روز}}",
|
||||
"@timeDays": {
|
||||
"placeholders": {
|
||||
"days": {}
|
||||
}
|
||||
},
|
||||
"changeTooltip": "تغییر",
|
||||
"@changeTooltip": {},
|
||||
"doubleBackExitMessage": "دوباره \"عقب\" را فشار دهید تا خارج شوید.",
|
||||
"@doubleBackExitMessage": {},
|
||||
"entryActionShareImageOnly": "فقط اشتراک گذاری عکس",
|
||||
"@entryActionShareImageOnly": {},
|
||||
"entryActionShareVideoOnly": "فقط اشتراک گذاری ویدئو",
|
||||
"@entryActionShareVideoOnly": {},
|
||||
"videoActionMute": "بی صدا کردن",
|
||||
"@videoActionMute": {},
|
||||
"videoActionUnmute": "با صدا کردن",
|
||||
"@videoActionUnmute": {},
|
||||
"videoActionSkip10": "جلو رفتن 10 ثانیه",
|
||||
"@videoActionSkip10": {},
|
||||
"videoActionSettings": "تنظیمات",
|
||||
"@videoActionSettings": {},
|
||||
"entryInfoActionEditRating": "ویرایش رتبه",
|
||||
"@entryInfoActionEditRating": {},
|
||||
"entryInfoActionEditTags": "ویرایش برچسب ها",
|
||||
"@entryInfoActionEditTags": {},
|
||||
"filterNoAddressLabel": "بدون ادرس",
|
||||
"@filterNoAddressLabel": {},
|
||||
"entryInfoActionRemoveLocation": "حذف مکان",
|
||||
"@entryInfoActionRemoveLocation": {},
|
||||
"filterNoLocationLabel": "بدون مکان",
|
||||
"@filterNoLocationLabel": {},
|
||||
"viewDialogGroupSectionTitle": "گروه بندی",
|
||||
"@viewDialogGroupSectionTitle": {},
|
||||
"coverDialogTabApp": "برنامه",
|
||||
"@coverDialogTabApp": {},
|
||||
"appPickDialogTitle": "انتخاب برنامه",
|
||||
"@appPickDialogTitle": {},
|
||||
"aboutLinkPolicy": "سیاست حفظ حریم خصوصی",
|
||||
"@aboutLinkPolicy": {},
|
||||
"collectionExportFailureFeedback": "{count, plural, =1{استخراج صفحه ناموفق} other{استخراج {count} صفحه ناموفق}}",
|
||||
"@collectionExportFailureFeedback": {
|
||||
"placeholders": {
|
||||
"count": {}
|
||||
}
|
||||
},
|
||||
"settingsActionExport": "خروجی گرفتن",
|
||||
"@settingsActionExport": {},
|
||||
"filterNoTitleLabel": "بدون نام",
|
||||
"@filterNoTitleLabel": {},
|
||||
"coverDialogTabColor": "رنگ",
|
||||
"@coverDialogTabColor": {},
|
||||
"filterTypePanoramaLabel": "پاناروما",
|
||||
"@filterTypePanoramaLabel": {},
|
||||
"unitSystemMetric": "متریک",
|
||||
"@unitSystemMetric": {},
|
||||
"videoLoopModeAlways": "همیشه",
|
||||
"@videoLoopModeAlways": {},
|
||||
"menuActionSlideshow": "نمایش اسلایدی",
|
||||
"@menuActionSlideshow": {},
|
||||
"entryActionRemoveFavourite": "حذف از مورد علاقه ها",
|
||||
"@entryActionRemoveFavourite": {},
|
||||
"videoLoopModeNever": "هیچ وقت",
|
||||
"@videoLoopModeNever": {},
|
||||
"chipActionFilterIn": "اضافه به فیلتر",
|
||||
"@chipActionFilterIn": {},
|
||||
"settingsActionExportDialogTitle": "خروجی گرفتن",
|
||||
"@settingsActionExportDialogTitle": {},
|
||||
"aboutBugSectionTitle": "گزارشات خرابی",
|
||||
"@aboutBugSectionTitle": {},
|
||||
"filterRecentlyAddedLabel": "تازه اضافه شده",
|
||||
"@filterRecentlyAddedLabel": {},
|
||||
"filterTypeSphericalVideoLabel": "ویدئو 360°",
|
||||
"@filterTypeSphericalVideoLabel": {},
|
||||
"focalLength": "{length} میلیمتر",
|
||||
"@focalLength": {
|
||||
"placeholders": {
|
||||
"length": {
|
||||
"type": "String",
|
||||
"example": "5.4"
|
||||
}
|
||||
}
|
||||
},
|
||||
"albumPickPageTitleExport": "خروجی گرفتن به البوم",
|
||||
"@albumPickPageTitleExport": {},
|
||||
"filterMimeVideoLabel": "ویدئو",
|
||||
"@filterMimeVideoLabel": {},
|
||||
"filterTypeMotionPhotoLabel": "تصویر متحرک",
|
||||
"@filterTypeMotionPhotoLabel": {},
|
||||
"unitSystemImperial": "امپریال",
|
||||
"@unitSystemImperial": {},
|
||||
"videoControlsPlaySeek": "پخش، برگشت به عقب، جلو رفتن",
|
||||
"@videoControlsPlaySeek": {},
|
||||
"videoControlsPlayOutside": "باز کردن با برنامهای دیگر",
|
||||
"@videoControlsPlayOutside": {},
|
||||
"videoLoopModeShortOnly": "فقط برای ویدئو های کوتاه",
|
||||
"@videoLoopModeShortOnly": {},
|
||||
"entryActionEdit": "ویرایش",
|
||||
"@entryActionEdit": {},
|
||||
"entryActionAddFavourite": "اضافه کردن به مورد علاقه ها",
|
||||
"@entryActionAddFavourite": {},
|
||||
"filterFavouriteLabel": "مورد علاقه",
|
||||
"@filterFavouriteLabel": {},
|
||||
"mapZoomOutTooltip": "کوچک نمایی",
|
||||
"@mapZoomOutTooltip": {},
|
||||
"entryInfoActionRemoveMetadata": "حذف متادیتا",
|
||||
"@entryInfoActionRemoveMetadata": {},
|
||||
"menuActionStats": "آمار",
|
||||
"@menuActionStats": {},
|
||||
"exportEntryDialogWidth": "عرض",
|
||||
"@exportEntryDialogWidth": {},
|
||||
"videoControlsPlay": "پخش",
|
||||
"@videoControlsPlay": {},
|
||||
"mapZoomInTooltip": "بزرگ نمایی",
|
||||
"@mapZoomInTooltip": {},
|
||||
"chipActionFilterOut": "حذف از فیلتر",
|
||||
"@chipActionFilterOut": {},
|
||||
"entryActionRotateScreen": "چرخش صفحه",
|
||||
"@entryActionRotateScreen": {},
|
||||
"drawerCollectionFavourites": "مورد علاقه ها",
|
||||
"@drawerCollectionFavourites": {},
|
||||
"filterMimeImageLabel": "عکس",
|
||||
"@filterMimeImageLabel": {},
|
||||
"menuActionMap": "نقشه",
|
||||
"@menuActionMap": {},
|
||||
"aboutPageTitle": "درباره",
|
||||
"@aboutPageTitle": {},
|
||||
"entryInfoActionExportMetadata": "خروجی گرفتن از متادیتا",
|
||||
"@entryInfoActionExportMetadata": {},
|
||||
"exportEntryDialogFormat": "فرمت:",
|
||||
"@exportEntryDialogFormat": {},
|
||||
"collectionEmptyFavourites": "هیچ مورد علاقه ای وجود ندارد",
|
||||
"@collectionEmptyFavourites": {},
|
||||
"appExportSettings": "تنظیمات",
|
||||
"@appExportSettings": {},
|
||||
"appExportFavourites": "مورد علاقه ها",
|
||||
"@appExportFavourites": {},
|
||||
"exportEntryDialogHeight": "طول",
|
||||
"@exportEntryDialogHeight": {},
|
||||
"aboutTranslatorsSectionTitle": "مترجم ها",
|
||||
"@aboutTranslatorsSectionTitle": {},
|
||||
"aboutLicensesAndroidLibrariesSectionTitle": "کتابخانه های اندروید",
|
||||
"@aboutLicensesAndroidLibrariesSectionTitle": {},
|
||||
"aboutLicensesFlutterPackagesSectionTitle": "بسته های Flutter",
|
||||
"@aboutLicensesFlutterPackagesSectionTitle": {},
|
||||
"aboutBugReportButton": "گزارش",
|
||||
"@aboutBugReportButton": {},
|
||||
"aboutLicensesFlutterPluginsSectionTitle": "پلاگین های Flutter",
|
||||
"@aboutLicensesFlutterPluginsSectionTitle": {},
|
||||
"aboutBugCopyInfoButton": "کپی",
|
||||
"@aboutBugCopyInfoButton": {},
|
||||
"aboutLicensesDartPackagesSectionTitle": "بسته های Dart",
|
||||
"@aboutLicensesDartPackagesSectionTitle": {},
|
||||
"policyPageTitle": "سیاست حفظ حریم خصوصی",
|
||||
"@policyPageTitle": {},
|
||||
"collectionPickPageTitle": "انتخاب",
|
||||
"@collectionPickPageTitle": {}
|
||||
}
|
||||
|
|
|
@ -443,8 +443,8 @@
|
|||
"@removeEntryMetadataDialogMore": {},
|
||||
"removeEntryMetadataMotionPhotoXmpWarningDialogMessage": "Les métadonnées XMP sont nécessaires pour lire la vidéo d’une photo animée.\n\nVoulez-vous vraiment les supprimer ?",
|
||||
"@removeEntryMetadataMotionPhotoXmpWarningDialogMessage": {},
|
||||
"convertMotionPhotoToStillImageWarningDialogMessage": "Êtes-vous sûr ?",
|
||||
"@convertMotionPhotoToStillImageWarningDialogMessage": {},
|
||||
"genericDangerWarningDialogMessage": "Êtes-vous sûr ?",
|
||||
"@genericDangerWarningDialogMessage": {},
|
||||
"videoSpeedDialogLabel": "Vitesse de lecture",
|
||||
"@videoSpeedDialogLabel": {},
|
||||
"videoStreamSelectionDialogVideo": "Vidéo",
|
||||
|
@ -1095,7 +1095,7 @@
|
|||
"@mapPointNorthUpTooltip": {},
|
||||
"mapAttributionOsmHot": "Données © les contributeurs d’[OpenStreetMap](https://www.openstreetmap.org/copyright) • Fond de carte par [HOT](https://www.hotosm.org/) • Hébergé par [OSM France](https://openstreetmap.fr/)",
|
||||
"@mapAttributionOsmHot": {},
|
||||
"mapAttributionStamen": "Données © les contributeurs d’[OpenStreetMap](https://www.openstreetmap.org/copyright) • Fond de carte par [Stamen Design](http://stamen.com), [CC BY 3.0](http://creativecommons.org/licenses/by/3.0)",
|
||||
"mapAttributionStamen": "Données © les contributeurs d’[OpenStreetMap](https://www.openstreetmap.org/copyright) • Fond de carte par [Stamen Design](https://stamen.com), [CC BY 3.0](https://creativecommons.org/licenses/by/3.0)",
|
||||
"@mapAttributionStamen": {},
|
||||
"openMapPageTooltip": "Ouvrir la page Carte",
|
||||
"@openMapPageTooltip": {},
|
||||
|
@ -1172,5 +1172,29 @@
|
|||
"settingsSubtitleThemeTextPositionDialogTitle": "Position du texte",
|
||||
"@settingsSubtitleThemeTextPositionDialogTitle": {},
|
||||
"entryInfoActionExportMetadata": "Exporter les métadonnées",
|
||||
"@entryInfoActionExportMetadata": {}
|
||||
"@entryInfoActionExportMetadata": {},
|
||||
"filterNoAddressLabel": "Sans adresse",
|
||||
"@filterNoAddressLabel": {},
|
||||
"filterAspectRatioPortraitLabel": "Portrait",
|
||||
"@filterAspectRatioPortraitLabel": {},
|
||||
"filterAspectRatioLandscapeLabel": "Paysage",
|
||||
"@filterAspectRatioLandscapeLabel": {},
|
||||
"settingsViewerShowRatingTags": "Afficher la notation et les libellés",
|
||||
"@settingsViewerShowRatingTags": {},
|
||||
"entryActionShareImageOnly": "Partager l’image seulement",
|
||||
"@entryActionShareImageOnly": {},
|
||||
"entryActionShareVideoOnly": "Partager la vidéo seulement",
|
||||
"@entryActionShareVideoOnly": {},
|
||||
"entryInfoActionRemoveLocation": "Retirer le lieu",
|
||||
"@entryInfoActionRemoveLocation": {},
|
||||
"keepScreenOnVideoPlayback": "Pendant la lecture de vidéos",
|
||||
"@keepScreenOnVideoPlayback": {},
|
||||
"columnCount": "{count, plural, =1{1 colonne} other{{count} colonnes}}",
|
||||
"@columnCount": {
|
||||
"placeholders": {
|
||||
"count": {}
|
||||
}
|
||||
},
|
||||
"settingsAccessibilityShowPinchGestureAlternatives": "Afficher des alternatives aux interactions multitactiles",
|
||||
"@settingsAccessibilityShowPinchGestureAlternatives": {}
|
||||
}
|
||||
|
|
|
@ -159,7 +159,7 @@
|
|||
"@filterTypeGeotiffLabel": {},
|
||||
"filterMimeVideoLabel": "Vídeo",
|
||||
"@filterMimeVideoLabel": {},
|
||||
"mapStyleStamenToner": "Stamen Maps - Stamen Design",
|
||||
"mapStyleStamenToner": "Stamen Toner",
|
||||
"@mapStyleStamenToner": {},
|
||||
"mapStyleStamenWatercolor": "Stamen Watercolor (con sombreamento e cores)",
|
||||
"@mapStyleStamenWatercolor": {},
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"appName": "Aves",
|
||||
"@appName": {},
|
||||
"welcomeMessage": "Selamat datang ke Aves",
|
||||
"welcomeMessage": "Selamat datang di Aves",
|
||||
"@welcomeMessage": {},
|
||||
"welcomeOptional": "Opsional",
|
||||
"@welcomeOptional": {},
|
||||
|
@ -429,8 +429,8 @@
|
|||
"@removeEntryMetadataDialogMore": {},
|
||||
"removeEntryMetadataMotionPhotoXmpWarningDialogMessage": "XMP diperlukan untuk memutar video di dalam Foto bergerak.\n\nAnda yakin ingin menghapusnya?",
|
||||
"@removeEntryMetadataMotionPhotoXmpWarningDialogMessage": {},
|
||||
"convertMotionPhotoToStillImageWarningDialogMessage": "Apakah kamu yakin?",
|
||||
"@convertMotionPhotoToStillImageWarningDialogMessage": {},
|
||||
"genericDangerWarningDialogMessage": "Apakah kamu yakin?",
|
||||
"@genericDangerWarningDialogMessage": {},
|
||||
"videoSpeedDialogLabel": "Kecepatan pemutaran",
|
||||
"@videoSpeedDialogLabel": {},
|
||||
"videoStreamSelectionDialogVideo": "Video",
|
||||
|
@ -1067,7 +1067,7 @@
|
|||
"@mapPointNorthUpTooltip": {},
|
||||
"mapAttributionOsmHot": "Data peta © [OpenStreetMap](https://www.openstreetmap.org/copyright) kontributor • Tile oleh [HOT](https://www.hotosm.org/) • Diselenggarakan oleh [OSM France](https://openstreetmap.fr/)",
|
||||
"@mapAttributionOsmHot": {},
|
||||
"mapAttributionStamen": "Data peta © [OpenStreetMap](https://www.openstreetmap.org/copyright) kontributor • Tile oleh [Stamen Design](http://stamen.com), [CC BY 3.0](http://creativecommons.org/licenses/by/3.0)",
|
||||
"mapAttributionStamen": "Data peta © [OpenStreetMap](https://www.openstreetmap.org/copyright) kontributor • Tile oleh [Stamen Design](https://stamen.com), [CC BY 3.0](https://creativecommons.org/licenses/by/3.0)",
|
||||
"@mapAttributionStamen": {},
|
||||
"openMapPageTooltip": "Lihat di halaman Peta",
|
||||
"@openMapPageTooltip": {},
|
||||
|
@ -1156,5 +1156,45 @@
|
|||
"tagPlaceholderPlace": "Tempat",
|
||||
"@tagPlaceholderPlace": {},
|
||||
"editEntryLocationDialogSetCustom": "Terapkan lokasi kustom",
|
||||
"@editEntryLocationDialogSetCustom": {}
|
||||
"@editEntryLocationDialogSetCustom": {},
|
||||
"subtitlePositionTop": "Atas",
|
||||
"@subtitlePositionTop": {},
|
||||
"subtitlePositionBottom": "Bawah",
|
||||
"@subtitlePositionBottom": {},
|
||||
"widgetDisplayedItemRandom": "Acak",
|
||||
"@widgetDisplayedItemRandom": {},
|
||||
"entryActionShareImageOnly": "Bagikan gambar saja",
|
||||
"@entryActionShareImageOnly": {},
|
||||
"entryActionShareVideoOnly": "Bagikan video saja",
|
||||
"@entryActionShareVideoOnly": {},
|
||||
"entryInfoActionRemoveLocation": "Hapus lokasi",
|
||||
"@entryInfoActionRemoveLocation": {},
|
||||
"filterAspectRatioLandscapeLabel": "Lanskap",
|
||||
"@filterAspectRatioLandscapeLabel": {},
|
||||
"filterAspectRatioPortraitLabel": "Potret",
|
||||
"@filterAspectRatioPortraitLabel": {},
|
||||
"settingsSubtitleThemeTextPositionTile": "Posisi teks",
|
||||
"@settingsSubtitleThemeTextPositionTile": {},
|
||||
"settingsSubtitleThemeTextPositionDialogTitle": "Posisi Teks",
|
||||
"@settingsSubtitleThemeTextPositionDialogTitle": {},
|
||||
"filterNoAddressLabel": "Tidak ada alamat",
|
||||
"@filterNoAddressLabel": {},
|
||||
"widgetDisplayedItemMostRecent": "Terkini",
|
||||
"@widgetDisplayedItemMostRecent": {},
|
||||
"settingsViewerShowRatingTags": "Tampilkan peringkat & tag",
|
||||
"@settingsViewerShowRatingTags": {},
|
||||
"keepScreenOnVideoPlayback": "Saat pemutaran video",
|
||||
"@keepScreenOnVideoPlayback": {},
|
||||
"entryInfoActionExportMetadata": "Ekspor metadata",
|
||||
"@entryInfoActionExportMetadata": {},
|
||||
"settingsWidgetDisplayedItem": "Barang yang ditampilkan",
|
||||
"@settingsWidgetDisplayedItem": {},
|
||||
"columnCount": "{count, plural, other{{count} kolom}}",
|
||||
"@columnCount": {
|
||||
"placeholders": {
|
||||
"count": {}
|
||||
}
|
||||
},
|
||||
"settingsAccessibilityShowPinchGestureAlternatives": "Tampilkan alternatif gestur multisentuh",
|
||||
"@settingsAccessibilityShowPinchGestureAlternatives": {}
|
||||
}
|
||||
|
|
|
@ -439,8 +439,8 @@
|
|||
"@removeEntryMetadataDialogMore": {},
|
||||
"removeEntryMetadataMotionPhotoXmpWarningDialogMessage": "XMP è richiesto per riprodurre il video all’interno di una foto in movimento.\n\nSei sicuro di volerlo rimuovere?",
|
||||
"@removeEntryMetadataMotionPhotoXmpWarningDialogMessage": {},
|
||||
"convertMotionPhotoToStillImageWarningDialogMessage": "Sei sicuro?",
|
||||
"@convertMotionPhotoToStillImageWarningDialogMessage": {},
|
||||
"genericDangerWarningDialogMessage": "Sei sicuro?",
|
||||
"@genericDangerWarningDialogMessage": {},
|
||||
"videoSpeedDialogLabel": "Velocità di riproduzione",
|
||||
"@videoSpeedDialogLabel": {},
|
||||
"videoStreamSelectionDialogVideo": "Video",
|
||||
|
@ -1089,9 +1089,9 @@
|
|||
"@mapZoomOutTooltip": {},
|
||||
"mapPointNorthUpTooltip": "Punta a nord verso l’alto",
|
||||
"@mapPointNorthUpTooltip": {},
|
||||
"mapAttributionOsmHot": "Dati della mappa © collaboratori di [OpenStreetMap](https://www.openstreetmap.org/copyright) - Titoli di [HOT](https://www.hotosm.org/) - Ospitato da [OSM France](https://openstreetmap.fr/)",
|
||||
"mapAttributionOsmHot": "Dati della mappa © collaboratori di [OpenStreetMap](https://www.openstreetmap.org/copyright) • Titoli di [HOT](https://www.hotosm.org/) • Ospitato da [OSM France](https://openstreetmap.fr/)",
|
||||
"@mapAttributionOsmHot": {},
|
||||
"mapAttributionStamen": "Dati della mappa © collaboratori di [OpenStreetMap](https://www.openstreetmap.org/copyright) - Titoli di [Stamen Design](http://stamen.com), [CC BY 3.0](http://creativecommons.org/licenses/by/3.0)",
|
||||
"mapAttributionStamen": "Dati della mappa © collaboratori di [OpenStreetMap](https://www.openstreetmap.org/copyright) • Titoli di [Stamen Design](https://stamen.com), [CC BY 3.0](https://creativecommons.org/licenses/by/3.0)",
|
||||
"@mapAttributionStamen": {},
|
||||
"openMapPageTooltip": "Visualizza sulla pagina della mappa",
|
||||
"@openMapPageTooltip": {},
|
||||
|
@ -1172,5 +1172,29 @@
|
|||
"settingsSubtitleThemeTextPositionDialogTitle": "Posizione testo",
|
||||
"@settingsSubtitleThemeTextPositionDialogTitle": {},
|
||||
"settingsWidgetDisplayedItem": "Elemento visualizzato",
|
||||
"@settingsWidgetDisplayedItem": {}
|
||||
"@settingsWidgetDisplayedItem": {},
|
||||
"settingsViewerShowRatingTags": "Mostra valutazione & etichette",
|
||||
"@settingsViewerShowRatingTags": {},
|
||||
"columnCount": "{count, plural, =1{1 colonna} other{{count} colonne}}",
|
||||
"@columnCount": {
|
||||
"placeholders": {
|
||||
"count": {}
|
||||
}
|
||||
},
|
||||
"entryInfoActionRemoveLocation": "Rimuovi posizione",
|
||||
"@entryInfoActionRemoveLocation": {},
|
||||
"filterAspectRatioLandscapeLabel": "Orizzontale",
|
||||
"@filterAspectRatioLandscapeLabel": {},
|
||||
"filterAspectRatioPortraitLabel": "Verticale",
|
||||
"@filterAspectRatioPortraitLabel": {},
|
||||
"keepScreenOnVideoPlayback": "Durante la riproduzione video",
|
||||
"@keepScreenOnVideoPlayback": {},
|
||||
"settingsAccessibilityShowPinchGestureAlternatives": "Mostra gesti multi-touch alternativi",
|
||||
"@settingsAccessibilityShowPinchGestureAlternatives": {},
|
||||
"entryActionShareImageOnly": "Condividi solo immagine",
|
||||
"@entryActionShareImageOnly": {},
|
||||
"entryActionShareVideoOnly": "Condividi solo video",
|
||||
"@entryActionShareVideoOnly": {},
|
||||
"filterNoAddressLabel": "Senza indirizzo",
|
||||
"@filterNoAddressLabel": {}
|
||||
}
|
||||
|
|
|
@ -421,8 +421,8 @@
|
|||
"@removeEntryMetadataDialogMore": {},
|
||||
"removeEntryMetadataMotionPhotoXmpWarningDialogMessage": "モーションフォト内の動画を再生するには XMP が必要です。\n\n削除しますか?",
|
||||
"@removeEntryMetadataMotionPhotoXmpWarningDialogMessage": {},
|
||||
"convertMotionPhotoToStillImageWarningDialogMessage": "適用しますか?",
|
||||
"@convertMotionPhotoToStillImageWarningDialogMessage": {},
|
||||
"genericDangerWarningDialogMessage": "適用しますか?",
|
||||
"@genericDangerWarningDialogMessage": {},
|
||||
"videoSpeedDialogLabel": "再生速度",
|
||||
"@videoSpeedDialogLabel": {},
|
||||
"videoStreamSelectionDialogVideo": "動画",
|
||||
|
@ -1033,7 +1033,7 @@
|
|||
"@mapPointNorthUpTooltip": {},
|
||||
"mapAttributionOsmHot": "地図データ © [OpenStreetMap](https://www.openstreetmap.org/copyright) contributors • Tiles by [HOT](https://www.hotosm.org/) • Hosted by [OSM France](https://openstreetmap.fr/)",
|
||||
"@mapAttributionOsmHot": {},
|
||||
"mapAttributionStamen": "地図データ © [OpenStreetMap](https://www.openstreetmap.org/copyright) contributors • Tiles by [Stamen Design](http://stamen.com), [CC BY 3.0](http://creativecommons.org/licenses/by/3.0)",
|
||||
"mapAttributionStamen": "地図データ © [OpenStreetMap](https://www.openstreetmap.org/copyright) contributors • Tiles by [Stamen Design](https://stamen.com), [CC BY 3.0](https://creativecommons.org/licenses/by/3.0)",
|
||||
"@mapAttributionStamen": {},
|
||||
"openMapPageTooltip": "地図ページで表示",
|
||||
"@openMapPageTooltip": {},
|
||||
|
@ -1154,5 +1154,23 @@
|
|||
"statsTopAlbumsSectionTitle": "トップアルバム",
|
||||
"@statsTopAlbumsSectionTitle": {},
|
||||
"editEntryLocationDialogSetCustom": "カスタムの場所を設定する",
|
||||
"@editEntryLocationDialogSetCustom": {}
|
||||
"@editEntryLocationDialogSetCustom": {},
|
||||
"widgetDisplayedItemRandom": "ランダム",
|
||||
"@widgetDisplayedItemRandom": {},
|
||||
"entryActionShareImageOnly": "画像のみ共有",
|
||||
"@entryActionShareImageOnly": {},
|
||||
"entryActionShareVideoOnly": "動画のみ共有",
|
||||
"@entryActionShareVideoOnly": {},
|
||||
"entryInfoActionRemoveLocation": "位置情報を削除",
|
||||
"@entryInfoActionRemoveLocation": {},
|
||||
"widgetDisplayedItemMostRecent": "最新",
|
||||
"@widgetDisplayedItemMostRecent": {},
|
||||
"settingsViewerShowRatingTags": "評価とタグを表示",
|
||||
"@settingsViewerShowRatingTags": {},
|
||||
"settingsSubtitleThemeTextPositionDialogTitle": "テキストの位置",
|
||||
"@settingsSubtitleThemeTextPositionDialogTitle": {},
|
||||
"settingsSubtitleThemeTextPositionTile": "テキストの位置",
|
||||
"@settingsSubtitleThemeTextPositionTile": {},
|
||||
"entryInfoActionExportMetadata": "メタデータをエクスポート",
|
||||
"@entryInfoActionExportMetadata": {}
|
||||
}
|
||||
|
|
|
@ -443,8 +443,8 @@
|
|||
"@removeEntryMetadataDialogMore": {},
|
||||
"removeEntryMetadataMotionPhotoXmpWarningDialogMessage": "XMP가 있어야 모션 사진에 포함되는 동영상을 재생할 수 있습니다.\n\n삭제하시겠습니까?",
|
||||
"@removeEntryMetadataMotionPhotoXmpWarningDialogMessage": {},
|
||||
"convertMotionPhotoToStillImageWarningDialogMessage": "확실합니까?",
|
||||
"@convertMotionPhotoToStillImageWarningDialogMessage": {},
|
||||
"genericDangerWarningDialogMessage": "확실합니까?",
|
||||
"@genericDangerWarningDialogMessage": {},
|
||||
"videoSpeedDialogLabel": "재생 배속",
|
||||
"@videoSpeedDialogLabel": {},
|
||||
"videoStreamSelectionDialogVideo": "동영상",
|
||||
|
@ -1095,7 +1095,7 @@
|
|||
"@mapPointNorthUpTooltip": {},
|
||||
"mapAttributionOsmHot": "지도 데이터 © [OpenStreetMap](https://www.openstreetmap.org/copyright) 기여자 • 타일 [HOT](https://www.hotosm.org/) • 호스팅 [OSM France](https://openstreetmap.fr/)",
|
||||
"@mapAttributionOsmHot": {},
|
||||
"mapAttributionStamen": "지도 데이터 © [OpenStreetMap](https://www.openstreetmap.org/copyright) 기여자 • 타일 [Stamen Design](http://stamen.com), [CC BY 3.0](http://creativecommons.org/licenses/by/3.0)",
|
||||
"mapAttributionStamen": "지도 데이터 © [OpenStreetMap](https://www.openstreetmap.org/copyright) 기여자 • 타일 [Stamen Design](https://stamen.com), [CC BY 3.0](https://creativecommons.org/licenses/by/3.0)",
|
||||
"@mapAttributionStamen": {},
|
||||
"openMapPageTooltip": "지도 페이지에서 보기",
|
||||
"@openMapPageTooltip": {},
|
||||
|
@ -1172,5 +1172,29 @@
|
|||
"settingsWidgetDisplayedItem": "표시될 항목",
|
||||
"@settingsWidgetDisplayedItem": {},
|
||||
"entryInfoActionExportMetadata": "메타데이터 내보내기",
|
||||
"@entryInfoActionExportMetadata": {}
|
||||
"@entryInfoActionExportMetadata": {},
|
||||
"filterNoAddressLabel": "주소 없음",
|
||||
"@filterNoAddressLabel": {},
|
||||
"filterAspectRatioPortraitLabel": "세로",
|
||||
"@filterAspectRatioPortraitLabel": {},
|
||||
"settingsViewerShowRatingTags": "별점 및 태그 표시",
|
||||
"@settingsViewerShowRatingTags": {},
|
||||
"filterAspectRatioLandscapeLabel": "가로",
|
||||
"@filterAspectRatioLandscapeLabel": {},
|
||||
"entryActionShareImageOnly": "사진만 공유",
|
||||
"@entryActionShareImageOnly": {},
|
||||
"entryActionShareVideoOnly": "동영상만 공유",
|
||||
"@entryActionShareVideoOnly": {},
|
||||
"entryInfoActionRemoveLocation": "위치 삭제",
|
||||
"@entryInfoActionRemoveLocation": {},
|
||||
"keepScreenOnVideoPlayback": "동영상 재생 시 작동",
|
||||
"@keepScreenOnVideoPlayback": {},
|
||||
"settingsAccessibilityShowPinchGestureAlternatives": "멀티터치의 대안 표시",
|
||||
"@settingsAccessibilityShowPinchGestureAlternatives": {},
|
||||
"columnCount": "{count, plural, other{{count}열}}",
|
||||
"@columnCount": {
|
||||
"placeholders": {
|
||||
"count": {}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -113,7 +113,7 @@
|
|||
"@entryInfoActionRemoveMetadata": {},
|
||||
"entryInfoActionExportMetadata": "Eksportuoti metaduomenis",
|
||||
"@entryInfoActionExportMetadata": {},
|
||||
"filterFavouriteLabel": "Mėgstamiausia",
|
||||
"filterFavouriteLabel": "Mėgstamiausi",
|
||||
"@filterFavouriteLabel": {},
|
||||
"filterNoDateLabel": "Be datos",
|
||||
"@filterNoDateLabel": {},
|
||||
|
@ -123,7 +123,7 @@
|
|||
"@filterNoTagLabel": {},
|
||||
"filterRecentlyAddedLabel": "Neseniai pridėta",
|
||||
"@filterRecentlyAddedLabel": {},
|
||||
"filterTypeMotionPhotoLabel": "Judesio nuotrauka",
|
||||
"filterTypeMotionPhotoLabel": "Judanti nuotrauka",
|
||||
"@filterTypeMotionPhotoLabel": {},
|
||||
"filterTypeRawLabel": "Raw",
|
||||
"@filterTypeRawLabel": {},
|
||||
|
@ -219,11 +219,11 @@
|
|||
"@removeEntryMetadataDialogMore": {},
|
||||
"removeEntryMetadataMotionPhotoXmpWarningDialogMessage": "Norint paleisti vaizdo įrašą judančioje nuotraukoje, reikalingas XMP.\n\nAr tikrai norite jį pašalinti?",
|
||||
"@removeEntryMetadataMotionPhotoXmpWarningDialogMessage": {},
|
||||
"convertMotionPhotoToStillImageWarningDialogMessage": "Ar tikrai?",
|
||||
"@convertMotionPhotoToStillImageWarningDialogMessage": {},
|
||||
"genericDangerWarningDialogMessage": "Ar tikrai?",
|
||||
"@genericDangerWarningDialogMessage": {},
|
||||
"videoSpeedDialogLabel": "Atkūrimo greitis",
|
||||
"@videoSpeedDialogLabel": {},
|
||||
"videoStreamSelectionDialogAudio": "Garso įrašas",
|
||||
"videoStreamSelectionDialogAudio": "Garsas",
|
||||
"@videoStreamSelectionDialogAudio": {},
|
||||
"videoStreamSelectionDialogText": "Subtitrai",
|
||||
"@videoStreamSelectionDialogText": {},
|
||||
|
@ -277,7 +277,7 @@
|
|||
"@collectionActionHideTitleSearch": {},
|
||||
"collectionActionAddShortcut": "Pridėti nuorodą",
|
||||
"@collectionActionAddShortcut": {},
|
||||
"collectionActionEmptyBin": "Išvalyti šiukšliadėžę",
|
||||
"collectionActionEmptyBin": "Išvalyti šiukšlinę",
|
||||
"@collectionActionEmptyBin": {},
|
||||
"collectionActionMove": "Perkelti į albumą",
|
||||
"@collectionActionMove": {},
|
||||
|
@ -342,7 +342,7 @@
|
|||
"@entryActionRestore": {},
|
||||
"entryActionOpenMap": "Rodyti žemėlapio programėlėje",
|
||||
"@entryActionOpenMap": {},
|
||||
"entryActionFlip": "Apverskite horizontaliai",
|
||||
"entryActionFlip": "Apversti horizontaliai",
|
||||
"@entryActionFlip": {},
|
||||
"entryActionEdit": "Redaguoti",
|
||||
"@entryActionEdit": {},
|
||||
|
@ -350,7 +350,7 @@
|
|||
"@entryActionOpen": {},
|
||||
"entryActionSetAs": "Nustatyti kaip",
|
||||
"@entryActionSetAs": {},
|
||||
"filterBinLabel": "Šiukšliadėžė",
|
||||
"filterBinLabel": "Šiukšlinė",
|
||||
"@filterBinLabel": {},
|
||||
"entryInfoActionEditDate": "Redaguoti datą ir laiką",
|
||||
"@entryInfoActionEditDate": {},
|
||||
|
@ -399,7 +399,7 @@
|
|||
"@themeBrightnessLight": {},
|
||||
"videoPlaybackMuted": "Groti išjungus garsą",
|
||||
"@videoPlaybackMuted": {},
|
||||
"widgetDisplayedItemRandom": "Atsitiktinis",
|
||||
"widgetDisplayedItemRandom": "Atsitiktinė",
|
||||
"@widgetDisplayedItemRandom": {},
|
||||
"themeBrightnessBlack": "Juoda",
|
||||
"@themeBrightnessBlack": {},
|
||||
|
@ -489,7 +489,7 @@
|
|||
"@editEntryLocationDialogLongitude": {},
|
||||
"tileLayoutGrid": "Tinklelis",
|
||||
"@tileLayoutGrid": {},
|
||||
"videoStreamSelectionDialogVideo": "Vaizdo įrašas",
|
||||
"videoStreamSelectionDialogVideo": "Vaizdas",
|
||||
"@videoStreamSelectionDialogVideo": {},
|
||||
"genericSuccessFeedback": "Atlikta!",
|
||||
"@genericSuccessFeedback": {},
|
||||
|
@ -530,5 +530,819 @@
|
|||
"policyPageTitle": "Privatumo politika",
|
||||
"@policyPageTitle": {},
|
||||
"collectionActionCopy": "Kopijuoti į albumą",
|
||||
"@collectionActionCopy": {}
|
||||
"@collectionActionCopy": {},
|
||||
"coordinateDmsNorth": "Š",
|
||||
"@coordinateDmsNorth": {},
|
||||
"coordinateDmsEast": "R",
|
||||
"@coordinateDmsEast": {},
|
||||
"coordinateDmsWest": "V",
|
||||
"@coordinateDmsWest": {},
|
||||
"coordinateDmsSouth": "P",
|
||||
"@coordinateDmsSouth": {},
|
||||
"dateToday": "Šiandien",
|
||||
"@dateToday": {},
|
||||
"collectionGroupAlbum": "Pagal albumą",
|
||||
"@collectionGroupAlbum": {},
|
||||
"collectionGroupMonth": "Pagal mėnesį",
|
||||
"@collectionGroupMonth": {},
|
||||
"collectionGroupDay": "Pagal dieną",
|
||||
"@collectionGroupDay": {},
|
||||
"collectionGroupNone": "Negrupuoti",
|
||||
"@collectionGroupNone": {},
|
||||
"sectionUnknown": "Nežinoma",
|
||||
"@sectionUnknown": {},
|
||||
"dateThisMonth": "Šį mėnesį",
|
||||
"@dateThisMonth": {},
|
||||
"drawerAboutButton": "Apie",
|
||||
"@drawerAboutButton": {},
|
||||
"drawerSettingsButton": "Nustatymai",
|
||||
"@drawerSettingsButton": {},
|
||||
"drawerCollectionVideos": "Vaizdo įrašai",
|
||||
"@drawerCollectionVideos": {},
|
||||
"drawerCollectionAnimated": "Animuota",
|
||||
"@drawerCollectionAnimated": {},
|
||||
"drawerCollectionRaws": "Raw nuotraukos",
|
||||
"@drawerCollectionRaws": {},
|
||||
"drawerCollectionSphericalVideos": "360° vaizdo įrašai",
|
||||
"@drawerCollectionSphericalVideos": {},
|
||||
"sortByDate": "Pagal datą",
|
||||
"@sortByDate": {},
|
||||
"sortByName": "Pagal pavadinimą",
|
||||
"@sortByName": {},
|
||||
"sortByItemCount": "Pagal elementų skaičių",
|
||||
"@sortByItemCount": {},
|
||||
"sortBySize": "Pagal dydį",
|
||||
"@sortBySize": {},
|
||||
"sortByAlbumFileName": "Pagal albumą ir failo pavadinimą",
|
||||
"@sortByAlbumFileName": {},
|
||||
"sortByRating": "Pagal įvertinimą",
|
||||
"@sortByRating": {},
|
||||
"sortOrderNewestFirst": "Naujausi viršuje",
|
||||
"@sortOrderNewestFirst": {},
|
||||
"sortOrderOldestFirst": "Seniausi viršuje",
|
||||
"@sortOrderOldestFirst": {},
|
||||
"sortOrderAtoZ": "A — Z",
|
||||
"@sortOrderAtoZ": {},
|
||||
"sortOrderZtoA": "Z — A",
|
||||
"@sortOrderZtoA": {},
|
||||
"sortOrderLargestFirst": "Didžiausi viršuje",
|
||||
"@sortOrderLargestFirst": {},
|
||||
"sortOrderSmallestFirst": "Mažiausi viršuje",
|
||||
"@sortOrderSmallestFirst": {},
|
||||
"albumGroupType": "Pagal tipą",
|
||||
"@albumGroupType": {},
|
||||
"albumGroupVolume": "Pagal apimtį saugykloje",
|
||||
"@albumGroupVolume": {},
|
||||
"albumGroupNone": "Negrupuoti",
|
||||
"@albumGroupNone": {},
|
||||
"albumPickPageTitleCopy": "Kopijuoti į albumą",
|
||||
"@albumPickPageTitleCopy": {},
|
||||
"albumPickPageTitleExport": "Eksportuoti į albumą",
|
||||
"@albumPickPageTitleExport": {},
|
||||
"albumPickPageTitleMove": "Perkelti į albumą",
|
||||
"@albumPickPageTitleMove": {},
|
||||
"createAlbumButtonLabel": "KURTI",
|
||||
"@createAlbumButtonLabel": {},
|
||||
"countryPageTitle": "Šalys",
|
||||
"@countryPageTitle": {},
|
||||
"settingsActionImport": "Importuoti",
|
||||
"@settingsActionImport": {},
|
||||
"settingsActionImportDialogTitle": "Importuoti",
|
||||
"@settingsActionImportDialogTitle": {},
|
||||
"appExportFavourites": "Mėgstamiausi",
|
||||
"@appExportFavourites": {},
|
||||
"appExportSettings": "Nustatymai",
|
||||
"@appExportSettings": {},
|
||||
"settingsShowBottomNavigationBar": "Rodyti apatinę naršymo juostą",
|
||||
"@settingsShowBottomNavigationBar": {},
|
||||
"settingsKeepScreenOnDialogTitle": "Laikyti ekraną įjungtą",
|
||||
"@settingsKeepScreenOnDialogTitle": {},
|
||||
"settingsConfirmationTile": "Patvirtinimo dialogo langai",
|
||||
"@settingsConfirmationTile": {},
|
||||
"settingsConfirmationDialogTitle": "Patvirtinimo dialogo langai",
|
||||
"@settingsConfirmationDialogTitle": {},
|
||||
"settingsConfirmationBeforeMoveToBinItems": "Klausti prieš perkeliant elementus į šiukšlinę",
|
||||
"@settingsConfirmationBeforeMoveToBinItems": {},
|
||||
"settingsConfirmationBeforeMoveUndatedItems": "Klausti prieš perkeliant elementus be datos",
|
||||
"@settingsConfirmationBeforeMoveUndatedItems": {},
|
||||
"settingsConfirmationAfterMoveToBinItems": "Rodyti pranešimą perkėlus elementus į šiukšlinę",
|
||||
"@settingsConfirmationAfterMoveToBinItems": {},
|
||||
"settingsNavigationDrawerEditorPageTitle": "Naršymo meniu",
|
||||
"@settingsNavigationDrawerEditorPageTitle": {},
|
||||
"settingsNavigationDrawerBanner": "Palieskite ir palaikykite, kad perkeltumėte ir pakeistumėte meniu elementų eiliškumą.",
|
||||
"@settingsNavigationDrawerBanner": {},
|
||||
"settingsThumbnailSectionTitle": "Miniatiūros",
|
||||
"@settingsThumbnailSectionTitle": {},
|
||||
"settingsThumbnailShowRawIcon": "Rodyti Raw piktogramą",
|
||||
"@settingsThumbnailShowRawIcon": {},
|
||||
"settingsCollectionQuickActionTabBrowsing": "Naršymas",
|
||||
"@settingsCollectionQuickActionTabBrowsing": {},
|
||||
"settingsCollectionQuickActionTabSelecting": "Pasirinkimas",
|
||||
"@settingsCollectionQuickActionTabSelecting": {},
|
||||
"settingsCollectionBrowsingQuickActionEditorBanner": "Palieskite ir palaikykite norėdami perkelti mygtukus ir pasirinkti, kokie veiksmai bus rodomi naršant elementus.",
|
||||
"@settingsCollectionBrowsingQuickActionEditorBanner": {},
|
||||
"settingsCollectionSelectionQuickActionEditorBanner": "Palieskite ir palaikykite norėdami perkelti mygtukus ir pasirinkti, kokie veiksmai bus rodomi pasirenkant elementus.",
|
||||
"@settingsCollectionSelectionQuickActionEditorBanner": {},
|
||||
"settingsViewerMaximumBrightness": "Didžiausias ryškumas",
|
||||
"@settingsViewerMaximumBrightness": {},
|
||||
"settingsViewerQuickActionsTile": "Spartieji veiksmai",
|
||||
"@settingsViewerQuickActionsTile": {},
|
||||
"settingsViewerQuickActionEditorDisplayedButtonsSectionTitle": "Rodomi mygtukai",
|
||||
"@settingsViewerQuickActionEditorDisplayedButtonsSectionTitle": {},
|
||||
"settingsViewerShowOverlayOnOpening": "Rodyti atidarymo metu",
|
||||
"@settingsViewerShowOverlayOnOpening": {},
|
||||
"settingsViewerShowMinimap": "Rodyti mini žemėlapį",
|
||||
"@settingsViewerShowMinimap": {},
|
||||
"settingsViewerShowInformationSubtitle": "Rodyti pavadinimą, datą, vietą ir kt.",
|
||||
"@settingsViewerShowInformationSubtitle": {},
|
||||
"settingsViewerShowShootingDetails": "Rodyti išsamią fotografavimo informaciją",
|
||||
"@settingsViewerShowShootingDetails": {},
|
||||
"settingsViewerEnableOverlayBlurEffect": "Suliejimo efektas",
|
||||
"@settingsViewerEnableOverlayBlurEffect": {},
|
||||
"settingsViewerSlideshowPageTitle": "Skaidrių demonstravimas",
|
||||
"@settingsViewerSlideshowPageTitle": {},
|
||||
"settingsSlideshowRepeat": "Kartoti",
|
||||
"@settingsSlideshowRepeat": {},
|
||||
"settingsSlideshowShuffle": "Maišyti",
|
||||
"@settingsSlideshowShuffle": {},
|
||||
"settingsSlideshowFillScreen": "Užpildyti ekraną",
|
||||
"@settingsSlideshowFillScreen": {},
|
||||
"settingsSlideshowAnimatedZoomEffect": "Animuotas priartinimo efektas",
|
||||
"@settingsSlideshowAnimatedZoomEffect": {},
|
||||
"settingsSlideshowTransitionTile": "Perėjimas efektas",
|
||||
"@settingsSlideshowTransitionTile": {},
|
||||
"settingsSlideshowIntervalTile": "Intervalas",
|
||||
"@settingsSlideshowIntervalTile": {},
|
||||
"settingsSlideshowVideoPlaybackTile": "Vaizdo įrašų atkūrimas",
|
||||
"@settingsSlideshowVideoPlaybackTile": {},
|
||||
"settingsSlideshowVideoPlaybackDialogTitle": "Vaizdo įrašų atkūrimas",
|
||||
"@settingsSlideshowVideoPlaybackDialogTitle": {},
|
||||
"settingsVideoPageTitle": "Vaizdo įrašų nustatymai",
|
||||
"@settingsVideoPageTitle": {},
|
||||
"settingsVideoSectionTitle": "Vaizdo įrašai",
|
||||
"@settingsVideoSectionTitle": {},
|
||||
"settingsVideoShowVideos": "Rodyti vaizdo įrašus",
|
||||
"@settingsVideoShowVideos": {},
|
||||
"settingsVideoAutoPlay": "Automatinis atkūrimas",
|
||||
"@settingsVideoAutoPlay": {},
|
||||
"settingsSubtitleThemeSample": "Tai yra pavyzdys.",
|
||||
"@settingsSubtitleThemeSample": {},
|
||||
"settingsSubtitleThemeTextAlignmentTile": "Teksto lygiavimas",
|
||||
"@settingsSubtitleThemeTextAlignmentTile": {},
|
||||
"settingsSubtitleThemeTextAlignmentDialogTitle": "Teksto lygiavimas",
|
||||
"@settingsSubtitleThemeTextAlignmentDialogTitle": {},
|
||||
"settingsSubtitleThemeTextPositionDialogTitle": "Teksto padėtis",
|
||||
"@settingsSubtitleThemeTextPositionDialogTitle": {},
|
||||
"settingsSubtitleThemeTextSize": "Teksto dydis",
|
||||
"@settingsSubtitleThemeTextSize": {},
|
||||
"settingsVideoLoopModeTile": "Kartojimo režimas",
|
||||
"@settingsVideoLoopModeTile": {},
|
||||
"settingsSubtitleThemeTextOpacity": "Teksto skaidrumas",
|
||||
"@settingsSubtitleThemeTextOpacity": {},
|
||||
"settingsSubtitleThemeBackgroundColor": "Fono spalva",
|
||||
"@settingsSubtitleThemeBackgroundColor": {},
|
||||
"settingsSubtitleThemeBackgroundOpacity": "Fono skaidrumas",
|
||||
"@settingsSubtitleThemeBackgroundOpacity": {},
|
||||
"settingsSubtitleThemeTextAlignmentLeft": "Į kairę",
|
||||
"@settingsSubtitleThemeTextAlignmentLeft": {},
|
||||
"settingsSubtitleThemeTextAlignmentCenter": "Centruoti",
|
||||
"@settingsSubtitleThemeTextAlignmentCenter": {},
|
||||
"settingsVideoControlsTile": "Valdymas",
|
||||
"@settingsVideoControlsTile": {},
|
||||
"settingsVideoControlsPageTitle": "Valdymas",
|
||||
"@settingsVideoControlsPageTitle": {},
|
||||
"settingsPrivacySectionTitle": "Privatumas",
|
||||
"@settingsPrivacySectionTitle": {},
|
||||
"settingsAllowInstalledAppAccess": "Leisti prieigą prie programėlių inventoriaus",
|
||||
"@settingsAllowInstalledAppAccess": {},
|
||||
"settingsAllowInstalledAppAccessSubtitle": "Naudojamas albumo rodymui pagerinti",
|
||||
"@settingsAllowInstalledAppAccessSubtitle": {},
|
||||
"settingsAllowErrorReporting": "Leisti anonimiškai pranešti apie klaidas",
|
||||
"@settingsAllowErrorReporting": {},
|
||||
"settingsSaveSearchHistory": "Išsaugoti paieškos istoriją",
|
||||
"@settingsSaveSearchHistory": {},
|
||||
"settingsEnableBin": "Naudoti šiukšlinę",
|
||||
"@settingsEnableBin": {},
|
||||
"settingsEnableBinSubtitle": "Išlaikyti panaikintus elementus 30 dienų",
|
||||
"@settingsEnableBinSubtitle": {},
|
||||
"settingsAllowMediaManagement": "Leisti valdyti mediją",
|
||||
"@settingsAllowMediaManagement": {},
|
||||
"settingsHiddenItemsTile": "Paslėpti elementai",
|
||||
"@settingsHiddenItemsTile": {},
|
||||
"settingsHiddenItemsPageTitle": "Paslėpti elementai",
|
||||
"@settingsHiddenItemsPageTitle": {},
|
||||
"settingsHiddenItemsTabFilters": "Paslėpti filtrai",
|
||||
"@settingsHiddenItemsTabFilters": {},
|
||||
"settingsHiddenFiltersBanner": "Nuotraukos ir vaizdo įrašai, atitinkantys paslėptus filtrus, nebus rodomi jūsų kolekcijoje.",
|
||||
"@settingsHiddenFiltersBanner": {},
|
||||
"settingsHiddenFiltersEmpty": "Nėra paslėptų filtrų",
|
||||
"@settingsHiddenFiltersEmpty": {},
|
||||
"settingsHiddenItemsTabPaths": "Paslėpti keliai",
|
||||
"@settingsHiddenItemsTabPaths": {},
|
||||
"settingsHiddenPathsBanner": "Nuotraukos ir vaizdo įrašai šiuose aplankuose ar jų pakatalogiuose nebus rodomi jūsų kolekcijoje.",
|
||||
"@settingsHiddenPathsBanner": {},
|
||||
"addPathTooltip": "Pridėti kelią",
|
||||
"@addPathTooltip": {},
|
||||
"settingsStorageAccessTile": "Prieiga prie saugyklos",
|
||||
"@settingsStorageAccessTile": {},
|
||||
"settingsStorageAccessPageTitle": "Prieiga prie saugyklos",
|
||||
"@settingsStorageAccessPageTitle": {},
|
||||
"settingsStorageAccessRevokeTooltip": "Atšaukti leidimą",
|
||||
"@settingsStorageAccessRevokeTooltip": {},
|
||||
"settingsAccessibilitySectionTitle": "Pritaikymas neįgaliesiems",
|
||||
"@settingsAccessibilitySectionTitle": {},
|
||||
"settingsRemoveAnimationsTile": "Pašalinti animacijas",
|
||||
"@settingsRemoveAnimationsTile": {},
|
||||
"settingsRemoveAnimationsDialogTitle": "Pašalinti animacijas",
|
||||
"@settingsRemoveAnimationsDialogTitle": {},
|
||||
"settingsThemeBrightnessTile": "Tema",
|
||||
"@settingsThemeBrightnessTile": {},
|
||||
"settingsThemeEnableDynamicColor": "Dinaminė spalva",
|
||||
"@settingsThemeEnableDynamicColor": {},
|
||||
"settingsDisplayRefreshRateModeTile": "Ekrano atnaujinimo dažnis",
|
||||
"@settingsDisplayRefreshRateModeTile": {},
|
||||
"settingsDisplayRefreshRateModeDialogTitle": "Atnaujinimo dažnis",
|
||||
"@settingsDisplayRefreshRateModeDialogTitle": {},
|
||||
"settingsLanguageSectionTitle": "Kalba ir formatai",
|
||||
"@settingsLanguageSectionTitle": {},
|
||||
"settingsLanguageTile": "Kalba",
|
||||
"@settingsLanguageTile": {},
|
||||
"settingsCoordinateFormatDialogTitle": "Koordinačių formatas",
|
||||
"@settingsCoordinateFormatDialogTitle": {},
|
||||
"settingsUnitSystemTile": "Vienetai",
|
||||
"@settingsUnitSystemTile": {},
|
||||
"settingsScreenSaverPageTitle": "Ekrano užsklanda",
|
||||
"@settingsScreenSaverPageTitle": {},
|
||||
"settingsWidgetPageTitle": "Nuotraukų rėmelis",
|
||||
"@settingsWidgetPageTitle": {},
|
||||
"settingsWidgetShowOutline": "Kontūras",
|
||||
"@settingsWidgetShowOutline": {},
|
||||
"settingsWidgetOpenPage": "Bakstelėjus valdiklį",
|
||||
"@settingsWidgetOpenPage": {},
|
||||
"settingsWidgetDisplayedItem": "Rodomas elementas",
|
||||
"@settingsWidgetDisplayedItem": {},
|
||||
"statsTopCountriesSectionTitle": "Populiariausios šalys",
|
||||
"@statsTopCountriesSectionTitle": {},
|
||||
"statsTopPlacesSectionTitle": "Populiariausios vietos",
|
||||
"@statsTopPlacesSectionTitle": {},
|
||||
"statsTopTagsSectionTitle": "Populiariausios žymos",
|
||||
"@statsTopTagsSectionTitle": {},
|
||||
"statsTopAlbumsSectionTitle": "Populiariausi albumai",
|
||||
"@statsTopAlbumsSectionTitle": {},
|
||||
"viewerOpenPanoramaButtonLabel": "ATIDARYTI PANORAMĄ",
|
||||
"@viewerOpenPanoramaButtonLabel": {},
|
||||
"viewerSetWallpaperButtonLabel": "NUSTATYTI EKRANO FONĄ",
|
||||
"@viewerSetWallpaperButtonLabel": {},
|
||||
"viewerErrorUnknown": "Oi!",
|
||||
"@viewerErrorUnknown": {},
|
||||
"viewerErrorDoesNotExist": "Failas nebeegzistuoja.",
|
||||
"@viewerErrorDoesNotExist": {},
|
||||
"viewerInfoPageTitle": "Informacija",
|
||||
"@viewerInfoPageTitle": {},
|
||||
"viewerInfoUnknown": "nežinoma",
|
||||
"@viewerInfoUnknown": {},
|
||||
"viewerInfoLabelTitle": "Pavadinimas",
|
||||
"@viewerInfoLabelTitle": {},
|
||||
"viewerInfoLabelDate": "Data",
|
||||
"@viewerInfoLabelDate": {},
|
||||
"viewerInfoLabelResolution": "Rezoliucija",
|
||||
"@viewerInfoLabelResolution": {},
|
||||
"viewerInfoLabelSize": "Dydis",
|
||||
"@viewerInfoLabelSize": {},
|
||||
"viewerInfoLabelUri": "URI",
|
||||
"@viewerInfoLabelUri": {},
|
||||
"viewerInfoLabelPath": "Kelias",
|
||||
"@viewerInfoLabelPath": {},
|
||||
"viewerInfoLabelDuration": "Trukmė",
|
||||
"@viewerInfoLabelDuration": {},
|
||||
"viewerInfoLabelOwner": "Savininkas",
|
||||
"@viewerInfoLabelOwner": {},
|
||||
"settingsCoordinateFormatTile": "Koordinačių formatas",
|
||||
"@settingsCoordinateFormatTile": {},
|
||||
"viewerInfoViewXmlLinkText": "Peržiūrėti XML",
|
||||
"@viewerInfoViewXmlLinkText": {},
|
||||
"settingsThemeColorHighlights": "Spalvų akcentai",
|
||||
"@settingsThemeColorHighlights": {},
|
||||
"dateYesterday": "Vakar",
|
||||
"@dateYesterday": {},
|
||||
"settingsDisplaySectionTitle": "Ekranas",
|
||||
"@settingsDisplaySectionTitle": {},
|
||||
"settingsThemeBrightnessDialogTitle": "Tema",
|
||||
"@settingsThemeBrightnessDialogTitle": {},
|
||||
"settingsLanguagePageTitle": "Kalba",
|
||||
"@settingsLanguagePageTitle": {},
|
||||
"statsPageTitle": "Statistika",
|
||||
"@statsPageTitle": {},
|
||||
"viewerInfoLabelCoordinates": "Koordinatės",
|
||||
"@viewerInfoLabelCoordinates": {},
|
||||
"settingsUnitSystemDialogTitle": "Vienetai",
|
||||
"@settingsUnitSystemDialogTitle": {},
|
||||
"mapStyleDialogTitle": "Žemėlapio stilius",
|
||||
"@mapStyleDialogTitle": {},
|
||||
"settingsCollectionTile": "Kolekcija",
|
||||
"@settingsCollectionTile": {},
|
||||
"mapStyleTooltip": "Pasirinkti žemėlapio stilių",
|
||||
"@mapStyleTooltip": {},
|
||||
"mapZoomInTooltip": "Pritraukti",
|
||||
"@mapZoomInTooltip": {},
|
||||
"viewerInfoOpenLinkText": "Atidaryti",
|
||||
"@viewerInfoOpenLinkText": {},
|
||||
"viewerInfoLabelAddress": "Adresas",
|
||||
"@viewerInfoLabelAddress": {},
|
||||
"mapZoomOutTooltip": "Atitolinti",
|
||||
"@mapZoomOutTooltip": {},
|
||||
"openMapPageTooltip": "Peržiūrėti žemėlapio puslapyje",
|
||||
"@openMapPageTooltip": {},
|
||||
"drawerCollectionFavourites": "Mėgstamiausi",
|
||||
"@drawerCollectionFavourites": {},
|
||||
"albumMimeTypeMixed": "Mišrus",
|
||||
"@albumMimeTypeMixed": {},
|
||||
"albumCamera": "Kamera",
|
||||
"@albumCamera": {},
|
||||
"drawerCountryPage": "Šalys",
|
||||
"@drawerCountryPage": {},
|
||||
"drawerCollectionPanoramas": "Panoramos",
|
||||
"@drawerCollectionPanoramas": {},
|
||||
"drawerAlbumPage": "Albumai",
|
||||
"@drawerAlbumPage": {},
|
||||
"drawerTagPage": "Žymos",
|
||||
"@drawerTagPage": {},
|
||||
"settingsSubtitleThemePageTitle": "Subtitrai",
|
||||
"@settingsSubtitleThemePageTitle": {},
|
||||
"settingsVideoLoopModeDialogTitle": "Kartojimo režimas",
|
||||
"@settingsVideoLoopModeDialogTitle": {},
|
||||
"settingsSubtitleThemeTile": "Subtitrai",
|
||||
"@settingsSubtitleThemeTile": {},
|
||||
"settingsSubtitleThemeTextPositionTile": "Teksto padėtis",
|
||||
"@settingsSubtitleThemeTextPositionTile": {},
|
||||
"settingsSubtitleThemeShowOutline": "Rodyti kontūrą ir šešėlį",
|
||||
"@settingsSubtitleThemeShowOutline": {},
|
||||
"settingsSubtitleThemeTextColor": "Teksto spalva",
|
||||
"@settingsSubtitleThemeTextColor": {},
|
||||
"settingsSubtitleThemeTextAlignmentRight": "Į dešinę",
|
||||
"@settingsSubtitleThemeTextAlignmentRight": {},
|
||||
"settingsVideoButtonsTile": "Mygtukai",
|
||||
"@settingsVideoButtonsTile": {},
|
||||
"settingsNavigationDrawerTabAlbums": "Albumai",
|
||||
"@settingsNavigationDrawerTabAlbums": {},
|
||||
"settingsNavigationDrawerAddAlbum": "Pridėti albumą",
|
||||
"@settingsNavigationDrawerAddAlbum": {},
|
||||
"settingsActionExportDialogTitle": "Eksportuoti",
|
||||
"@settingsActionExportDialogTitle": {},
|
||||
"settingsConfirmationBeforeDeleteItems": "Klausti prieš ištrinanti elementus visam laikui",
|
||||
"@settingsConfirmationBeforeDeleteItems": {},
|
||||
"settingsNavigationDrawerTile": "Naršymo meniu",
|
||||
"@settingsNavigationDrawerTile": {},
|
||||
"settingsNavigationDrawerTabTypes": "Tipai",
|
||||
"@settingsNavigationDrawerTabTypes": {},
|
||||
"settingsNavigationDrawerTabPages": "Puslapiai",
|
||||
"@settingsNavigationDrawerTabPages": {},
|
||||
"settingsThumbnailShowTagIcon": "Rodyti žymos piktogramą",
|
||||
"@settingsThumbnailShowTagIcon": {},
|
||||
"settingsViewerShowInformation": "Rodyti informaciją",
|
||||
"@settingsViewerShowInformation": {},
|
||||
"settingsActionExport": "Eksportuoti",
|
||||
"@settingsActionExport": {},
|
||||
"appExportCovers": "Viršeliai",
|
||||
"@appExportCovers": {},
|
||||
"settingsKeepScreenOnTile": "Laikyti ekraną įjungtą",
|
||||
"@settingsKeepScreenOnTile": {},
|
||||
"settingsThumbnailShowRating": "Rodyti įvertinimą",
|
||||
"@settingsThumbnailShowRating": {},
|
||||
"settingsThumbnailShowVideoDuration": "Rodyti vaizdo įrašo trukmę",
|
||||
"@settingsThumbnailShowVideoDuration": {},
|
||||
"settingsViewerQuickActionEditorPageTitle": "Spartieji veiksmai",
|
||||
"@settingsViewerQuickActionEditorPageTitle": {},
|
||||
"settingsCollectionQuickActionsTile": "Spartieji veiksmai",
|
||||
"@settingsCollectionQuickActionsTile": {},
|
||||
"settingsCollectionQuickActionEditorPageTitle": "Spartieji veiksmai",
|
||||
"@settingsCollectionQuickActionEditorPageTitle": {},
|
||||
"settingsViewerGestureSideTapNext": "Bakstelėti ekrano kraštus, kad būtų rodomas ankstesnis / kitas elementas",
|
||||
"@settingsViewerGestureSideTapNext": {},
|
||||
"settingsViewerQuickActionEditorAvailableButtonsSectionTitle": "Galimi mygtukai",
|
||||
"@settingsViewerQuickActionEditorAvailableButtonsSectionTitle": {},
|
||||
"settingsViewerQuickActionEmpty": "Nėra mygtukų",
|
||||
"@settingsViewerQuickActionEmpty": {},
|
||||
"settingsViewerShowOverlayThumbnails": "Rodyti miniatiūras",
|
||||
"@settingsViewerShowOverlayThumbnails": {},
|
||||
"settingsViewerSlideshowTile": "Skaidrių demonstravimas",
|
||||
"@settingsViewerSlideshowTile": {},
|
||||
"sourceStateLocatingCountries": "Aptinkamos šalys",
|
||||
"@sourceStateLocatingCountries": {},
|
||||
"sourceStateLocatingPlaces": "Aptinkamos vietos",
|
||||
"@sourceStateLocatingPlaces": {},
|
||||
"entryActionShowGeoTiffOnMap": "Rodyti kaip žemėlapio uždangą",
|
||||
"@entryActionShowGeoTiffOnMap": {},
|
||||
"entryActionConvertMotionPhotoToStillImage": "Konvertuoti į nejudantį paveikslėlį",
|
||||
"@entryActionConvertMotionPhotoToStillImage": {},
|
||||
"videoActionSelectStreams": "Pasirinkti takelius",
|
||||
"@videoActionSelectStreams": {},
|
||||
"entryInfoActionEditLocation": "Redaguoti vietą",
|
||||
"@entryInfoActionEditLocation": {},
|
||||
"filterNoLocationLabel": "Be vietovės",
|
||||
"@filterNoLocationLabel": {},
|
||||
"filterMimeImageLabel": "Paveikslėlis",
|
||||
"@filterMimeImageLabel": {},
|
||||
"videoControlsPlay": "Groti",
|
||||
"@videoControlsPlay": {},
|
||||
"videoControlsPlaySeek": "Groti ir peršokti pirmyn/atgal",
|
||||
"@videoControlsPlaySeek": {},
|
||||
"videoControlsPlayOutside": "Atidaryti su kitu grotuvu",
|
||||
"@videoControlsPlayOutside": {},
|
||||
"mapStyleGoogleNormal": "Google Maps",
|
||||
"@mapStyleGoogleNormal": {},
|
||||
"mapStyleGoogleHybrid": "Google Maps (hibridinis)",
|
||||
"@mapStyleGoogleHybrid": {},
|
||||
"mapStyleGoogleTerrain": "Google Maps (reljefinis)",
|
||||
"@mapStyleGoogleTerrain": {},
|
||||
"mapStyleHuaweiNormal": "Petal Maps",
|
||||
"@mapStyleHuaweiNormal": {},
|
||||
"mapStyleHuaweiTerrain": "Petal Maps (reljefinis)",
|
||||
"@mapStyleHuaweiTerrain": {},
|
||||
"mapStyleOsmHot": "Humanitarinis OSM",
|
||||
"@mapStyleOsmHot": {},
|
||||
"mapStyleStamenToner": "Stamen Toner (monochromatinis)",
|
||||
"@mapStyleStamenToner": {},
|
||||
"mapStyleStamenWatercolor": "Stamen Watercolor (akvarelė)",
|
||||
"@mapStyleStamenWatercolor": {},
|
||||
"keepScreenOnViewerOnly": "Tik peržiūros puslapiui",
|
||||
"@keepScreenOnViewerOnly": {},
|
||||
"accessibilityAnimationsRemove": "Nerodyti ekrano efektų",
|
||||
"@accessibilityAnimationsRemove": {},
|
||||
"accessibilityAnimationsKeep": "Išlaikyti ekrano efektus",
|
||||
"@accessibilityAnimationsKeep": {},
|
||||
"displayRefreshRatePreferHighest": "Aukščiausias dažnis",
|
||||
"@displayRefreshRatePreferHighest": {},
|
||||
"displayRefreshRatePreferLowest": "Žemiausias dažnis",
|
||||
"@displayRefreshRatePreferLowest": {},
|
||||
"viewerTransitionSlide": "Skaidrės",
|
||||
"@viewerTransitionSlide": {},
|
||||
"viewerTransitionParallax": "Paralaksas",
|
||||
"@viewerTransitionParallax": {},
|
||||
"viewerTransitionFade": "Išblukimas",
|
||||
"@viewerTransitionFade": {},
|
||||
"viewerTransitionZoomIn": "Priartinimas",
|
||||
"@viewerTransitionZoomIn": {},
|
||||
"viewerTransitionNone": "Joks",
|
||||
"@viewerTransitionNone": {},
|
||||
"wallpaperTargetHome": "Pagrindinis ekranas",
|
||||
"@wallpaperTargetHome": {},
|
||||
"wallpaperTargetLock": "Užrakinimo ekranas",
|
||||
"@wallpaperTargetLock": {},
|
||||
"wallpaperTargetHomeLock": "Pagrindinis ir užrakinimo ekranai",
|
||||
"@wallpaperTargetHomeLock": {},
|
||||
"widgetOpenPageHome": "Atidaryti pagrindinį puslapį",
|
||||
"@widgetOpenPageHome": {},
|
||||
"widgetOpenPageViewer": "Atidaryti peržiūrą",
|
||||
"@widgetOpenPageViewer": {},
|
||||
"albumTierNew": "Nauji",
|
||||
"@albumTierNew": {},
|
||||
"albumTierPinned": "Prisegti",
|
||||
"@albumTierPinned": {},
|
||||
"albumTierSpecial": "Bendri",
|
||||
"@albumTierSpecial": {},
|
||||
"albumTierApps": "Programėlių",
|
||||
"@albumTierApps": {},
|
||||
"albumTierRegular": "Kiti",
|
||||
"@albumTierRegular": {},
|
||||
"unsupportedTypeDialogMessage": "{count, plural, =1{Ši operacija nepalaikoma šio tipo elementams: {types}.} other{Ši operacija nepalaikoma šių tipų elementams: {types}.}}",
|
||||
"@unsupportedTypeDialogMessage": {
|
||||
"placeholders": {
|
||||
"count": {},
|
||||
"types": {
|
||||
"type": "String",
|
||||
"example": "GIF, TIFF, MP4",
|
||||
"description": "a list of unsupported types"
|
||||
}
|
||||
}
|
||||
},
|
||||
"addShortcutDialogLabel": "Nuorodos etiketė",
|
||||
"@addShortcutDialogLabel": {},
|
||||
"deleteEntriesConfirmationDialogMessage": "{count, plural, =1{Ištrinti šį elementą?} other{Ištrinti šiuos {count} elementus?}}",
|
||||
"@deleteEntriesConfirmationDialogMessage": {
|
||||
"placeholders": {
|
||||
"count": {}
|
||||
}
|
||||
},
|
||||
"binEntriesConfirmationDialogMessage": "{count, plural, =1{Perkelti šį elementą į šiukšlinę?} other{Perkelti šiuos {count} elementus į šiukšlinę?}}",
|
||||
"@binEntriesConfirmationDialogMessage": {
|
||||
"placeholders": {
|
||||
"count": {}
|
||||
}
|
||||
},
|
||||
"videoResumeDialogMessage": "Ar norite tęsti grojimą nuo {time}?",
|
||||
"@videoResumeDialogMessage": {
|
||||
"placeholders": {
|
||||
"time": {
|
||||
"type": "String",
|
||||
"example": "13:37"
|
||||
}
|
||||
}
|
||||
},
|
||||
"setCoverDialogAuto": "Automatinis",
|
||||
"@setCoverDialogAuto": {},
|
||||
"setCoverDialogCustom": "Pasirinktinis",
|
||||
"@setCoverDialogCustom": {},
|
||||
"renameEntrySetPagePatternFieldLabel": "Pavadinimų suteikimo modelis",
|
||||
"@renameEntrySetPagePatternFieldLabel": {},
|
||||
"deleteSingleAlbumConfirmationDialogMessage": "{count, plural, =1{Ištrinti šį albumą ir jo elementą?} other{Ištrinti šį albumą ir jo {count} elementus?}}",
|
||||
"@deleteSingleAlbumConfirmationDialogMessage": {
|
||||
"placeholders": {
|
||||
"count": {}
|
||||
}
|
||||
},
|
||||
"deleteMultiAlbumConfirmationDialogMessage": "{count, plural, =1{Ištrinti šiuos albumus ir jų elementą?} other{Ištrinti šiuos albumus ir jų {count} elementus?}}",
|
||||
"@deleteMultiAlbumConfirmationDialogMessage": {
|
||||
"placeholders": {
|
||||
"count": {}
|
||||
}
|
||||
},
|
||||
"editEntryDateDialogShift": "Pastumti",
|
||||
"@editEntryDateDialogShift": {},
|
||||
"editEntryLocationDialogTitle": "Vieta",
|
||||
"@editEntryLocationDialogTitle": {},
|
||||
"editEntryLocationDialogSetCustom": "Nustatyti pasirinktinę vietą",
|
||||
"@editEntryLocationDialogSetCustom": {},
|
||||
"videoStreamSelectionDialogOff": "Išjungti",
|
||||
"@videoStreamSelectionDialogOff": {},
|
||||
"videoStreamSelectionDialogTrack": "Takelis",
|
||||
"@videoStreamSelectionDialogTrack": {},
|
||||
"videoStreamSelectionDialogNoSelection": "Kitų takelių nėra.",
|
||||
"@videoStreamSelectionDialogNoSelection": {},
|
||||
"menuActionSlideshow": "Skaidrių demonstravimas",
|
||||
"@menuActionSlideshow": {},
|
||||
"aboutLicensesFlutterPluginsSectionTitle": "Flutter papildiniai",
|
||||
"@aboutLicensesFlutterPluginsSectionTitle": {},
|
||||
"collectionSearchTitlesHintText": "Ieškoti pavadinimų",
|
||||
"@collectionSearchTitlesHintText": {},
|
||||
"collectionActionRescan": "Nuskenuoti iš naujo",
|
||||
"@collectionActionRescan": {},
|
||||
"collectionDeleteFailureFeedback": "{count, plural, =1{Nepavyko ištrinti 1 elemento} other{Nepavyko ištrinti {count} elementų}}",
|
||||
"@collectionDeleteFailureFeedback": {
|
||||
"placeholders": {
|
||||
"count": {}
|
||||
}
|
||||
},
|
||||
"collectionCopyFailureFeedback": "{count, plural, =1{Nepavyko nukopijuoti 1 elemento} other{Nepavyko nukopijuoti {count} elementų}}",
|
||||
"@collectionCopyFailureFeedback": {
|
||||
"placeholders": {
|
||||
"count": {}
|
||||
}
|
||||
},
|
||||
"collectionMoveFailureFeedback": "{count, plural, =1{Nepavyko perkelti 1 elemento} other{Nepavyko perkelti {count} elementų}}",
|
||||
"@collectionMoveFailureFeedback": {
|
||||
"placeholders": {
|
||||
"count": {}
|
||||
}
|
||||
},
|
||||
"collectionEditFailureFeedback": "{count, plural, =1{Nepavyko redaguoti 1 elemento} other{Nepavyko redaguoti {count} elementų}}",
|
||||
"@collectionEditFailureFeedback": {
|
||||
"placeholders": {
|
||||
"count": {}
|
||||
}
|
||||
},
|
||||
"collectionExportFailureFeedback": "{count, plural, =1{Nepavyko eksportuoti 1 puslapio} other{Nepavyko eksportuoti {count} puslapių}}",
|
||||
"@collectionExportFailureFeedback": {
|
||||
"placeholders": {
|
||||
"count": {}
|
||||
}
|
||||
},
|
||||
"collectionMoveSuccessFeedback": "{count, plural, =1{Perkeltas 1 elementas} other{Perkelta {count} elementų}}",
|
||||
"@collectionMoveSuccessFeedback": {
|
||||
"placeholders": {
|
||||
"count": {}
|
||||
}
|
||||
},
|
||||
"collectionCopySuccessFeedback": "{count, plural, =1{Nukopijuota 1 prekė} other{Nukopijuoti {count} elementai}}",
|
||||
"@collectionCopySuccessFeedback": {
|
||||
"placeholders": {
|
||||
"count": {}
|
||||
}
|
||||
},
|
||||
"collectionRenameFailureFeedback": "{count, plural, =1{Nepavyko pervadinti 1 elemento} other{Nepavyko pervadinti {count} elementų}}",
|
||||
"@collectionRenameFailureFeedback": {
|
||||
"placeholders": {
|
||||
"count": {}
|
||||
}
|
||||
},
|
||||
"collectionRenameSuccessFeedback": "{count, plural, =1{Pervadintas 1 elementas} other{Pervadinti {count} elementai}}",
|
||||
"@collectionRenameSuccessFeedback": {
|
||||
"placeholders": {
|
||||
"count": {}
|
||||
}
|
||||
},
|
||||
"collectionEditSuccessFeedback": "{count, plural, =1{Redaguotas 1 elementas} other{Redaguoti {count} elementai}}",
|
||||
"@collectionEditSuccessFeedback": {
|
||||
"placeholders": {
|
||||
"count": {}
|
||||
}
|
||||
},
|
||||
"collectionEmptyImages": "Nėra paveiklėlių",
|
||||
"@collectionEmptyImages": {},
|
||||
"collectionEmptyGrantAccessButtonLabel": "Suteikti prieigą",
|
||||
"@collectionEmptyGrantAccessButtonLabel": {},
|
||||
"collectionSelectSectionTooltip": "Pasirinkti pasirinkimą",
|
||||
"@collectionSelectSectionTooltip": {},
|
||||
"collectionDeselectSectionTooltip": "Panaikinti pasirinkimą",
|
||||
"@collectionDeselectSectionTooltip": {},
|
||||
"drawerCollectionAll": "Visos kolekcijos",
|
||||
"@drawerCollectionAll": {},
|
||||
"drawerCollectionImages": "Paveikslėliai",
|
||||
"@drawerCollectionImages": {},
|
||||
"drawerCollectionMotionPhotos": "Judančios nuotraukos",
|
||||
"@drawerCollectionMotionPhotos": {},
|
||||
"sortOrderHighestFirst": "Anksčiausi viršuje",
|
||||
"@sortOrderHighestFirst": {},
|
||||
"sortOrderLowestFirst": "Žemiausi viršuje",
|
||||
"@sortOrderLowestFirst": {},
|
||||
"albumGroupTier": "Pagal lygį",
|
||||
"@albumGroupTier": {},
|
||||
"albumPickPageTitlePick": "Pasirinkti albumą",
|
||||
"@albumPickPageTitlePick": {},
|
||||
"albumDownload": "Atsiuntimai",
|
||||
"@albumDownload": {},
|
||||
"albumScreenshots": "Ekrano nuotraukos",
|
||||
"@albumScreenshots": {},
|
||||
"albumScreenRecordings": "Ekrano vaizdo įrašai",
|
||||
"@albumScreenRecordings": {},
|
||||
"albumVideoCaptures": "Vaizdo įrašai",
|
||||
"@albumVideoCaptures": {},
|
||||
"albumPageTitle": "Albumai",
|
||||
"@albumPageTitle": {},
|
||||
"albumEmpty": "Nėra albumų",
|
||||
"@albumEmpty": {},
|
||||
"createAlbumTooltip": "Sukurti albumą",
|
||||
"@createAlbumTooltip": {},
|
||||
"newFilterBanner": "nauja",
|
||||
"@newFilterBanner": {},
|
||||
"binPageTitle": "Šiukšlinė",
|
||||
"@binPageTitle": {},
|
||||
"searchRecentSectionTitle": "Naujausia",
|
||||
"@searchRecentSectionTitle": {},
|
||||
"searchDateSectionTitle": "Datos",
|
||||
"@searchDateSectionTitle": {},
|
||||
"countryEmpty": "Nėra šalių",
|
||||
"@countryEmpty": {},
|
||||
"tagPageTitle": "Žymos",
|
||||
"@tagPageTitle": {},
|
||||
"tagEmpty": "Nėra žymų",
|
||||
"@tagEmpty": {},
|
||||
"searchAlbumsSectionTitle": "Albumai",
|
||||
"@searchAlbumsSectionTitle": {},
|
||||
"searchCountriesSectionTitle": "Šalys",
|
||||
"@searchCountriesSectionTitle": {},
|
||||
"searchPlacesSectionTitle": "Vietos",
|
||||
"@searchPlacesSectionTitle": {},
|
||||
"searchTagsSectionTitle": "Žymos",
|
||||
"@searchTagsSectionTitle": {},
|
||||
"searchRatingSectionTitle": "Įvertinimai",
|
||||
"@searchRatingSectionTitle": {},
|
||||
"searchMetadataSectionTitle": "Metaduomenys",
|
||||
"@searchMetadataSectionTitle": {},
|
||||
"settingsPageTitle": "Nustatymai",
|
||||
"@settingsPageTitle": {},
|
||||
"settingsSystemDefault": "Sistemos numatyta",
|
||||
"@settingsSystemDefault": {},
|
||||
"settingsDefault": "Numatyta",
|
||||
"@settingsDefault": {},
|
||||
"settingsDisabled": "Išjungta",
|
||||
"@settingsDisabled": {},
|
||||
"settingsSearchFieldLabel": "Paieškos nustatymai",
|
||||
"@settingsSearchFieldLabel": {},
|
||||
"settingsSearchEmpty": "Nėra atitinkančio nustatymo",
|
||||
"@settingsSearchEmpty": {},
|
||||
"settingsNavigationSectionTitle": "Naršymas",
|
||||
"@settingsNavigationSectionTitle": {},
|
||||
"settingsHomeTile": "Pagrindinis",
|
||||
"@settingsHomeTile": {},
|
||||
"settingsHomeDialogTitle": "Pagrindinis",
|
||||
"@settingsHomeDialogTitle": {},
|
||||
"settingsDoubleBackExit": "Du kart bakstelėti „atgal“, kad išeiti",
|
||||
"@settingsDoubleBackExit": {},
|
||||
"settingsThumbnailOverlayTile": "Uždanga",
|
||||
"@settingsThumbnailOverlayTile": {},
|
||||
"settingsThumbnailOverlayPageTitle": "Uždanga",
|
||||
"@settingsThumbnailOverlayPageTitle": {},
|
||||
"settingsThumbnailShowFavouriteIcon": "Rodyti mėgstamiausių piktogramą",
|
||||
"@settingsThumbnailShowFavouriteIcon": {},
|
||||
"settingsThumbnailShowMotionPhotoIcon": "Rodyti judančios nuotraukos piktogramą",
|
||||
"@settingsThumbnailShowMotionPhotoIcon": {},
|
||||
"settingsViewerUseCutout": "Naudoti iškirpimo sritį",
|
||||
"@settingsViewerUseCutout": {},
|
||||
"settingsImageBackground": "Paveikslėlio fonas",
|
||||
"@settingsImageBackground": {},
|
||||
"settingsViewerQuickActionEditorBanner": "Palieskite ir palaikykite norėdami perkelti mygtukus ir pasirinkti, kurie veiksmai bus rodomi peržiūroje.",
|
||||
"@settingsViewerQuickActionEditorBanner": {},
|
||||
"settingsMotionPhotoAutoPlay": "Automatiškai paleisti judančias nuotraukas",
|
||||
"@settingsMotionPhotoAutoPlay": {},
|
||||
"settingsViewerOverlayPageTitle": "Uždanga",
|
||||
"@settingsViewerOverlayPageTitle": {},
|
||||
"settingsViewerOverlayTile": "Uždanga",
|
||||
"@settingsViewerOverlayTile": {},
|
||||
"settingsVideoEnableHardwareAcceleration": "Aparatinės įrangos spartintuvas",
|
||||
"@settingsVideoEnableHardwareAcceleration": {},
|
||||
"settingsVideoGestureDoubleTapTogglePlay": "Dukart bakstelėti, kad groti / pristabdyti",
|
||||
"@settingsVideoGestureDoubleTapTogglePlay": {},
|
||||
"settingsVideoGestureSideDoubleTapSeek": "Dukart bakstelėti ekrano kraštus, kad peršokti pirmyn/atgal",
|
||||
"@settingsVideoGestureSideDoubleTapSeek": {},
|
||||
"settingsStorageAccessBanner": "Norint keisti kai kuriuos katalogus, reikia aiškios tiesioginės prieigos teisės, kad būtų galima keisti juose esančius failus. Čia galite peržiūrėti katalogus, prie kurių anksčiau suteikėte prieigą.",
|
||||
"@settingsStorageAccessBanner": {},
|
||||
"settingsStorageAccessEmpty": "Prieigos teisių nesuteikta",
|
||||
"@settingsStorageAccessEmpty": {},
|
||||
"settingsTimeToTakeActionTile": "Laikas iki veiksmo atlikimo",
|
||||
"@settingsTimeToTakeActionTile": {},
|
||||
"statsWithGps": "{count, plural, =1{1 elementas su vieta} other{{count} elementai su vieta}}",
|
||||
"@statsWithGps": {
|
||||
"placeholders": {
|
||||
"count": {}
|
||||
}
|
||||
},
|
||||
"viewerInfoBackToViewerTooltip": "Atgal į peržiūrą",
|
||||
"@viewerInfoBackToViewerTooltip": {},
|
||||
"viewerInfoLabelDescription": "Aprašymas",
|
||||
"@viewerInfoLabelDescription": {},
|
||||
"mapPointNorthUpTooltip": "Centruoti pagal šiaurę",
|
||||
"@mapPointNorthUpTooltip": {},
|
||||
"mapAttributionOsmHot": "Žemėlapio duomenys © [OpenStreetMap](https://www.openstreetmap.org/copyright) bendraautoriai • Sluoksniai [HOT](https://www.hotosm.org/) • Priegloba [OSM France](https://openstreetmap.fr/)",
|
||||
"@mapAttributionOsmHot": {},
|
||||
"mapEmptyRegion": "Šiame regione paveikslėlių nėra",
|
||||
"@mapEmptyRegion": {},
|
||||
"viewerInfoOpenEmbeddedFailureFeedback": "Nepavyko išskleisti įterptųjų duomenų",
|
||||
"@viewerInfoOpenEmbeddedFailureFeedback": {},
|
||||
"viewerInfoSearchFieldLabel": "Ieškoti metaduomenyse",
|
||||
"@viewerInfoSearchFieldLabel": {},
|
||||
"viewerInfoSearchEmpty": "Nėra atitinkančių raktų",
|
||||
"@viewerInfoSearchEmpty": {},
|
||||
"viewerInfoSearchSuggestionDate": "Data ir laikas",
|
||||
"@viewerInfoSearchSuggestionDate": {},
|
||||
"viewerInfoSearchSuggestionDescription": "Aprašymas",
|
||||
"@viewerInfoSearchSuggestionDescription": {},
|
||||
"viewerInfoSearchSuggestionDimensions": "Matmenys",
|
||||
"@viewerInfoSearchSuggestionDimensions": {},
|
||||
"viewerInfoSearchSuggestionResolution": "Rezoliucija",
|
||||
"@viewerInfoSearchSuggestionResolution": {},
|
||||
"viewerInfoSearchSuggestionRights": "Teisės",
|
||||
"@viewerInfoSearchSuggestionRights": {},
|
||||
"wallpaperUseScrollEffect": "Naudoti slinkties efektą pagrindiniame ekrane",
|
||||
"@wallpaperUseScrollEffect": {},
|
||||
"tagEditorPageTitle": "Redaguoti žymas",
|
||||
"@tagEditorPageTitle": {},
|
||||
"tagEditorPageNewTagFieldLabel": "Nauja žyma",
|
||||
"@tagEditorPageNewTagFieldLabel": {},
|
||||
"tagEditorPageAddTagTooltip": "Pridėti žymą",
|
||||
"@tagEditorPageAddTagTooltip": {},
|
||||
"tagEditorSectionRecent": "Naujausia",
|
||||
"@tagEditorSectionRecent": {},
|
||||
"tagEditorSectionPlaceholders": "Vietos rezervavimo ženklai",
|
||||
"@tagEditorSectionPlaceholders": {},
|
||||
"panoramaEnableSensorControl": "Įjungti jutiklio valdymą",
|
||||
"@panoramaEnableSensorControl": {},
|
||||
"sourceViewerPageTitle": "Šaltinis",
|
||||
"@sourceViewerPageTitle": {},
|
||||
"filePickerShowHiddenFiles": "Rodyti paslėptus failus",
|
||||
"@filePickerShowHiddenFiles": {},
|
||||
"filePickerDoNotShowHiddenFiles": "Nerodyti paslėptų failų",
|
||||
"@filePickerDoNotShowHiddenFiles": {},
|
||||
"filePickerNoItems": "Nėra elementų",
|
||||
"@filePickerNoItems": {},
|
||||
"filePickerUseThisFolder": "Naudoti šį aplanką",
|
||||
"@filePickerUseThisFolder": {},
|
||||
"widgetDisplayedItemMostRecent": "Naujausia",
|
||||
"@widgetDisplayedItemMostRecent": {},
|
||||
"widgetOpenPageCollection": "Atidaryti kolekciją",
|
||||
"@widgetOpenPageCollection": {},
|
||||
"collectionEmptyVideos": "Nėra vaizdo įrašų",
|
||||
"@collectionEmptyVideos": {},
|
||||
"collectionEmptyFavourites": "Nėra mėgstamiausių",
|
||||
"@collectionEmptyFavourites": {},
|
||||
"searchCollectionFieldHint": "Ieškoti kolekcijoje",
|
||||
"@searchCollectionFieldHint": {},
|
||||
"settingsViewerSectionTitle": "Peržiūra",
|
||||
"@settingsViewerSectionTitle": {},
|
||||
"panoramaDisableSensorControl": "Išjungti jutiklio valdymą",
|
||||
"@panoramaDisableSensorControl": {},
|
||||
"settingsThumbnailShowLocationIcon": "Rodyti vietos piktogramą",
|
||||
"@settingsThumbnailShowLocationIcon": {},
|
||||
"tagPlaceholderCountry": "Šalis",
|
||||
"@tagPlaceholderCountry": {},
|
||||
"mapAttributionStamen": "Žemėlapio duomenys © [OpenStreetMap](https://www.openstreetmap.org/copyright) bendradarbiai • Sluoksniai [Stamen Design](https://stamen.com), [CC BY 3.0](https://creativecommons.org/licenses/by/3.0)",
|
||||
"@mapAttributionStamen": {},
|
||||
"tagPlaceholderPlace": "Vieta",
|
||||
"@tagPlaceholderPlace": {},
|
||||
"filePickerOpenFrom": "Atidaryti iš",
|
||||
"@filePickerOpenFrom": {},
|
||||
"filterNoAddressLabel": "Nėra adreso",
|
||||
"@filterNoAddressLabel": {},
|
||||
"filterAspectRatioLandscapeLabel": "Gulsčias",
|
||||
"@filterAspectRatioLandscapeLabel": {},
|
||||
"filterAspectRatioPortraitLabel": "Portretas",
|
||||
"@filterAspectRatioPortraitLabel": {},
|
||||
"settingsViewerShowRatingTags": "Rodyti įvertinimus ir žymas",
|
||||
"@settingsViewerShowRatingTags": {},
|
||||
"entryActionShareVideoOnly": "Bendrinti tik vaizdo įrašą",
|
||||
"@entryActionShareVideoOnly": {},
|
||||
"entryActionShareImageOnly": "Bendrinti tik paveikslėlį",
|
||||
"@entryActionShareImageOnly": {},
|
||||
"entryInfoActionRemoveLocation": "Pašalinti vietą",
|
||||
"@entryInfoActionRemoveLocation": {}
|
||||
}
|
||||
|
|