mirror of
https://github.com/signalapp/Signal-Android.git
synced 2026-08-14 01:03:28 +01:00
Add quality sheet and toast to media-send.
This commit is contained in:
+7
-6
@@ -80,6 +80,7 @@ import java.util.concurrent.TimeUnit
|
||||
import kotlin.math.roundToInt
|
||||
import kotlin.time.Duration.Companion.microseconds
|
||||
import org.signal.core.ui.R as CoreUiR
|
||||
import org.signal.mediasend.R as MediaSendR
|
||||
|
||||
/**
|
||||
* Allows the user to view and edit selected media.
|
||||
@@ -429,15 +430,15 @@ class MediaReviewFragment : Fragment(R.layout.v2_media_review_fragment), Schedul
|
||||
val media: Media = mediaList[0]
|
||||
if (MediaUtil.isNonGifVideo(media)) {
|
||||
if (state.quality == SentMediaQuality.HIGH) {
|
||||
getString(R.string.MediaReviewFragment__video_set_to_high_quality)
|
||||
getString(MediaSendR.string.MediaReviewFragment__video_set_to_high_quality)
|
||||
} else {
|
||||
getString(R.string.MediaReviewFragment__video_set_to_standard_quality)
|
||||
getString(MediaSendR.string.MediaReviewFragment__video_set_to_standard_quality)
|
||||
}
|
||||
} else if (MediaUtil.isImageType(media.contentType)) {
|
||||
if (state.quality == SentMediaQuality.HIGH) {
|
||||
getString(R.string.MediaReviewFragment__photo_set_to_high_quality)
|
||||
getString(MediaSendR.string.MediaReviewFragment__photo_set_to_high_quality)
|
||||
} else {
|
||||
getString(R.string.MediaReviewFragment__photo_set_to_standard_quality)
|
||||
getString(MediaSendR.string.MediaReviewFragment__photo_set_to_standard_quality)
|
||||
}
|
||||
} else {
|
||||
Log.i(TAG, "Could not display quality toggle toast for attachment of type: ${media.contentType}")
|
||||
@@ -445,9 +446,9 @@ class MediaReviewFragment : Fragment(R.layout.v2_media_review_fragment), Schedul
|
||||
}
|
||||
} else {
|
||||
if (state.quality == SentMediaQuality.HIGH) {
|
||||
resources.getQuantityString(R.plurals.MediaReviewFragment__items_set_to_high_quality, mediaList.size, mediaList.size)
|
||||
resources.getQuantityString(MediaSendR.plurals.MediaReviewFragment__items_set_to_high_quality, mediaList.size, mediaList.size)
|
||||
} else {
|
||||
resources.getQuantityString(R.plurals.MediaReviewFragment__items_set_to_standard_quality, mediaList.size, mediaList.size)
|
||||
resources.getQuantityString(MediaSendR.plurals.MediaReviewFragment__items_set_to_standard_quality, mediaList.size, mediaList.size)
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+9
-88
@@ -5,33 +5,20 @@
|
||||
|
||||
package org.thoughtcrime.securesms.mediasend.v2.review
|
||||
|
||||
import android.content.res.Configuration
|
||||
import androidx.compose.foundation.layout.Arrangement
|
||||
import androidx.compose.foundation.layout.Box
|
||||
import androidx.compose.foundation.layout.Column
|
||||
import androidx.compose.foundation.layout.Row
|
||||
import androidx.compose.foundation.layout.defaultMinSize
|
||||
import androidx.compose.foundation.layout.fillMaxWidth
|
||||
import androidx.compose.foundation.layout.padding
|
||||
import androidx.compose.foundation.shape.RoundedCornerShape
|
||||
import androidx.compose.material3.Button
|
||||
import androidx.compose.material3.ButtonDefaults
|
||||
import androidx.compose.material3.MaterialTheme
|
||||
import androidx.compose.material3.Text
|
||||
import androidx.compose.runtime.Composable
|
||||
import androidx.compose.runtime.getValue
|
||||
import androidx.compose.runtime.livedata.observeAsState
|
||||
import androidx.compose.ui.Alignment
|
||||
import androidx.compose.ui.Modifier
|
||||
import androidx.compose.ui.res.stringResource
|
||||
import androidx.compose.ui.tooling.preview.Preview
|
||||
import androidx.compose.ui.unit.dp
|
||||
import androidx.fragment.app.viewModels
|
||||
import org.signal.core.ui.compose.BottomSheets
|
||||
import org.signal.core.ui.compose.ComposeBottomSheetDialogFragment
|
||||
import org.signal.core.ui.compose.Previews
|
||||
import org.signal.mediasend.SentMediaQuality
|
||||
import org.thoughtcrime.securesms.R
|
||||
import org.signal.mediasend.edit.QualitySelectorSheetContent
|
||||
import org.thoughtcrime.securesms.mediasend.v2.MediaSelectionViewModel
|
||||
|
||||
/**
|
||||
@@ -47,82 +34,16 @@ class QualitySelectorBottomSheet : ComposeBottomSheetDialogFragment() {
|
||||
val state by sharedViewModel.state.observeAsState()
|
||||
val quality = state?.quality
|
||||
if (quality != null) {
|
||||
Content(quality = quality, onQualitySelected = {
|
||||
sharedViewModel.setSentMediaQuality(it)
|
||||
dismiss()
|
||||
})
|
||||
}
|
||||
}
|
||||
}
|
||||
Column {
|
||||
Box(contentAlignment = Alignment.Center, modifier = Modifier.fillMaxWidth()) {
|
||||
BottomSheets.Handle(modifier = Modifier.padding(top = 6.dp))
|
||||
}
|
||||
|
||||
@Composable
|
||||
private fun Content(quality: SentMediaQuality, onQualitySelected: (SentMediaQuality) -> Unit) {
|
||||
Column(horizontalAlignment = Alignment.CenterHorizontally) {
|
||||
Box(contentAlignment = Alignment.Center, modifier = Modifier.fillMaxWidth()) {
|
||||
BottomSheets.Handle(modifier = Modifier.padding(top = 6.dp))
|
||||
}
|
||||
|
||||
Text(
|
||||
text = stringResource(id = R.string.QualitySelectorBottomSheetDialog__media_quality),
|
||||
style = MaterialTheme.typography.titleLarge,
|
||||
color = MaterialTheme.colorScheme.onSurface,
|
||||
modifier = Modifier.padding(top = 20.dp, bottom = 14.dp)
|
||||
)
|
||||
Row(
|
||||
horizontalArrangement = Arrangement.SpaceEvenly,
|
||||
modifier = Modifier
|
||||
.fillMaxWidth()
|
||||
.padding(bottom = 20.dp)
|
||||
) {
|
||||
val standardQuality = quality == SentMediaQuality.STANDARD
|
||||
Button(
|
||||
modifier = Modifier
|
||||
.defaultMinSize(minWidth = 174.dp, minHeight = 60.dp)
|
||||
.weight(1f),
|
||||
onClick = { onQualitySelected(SentMediaQuality.STANDARD) },
|
||||
shape = RoundedCornerShape(percent = 25),
|
||||
colors = if (standardQuality) ButtonDefaults.filledTonalButtonColors() else ButtonDefaults.textButtonColors(),
|
||||
elevation = if (standardQuality) ButtonDefaults.filledTonalButtonElevation() else null,
|
||||
contentPadding = if (standardQuality) ButtonDefaults.ContentPadding else ButtonDefaults.TextButtonContentPadding
|
||||
) {
|
||||
ButtonLabel(title = stringResource(id = R.string.QualitySelectorBottomSheetDialog__standard), description = stringResource(id = R.string.QualitySelectorBottomSheetDialog__faster_less_data))
|
||||
}
|
||||
Button(
|
||||
modifier = Modifier
|
||||
.defaultMinSize(minWidth = 174.dp, minHeight = 60.dp)
|
||||
.weight(1f),
|
||||
onClick = { onQualitySelected(SentMediaQuality.HIGH) },
|
||||
shape = RoundedCornerShape(percent = 25),
|
||||
colors = if (!standardQuality) ButtonDefaults.filledTonalButtonColors() else ButtonDefaults.textButtonColors(),
|
||||
elevation = if (!standardQuality) ButtonDefaults.filledTonalButtonElevation() else null,
|
||||
contentPadding = if (!standardQuality) ButtonDefaults.ContentPadding else ButtonDefaults.TextButtonContentPadding
|
||||
) {
|
||||
ButtonLabel(title = stringResource(id = R.string.QualitySelectorBottomSheetDialog__high), description = stringResource(id = R.string.QualitySelectorBottomSheetDialog__slower_more_data))
|
||||
QualitySelectorSheetContent(quality = quality, onQualitySelected = {
|
||||
sharedViewModel.setSentMediaQuality(it)
|
||||
dismiss()
|
||||
})
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@Composable
|
||||
private fun ButtonLabel(title: String, description: String) {
|
||||
Column(horizontalAlignment = Alignment.CenterHorizontally) {
|
||||
Text(text = title, color = MaterialTheme.colorScheme.onSurface)
|
||||
Text(text = description, color = MaterialTheme.colorScheme.onSurface, style = MaterialTheme.typography.bodySmall)
|
||||
}
|
||||
}
|
||||
|
||||
@Preview(showBackground = true, uiMode = Configuration.UI_MODE_NIGHT_YES)
|
||||
@Composable
|
||||
private fun PreviewQualitySelectorBottomSheetStandard() {
|
||||
Previews.Preview {
|
||||
Content(SentMediaQuality.STANDARD) {}
|
||||
}
|
||||
}
|
||||
|
||||
@Preview(showBackground = true, uiMode = Configuration.UI_MODE_NIGHT_YES)
|
||||
@Composable
|
||||
private fun PreviewQualitySelectorBottomSheetHigh() {
|
||||
Previews.Preview {
|
||||
Content(SentMediaQuality.HIGH) {}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -5652,18 +5652,6 @@
|
||||
<!-- GroupDescriptionDialog -->
|
||||
<string name="GroupDescriptionDialog__group_description">Groepbeskrywing</string>
|
||||
|
||||
<!-- QualitySelectorBottomSheetDialog -->
|
||||
<!-- Label for our standard quality media conversion. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__standard">Standaard</string>
|
||||
<!-- Description for our standard quality media conversion. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__faster_less_data">Vinniger, minder data</string>
|
||||
<!-- Label for our high quality media conversion. This has better quality than standard. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__high">Hoog</string>
|
||||
<!-- Label for our high quality media conversion. This has better quality than standard. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__slower_more_data">Stadiger, meer data</string>
|
||||
<!-- Title heading for our media conversion quality selector. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__media_quality">Mediakwaliteit</string>
|
||||
|
||||
<!-- AppSettingsFragment -->
|
||||
<!-- String alerting user that something is wrong with their backups subscription -->
|
||||
<string name="AppSettingsFragment__renew_your_signal_backups_subscription">Hernu jou intekening op Signal se Veilige Rugsteun</string>
|
||||
@@ -6414,14 +6402,6 @@
|
||||
<string name="MediaReviewFragment__video_set_to_view_once">Video gestel om dit slegs een keer te sien</string>
|
||||
<!-- Small notification presented to the user when they set their photo to view-once mode -->
|
||||
<string name="MediaReviewFragment__photo_set_to_view_once">Foto gestel om dit slegs een keer te sien</string>
|
||||
<!-- Small notification presented to the user when they set their video to be sent in high visual quality. -->
|
||||
<string name="MediaReviewFragment__video_set_to_high_quality">Video op hoë kwaliteit gestel</string>
|
||||
<!-- Small notification presented to the user when they set their video to be sent in standard (lower than high) visual quality. -->
|
||||
<string name="MediaReviewFragment__video_set_to_standard_quality">Video op standaardkwaliteit gestel</string>
|
||||
<!-- Small notification presented to the user when they set their still image to be sent in high visual quality. -->
|
||||
<string name="MediaReviewFragment__photo_set_to_high_quality">Foto op hoë kwaliteit gestel</string>
|
||||
<!-- Small notification presented to the user when they set their still image to be sent in standard (lower than high) visual quality. -->
|
||||
<string name="MediaReviewFragment__photo_set_to_standard_quality">Foto op standaardkwaliteit gestel</string>
|
||||
<!-- Accessibility label describing the add media button on the Media review screen -->
|
||||
<string name="MediaReviewFragment__add_media_accessibility_label">Voeg \'n medium by</string>
|
||||
<!-- Accessibility label describing the brush and pen button on the Media review screen -->
|
||||
@@ -6440,16 +6420,6 @@
|
||||
<string name="MediaReviewFragment__send_media_accessibility_label">Stuur media</string>
|
||||
<!-- Accessibility label describing the finish adding a message button on the Media review screen dialog -->
|
||||
<string name="MediaReviewFragment__finish_adding_a_message_accessibility_label">Voltooi byvoeging van \'n boodskap</string>
|
||||
<!-- Small notification presented to the user when they set multiple media items to be sent in high visual quality. -->
|
||||
<plurals name="MediaReviewFragment__items_set_to_high_quality">
|
||||
<item quantity="one">%1$d item op hoë kwaliteit gestel</item>
|
||||
<item quantity="other">%1$d items op hoë kwaliteit gestel</item>
|
||||
</plurals>
|
||||
<!-- Small notification presented to the user when they set multiple media items to be sent in standard (lower than high) visual quality. -->
|
||||
<plurals name="MediaReviewFragment__items_set_to_standard_quality">
|
||||
<item quantity="one">%1$d item op standaardkwaliteit gestel</item>
|
||||
<item quantity="other">%1$d items op standaardkwaliteit gestel</item>
|
||||
</plurals>
|
||||
|
||||
<string name="ImageEditorHud__cancel">Kanselleer</string>
|
||||
<string name="ImageEditorHud__draw">Skets</string>
|
||||
|
||||
@@ -6224,18 +6224,6 @@
|
||||
<!-- GroupDescriptionDialog -->
|
||||
<string name="GroupDescriptionDialog__group_description">وصف المجموعة</string>
|
||||
|
||||
<!-- QualitySelectorBottomSheetDialog -->
|
||||
<!-- Label for our standard quality media conversion. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__standard">قياسية</string>
|
||||
<!-- Description for our standard quality media conversion. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__faster_less_data">أسرع، بيانات أقل</string>
|
||||
<!-- Label for our high quality media conversion. This has better quality than standard. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__high">عالي الدقة</string>
|
||||
<!-- Label for our high quality media conversion. This has better quality than standard. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__slower_more_data">أبطأ، بيانات أكثر</string>
|
||||
<!-- Title heading for our media conversion quality selector. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__media_quality">جودة الوسائط</string>
|
||||
|
||||
<!-- AppSettingsFragment -->
|
||||
<!-- String alerting user that something is wrong with their backups subscription -->
|
||||
<string name="AppSettingsFragment__renew_your_signal_backups_subscription">جدِّد اشتراكك في النسخ الاحتياطية الآمنة لسيجنال</string>
|
||||
@@ -7054,14 +7042,6 @@
|
||||
<string name="MediaReviewFragment__video_set_to_view_once">تمَّ تحديد عرض الفيديو لمرّة واحدة</string>
|
||||
<!-- Small notification presented to the user when they set their photo to view-once mode -->
|
||||
<string name="MediaReviewFragment__photo_set_to_view_once">تمَّ تحديد عرض الصورة لمرّة واحدة</string>
|
||||
<!-- Small notification presented to the user when they set their video to be sent in high visual quality. -->
|
||||
<string name="MediaReviewFragment__video_set_to_high_quality">تمَّ تحديد جودة الفيديو للجودة العالية</string>
|
||||
<!-- Small notification presented to the user when they set their video to be sent in standard (lower than high) visual quality. -->
|
||||
<string name="MediaReviewFragment__video_set_to_standard_quality">تمَّ تحديد جودة الفيديو للجودة القياسية</string>
|
||||
<!-- Small notification presented to the user when they set their still image to be sent in high visual quality. -->
|
||||
<string name="MediaReviewFragment__photo_set_to_high_quality">تمَّ تحديد جودة الصورة للجودة العالية</string>
|
||||
<!-- Small notification presented to the user when they set their still image to be sent in standard (lower than high) visual quality. -->
|
||||
<string name="MediaReviewFragment__photo_set_to_standard_quality">تمَّ تحديد جودة الصورة للجودة القياسية</string>
|
||||
<!-- Accessibility label describing the add media button on the Media review screen -->
|
||||
<string name="MediaReviewFragment__add_media_accessibility_label">إضافة ملف وسائط</string>
|
||||
<!-- Accessibility label describing the brush and pen button on the Media review screen -->
|
||||
@@ -7080,24 +7060,6 @@
|
||||
<string name="MediaReviewFragment__send_media_accessibility_label">إرسال الوسائط</string>
|
||||
<!-- Accessibility label describing the finish adding a message button on the Media review screen dialog -->
|
||||
<string name="MediaReviewFragment__finish_adding_a_message_accessibility_label">إنهاء إضافة رسالة</string>
|
||||
<!-- Small notification presented to the user when they set multiple media items to be sent in high visual quality. -->
|
||||
<plurals name="MediaReviewFragment__items_set_to_high_quality">
|
||||
<item quantity="zero">تمَّ تحديد جودة %1$d عناصر للجودة العالية</item>
|
||||
<item quantity="one">تمَّ تحديد جودة %1$d عنصر للجودة العالية</item>
|
||||
<item quantity="two">تمَّ تحديد جودة %1$d عنصرين للجودة العالية</item>
|
||||
<item quantity="few">تمَّ تحديد جودة %1$d عناصر للجودة العالية</item>
|
||||
<item quantity="many">تمَّ تحديد جودة %1$d عنصرًا للجودة العالية</item>
|
||||
<item quantity="other">تمَّ تحديد جودة %1$d عنصر للجودة العالية</item>
|
||||
</plurals>
|
||||
<!-- Small notification presented to the user when they set multiple media items to be sent in standard (lower than high) visual quality. -->
|
||||
<plurals name="MediaReviewFragment__items_set_to_standard_quality">
|
||||
<item quantity="zero">تمَّ تحديد جودة %1$d عناصر للجودة القياسية</item>
|
||||
<item quantity="one">تمَّ تحديد جودة %1$d عنصر للجودة القياسية</item>
|
||||
<item quantity="two">تمَّ تحديد جودة %1$d عنصرين للجودة القياسية</item>
|
||||
<item quantity="few">تمَّ تحديد جودة %1$d عناصر للجودة القياسية</item>
|
||||
<item quantity="many">تمَّ تحديد جودة %1$d عنصرًا للجودة القياسية</item>
|
||||
<item quantity="other">تمَّ تحديد جودة %1$d عنصر للجودة القياسية</item>
|
||||
</plurals>
|
||||
|
||||
<string name="ImageEditorHud__cancel">إلغاء</string>
|
||||
<string name="ImageEditorHud__draw">رسم</string>
|
||||
|
||||
@@ -5652,18 +5652,6 @@
|
||||
<!-- GroupDescriptionDialog -->
|
||||
<string name="GroupDescriptionDialog__group_description">Qrup açıqlaması</string>
|
||||
|
||||
<!-- QualitySelectorBottomSheetDialog -->
|
||||
<!-- Label for our standard quality media conversion. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__standard">Standard</string>
|
||||
<!-- Description for our standard quality media conversion. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__faster_less_data">Sürətli, daha az verilənlər</string>
|
||||
<!-- Label for our high quality media conversion. This has better quality than standard. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__high">Yüksək</string>
|
||||
<!-- Label for our high quality media conversion. This has better quality than standard. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__slower_more_data">Yavaş, daha çox verilənlər</string>
|
||||
<!-- Title heading for our media conversion quality selector. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__media_quality">Media keyfiyyəti</string>
|
||||
|
||||
<!-- AppSettingsFragment -->
|
||||
<!-- String alerting user that something is wrong with their backups subscription -->
|
||||
<string name="AppSettingsFragment__renew_your_signal_backups_subscription">Signal-ın Təhlükəsiz Ehtiyat Nüsxələr abunəliyini yeniləyin</string>
|
||||
@@ -6414,14 +6402,6 @@
|
||||
<string name="MediaReviewFragment__video_set_to_view_once">Video birdəfəlik baxış üçün təyin olunub</string>
|
||||
<!-- Small notification presented to the user when they set their photo to view-once mode -->
|
||||
<string name="MediaReviewFragment__photo_set_to_view_once">Fotoşəkil birdəfəlik baxış üçün təyin olunub</string>
|
||||
<!-- Small notification presented to the user when they set their video to be sent in high visual quality. -->
|
||||
<string name="MediaReviewFragment__video_set_to_high_quality">Video yüksək keyfiyyətə sazlanıb</string>
|
||||
<!-- Small notification presented to the user when they set their video to be sent in standard (lower than high) visual quality. -->
|
||||
<string name="MediaReviewFragment__video_set_to_standard_quality">Video standart keyfiyyətdə sazlandı</string>
|
||||
<!-- Small notification presented to the user when they set their still image to be sent in high visual quality. -->
|
||||
<string name="MediaReviewFragment__photo_set_to_high_quality">Fotoşəkil yüksək keyfiyyətə sazlanıb</string>
|
||||
<!-- Small notification presented to the user when they set their still image to be sent in standard (lower than high) visual quality. -->
|
||||
<string name="MediaReviewFragment__photo_set_to_standard_quality">Fotoşəkil standart keyfiyyətə sazlanıb</string>
|
||||
<!-- Accessibility label describing the add media button on the Media review screen -->
|
||||
<string name="MediaReviewFragment__add_media_accessibility_label">Bir media faylı əlavə et</string>
|
||||
<!-- Accessibility label describing the brush and pen button on the Media review screen -->
|
||||
@@ -6440,16 +6420,6 @@
|
||||
<string name="MediaReviewFragment__send_media_accessibility_label">Media faylını göndər</string>
|
||||
<!-- Accessibility label describing the finish adding a message button on the Media review screen dialog -->
|
||||
<string name="MediaReviewFragment__finish_adding_a_message_accessibility_label">Mesaj əlavə etməyi tamamla</string>
|
||||
<!-- Small notification presented to the user when they set multiple media items to be sent in high visual quality. -->
|
||||
<plurals name="MediaReviewFragment__items_set_to_high_quality">
|
||||
<item quantity="one">%1$d fayl yüksək keyfiyyətə sazlanıb</item>
|
||||
<item quantity="other">%1$d fayl yüksək keyfiyyətə sazlanıb</item>
|
||||
</plurals>
|
||||
<!-- Small notification presented to the user when they set multiple media items to be sent in standard (lower than high) visual quality. -->
|
||||
<plurals name="MediaReviewFragment__items_set_to_standard_quality">
|
||||
<item quantity="one">%1$d fayl standart keyfiyyətə sazlanıb</item>
|
||||
<item quantity="other">%1$d fayl standart keyfiyyətə sazlanıb</item>
|
||||
</plurals>
|
||||
|
||||
<string name="ImageEditorHud__cancel">İmtina</string>
|
||||
<string name="ImageEditorHud__draw">Çək</string>
|
||||
|
||||
@@ -5938,18 +5938,6 @@
|
||||
<!-- GroupDescriptionDialog -->
|
||||
<string name="GroupDescriptionDialog__group_description">Апісанне групы</string>
|
||||
|
||||
<!-- QualitySelectorBottomSheetDialog -->
|
||||
<!-- Label for our standard quality media conversion. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__standard">Стандартнае</string>
|
||||
<!-- Description for our standard quality media conversion. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__faster_less_data">Хутчэй, менш даных</string>
|
||||
<!-- Label for our high quality media conversion. This has better quality than standard. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__high">Высокая</string>
|
||||
<!-- Label for our high quality media conversion. This has better quality than standard. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__slower_more_data">Павольней, больш даных</string>
|
||||
<!-- Title heading for our media conversion quality selector. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__media_quality">Якасць медыяфайла</string>
|
||||
|
||||
<!-- AppSettingsFragment -->
|
||||
<!-- String alerting user that something is wrong with their backups subscription -->
|
||||
<string name="AppSettingsFragment__renew_your_signal_backups_subscription">Аднавіць падпіску на бяспечнае рэзервовае капіраванне Signal</string>
|
||||
@@ -6734,14 +6722,6 @@
|
||||
<string name="MediaReviewFragment__video_set_to_view_once">Відэа для аднаразовага прагляду</string>
|
||||
<!-- Small notification presented to the user when they set their photo to view-once mode -->
|
||||
<string name="MediaReviewFragment__photo_set_to_view_once">Фота для аднаразовага прагляду</string>
|
||||
<!-- Small notification presented to the user when they set their video to be sent in high visual quality. -->
|
||||
<string name="MediaReviewFragment__video_set_to_high_quality">Відэа ў высокай якасці</string>
|
||||
<!-- Small notification presented to the user when they set their video to be sent in standard (lower than high) visual quality. -->
|
||||
<string name="MediaReviewFragment__video_set_to_standard_quality">Стандартная якасць відэа</string>
|
||||
<!-- Small notification presented to the user when they set their still image to be sent in high visual quality. -->
|
||||
<string name="MediaReviewFragment__photo_set_to_high_quality">Фота ў высокай якасці</string>
|
||||
<!-- Small notification presented to the user when they set their still image to be sent in standard (lower than high) visual quality. -->
|
||||
<string name="MediaReviewFragment__photo_set_to_standard_quality">Стандартная якасць фота</string>
|
||||
<!-- Accessibility label describing the add media button on the Media review screen -->
|
||||
<string name="MediaReviewFragment__add_media_accessibility_label">Дадаць медыяфайл</string>
|
||||
<!-- Accessibility label describing the brush and pen button on the Media review screen -->
|
||||
@@ -6760,20 +6740,6 @@
|
||||
<string name="MediaReviewFragment__send_media_accessibility_label">Адправіць медыяфайлы</string>
|
||||
<!-- Accessibility label describing the finish adding a message button on the Media review screen dialog -->
|
||||
<string name="MediaReviewFragment__finish_adding_a_message_accessibility_label">Скончыць дадаваць паведамленне</string>
|
||||
<!-- Small notification presented to the user when they set multiple media items to be sent in high visual quality. -->
|
||||
<plurals name="MediaReviewFragment__items_set_to_high_quality">
|
||||
<item quantity="one">%1$d элемент у высокай якасці</item>
|
||||
<item quantity="few">%1$d элементы ў высокай якасці</item>
|
||||
<item quantity="many">%1$d элементаў у высокай якасці</item>
|
||||
<item quantity="other">%1$d элементаў у высокай якасці</item>
|
||||
</plurals>
|
||||
<!-- Small notification presented to the user when they set multiple media items to be sent in standard (lower than high) visual quality. -->
|
||||
<plurals name="MediaReviewFragment__items_set_to_standard_quality">
|
||||
<item quantity="one">%1$d элемент у стандартнай якасці</item>
|
||||
<item quantity="few">%1$d элементы ў стандартнай якасці</item>
|
||||
<item quantity="many">%1$d элементаў у стандартнай якасці</item>
|
||||
<item quantity="other">%1$d элементаў у стандартнай якасці</item>
|
||||
</plurals>
|
||||
|
||||
<string name="ImageEditorHud__cancel">Скасаваць</string>
|
||||
<string name="ImageEditorHud__draw">Намаляваць</string>
|
||||
|
||||
@@ -5652,18 +5652,6 @@
|
||||
<!-- GroupDescriptionDialog -->
|
||||
<string name="GroupDescriptionDialog__group_description">Описание на група</string>
|
||||
|
||||
<!-- QualitySelectorBottomSheetDialog -->
|
||||
<!-- Label for our standard quality media conversion. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__standard">Стандартно</string>
|
||||
<!-- Description for our standard quality media conversion. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__faster_less_data">По-бързо, по-малко данни</string>
|
||||
<!-- Label for our high quality media conversion. This has better quality than standard. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__high">Високо</string>
|
||||
<!-- Label for our high quality media conversion. This has better quality than standard. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__slower_more_data">По-бавно, повече данни</string>
|
||||
<!-- Title heading for our media conversion quality selector. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__media_quality">Качество на мултимедията</string>
|
||||
|
||||
<!-- AppSettingsFragment -->
|
||||
<!-- String alerting user that something is wrong with their backups subscription -->
|
||||
<string name="AppSettingsFragment__renew_your_signal_backups_subscription">Подновете абонамента си за „Сигурни резервни копия на Signal“</string>
|
||||
@@ -6414,14 +6402,6 @@
|
||||
<string name="MediaReviewFragment__video_set_to_view_once">Видеото е настроено за еднократно гледане</string>
|
||||
<!-- Small notification presented to the user when they set their photo to view-once mode -->
|
||||
<string name="MediaReviewFragment__photo_set_to_view_once">Снимката е настроена за еднократно гледане</string>
|
||||
<!-- Small notification presented to the user when they set their video to be sent in high visual quality. -->
|
||||
<string name="MediaReviewFragment__video_set_to_high_quality">Видеото е настроено на високо качество</string>
|
||||
<!-- Small notification presented to the user when they set their video to be sent in standard (lower than high) visual quality. -->
|
||||
<string name="MediaReviewFragment__video_set_to_standard_quality">Видеото е настроено на стандартно качество</string>
|
||||
<!-- Small notification presented to the user when they set their still image to be sent in high visual quality. -->
|
||||
<string name="MediaReviewFragment__photo_set_to_high_quality">Снимката е настроена на високо качество</string>
|
||||
<!-- Small notification presented to the user when they set their still image to be sent in standard (lower than high) visual quality. -->
|
||||
<string name="MediaReviewFragment__photo_set_to_standard_quality">Снимката е настроена на стандартно качество</string>
|
||||
<!-- Accessibility label describing the add media button on the Media review screen -->
|
||||
<string name="MediaReviewFragment__add_media_accessibility_label">Добавяне на мултимедия</string>
|
||||
<!-- Accessibility label describing the brush and pen button on the Media review screen -->
|
||||
@@ -6440,16 +6420,6 @@
|
||||
<string name="MediaReviewFragment__send_media_accessibility_label">Изпращане на мултимедия</string>
|
||||
<!-- Accessibility label describing the finish adding a message button on the Media review screen dialog -->
|
||||
<string name="MediaReviewFragment__finish_adding_a_message_accessibility_label">Завършете добавянето на съобщение</string>
|
||||
<!-- Small notification presented to the user when they set multiple media items to be sent in high visual quality. -->
|
||||
<plurals name="MediaReviewFragment__items_set_to_high_quality">
|
||||
<item quantity="one">%1$d елемент е настроен на високо качество</item>
|
||||
<item quantity="other">%1$d елемента са настроени на високо качество</item>
|
||||
</plurals>
|
||||
<!-- Small notification presented to the user when they set multiple media items to be sent in standard (lower than high) visual quality. -->
|
||||
<plurals name="MediaReviewFragment__items_set_to_standard_quality">
|
||||
<item quantity="one">%1$d елемент е настроен на стандартно качество</item>
|
||||
<item quantity="other">%1$d елемента са настроени на стандартно качество</item>
|
||||
</plurals>
|
||||
|
||||
<string name="ImageEditorHud__cancel">Отказ</string>
|
||||
<string name="ImageEditorHud__draw">Рисуване</string>
|
||||
|
||||
@@ -5652,18 +5652,6 @@
|
||||
<!-- GroupDescriptionDialog -->
|
||||
<string name="GroupDescriptionDialog__group_description">গ্রুপের বিবরণ</string>
|
||||
|
||||
<!-- QualitySelectorBottomSheetDialog -->
|
||||
<!-- Label for our standard quality media conversion. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__standard">স্ট্যান্ডার্ড</string>
|
||||
<!-- Description for our standard quality media conversion. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__faster_less_data">দ্রুততর, কম ডেটা</string>
|
||||
<!-- Label for our high quality media conversion. This has better quality than standard. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__high">উচ্চ</string>
|
||||
<!-- Label for our high quality media conversion. This has better quality than standard. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__slower_more_data">আরও ধীরগতি, আরও ডেটা</string>
|
||||
<!-- Title heading for our media conversion quality selector. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__media_quality">মিডিয়ার মান</string>
|
||||
|
||||
<!-- AppSettingsFragment -->
|
||||
<!-- String alerting user that something is wrong with their backups subscription -->
|
||||
<string name="AppSettingsFragment__renew_your_signal_backups_subscription">আপনার Signal নিরাপদ ব্যাকআপ সাবস্ক্রিপশন নবায়ন করুন</string>
|
||||
@@ -6414,14 +6402,6 @@
|
||||
<string name="MediaReviewFragment__video_set_to_view_once">ভিডিও একবার দেখার জন্য সেট করা হয়েছে</string>
|
||||
<!-- Small notification presented to the user when they set their photo to view-once mode -->
|
||||
<string name="MediaReviewFragment__photo_set_to_view_once">ছবি একবার দেখার জন্য সেট করা হয়েছে</string>
|
||||
<!-- Small notification presented to the user when they set their video to be sent in high visual quality. -->
|
||||
<string name="MediaReviewFragment__video_set_to_high_quality">ভিডিও উচ্চ মানে সেট করা হয়েছে</string>
|
||||
<!-- Small notification presented to the user when they set their video to be sent in standard (lower than high) visual quality. -->
|
||||
<string name="MediaReviewFragment__video_set_to_standard_quality">ভিডিও স্ট্যান্ডার্ড কোয়ালিটিতে সেট করা হয়েছে</string>
|
||||
<!-- Small notification presented to the user when they set their still image to be sent in high visual quality. -->
|
||||
<string name="MediaReviewFragment__photo_set_to_high_quality">ছবি উচ্চ মানে সেট করা হয়েছে</string>
|
||||
<!-- Small notification presented to the user when they set their still image to be sent in standard (lower than high) visual quality. -->
|
||||
<string name="MediaReviewFragment__photo_set_to_standard_quality">ছবি স্ট্যান্ডার্ড মানে সেট করা হয়েছে</string>
|
||||
<!-- Accessibility label describing the add media button on the Media review screen -->
|
||||
<string name="MediaReviewFragment__add_media_accessibility_label">একটি মিডিয়া যোগ করুন</string>
|
||||
<!-- Accessibility label describing the brush and pen button on the Media review screen -->
|
||||
@@ -6440,16 +6420,6 @@
|
||||
<string name="MediaReviewFragment__send_media_accessibility_label">মিডিয়া পাঠান</string>
|
||||
<!-- Accessibility label describing the finish adding a message button on the Media review screen dialog -->
|
||||
<string name="MediaReviewFragment__finish_adding_a_message_accessibility_label">একটি মেসেজ যোগ করা শেষ করুন</string>
|
||||
<!-- Small notification presented to the user when they set multiple media items to be sent in high visual quality. -->
|
||||
<plurals name="MediaReviewFragment__items_set_to_high_quality">
|
||||
<item quantity="one">%1$d-টি আইটেম উচ্চ মানে সেট করা হয়েছে</item>
|
||||
<item quantity="other">%1$d-টি আইটেম উচ্চ মানে সেট করা হয়েছে</item>
|
||||
</plurals>
|
||||
<!-- Small notification presented to the user when they set multiple media items to be sent in standard (lower than high) visual quality. -->
|
||||
<plurals name="MediaReviewFragment__items_set_to_standard_quality">
|
||||
<item quantity="one">%1$d-টি আইটেম স্ট্যান্ডার্ড মানে সেট করা হয়েছে</item>
|
||||
<item quantity="other">%1$d-টি আইটেম স্ট্যান্ডার্ড মানে সেট করা হয়েছে</item>
|
||||
</plurals>
|
||||
|
||||
<string name="ImageEditorHud__cancel">বাতিল করুন</string>
|
||||
<string name="ImageEditorHud__draw">আঁকুন</string>
|
||||
|
||||
@@ -5938,18 +5938,6 @@
|
||||
<!-- GroupDescriptionDialog -->
|
||||
<string name="GroupDescriptionDialog__group_description">Opis grupe</string>
|
||||
|
||||
<!-- QualitySelectorBottomSheetDialog -->
|
||||
<!-- Label for our standard quality media conversion. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__standard">Standardni</string>
|
||||
<!-- Description for our standard quality media conversion. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__faster_less_data">Brži, manji protok</string>
|
||||
<!-- Label for our high quality media conversion. This has better quality than standard. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__high">Visoki</string>
|
||||
<!-- Label for our high quality media conversion. This has better quality than standard. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__slower_more_data">Sporiji, veći protok</string>
|
||||
<!-- Title heading for our media conversion quality selector. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__media_quality">Kvalitet zapisa</string>
|
||||
|
||||
<!-- AppSettingsFragment -->
|
||||
<!-- String alerting user that something is wrong with their backups subscription -->
|
||||
<string name="AppSettingsFragment__renew_your_signal_backups_subscription">Obnovite svoju pretplatu na Signal Secure Backups</string>
|
||||
@@ -6734,14 +6722,6 @@
|
||||
<string name="MediaReviewFragment__video_set_to_view_once">Video je postavljen za jednokratno gledanje</string>
|
||||
<!-- Small notification presented to the user when they set their photo to view-once mode -->
|
||||
<string name="MediaReviewFragment__photo_set_to_view_once">Fotografija je postavljena za jednokratni pregled</string>
|
||||
<!-- Small notification presented to the user when they set their video to be sent in high visual quality. -->
|
||||
<string name="MediaReviewFragment__video_set_to_high_quality">Video je postavljen na visoku kvalitetu</string>
|
||||
<!-- Small notification presented to the user when they set their video to be sent in standard (lower than high) visual quality. -->
|
||||
<string name="MediaReviewFragment__video_set_to_standard_quality">Video je postavljen na standardni kvalitet</string>
|
||||
<!-- Small notification presented to the user when they set their still image to be sent in high visual quality. -->
|
||||
<string name="MediaReviewFragment__photo_set_to_high_quality">Fotografija je postavljena na visoku kvalitetu</string>
|
||||
<!-- Small notification presented to the user when they set their still image to be sent in standard (lower than high) visual quality. -->
|
||||
<string name="MediaReviewFragment__photo_set_to_standard_quality">Fotografija je postavljena na standardni kvalitet</string>
|
||||
<!-- Accessibility label describing the add media button on the Media review screen -->
|
||||
<string name="MediaReviewFragment__add_media_accessibility_label">Dodavanje medijskog sadržaja</string>
|
||||
<!-- Accessibility label describing the brush and pen button on the Media review screen -->
|
||||
@@ -6760,20 +6740,6 @@
|
||||
<string name="MediaReviewFragment__send_media_accessibility_label">Slanje medijskog sadržaja</string>
|
||||
<!-- Accessibility label describing the finish adding a message button on the Media review screen dialog -->
|
||||
<string name="MediaReviewFragment__finish_adding_a_message_accessibility_label">Završetak dodavanja poruke</string>
|
||||
<!-- Small notification presented to the user when they set multiple media items to be sent in high visual quality. -->
|
||||
<plurals name="MediaReviewFragment__items_set_to_high_quality">
|
||||
<item quantity="one">%1$d stavka je postavljena na visok kvalitet</item>
|
||||
<item quantity="few">%1$d stavke su postavljene na visok kvalitet</item>
|
||||
<item quantity="many">%1$d stavki je postavljeno na visok kvalitet</item>
|
||||
<item quantity="other">%1$d stavki je postavljeno na visok kvalitet</item>
|
||||
</plurals>
|
||||
<!-- Small notification presented to the user when they set multiple media items to be sent in standard (lower than high) visual quality. -->
|
||||
<plurals name="MediaReviewFragment__items_set_to_standard_quality">
|
||||
<item quantity="one">%1$d stavka je postavljena na standardni kvalitet</item>
|
||||
<item quantity="few">%1$d stavke su postavljene na standardni kvalitet</item>
|
||||
<item quantity="many">%1$d stavki je postavljeno na standardni kvalitet</item>
|
||||
<item quantity="other">%1$d stavki je postavljeno na standardni kvalitet</item>
|
||||
</plurals>
|
||||
|
||||
<string name="ImageEditorHud__cancel">Prekini</string>
|
||||
<string name="ImageEditorHud__draw">Crtaj</string>
|
||||
|
||||
@@ -5652,18 +5652,6 @@
|
||||
<!-- GroupDescriptionDialog -->
|
||||
<string name="GroupDescriptionDialog__group_description">Descripció del grup</string>
|
||||
|
||||
<!-- QualitySelectorBottomSheetDialog -->
|
||||
<!-- Label for our standard quality media conversion. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__standard">Estàndard</string>
|
||||
<!-- Description for our standard quality media conversion. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__faster_less_data">Més ràpid, menys dades</string>
|
||||
<!-- Label for our high quality media conversion. This has better quality than standard. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__high">Alta</string>
|
||||
<!-- Label for our high quality media conversion. This has better quality than standard. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__slower_more_data">Més lent, més dades</string>
|
||||
<!-- Title heading for our media conversion quality selector. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__media_quality">Qualitat dels mitjans</string>
|
||||
|
||||
<!-- AppSettingsFragment -->
|
||||
<!-- String alerting user that something is wrong with their backups subscription -->
|
||||
<string name="AppSettingsFragment__renew_your_signal_backups_subscription">Renova la teva subscripció a les Còpies de seguretat segures de Signal</string>
|
||||
@@ -6414,14 +6402,6 @@
|
||||
<string name="MediaReviewFragment__video_set_to_view_once">Vídeo configurat amb una sola visualització</string>
|
||||
<!-- Small notification presented to the user when they set their photo to view-once mode -->
|
||||
<string name="MediaReviewFragment__photo_set_to_view_once">Foto configurada amb una sola visualització</string>
|
||||
<!-- Small notification presented to the user when they set their video to be sent in high visual quality. -->
|
||||
<string name="MediaReviewFragment__video_set_to_high_quality">Vídeo configurat en alta qualitat</string>
|
||||
<!-- Small notification presented to the user when they set their video to be sent in standard (lower than high) visual quality. -->
|
||||
<string name="MediaReviewFragment__video_set_to_standard_quality">Vídeo configurat en qualitat estàndard</string>
|
||||
<!-- Small notification presented to the user when they set their still image to be sent in high visual quality. -->
|
||||
<string name="MediaReviewFragment__photo_set_to_high_quality">Foto configurada en alta qualitat</string>
|
||||
<!-- Small notification presented to the user when they set their still image to be sent in standard (lower than high) visual quality. -->
|
||||
<string name="MediaReviewFragment__photo_set_to_standard_quality">Foto configurada en qualitat estàndard</string>
|
||||
<!-- Accessibility label describing the add media button on the Media review screen -->
|
||||
<string name="MediaReviewFragment__add_media_accessibility_label">Afegir Arxius multimèdia</string>
|
||||
<!-- Accessibility label describing the brush and pen button on the Media review screen -->
|
||||
@@ -6440,16 +6420,6 @@
|
||||
<string name="MediaReviewFragment__send_media_accessibility_label">Enviar Arxius multimèdia</string>
|
||||
<!-- Accessibility label describing the finish adding a message button on the Media review screen dialog -->
|
||||
<string name="MediaReviewFragment__finish_adding_a_message_accessibility_label">Finalitzar Afegir missatge</string>
|
||||
<!-- Small notification presented to the user when they set multiple media items to be sent in high visual quality. -->
|
||||
<plurals name="MediaReviewFragment__items_set_to_high_quality">
|
||||
<item quantity="one">%1$d element configurat en alta qualitat</item>
|
||||
<item quantity="other">%1$d elements configurats en alta qualitat</item>
|
||||
</plurals>
|
||||
<!-- Small notification presented to the user when they set multiple media items to be sent in standard (lower than high) visual quality. -->
|
||||
<plurals name="MediaReviewFragment__items_set_to_standard_quality">
|
||||
<item quantity="one">%1$d element configurat en qualitat estàndard</item>
|
||||
<item quantity="other">%1$d elements configurats en qualitat estàndard</item>
|
||||
</plurals>
|
||||
|
||||
<string name="ImageEditorHud__cancel">Cancel·la</string>
|
||||
<string name="ImageEditorHud__draw">Dibuix</string>
|
||||
|
||||
@@ -5938,18 +5938,6 @@
|
||||
<!-- GroupDescriptionDialog -->
|
||||
<string name="GroupDescriptionDialog__group_description">Popisek skupiny</string>
|
||||
|
||||
<!-- QualitySelectorBottomSheetDialog -->
|
||||
<!-- Label for our standard quality media conversion. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__standard">Standard</string>
|
||||
<!-- Description for our standard quality media conversion. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__faster_less_data">Rychlejší, méně dat</string>
|
||||
<!-- Label for our high quality media conversion. This has better quality than standard. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__high">Vysoká</string>
|
||||
<!-- Label for our high quality media conversion. This has better quality than standard. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__slower_more_data">Pomalejší, více dat</string>
|
||||
<!-- Title heading for our media conversion quality selector. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__media_quality">Kvalita médií</string>
|
||||
|
||||
<!-- AppSettingsFragment -->
|
||||
<!-- String alerting user that something is wrong with their backups subscription -->
|
||||
<string name="AppSettingsFragment__renew_your_signal_backups_subscription">Obnovte předplatné Zabezpečeného zálohování služby Signal</string>
|
||||
@@ -6734,14 +6722,6 @@
|
||||
<string name="MediaReviewFragment__video_set_to_view_once">Video nastaveno na jednorázové zobrazení</string>
|
||||
<!-- Small notification presented to the user when they set their photo to view-once mode -->
|
||||
<string name="MediaReviewFragment__photo_set_to_view_once">Fotografie nastavena na jednorázové zobrazení</string>
|
||||
<!-- Small notification presented to the user when they set their video to be sent in high visual quality. -->
|
||||
<string name="MediaReviewFragment__video_set_to_high_quality">Video nastaveno na vysokou kvalitu</string>
|
||||
<!-- Small notification presented to the user when they set their video to be sent in standard (lower than high) visual quality. -->
|
||||
<string name="MediaReviewFragment__video_set_to_standard_quality">Video nastaveno na standardní kvalitu</string>
|
||||
<!-- Small notification presented to the user when they set their still image to be sent in high visual quality. -->
|
||||
<string name="MediaReviewFragment__photo_set_to_high_quality">Fotografie nastavena na vysokou kvalitu</string>
|
||||
<!-- Small notification presented to the user when they set their still image to be sent in standard (lower than high) visual quality. -->
|
||||
<string name="MediaReviewFragment__photo_set_to_standard_quality">Fotografie nastavena na standardní kvalitu</string>
|
||||
<!-- Accessibility label describing the add media button on the Media review screen -->
|
||||
<string name="MediaReviewFragment__add_media_accessibility_label">Přidat média</string>
|
||||
<!-- Accessibility label describing the brush and pen button on the Media review screen -->
|
||||
@@ -6760,20 +6740,6 @@
|
||||
<string name="MediaReviewFragment__send_media_accessibility_label">Poslat média</string>
|
||||
<!-- Accessibility label describing the finish adding a message button on the Media review screen dialog -->
|
||||
<string name="MediaReviewFragment__finish_adding_a_message_accessibility_label">Dokončit přidání zprávy</string>
|
||||
<!-- Small notification presented to the user when they set multiple media items to be sent in high visual quality. -->
|
||||
<plurals name="MediaReviewFragment__items_set_to_high_quality">
|
||||
<item quantity="one">%1$d položka nastavena na vysokou kvalitu</item>
|
||||
<item quantity="few">%1$d položky nastaveny na vysokou kvalitu</item>
|
||||
<item quantity="many">%1$d položek nastaveno na vysokou kvalitu</item>
|
||||
<item quantity="other">%1$d položek nastaveno na vysokou kvalitu</item>
|
||||
</plurals>
|
||||
<!-- Small notification presented to the user when they set multiple media items to be sent in standard (lower than high) visual quality. -->
|
||||
<plurals name="MediaReviewFragment__items_set_to_standard_quality">
|
||||
<item quantity="one">%1$d položka nastavena na standardní kvalitu</item>
|
||||
<item quantity="few">%1$d položky nastaveny na standardní kvalitu</item>
|
||||
<item quantity="many">%1$d položek nastaveno na standardní kvalitu</item>
|
||||
<item quantity="other">%1$d položek nastaveno na standardní kvalitu</item>
|
||||
</plurals>
|
||||
|
||||
<string name="ImageEditorHud__cancel">Zrušit</string>
|
||||
<string name="ImageEditorHud__draw">Kreslit</string>
|
||||
|
||||
@@ -5652,18 +5652,6 @@
|
||||
<!-- GroupDescriptionDialog -->
|
||||
<string name="GroupDescriptionDialog__group_description">Gruppebeskrivelse</string>
|
||||
|
||||
<!-- QualitySelectorBottomSheetDialog -->
|
||||
<!-- Label for our standard quality media conversion. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__standard">Standard</string>
|
||||
<!-- Description for our standard quality media conversion. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__faster_less_data">Hurtigere, færre data</string>
|
||||
<!-- Label for our high quality media conversion. This has better quality than standard. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__high">Høj</string>
|
||||
<!-- Label for our high quality media conversion. This has better quality than standard. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__slower_more_data">Langsommere, mere data</string>
|
||||
<!-- Title heading for our media conversion quality selector. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__media_quality">Mediekvalitet</string>
|
||||
|
||||
<!-- AppSettingsFragment -->
|
||||
<!-- String alerting user that something is wrong with their backups subscription -->
|
||||
<string name="AppSettingsFragment__renew_your_signal_backups_subscription">Forny dit abonnement på sikre Signal-sikkerhedskopier</string>
|
||||
@@ -6414,14 +6402,6 @@
|
||||
<string name="MediaReviewFragment__video_set_to_view_once">Video indstillet til vis én gang</string>
|
||||
<!-- Small notification presented to the user when they set their photo to view-once mode -->
|
||||
<string name="MediaReviewFragment__photo_set_to_view_once">Billede indstillet til visning én gang</string>
|
||||
<!-- Small notification presented to the user when they set their video to be sent in high visual quality. -->
|
||||
<string name="MediaReviewFragment__video_set_to_high_quality">Video indstillet til høj kvalitet</string>
|
||||
<!-- Small notification presented to the user when they set their video to be sent in standard (lower than high) visual quality. -->
|
||||
<string name="MediaReviewFragment__video_set_to_standard_quality">Video indstillet til standardkvalitet</string>
|
||||
<!-- Small notification presented to the user when they set their still image to be sent in high visual quality. -->
|
||||
<string name="MediaReviewFragment__photo_set_to_high_quality">Billede indstillet til høj kvalitet</string>
|
||||
<!-- Small notification presented to the user when they set their still image to be sent in standard (lower than high) visual quality. -->
|
||||
<string name="MediaReviewFragment__photo_set_to_standard_quality">Billede indstillet til standardkvalitet</string>
|
||||
<!-- Accessibility label describing the add media button on the Media review screen -->
|
||||
<string name="MediaReviewFragment__add_media_accessibility_label">Tilføj en mediefil</string>
|
||||
<!-- Accessibility label describing the brush and pen button on the Media review screen -->
|
||||
@@ -6440,16 +6420,6 @@
|
||||
<string name="MediaReviewFragment__send_media_accessibility_label">Send mediefil</string>
|
||||
<!-- Accessibility label describing the finish adding a message button on the Media review screen dialog -->
|
||||
<string name="MediaReviewFragment__finish_adding_a_message_accessibility_label">Afslut tilføjelse af en meddelelse</string>
|
||||
<!-- Small notification presented to the user when they set multiple media items to be sent in high visual quality. -->
|
||||
<plurals name="MediaReviewFragment__items_set_to_high_quality">
|
||||
<item quantity="one">%1$d emne indstillet til høj kvalitet</item>
|
||||
<item quantity="other">%1$d emner indstillet til høj kvalitet</item>
|
||||
</plurals>
|
||||
<!-- Small notification presented to the user when they set multiple media items to be sent in standard (lower than high) visual quality. -->
|
||||
<plurals name="MediaReviewFragment__items_set_to_standard_quality">
|
||||
<item quantity="one">%1$d emne indstillet til standardkvalitet</item>
|
||||
<item quantity="other">%1$d emner indstillet til standardkvalitet</item>
|
||||
</plurals>
|
||||
|
||||
<string name="ImageEditorHud__cancel">Annullér</string>
|
||||
<string name="ImageEditorHud__draw">Tegn</string>
|
||||
|
||||
@@ -5652,18 +5652,6 @@
|
||||
<!-- GroupDescriptionDialog -->
|
||||
<string name="GroupDescriptionDialog__group_description">Gruppenbeschreibung</string>
|
||||
|
||||
<!-- QualitySelectorBottomSheetDialog -->
|
||||
<!-- Label for our standard quality media conversion. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__standard">Standard</string>
|
||||
<!-- Description for our standard quality media conversion. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__faster_less_data">Schneller, weniger Daten</string>
|
||||
<!-- Label for our high quality media conversion. This has better quality than standard. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__high">Hoch</string>
|
||||
<!-- Label for our high quality media conversion. This has better quality than standard. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__slower_more_data">Langsamer, mehr Daten</string>
|
||||
<!-- Title heading for our media conversion quality selector. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__media_quality">Medienqualität</string>
|
||||
|
||||
<!-- AppSettingsFragment -->
|
||||
<!-- String alerting user that something is wrong with their backups subscription -->
|
||||
<string name="AppSettingsFragment__renew_your_signal_backups_subscription">Erneuere dein Signal Secure Backup-Abo</string>
|
||||
@@ -6414,14 +6402,6 @@
|
||||
<string name="MediaReviewFragment__video_set_to_view_once">Video auf einmalige Ansicht eingestellt</string>
|
||||
<!-- Small notification presented to the user when they set their photo to view-once mode -->
|
||||
<string name="MediaReviewFragment__photo_set_to_view_once">Foto auf einmalige Ansicht eingestellt</string>
|
||||
<!-- Small notification presented to the user when they set their video to be sent in high visual quality. -->
|
||||
<string name="MediaReviewFragment__video_set_to_high_quality">Video auf hohe Qualität eingestellt</string>
|
||||
<!-- Small notification presented to the user when they set their video to be sent in standard (lower than high) visual quality. -->
|
||||
<string name="MediaReviewFragment__video_set_to_standard_quality">Video auf Standardqualität eingestellt</string>
|
||||
<!-- Small notification presented to the user when they set their still image to be sent in high visual quality. -->
|
||||
<string name="MediaReviewFragment__photo_set_to_high_quality">Foto auf hohe Qualität eingestellt</string>
|
||||
<!-- Small notification presented to the user when they set their still image to be sent in standard (lower than high) visual quality. -->
|
||||
<string name="MediaReviewFragment__photo_set_to_standard_quality">Foto auf Standardqualität eingestellt</string>
|
||||
<!-- Accessibility label describing the add media button on the Media review screen -->
|
||||
<string name="MediaReviewFragment__add_media_accessibility_label">Medien hinzufügen</string>
|
||||
<!-- Accessibility label describing the brush and pen button on the Media review screen -->
|
||||
@@ -6440,16 +6420,6 @@
|
||||
<string name="MediaReviewFragment__send_media_accessibility_label">Medien senden</string>
|
||||
<!-- Accessibility label describing the finish adding a message button on the Media review screen dialog -->
|
||||
<string name="MediaReviewFragment__finish_adding_a_message_accessibility_label">„Nachricht hinzufügen“ fertigstellen</string>
|
||||
<!-- Small notification presented to the user when they set multiple media items to be sent in high visual quality. -->
|
||||
<plurals name="MediaReviewFragment__items_set_to_high_quality">
|
||||
<item quantity="one">%1$d Medienelement auf hohe Qualität eingestellt</item>
|
||||
<item quantity="other">%1$d Medienelemente auf hohe Qualität eingestellt</item>
|
||||
</plurals>
|
||||
<!-- Small notification presented to the user when they set multiple media items to be sent in standard (lower than high) visual quality. -->
|
||||
<plurals name="MediaReviewFragment__items_set_to_standard_quality">
|
||||
<item quantity="one">%1$d Medienelement auf Standardqualität eingestellt</item>
|
||||
<item quantity="other">%1$d Medienelemente auf Standardqualität eingestellt</item>
|
||||
</plurals>
|
||||
|
||||
<string name="ImageEditorHud__cancel">Abbrechen</string>
|
||||
<string name="ImageEditorHud__draw">Zeichnen</string>
|
||||
|
||||
@@ -5652,18 +5652,6 @@
|
||||
<!-- GroupDescriptionDialog -->
|
||||
<string name="GroupDescriptionDialog__group_description">Περιγραφή ομάδας</string>
|
||||
|
||||
<!-- QualitySelectorBottomSheetDialog -->
|
||||
<!-- Label for our standard quality media conversion. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__standard">Κανονική</string>
|
||||
<!-- Description for our standard quality media conversion. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__faster_less_data">Γρηγορότερα, λιγότερα δεδομένα</string>
|
||||
<!-- Label for our high quality media conversion. This has better quality than standard. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__high">Υψηλή</string>
|
||||
<!-- Label for our high quality media conversion. This has better quality than standard. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__slower_more_data">Πιο αργά, περισσότερα δεδομένα</string>
|
||||
<!-- Title heading for our media conversion quality selector. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__media_quality">Ποιότητα πολυμέσων</string>
|
||||
|
||||
<!-- AppSettingsFragment -->
|
||||
<!-- String alerting user that something is wrong with their backups subscription -->
|
||||
<string name="AppSettingsFragment__renew_your_signal_backups_subscription">Ανανέωσε τη συνδρομή σου στα αντίγραφα ασφαλείας Signal Secure Backups</string>
|
||||
@@ -6414,14 +6402,6 @@
|
||||
<string name="MediaReviewFragment__video_set_to_view_once">Ρύθμιση βίντεο σε μια μόνο προβολή</string>
|
||||
<!-- Small notification presented to the user when they set their photo to view-once mode -->
|
||||
<string name="MediaReviewFragment__photo_set_to_view_once">Ρύθμιση φωτογραφίας σε μια μόνο προβολή</string>
|
||||
<!-- Small notification presented to the user when they set their video to be sent in high visual quality. -->
|
||||
<string name="MediaReviewFragment__video_set_to_high_quality">Ρύθμιση βίντεο σε υψηλή ποιότητα</string>
|
||||
<!-- Small notification presented to the user when they set their video to be sent in standard (lower than high) visual quality. -->
|
||||
<string name="MediaReviewFragment__video_set_to_standard_quality">Ρύθμιση βίντεο σε τυπική ποιότητα</string>
|
||||
<!-- Small notification presented to the user when they set their still image to be sent in high visual quality. -->
|
||||
<string name="MediaReviewFragment__photo_set_to_high_quality">Ρύθμιση φωτογραφίας σε υψηλή ποιότητα</string>
|
||||
<!-- Small notification presented to the user when they set their still image to be sent in standard (lower than high) visual quality. -->
|
||||
<string name="MediaReviewFragment__photo_set_to_standard_quality">Ρύθμιση φωτογραφίας σε τυπική ποιότητα</string>
|
||||
<!-- Accessibility label describing the add media button on the Media review screen -->
|
||||
<string name="MediaReviewFragment__add_media_accessibility_label">Προσθήκη πολυμέσου</string>
|
||||
<!-- Accessibility label describing the brush and pen button on the Media review screen -->
|
||||
@@ -6440,16 +6420,6 @@
|
||||
<string name="MediaReviewFragment__send_media_accessibility_label">Αποστολή πολυμέσων</string>
|
||||
<!-- Accessibility label describing the finish adding a message button on the Media review screen dialog -->
|
||||
<string name="MediaReviewFragment__finish_adding_a_message_accessibility_label">Ολοκλήρωση προσθήκης ενός μηνύματος</string>
|
||||
<!-- Small notification presented to the user when they set multiple media items to be sent in high visual quality. -->
|
||||
<plurals name="MediaReviewFragment__items_set_to_high_quality">
|
||||
<item quantity="one">Ρύθμιση %1$d αντικειμένου σε υψηλή ποιότητα</item>
|
||||
<item quantity="other">Ρύθμιση %1$d αντικειμένων σε υψηλή ποιότητα</item>
|
||||
</plurals>
|
||||
<!-- Small notification presented to the user when they set multiple media items to be sent in standard (lower than high) visual quality. -->
|
||||
<plurals name="MediaReviewFragment__items_set_to_standard_quality">
|
||||
<item quantity="one">Ρύθμιση %1$d αντικειμένου σε τυπική ποιότητα</item>
|
||||
<item quantity="other">Ρύθμιση %1$d αντικειμένων σε τυπική ποιότητα</item>
|
||||
</plurals>
|
||||
|
||||
<string name="ImageEditorHud__cancel">Ακύρωση</string>
|
||||
<string name="ImageEditorHud__draw">Σχεδίαση</string>
|
||||
|
||||
@@ -5652,18 +5652,6 @@
|
||||
<!-- GroupDescriptionDialog -->
|
||||
<string name="GroupDescriptionDialog__group_description">Descripción del grupo</string>
|
||||
|
||||
<!-- QualitySelectorBottomSheetDialog -->
|
||||
<!-- Label for our standard quality media conversion. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__standard">Estándar</string>
|
||||
<!-- Description for our standard quality media conversion. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__faster_less_data">Más rápido, menos datos</string>
|
||||
<!-- Label for our high quality media conversion. This has better quality than standard. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__high">Alta</string>
|
||||
<!-- Label for our high quality media conversion. This has better quality than standard. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__slower_more_data">Más lento, más datos</string>
|
||||
<!-- Title heading for our media conversion quality selector. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__media_quality">Calidad de archivos multimedia</string>
|
||||
|
||||
<!-- AppSettingsFragment -->
|
||||
<!-- String alerting user that something is wrong with their backups subscription -->
|
||||
<string name="AppSettingsFragment__renew_your_signal_backups_subscription">Renueva tu suscripción a Copias Seguras de Signal</string>
|
||||
@@ -6414,14 +6402,6 @@
|
||||
<string name="MediaReviewFragment__video_set_to_view_once">Vídeo configurado para ver solo una vez</string>
|
||||
<!-- Small notification presented to the user when they set their photo to view-once mode -->
|
||||
<string name="MediaReviewFragment__photo_set_to_view_once">Foto configurada para ver solo una vez</string>
|
||||
<!-- Small notification presented to the user when they set their video to be sent in high visual quality. -->
|
||||
<string name="MediaReviewFragment__video_set_to_high_quality">Vídeo configurado en alta calidad</string>
|
||||
<!-- Small notification presented to the user when they set their video to be sent in standard (lower than high) visual quality. -->
|
||||
<string name="MediaReviewFragment__video_set_to_standard_quality">Vídeo configurado en calidad estándar</string>
|
||||
<!-- Small notification presented to the user when they set their still image to be sent in high visual quality. -->
|
||||
<string name="MediaReviewFragment__photo_set_to_high_quality">Foto configurada en alta calidad</string>
|
||||
<!-- Small notification presented to the user when they set their still image to be sent in standard (lower than high) visual quality. -->
|
||||
<string name="MediaReviewFragment__photo_set_to_standard_quality">Foto configurada en calidad estándar</string>
|
||||
<!-- Accessibility label describing the add media button on the Media review screen -->
|
||||
<string name="MediaReviewFragment__add_media_accessibility_label">Añadir un archivo</string>
|
||||
<!-- Accessibility label describing the brush and pen button on the Media review screen -->
|
||||
@@ -6440,16 +6420,6 @@
|
||||
<string name="MediaReviewFragment__send_media_accessibility_label">Enviar archivo</string>
|
||||
<!-- Accessibility label describing the finish adding a message button on the Media review screen dialog -->
|
||||
<string name="MediaReviewFragment__finish_adding_a_message_accessibility_label">Terminar de añadir un mensaje</string>
|
||||
<!-- Small notification presented to the user when they set multiple media items to be sent in high visual quality. -->
|
||||
<plurals name="MediaReviewFragment__items_set_to_high_quality">
|
||||
<item quantity="one">%1$d elemento configurado en alta calidad</item>
|
||||
<item quantity="other">%1$d elementos configurados en alta calidad</item>
|
||||
</plurals>
|
||||
<!-- Small notification presented to the user when they set multiple media items to be sent in standard (lower than high) visual quality. -->
|
||||
<plurals name="MediaReviewFragment__items_set_to_standard_quality">
|
||||
<item quantity="one">%1$d elemento configurado en calidad estándar</item>
|
||||
<item quantity="other">%1$d elementos configurados en calidad estándar</item>
|
||||
</plurals>
|
||||
|
||||
<string name="ImageEditorHud__cancel">Cancelar</string>
|
||||
<string name="ImageEditorHud__draw">Dibujar</string>
|
||||
|
||||
@@ -5652,18 +5652,6 @@
|
||||
<!-- GroupDescriptionDialog -->
|
||||
<string name="GroupDescriptionDialog__group_description">Grupi kirjeldus</string>
|
||||
|
||||
<!-- QualitySelectorBottomSheetDialog -->
|
||||
<!-- Label for our standard quality media conversion. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__standard">Standardne</string>
|
||||
<!-- Description for our standard quality media conversion. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__faster_less_data">Kiirem, vähem andmeid</string>
|
||||
<!-- Label for our high quality media conversion. This has better quality than standard. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__high">Kõrge</string>
|
||||
<!-- Label for our high quality media conversion. This has better quality than standard. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__slower_more_data">Aeglasem, rohkem andmeid</string>
|
||||
<!-- Title heading for our media conversion quality selector. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__media_quality">Meedia kvaliteet</string>
|
||||
|
||||
<!-- AppSettingsFragment -->
|
||||
<!-- String alerting user that something is wrong with their backups subscription -->
|
||||
<string name="AppSettingsFragment__renew_your_signal_backups_subscription">Uuenda oma Signali turvaliste varukoopia tellimust</string>
|
||||
@@ -6414,14 +6402,6 @@
|
||||
<string name="MediaReviewFragment__video_set_to_view_once">Video on seadistatud üks kord vaatamiseks</string>
|
||||
<!-- Small notification presented to the user when they set their photo to view-once mode -->
|
||||
<string name="MediaReviewFragment__photo_set_to_view_once">Foto on seadistatud üks kord vaatamiseks</string>
|
||||
<!-- Small notification presented to the user when they set their video to be sent in high visual quality. -->
|
||||
<string name="MediaReviewFragment__video_set_to_high_quality">Valitud kõrge videokvaliteet</string>
|
||||
<!-- Small notification presented to the user when they set their video to be sent in standard (lower than high) visual quality. -->
|
||||
<string name="MediaReviewFragment__video_set_to_standard_quality">Valitud standardne videokvaliteet</string>
|
||||
<!-- Small notification presented to the user when they set their still image to be sent in high visual quality. -->
|
||||
<string name="MediaReviewFragment__photo_set_to_high_quality">Valitud kõrge fotokvaliteet</string>
|
||||
<!-- Small notification presented to the user when they set their still image to be sent in standard (lower than high) visual quality. -->
|
||||
<string name="MediaReviewFragment__photo_set_to_standard_quality">Valitud standardne fotokvaliteet</string>
|
||||
<!-- Accessibility label describing the add media button on the Media review screen -->
|
||||
<string name="MediaReviewFragment__add_media_accessibility_label">Lisa meedia</string>
|
||||
<!-- Accessibility label describing the brush and pen button on the Media review screen -->
|
||||
@@ -6440,16 +6420,6 @@
|
||||
<string name="MediaReviewFragment__send_media_accessibility_label">Saada meedia</string>
|
||||
<!-- Accessibility label describing the finish adding a message button on the Media review screen dialog -->
|
||||
<string name="MediaReviewFragment__finish_adding_a_message_accessibility_label">Lõpeta sõnumi lisamine</string>
|
||||
<!-- Small notification presented to the user when they set multiple media items to be sent in high visual quality. -->
|
||||
<plurals name="MediaReviewFragment__items_set_to_high_quality">
|
||||
<item quantity="one">%1$d üksusel valitud kõrge kvaliteet</item>
|
||||
<item quantity="other">%1$d üksusel valitud kõrge kvaliteet</item>
|
||||
</plurals>
|
||||
<!-- Small notification presented to the user when they set multiple media items to be sent in standard (lower than high) visual quality. -->
|
||||
<plurals name="MediaReviewFragment__items_set_to_standard_quality">
|
||||
<item quantity="one">%1$d üksusel valitud standardne kvaliteet</item>
|
||||
<item quantity="other">%1$d üksusel valitud standardne kvaliteet</item>
|
||||
</plurals>
|
||||
|
||||
<string name="ImageEditorHud__cancel">Loobu</string>
|
||||
<string name="ImageEditorHud__draw">Joonista</string>
|
||||
|
||||
@@ -5652,18 +5652,6 @@
|
||||
<!-- GroupDescriptionDialog -->
|
||||
<string name="GroupDescriptionDialog__group_description">Taldearen deskribapena</string>
|
||||
|
||||
<!-- QualitySelectorBottomSheetDialog -->
|
||||
<!-- Label for our standard quality media conversion. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__standard">Estandarra</string>
|
||||
<!-- Description for our standard quality media conversion. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__faster_less_data">Azkarrago, datu gutxiago</string>
|
||||
<!-- Label for our high quality media conversion. This has better quality than standard. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__high">Altua</string>
|
||||
<!-- Label for our high quality media conversion. This has better quality than standard. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__slower_more_data">Mantsoago, datu gehiago</string>
|
||||
<!-- Title heading for our media conversion quality selector. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__media_quality">Media kalitatea</string>
|
||||
|
||||
<!-- AppSettingsFragment -->
|
||||
<!-- String alerting user that something is wrong with their backups subscription -->
|
||||
<string name="AppSettingsFragment__renew_your_signal_backups_subscription">Berritu Signal-en babeskopia seguruetarako harpidetza</string>
|
||||
@@ -6414,14 +6402,6 @@
|
||||
<string name="MediaReviewFragment__video_set_to_view_once">Bideoa behin bakarrik ikus daitekeela ezarri da</string>
|
||||
<!-- Small notification presented to the user when they set their photo to view-once mode -->
|
||||
<string name="MediaReviewFragment__photo_set_to_view_once">Argazkia behin bakarrik ikus daitekeela ezarri da</string>
|
||||
<!-- Small notification presented to the user when they set their video to be sent in high visual quality. -->
|
||||
<string name="MediaReviewFragment__video_set_to_high_quality">Bideoaren kalitatea handi gisa ezarri da</string>
|
||||
<!-- Small notification presented to the user when they set their video to be sent in standard (lower than high) visual quality. -->
|
||||
<string name="MediaReviewFragment__video_set_to_standard_quality">Bideoaren kalitatea estandar gisa ezarri da</string>
|
||||
<!-- Small notification presented to the user when they set their still image to be sent in high visual quality. -->
|
||||
<string name="MediaReviewFragment__photo_set_to_high_quality">Argazkiaren kalitatea handi gisa ezarri da</string>
|
||||
<!-- Small notification presented to the user when they set their still image to be sent in standard (lower than high) visual quality. -->
|
||||
<string name="MediaReviewFragment__photo_set_to_standard_quality">Argazkiaren kalitatea estandar gisa ezarri da</string>
|
||||
<!-- Accessibility label describing the add media button on the Media review screen -->
|
||||
<string name="MediaReviewFragment__add_media_accessibility_label">Gehitu multimedia-eduki gisa</string>
|
||||
<!-- Accessibility label describing the brush and pen button on the Media review screen -->
|
||||
@@ -6440,16 +6420,6 @@
|
||||
<string name="MediaReviewFragment__send_media_accessibility_label">Bidali multimedia-edukia</string>
|
||||
<!-- Accessibility label describing the finish adding a message button on the Media review screen dialog -->
|
||||
<string name="MediaReviewFragment__finish_adding_a_message_accessibility_label">Amaitu mezua gehitzen</string>
|
||||
<!-- Small notification presented to the user when they set multiple media items to be sent in high visual quality. -->
|
||||
<plurals name="MediaReviewFragment__items_set_to_high_quality">
|
||||
<item quantity="one">%1$d elementuren kalitatea handi gisa ezarri da</item>
|
||||
<item quantity="other">%1$d elementuren kalitatea handi gisa ezarri da</item>
|
||||
</plurals>
|
||||
<!-- Small notification presented to the user when they set multiple media items to be sent in standard (lower than high) visual quality. -->
|
||||
<plurals name="MediaReviewFragment__items_set_to_standard_quality">
|
||||
<item quantity="one">%1$d elementuren kalitatea estandar gisa ezarri da</item>
|
||||
<item quantity="other">%1$d elementuren kalitatea estandar gisa ezarri da</item>
|
||||
</plurals>
|
||||
|
||||
<string name="ImageEditorHud__cancel">Utzi</string>
|
||||
<string name="ImageEditorHud__draw">Marraztu</string>
|
||||
|
||||
@@ -5652,18 +5652,6 @@
|
||||
<!-- GroupDescriptionDialog -->
|
||||
<string name="GroupDescriptionDialog__group_description">توضیحات گروه</string>
|
||||
|
||||
<!-- QualitySelectorBottomSheetDialog -->
|
||||
<!-- Label for our standard quality media conversion. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__standard">استاندارد</string>
|
||||
<!-- Description for our standard quality media conversion. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__faster_less_data">سریعتر، دادهٔ کمتر</string>
|
||||
<!-- Label for our high quality media conversion. This has better quality than standard. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__high">عالی</string>
|
||||
<!-- Label for our high quality media conversion. This has better quality than standard. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__slower_more_data">آهستهتر، دادهٔ بیشتر</string>
|
||||
<!-- Title heading for our media conversion quality selector. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__media_quality">کیفیت رسانه</string>
|
||||
|
||||
<!-- AppSettingsFragment -->
|
||||
<!-- String alerting user that something is wrong with their backups subscription -->
|
||||
<string name="AppSettingsFragment__renew_your_signal_backups_subscription">اشتراک پشتیبانهای امن سیگنال خود را تمدید کنید</string>
|
||||
@@ -6414,14 +6402,6 @@
|
||||
<string name="MediaReviewFragment__video_set_to_view_once">ویدیو روی یک بار مصرف تنظیم شد</string>
|
||||
<!-- Small notification presented to the user when they set their photo to view-once mode -->
|
||||
<string name="MediaReviewFragment__photo_set_to_view_once">عکس روی یک بار مصرف تنظیم شد</string>
|
||||
<!-- Small notification presented to the user when they set their video to be sent in high visual quality. -->
|
||||
<string name="MediaReviewFragment__video_set_to_high_quality">ویدیو روی کیفیت بالا تنظیم شد</string>
|
||||
<!-- Small notification presented to the user when they set their video to be sent in standard (lower than high) visual quality. -->
|
||||
<string name="MediaReviewFragment__video_set_to_standard_quality">ویدیو روی کیفیت استاندارد تنظیم شد</string>
|
||||
<!-- Small notification presented to the user when they set their still image to be sent in high visual quality. -->
|
||||
<string name="MediaReviewFragment__photo_set_to_high_quality">عکس روی کیفیت بالا تنظیم شد</string>
|
||||
<!-- Small notification presented to the user when they set their still image to be sent in standard (lower than high) visual quality. -->
|
||||
<string name="MediaReviewFragment__photo_set_to_standard_quality">عکس روی کیفیت استاندارد تنظیم شد</string>
|
||||
<!-- Accessibility label describing the add media button on the Media review screen -->
|
||||
<string name="MediaReviewFragment__add_media_accessibility_label">افزودن رسانه</string>
|
||||
<!-- Accessibility label describing the brush and pen button on the Media review screen -->
|
||||
@@ -6440,16 +6420,6 @@
|
||||
<string name="MediaReviewFragment__send_media_accessibility_label">ارسال رسانه</string>
|
||||
<!-- Accessibility label describing the finish adding a message button on the Media review screen dialog -->
|
||||
<string name="MediaReviewFragment__finish_adding_a_message_accessibility_label">پایان افزودن پیام</string>
|
||||
<!-- Small notification presented to the user when they set multiple media items to be sent in high visual quality. -->
|
||||
<plurals name="MediaReviewFragment__items_set_to_high_quality">
|
||||
<item quantity="one">%1$d مورد روی کیفیت بالا تنظیم شد</item>
|
||||
<item quantity="other">%1$d مورد روی کیفیت بالا تنظیم شدند</item>
|
||||
</plurals>
|
||||
<!-- Small notification presented to the user when they set multiple media items to be sent in standard (lower than high) visual quality. -->
|
||||
<plurals name="MediaReviewFragment__items_set_to_standard_quality">
|
||||
<item quantity="one">%1$d مورد روی کیفیت استاندارد تنظیم شد</item>
|
||||
<item quantity="other">%1$d مورد روی کیفیت استاندارد تنظیم شدند</item>
|
||||
</plurals>
|
||||
|
||||
<string name="ImageEditorHud__cancel">لغو</string>
|
||||
<string name="ImageEditorHud__draw">کشیدن</string>
|
||||
|
||||
@@ -5652,18 +5652,6 @@
|
||||
<!-- GroupDescriptionDialog -->
|
||||
<string name="GroupDescriptionDialog__group_description">Ryhmän kuvaus</string>
|
||||
|
||||
<!-- QualitySelectorBottomSheetDialog -->
|
||||
<!-- Label for our standard quality media conversion. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__standard">Vakio</string>
|
||||
<!-- Description for our standard quality media conversion. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__faster_less_data">Nopeampi, vähemmän dataa</string>
|
||||
<!-- Label for our high quality media conversion. This has better quality than standard. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__high">Korkea</string>
|
||||
<!-- Label for our high quality media conversion. This has better quality than standard. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__slower_more_data">Hitaampi, enemmän dataa</string>
|
||||
<!-- Title heading for our media conversion quality selector. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__media_quality">Median laatu</string>
|
||||
|
||||
<!-- AppSettingsFragment -->
|
||||
<!-- String alerting user that something is wrong with their backups subscription -->
|
||||
<string name="AppSettingsFragment__renew_your_signal_backups_subscription">Uusi Signal Secure -varmuuskopioinnin tilaus</string>
|
||||
@@ -6414,14 +6402,6 @@
|
||||
<string name="MediaReviewFragment__video_set_to_view_once">Video asetettu katsottavaksi kerran</string>
|
||||
<!-- Small notification presented to the user when they set their photo to view-once mode -->
|
||||
<string name="MediaReviewFragment__photo_set_to_view_once">Kuva asetettu katsottavaksi kerran</string>
|
||||
<!-- Small notification presented to the user when they set their video to be sent in high visual quality. -->
|
||||
<string name="MediaReviewFragment__video_set_to_high_quality">Video asetettu korkealaatuiseksi</string>
|
||||
<!-- Small notification presented to the user when they set their video to be sent in standard (lower than high) visual quality. -->
|
||||
<string name="MediaReviewFragment__video_set_to_standard_quality">Video asetettu vakiolaatuiseksi</string>
|
||||
<!-- Small notification presented to the user when they set their still image to be sent in high visual quality. -->
|
||||
<string name="MediaReviewFragment__photo_set_to_high_quality">Kuva asetettu korkealaatuiseksi</string>
|
||||
<!-- Small notification presented to the user when they set their still image to be sent in standard (lower than high) visual quality. -->
|
||||
<string name="MediaReviewFragment__photo_set_to_standard_quality">Kuva asetettu vakiolaatuiseksi</string>
|
||||
<!-- Accessibility label describing the add media button on the Media review screen -->
|
||||
<string name="MediaReviewFragment__add_media_accessibility_label">Lisää mediasisältöä</string>
|
||||
<!-- Accessibility label describing the brush and pen button on the Media review screen -->
|
||||
@@ -6440,16 +6420,6 @@
|
||||
<string name="MediaReviewFragment__send_media_accessibility_label">Lähetä media</string>
|
||||
<!-- Accessibility label describing the finish adding a message button on the Media review screen dialog -->
|
||||
<string name="MediaReviewFragment__finish_adding_a_message_accessibility_label">Viimeistele viestin lisääminen</string>
|
||||
<!-- Small notification presented to the user when they set multiple media items to be sent in high visual quality. -->
|
||||
<plurals name="MediaReviewFragment__items_set_to_high_quality">
|
||||
<item quantity="one">%1$d kohde asetettu korkealaatuiseksi</item>
|
||||
<item quantity="other">%1$d kohdetta asetettu korkealaatuiseksi</item>
|
||||
</plurals>
|
||||
<!-- Small notification presented to the user when they set multiple media items to be sent in standard (lower than high) visual quality. -->
|
||||
<plurals name="MediaReviewFragment__items_set_to_standard_quality">
|
||||
<item quantity="one">%1$d kohde asetettu vakiolaatuiseksi</item>
|
||||
<item quantity="other">%1$d kohdetta asetettu vakiolaatuiseksi</item>
|
||||
</plurals>
|
||||
|
||||
<string name="ImageEditorHud__cancel">Peruuta</string>
|
||||
<string name="ImageEditorHud__draw">Piirrä</string>
|
||||
|
||||
@@ -5652,18 +5652,6 @@
|
||||
<!-- GroupDescriptionDialog -->
|
||||
<string name="GroupDescriptionDialog__group_description">Présentation du groupe</string>
|
||||
|
||||
<!-- QualitySelectorBottomSheetDialog -->
|
||||
<!-- Label for our standard quality media conversion. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__standard">Standard</string>
|
||||
<!-- Description for our standard quality media conversion. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__faster_less_data">Plus rapide, consomme moins de données</string>
|
||||
<!-- Label for our high quality media conversion. This has better quality than standard. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__high">Haute qualité</string>
|
||||
<!-- Label for our high quality media conversion. This has better quality than standard. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__slower_more_data">Moins rapide, consomme plus de données</string>
|
||||
<!-- Title heading for our media conversion quality selector. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__media_quality">Qualité des médias</string>
|
||||
|
||||
<!-- AppSettingsFragment -->
|
||||
<!-- String alerting user that something is wrong with their backups subscription -->
|
||||
<string name="AppSettingsFragment__renew_your_signal_backups_subscription">Renouvelez votre abonnement aux sauvegardes sécurisées Signal</string>
|
||||
@@ -6414,14 +6402,6 @@
|
||||
<string name="MediaReviewFragment__video_set_to_view_once">Vue unique activée pour cette vidéo</string>
|
||||
<!-- Small notification presented to the user when they set their photo to view-once mode -->
|
||||
<string name="MediaReviewFragment__photo_set_to_view_once">Vue unique activée pour cette photo</string>
|
||||
<!-- Small notification presented to the user when they set their video to be sent in high visual quality. -->
|
||||
<string name="MediaReviewFragment__video_set_to_high_quality">Vidéo de haute qualité</string>
|
||||
<!-- Small notification presented to the user when they set their video to be sent in standard (lower than high) visual quality. -->
|
||||
<string name="MediaReviewFragment__video_set_to_standard_quality">Vidéo de qualité standard</string>
|
||||
<!-- Small notification presented to the user when they set their still image to be sent in high visual quality. -->
|
||||
<string name="MediaReviewFragment__photo_set_to_high_quality">Photo de haute qualité</string>
|
||||
<!-- Small notification presented to the user when they set their still image to be sent in standard (lower than high) visual quality. -->
|
||||
<string name="MediaReviewFragment__photo_set_to_standard_quality">Photo de qualité standard</string>
|
||||
<!-- Accessibility label describing the add media button on the Media review screen -->
|
||||
<string name="MediaReviewFragment__add_media_accessibility_label">Ajouter un média</string>
|
||||
<!-- Accessibility label describing the brush and pen button on the Media review screen -->
|
||||
@@ -6440,16 +6420,6 @@
|
||||
<string name="MediaReviewFragment__send_media_accessibility_label">Envoyer le média</string>
|
||||
<!-- Accessibility label describing the finish adding a message button on the Media review screen dialog -->
|
||||
<string name="MediaReviewFragment__finish_adding_a_message_accessibility_label">Confirmer l\'ajout du message</string>
|
||||
<!-- Small notification presented to the user when they set multiple media items to be sent in high visual quality. -->
|
||||
<plurals name="MediaReviewFragment__items_set_to_high_quality">
|
||||
<item quantity="one">%1$d élément de haute qualité</item>
|
||||
<item quantity="other">%1$d éléments de haute qualité</item>
|
||||
</plurals>
|
||||
<!-- Small notification presented to the user when they set multiple media items to be sent in standard (lower than high) visual quality. -->
|
||||
<plurals name="MediaReviewFragment__items_set_to_standard_quality">
|
||||
<item quantity="one">%1$d élément de qualité standard</item>
|
||||
<item quantity="other">%1$d éléments de qualité standard</item>
|
||||
</plurals>
|
||||
|
||||
<string name="ImageEditorHud__cancel">Annuler</string>
|
||||
<string name="ImageEditorHud__draw">Dessiner</string>
|
||||
|
||||
@@ -6081,18 +6081,6 @@
|
||||
<!-- GroupDescriptionDialog -->
|
||||
<string name="GroupDescriptionDialog__group_description">Group Description</string>
|
||||
|
||||
<!-- QualitySelectorBottomSheetDialog -->
|
||||
<!-- Label for our standard quality media conversion. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__standard">Caighdeánach</string>
|
||||
<!-- Description for our standard quality media conversion. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__faster_less_data">Níos tapúla, níos lú sonraí</string>
|
||||
<!-- Label for our high quality media conversion. This has better quality than standard. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__high">Ard</string>
|
||||
<!-- Label for our high quality media conversion. This has better quality than standard. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__slower_more_data">Níos moille, níos mó sonraí</string>
|
||||
<!-- Title heading for our media conversion quality selector. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__media_quality">Media Quality</string>
|
||||
|
||||
<!-- AppSettingsFragment -->
|
||||
<!-- String alerting user that something is wrong with their backups subscription -->
|
||||
<string name="AppSettingsFragment__renew_your_signal_backups_subscription">Athnuaigh do shíntiús Cúltacaí Slána Signal</string>
|
||||
@@ -6894,14 +6882,6 @@
|
||||
<string name="MediaReviewFragment__video_set_to_view_once">Físeán socraithe ag amharc aonuaire</string>
|
||||
<!-- Small notification presented to the user when they set their photo to view-once mode -->
|
||||
<string name="MediaReviewFragment__photo_set_to_view_once">Grianghraf socraithe ag amharc aonuaire</string>
|
||||
<!-- Small notification presented to the user when they set their video to be sent in high visual quality. -->
|
||||
<string name="MediaReviewFragment__video_set_to_high_quality">Físeán socraithe ag ardchaighdeán</string>
|
||||
<!-- Small notification presented to the user when they set their video to be sent in standard (lower than high) visual quality. -->
|
||||
<string name="MediaReviewFragment__video_set_to_standard_quality">Físeán socraithe ag gnáthchaighdeán</string>
|
||||
<!-- Small notification presented to the user when they set their still image to be sent in high visual quality. -->
|
||||
<string name="MediaReviewFragment__photo_set_to_high_quality">Grianghraf socraithe ag ardchaighdeán</string>
|
||||
<!-- Small notification presented to the user when they set their still image to be sent in standard (lower than high) visual quality. -->
|
||||
<string name="MediaReviewFragment__photo_set_to_standard_quality">Grianghraf socraithe ag gnáthchaighdeán</string>
|
||||
<!-- Accessibility label describing the add media button on the Media review screen -->
|
||||
<string name="MediaReviewFragment__add_media_accessibility_label">Cuir Meán leis</string>
|
||||
<!-- Accessibility label describing the brush and pen button on the Media review screen -->
|
||||
@@ -6920,22 +6900,6 @@
|
||||
<string name="MediaReviewFragment__send_media_accessibility_label">Seol Meán</string>
|
||||
<!-- Accessibility label describing the finish adding a message button on the Media review screen dialog -->
|
||||
<string name="MediaReviewFragment__finish_adding_a_message_accessibility_label">Críochnaigh le Teachtaireacht a chur leis</string>
|
||||
<!-- Small notification presented to the user when they set multiple media items to be sent in high visual quality. -->
|
||||
<plurals name="MediaReviewFragment__items_set_to_high_quality">
|
||||
<item quantity="one">%1$d mhír socraithe ag ardchaighdeán</item>
|
||||
<item quantity="two">%1$d mhír socraithe ag ardchaighdeán</item>
|
||||
<item quantity="few">%1$d mhír socraithe ag ardchaighdeán</item>
|
||||
<item quantity="many">%1$d mír socraithe ag ardchaighdeán</item>
|
||||
<item quantity="other">%1$d mír socraithe ag ardchaighdeán</item>
|
||||
</plurals>
|
||||
<!-- Small notification presented to the user when they set multiple media items to be sent in standard (lower than high) visual quality. -->
|
||||
<plurals name="MediaReviewFragment__items_set_to_standard_quality">
|
||||
<item quantity="one">%1$d mhír socraithe ag gnáthchaighdeán</item>
|
||||
<item quantity="two">%1$d mhír socraithe ag gnáthchaighdeán</item>
|
||||
<item quantity="few">%1$d mhír socraithe ag gnáthchaighdeán</item>
|
||||
<item quantity="many">%1$d mír socraithe ag gnáthchaighdeán</item>
|
||||
<item quantity="other">%1$d mír socraithe ag gnáthchaighdeán</item>
|
||||
</plurals>
|
||||
|
||||
<string name="ImageEditorHud__cancel">Cealaigh</string>
|
||||
<string name="ImageEditorHud__draw">Tarraing</string>
|
||||
|
||||
@@ -5652,18 +5652,6 @@
|
||||
<!-- GroupDescriptionDialog -->
|
||||
<string name="GroupDescriptionDialog__group_description">Descrición do grupo</string>
|
||||
|
||||
<!-- QualitySelectorBottomSheetDialog -->
|
||||
<!-- Label for our standard quality media conversion. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__standard">Estándar</string>
|
||||
<!-- Description for our standard quality media conversion. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__faster_less_data">Máis rápido pero menos datos</string>
|
||||
<!-- Label for our high quality media conversion. This has better quality than standard. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__high">Alta</string>
|
||||
<!-- Label for our high quality media conversion. This has better quality than standard. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__slower_more_data">Máis lento pero máis datos</string>
|
||||
<!-- Title heading for our media conversion quality selector. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__media_quality">Calidade multimedia</string>
|
||||
|
||||
<!-- AppSettingsFragment -->
|
||||
<!-- String alerting user that something is wrong with their backups subscription -->
|
||||
<string name="AppSettingsFragment__renew_your_signal_backups_subscription">Renova a túa subscrición ás copias de seguranza seguras de Signal</string>
|
||||
@@ -6414,14 +6402,6 @@
|
||||
<string name="MediaReviewFragment__video_set_to_view_once">Vídeo configurado para visualizarse unha soa vez</string>
|
||||
<!-- Small notification presented to the user when they set their photo to view-once mode -->
|
||||
<string name="MediaReviewFragment__photo_set_to_view_once">Imaxe configurada para visualizarse unha soa vez</string>
|
||||
<!-- Small notification presented to the user when they set their video to be sent in high visual quality. -->
|
||||
<string name="MediaReviewFragment__video_set_to_high_quality">Vídeo configurado para visualizarse en calidade alta</string>
|
||||
<!-- Small notification presented to the user when they set their video to be sent in standard (lower than high) visual quality. -->
|
||||
<string name="MediaReviewFragment__video_set_to_standard_quality">Vídeo configurado para visualizarse en calidade estándar</string>
|
||||
<!-- Small notification presented to the user when they set their still image to be sent in high visual quality. -->
|
||||
<string name="MediaReviewFragment__photo_set_to_high_quality">Imaxe configurada para visualizarse en calidade alta</string>
|
||||
<!-- Small notification presented to the user when they set their still image to be sent in standard (lower than high) visual quality. -->
|
||||
<string name="MediaReviewFragment__photo_set_to_standard_quality">Imaxe configurada para visualizarse en calidade estándar</string>
|
||||
<!-- Accessibility label describing the add media button on the Media review screen -->
|
||||
<string name="MediaReviewFragment__add_media_accessibility_label">Engadir arquivos</string>
|
||||
<!-- Accessibility label describing the brush and pen button on the Media review screen -->
|
||||
@@ -6440,16 +6420,6 @@
|
||||
<string name="MediaReviewFragment__send_media_accessibility_label">Enviar arquivos</string>
|
||||
<!-- Accessibility label describing the finish adding a message button on the Media review screen dialog -->
|
||||
<string name="MediaReviewFragment__finish_adding_a_message_accessibility_label">Rematar de engadir unha mensaxe</string>
|
||||
<!-- Small notification presented to the user when they set multiple media items to be sent in high visual quality. -->
|
||||
<plurals name="MediaReviewFragment__items_set_to_high_quality">
|
||||
<item quantity="one">%1$d elemento configurado para visualizarse en calidade alta</item>
|
||||
<item quantity="other">%1$d elementos configurados para visualizarse en calidade alta</item>
|
||||
</plurals>
|
||||
<!-- Small notification presented to the user when they set multiple media items to be sent in standard (lower than high) visual quality. -->
|
||||
<plurals name="MediaReviewFragment__items_set_to_standard_quality">
|
||||
<item quantity="one">%1$d elemento configurado para visualizarse en calidade estándar</item>
|
||||
<item quantity="other">%1$d elementos configurados para visualizarse en calidade estándar</item>
|
||||
</plurals>
|
||||
|
||||
<string name="ImageEditorHud__cancel">Cancelar</string>
|
||||
<string name="ImageEditorHud__draw">Debuxar</string>
|
||||
|
||||
@@ -5652,18 +5652,6 @@
|
||||
<!-- GroupDescriptionDialog -->
|
||||
<string name="GroupDescriptionDialog__group_description">ગ્રુપ ડિસ્ક્રિપ્શન</string>
|
||||
|
||||
<!-- QualitySelectorBottomSheetDialog -->
|
||||
<!-- Label for our standard quality media conversion. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__standard">સ્ટાન્ડર્ડ</string>
|
||||
<!-- Description for our standard quality media conversion. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__faster_less_data">ઝડપી, ઓછો ડેટા</string>
|
||||
<!-- Label for our high quality media conversion. This has better quality than standard. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__high">ઉચ્ચ</string>
|
||||
<!-- Label for our high quality media conversion. This has better quality than standard. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__slower_more_data">ધીમો, વધુ ડેટા</string>
|
||||
<!-- Title heading for our media conversion quality selector. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__media_quality">મીડિયા ગુણવત્તા</string>
|
||||
|
||||
<!-- AppSettingsFragment -->
|
||||
<!-- String alerting user that something is wrong with their backups subscription -->
|
||||
<string name="AppSettingsFragment__renew_your_signal_backups_subscription">તમારું Signal સુરક્ષિત બેકઅપ સબ્સ્ક્રિપ્શન રિન્યૂ કરો</string>
|
||||
@@ -6414,14 +6402,6 @@
|
||||
<string name="MediaReviewFragment__video_set_to_view_once">વીડિયોને વ્યૂ વન્સ પર સેટ કરવામાં આવ્યો</string>
|
||||
<!-- Small notification presented to the user when they set their photo to view-once mode -->
|
||||
<string name="MediaReviewFragment__photo_set_to_view_once">ફોટાને વ્યૂ વન્સ પર સેટ કર્યો</string>
|
||||
<!-- Small notification presented to the user when they set their video to be sent in high visual quality. -->
|
||||
<string name="MediaReviewFragment__video_set_to_high_quality">વીડિયોને હાઇ ક્વોલિટી પર સેટ કરવામાં આવ્યો</string>
|
||||
<!-- Small notification presented to the user when they set their video to be sent in standard (lower than high) visual quality. -->
|
||||
<string name="MediaReviewFragment__video_set_to_standard_quality">વીડિયોને સ્ટાન્ડર્ડ ક્વોલિટી પર સેટ કરવામાં આવ્યો</string>
|
||||
<!-- Small notification presented to the user when they set their still image to be sent in high visual quality. -->
|
||||
<string name="MediaReviewFragment__photo_set_to_high_quality">ફોટોને હાઇ ક્વોલિટી પર સેટ કરવામાં આવ્યો</string>
|
||||
<!-- Small notification presented to the user when they set their still image to be sent in standard (lower than high) visual quality. -->
|
||||
<string name="MediaReviewFragment__photo_set_to_standard_quality">ફોટાને સ્ટાન્ડર્ડ ક્વોલિટી પર સેટ કરવામાં આવ્યો</string>
|
||||
<!-- Accessibility label describing the add media button on the Media review screen -->
|
||||
<string name="MediaReviewFragment__add_media_accessibility_label">મીડિયા ઉમેરો</string>
|
||||
<!-- Accessibility label describing the brush and pen button on the Media review screen -->
|
||||
@@ -6440,16 +6420,6 @@
|
||||
<string name="MediaReviewFragment__send_media_accessibility_label">મીડિયા મોકલો</string>
|
||||
<!-- Accessibility label describing the finish adding a message button on the Media review screen dialog -->
|
||||
<string name="MediaReviewFragment__finish_adding_a_message_accessibility_label">મેસેજ ઉમેરવાનું પૂર્ણ કરો</string>
|
||||
<!-- Small notification presented to the user when they set multiple media items to be sent in high visual quality. -->
|
||||
<plurals name="MediaReviewFragment__items_set_to_high_quality">
|
||||
<item quantity="one">%1$d આઇટમને હાઇ ક્વોલિટી પર સેટ કરવામાં આવી</item>
|
||||
<item quantity="other">%1$d આઇટમને હાઇ ક્વોલિટી પર સેટ કરવામાં આવી</item>
|
||||
</plurals>
|
||||
<!-- Small notification presented to the user when they set multiple media items to be sent in standard (lower than high) visual quality. -->
|
||||
<plurals name="MediaReviewFragment__items_set_to_standard_quality">
|
||||
<item quantity="one">%1$d આઇટમને સ્ટાન્ડર્ડ ક્વોલિટી પર સેટ કરવામાં આવી</item>
|
||||
<item quantity="other">%1$d આઇટમને સ્ટાન્ડર્ડ ક્વોલિટી પર સેટ કરવામાં આવી</item>
|
||||
</plurals>
|
||||
|
||||
<string name="ImageEditorHud__cancel">રદ કરો</string>
|
||||
<string name="ImageEditorHud__draw">દોરો</string>
|
||||
|
||||
@@ -5652,18 +5652,6 @@
|
||||
<!-- GroupDescriptionDialog -->
|
||||
<string name="GroupDescriptionDialog__group_description">ग्रुप का ब्योरा</string>
|
||||
|
||||
<!-- QualitySelectorBottomSheetDialog -->
|
||||
<!-- Label for our standard quality media conversion. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__standard">स्टैंडर्ड</string>
|
||||
<!-- Description for our standard quality media conversion. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__faster_less_data">तेज़, कम डेटा</string>
|
||||
<!-- Label for our high quality media conversion. This has better quality than standard. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__high">हाई</string>
|
||||
<!-- Label for our high quality media conversion. This has better quality than standard. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__slower_more_data">धीमा, ज़्यादा डेटा</string>
|
||||
<!-- Title heading for our media conversion quality selector. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__media_quality">मीडिया क्वालिटी</string>
|
||||
|
||||
<!-- AppSettingsFragment -->
|
||||
<!-- String alerting user that something is wrong with their backups subscription -->
|
||||
<string name="AppSettingsFragment__renew_your_signal_backups_subscription">अपना Signal सिक्योर बैकअप सब्सक्रिप्शन रिन्यू करें</string>
|
||||
@@ -6414,14 +6402,6 @@
|
||||
<string name="MediaReviewFragment__video_set_to_view_once">वीडियो को सिर्फ़ एक बार देखने के लिए सेट किया गया</string>
|
||||
<!-- Small notification presented to the user when they set their photo to view-once mode -->
|
||||
<string name="MediaReviewFragment__photo_set_to_view_once">फ़ोटो को सिर्फ़ एक बार देखने के लिए सेट किया गया है</string>
|
||||
<!-- Small notification presented to the user when they set their video to be sent in high visual quality. -->
|
||||
<string name="MediaReviewFragment__video_set_to_high_quality">वीडियो को हाई क्वालिटी पर सेट किया गया</string>
|
||||
<!-- Small notification presented to the user when they set their video to be sent in standard (lower than high) visual quality. -->
|
||||
<string name="MediaReviewFragment__video_set_to_standard_quality">वीडियो को स्टैंडर्ड क्वालिटी पर सेट किया गया</string>
|
||||
<!-- Small notification presented to the user when they set their still image to be sent in high visual quality. -->
|
||||
<string name="MediaReviewFragment__photo_set_to_high_quality">फ़ोटो को हाई क्वालिटी पर सेट किया गया</string>
|
||||
<!-- Small notification presented to the user when they set their still image to be sent in standard (lower than high) visual quality. -->
|
||||
<string name="MediaReviewFragment__photo_set_to_standard_quality">फ़ोटो को स्टैंडर्ड क्वालिटी पर सेट किया गया</string>
|
||||
<!-- Accessibility label describing the add media button on the Media review screen -->
|
||||
<string name="MediaReviewFragment__add_media_accessibility_label">मीडिया जोड़ें</string>
|
||||
<!-- Accessibility label describing the brush and pen button on the Media review screen -->
|
||||
@@ -6440,16 +6420,6 @@
|
||||
<string name="MediaReviewFragment__send_media_accessibility_label">मीडिया भेजें</string>
|
||||
<!-- Accessibility label describing the finish adding a message button on the Media review screen dialog -->
|
||||
<string name="MediaReviewFragment__finish_adding_a_message_accessibility_label">मैसेज जोड़ना पूरा करें</string>
|
||||
<!-- Small notification presented to the user when they set multiple media items to be sent in high visual quality. -->
|
||||
<plurals name="MediaReviewFragment__items_set_to_high_quality">
|
||||
<item quantity="one">%1$d आइटम को हाई क्वालिटी पर सेट किया गया</item>
|
||||
<item quantity="other">%1$d आइटम को हाई क्वालिटी पर सेट किया गया</item>
|
||||
</plurals>
|
||||
<!-- Small notification presented to the user when they set multiple media items to be sent in standard (lower than high) visual quality. -->
|
||||
<plurals name="MediaReviewFragment__items_set_to_standard_quality">
|
||||
<item quantity="one">%1$d आइटम को स्टैंडर्ड क्वालिटी पर सेट किया गया</item>
|
||||
<item quantity="other">%1$d आइटम को स्टैंडर्ड क्वालिटी पर सेट किया गया</item>
|
||||
</plurals>
|
||||
|
||||
<string name="ImageEditorHud__cancel">रद्द करें</string>
|
||||
<string name="ImageEditorHud__draw">ड्रॉ करें</string>
|
||||
|
||||
@@ -5938,18 +5938,6 @@
|
||||
<!-- GroupDescriptionDialog -->
|
||||
<string name="GroupDescriptionDialog__group_description">Opis grupe</string>
|
||||
|
||||
<!-- QualitySelectorBottomSheetDialog -->
|
||||
<!-- Label for our standard quality media conversion. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__standard">Standardno</string>
|
||||
<!-- Description for our standard quality media conversion. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__faster_less_data">Brže, manje podataka</string>
|
||||
<!-- Label for our high quality media conversion. This has better quality than standard. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__high">Visoko</string>
|
||||
<!-- Label for our high quality media conversion. This has better quality than standard. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__slower_more_data">Sporije, više podataka</string>
|
||||
<!-- Title heading for our media conversion quality selector. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__media_quality">Kvaliteta medija</string>
|
||||
|
||||
<!-- AppSettingsFragment -->
|
||||
<!-- String alerting user that something is wrong with their backups subscription -->
|
||||
<string name="AppSettingsFragment__renew_your_signal_backups_subscription">Obnovite svoju pretplatu na zaštićene sigurnosne kopije Signala</string>
|
||||
@@ -6734,14 +6722,6 @@
|
||||
<string name="MediaReviewFragment__video_set_to_view_once">Ovaj videozapis može se prikazati samo jednom</string>
|
||||
<!-- Small notification presented to the user when they set their photo to view-once mode -->
|
||||
<string name="MediaReviewFragment__photo_set_to_view_once">Ova fotografija može se prikazati samo jednom</string>
|
||||
<!-- Small notification presented to the user when they set their video to be sent in high visual quality. -->
|
||||
<string name="MediaReviewFragment__video_set_to_high_quality">Videozapis postavljen na visoku kvalitetu</string>
|
||||
<!-- Small notification presented to the user when they set their video to be sent in standard (lower than high) visual quality. -->
|
||||
<string name="MediaReviewFragment__video_set_to_standard_quality">Videozapis postavljen na standardnu kvalitetu</string>
|
||||
<!-- Small notification presented to the user when they set their still image to be sent in high visual quality. -->
|
||||
<string name="MediaReviewFragment__photo_set_to_high_quality">Fotografija postavljena na visoku kvalitetu</string>
|
||||
<!-- Small notification presented to the user when they set their still image to be sent in standard (lower than high) visual quality. -->
|
||||
<string name="MediaReviewFragment__photo_set_to_standard_quality">Fotografija postavljena na standardnu kvalitetu</string>
|
||||
<!-- Accessibility label describing the add media button on the Media review screen -->
|
||||
<string name="MediaReviewFragment__add_media_accessibility_label">Dodaj medijski zapis</string>
|
||||
<!-- Accessibility label describing the brush and pen button on the Media review screen -->
|
||||
@@ -6760,20 +6740,6 @@
|
||||
<string name="MediaReviewFragment__send_media_accessibility_label">Pošalji medijski zapis</string>
|
||||
<!-- Accessibility label describing the finish adding a message button on the Media review screen dialog -->
|
||||
<string name="MediaReviewFragment__finish_adding_a_message_accessibility_label">Kraj unosa poruke</string>
|
||||
<!-- Small notification presented to the user when they set multiple media items to be sent in high visual quality. -->
|
||||
<plurals name="MediaReviewFragment__items_set_to_high_quality">
|
||||
<item quantity="one">%1$d stavka postavljena na visoku kvalitetu</item>
|
||||
<item quantity="few">%1$d stavke postavljene na visoku kvalitetu</item>
|
||||
<item quantity="many">%1$d stavki postavljeno na visoku kvalitetu</item>
|
||||
<item quantity="other">%1$d stavki postavljeno na visoku kvalitetu</item>
|
||||
</plurals>
|
||||
<!-- Small notification presented to the user when they set multiple media items to be sent in standard (lower than high) visual quality. -->
|
||||
<plurals name="MediaReviewFragment__items_set_to_standard_quality">
|
||||
<item quantity="one">%1$d stavka postavljena na standardnu kvalitetu</item>
|
||||
<item quantity="few">%1$d stavke postavljene na standardnu kvalitetu</item>
|
||||
<item quantity="many">%1$d stavki postavljeno na standardnu kvalitetu</item>
|
||||
<item quantity="other">%1$d stavki postavljeno na standardnu kvalitetu</item>
|
||||
</plurals>
|
||||
|
||||
<string name="ImageEditorHud__cancel">Poništi</string>
|
||||
<string name="ImageEditorHud__draw">Crtaj</string>
|
||||
|
||||
@@ -5652,18 +5652,6 @@
|
||||
<!-- GroupDescriptionDialog -->
|
||||
<string name="GroupDescriptionDialog__group_description">Csoportleírás</string>
|
||||
|
||||
<!-- QualitySelectorBottomSheetDialog -->
|
||||
<!-- Label for our standard quality media conversion. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__standard">Normál</string>
|
||||
<!-- Description for our standard quality media conversion. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__faster_less_data">Gyorsabb, kevesebb adat</string>
|
||||
<!-- Label for our high quality media conversion. This has better quality than standard. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__high">Magas</string>
|
||||
<!-- Label for our high quality media conversion. This has better quality than standard. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__slower_more_data">Lassabb, több adat</string>
|
||||
<!-- Title heading for our media conversion quality selector. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__media_quality">Médiafájl minősége</string>
|
||||
|
||||
<!-- AppSettingsFragment -->
|
||||
<!-- String alerting user that something is wrong with their backups subscription -->
|
||||
<string name="AppSettingsFragment__renew_your_signal_backups_subscription">Újítsd meg Signal Biztonságos Biztonsági mentések visszaállítása előfizetésedet</string>
|
||||
@@ -6414,14 +6402,6 @@
|
||||
<string name="MediaReviewFragment__video_set_to_view_once">A videó egyszeri megtekintésre van állítva</string>
|
||||
<!-- Small notification presented to the user when they set their photo to view-once mode -->
|
||||
<string name="MediaReviewFragment__photo_set_to_view_once">A fotó egyszeri megtekintésre van állítva</string>
|
||||
<!-- Small notification presented to the user when they set their video to be sent in high visual quality. -->
|
||||
<string name="MediaReviewFragment__video_set_to_high_quality">A videó magas minőségre van állítva</string>
|
||||
<!-- Small notification presented to the user when they set their video to be sent in standard (lower than high) visual quality. -->
|
||||
<string name="MediaReviewFragment__video_set_to_standard_quality">A videó normál minőségre van állítva</string>
|
||||
<!-- Small notification presented to the user when they set their still image to be sent in high visual quality. -->
|
||||
<string name="MediaReviewFragment__photo_set_to_high_quality">A fotó magas minőségre van állítva</string>
|
||||
<!-- Small notification presented to the user when they set their still image to be sent in standard (lower than high) visual quality. -->
|
||||
<string name="MediaReviewFragment__photo_set_to_standard_quality">A fotó normál minőségre van állítva</string>
|
||||
<!-- Accessibility label describing the add media button on the Media review screen -->
|
||||
<string name="MediaReviewFragment__add_media_accessibility_label">Médiatartalom hozzáadása</string>
|
||||
<!-- Accessibility label describing the brush and pen button on the Media review screen -->
|
||||
@@ -6440,16 +6420,6 @@
|
||||
<string name="MediaReviewFragment__send_media_accessibility_label">Médiatartalom küldése</string>
|
||||
<!-- Accessibility label describing the finish adding a message button on the Media review screen dialog -->
|
||||
<string name="MediaReviewFragment__finish_adding_a_message_accessibility_label">Fejezd be az üzenet hozzáadását</string>
|
||||
<!-- Small notification presented to the user when they set multiple media items to be sent in high visual quality. -->
|
||||
<plurals name="MediaReviewFragment__items_set_to_high_quality">
|
||||
<item quantity="one">%1$d elem magas minőségre van állítva</item>
|
||||
<item quantity="other">%1$d elem magas minőségre van állítva</item>
|
||||
</plurals>
|
||||
<!-- Small notification presented to the user when they set multiple media items to be sent in standard (lower than high) visual quality. -->
|
||||
<plurals name="MediaReviewFragment__items_set_to_standard_quality">
|
||||
<item quantity="one">%1$d elem normál minőségre van állítva</item>
|
||||
<item quantity="other">%1$d elem normál minőségre van állítva</item>
|
||||
</plurals>
|
||||
|
||||
<string name="ImageEditorHud__cancel">Mégsem</string>
|
||||
<string name="ImageEditorHud__draw">Rajz</string>
|
||||
|
||||
@@ -5509,18 +5509,6 @@
|
||||
<!-- GroupDescriptionDialog -->
|
||||
<string name="GroupDescriptionDialog__group_description">Deskripsi grup</string>
|
||||
|
||||
<!-- QualitySelectorBottomSheetDialog -->
|
||||
<!-- Label for our standard quality media conversion. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__standard">Standar</string>
|
||||
<!-- Description for our standard quality media conversion. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__faster_less_data">Lebih cepat, sedikit data</string>
|
||||
<!-- Label for our high quality media conversion. This has better quality than standard. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__high">Tinggi</string>
|
||||
<!-- Label for our high quality media conversion. This has better quality than standard. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__slower_more_data">Lebih lambat, lebih banyak data</string>
|
||||
<!-- Title heading for our media conversion quality selector. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__media_quality">Kualitas media</string>
|
||||
|
||||
<!-- AppSettingsFragment -->
|
||||
<!-- String alerting user that something is wrong with their backups subscription -->
|
||||
<string name="AppSettingsFragment__renew_your_signal_backups_subscription">Perbarui langganan Signal Secure Backups Anda</string>
|
||||
@@ -6254,14 +6242,6 @@
|
||||
<string name="MediaReviewFragment__video_set_to_view_once">Video diatur untuk dilihat sekali</string>
|
||||
<!-- Small notification presented to the user when they set their photo to view-once mode -->
|
||||
<string name="MediaReviewFragment__photo_set_to_view_once">Foto diatur untuk sekali dilihat</string>
|
||||
<!-- Small notification presented to the user when they set their video to be sent in high visual quality. -->
|
||||
<string name="MediaReviewFragment__video_set_to_high_quality">Video diatur ke kualitas tinggi</string>
|
||||
<!-- Small notification presented to the user when they set their video to be sent in standard (lower than high) visual quality. -->
|
||||
<string name="MediaReviewFragment__video_set_to_standard_quality">Video diatur ke kualitas standar</string>
|
||||
<!-- Small notification presented to the user when they set their still image to be sent in high visual quality. -->
|
||||
<string name="MediaReviewFragment__photo_set_to_high_quality">Foto diatur ke kualitas tinggi</string>
|
||||
<!-- Small notification presented to the user when they set their still image to be sent in standard (lower than high) visual quality. -->
|
||||
<string name="MediaReviewFragment__photo_set_to_standard_quality">Foto diatur ke kualitas standar</string>
|
||||
<!-- Accessibility label describing the add media button on the Media review screen -->
|
||||
<string name="MediaReviewFragment__add_media_accessibility_label">Tambahkan Media</string>
|
||||
<!-- Accessibility label describing the brush and pen button on the Media review screen -->
|
||||
@@ -6280,14 +6260,6 @@
|
||||
<string name="MediaReviewFragment__send_media_accessibility_label">Kirim Media</string>
|
||||
<!-- Accessibility label describing the finish adding a message button on the Media review screen dialog -->
|
||||
<string name="MediaReviewFragment__finish_adding_a_message_accessibility_label">Selesai menambahkan Pesan</string>
|
||||
<!-- Small notification presented to the user when they set multiple media items to be sent in high visual quality. -->
|
||||
<plurals name="MediaReviewFragment__items_set_to_high_quality">
|
||||
<item quantity="other">%1$d item diatur ke kualitas tinggi</item>
|
||||
</plurals>
|
||||
<!-- Small notification presented to the user when they set multiple media items to be sent in standard (lower than high) visual quality. -->
|
||||
<plurals name="MediaReviewFragment__items_set_to_standard_quality">
|
||||
<item quantity="other">%1$d item diatur ke kualitas standar</item>
|
||||
</plurals>
|
||||
|
||||
<string name="ImageEditorHud__cancel">Batal</string>
|
||||
<string name="ImageEditorHud__draw">Gambar</string>
|
||||
|
||||
@@ -5652,18 +5652,6 @@
|
||||
<!-- GroupDescriptionDialog -->
|
||||
<string name="GroupDescriptionDialog__group_description">Descrizione gruppo</string>
|
||||
|
||||
<!-- QualitySelectorBottomSheetDialog -->
|
||||
<!-- Label for our standard quality media conversion. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__standard">Normale</string>
|
||||
<!-- Description for our standard quality media conversion. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__faster_less_data">Più veloce, meno dati</string>
|
||||
<!-- Label for our high quality media conversion. This has better quality than standard. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__high">Alta</string>
|
||||
<!-- Label for our high quality media conversion. This has better quality than standard. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__slower_more_data">Più lento, più dati</string>
|
||||
<!-- Title heading for our media conversion quality selector. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__media_quality">Qualità media</string>
|
||||
|
||||
<!-- AppSettingsFragment -->
|
||||
<!-- String alerting user that something is wrong with their backups subscription -->
|
||||
<string name="AppSettingsFragment__renew_your_signal_backups_subscription">Rinnova il tuo abbonamento ai Backup sicuri di Signal</string>
|
||||
@@ -6414,14 +6402,6 @@
|
||||
<string name="MediaReviewFragment__video_set_to_view_once">Video impostato per una singola visione</string>
|
||||
<!-- Small notification presented to the user when they set their photo to view-once mode -->
|
||||
<string name="MediaReviewFragment__photo_set_to_view_once">Foto impostata per una singola visione</string>
|
||||
<!-- Small notification presented to the user when they set their video to be sent in high visual quality. -->
|
||||
<string name="MediaReviewFragment__video_set_to_high_quality">Video impostato su alta qualità</string>
|
||||
<!-- Small notification presented to the user when they set their video to be sent in standard (lower than high) visual quality. -->
|
||||
<string name="MediaReviewFragment__video_set_to_standard_quality">Video impostato su qualità standard</string>
|
||||
<!-- Small notification presented to the user when they set their still image to be sent in high visual quality. -->
|
||||
<string name="MediaReviewFragment__photo_set_to_high_quality">Foto impostata su alta qualità</string>
|
||||
<!-- Small notification presented to the user when they set their still image to be sent in standard (lower than high) visual quality. -->
|
||||
<string name="MediaReviewFragment__photo_set_to_standard_quality">Foto impostata su qualità standard</string>
|
||||
<!-- Accessibility label describing the add media button on the Media review screen -->
|
||||
<string name="MediaReviewFragment__add_media_accessibility_label">Aggiungi un media</string>
|
||||
<!-- Accessibility label describing the brush and pen button on the Media review screen -->
|
||||
@@ -6440,16 +6420,6 @@
|
||||
<string name="MediaReviewFragment__send_media_accessibility_label">Invia media</string>
|
||||
<!-- Accessibility label describing the finish adding a message button on the Media review screen dialog -->
|
||||
<string name="MediaReviewFragment__finish_adding_a_message_accessibility_label">Finisci di scrivere un messaggio</string>
|
||||
<!-- Small notification presented to the user when they set multiple media items to be sent in high visual quality. -->
|
||||
<plurals name="MediaReviewFragment__items_set_to_high_quality">
|
||||
<item quantity="one">%1$d elemento impostato su alta qualità</item>
|
||||
<item quantity="other">%1$d elementi impostati su alta qualità</item>
|
||||
</plurals>
|
||||
<!-- Small notification presented to the user when they set multiple media items to be sent in standard (lower than high) visual quality. -->
|
||||
<plurals name="MediaReviewFragment__items_set_to_standard_quality">
|
||||
<item quantity="one">%1$d elemento impostato su qualità standard</item>
|
||||
<item quantity="other">%1$d elementi impostati su qualità standard</item>
|
||||
</plurals>
|
||||
|
||||
<string name="ImageEditorHud__cancel">Annulla</string>
|
||||
<string name="ImageEditorHud__draw">Disegna</string>
|
||||
|
||||
@@ -5938,18 +5938,6 @@
|
||||
<!-- GroupDescriptionDialog -->
|
||||
<string name="GroupDescriptionDialog__group_description">תיאור קבוצה</string>
|
||||
|
||||
<!-- QualitySelectorBottomSheetDialog -->
|
||||
<!-- Label for our standard quality media conversion. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__standard">תקנית</string>
|
||||
<!-- Description for our standard quality media conversion. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__faster_less_data">מהירה יותר, פחות נתונים</string>
|
||||
<!-- Label for our high quality media conversion. This has better quality than standard. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__high">גבוה</string>
|
||||
<!-- Label for our high quality media conversion. This has better quality than standard. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__slower_more_data">איטית יותר, יותר נתונים</string>
|
||||
<!-- Title heading for our media conversion quality selector. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__media_quality">איכות מדיה</string>
|
||||
|
||||
<!-- AppSettingsFragment -->
|
||||
<!-- String alerting user that something is wrong with their backups subscription -->
|
||||
<string name="AppSettingsFragment__renew_your_signal_backups_subscription">חידוש מנוי הגיבויים המאובטחים שלך ב–Signal</string>
|
||||
@@ -6734,14 +6722,6 @@
|
||||
<string name="MediaReviewFragment__video_set_to_view_once">וידאו מוגדר לצפייה חד פעמית</string>
|
||||
<!-- Small notification presented to the user when they set their photo to view-once mode -->
|
||||
<string name="MediaReviewFragment__photo_set_to_view_once">תמונה מוגדרת לצפייה חד פעמית</string>
|
||||
<!-- Small notification presented to the user when they set their video to be sent in high visual quality. -->
|
||||
<string name="MediaReviewFragment__video_set_to_high_quality">וידאו מוגדר לאיכות גבוהה</string>
|
||||
<!-- Small notification presented to the user when they set their video to be sent in standard (lower than high) visual quality. -->
|
||||
<string name="MediaReviewFragment__video_set_to_standard_quality">וידאו מוגדר לאיכות סטנדרטית</string>
|
||||
<!-- Small notification presented to the user when they set their still image to be sent in high visual quality. -->
|
||||
<string name="MediaReviewFragment__photo_set_to_high_quality">תמונה מוגדרת לאיכות גבוהה</string>
|
||||
<!-- Small notification presented to the user when they set their still image to be sent in standard (lower than high) visual quality. -->
|
||||
<string name="MediaReviewFragment__photo_set_to_standard_quality">תמונה מוגדרת לאיכות רגילה</string>
|
||||
<!-- Accessibility label describing the add media button on the Media review screen -->
|
||||
<string name="MediaReviewFragment__add_media_accessibility_label">הוספת מדיה</string>
|
||||
<!-- Accessibility label describing the brush and pen button on the Media review screen -->
|
||||
@@ -6760,20 +6740,6 @@
|
||||
<string name="MediaReviewFragment__send_media_accessibility_label">שליחת מדיה</string>
|
||||
<!-- Accessibility label describing the finish adding a message button on the Media review screen dialog -->
|
||||
<string name="MediaReviewFragment__finish_adding_a_message_accessibility_label">סיום הוספת הודעה</string>
|
||||
<!-- Small notification presented to the user when they set multiple media items to be sent in high visual quality. -->
|
||||
<plurals name="MediaReviewFragment__items_set_to_high_quality">
|
||||
<item quantity="one">פריט %1$d מוגדר לאיכות גבוהה</item>
|
||||
<item quantity="two">%1$d פריטים מוגדרים לאיכות גבוהה</item>
|
||||
<item quantity="many">%1$d פריטים מוגדרים לאיכות גבוהה</item>
|
||||
<item quantity="other">%1$d פריטים מוגדרים לאיכות גבוהה</item>
|
||||
</plurals>
|
||||
<!-- Small notification presented to the user when they set multiple media items to be sent in standard (lower than high) visual quality. -->
|
||||
<plurals name="MediaReviewFragment__items_set_to_standard_quality">
|
||||
<item quantity="one">פריט %1$d מוגדר לאיכות רגילה</item>
|
||||
<item quantity="two">%1$d פריטים מוגדרים לאיכות רגילה</item>
|
||||
<item quantity="many">%1$d פריטים מוגדרים לאיכות רגילה</item>
|
||||
<item quantity="other">%1$d פריטים מוגדרים לאיכות רגילה</item>
|
||||
</plurals>
|
||||
|
||||
<string name="ImageEditorHud__cancel">בטל</string>
|
||||
<string name="ImageEditorHud__draw">צייר</string>
|
||||
|
||||
@@ -5509,18 +5509,6 @@
|
||||
<!-- GroupDescriptionDialog -->
|
||||
<string name="GroupDescriptionDialog__group_description">グループの説明</string>
|
||||
|
||||
<!-- QualitySelectorBottomSheetDialog -->
|
||||
<!-- Label for our standard quality media conversion. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__standard">標準</string>
|
||||
<!-- Description for our standard quality media conversion. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__faster_less_data">速い, 少ないデータ量</string>
|
||||
<!-- Label for our high quality media conversion. This has better quality than standard. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__high">高画質</string>
|
||||
<!-- Label for our high quality media conversion. This has better quality than standard. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__slower_more_data">遅い, 多いデータ量</string>
|
||||
<!-- Title heading for our media conversion quality selector. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__media_quality">メディアの画質</string>
|
||||
|
||||
<!-- AppSettingsFragment -->
|
||||
<!-- String alerting user that something is wrong with their backups subscription -->
|
||||
<string name="AppSettingsFragment__renew_your_signal_backups_subscription">Signalセキュアバックアップのサブスクリプションを更新してください</string>
|
||||
@@ -6254,14 +6242,6 @@
|
||||
<string name="MediaReviewFragment__video_set_to_view_once">ビデオは一度だけ表示するように設定されています</string>
|
||||
<!-- Small notification presented to the user when they set their photo to view-once mode -->
|
||||
<string name="MediaReviewFragment__photo_set_to_view_once">写真は一度だけ表示するように設定されています</string>
|
||||
<!-- Small notification presented to the user when they set their video to be sent in high visual quality. -->
|
||||
<string name="MediaReviewFragment__video_set_to_high_quality">ビデオは高画質に設定されています</string>
|
||||
<!-- Small notification presented to the user when they set their video to be sent in standard (lower than high) visual quality. -->
|
||||
<string name="MediaReviewFragment__video_set_to_standard_quality">ビデオは標準画質に設定されています</string>
|
||||
<!-- Small notification presented to the user when they set their still image to be sent in high visual quality. -->
|
||||
<string name="MediaReviewFragment__photo_set_to_high_quality">写真は高画質に設定されています</string>
|
||||
<!-- Small notification presented to the user when they set their still image to be sent in standard (lower than high) visual quality. -->
|
||||
<string name="MediaReviewFragment__photo_set_to_standard_quality">写真は標準画質に設定されています</string>
|
||||
<!-- Accessibility label describing the add media button on the Media review screen -->
|
||||
<string name="MediaReviewFragment__add_media_accessibility_label">メディアを追加する</string>
|
||||
<!-- Accessibility label describing the brush and pen button on the Media review screen -->
|
||||
@@ -6280,14 +6260,6 @@
|
||||
<string name="MediaReviewFragment__send_media_accessibility_label">メディアを送信する</string>
|
||||
<!-- Accessibility label describing the finish adding a message button on the Media review screen dialog -->
|
||||
<string name="MediaReviewFragment__finish_adding_a_message_accessibility_label">メッセージの追加を完了する</string>
|
||||
<!-- Small notification presented to the user when they set multiple media items to be sent in high visual quality. -->
|
||||
<plurals name="MediaReviewFragment__items_set_to_high_quality">
|
||||
<item quantity="other">%1$dアイテムが高画質に設定されています</item>
|
||||
</plurals>
|
||||
<!-- Small notification presented to the user when they set multiple media items to be sent in standard (lower than high) visual quality. -->
|
||||
<plurals name="MediaReviewFragment__items_set_to_standard_quality">
|
||||
<item quantity="other">%1$dアイテムが標準画質に設定されています</item>
|
||||
</plurals>
|
||||
|
||||
<string name="ImageEditorHud__cancel">キャンセル</string>
|
||||
<string name="ImageEditorHud__draw">描く</string>
|
||||
|
||||
@@ -5652,18 +5652,6 @@
|
||||
<!-- GroupDescriptionDialog -->
|
||||
<string name="GroupDescriptionDialog__group_description">ჯგუფის აღწერილობა</string>
|
||||
|
||||
<!-- QualitySelectorBottomSheetDialog -->
|
||||
<!-- Label for our standard quality media conversion. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__standard">სტანდარტული</string>
|
||||
<!-- Description for our standard quality media conversion. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__faster_less_data">უფრო სწრაფი, ნაკლები მონაცემი</string>
|
||||
<!-- Label for our high quality media conversion. This has better quality than standard. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__high">მაღალი</string>
|
||||
<!-- Label for our high quality media conversion. This has better quality than standard. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__slower_more_data">უფრო ნელი, მეტი მონაცემი</string>
|
||||
<!-- Title heading for our media conversion quality selector. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__media_quality">მედია-ფაილების ხარისხი</string>
|
||||
|
||||
<!-- AppSettingsFragment -->
|
||||
<!-- String alerting user that something is wrong with their backups subscription -->
|
||||
<string name="AppSettingsFragment__renew_your_signal_backups_subscription">განაახლე შენი Signal-ის უსაფრთხო სათადარიგო ასლების გამოწერა</string>
|
||||
@@ -6414,14 +6402,6 @@
|
||||
<string name="MediaReviewFragment__video_set_to_view_once">ვიდეო ერთხელ ნახვის რეჟიმზეა დაყენებული</string>
|
||||
<!-- Small notification presented to the user when they set their photo to view-once mode -->
|
||||
<string name="MediaReviewFragment__photo_set_to_view_once">ფოტო ერთხელ ნახვის რეჟიმზეა დაყენებული</string>
|
||||
<!-- Small notification presented to the user when they set their video to be sent in high visual quality. -->
|
||||
<string name="MediaReviewFragment__video_set_to_high_quality">ვიდეო დაყენებულია მაღალ ხარისხზე</string>
|
||||
<!-- Small notification presented to the user when they set their video to be sent in standard (lower than high) visual quality. -->
|
||||
<string name="MediaReviewFragment__video_set_to_standard_quality">ვიდეო სტანდარტულ ხარისხზეა დაყენებული</string>
|
||||
<!-- Small notification presented to the user when they set their still image to be sent in high visual quality. -->
|
||||
<string name="MediaReviewFragment__photo_set_to_high_quality">ფოტო დაყენებულია მაღალ ხარისხზე</string>
|
||||
<!-- Small notification presented to the user when they set their still image to be sent in standard (lower than high) visual quality. -->
|
||||
<string name="MediaReviewFragment__photo_set_to_standard_quality">ფოტო სტანდარტულ ხარისხზეა დაყენებული</string>
|
||||
<!-- Accessibility label describing the add media button on the Media review screen -->
|
||||
<string name="MediaReviewFragment__add_media_accessibility_label">დაამატე მედია ფაილი</string>
|
||||
<!-- Accessibility label describing the brush and pen button on the Media review screen -->
|
||||
@@ -6440,16 +6420,6 @@
|
||||
<string name="MediaReviewFragment__send_media_accessibility_label">მედია ფაილის გაგზავნა</string>
|
||||
<!-- Accessibility label describing the finish adding a message button on the Media review screen dialog -->
|
||||
<string name="MediaReviewFragment__finish_adding_a_message_accessibility_label">დაასრულე შეტყობინების დამატებით</string>
|
||||
<!-- Small notification presented to the user when they set multiple media items to be sent in high visual quality. -->
|
||||
<plurals name="MediaReviewFragment__items_set_to_high_quality">
|
||||
<item quantity="one">%1$d ელემენტი მაღალ ხარისხზეა დაყენებული</item>
|
||||
<item quantity="other">%1$d ელემენტი მაღალ ხარისხზეა დაყენებული</item>
|
||||
</plurals>
|
||||
<!-- Small notification presented to the user when they set multiple media items to be sent in standard (lower than high) visual quality. -->
|
||||
<plurals name="MediaReviewFragment__items_set_to_standard_quality">
|
||||
<item quantity="one">%1$d ელემენტი სტანდარტულ ხარისხზეა დაყენებული</item>
|
||||
<item quantity="other">%1$d ელემენტი სტანდარტულ ხარისხზეა დაყენებული</item>
|
||||
</plurals>
|
||||
|
||||
<string name="ImageEditorHud__cancel">გაუქმება</string>
|
||||
<string name="ImageEditorHud__draw">დახატვა</string>
|
||||
|
||||
@@ -5652,18 +5652,6 @@
|
||||
<!-- GroupDescriptionDialog -->
|
||||
<string name="GroupDescriptionDialog__group_description">Топ сипаттамасы</string>
|
||||
|
||||
<!-- QualitySelectorBottomSheetDialog -->
|
||||
<!-- Label for our standard quality media conversion. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__standard">Стандарт</string>
|
||||
<!-- Description for our standard quality media conversion. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__faster_less_data">Жылдам, аз дерек</string>
|
||||
<!-- Label for our high quality media conversion. This has better quality than standard. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__high">Жоғары</string>
|
||||
<!-- Label for our high quality media conversion. This has better quality than standard. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__slower_more_data">Баяу, көп дерек</string>
|
||||
<!-- Title heading for our media conversion quality selector. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__media_quality">Мультимедиа сапасы</string>
|
||||
|
||||
<!-- AppSettingsFragment -->
|
||||
<!-- String alerting user that something is wrong with their backups subscription -->
|
||||
<string name="AppSettingsFragment__renew_your_signal_backups_subscription">Signal қауіпсіз сақтық көшірме жазылымыңызды жаңартыңыз</string>
|
||||
@@ -6414,14 +6402,6 @@
|
||||
<string name="MediaReviewFragment__video_set_to_view_once">Видео бір рет көру режиміне орнатылды</string>
|
||||
<!-- Small notification presented to the user when they set their photo to view-once mode -->
|
||||
<string name="MediaReviewFragment__photo_set_to_view_once">Фотосурет тек бір рет көру режиміне орнатылды</string>
|
||||
<!-- Small notification presented to the user when they set their video to be sent in high visual quality. -->
|
||||
<string name="MediaReviewFragment__video_set_to_high_quality">Видео жоғары сапаға орнатылды</string>
|
||||
<!-- Small notification presented to the user when they set their video to be sent in standard (lower than high) visual quality. -->
|
||||
<string name="MediaReviewFragment__video_set_to_standard_quality">Видео стандартты сапаға орнатылды</string>
|
||||
<!-- Small notification presented to the user when they set their still image to be sent in high visual quality. -->
|
||||
<string name="MediaReviewFragment__photo_set_to_high_quality">Фотосурет жоғары сапаға орнатылды</string>
|
||||
<!-- Small notification presented to the user when they set their still image to be sent in standard (lower than high) visual quality. -->
|
||||
<string name="MediaReviewFragment__photo_set_to_standard_quality">Фотосурет стандартты сапаға орнатылды</string>
|
||||
<!-- Accessibility label describing the add media button on the Media review screen -->
|
||||
<string name="MediaReviewFragment__add_media_accessibility_label">Мультимедиа қосу</string>
|
||||
<!-- Accessibility label describing the brush and pen button on the Media review screen -->
|
||||
@@ -6440,16 +6420,6 @@
|
||||
<string name="MediaReviewFragment__send_media_accessibility_label">Мультимедианы жіберу</string>
|
||||
<!-- Accessibility label describing the finish adding a message button on the Media review screen dialog -->
|
||||
<string name="MediaReviewFragment__finish_adding_a_message_accessibility_label">Хабар жазуды аяқтаңыз</string>
|
||||
<!-- Small notification presented to the user when they set multiple media items to be sent in high visual quality. -->
|
||||
<plurals name="MediaReviewFragment__items_set_to_high_quality">
|
||||
<item quantity="one">%1$d элемент жоғары сапа параметріне орнатылды</item>
|
||||
<item quantity="other">%1$d элемент жоғары сапа параметріне орнатылды</item>
|
||||
</plurals>
|
||||
<!-- Small notification presented to the user when they set multiple media items to be sent in standard (lower than high) visual quality. -->
|
||||
<plurals name="MediaReviewFragment__items_set_to_standard_quality">
|
||||
<item quantity="one">%1$d элемент стандартты сапа параметріне орнатылды</item>
|
||||
<item quantity="other">%1$d элемент стандартты сапа параметріне орнатылды</item>
|
||||
</plurals>
|
||||
|
||||
<string name="ImageEditorHud__cancel">Болдырмау</string>
|
||||
<string name="ImageEditorHud__draw">Сызу</string>
|
||||
|
||||
@@ -5509,18 +5509,6 @@
|
||||
<!-- GroupDescriptionDialog -->
|
||||
<string name="GroupDescriptionDialog__group_description">ការពិពណ៌នាពីក្រុម</string>
|
||||
|
||||
<!-- QualitySelectorBottomSheetDialog -->
|
||||
<!-- Label for our standard quality media conversion. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__standard">ស្ដង់ដារ</string>
|
||||
<!-- Description for our standard quality media conversion. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__faster_less_data">លឿនជាងមុន ទិន្នន៏យតិចជាងមុន</string>
|
||||
<!-- Label for our high quality media conversion. This has better quality than standard. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__high">ខ្ពស់</string>
|
||||
<!-- Label for our high quality media conversion. This has better quality than standard. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__slower_more_data">យឺតជាងមុន ទិន្នន័យច្រើនជាងមុន</string>
|
||||
<!-- Title heading for our media conversion quality selector. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__media_quality">គុណភាពមេឌៀ</string>
|
||||
|
||||
<!-- AppSettingsFragment -->
|
||||
<!-- String alerting user that something is wrong with their backups subscription -->
|
||||
<string name="AppSettingsFragment__renew_your_signal_backups_subscription">បន្តការជាវការបម្រុងទុកសុវត្ថិភាព Signal របស់អ្នក</string>
|
||||
@@ -6254,14 +6242,6 @@
|
||||
<string name="MediaReviewFragment__video_set_to_view_once">វីដេអូត្រូវបានកំណត់ទៅជាមើលតែម្តង</string>
|
||||
<!-- Small notification presented to the user when they set their photo to view-once mode -->
|
||||
<string name="MediaReviewFragment__photo_set_to_view_once">រូបថតត្រូវបានកំណត់ទៅជាមើលតែម្តង</string>
|
||||
<!-- Small notification presented to the user when they set their video to be sent in high visual quality. -->
|
||||
<string name="MediaReviewFragment__video_set_to_high_quality">វីដេអូត្រូវបានកំណត់ទៅជាគុណភាពខ្ពស់</string>
|
||||
<!-- Small notification presented to the user when they set their video to be sent in standard (lower than high) visual quality. -->
|
||||
<string name="MediaReviewFragment__video_set_to_standard_quality">វីដេអូត្រូវបានកំណត់ទៅជាគុណភាពស្តង់ដា</string>
|
||||
<!-- Small notification presented to the user when they set their still image to be sent in high visual quality. -->
|
||||
<string name="MediaReviewFragment__photo_set_to_high_quality">រូបថតត្រូវបានកំណត់ទៅជាគុណភាពខ្ពស់</string>
|
||||
<!-- Small notification presented to the user when they set their still image to be sent in standard (lower than high) visual quality. -->
|
||||
<string name="MediaReviewFragment__photo_set_to_standard_quality">រូបថតត្រូវបានកំណត់ទៅជាគុណភាពស្តង់ដា</string>
|
||||
<!-- Accessibility label describing the add media button on the Media review screen -->
|
||||
<string name="MediaReviewFragment__add_media_accessibility_label">បញ្ចូលមេឌៀ</string>
|
||||
<!-- Accessibility label describing the brush and pen button on the Media review screen -->
|
||||
@@ -6280,14 +6260,6 @@
|
||||
<string name="MediaReviewFragment__send_media_accessibility_label">ផ្ញើមេឌៀ</string>
|
||||
<!-- Accessibility label describing the finish adding a message button on the Media review screen dialog -->
|
||||
<string name="MediaReviewFragment__finish_adding_a_message_accessibility_label">បញ្ចប់ការបញ្ចូលសារ</string>
|
||||
<!-- Small notification presented to the user when they set multiple media items to be sent in high visual quality. -->
|
||||
<plurals name="MediaReviewFragment__items_set_to_high_quality">
|
||||
<item quantity="other">%1$d ធាតុត្រូវបានកំណត់ទៅជាគុណភាពខ្ពស់</item>
|
||||
</plurals>
|
||||
<!-- Small notification presented to the user when they set multiple media items to be sent in standard (lower than high) visual quality. -->
|
||||
<plurals name="MediaReviewFragment__items_set_to_standard_quality">
|
||||
<item quantity="other">%1$d ធាតុត្រូវបានកំណត់ទៅជាគុណភាពស្តង់ដា</item>
|
||||
</plurals>
|
||||
|
||||
<string name="ImageEditorHud__cancel">បោះបង់</string>
|
||||
<string name="ImageEditorHud__draw">គូរ</string>
|
||||
|
||||
@@ -5652,18 +5652,6 @@
|
||||
<!-- GroupDescriptionDialog -->
|
||||
<string name="GroupDescriptionDialog__group_description">ಗುಂಪಿನ ವಿವರಣೆ</string>
|
||||
|
||||
<!-- QualitySelectorBottomSheetDialog -->
|
||||
<!-- Label for our standard quality media conversion. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__standard">ಪ್ರಮಾಣಿತ</string>
|
||||
<!-- Description for our standard quality media conversion. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__faster_less_data">ತ್ವರಿತ, ಕಡಿಮೆ ಡೇಟಾ</string>
|
||||
<!-- Label for our high quality media conversion. This has better quality than standard. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__high">ಹೆಚ್ಚು</string>
|
||||
<!-- Label for our high quality media conversion. This has better quality than standard. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__slower_more_data">ನಿಧಾನ, ಹೆಚ್ಚು ಡೇಟಾ</string>
|
||||
<!-- Title heading for our media conversion quality selector. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__media_quality">ಮಾಧ್ಯಮ ಗುಣಮಟ್ಟ</string>
|
||||
|
||||
<!-- AppSettingsFragment -->
|
||||
<!-- String alerting user that something is wrong with their backups subscription -->
|
||||
<string name="AppSettingsFragment__renew_your_signal_backups_subscription">ನಿಮ್ಮ Signal ಸುರಕ್ಷಿತ ಬ್ಯಾಕಪ್ಗಳ ಚಂದಾದಾರಿಕೆಯನ್ನು ನವೀಕರಿಸಿ</string>
|
||||
@@ -6414,14 +6402,6 @@
|
||||
<string name="MediaReviewFragment__video_set_to_view_once">ಒಂದು ಬಾರಿಯ ವೀಕ್ಷಣೆಗೆ ವಿಡಿಯೋ ಸೆಟ್ ಆಗಿದೆ</string>
|
||||
<!-- Small notification presented to the user when they set their photo to view-once mode -->
|
||||
<string name="MediaReviewFragment__photo_set_to_view_once">ಒಂದು ಬಾರಿಯ ವೀಕ್ಷಣೆಗೆ ಫೊಟೋ ಸೆಟ್ ಆಗಿದೆ.</string>
|
||||
<!-- Small notification presented to the user when they set their video to be sent in high visual quality. -->
|
||||
<string name="MediaReviewFragment__video_set_to_high_quality">ಾತ್ಯಧಿಕ ಗುಣಮಟ್ಟಕ್ಕೆ ವೀಡಿಯೊ ಸೆಟ್ ಆಗಿದೆ</string>
|
||||
<!-- Small notification presented to the user when they set their video to be sent in standard (lower than high) visual quality. -->
|
||||
<string name="MediaReviewFragment__video_set_to_standard_quality">ಸಾಮಾನ್ಯ ಗುಣಮಟ್ಟಕ್ಕೆ ವಿಡಿಯೋ ಸೆಟ್ ಆಗಿದೆ</string>
|
||||
<!-- Small notification presented to the user when they set their still image to be sent in high visual quality. -->
|
||||
<string name="MediaReviewFragment__photo_set_to_high_quality">ಫೊಟೋವನ್ನು ಅತ್ಯಧಿಕ ಗುಣಮಟ್ಟಕ್ಕೆ ಹೊಂದಿಸಲಾಗಿದೆ</string>
|
||||
<!-- Small notification presented to the user when they set their still image to be sent in standard (lower than high) visual quality. -->
|
||||
<string name="MediaReviewFragment__photo_set_to_standard_quality">ಫೊಟೋವನ್ನು ಪ್ರಮಾಣಿತ ಗುಣಮಟ್ಟಕ್ಕೆ ಸೆಟ್ ಮಾಡಲಾಗಿದೆ</string>
|
||||
<!-- Accessibility label describing the add media button on the Media review screen -->
|
||||
<string name="MediaReviewFragment__add_media_accessibility_label">ಮೀಡಿಯಾ ಸೇರಿಸಿ</string>
|
||||
<!-- Accessibility label describing the brush and pen button on the Media review screen -->
|
||||
@@ -6440,16 +6420,6 @@
|
||||
<string name="MediaReviewFragment__send_media_accessibility_label">ಮೀಡಿಯಾ ಕಳುಹಿಸಿ</string>
|
||||
<!-- Accessibility label describing the finish adding a message button on the Media review screen dialog -->
|
||||
<string name="MediaReviewFragment__finish_adding_a_message_accessibility_label">ಮೆಸೇಜ್ ಸೇರಿಸುವುದನ್ನು ಪೂರ್ಣಗೊಳಿಸಿ</string>
|
||||
<!-- Small notification presented to the user when they set multiple media items to be sent in high visual quality. -->
|
||||
<plurals name="MediaReviewFragment__items_set_to_high_quality">
|
||||
<item quantity="one">%1$d ಐಟಂ ಅನ್ನು ಅತ್ಯಧಿಕ ಗುಣಮಟ್ಟಕ್ಕೆ ಸೆಟ್ ಮಾಡಲಾಗಿದೆ</item>
|
||||
<item quantity="other">%1$d ಐಟಂಗಳನ್ನು ಅತ್ಯಧಿಕ ಗುಣಮಟ್ಟಕ್ಕೆ ಸೆಟ್ ಮಾಡಲಾಗಿದೆ</item>
|
||||
</plurals>
|
||||
<!-- Small notification presented to the user when they set multiple media items to be sent in standard (lower than high) visual quality. -->
|
||||
<plurals name="MediaReviewFragment__items_set_to_standard_quality">
|
||||
<item quantity="one">%1$d ಐಟಂ ಅನ್ನು ಪ್ರಮಾಣಿತ ಗುಣಮಟ್ಟಕ್ಕೆ ಸೆಟ್ ಮಾಡಲಾಗಿದೆ</item>
|
||||
<item quantity="other">%1$d ಐಟಂಗಳನ್ನು ಪ್ರಮಾಣಿತ ಗುಣಮಟ್ಟಕ್ಕೆ ಸೆಟ್ ಮಾಡಲಾಗಿದೆ</item>
|
||||
</plurals>
|
||||
|
||||
<string name="ImageEditorHud__cancel">ರದ್ದುಗೊಳಿಸಿ</string>
|
||||
<string name="ImageEditorHud__draw">ರಚಿಸಿ</string>
|
||||
|
||||
@@ -5509,18 +5509,6 @@
|
||||
<!-- GroupDescriptionDialog -->
|
||||
<string name="GroupDescriptionDialog__group_description">그룹 설명</string>
|
||||
|
||||
<!-- QualitySelectorBottomSheetDialog -->
|
||||
<!-- Label for our standard quality media conversion. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__standard">기본</string>
|
||||
<!-- Description for our standard quality media conversion. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__faster_less_data">데이터를 덜 쓰며 빠르게</string>
|
||||
<!-- Label for our high quality media conversion. This has better quality than standard. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__high">높음</string>
|
||||
<!-- Label for our high quality media conversion. This has better quality than standard. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__slower_more_data">데이터를 더 쓰며 느리게</string>
|
||||
<!-- Title heading for our media conversion quality selector. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__media_quality">미디어 품질</string>
|
||||
|
||||
<!-- AppSettingsFragment -->
|
||||
<!-- String alerting user that something is wrong with their backups subscription -->
|
||||
<string name="AppSettingsFragment__renew_your_signal_backups_subscription">Signal 안전 백업 구독을 갱신하세요</string>
|
||||
@@ -6254,14 +6242,6 @@
|
||||
<string name="MediaReviewFragment__video_set_to_view_once">동영상을 한 번 보기로 설정했습니다.</string>
|
||||
<!-- Small notification presented to the user when they set their photo to view-once mode -->
|
||||
<string name="MediaReviewFragment__photo_set_to_view_once">사진을 한 번 보기로 설정했습니다.</string>
|
||||
<!-- Small notification presented to the user when they set their video to be sent in high visual quality. -->
|
||||
<string name="MediaReviewFragment__video_set_to_high_quality">동영상을 고품질로 설정했습니다.</string>
|
||||
<!-- Small notification presented to the user when they set their video to be sent in standard (lower than high) visual quality. -->
|
||||
<string name="MediaReviewFragment__video_set_to_standard_quality">동영상을 표준 품질로 설정했습니다.</string>
|
||||
<!-- Small notification presented to the user when they set their still image to be sent in high visual quality. -->
|
||||
<string name="MediaReviewFragment__photo_set_to_high_quality">사진을 고품질로 설정했습니다.</string>
|
||||
<!-- Small notification presented to the user when they set their still image to be sent in standard (lower than high) visual quality. -->
|
||||
<string name="MediaReviewFragment__photo_set_to_standard_quality">사진을 표준 품질로 설정했습니다.</string>
|
||||
<!-- Accessibility label describing the add media button on the Media review screen -->
|
||||
<string name="MediaReviewFragment__add_media_accessibility_label">미디어 추가</string>
|
||||
<!-- Accessibility label describing the brush and pen button on the Media review screen -->
|
||||
@@ -6280,14 +6260,6 @@
|
||||
<string name="MediaReviewFragment__send_media_accessibility_label">미디어 보내기</string>
|
||||
<!-- Accessibility label describing the finish adding a message button on the Media review screen dialog -->
|
||||
<string name="MediaReviewFragment__finish_adding_a_message_accessibility_label">메시지 추가 완료</string>
|
||||
<!-- Small notification presented to the user when they set multiple media items to be sent in high visual quality. -->
|
||||
<plurals name="MediaReviewFragment__items_set_to_high_quality">
|
||||
<item quantity="other">항목 %1$d개를 고품질로 설정했습니다.</item>
|
||||
</plurals>
|
||||
<!-- Small notification presented to the user when they set multiple media items to be sent in standard (lower than high) visual quality. -->
|
||||
<plurals name="MediaReviewFragment__items_set_to_standard_quality">
|
||||
<item quantity="other">항목 %1$d개를 표준 품질로 설정했습니다.</item>
|
||||
</plurals>
|
||||
|
||||
<string name="ImageEditorHud__cancel">취소</string>
|
||||
<string name="ImageEditorHud__draw">그리기</string>
|
||||
|
||||
@@ -5652,18 +5652,6 @@
|
||||
<!-- GroupDescriptionDialog -->
|
||||
<string name="GroupDescriptionDialog__group_description">Топ тууралуу учкай маалымат</string>
|
||||
|
||||
<!-- QualitySelectorBottomSheetDialog -->
|
||||
<!-- Label for our standard quality media conversion. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__standard">Стандарт</string>
|
||||
<!-- Description for our standard quality media conversion. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__faster_less_data">Тезирээк, азыраак берилмелер</string>
|
||||
<!-- Label for our high quality media conversion. This has better quality than standard. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__high">Шашылыш</string>
|
||||
<!-- Label for our high quality media conversion. This has better quality than standard. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__slower_more_data">Жайыраак, көбүрөөк берилмелер</string>
|
||||
<!-- Title heading for our media conversion quality selector. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__media_quality">Медиа сапаты</string>
|
||||
|
||||
<!-- AppSettingsFragment -->
|
||||
<!-- String alerting user that something is wrong with their backups subscription -->
|
||||
<string name="AppSettingsFragment__renew_your_signal_backups_subscription">Signal\'дын Коопсуз камдык көчүрмөлөр кызматына катталууну узартыңыз</string>
|
||||
@@ -6414,14 +6402,6 @@
|
||||
<string name="MediaReviewFragment__video_set_to_view_once">Видео бир гана жолу көрүлөт деп коюлду</string>
|
||||
<!-- Small notification presented to the user when they set their photo to view-once mode -->
|
||||
<string name="MediaReviewFragment__photo_set_to_view_once">Сүрөт бир гана жолу көрүлөт деп коюлду</string>
|
||||
<!-- Small notification presented to the user when they set their video to be sent in high visual quality. -->
|
||||
<string name="MediaReviewFragment__video_set_to_high_quality">Видео жогорку сапатка коюлду</string>
|
||||
<!-- Small notification presented to the user when they set their video to be sent in standard (lower than high) visual quality. -->
|
||||
<string name="MediaReviewFragment__video_set_to_standard_quality">Видео стандарттык сапатка коюлду</string>
|
||||
<!-- Small notification presented to the user when they set their still image to be sent in high visual quality. -->
|
||||
<string name="MediaReviewFragment__photo_set_to_high_quality">Сүрөт жогорку сапатка коюлду</string>
|
||||
<!-- Small notification presented to the user when they set their still image to be sent in standard (lower than high) visual quality. -->
|
||||
<string name="MediaReviewFragment__photo_set_to_standard_quality">Сүрөт стандарттык сапатка коюлду</string>
|
||||
<!-- Accessibility label describing the add media button on the Media review screen -->
|
||||
<string name="MediaReviewFragment__add_media_accessibility_label">Медиа файл кошуу</string>
|
||||
<!-- Accessibility label describing the brush and pen button on the Media review screen -->
|
||||
@@ -6440,16 +6420,6 @@
|
||||
<string name="MediaReviewFragment__send_media_accessibility_label">Медиа файл жөнөтүү</string>
|
||||
<!-- Accessibility label describing the finish adding a message button on the Media review screen dialog -->
|
||||
<string name="MediaReviewFragment__finish_adding_a_message_accessibility_label">Билдирүү кошууну бүтүрүү</string>
|
||||
<!-- Small notification presented to the user when they set multiple media items to be sent in high visual quality. -->
|
||||
<plurals name="MediaReviewFragment__items_set_to_high_quality">
|
||||
<item quantity="one"></item>
|
||||
<item quantity="other">%1$d нерсе жогорку сапатка коюлду</item>
|
||||
</plurals>
|
||||
<!-- Small notification presented to the user when they set multiple media items to be sent in standard (lower than high) visual quality. -->
|
||||
<plurals name="MediaReviewFragment__items_set_to_standard_quality">
|
||||
<item quantity="one"></item>
|
||||
<item quantity="other">%1$d нерсе стандарттык сапатка коюлду</item>
|
||||
</plurals>
|
||||
|
||||
<string name="ImageEditorHud__cancel">Жокко чыгаруу</string>
|
||||
<string name="ImageEditorHud__draw">Тартуу</string>
|
||||
|
||||
@@ -5938,18 +5938,6 @@
|
||||
<!-- GroupDescriptionDialog -->
|
||||
<string name="GroupDescriptionDialog__group_description">Grupės aprašas</string>
|
||||
|
||||
<!-- QualitySelectorBottomSheetDialog -->
|
||||
<!-- Label for our standard quality media conversion. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__standard">Standartinė</string>
|
||||
<!-- Description for our standard quality media conversion. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__faster_less_data">Greičiau, mažiau duomenų</string>
|
||||
<!-- Label for our high quality media conversion. This has better quality than standard. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__high">Aukšta</string>
|
||||
<!-- Label for our high quality media conversion. This has better quality than standard. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__slower_more_data">Lėčiau, daugiau duomenų</string>
|
||||
<!-- Title heading for our media conversion quality selector. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__media_quality">Medijos kokybė</string>
|
||||
|
||||
<!-- AppSettingsFragment -->
|
||||
<!-- String alerting user that something is wrong with their backups subscription -->
|
||||
<string name="AppSettingsFragment__renew_your_signal_backups_subscription">Atnaujinkite savo atsarginių kopijų prenumeratą</string>
|
||||
@@ -6734,14 +6722,6 @@
|
||||
<string name="MediaReviewFragment__video_set_to_view_once">Vaizdo įrašas nustatytas peržiūrėti vieną kartą</string>
|
||||
<!-- Small notification presented to the user when they set their photo to view-once mode -->
|
||||
<string name="MediaReviewFragment__photo_set_to_view_once">Nuotrauka nustatyta peržiūrėti vieną kartą</string>
|
||||
<!-- Small notification presented to the user when they set their video to be sent in high visual quality. -->
|
||||
<string name="MediaReviewFragment__video_set_to_high_quality">Nustatyta aukšta vaizdo įrašo kokybė</string>
|
||||
<!-- Small notification presented to the user when they set their video to be sent in standard (lower than high) visual quality. -->
|
||||
<string name="MediaReviewFragment__video_set_to_standard_quality">Nustatyta standartinė vaizdo įrašo kokybė</string>
|
||||
<!-- Small notification presented to the user when they set their still image to be sent in high visual quality. -->
|
||||
<string name="MediaReviewFragment__photo_set_to_high_quality">Nustatyta aukšta nuotraukos kokybė</string>
|
||||
<!-- Small notification presented to the user when they set their still image to be sent in standard (lower than high) visual quality. -->
|
||||
<string name="MediaReviewFragment__photo_set_to_standard_quality">Nustatyta standartinė nuotraukos kokybė</string>
|
||||
<!-- Accessibility label describing the add media button on the Media review screen -->
|
||||
<string name="MediaReviewFragment__add_media_accessibility_label">Pridėti įrašą</string>
|
||||
<!-- Accessibility label describing the brush and pen button on the Media review screen -->
|
||||
@@ -6760,20 +6740,6 @@
|
||||
<string name="MediaReviewFragment__send_media_accessibility_label">Siųsti įrašą</string>
|
||||
<!-- Accessibility label describing the finish adding a message button on the Media review screen dialog -->
|
||||
<string name="MediaReviewFragment__finish_adding_a_message_accessibility_label">Užbaigti žinutės pridėjimą</string>
|
||||
<!-- Small notification presented to the user when they set multiple media items to be sent in high visual quality. -->
|
||||
<plurals name="MediaReviewFragment__items_set_to_high_quality">
|
||||
<item quantity="one">Nustatyta aukšta %1$d elemento kokybė</item>
|
||||
<item quantity="few">Nustatyta aukšta %1$d elementų kokybė</item>
|
||||
<item quantity="many">Nustatyta aukšta %1$d elemento kokybė</item>
|
||||
<item quantity="other">Nustatyta aukšta %1$d elementų kokybė</item>
|
||||
</plurals>
|
||||
<!-- Small notification presented to the user when they set multiple media items to be sent in standard (lower than high) visual quality. -->
|
||||
<plurals name="MediaReviewFragment__items_set_to_standard_quality">
|
||||
<item quantity="one">Nustatyta standartinė %1$d elemento kokybė</item>
|
||||
<item quantity="few">Nustatyta standartinė %1$d elementų kokybė</item>
|
||||
<item quantity="many">Nustatyta standartinė %1$d elementų kokybė</item>
|
||||
<item quantity="other">Nustatyta standartinė %1$d elementų kokybė</item>
|
||||
</plurals>
|
||||
|
||||
<string name="ImageEditorHud__cancel">Atsisakyti</string>
|
||||
<string name="ImageEditorHud__draw">Piešti</string>
|
||||
|
||||
@@ -5795,18 +5795,6 @@
|
||||
<!-- GroupDescriptionDialog -->
|
||||
<string name="GroupDescriptionDialog__group_description">Grupas apraksts</string>
|
||||
|
||||
<!-- QualitySelectorBottomSheetDialog -->
|
||||
<!-- Label for our standard quality media conversion. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__standard">Standarta</string>
|
||||
<!-- Description for our standard quality media conversion. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__faster_less_data">Ātrāk, mazāk datu</string>
|
||||
<!-- Label for our high quality media conversion. This has better quality than standard. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__high">Augsta</string>
|
||||
<!-- Label for our high quality media conversion. This has better quality than standard. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__slower_more_data">Lēnāk, vairāk datu</string>
|
||||
<!-- Title heading for our media conversion quality selector. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__media_quality">Multivides kvalitāte</string>
|
||||
|
||||
<!-- AppSettingsFragment -->
|
||||
<!-- String alerting user that something is wrong with their backups subscription -->
|
||||
<string name="AppSettingsFragment__renew_your_signal_backups_subscription">Atjaunojiet Signal drošo rezerves kopiju abonementu</string>
|
||||
@@ -6574,14 +6562,6 @@
|
||||
<string name="MediaReviewFragment__video_set_to_view_once">Videoklipu var skatīt tikai vienu reizi</string>
|
||||
<!-- Small notification presented to the user when they set their photo to view-once mode -->
|
||||
<string name="MediaReviewFragment__photo_set_to_view_once">Fotoattēlu var skatīt tikai vienu reizi</string>
|
||||
<!-- Small notification presented to the user when they set their video to be sent in high visual quality. -->
|
||||
<string name="MediaReviewFragment__video_set_to_high_quality">Videoklipam ir iestatīta augsta kvalitāte</string>
|
||||
<!-- Small notification presented to the user when they set their video to be sent in standard (lower than high) visual quality. -->
|
||||
<string name="MediaReviewFragment__video_set_to_standard_quality">Videoklipam ir iestatīta standarta kvalitāte</string>
|
||||
<!-- Small notification presented to the user when they set their still image to be sent in high visual quality. -->
|
||||
<string name="MediaReviewFragment__photo_set_to_high_quality">Fotoattēlam ir iestatīta augsta kvalitāte</string>
|
||||
<!-- Small notification presented to the user when they set their still image to be sent in standard (lower than high) visual quality. -->
|
||||
<string name="MediaReviewFragment__photo_set_to_standard_quality">Fotoattēlam ir iestatīta standarta kvalitāte</string>
|
||||
<!-- Accessibility label describing the add media button on the Media review screen -->
|
||||
<string name="MediaReviewFragment__add_media_accessibility_label">Pievienot multividi</string>
|
||||
<!-- Accessibility label describing the brush and pen button on the Media review screen -->
|
||||
@@ -6600,18 +6580,6 @@
|
||||
<string name="MediaReviewFragment__send_media_accessibility_label">Sūtīt multividi</string>
|
||||
<!-- Accessibility label describing the finish adding a message button on the Media review screen dialog -->
|
||||
<string name="MediaReviewFragment__finish_adding_a_message_accessibility_label">Pabeigt ziņas pievienošanu</string>
|
||||
<!-- Small notification presented to the user when they set multiple media items to be sent in high visual quality. -->
|
||||
<plurals name="MediaReviewFragment__items_set_to_high_quality">
|
||||
<item quantity="zero">%1$d vienumiem ir iestatīta augsta kvalitāte</item>
|
||||
<item quantity="one">%1$d vienumam ir iestatīta augsta kvalitāte</item>
|
||||
<item quantity="other">%1$d vienumiem ir iestatīta augsta kvalitāte</item>
|
||||
</plurals>
|
||||
<!-- Small notification presented to the user when they set multiple media items to be sent in standard (lower than high) visual quality. -->
|
||||
<plurals name="MediaReviewFragment__items_set_to_standard_quality">
|
||||
<item quantity="zero">%1$d vienumiem ir iestatīta standarta kvalitāte</item>
|
||||
<item quantity="one">%1$d vienumam ir iestatīta standarta kvalitāte</item>
|
||||
<item quantity="other">%1$d vienumiem ir iestatīta standarta kvalitāte</item>
|
||||
</plurals>
|
||||
|
||||
<string name="ImageEditorHud__cancel">Atcelt</string>
|
||||
<string name="ImageEditorHud__draw">Zīmēt</string>
|
||||
|
||||
@@ -5652,18 +5652,6 @@
|
||||
<!-- GroupDescriptionDialog -->
|
||||
<string name="GroupDescriptionDialog__group_description">Опис на групата</string>
|
||||
|
||||
<!-- QualitySelectorBottomSheetDialog -->
|
||||
<!-- Label for our standard quality media conversion. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__standard">Стандарден</string>
|
||||
<!-- Description for our standard quality media conversion. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__faster_less_data">Побрзо, помалку податоци</string>
|
||||
<!-- Label for our high quality media conversion. This has better quality than standard. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__high">Висок</string>
|
||||
<!-- Label for our high quality media conversion. This has better quality than standard. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__slower_more_data">Побавно, повеќе податоци</string>
|
||||
<!-- Title heading for our media conversion quality selector. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__media_quality">Квалитет на медиумски датотеки</string>
|
||||
|
||||
<!-- AppSettingsFragment -->
|
||||
<!-- String alerting user that something is wrong with their backups subscription -->
|
||||
<string name="AppSettingsFragment__renew_your_signal_backups_subscription">Обновете ја вашата претплата на Безбедни резервни копии на Signal</string>
|
||||
@@ -6414,14 +6402,6 @@
|
||||
<string name="MediaReviewFragment__video_set_to_view_once">Видеото е поставено на еднократен преглед</string>
|
||||
<!-- Small notification presented to the user when they set their photo to view-once mode -->
|
||||
<string name="MediaReviewFragment__photo_set_to_view_once">Сликата е поставена на еднократен преглед</string>
|
||||
<!-- Small notification presented to the user when they set their video to be sent in high visual quality. -->
|
||||
<string name="MediaReviewFragment__video_set_to_high_quality">Видеото е поставено на висок квалитет</string>
|
||||
<!-- Small notification presented to the user when they set their video to be sent in standard (lower than high) visual quality. -->
|
||||
<string name="MediaReviewFragment__video_set_to_standard_quality">Видеото е поставено на стандарден квалитет</string>
|
||||
<!-- Small notification presented to the user when they set their still image to be sent in high visual quality. -->
|
||||
<string name="MediaReviewFragment__photo_set_to_high_quality">Сликата е поставена на висок квалитет</string>
|
||||
<!-- Small notification presented to the user when they set their still image to be sent in standard (lower than high) visual quality. -->
|
||||
<string name="MediaReviewFragment__photo_set_to_standard_quality">Сликата е поставена на стандарден квалитет</string>
|
||||
<!-- Accessibility label describing the add media button on the Media review screen -->
|
||||
<string name="MediaReviewFragment__add_media_accessibility_label">Додајте медиумска датотека</string>
|
||||
<!-- Accessibility label describing the brush and pen button on the Media review screen -->
|
||||
@@ -6440,16 +6420,6 @@
|
||||
<string name="MediaReviewFragment__send_media_accessibility_label">Испратете ја медиумската датотека</string>
|
||||
<!-- Accessibility label describing the finish adding a message button on the Media review screen dialog -->
|
||||
<string name="MediaReviewFragment__finish_adding_a_message_accessibility_label">Завршете со додавање порака</string>
|
||||
<!-- Small notification presented to the user when they set multiple media items to be sent in high visual quality. -->
|
||||
<plurals name="MediaReviewFragment__items_set_to_high_quality">
|
||||
<item quantity="one">%1$d датотека е поставена на висок квалитет</item>
|
||||
<item quantity="other">%1$d датотеки се поставени на висок квалитет</item>
|
||||
</plurals>
|
||||
<!-- Small notification presented to the user when they set multiple media items to be sent in standard (lower than high) visual quality. -->
|
||||
<plurals name="MediaReviewFragment__items_set_to_standard_quality">
|
||||
<item quantity="one">%1$d датотека е поставена на стандарден квалитет</item>
|
||||
<item quantity="other">%1$d датотеки се поставени на стандарден квалитет</item>
|
||||
</plurals>
|
||||
|
||||
<string name="ImageEditorHud__cancel">Откажи</string>
|
||||
<string name="ImageEditorHud__draw">Цртај</string>
|
||||
|
||||
@@ -5652,18 +5652,6 @@
|
||||
<!-- GroupDescriptionDialog -->
|
||||
<string name="GroupDescriptionDialog__group_description">ഗ്രൂപ്പ് വിവരണം</string>
|
||||
|
||||
<!-- QualitySelectorBottomSheetDialog -->
|
||||
<!-- Label for our standard quality media conversion. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__standard">സ്റ്റാൻഡേർഡ്</string>
|
||||
<!-- Description for our standard quality media conversion. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__faster_less_data">വേഗത്തിൽ, കുറഞ്ഞ ഡാറ്റ</string>
|
||||
<!-- Label for our high quality media conversion. This has better quality than standard. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__high">ഉയർന്നത്</string>
|
||||
<!-- Label for our high quality media conversion. This has better quality than standard. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__slower_more_data">സാവധാനം, കൂടുതൽ ഡാറ്റ</string>
|
||||
<!-- Title heading for our media conversion quality selector. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__media_quality">മീഡിയ നിലവാരം</string>
|
||||
|
||||
<!-- AppSettingsFragment -->
|
||||
<!-- String alerting user that something is wrong with their backups subscription -->
|
||||
<string name="AppSettingsFragment__renew_your_signal_backups_subscription">നിങ്ങളുടെ Signal സുരക്ഷിത ബാക്കപ്പ് സബ്സ്ക്രിപ്ഷൻ പുതുക്കുക</string>
|
||||
@@ -6414,14 +6402,6 @@
|
||||
<string name="MediaReviewFragment__video_set_to_view_once">വീഡിയോ ഒരിക്കൽ കാണാൻ സജ്ജമാക്കി</string>
|
||||
<!-- Small notification presented to the user when they set their photo to view-once mode -->
|
||||
<string name="MediaReviewFragment__photo_set_to_view_once">ഫോട്ടോ ഒരിക്കൽ കാണാൻ സജ്ജമാക്കി</string>
|
||||
<!-- Small notification presented to the user when they set their video to be sent in high visual quality. -->
|
||||
<string name="MediaReviewFragment__video_set_to_high_quality">വീഡിയോ ഉയർന്ന നിലവാരത്തിലേക്ക് സജ്ജമാക്കി</string>
|
||||
<!-- Small notification presented to the user when they set their video to be sent in standard (lower than high) visual quality. -->
|
||||
<string name="MediaReviewFragment__video_set_to_standard_quality">വീഡിയോ സാധാരണ നിലവാരത്തിലേക്ക് സജ്ജമാക്കി</string>
|
||||
<!-- Small notification presented to the user when they set their still image to be sent in high visual quality. -->
|
||||
<string name="MediaReviewFragment__photo_set_to_high_quality">ഫോട്ടോ ഉയർന്ന നിലവാരത്തിലേക്ക് സജ്ജമാക്കി</string>
|
||||
<!-- Small notification presented to the user when they set their still image to be sent in standard (lower than high) visual quality. -->
|
||||
<string name="MediaReviewFragment__photo_set_to_standard_quality">ഫോട്ടോ സാധാരണ നിലവാരത്തിലേക്ക് സജ്ജമാക്കി</string>
|
||||
<!-- Accessibility label describing the add media button on the Media review screen -->
|
||||
<string name="MediaReviewFragment__add_media_accessibility_label">ഒരു മീഡിയ ചേർക്കുക</string>
|
||||
<!-- Accessibility label describing the brush and pen button on the Media review screen -->
|
||||
@@ -6440,16 +6420,6 @@
|
||||
<string name="MediaReviewFragment__send_media_accessibility_label">മീഡിയ അയയ്ക്കുക</string>
|
||||
<!-- Accessibility label describing the finish adding a message button on the Media review screen dialog -->
|
||||
<string name="MediaReviewFragment__finish_adding_a_message_accessibility_label">ഒരു സന്ദേശം ചേർക്കുന്നത് പൂർത്തിയാക്കുക</string>
|
||||
<!-- Small notification presented to the user when they set multiple media items to be sent in high visual quality. -->
|
||||
<plurals name="MediaReviewFragment__items_set_to_high_quality">
|
||||
<item quantity="one">%1$d ഇനം ഉയർന്ന നിലവാരത്തിലേക്ക് സജ്ജമാക്കി</item>
|
||||
<item quantity="other">%1$d ഇനങ്ങൾ ഉയർന്ന നിലവാരത്തിലേക്ക് സജ്ജമാക്കി</item>
|
||||
</plurals>
|
||||
<!-- Small notification presented to the user when they set multiple media items to be sent in standard (lower than high) visual quality. -->
|
||||
<plurals name="MediaReviewFragment__items_set_to_standard_quality">
|
||||
<item quantity="one">%1$d ഇനം സാധാരണ നിലവാരത്തിലേക്ക് സജ്ജമാക്കി</item>
|
||||
<item quantity="other">%1$d ഇനങ്ങൾ സാധാരണ നിലവാരത്തിലേക്ക് സജ്ജമാക്കി</item>
|
||||
</plurals>
|
||||
|
||||
<string name="ImageEditorHud__cancel">റദ്ദാക്കൂ</string>
|
||||
<string name="ImageEditorHud__draw">വരയ്ക്കുക</string>
|
||||
|
||||
@@ -5652,18 +5652,6 @@
|
||||
<!-- GroupDescriptionDialog -->
|
||||
<string name="GroupDescriptionDialog__group_description">गट विवरण</string>
|
||||
|
||||
<!-- QualitySelectorBottomSheetDialog -->
|
||||
<!-- Label for our standard quality media conversion. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__standard">मानक</string>
|
||||
<!-- Description for our standard quality media conversion. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__faster_less_data">जलद, कमी डेटा</string>
|
||||
<!-- Label for our high quality media conversion. This has better quality than standard. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__high">उच्च</string>
|
||||
<!-- Label for our high quality media conversion. This has better quality than standard. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__slower_more_data">हळू, अधिक डेटा</string>
|
||||
<!-- Title heading for our media conversion quality selector. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__media_quality">मिडिया दर्जा</string>
|
||||
|
||||
<!-- AppSettingsFragment -->
|
||||
<!-- String alerting user that something is wrong with their backups subscription -->
|
||||
<string name="AppSettingsFragment__renew_your_signal_backups_subscription">तुमचे Signal सुरक्षित बॅकअप्स चे सदस्यत्व रीन्यू करा</string>
|
||||
@@ -6414,14 +6402,6 @@
|
||||
<string name="MediaReviewFragment__video_set_to_view_once">व्हिडिओ एकदा पाहण्यासाठी सेट करा</string>
|
||||
<!-- Small notification presented to the user when they set their photo to view-once mode -->
|
||||
<string name="MediaReviewFragment__photo_set_to_view_once">एकदा फोटो पाहण्यासाठी सेट करा</string>
|
||||
<!-- Small notification presented to the user when they set their video to be sent in high visual quality. -->
|
||||
<string name="MediaReviewFragment__video_set_to_high_quality">व्हिडिओ उच्च गुणवत्तेवर सेट करा</string>
|
||||
<!-- Small notification presented to the user when they set their video to be sent in standard (lower than high) visual quality. -->
|
||||
<string name="MediaReviewFragment__video_set_to_standard_quality">व्हिडिओ मानक गुणवत्तेवर सेट केला आहे</string>
|
||||
<!-- Small notification presented to the user when they set their still image to be sent in high visual quality. -->
|
||||
<string name="MediaReviewFragment__photo_set_to_high_quality">फोटो उच्च गुणवत्तेवर सेट करा</string>
|
||||
<!-- Small notification presented to the user when they set their still image to be sent in standard (lower than high) visual quality. -->
|
||||
<string name="MediaReviewFragment__photo_set_to_standard_quality">फोटो मानक गुणवत्तेवर सेट करा</string>
|
||||
<!-- Accessibility label describing the add media button on the Media review screen -->
|
||||
<string name="MediaReviewFragment__add_media_accessibility_label">मिडीया समाविष्ट करा</string>
|
||||
<!-- Accessibility label describing the brush and pen button on the Media review screen -->
|
||||
@@ -6440,16 +6420,6 @@
|
||||
<string name="MediaReviewFragment__send_media_accessibility_label">मिडीया पाठवा</string>
|
||||
<!-- Accessibility label describing the finish adding a message button on the Media review screen dialog -->
|
||||
<string name="MediaReviewFragment__finish_adding_a_message_accessibility_label">संदेश समाविष्ट करा</string>
|
||||
<!-- Small notification presented to the user when they set multiple media items to be sent in high visual quality. -->
|
||||
<plurals name="MediaReviewFragment__items_set_to_high_quality">
|
||||
<item quantity="one">%1$d आयटम उच्च गुणवत्तेवर सेट केला आहे</item>
|
||||
<item quantity="other">%1$d आयटम्स उच्च गुणवत्तेवर सेट केले आहेत</item>
|
||||
</plurals>
|
||||
<!-- Small notification presented to the user when they set multiple media items to be sent in standard (lower than high) visual quality. -->
|
||||
<plurals name="MediaReviewFragment__items_set_to_standard_quality">
|
||||
<item quantity="one">%1$d आयटम मानक गुणवत्तेवर सेट केला आहे</item>
|
||||
<item quantity="other">%1$d आयटम्स मानक गुणवत्तेवर सेट केले आहेत</item>
|
||||
</plurals>
|
||||
|
||||
<string name="ImageEditorHud__cancel">रद्द करा</string>
|
||||
<string name="ImageEditorHud__draw">रेखाटा</string>
|
||||
|
||||
@@ -5509,18 +5509,6 @@
|
||||
<!-- GroupDescriptionDialog -->
|
||||
<string name="GroupDescriptionDialog__group_description">Penerangan kumpulan</string>
|
||||
|
||||
<!-- QualitySelectorBottomSheetDialog -->
|
||||
<!-- Label for our standard quality media conversion. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__standard">Standard</string>
|
||||
<!-- Description for our standard quality media conversion. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__faster_less_data">Lebih cepat, kurang data</string>
|
||||
<!-- Label for our high quality media conversion. This has better quality than standard. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__high">Tinggi</string>
|
||||
<!-- Label for our high quality media conversion. This has better quality than standard. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__slower_more_data">Lebih lambat, lebih banyak data</string>
|
||||
<!-- Title heading for our media conversion quality selector. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__media_quality">Kualiti media</string>
|
||||
|
||||
<!-- AppSettingsFragment -->
|
||||
<!-- String alerting user that something is wrong with their backups subscription -->
|
||||
<string name="AppSettingsFragment__renew_your_signal_backups_subscription">Perbaharui langganan Sandaran Selamat Signal anda</string>
|
||||
@@ -6254,14 +6242,6 @@
|
||||
<string name="MediaReviewFragment__video_set_to_view_once">Video ditetapkan kepada tonton sekali</string>
|
||||
<!-- Small notification presented to the user when they set their photo to view-once mode -->
|
||||
<string name="MediaReviewFragment__photo_set_to_view_once">Foto ditetapkan untuk lihat sekali</string>
|
||||
<!-- Small notification presented to the user when they set their video to be sent in high visual quality. -->
|
||||
<string name="MediaReviewFragment__video_set_to_high_quality">Video ditetapkan kepada kualiti tinggi</string>
|
||||
<!-- Small notification presented to the user when they set their video to be sent in standard (lower than high) visual quality. -->
|
||||
<string name="MediaReviewFragment__video_set_to_standard_quality">Video ditetapkan kepada kualiti standard</string>
|
||||
<!-- Small notification presented to the user when they set their still image to be sent in high visual quality. -->
|
||||
<string name="MediaReviewFragment__photo_set_to_high_quality">Foto ditetapkan kepada kualiti tinggi</string>
|
||||
<!-- Small notification presented to the user when they set their still image to be sent in standard (lower than high) visual quality. -->
|
||||
<string name="MediaReviewFragment__photo_set_to_standard_quality">Foto ditetapkan kepada kualiti standard</string>
|
||||
<!-- Accessibility label describing the add media button on the Media review screen -->
|
||||
<string name="MediaReviewFragment__add_media_accessibility_label">Tambah Media</string>
|
||||
<!-- Accessibility label describing the brush and pen button on the Media review screen -->
|
||||
@@ -6280,14 +6260,6 @@
|
||||
<string name="MediaReviewFragment__send_media_accessibility_label">Hantar Media</string>
|
||||
<!-- Accessibility label describing the finish adding a message button on the Media review screen dialog -->
|
||||
<string name="MediaReviewFragment__finish_adding_a_message_accessibility_label">Selesai menambahkan Mesej</string>
|
||||
<!-- Small notification presented to the user when they set multiple media items to be sent in high visual quality. -->
|
||||
<plurals name="MediaReviewFragment__items_set_to_high_quality">
|
||||
<item quantity="other">%1$d item ditetapkan kepada kualiti tinggi</item>
|
||||
</plurals>
|
||||
<!-- Small notification presented to the user when they set multiple media items to be sent in standard (lower than high) visual quality. -->
|
||||
<plurals name="MediaReviewFragment__items_set_to_standard_quality">
|
||||
<item quantity="other">%1$d item ditetapkan kepada kualiti standard</item>
|
||||
</plurals>
|
||||
|
||||
<string name="ImageEditorHud__cancel">Batal</string>
|
||||
<string name="ImageEditorHud__draw">Lukis</string>
|
||||
|
||||
@@ -5509,18 +5509,6 @@
|
||||
<!-- GroupDescriptionDialog -->
|
||||
<string name="GroupDescriptionDialog__group_description">အဖွဲ့ ဖော်ပြချက်</string>
|
||||
|
||||
<!-- QualitySelectorBottomSheetDialog -->
|
||||
<!-- Label for our standard quality media conversion. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__standard">အသင့်အတင့်</string>
|
||||
<!-- Description for our standard quality media conversion. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__faster_less_data">ပိုမြန်ဆန်ပြီး ဒေတာ နည်းနည်းသာ လိုသည်</string>
|
||||
<!-- Label for our high quality media conversion. This has better quality than standard. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__high">မြင့်သော</string>
|
||||
<!-- Label for our high quality media conversion. This has better quality than standard. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__slower_more_data">ပိုနှေးပြီး ဒေတာ ပိုလိုသည်</string>
|
||||
<!-- Title heading for our media conversion quality selector. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__media_quality">ဓာတ်ပုံ အရည်အသွေး</string>
|
||||
|
||||
<!-- AppSettingsFragment -->
|
||||
<!-- String alerting user that something is wrong with their backups subscription -->
|
||||
<string name="AppSettingsFragment__renew_your_signal_backups_subscription">သင်၏ Signal လုံခြုံရေးဘက်ခ်အပ် စာရင်းသွင်းမှုကို သက်တမ်းတိုးပါ</string>
|
||||
@@ -6254,14 +6242,6 @@
|
||||
<string name="MediaReviewFragment__video_set_to_view_once">ဗီဒီယိုကို တစ်ခါကြည့်အဖြစ် သတ်မှတ်ထားသည်</string>
|
||||
<!-- Small notification presented to the user when they set their photo to view-once mode -->
|
||||
<string name="MediaReviewFragment__photo_set_to_view_once">ဓာတ်ပုံကို တစ်ခါကြည့်အဖြစ် သတ်မှတ်ထားသည်</string>
|
||||
<!-- Small notification presented to the user when they set their video to be sent in high visual quality. -->
|
||||
<string name="MediaReviewFragment__video_set_to_high_quality">ဗီဒီယိုကို အရည်အသွေးအမြင့် သတ်မှတ်ထားသည်</string>
|
||||
<!-- Small notification presented to the user when they set their video to be sent in standard (lower than high) visual quality. -->
|
||||
<string name="MediaReviewFragment__video_set_to_standard_quality">ဗီဒီယိုကို ပုံမှန်အရည်အသွေးအဖြစ် သတ်မှတ်ထားသည်</string>
|
||||
<!-- Small notification presented to the user when they set their still image to be sent in high visual quality. -->
|
||||
<string name="MediaReviewFragment__photo_set_to_high_quality">ဓာတ်ပုံကို အရည်အသွေးအမြင့် သတ်မှတ်ထားသည်</string>
|
||||
<!-- Small notification presented to the user when they set their still image to be sent in standard (lower than high) visual quality. -->
|
||||
<string name="MediaReviewFragment__photo_set_to_standard_quality">ဓာတ်ပုံကို ပုံမှန်အရည်အသွေးအဖြစ် သတ်မှတ်ထားသည်</string>
|
||||
<!-- Accessibility label describing the add media button on the Media review screen -->
|
||||
<string name="MediaReviewFragment__add_media_accessibility_label">မီဒီယာတစ်ခုထည့်ရန်</string>
|
||||
<!-- Accessibility label describing the brush and pen button on the Media review screen -->
|
||||
@@ -6280,14 +6260,6 @@
|
||||
<string name="MediaReviewFragment__send_media_accessibility_label">မီဒီယာကို ပို့ရန်</string>
|
||||
<!-- Accessibility label describing the finish adding a message button on the Media review screen dialog -->
|
||||
<string name="MediaReviewFragment__finish_adding_a_message_accessibility_label">မက်ဆေ့ချ်တစ်ခုထည့်ခြင်း အပြီးသတ်ရန်</string>
|
||||
<!-- Small notification presented to the user when they set multiple media items to be sent in high visual quality. -->
|
||||
<plurals name="MediaReviewFragment__items_set_to_high_quality">
|
||||
<item quantity="other">ဖိုင် %1$d ဖိုင်ကို အရည်အသွေးအမြင့် သတ်မှတ်ထားသည်</item>
|
||||
</plurals>
|
||||
<!-- Small notification presented to the user when they set multiple media items to be sent in standard (lower than high) visual quality. -->
|
||||
<plurals name="MediaReviewFragment__items_set_to_standard_quality">
|
||||
<item quantity="other">ဖိုင် %1$d ဖိုင်ကို ပုံမှန်အရည်အသွေးအဖြစ် သတ်မှတ်ထားသည်</item>
|
||||
</plurals>
|
||||
|
||||
<string name="ImageEditorHud__cancel">ပယ်ဖျက်မယ်</string>
|
||||
<string name="ImageEditorHud__draw">ရေးဆွဲရန်</string>
|
||||
|
||||
@@ -5652,18 +5652,6 @@
|
||||
<!-- GroupDescriptionDialog -->
|
||||
<string name="GroupDescriptionDialog__group_description">Gruppebeskrivelse</string>
|
||||
|
||||
<!-- QualitySelectorBottomSheetDialog -->
|
||||
<!-- Label for our standard quality media conversion. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__standard">Standard</string>
|
||||
<!-- Description for our standard quality media conversion. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__faster_less_data">Raskere, mindre data</string>
|
||||
<!-- Label for our high quality media conversion. This has better quality than standard. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__high">Høy</string>
|
||||
<!-- Label for our high quality media conversion. This has better quality than standard. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__slower_more_data">Tregere, mer data</string>
|
||||
<!-- Title heading for our media conversion quality selector. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__media_quality">Mediekvalitet</string>
|
||||
|
||||
<!-- AppSettingsFragment -->
|
||||
<!-- String alerting user that something is wrong with their backups subscription -->
|
||||
<string name="AppSettingsFragment__renew_your_signal_backups_subscription">Forny abonnementet ditt på sikkerhetskopiering av Signal</string>
|
||||
@@ -6414,14 +6402,6 @@
|
||||
<string name="MediaReviewFragment__video_set_to_view_once">Videoen er satt til «vis én gang»</string>
|
||||
<!-- Small notification presented to the user when they set their photo to view-once mode -->
|
||||
<string name="MediaReviewFragment__photo_set_to_view_once">Bildet er satt til «vis én gang»</string>
|
||||
<!-- Small notification presented to the user when they set their video to be sent in high visual quality. -->
|
||||
<string name="MediaReviewFragment__video_set_to_high_quality">Videoen vises i høy oppløsning</string>
|
||||
<!-- Small notification presented to the user when they set their video to be sent in standard (lower than high) visual quality. -->
|
||||
<string name="MediaReviewFragment__video_set_to_standard_quality">Videoen vises i standard oppløsning</string>
|
||||
<!-- Small notification presented to the user when they set their still image to be sent in high visual quality. -->
|
||||
<string name="MediaReviewFragment__photo_set_to_high_quality">Bildet vises i høy oppløsning</string>
|
||||
<!-- Small notification presented to the user when they set their still image to be sent in standard (lower than high) visual quality. -->
|
||||
<string name="MediaReviewFragment__photo_set_to_standard_quality">Bildet vises i standard oppløsning</string>
|
||||
<!-- Accessibility label describing the add media button on the Media review screen -->
|
||||
<string name="MediaReviewFragment__add_media_accessibility_label">Legg til en mediefil</string>
|
||||
<!-- Accessibility label describing the brush and pen button on the Media review screen -->
|
||||
@@ -6440,16 +6420,6 @@
|
||||
<string name="MediaReviewFragment__send_media_accessibility_label">Send mediefilen</string>
|
||||
<!-- Accessibility label describing the finish adding a message button on the Media review screen dialog -->
|
||||
<string name="MediaReviewFragment__finish_adding_a_message_accessibility_label">Lagre meldingen</string>
|
||||
<!-- Small notification presented to the user when they set multiple media items to be sent in high visual quality. -->
|
||||
<plurals name="MediaReviewFragment__items_set_to_high_quality">
|
||||
<item quantity="one">%1$d element vises i høy oppløsning</item>
|
||||
<item quantity="other">%1$d elementer vises i høy oppløsning</item>
|
||||
</plurals>
|
||||
<!-- Small notification presented to the user when they set multiple media items to be sent in standard (lower than high) visual quality. -->
|
||||
<plurals name="MediaReviewFragment__items_set_to_standard_quality">
|
||||
<item quantity="one">%1$d element vises i standard oppløsning</item>
|
||||
<item quantity="other">%1$d elementer vises i standard oppløsning</item>
|
||||
</plurals>
|
||||
|
||||
<string name="ImageEditorHud__cancel">Avbryt</string>
|
||||
<string name="ImageEditorHud__draw">Tegn</string>
|
||||
|
||||
@@ -5652,18 +5652,6 @@
|
||||
<!-- GroupDescriptionDialog -->
|
||||
<string name="GroupDescriptionDialog__group_description">Groepsomschrijving</string>
|
||||
|
||||
<!-- QualitySelectorBottomSheetDialog -->
|
||||
<!-- Label for our standard quality media conversion. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__standard">Standaard</string>
|
||||
<!-- Description for our standard quality media conversion. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__faster_less_data">Sneller, minder dataverbruik</string>
|
||||
<!-- Label for our high quality media conversion. This has better quality than standard. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__high">Hoog</string>
|
||||
<!-- Label for our high quality media conversion. This has better quality than standard. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__slower_more_data">Langzamer, meer dataverbruik</string>
|
||||
<!-- Title heading for our media conversion quality selector. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__media_quality">Mediakwaliteit</string>
|
||||
|
||||
<!-- AppSettingsFragment -->
|
||||
<!-- String alerting user that something is wrong with their backups subscription -->
|
||||
<string name="AppSettingsFragment__renew_your_signal_backups_subscription">Vernieuw je Signal Secure Backups-abonnement</string>
|
||||
@@ -6414,14 +6402,6 @@
|
||||
<string name="MediaReviewFragment__video_set_to_view_once">Video ingesteld op eenmalige weergave</string>
|
||||
<!-- Small notification presented to the user when they set their photo to view-once mode -->
|
||||
<string name="MediaReviewFragment__photo_set_to_view_once">Foto ingesteld op eenmalige weergave</string>
|
||||
<!-- Small notification presented to the user when they set their video to be sent in high visual quality. -->
|
||||
<string name="MediaReviewFragment__video_set_to_high_quality">Video ingesteld op hoge kwaliteit</string>
|
||||
<!-- Small notification presented to the user when they set their video to be sent in standard (lower than high) visual quality. -->
|
||||
<string name="MediaReviewFragment__video_set_to_standard_quality">Video ingesteld op standaardkwaliteit</string>
|
||||
<!-- Small notification presented to the user when they set their still image to be sent in high visual quality. -->
|
||||
<string name="MediaReviewFragment__photo_set_to_high_quality">Foto ingesteld op hoge kwaliteit</string>
|
||||
<!-- Small notification presented to the user when they set their still image to be sent in standard (lower than high) visual quality. -->
|
||||
<string name="MediaReviewFragment__photo_set_to_standard_quality">Foto ingesteld op standaardkwaliteit</string>
|
||||
<!-- Accessibility label describing the add media button on the Media review screen -->
|
||||
<string name="MediaReviewFragment__add_media_accessibility_label">Een mediabestand toevoegen</string>
|
||||
<!-- Accessibility label describing the brush and pen button on the Media review screen -->
|
||||
@@ -6440,16 +6420,6 @@
|
||||
<string name="MediaReviewFragment__send_media_accessibility_label">Mediabestand versturen</string>
|
||||
<!-- Accessibility label describing the finish adding a message button on the Media review screen dialog -->
|
||||
<string name="MediaReviewFragment__finish_adding_a_message_accessibility_label">Bericht toevoegen voltooien</string>
|
||||
<!-- Small notification presented to the user when they set multiple media items to be sent in high visual quality. -->
|
||||
<plurals name="MediaReviewFragment__items_set_to_high_quality">
|
||||
<item quantity="one">%1$d item ingesteld op hoge kwaliteit</item>
|
||||
<item quantity="other">%1$d items ingesteld op hoge kwaliteit</item>
|
||||
</plurals>
|
||||
<!-- Small notification presented to the user when they set multiple media items to be sent in standard (lower than high) visual quality. -->
|
||||
<plurals name="MediaReviewFragment__items_set_to_standard_quality">
|
||||
<item quantity="one">%1$d item ingesteld op standaardkwaliteit</item>
|
||||
<item quantity="other">%1$d items ingesteld op standaardkwaliteit</item>
|
||||
</plurals>
|
||||
|
||||
<string name="ImageEditorHud__cancel">Annuleren</string>
|
||||
<string name="ImageEditorHud__draw">Tekenen</string>
|
||||
|
||||
@@ -5652,18 +5652,6 @@
|
||||
<!-- GroupDescriptionDialog -->
|
||||
<string name="GroupDescriptionDialog__group_description">ਗਰੁੱਪ ਬਾਰੇ ਜਾਣਕਾਰੀ</string>
|
||||
|
||||
<!-- QualitySelectorBottomSheetDialog -->
|
||||
<!-- Label for our standard quality media conversion. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__standard">ਸਟੈਂਡਰਡ</string>
|
||||
<!-- Description for our standard quality media conversion. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__faster_less_data">ਵੱਧ ਤੇਜ਼, ਘੱਟ ਡਾਟਾ</string>
|
||||
<!-- Label for our high quality media conversion. This has better quality than standard. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__high">ਉੱਚਾ</string>
|
||||
<!-- Label for our high quality media conversion. This has better quality than standard. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__slower_more_data">ਹੌਲੀ, ਵੱਧ ਡਾਟਾ</string>
|
||||
<!-- Title heading for our media conversion quality selector. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__media_quality">ਮੀਡੀਆ ਕੁਆਲਟੀ</string>
|
||||
|
||||
<!-- AppSettingsFragment -->
|
||||
<!-- String alerting user that something is wrong with their backups subscription -->
|
||||
<string name="AppSettingsFragment__renew_your_signal_backups_subscription">ਆਪਣੀ Signal ਸਿਕਿਓਰ ਬੈਕਅੱਪ ਸਬਸਕ੍ਰਿਪਸ਼ਨ ਨੂੰ ਰੀਨਿਊ ਕਰੋ</string>
|
||||
@@ -6414,14 +6402,6 @@
|
||||
<string name="MediaReviewFragment__video_set_to_view_once">ਵੀਡੀਓ ਨੂੰ ਇੱਕ ਵਾਰ ਦੇਖਣ ਲਈ ਸੈੱਟ ਕੀਤਾ ਗਿਆ</string>
|
||||
<!-- Small notification presented to the user when they set their photo to view-once mode -->
|
||||
<string name="MediaReviewFragment__photo_set_to_view_once">ਫ਼ੋਟੋ ਨੂੰ ਇੱਕ ਵਾਰ ਦੇਖਣ ਲਈ ਸੈੱਟ ਕੀਤਾ ਗਿਆ</string>
|
||||
<!-- Small notification presented to the user when they set their video to be sent in high visual quality. -->
|
||||
<string name="MediaReviewFragment__video_set_to_high_quality">ਵੀਡੀਓ ਨੂੰ ਉੱਚ ਕੁਆਲਿਟੀ \'ਤੇ ਸੈੱਟ ਕੀਤਾ ਗਿਆ</string>
|
||||
<!-- Small notification presented to the user when they set their video to be sent in standard (lower than high) visual quality. -->
|
||||
<string name="MediaReviewFragment__video_set_to_standard_quality">ਵੀਡੀਓ ਨੂੰ ਸਟੈਂਡਰਡ ਕੁਆਲਿਟੀ \'ਤੇ ਸੈੱਟ ਕੀਤਾ ਗਿਆ</string>
|
||||
<!-- Small notification presented to the user when they set their still image to be sent in high visual quality. -->
|
||||
<string name="MediaReviewFragment__photo_set_to_high_quality">ਫ਼ੋਟੋ ਨੂੰ ਉੱਚ ਕੁਆਲਿਟੀ \'ਤੇ ਸੈੱਟ ਕੀਤਾ ਗਿਆ</string>
|
||||
<!-- Small notification presented to the user when they set their still image to be sent in standard (lower than high) visual quality. -->
|
||||
<string name="MediaReviewFragment__photo_set_to_standard_quality">ਫ਼ੋਟੋ ਨੂੰ ਸਟੈਂਡਰਡ ਕੁਆਲਿਟੀ \'ਤੇ ਸੈੱਟ ਕੀਤਾ ਗਿਆ</string>
|
||||
<!-- Accessibility label describing the add media button on the Media review screen -->
|
||||
<string name="MediaReviewFragment__add_media_accessibility_label">ਮੀਡੀਆ ਸ਼ਾਮਲ ਕਰੋ</string>
|
||||
<!-- Accessibility label describing the brush and pen button on the Media review screen -->
|
||||
@@ -6440,16 +6420,6 @@
|
||||
<string name="MediaReviewFragment__send_media_accessibility_label">ਮੀਡੀਆ ਭੇਜੋ</string>
|
||||
<!-- Accessibility label describing the finish adding a message button on the Media review screen dialog -->
|
||||
<string name="MediaReviewFragment__finish_adding_a_message_accessibility_label">ਸੁਨੇਹਾ ਸ਼ਾਮਲ ਕਰਨਾ ਪੂਰਾ ਕਰੋ</string>
|
||||
<!-- Small notification presented to the user when they set multiple media items to be sent in high visual quality. -->
|
||||
<plurals name="MediaReviewFragment__items_set_to_high_quality">
|
||||
<item quantity="one">%1$d ਆਈਟਮ ਨੂੰ ਉੱਚ ਕੁਆਲਿਟੀ \'ਤੇ ਸੈੱਟ ਕੀਤਾ ਗਿਆ</item>
|
||||
<item quantity="other">%1$d ਆਈਟਮਾਂ ਨੂੰ ਉੱਚ ਕੁਆਲਿਟੀ \'ਤੇ ਸੈੱਟ ਕੀਤਾ ਗਿਆ</item>
|
||||
</plurals>
|
||||
<!-- Small notification presented to the user when they set multiple media items to be sent in standard (lower than high) visual quality. -->
|
||||
<plurals name="MediaReviewFragment__items_set_to_standard_quality">
|
||||
<item quantity="one">%1$d ਆਈਟਮ ਨੂੰ ਸਟੈਂਡਰਡ ਕੁਆਲਿਟੀ \'ਤੇ ਸੈੱਟ ਕੀਤਾ ਗਿਆ</item>
|
||||
<item quantity="other">%1$d ਆਈਟਮਾਂ ਨੂੰ ਸਟੈਂਡਰਡ ਕੁਆਲਿਟੀ \'ਤੇ ਸੈੱਟ ਕੀਤਾ ਗਿਆ</item>
|
||||
</plurals>
|
||||
|
||||
<string name="ImageEditorHud__cancel">ਰੱਦ ਕਰੋ</string>
|
||||
<string name="ImageEditorHud__draw">ਖਿੱਚੋ</string>
|
||||
|
||||
@@ -5938,18 +5938,6 @@
|
||||
<!-- GroupDescriptionDialog -->
|
||||
<string name="GroupDescriptionDialog__group_description">Opis grupy</string>
|
||||
|
||||
<!-- QualitySelectorBottomSheetDialog -->
|
||||
<!-- Label for our standard quality media conversion. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__standard">Standardowa</string>
|
||||
<!-- Description for our standard quality media conversion. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__faster_less_data">Szybciej, mniejsze zużycie danych</string>
|
||||
<!-- Label for our high quality media conversion. This has better quality than standard. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__high">Wysoka</string>
|
||||
<!-- Label for our high quality media conversion. This has better quality than standard. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__slower_more_data">Wolniej, większe zużycie danych</string>
|
||||
<!-- Title heading for our media conversion quality selector. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__media_quality">Jakość multimediów</string>
|
||||
|
||||
<!-- AppSettingsFragment -->
|
||||
<!-- String alerting user that something is wrong with their backups subscription -->
|
||||
<string name="AppSettingsFragment__renew_your_signal_backups_subscription">Odnów subskrypcję bezpiecznych kopii zapasowych Signal</string>
|
||||
@@ -6734,14 +6722,6 @@
|
||||
<string name="MediaReviewFragment__video_set_to_view_once">Wideo do jednorazowego wyświetlenia</string>
|
||||
<!-- Small notification presented to the user when they set their photo to view-once mode -->
|
||||
<string name="MediaReviewFragment__photo_set_to_view_once">Zdjęcie do jednorazowego wyświetlenia</string>
|
||||
<!-- Small notification presented to the user when they set their video to be sent in high visual quality. -->
|
||||
<string name="MediaReviewFragment__video_set_to_high_quality">Wideo w wysokiej jakości</string>
|
||||
<!-- Small notification presented to the user when they set their video to be sent in standard (lower than high) visual quality. -->
|
||||
<string name="MediaReviewFragment__video_set_to_standard_quality">Wideo w standardowej jakości</string>
|
||||
<!-- Small notification presented to the user when they set their still image to be sent in high visual quality. -->
|
||||
<string name="MediaReviewFragment__photo_set_to_high_quality">Zdjęcie w wysokiej jakości</string>
|
||||
<!-- Small notification presented to the user when they set their still image to be sent in standard (lower than high) visual quality. -->
|
||||
<string name="MediaReviewFragment__photo_set_to_standard_quality">Zdjęcie w standardowej jakości</string>
|
||||
<!-- Accessibility label describing the add media button on the Media review screen -->
|
||||
<string name="MediaReviewFragment__add_media_accessibility_label">Dodaj multimedia</string>
|
||||
<!-- Accessibility label describing the brush and pen button on the Media review screen -->
|
||||
@@ -6760,20 +6740,6 @@
|
||||
<string name="MediaReviewFragment__send_media_accessibility_label">Wyślij multimedia</string>
|
||||
<!-- Accessibility label describing the finish adding a message button on the Media review screen dialog -->
|
||||
<string name="MediaReviewFragment__finish_adding_a_message_accessibility_label">Zakończ dodawanie wiadomości</string>
|
||||
<!-- Small notification presented to the user when they set multiple media items to be sent in high visual quality. -->
|
||||
<plurals name="MediaReviewFragment__items_set_to_high_quality">
|
||||
<item quantity="one">%1$d element w wysokiej jakości</item>
|
||||
<item quantity="few">%1$d elementy w wysokiej jakości</item>
|
||||
<item quantity="many">%1$d elementów w wysokiej jakości</item>
|
||||
<item quantity="other">%1$d elementu w wysokiej jakości</item>
|
||||
</plurals>
|
||||
<!-- Small notification presented to the user when they set multiple media items to be sent in standard (lower than high) visual quality. -->
|
||||
<plurals name="MediaReviewFragment__items_set_to_standard_quality">
|
||||
<item quantity="one">%1$d element w standardowej jakości</item>
|
||||
<item quantity="few">%1$d elementy w standardowej jakości</item>
|
||||
<item quantity="many">%1$d elementów w standardowej jakości</item>
|
||||
<item quantity="other">%1$d elementu w standardowej jakości</item>
|
||||
</plurals>
|
||||
|
||||
<string name="ImageEditorHud__cancel">Anuluj</string>
|
||||
<string name="ImageEditorHud__draw">Rysuj</string>
|
||||
|
||||
@@ -5652,18 +5652,6 @@
|
||||
<!-- GroupDescriptionDialog -->
|
||||
<string name="GroupDescriptionDialog__group_description">Descrição do grupo</string>
|
||||
|
||||
<!-- QualitySelectorBottomSheetDialog -->
|
||||
<!-- Label for our standard quality media conversion. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__standard">Padrão</string>
|
||||
<!-- Description for our standard quality media conversion. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__faster_less_data">Mais rápido, tamanho menor</string>
|
||||
<!-- Label for our high quality media conversion. This has better quality than standard. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__high">Alta</string>
|
||||
<!-- Label for our high quality media conversion. This has better quality than standard. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__slower_more_data">Mais lento, tamanho maior</string>
|
||||
<!-- Title heading for our media conversion quality selector. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__media_quality">Qualidade das fotos</string>
|
||||
|
||||
<!-- AppSettingsFragment -->
|
||||
<!-- String alerting user that something is wrong with their backups subscription -->
|
||||
<string name="AppSettingsFragment__renew_your_signal_backups_subscription">Renove sua assinatura dos backups seguros do Signal</string>
|
||||
@@ -6414,14 +6402,6 @@
|
||||
<string name="MediaReviewFragment__video_set_to_view_once">Vídeo configurado para visualização única</string>
|
||||
<!-- Small notification presented to the user when they set their photo to view-once mode -->
|
||||
<string name="MediaReviewFragment__photo_set_to_view_once">Foto definida para visualização única</string>
|
||||
<!-- Small notification presented to the user when they set their video to be sent in high visual quality. -->
|
||||
<string name="MediaReviewFragment__video_set_to_high_quality">Vídeo configurado para alta qualidade</string>
|
||||
<!-- Small notification presented to the user when they set their video to be sent in standard (lower than high) visual quality. -->
|
||||
<string name="MediaReviewFragment__video_set_to_standard_quality">Vídeo definido com qualidade padrão</string>
|
||||
<!-- Small notification presented to the user when they set their still image to be sent in high visual quality. -->
|
||||
<string name="MediaReviewFragment__photo_set_to_high_quality">Foto configurada para alta qualidade</string>
|
||||
<!-- Small notification presented to the user when they set their still image to be sent in standard (lower than high) visual quality. -->
|
||||
<string name="MediaReviewFragment__photo_set_to_standard_quality">Foto configurada para qualidade padrão</string>
|
||||
<!-- Accessibility label describing the add media button on the Media review screen -->
|
||||
<string name="MediaReviewFragment__add_media_accessibility_label">Adicionar mídia</string>
|
||||
<!-- Accessibility label describing the brush and pen button on the Media review screen -->
|
||||
@@ -6440,16 +6420,6 @@
|
||||
<string name="MediaReviewFragment__send_media_accessibility_label">Enviar mídia</string>
|
||||
<!-- Accessibility label describing the finish adding a message button on the Media review screen dialog -->
|
||||
<string name="MediaReviewFragment__finish_adding_a_message_accessibility_label">Concluir a adição de uma mensagem</string>
|
||||
<!-- Small notification presented to the user when they set multiple media items to be sent in high visual quality. -->
|
||||
<plurals name="MediaReviewFragment__items_set_to_high_quality">
|
||||
<item quantity="one">%1$d item configurado para alta qualidade</item>
|
||||
<item quantity="other">%1$d itens configurados para alta qualidade</item>
|
||||
</plurals>
|
||||
<!-- Small notification presented to the user when they set multiple media items to be sent in standard (lower than high) visual quality. -->
|
||||
<plurals name="MediaReviewFragment__items_set_to_standard_quality">
|
||||
<item quantity="one">%1$d item configurado para alta qualidade</item>
|
||||
<item quantity="other">%1$d itens configurados para alta qualidade</item>
|
||||
</plurals>
|
||||
|
||||
<string name="ImageEditorHud__cancel">Cancelar</string>
|
||||
<string name="ImageEditorHud__draw">Desenhar</string>
|
||||
|
||||
@@ -5652,18 +5652,6 @@
|
||||
<!-- GroupDescriptionDialog -->
|
||||
<string name="GroupDescriptionDialog__group_description">Descrição do grupo</string>
|
||||
|
||||
<!-- QualitySelectorBottomSheetDialog -->
|
||||
<!-- Label for our standard quality media conversion. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__standard">Standard</string>
|
||||
<!-- Description for our standard quality media conversion. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__faster_less_data">Mais rápido, menos dados</string>
|
||||
<!-- Label for our high quality media conversion. This has better quality than standard. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__high">Elevada</string>
|
||||
<!-- Label for our high quality media conversion. This has better quality than standard. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__slower_more_data">Mais lento, mais dados</string>
|
||||
<!-- Title heading for our media conversion quality selector. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__media_quality">Qualidade média</string>
|
||||
|
||||
<!-- AppSettingsFragment -->
|
||||
<!-- String alerting user that something is wrong with their backups subscription -->
|
||||
<string name="AppSettingsFragment__renew_your_signal_backups_subscription">Renove a sua subscrição das cópias de segurança protegidas do Signal</string>
|
||||
@@ -6414,14 +6402,6 @@
|
||||
<string name="MediaReviewFragment__video_set_to_view_once">Vídeo definido para visualização única</string>
|
||||
<!-- Small notification presented to the user when they set their photo to view-once mode -->
|
||||
<string name="MediaReviewFragment__photo_set_to_view_once">Foto definida para visualização única</string>
|
||||
<!-- Small notification presented to the user when they set their video to be sent in high visual quality. -->
|
||||
<string name="MediaReviewFragment__video_set_to_high_quality">Vídeo definido para qualidade alta</string>
|
||||
<!-- Small notification presented to the user when they set their video to be sent in standard (lower than high) visual quality. -->
|
||||
<string name="MediaReviewFragment__video_set_to_standard_quality">Vídeo definido para qualidade padrão</string>
|
||||
<!-- Small notification presented to the user when they set their still image to be sent in high visual quality. -->
|
||||
<string name="MediaReviewFragment__photo_set_to_high_quality">Foto definida para qualidade alta</string>
|
||||
<!-- Small notification presented to the user when they set their still image to be sent in standard (lower than high) visual quality. -->
|
||||
<string name="MediaReviewFragment__photo_set_to_standard_quality">Foto definida para qualidade padrão</string>
|
||||
<!-- Accessibility label describing the add media button on the Media review screen -->
|
||||
<string name="MediaReviewFragment__add_media_accessibility_label">Adicionar ficheiro multimédia</string>
|
||||
<!-- Accessibility label describing the brush and pen button on the Media review screen -->
|
||||
@@ -6440,16 +6420,6 @@
|
||||
<string name="MediaReviewFragment__send_media_accessibility_label">Enviar ficheiro multimédia</string>
|
||||
<!-- Accessibility label describing the finish adding a message button on the Media review screen dialog -->
|
||||
<string name="MediaReviewFragment__finish_adding_a_message_accessibility_label">Terminar de adicionar uma mensagem</string>
|
||||
<!-- Small notification presented to the user when they set multiple media items to be sent in high visual quality. -->
|
||||
<plurals name="MediaReviewFragment__items_set_to_high_quality">
|
||||
<item quantity="one">%1$d item definido para qualidade alta</item>
|
||||
<item quantity="other">%1$d itens definidos para qualidade alta</item>
|
||||
</plurals>
|
||||
<!-- Small notification presented to the user when they set multiple media items to be sent in standard (lower than high) visual quality. -->
|
||||
<plurals name="MediaReviewFragment__items_set_to_standard_quality">
|
||||
<item quantity="one">%1$d item definido para qualidade padrão</item>
|
||||
<item quantity="other">%1$d itens definidos para qualidade padrão</item>
|
||||
</plurals>
|
||||
|
||||
<string name="ImageEditorHud__cancel">Cancelar</string>
|
||||
<string name="ImageEditorHud__draw">Desenhar</string>
|
||||
|
||||
@@ -5795,18 +5795,6 @@
|
||||
<!-- GroupDescriptionDialog -->
|
||||
<string name="GroupDescriptionDialog__group_description">Descriere grup</string>
|
||||
|
||||
<!-- QualitySelectorBottomSheetDialog -->
|
||||
<!-- Label for our standard quality media conversion. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__standard">Standard</string>
|
||||
<!-- Description for our standard quality media conversion. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__faster_less_data">Mai rapid, mai puține date</string>
|
||||
<!-- Label for our high quality media conversion. This has better quality than standard. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__high">Mare</string>
|
||||
<!-- Label for our high quality media conversion. This has better quality than standard. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__slower_more_data">Mai lent, mai multe date</string>
|
||||
<!-- Title heading for our media conversion quality selector. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__media_quality">Calitate Media</string>
|
||||
|
||||
<!-- AppSettingsFragment -->
|
||||
<!-- String alerting user that something is wrong with their backups subscription -->
|
||||
<string name="AppSettingsFragment__renew_your_signal_backups_subscription">Reînnoiește-ți abonamentul Backup-uri securizate Signal</string>
|
||||
@@ -6574,14 +6562,6 @@
|
||||
<string name="MediaReviewFragment__video_set_to_view_once">Videoclip setat pentru a fi vizualizat o singură dată</string>
|
||||
<!-- Small notification presented to the user when they set their photo to view-once mode -->
|
||||
<string name="MediaReviewFragment__photo_set_to_view_once">Fotografie setată pentru a fi vizualizată o dată</string>
|
||||
<!-- Small notification presented to the user when they set their video to be sent in high visual quality. -->
|
||||
<string name="MediaReviewFragment__video_set_to_high_quality">Videoclip setat la calitate înaltă</string>
|
||||
<!-- Small notification presented to the user when they set their video to be sent in standard (lower than high) visual quality. -->
|
||||
<string name="MediaReviewFragment__video_set_to_standard_quality">Video setat la calitate standard</string>
|
||||
<!-- Small notification presented to the user when they set their still image to be sent in high visual quality. -->
|
||||
<string name="MediaReviewFragment__photo_set_to_high_quality">Fotografie setată la calitate înaltă</string>
|
||||
<!-- Small notification presented to the user when they set their still image to be sent in standard (lower than high) visual quality. -->
|
||||
<string name="MediaReviewFragment__photo_set_to_standard_quality">Fotografie setată la calitate standard</string>
|
||||
<!-- Accessibility label describing the add media button on the Media review screen -->
|
||||
<string name="MediaReviewFragment__add_media_accessibility_label">Adaugă un fișier media</string>
|
||||
<!-- Accessibility label describing the brush and pen button on the Media review screen -->
|
||||
@@ -6600,18 +6580,6 @@
|
||||
<string name="MediaReviewFragment__send_media_accessibility_label">Trimite fișier media</string>
|
||||
<!-- Accessibility label describing the finish adding a message button on the Media review screen dialog -->
|
||||
<string name="MediaReviewFragment__finish_adding_a_message_accessibility_label">Finalizează adăugarea unui mesaj</string>
|
||||
<!-- Small notification presented to the user when they set multiple media items to be sent in high visual quality. -->
|
||||
<plurals name="MediaReviewFragment__items_set_to_high_quality">
|
||||
<item quantity="one">%1$d element setat la calitate înaltă</item>
|
||||
<item quantity="few">%1$d elemente setate la calitate înaltă</item>
|
||||
<item quantity="other">%1$d de elemente setate la calitate înaltă</item>
|
||||
</plurals>
|
||||
<!-- Small notification presented to the user when they set multiple media items to be sent in standard (lower than high) visual quality. -->
|
||||
<plurals name="MediaReviewFragment__items_set_to_standard_quality">
|
||||
<item quantity="one">%1$d articol setat la calitate standard</item>
|
||||
<item quantity="few">%1$d articole setate la calitate standard</item>
|
||||
<item quantity="other">%1$d de articole setate la calitate standard</item>
|
||||
</plurals>
|
||||
|
||||
<string name="ImageEditorHud__cancel">Anulare</string>
|
||||
<string name="ImageEditorHud__draw">Desenează</string>
|
||||
|
||||
@@ -5938,18 +5938,6 @@
|
||||
<!-- GroupDescriptionDialog -->
|
||||
<string name="GroupDescriptionDialog__group_description">Описание группы</string>
|
||||
|
||||
<!-- QualitySelectorBottomSheetDialog -->
|
||||
<!-- Label for our standard quality media conversion. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__standard">Стандартное</string>
|
||||
<!-- Description for our standard quality media conversion. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__faster_less_data">Быстрее, меньше данных</string>
|
||||
<!-- Label for our high quality media conversion. This has better quality than standard. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__high">Высокое</string>
|
||||
<!-- Label for our high quality media conversion. This has better quality than standard. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__slower_more_data">Медленнее, больше данных</string>
|
||||
<!-- Title heading for our media conversion quality selector. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__media_quality">Качество медиа</string>
|
||||
|
||||
<!-- AppSettingsFragment -->
|
||||
<!-- String alerting user that something is wrong with their backups subscription -->
|
||||
<string name="AppSettingsFragment__renew_your_signal_backups_subscription">Продлите подписку на безопасное резервное копирование Signal Backups</string>
|
||||
@@ -6734,14 +6722,6 @@
|
||||
<string name="MediaReviewFragment__video_set_to_view_once">Видео для однократного просмотра</string>
|
||||
<!-- Small notification presented to the user when they set their photo to view-once mode -->
|
||||
<string name="MediaReviewFragment__photo_set_to_view_once">Фото для однократного просмотра</string>
|
||||
<!-- Small notification presented to the user when they set their video to be sent in high visual quality. -->
|
||||
<string name="MediaReviewFragment__video_set_to_high_quality">Высокое качество видео</string>
|
||||
<!-- Small notification presented to the user when they set their video to be sent in standard (lower than high) visual quality. -->
|
||||
<string name="MediaReviewFragment__video_set_to_standard_quality">Стандартное качество видео</string>
|
||||
<!-- Small notification presented to the user when they set their still image to be sent in high visual quality. -->
|
||||
<string name="MediaReviewFragment__photo_set_to_high_quality">Высокое качество фото</string>
|
||||
<!-- Small notification presented to the user when they set their still image to be sent in standard (lower than high) visual quality. -->
|
||||
<string name="MediaReviewFragment__photo_set_to_standard_quality">Стандартное качество фото</string>
|
||||
<!-- Accessibility label describing the add media button on the Media review screen -->
|
||||
<string name="MediaReviewFragment__add_media_accessibility_label">Добавить медиафайлы</string>
|
||||
<!-- Accessibility label describing the brush and pen button on the Media review screen -->
|
||||
@@ -6760,20 +6740,6 @@
|
||||
<string name="MediaReviewFragment__send_media_accessibility_label">Отправить медиафайлы</string>
|
||||
<!-- Accessibility label describing the finish adding a message button on the Media review screen dialog -->
|
||||
<string name="MediaReviewFragment__finish_adding_a_message_accessibility_label">Завершить добавление сообщения</string>
|
||||
<!-- Small notification presented to the user when they set multiple media items to be sent in high visual quality. -->
|
||||
<plurals name="MediaReviewFragment__items_set_to_high_quality">
|
||||
<item quantity="one">%1$d файл высокого качества</item>
|
||||
<item quantity="few">%1$d файла высокого качества</item>
|
||||
<item quantity="many">%1$d файлов высокого качества</item>
|
||||
<item quantity="other">%1$d файла высокого качества</item>
|
||||
</plurals>
|
||||
<!-- Small notification presented to the user when they set multiple media items to be sent in standard (lower than high) visual quality. -->
|
||||
<plurals name="MediaReviewFragment__items_set_to_standard_quality">
|
||||
<item quantity="one">%1$d файл стандартного качества</item>
|
||||
<item quantity="few">%1$d файла стандартного качества</item>
|
||||
<item quantity="many">%1$d файлов стандартного качества</item>
|
||||
<item quantity="other">%1$d файла стандартного качества</item>
|
||||
</plurals>
|
||||
|
||||
<string name="ImageEditorHud__cancel">Отменить</string>
|
||||
<string name="ImageEditorHud__draw">Нарисовать</string>
|
||||
|
||||
@@ -5938,18 +5938,6 @@
|
||||
<!-- GroupDescriptionDialog -->
|
||||
<string name="GroupDescriptionDialog__group_description">Popis skupiny</string>
|
||||
|
||||
<!-- QualitySelectorBottomSheetDialog -->
|
||||
<!-- Label for our standard quality media conversion. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__standard">Štandardné</string>
|
||||
<!-- Description for our standard quality media conversion. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__faster_less_data">Rýchlejšie, menej dát</string>
|
||||
<!-- Label for our high quality media conversion. This has better quality than standard. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__high">Vysoká</string>
|
||||
<!-- Label for our high quality media conversion. This has better quality than standard. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__slower_more_data">Pomalšie, viac dát</string>
|
||||
<!-- Title heading for our media conversion quality selector. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__media_quality">Kvalita médií</string>
|
||||
|
||||
<!-- AppSettingsFragment -->
|
||||
<!-- String alerting user that something is wrong with their backups subscription -->
|
||||
<string name="AppSettingsFragment__renew_your_signal_backups_subscription">Obnovte si predplatné bezpečných Záloh Signal</string>
|
||||
@@ -6734,14 +6722,6 @@
|
||||
<string name="MediaReviewFragment__video_set_to_view_once">Video je nastavené na jedno pozretie</string>
|
||||
<!-- Small notification presented to the user when they set their photo to view-once mode -->
|
||||
<string name="MediaReviewFragment__photo_set_to_view_once">Fotka je nastavená na jedno pozretie</string>
|
||||
<!-- Small notification presented to the user when they set their video to be sent in high visual quality. -->
|
||||
<string name="MediaReviewFragment__video_set_to_high_quality">Video je nastavené na vysokú kvalitu</string>
|
||||
<!-- Small notification presented to the user when they set their video to be sent in standard (lower than high) visual quality. -->
|
||||
<string name="MediaReviewFragment__video_set_to_standard_quality">Video je nastavené na štandardnú kvalitu</string>
|
||||
<!-- Small notification presented to the user when they set their still image to be sent in high visual quality. -->
|
||||
<string name="MediaReviewFragment__photo_set_to_high_quality">Fotka je nastavená na vysokú kvalitu</string>
|
||||
<!-- Small notification presented to the user when they set their still image to be sent in standard (lower than high) visual quality. -->
|
||||
<string name="MediaReviewFragment__photo_set_to_standard_quality">Fotka je nastavená na štandardnú kvalitu</string>
|
||||
<!-- Accessibility label describing the add media button on the Media review screen -->
|
||||
<string name="MediaReviewFragment__add_media_accessibility_label">Pridať médium</string>
|
||||
<!-- Accessibility label describing the brush and pen button on the Media review screen -->
|
||||
@@ -6760,20 +6740,6 @@
|
||||
<string name="MediaReviewFragment__send_media_accessibility_label">Odoslať médiá</string>
|
||||
<!-- Accessibility label describing the finish adding a message button on the Media review screen dialog -->
|
||||
<string name="MediaReviewFragment__finish_adding_a_message_accessibility_label">Dokončiť pridávanie správy</string>
|
||||
<!-- Small notification presented to the user when they set multiple media items to be sent in high visual quality. -->
|
||||
<plurals name="MediaReviewFragment__items_set_to_high_quality">
|
||||
<item quantity="one">%1$d položka je nastavená na vysokú kvalitu</item>
|
||||
<item quantity="few">%1$d položky sú nastavené na vysokú kvalitu</item>
|
||||
<item quantity="many">%1$d položky je nastavenej na vysokú kvalitu</item>
|
||||
<item quantity="other">%1$d položiek je nastavených na vysokú kvalitu</item>
|
||||
</plurals>
|
||||
<!-- Small notification presented to the user when they set multiple media items to be sent in standard (lower than high) visual quality. -->
|
||||
<plurals name="MediaReviewFragment__items_set_to_standard_quality">
|
||||
<item quantity="one">%1$d položka je nastavená na štandardnú kvalitu</item>
|
||||
<item quantity="few">%1$d položky sú nastavené na štandardnú kvalitu</item>
|
||||
<item quantity="many">%1$d položky je nastavenej na štandardnú kvalitu</item>
|
||||
<item quantity="other">%1$d položiek je nastavených na štandardnú kvalitu</item>
|
||||
</plurals>
|
||||
|
||||
<string name="ImageEditorHud__cancel">Zrušiť</string>
|
||||
<string name="ImageEditorHud__draw">Nakreslite</string>
|
||||
|
||||
@@ -5938,18 +5938,6 @@
|
||||
<!-- GroupDescriptionDialog -->
|
||||
<string name="GroupDescriptionDialog__group_description">Opis skupine</string>
|
||||
|
||||
<!-- QualitySelectorBottomSheetDialog -->
|
||||
<!-- Label for our standard quality media conversion. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__standard">Standardna</string>
|
||||
<!-- Description for our standard quality media conversion. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__faster_less_data">Hitreje, manj podatkov</string>
|
||||
<!-- Label for our high quality media conversion. This has better quality than standard. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__high">Visoka</string>
|
||||
<!-- Label for our high quality media conversion. This has better quality than standard. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__slower_more_data">Počasneje, več podatkov</string>
|
||||
<!-- Title heading for our media conversion quality selector. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__media_quality">Kvaliteta medisjkih datotek</string>
|
||||
|
||||
<!-- AppSettingsFragment -->
|
||||
<!-- String alerting user that something is wrong with their backups subscription -->
|
||||
<string name="AppSettingsFragment__renew_your_signal_backups_subscription">Podaljšajte naročnino na Varne varnostne kopije Signal</string>
|
||||
@@ -6734,14 +6722,6 @@
|
||||
<string name="MediaReviewFragment__video_set_to_view_once">Videoposnetek je nastavljen za enkratni ogled</string>
|
||||
<!-- Small notification presented to the user when they set their photo to view-once mode -->
|
||||
<string name="MediaReviewFragment__photo_set_to_view_once">Fotografija je nastavljena za enkratni ogled</string>
|
||||
<!-- Small notification presented to the user when they set their video to be sent in high visual quality. -->
|
||||
<string name="MediaReviewFragment__video_set_to_high_quality">Videoposnetek je nastavljen na visoko kakovost</string>
|
||||
<!-- Small notification presented to the user when they set their video to be sent in standard (lower than high) visual quality. -->
|
||||
<string name="MediaReviewFragment__video_set_to_standard_quality">Videoposnetek je nastavljen na standardno kakovost</string>
|
||||
<!-- Small notification presented to the user when they set their still image to be sent in high visual quality. -->
|
||||
<string name="MediaReviewFragment__photo_set_to_high_quality">Fotografija je nastavljena na visoko kakovost</string>
|
||||
<!-- Small notification presented to the user when they set their still image to be sent in standard (lower than high) visual quality. -->
|
||||
<string name="MediaReviewFragment__photo_set_to_standard_quality">Fotografija je nastavljena na standardno kakovost</string>
|
||||
<!-- Accessibility label describing the add media button on the Media review screen -->
|
||||
<string name="MediaReviewFragment__add_media_accessibility_label">Dodajanje medija</string>
|
||||
<!-- Accessibility label describing the brush and pen button on the Media review screen -->
|
||||
@@ -6760,20 +6740,6 @@
|
||||
<string name="MediaReviewFragment__send_media_accessibility_label">Pošlji medij</string>
|
||||
<!-- Accessibility label describing the finish adding a message button on the Media review screen dialog -->
|
||||
<string name="MediaReviewFragment__finish_adding_a_message_accessibility_label">Dokončanje dodajanja sporočila</string>
|
||||
<!-- Small notification presented to the user when they set multiple media items to be sent in high visual quality. -->
|
||||
<plurals name="MediaReviewFragment__items_set_to_high_quality">
|
||||
<item quantity="one">%1$d medij je nastavljen na visoko kakovost</item>
|
||||
<item quantity="two">%1$d medija sta nastavljena na visoko kakovost</item>
|
||||
<item quantity="few">%1$d mediji so nastavljeni na visoko kakovost</item>
|
||||
<item quantity="other">%1$d medijev je nastavljenih na visoko kakovost</item>
|
||||
</plurals>
|
||||
<!-- Small notification presented to the user when they set multiple media items to be sent in standard (lower than high) visual quality. -->
|
||||
<plurals name="MediaReviewFragment__items_set_to_standard_quality">
|
||||
<item quantity="one">%1$d medij je nastavljen na standardno kakovost</item>
|
||||
<item quantity="two">%1$d medija sta nastavljena na standardno kakovost</item>
|
||||
<item quantity="few">%1$d mediji so nastavljeni na standardno kakovost</item>
|
||||
<item quantity="other">%1$d medijev je nastavljenih na standardno kakovost</item>
|
||||
</plurals>
|
||||
|
||||
<string name="ImageEditorHud__cancel">Prekliči</string>
|
||||
<string name="ImageEditorHud__draw">Riši</string>
|
||||
|
||||
@@ -5652,18 +5652,6 @@
|
||||
<!-- GroupDescriptionDialog -->
|
||||
<string name="GroupDescriptionDialog__group_description">Përshkrim grupi</string>
|
||||
|
||||
<!-- QualitySelectorBottomSheetDialog -->
|
||||
<!-- Label for our standard quality media conversion. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__standard">Standard</string>
|
||||
<!-- Description for our standard quality media conversion. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__faster_less_data">Më i shpejtë, më pak të dhëna</string>
|
||||
<!-- Label for our high quality media conversion. This has better quality than standard. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__high">Lartësi</string>
|
||||
<!-- Label for our high quality media conversion. This has better quality than standard. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__slower_more_data">Më i ngadaltë, më tepër të dhëna</string>
|
||||
<!-- Title heading for our media conversion quality selector. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__media_quality">Cilësi media</string>
|
||||
|
||||
<!-- AppSettingsFragment -->
|
||||
<!-- String alerting user that something is wrong with their backups subscription -->
|
||||
<string name="AppSettingsFragment__renew_your_signal_backups_subscription">Rinovo abonimin te \"Kopjeruajtjet e sigurta\" të Signal</string>
|
||||
@@ -6414,14 +6402,6 @@
|
||||
<string name="MediaReviewFragment__video_set_to_view_once">Videoja është vendosur për t\'u parë vetëm një herë</string>
|
||||
<!-- Small notification presented to the user when they set their photo to view-once mode -->
|
||||
<string name="MediaReviewFragment__photo_set_to_view_once">Foto e vendosur për t\'u parë vetëm një herë</string>
|
||||
<!-- Small notification presented to the user when they set their video to be sent in high visual quality. -->
|
||||
<string name="MediaReviewFragment__video_set_to_high_quality">Video e vendosur në cilësi të lartë</string>
|
||||
<!-- Small notification presented to the user when they set their video to be sent in standard (lower than high) visual quality. -->
|
||||
<string name="MediaReviewFragment__video_set_to_standard_quality">Video e vendosur në cilësi standarde</string>
|
||||
<!-- Small notification presented to the user when they set their still image to be sent in high visual quality. -->
|
||||
<string name="MediaReviewFragment__photo_set_to_high_quality">Foto e vendosur në cilësi të lartë</string>
|
||||
<!-- Small notification presented to the user when they set their still image to be sent in standard (lower than high) visual quality. -->
|
||||
<string name="MediaReviewFragment__photo_set_to_standard_quality">Foto e vendosur në cilësi standarde</string>
|
||||
<!-- Accessibility label describing the add media button on the Media review screen -->
|
||||
<string name="MediaReviewFragment__add_media_accessibility_label">Shto media</string>
|
||||
<!-- Accessibility label describing the brush and pen button on the Media review screen -->
|
||||
@@ -6440,16 +6420,6 @@
|
||||
<string name="MediaReviewFragment__send_media_accessibility_label">Dërgo media</string>
|
||||
<!-- Accessibility label describing the finish adding a message button on the Media review screen dialog -->
|
||||
<string name="MediaReviewFragment__finish_adding_a_message_accessibility_label">Përfundo shtimin e mesazhit</string>
|
||||
<!-- Small notification presented to the user when they set multiple media items to be sent in high visual quality. -->
|
||||
<plurals name="MediaReviewFragment__items_set_to_high_quality">
|
||||
<item quantity="one">%1$d artikull u vendos në cilësi të lartë</item>
|
||||
<item quantity="other">%1$d artikuj u vendosën në cilësi të lartë</item>
|
||||
</plurals>
|
||||
<!-- Small notification presented to the user when they set multiple media items to be sent in standard (lower than high) visual quality. -->
|
||||
<plurals name="MediaReviewFragment__items_set_to_standard_quality">
|
||||
<item quantity="one">%1$d artikull u vendos në cilësi standarde</item>
|
||||
<item quantity="other">%1$d artikuj u vendosën në cilësi standarde</item>
|
||||
</plurals>
|
||||
|
||||
<string name="ImageEditorHud__cancel">Anuloje</string>
|
||||
<string name="ImageEditorHud__draw">Vizatoni</string>
|
||||
|
||||
@@ -5652,18 +5652,6 @@
|
||||
<!-- GroupDescriptionDialog -->
|
||||
<string name="GroupDescriptionDialog__group_description">Опис групе</string>
|
||||
|
||||
<!-- QualitySelectorBottomSheetDialog -->
|
||||
<!-- Label for our standard quality media conversion. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__standard">Стандардни квалитет</string>
|
||||
<!-- Description for our standard quality media conversion. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__faster_less_data">Брже, мање података</string>
|
||||
<!-- Label for our high quality media conversion. This has better quality than standard. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__high">Висок квалитет</string>
|
||||
<!-- Label for our high quality media conversion. This has better quality than standard. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__slower_more_data">Спорије, више података</string>
|
||||
<!-- Title heading for our media conversion quality selector. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__media_quality">Квалитет медија</string>
|
||||
|
||||
<!-- AppSettingsFragment -->
|
||||
<!-- String alerting user that something is wrong with their backups subscription -->
|
||||
<string name="AppSettingsFragment__renew_your_signal_backups_subscription">Обновите претплату на безбедне резервне копије Signal-а</string>
|
||||
@@ -6414,14 +6402,6 @@
|
||||
<string name="MediaReviewFragment__video_set_to_view_once">Видео је подешен на једнократно гледање</string>
|
||||
<!-- Small notification presented to the user when they set their photo to view-once mode -->
|
||||
<string name="MediaReviewFragment__photo_set_to_view_once">Слика је подешена на једнократно гледање</string>
|
||||
<!-- Small notification presented to the user when they set their video to be sent in high visual quality. -->
|
||||
<string name="MediaReviewFragment__video_set_to_high_quality">Видео је подешен на висок квалитет</string>
|
||||
<!-- Small notification presented to the user when they set their video to be sent in standard (lower than high) visual quality. -->
|
||||
<string name="MediaReviewFragment__video_set_to_standard_quality">Видео је подешен на стандардни квалитет</string>
|
||||
<!-- Small notification presented to the user when they set their still image to be sent in high visual quality. -->
|
||||
<string name="MediaReviewFragment__photo_set_to_high_quality">Слика је подешена на висок квалитет</string>
|
||||
<!-- Small notification presented to the user when they set their still image to be sent in standard (lower than high) visual quality. -->
|
||||
<string name="MediaReviewFragment__photo_set_to_standard_quality">Слика је подешена на стандардни квалитет</string>
|
||||
<!-- Accessibility label describing the add media button on the Media review screen -->
|
||||
<string name="MediaReviewFragment__add_media_accessibility_label">Додај медиј</string>
|
||||
<!-- Accessibility label describing the brush and pen button on the Media review screen -->
|
||||
@@ -6440,16 +6420,6 @@
|
||||
<string name="MediaReviewFragment__send_media_accessibility_label">Пошаљи медије</string>
|
||||
<!-- Accessibility label describing the finish adding a message button on the Media review screen dialog -->
|
||||
<string name="MediaReviewFragment__finish_adding_a_message_accessibility_label">Крај уношења поруке</string>
|
||||
<!-- Small notification presented to the user when they set multiple media items to be sent in high visual quality. -->
|
||||
<plurals name="MediaReviewFragment__items_set_to_high_quality">
|
||||
<item quantity="one">Ставки подешених на висок квалитет: %1$d</item>
|
||||
<item quantity="other">Ставки подешених на висок квалитет: %1$d</item>
|
||||
</plurals>
|
||||
<!-- Small notification presented to the user when they set multiple media items to be sent in standard (lower than high) visual quality. -->
|
||||
<plurals name="MediaReviewFragment__items_set_to_standard_quality">
|
||||
<item quantity="one">Ставки подешених на стандардни квалитет: %1$d</item>
|
||||
<item quantity="other">Ставки подешених на стандардни квалитет: %1$d</item>
|
||||
</plurals>
|
||||
|
||||
<string name="ImageEditorHud__cancel">Откажи</string>
|
||||
<string name="ImageEditorHud__draw">Нацртајте</string>
|
||||
|
||||
@@ -5652,18 +5652,6 @@
|
||||
<!-- GroupDescriptionDialog -->
|
||||
<string name="GroupDescriptionDialog__group_description">Gruppbeskrivning</string>
|
||||
|
||||
<!-- QualitySelectorBottomSheetDialog -->
|
||||
<!-- Label for our standard quality media conversion. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__standard">Standard</string>
|
||||
<!-- Description for our standard quality media conversion. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__faster_less_data">Snabbare, mindre data</string>
|
||||
<!-- Label for our high quality media conversion. This has better quality than standard. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__high">Hög</string>
|
||||
<!-- Label for our high quality media conversion. This has better quality than standard. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__slower_more_data">Långsammare, mera data</string>
|
||||
<!-- Title heading for our media conversion quality selector. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__media_quality">Mediekvalitet</string>
|
||||
|
||||
<!-- AppSettingsFragment -->
|
||||
<!-- String alerting user that something is wrong with their backups subscription -->
|
||||
<string name="AppSettingsFragment__renew_your_signal_backups_subscription">Förnya din prenumeration på Säkerhetskopiering av Signal</string>
|
||||
@@ -6414,14 +6402,6 @@
|
||||
<string name="MediaReviewFragment__video_set_to_view_once">Video inställd för att visas en gång</string>
|
||||
<!-- Small notification presented to the user when they set their photo to view-once mode -->
|
||||
<string name="MediaReviewFragment__photo_set_to_view_once">Foto inställt för att visas en gång</string>
|
||||
<!-- Small notification presented to the user when they set their video to be sent in high visual quality. -->
|
||||
<string name="MediaReviewFragment__video_set_to_high_quality">Video inställd på hög kvalitet</string>
|
||||
<!-- Small notification presented to the user when they set their video to be sent in standard (lower than high) visual quality. -->
|
||||
<string name="MediaReviewFragment__video_set_to_standard_quality">Video inställd på standardkvalitet</string>
|
||||
<!-- Small notification presented to the user when they set their still image to be sent in high visual quality. -->
|
||||
<string name="MediaReviewFragment__photo_set_to_high_quality">Foto inställt på hög kvalitet</string>
|
||||
<!-- Small notification presented to the user when they set their still image to be sent in standard (lower than high) visual quality. -->
|
||||
<string name="MediaReviewFragment__photo_set_to_standard_quality">Foto inställt på standardkvalitet</string>
|
||||
<!-- Accessibility label describing the add media button on the Media review screen -->
|
||||
<string name="MediaReviewFragment__add_media_accessibility_label">Lägg till en mediefil</string>
|
||||
<!-- Accessibility label describing the brush and pen button on the Media review screen -->
|
||||
@@ -6440,16 +6420,6 @@
|
||||
<string name="MediaReviewFragment__send_media_accessibility_label">Skicka media</string>
|
||||
<!-- Accessibility label describing the finish adding a message button on the Media review screen dialog -->
|
||||
<string name="MediaReviewFragment__finish_adding_a_message_accessibility_label">Slutför att lägga till ett meddelande</string>
|
||||
<!-- Small notification presented to the user when they set multiple media items to be sent in high visual quality. -->
|
||||
<plurals name="MediaReviewFragment__items_set_to_high_quality">
|
||||
<item quantity="one">%1$d objekt inställda på hög kvalitet</item>
|
||||
<item quantity="other">%1$d objekt inställda på hög kvalitet</item>
|
||||
</plurals>
|
||||
<!-- Small notification presented to the user when they set multiple media items to be sent in standard (lower than high) visual quality. -->
|
||||
<plurals name="MediaReviewFragment__items_set_to_standard_quality">
|
||||
<item quantity="one">%1$d objekt inställda på standardkvalitet</item>
|
||||
<item quantity="other">%1$d objekt inställda på standardkvalitet</item>
|
||||
</plurals>
|
||||
|
||||
<string name="ImageEditorHud__cancel">Avbryt</string>
|
||||
<string name="ImageEditorHud__draw">Dra</string>
|
||||
|
||||
@@ -5652,18 +5652,6 @@
|
||||
<!-- GroupDescriptionDialog -->
|
||||
<string name="GroupDescriptionDialog__group_description">Maelezo ya kikundi</string>
|
||||
|
||||
<!-- QualitySelectorBottomSheetDialog -->
|
||||
<!-- Label for our standard quality media conversion. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__standard">Kiwango</string>
|
||||
<!-- Description for our standard quality media conversion. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__faster_less_data">Haraka zaidi, kiasi kidogo cha data</string>
|
||||
<!-- Label for our high quality media conversion. This has better quality than standard. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__high">Juu</string>
|
||||
<!-- Label for our high quality media conversion. This has better quality than standard. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__slower_more_data">Polepole zaidi, data nyingi zaidi</string>
|
||||
<!-- Title heading for our media conversion quality selector. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__media_quality">Ubora wa Media</string>
|
||||
|
||||
<!-- AppSettingsFragment -->
|
||||
<!-- String alerting user that something is wrong with their backups subscription -->
|
||||
<string name="AppSettingsFragment__renew_your_signal_backups_subscription">Sasisha usajili wako wa Hifadhi Nakala ya Signal iliyo Salama</string>
|
||||
@@ -6414,14 +6402,6 @@
|
||||
<string name="MediaReviewFragment__video_set_to_view_once">Video imewekwa kutazama mara moja</string>
|
||||
<!-- Small notification presented to the user when they set their photo to view-once mode -->
|
||||
<string name="MediaReviewFragment__photo_set_to_view_once">Picha imewekwa kutazama mara moja</string>
|
||||
<!-- Small notification presented to the user when they set their video to be sent in high visual quality. -->
|
||||
<string name="MediaReviewFragment__video_set_to_high_quality">Video imewekwa kwenye ubora wa hali ya juu</string>
|
||||
<!-- Small notification presented to the user when they set their video to be sent in standard (lower than high) visual quality. -->
|
||||
<string name="MediaReviewFragment__video_set_to_standard_quality">Video imewekwa kwenye kiwango cha kawaida</string>
|
||||
<!-- Small notification presented to the user when they set their still image to be sent in high visual quality. -->
|
||||
<string name="MediaReviewFragment__photo_set_to_high_quality">Picha imewekwa kwenye ubora wa hali ya juu</string>
|
||||
<!-- Small notification presented to the user when they set their still image to be sent in standard (lower than high) visual quality. -->
|
||||
<string name="MediaReviewFragment__photo_set_to_standard_quality">Picha imewekwa kwenye kiwango cha kawaida</string>
|
||||
<!-- Accessibility label describing the add media button on the Media review screen -->
|
||||
<string name="MediaReviewFragment__add_media_accessibility_label">Ongeza Picha au Video</string>
|
||||
<!-- Accessibility label describing the brush and pen button on the Media review screen -->
|
||||
@@ -6440,16 +6420,6 @@
|
||||
<string name="MediaReviewFragment__send_media_accessibility_label">Tuma Picha au Video</string>
|
||||
<!-- Accessibility label describing the finish adding a message button on the Media review screen dialog -->
|
||||
<string name="MediaReviewFragment__finish_adding_a_message_accessibility_label">Maliza kuongeza Ujumbe</string>
|
||||
<!-- Small notification presented to the user when they set multiple media items to be sent in high visual quality. -->
|
||||
<plurals name="MediaReviewFragment__items_set_to_high_quality">
|
||||
<item quantity="one">%1$d imewekwa kwenye ubora wa hali ya juu</item>
|
||||
<item quantity="other">%1$d zimewekwa kwenye ubora wa hali ya juu</item>
|
||||
</plurals>
|
||||
<!-- Small notification presented to the user when they set multiple media items to be sent in standard (lower than high) visual quality. -->
|
||||
<plurals name="MediaReviewFragment__items_set_to_standard_quality">
|
||||
<item quantity="one">%1$d imewekwa kwenye ubora wa hali ya juu</item>
|
||||
<item quantity="other">%1$d zimewekwa kwenye ubora wa hali ya juu</item>
|
||||
</plurals>
|
||||
|
||||
<string name="ImageEditorHud__cancel">Ghairi</string>
|
||||
<string name="ImageEditorHud__draw">Chora</string>
|
||||
|
||||
@@ -5652,18 +5652,6 @@
|
||||
<!-- GroupDescriptionDialog -->
|
||||
<string name="GroupDescriptionDialog__group_description">குழு விளக்கம்</string>
|
||||
|
||||
<!-- QualitySelectorBottomSheetDialog -->
|
||||
<!-- Label for our standard quality media conversion. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__standard">தரநிலை</string>
|
||||
<!-- Description for our standard quality media conversion. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__faster_less_data">வேகமான, குறைந்த இணைய தரவு</string>
|
||||
<!-- Label for our high quality media conversion. This has better quality than standard. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__high">உயர்</string>
|
||||
<!-- Label for our high quality media conversion. This has better quality than standard. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__slower_more_data">மெதுவான, அதிகமான இணைய தரவு</string>
|
||||
<!-- Title heading for our media conversion quality selector. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__media_quality">மீடியா தரம்</string>
|
||||
|
||||
<!-- AppSettingsFragment -->
|
||||
<!-- String alerting user that something is wrong with their backups subscription -->
|
||||
<string name="AppSettingsFragment__renew_your_signal_backups_subscription">உங்கள் சிக்னலின் பாதுகாப்பான காப்புப் பிரதிகளின் சந்தாவை புதுப்பிக்கவும்</string>
|
||||
@@ -6414,14 +6402,6 @@
|
||||
<string name="MediaReviewFragment__video_set_to_view_once">ஒரு முறை பார்க்கும் வகையில் வீடியோ அமைக்கப்பட்டுள்ளது</string>
|
||||
<!-- Small notification presented to the user when they set their photo to view-once mode -->
|
||||
<string name="MediaReviewFragment__photo_set_to_view_once">புகைப்படம் ஒருமுறை பார்க்கும் வகையில் அமைக்கப்பட்டுள்ளது</string>
|
||||
<!-- Small notification presented to the user when they set their video to be sent in high visual quality. -->
|
||||
<string name="MediaReviewFragment__video_set_to_high_quality">வீடியோ உயர் தரத்தில் அமைக்கப்பட்டுள்ளது</string>
|
||||
<!-- Small notification presented to the user when they set their video to be sent in standard (lower than high) visual quality. -->
|
||||
<string name="MediaReviewFragment__video_set_to_standard_quality">வீடியோ இயல்பான தரத்திற்கு அமைக்கப்பட்டுள்ளது</string>
|
||||
<!-- Small notification presented to the user when they set their still image to be sent in high visual quality. -->
|
||||
<string name="MediaReviewFragment__photo_set_to_high_quality">புகைப்படம் உயர் தரத்தில் அமைக்கப்பட்டுள்ளது</string>
|
||||
<!-- Small notification presented to the user when they set their still image to be sent in standard (lower than high) visual quality. -->
|
||||
<string name="MediaReviewFragment__photo_set_to_standard_quality">புகைப்படம் நிலையான தரத்திற்கு அமைக்கப்பட்டுள்ளது</string>
|
||||
<!-- Accessibility label describing the add media button on the Media review screen -->
|
||||
<string name="MediaReviewFragment__add_media_accessibility_label">ஊடகத்தைச் சேர்</string>
|
||||
<!-- Accessibility label describing the brush and pen button on the Media review screen -->
|
||||
@@ -6440,16 +6420,6 @@
|
||||
<string name="MediaReviewFragment__send_media_accessibility_label">ஊடகத்தை அனுப்பு</string>
|
||||
<!-- Accessibility label describing the finish adding a message button on the Media review screen dialog -->
|
||||
<string name="MediaReviewFragment__finish_adding_a_message_accessibility_label">மெசேஜ் சேர்ப்பதை நிறைவு செய்</string>
|
||||
<!-- Small notification presented to the user when they set multiple media items to be sent in high visual quality. -->
|
||||
<plurals name="MediaReviewFragment__items_set_to_high_quality">
|
||||
<item quantity="one">%1$d ஐட்டம் உயர் தரத்திற்கு அமைக்கப்பட்டது</item>
|
||||
<item quantity="other">%1$d ஐட்டங்கள் உயர் தரத்திற்கு அமைக்கப்பட்டது</item>
|
||||
</plurals>
|
||||
<!-- Small notification presented to the user when they set multiple media items to be sent in standard (lower than high) visual quality. -->
|
||||
<plurals name="MediaReviewFragment__items_set_to_standard_quality">
|
||||
<item quantity="one">%1$d ஐட்டம் நிலையான தரத்திற்கு அமைக்கப்பட்டது</item>
|
||||
<item quantity="other">%1$d ஐட்டங்கள் நிலையான தரத்திற்கு அமைக்கப்பட்டது</item>
|
||||
</plurals>
|
||||
|
||||
<string name="ImageEditorHud__cancel">ரத்து</string>
|
||||
<string name="ImageEditorHud__draw">வரை</string>
|
||||
|
||||
@@ -5652,18 +5652,6 @@
|
||||
<!-- GroupDescriptionDialog -->
|
||||
<string name="GroupDescriptionDialog__group_description">గ్రూపు వివరణ</string>
|
||||
|
||||
<!-- QualitySelectorBottomSheetDialog -->
|
||||
<!-- Label for our standard quality media conversion. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__standard">ప్రామాణికం</string>
|
||||
<!-- Description for our standard quality media conversion. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__faster_less_data">వేగంగా, తక్కువ డేటా</string>
|
||||
<!-- Label for our high quality media conversion. This has better quality than standard. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__high">అధికం</string>
|
||||
<!-- Label for our high quality media conversion. This has better quality than standard. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__slower_more_data">నెమ్మదిగా, మరింత డేటా</string>
|
||||
<!-- Title heading for our media conversion quality selector. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__media_quality">మీడియా నాణ్యత</string>
|
||||
|
||||
<!-- AppSettingsFragment -->
|
||||
<!-- String alerting user that something is wrong with their backups subscription -->
|
||||
<string name="AppSettingsFragment__renew_your_signal_backups_subscription">మీ Signal సురక్షిత బ్యాకప్ల సబ్స్క్రిప్షన్ను పునరుద్ధరించండి</string>
|
||||
@@ -6414,14 +6402,6 @@
|
||||
<string name="MediaReviewFragment__video_set_to_view_once">ఒకసారి వీక్షించేందుకు వీడియో సెట్ చేయబడింది</string>
|
||||
<!-- Small notification presented to the user when they set their photo to view-once mode -->
|
||||
<string name="MediaReviewFragment__photo_set_to_view_once">ఒకసారి వీక్షించేందుకు ఫోటో సెట్ చేయబడింది</string>
|
||||
<!-- Small notification presented to the user when they set their video to be sent in high visual quality. -->
|
||||
<string name="MediaReviewFragment__video_set_to_high_quality">అధిక నాణ్యతకు వీడియో సెట్ చేయబడింది</string>
|
||||
<!-- Small notification presented to the user when they set their video to be sent in standard (lower than high) visual quality. -->
|
||||
<string name="MediaReviewFragment__video_set_to_standard_quality">ప్రామాణిక నాణ్యతకు వీడియో సెట్ చేయబడింది</string>
|
||||
<!-- Small notification presented to the user when they set their still image to be sent in high visual quality. -->
|
||||
<string name="MediaReviewFragment__photo_set_to_high_quality">అధిక నాణ్యతకు ఫోటో సెట్ చేయబడింది</string>
|
||||
<!-- Small notification presented to the user when they set their still image to be sent in standard (lower than high) visual quality. -->
|
||||
<string name="MediaReviewFragment__photo_set_to_standard_quality">ప్రామాణిక నాణ్యతకు ఫోటో సెట్ చేయబడింది</string>
|
||||
<!-- Accessibility label describing the add media button on the Media review screen -->
|
||||
<string name="MediaReviewFragment__add_media_accessibility_label">మీడియాను జోడించండి</string>
|
||||
<!-- Accessibility label describing the brush and pen button on the Media review screen -->
|
||||
@@ -6440,16 +6420,6 @@
|
||||
<string name="MediaReviewFragment__send_media_accessibility_label">మీడియాను పంపండి</string>
|
||||
<!-- Accessibility label describing the finish adding a message button on the Media review screen dialog -->
|
||||
<string name="MediaReviewFragment__finish_adding_a_message_accessibility_label">సందేశాన్ని జోడించడం పూర్తి చేయండి</string>
|
||||
<!-- Small notification presented to the user when they set multiple media items to be sent in high visual quality. -->
|
||||
<plurals name="MediaReviewFragment__items_set_to_high_quality">
|
||||
<item quantity="one">%1$d అంశం అధిక నాణ్యతకు సెట్ చేయబడింది</item>
|
||||
<item quantity="other">%1$d అంశాలు అధిక నాణ్యతకు సెట్ చేయబడ్డాయి</item>
|
||||
</plurals>
|
||||
<!-- Small notification presented to the user when they set multiple media items to be sent in standard (lower than high) visual quality. -->
|
||||
<plurals name="MediaReviewFragment__items_set_to_standard_quality">
|
||||
<item quantity="one">%1$d అంశం ప్రామాణిక నాణ్యతకు సెట్ చేయబడింది</item>
|
||||
<item quantity="other">%1$d అంశాలు ప్రామాణిక నాణ్యతకు సెట్ చేయబడ్డాయి</item>
|
||||
</plurals>
|
||||
|
||||
<string name="ImageEditorHud__cancel">రద్దు</string>
|
||||
<string name="ImageEditorHud__draw">గీయండి</string>
|
||||
|
||||
@@ -5509,18 +5509,6 @@
|
||||
<!-- GroupDescriptionDialog -->
|
||||
<string name="GroupDescriptionDialog__group_description">คำอธิบายกลุ่ม</string>
|
||||
|
||||
<!-- QualitySelectorBottomSheetDialog -->
|
||||
<!-- Label for our standard quality media conversion. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__standard">มาตรฐาน</string>
|
||||
<!-- Description for our standard quality media conversion. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__faster_less_data">เร็วกว่า ใช้ข้อมูลน้อย</string>
|
||||
<!-- Label for our high quality media conversion. This has better quality than standard. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__high">สูง</string>
|
||||
<!-- Label for our high quality media conversion. This has better quality than standard. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__slower_more_data">ช้ากว่า ใช้ข้อมูลมาก</string>
|
||||
<!-- Title heading for our media conversion quality selector. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__media_quality">คุณภาพของสื่อ</string>
|
||||
|
||||
<!-- AppSettingsFragment -->
|
||||
<!-- String alerting user that something is wrong with their backups subscription -->
|
||||
<string name="AppSettingsFragment__renew_your_signal_backups_subscription">ต่ออายุแพ็กเกจสำรองข้อมูลที่ปลอดภัยของ Signal ของคุณ</string>
|
||||
@@ -6254,14 +6242,6 @@
|
||||
<string name="MediaReviewFragment__video_set_to_view_once">วิดีโอตั้งค่าเป็นไฟล์สื่อแบบที่ดูได้ครั้งเดียว</string>
|
||||
<!-- Small notification presented to the user when they set their photo to view-once mode -->
|
||||
<string name="MediaReviewFragment__photo_set_to_view_once">รูปภาพตั้งค่าเป็นไฟล์สื่อแบบที่ดูได้ครั้งเดียว</string>
|
||||
<!-- Small notification presented to the user when they set their video to be sent in high visual quality. -->
|
||||
<string name="MediaReviewFragment__video_set_to_high_quality">วิดีโอตั้งค่าที่ความละเอียดสูง</string>
|
||||
<!-- Small notification presented to the user when they set their video to be sent in standard (lower than high) visual quality. -->
|
||||
<string name="MediaReviewFragment__video_set_to_standard_quality">วิดีโอตั้งค่าที่ความละเอียดมาตรฐาน</string>
|
||||
<!-- Small notification presented to the user when they set their still image to be sent in high visual quality. -->
|
||||
<string name="MediaReviewFragment__photo_set_to_high_quality">รูปภาพตั้งค่าที่ความละเอียดสูง</string>
|
||||
<!-- Small notification presented to the user when they set their still image to be sent in standard (lower than high) visual quality. -->
|
||||
<string name="MediaReviewFragment__photo_set_to_standard_quality">รูปภาพตั้งค่าที่ความละเอียดมาตรฐาน</string>
|
||||
<!-- Accessibility label describing the add media button on the Media review screen -->
|
||||
<string name="MediaReviewFragment__add_media_accessibility_label">เพิ่มไฟล์สื่อ</string>
|
||||
<!-- Accessibility label describing the brush and pen button on the Media review screen -->
|
||||
@@ -6280,14 +6260,6 @@
|
||||
<string name="MediaReviewFragment__send_media_accessibility_label">ส่งไฟล์สื่อ</string>
|
||||
<!-- Accessibility label describing the finish adding a message button on the Media review screen dialog -->
|
||||
<string name="MediaReviewFragment__finish_adding_a_message_accessibility_label">เพิ่มข้อความเสร็จสิ้น</string>
|
||||
<!-- Small notification presented to the user when they set multiple media items to be sent in high visual quality. -->
|
||||
<plurals name="MediaReviewFragment__items_set_to_high_quality">
|
||||
<item quantity="other">%1$d ไฟล์ตั้งค่าที่ความละเอียดสูง</item>
|
||||
</plurals>
|
||||
<!-- Small notification presented to the user when they set multiple media items to be sent in standard (lower than high) visual quality. -->
|
||||
<plurals name="MediaReviewFragment__items_set_to_standard_quality">
|
||||
<item quantity="other">%1$d ไฟล์ตั้งค่าที่ความละเอียดมาตรฐาน</item>
|
||||
</plurals>
|
||||
|
||||
<string name="ImageEditorHud__cancel">ยกเลิก</string>
|
||||
<string name="ImageEditorHud__draw">วาด</string>
|
||||
|
||||
@@ -5652,18 +5652,6 @@
|
||||
<!-- GroupDescriptionDialog -->
|
||||
<string name="GroupDescriptionDialog__group_description">Group description</string>
|
||||
|
||||
<!-- QualitySelectorBottomSheetDialog -->
|
||||
<!-- Label for our standard quality media conversion. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__standard">Standard</string>
|
||||
<!-- Description for our standard quality media conversion. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__faster_less_data">Faster, less data</string>
|
||||
<!-- Label for our high quality media conversion. This has better quality than standard. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__high">Mataas</string>
|
||||
<!-- Label for our high quality media conversion. This has better quality than standard. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__slower_more_data">Slower, more data</string>
|
||||
<!-- Title heading for our media conversion quality selector. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__media_quality">Media quality</string>
|
||||
|
||||
<!-- AppSettingsFragment -->
|
||||
<!-- String alerting user that something is wrong with their backups subscription -->
|
||||
<string name="AppSettingsFragment__renew_your_signal_backups_subscription">I-renew ang subscription mo sa Signal Secure Backups</string>
|
||||
@@ -6414,14 +6402,6 @@
|
||||
<string name="MediaReviewFragment__video_set_to_view_once">Ang video ay naka-set sa view once</string>
|
||||
<!-- Small notification presented to the user when they set their photo to view-once mode -->
|
||||
<string name="MediaReviewFragment__photo_set_to_view_once">Ang photo ay naka-set sa view once</string>
|
||||
<!-- Small notification presented to the user when they set their video to be sent in high visual quality. -->
|
||||
<string name="MediaReviewFragment__video_set_to_high_quality">Ang video ay naka-set sa high quality</string>
|
||||
<!-- Small notification presented to the user when they set their video to be sent in standard (lower than high) visual quality. -->
|
||||
<string name="MediaReviewFragment__video_set_to_standard_quality">Ang video ay naka-set sa standard quality</string>
|
||||
<!-- Small notification presented to the user when they set their still image to be sent in high visual quality. -->
|
||||
<string name="MediaReviewFragment__photo_set_to_high_quality">Ang photo ay naka-set sa high quality</string>
|
||||
<!-- Small notification presented to the user when they set their still image to be sent in standard (lower than high) visual quality. -->
|
||||
<string name="MediaReviewFragment__photo_set_to_standard_quality">Ang photo ay naka-set sa standard quality</string>
|
||||
<!-- Accessibility label describing the add media button on the Media review screen -->
|
||||
<string name="MediaReviewFragment__add_media_accessibility_label">Maglagay ng Media</string>
|
||||
<!-- Accessibility label describing the brush and pen button on the Media review screen -->
|
||||
@@ -6440,16 +6420,6 @@
|
||||
<string name="MediaReviewFragment__send_media_accessibility_label">I-send ang Media</string>
|
||||
<!-- Accessibility label describing the finish adding a message button on the Media review screen dialog -->
|
||||
<string name="MediaReviewFragment__finish_adding_a_message_accessibility_label">Tapusin ang pagdagdag ng Message</string>
|
||||
<!-- Small notification presented to the user when they set multiple media items to be sent in high visual quality. -->
|
||||
<plurals name="MediaReviewFragment__items_set_to_high_quality">
|
||||
<item quantity="one">Ang %1$d item ay naka-set sa high quality</item>
|
||||
<item quantity="other">Ang %1$d items ay naka-set sa high quality</item>
|
||||
</plurals>
|
||||
<!-- Small notification presented to the user when they set multiple media items to be sent in standard (lower than high) visual quality. -->
|
||||
<plurals name="MediaReviewFragment__items_set_to_standard_quality">
|
||||
<item quantity="one">Ang %1$d item ay naka-set sa standard quality</item>
|
||||
<item quantity="other">Ang %1$d items ay naka-set sa standard quality</item>
|
||||
</plurals>
|
||||
|
||||
<string name="ImageEditorHud__cancel">Kanselahin</string>
|
||||
<string name="ImageEditorHud__draw">Draw</string>
|
||||
|
||||
@@ -5652,18 +5652,6 @@
|
||||
<!-- GroupDescriptionDialog -->
|
||||
<string name="GroupDescriptionDialog__group_description">Grup tanımı</string>
|
||||
|
||||
<!-- QualitySelectorBottomSheetDialog -->
|
||||
<!-- Label for our standard quality media conversion. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__standard">Standart</string>
|
||||
<!-- Description for our standard quality media conversion. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__faster_less_data">Daha hızlı, az veri</string>
|
||||
<!-- Label for our high quality media conversion. This has better quality than standard. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__high">Yüksek</string>
|
||||
<!-- Label for our high quality media conversion. This has better quality than standard. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__slower_more_data">Daha yavaş, daha çok veri</string>
|
||||
<!-- Title heading for our media conversion quality selector. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__media_quality">İçerik kalitesi</string>
|
||||
|
||||
<!-- AppSettingsFragment -->
|
||||
<!-- String alerting user that something is wrong with their backups subscription -->
|
||||
<string name="AppSettingsFragment__renew_your_signal_backups_subscription">Signal Güvenli Yedeklemeler aboneliğini yenile</string>
|
||||
@@ -6414,14 +6402,6 @@
|
||||
<string name="MediaReviewFragment__video_set_to_view_once">Video bir kez görüntülenecek şekilde ayarlandı</string>
|
||||
<!-- Small notification presented to the user when they set their photo to view-once mode -->
|
||||
<string name="MediaReviewFragment__photo_set_to_view_once">Fotoğraf bir kez görüntülenecek şekilde ayarlandı</string>
|
||||
<!-- Small notification presented to the user when they set their video to be sent in high visual quality. -->
|
||||
<string name="MediaReviewFragment__video_set_to_high_quality">Video yüksek kaliteye ayarlandı</string>
|
||||
<!-- Small notification presented to the user when they set their video to be sent in standard (lower than high) visual quality. -->
|
||||
<string name="MediaReviewFragment__video_set_to_standard_quality">Video standart kaliteye ayarlandı</string>
|
||||
<!-- Small notification presented to the user when they set their still image to be sent in high visual quality. -->
|
||||
<string name="MediaReviewFragment__photo_set_to_high_quality">Fotoğraf yüksek kaliteye ayarlandı</string>
|
||||
<!-- Small notification presented to the user when they set their still image to be sent in standard (lower than high) visual quality. -->
|
||||
<string name="MediaReviewFragment__photo_set_to_standard_quality">Fotoğraf standart kaliteye ayarlandı</string>
|
||||
<!-- Accessibility label describing the add media button on the Media review screen -->
|
||||
<string name="MediaReviewFragment__add_media_accessibility_label">Medya Ekle</string>
|
||||
<!-- Accessibility label describing the brush and pen button on the Media review screen -->
|
||||
@@ -6440,16 +6420,6 @@
|
||||
<string name="MediaReviewFragment__send_media_accessibility_label">Medya Gönder</string>
|
||||
<!-- Accessibility label describing the finish adding a message button on the Media review screen dialog -->
|
||||
<string name="MediaReviewFragment__finish_adding_a_message_accessibility_label">Mesaj eklemeyi bitir</string>
|
||||
<!-- Small notification presented to the user when they set multiple media items to be sent in high visual quality. -->
|
||||
<plurals name="MediaReviewFragment__items_set_to_high_quality">
|
||||
<item quantity="one">%1$d öge yüksek kaliteye ayarlandı</item>
|
||||
<item quantity="other">%1$d öğe yüksek kaliteye ayarlandı</item>
|
||||
</plurals>
|
||||
<!-- Small notification presented to the user when they set multiple media items to be sent in standard (lower than high) visual quality. -->
|
||||
<plurals name="MediaReviewFragment__items_set_to_standard_quality">
|
||||
<item quantity="one">%1$d öge standart kaliteye ayarlandı</item>
|
||||
<item quantity="other">%1$d öğe standart kaliteye ayarlandı</item>
|
||||
</plurals>
|
||||
|
||||
<string name="ImageEditorHud__cancel">İptal</string>
|
||||
<string name="ImageEditorHud__draw">Çizim</string>
|
||||
|
||||
@@ -5509,18 +5509,6 @@
|
||||
<!-- GroupDescriptionDialog -->
|
||||
<string name="GroupDescriptionDialog__group_description">گۇرۇپپا تونۇشتۇرۇشى</string>
|
||||
|
||||
<!-- QualitySelectorBottomSheetDialog -->
|
||||
<!-- Label for our standard quality media conversion. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__standard">ئۆلچەملىك</string>
|
||||
<!-- Description for our standard quality media conversion. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__faster_less_data">تېزرەك، سانلىق مەلۇماتنى ئاز ئىشلىتىدۇ</string>
|
||||
<!-- Label for our high quality media conversion. This has better quality than standard. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__high">يۇقىرى</string>
|
||||
<!-- Label for our high quality media conversion. This has better quality than standard. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__slower_more_data">ئاستىراق، سانلىق مەلۇماتنى كۆپ ئىشلىتىدۇ</string>
|
||||
<!-- Title heading for our media conversion quality selector. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__media_quality">ۋاسىتە سۈپىتى</string>
|
||||
|
||||
<!-- AppSettingsFragment -->
|
||||
<!-- String alerting user that something is wrong with their backups subscription -->
|
||||
<string name="AppSettingsFragment__renew_your_signal_backups_subscription">Signal بىخەتەر زاپاسلاش مۇشتەرىلىكىڭىزنى يېڭىلاڭ</string>
|
||||
@@ -6254,14 +6242,6 @@
|
||||
<string name="MediaReviewFragment__video_set_to_view_once">ۋىدېيو بىر قېتىم كۆۈشكە تەڭشەلگەن</string>
|
||||
<!-- Small notification presented to the user when they set their photo to view-once mode -->
|
||||
<string name="MediaReviewFragment__photo_set_to_view_once">رەسىم بىر قېتىم كۆرۈشكە تەڭشەلگەن</string>
|
||||
<!-- Small notification presented to the user when they set their video to be sent in high visual quality. -->
|
||||
<string name="MediaReviewFragment__video_set_to_high_quality">ۋىدېيو يۇقىرى ئېنىقلىققا تەڭشەلگەن</string>
|
||||
<!-- Small notification presented to the user when they set their video to be sent in standard (lower than high) visual quality. -->
|
||||
<string name="MediaReviewFragment__video_set_to_standard_quality">ۋىدېيو ئۆلچەملىك ئېنىقلىققا تەڭشەلگەن</string>
|
||||
<!-- Small notification presented to the user when they set their still image to be sent in high visual quality. -->
|
||||
<string name="MediaReviewFragment__photo_set_to_high_quality">رەسىم يۇقىرى ئېنىقلىققا تەڭشەلگەن</string>
|
||||
<!-- Small notification presented to the user when they set their still image to be sent in standard (lower than high) visual quality. -->
|
||||
<string name="MediaReviewFragment__photo_set_to_standard_quality">رەسىم ئۆلچەملىك ئېنىقلىققا تەڭشەلگەن</string>
|
||||
<!-- Accessibility label describing the add media button on the Media review screen -->
|
||||
<string name="MediaReviewFragment__add_media_accessibility_label">بىرتال مېدىيانى قوشۇش</string>
|
||||
<!-- Accessibility label describing the brush and pen button on the Media review screen -->
|
||||
@@ -6280,14 +6260,6 @@
|
||||
<string name="MediaReviewFragment__send_media_accessibility_label">مېدىيانى ئەۋەتىش</string>
|
||||
<!-- Accessibility label describing the finish adding a message button on the Media review screen dialog -->
|
||||
<string name="MediaReviewFragment__finish_adding_a_message_accessibility_label">ئۇچۇر قوشۇشنى تاماملاش</string>
|
||||
<!-- Small notification presented to the user when they set multiple media items to be sent in high visual quality. -->
|
||||
<plurals name="MediaReviewFragment__items_set_to_high_quality">
|
||||
<item quantity="other">%1$d تۈر يۇقىرى ئېنىقلىققا تەڭشەلگەن</item>
|
||||
</plurals>
|
||||
<!-- Small notification presented to the user when they set multiple media items to be sent in standard (lower than high) visual quality. -->
|
||||
<plurals name="MediaReviewFragment__items_set_to_standard_quality">
|
||||
<item quantity="other">%1$d تۈر ئۆلچەملىك ئېنىقلىققا تەڭشەلگەن</item>
|
||||
</plurals>
|
||||
|
||||
<string name="ImageEditorHud__cancel">ۋاز كەچ</string>
|
||||
<string name="ImageEditorHud__draw">سىزما</string>
|
||||
|
||||
@@ -5938,18 +5938,6 @@
|
||||
<!-- GroupDescriptionDialog -->
|
||||
<string name="GroupDescriptionDialog__group_description">Опис групи</string>
|
||||
|
||||
<!-- QualitySelectorBottomSheetDialog -->
|
||||
<!-- Label for our standard quality media conversion. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__standard">Стандартна</string>
|
||||
<!-- Description for our standard quality media conversion. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__faster_less_data">Швидше, менше даних</string>
|
||||
<!-- Label for our high quality media conversion. This has better quality than standard. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__high">Висока</string>
|
||||
<!-- Label for our high quality media conversion. This has better quality than standard. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__slower_more_data">Повільніше, більше даних</string>
|
||||
<!-- Title heading for our media conversion quality selector. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__media_quality">Якість медіафайлів</string>
|
||||
|
||||
<!-- AppSettingsFragment -->
|
||||
<!-- String alerting user that something is wrong with their backups subscription -->
|
||||
<string name="AppSettingsFragment__renew_your_signal_backups_subscription">Поновіть передплату на надійне резервне копіювання від Signal</string>
|
||||
@@ -6734,14 +6722,6 @@
|
||||
<string name="MediaReviewFragment__video_set_to_view_once">Відео буде показано один раз</string>
|
||||
<!-- Small notification presented to the user when they set their photo to view-once mode -->
|
||||
<string name="MediaReviewFragment__photo_set_to_view_once">Фото буде показано один раз</string>
|
||||
<!-- Small notification presented to the user when they set their video to be sent in high visual quality. -->
|
||||
<string name="MediaReviewFragment__video_set_to_high_quality">Встановлено високу якість відео</string>
|
||||
<!-- Small notification presented to the user when they set their video to be sent in standard (lower than high) visual quality. -->
|
||||
<string name="MediaReviewFragment__video_set_to_standard_quality">Встановлено стандартну якість відео</string>
|
||||
<!-- Small notification presented to the user when they set their still image to be sent in high visual quality. -->
|
||||
<string name="MediaReviewFragment__photo_set_to_high_quality">Встановлено високу якість фото</string>
|
||||
<!-- Small notification presented to the user when they set their still image to be sent in standard (lower than high) visual quality. -->
|
||||
<string name="MediaReviewFragment__photo_set_to_standard_quality">Встановлено стандартну якість фото</string>
|
||||
<!-- Accessibility label describing the add media button on the Media review screen -->
|
||||
<string name="MediaReviewFragment__add_media_accessibility_label">Додати медіафайл</string>
|
||||
<!-- Accessibility label describing the brush and pen button on the Media review screen -->
|
||||
@@ -6760,20 +6740,6 @@
|
||||
<string name="MediaReviewFragment__send_media_accessibility_label">Надіслати медіафайл</string>
|
||||
<!-- Accessibility label describing the finish adding a message button on the Media review screen dialog -->
|
||||
<string name="MediaReviewFragment__finish_adding_a_message_accessibility_label">Завершити введення повідомлення</string>
|
||||
<!-- Small notification presented to the user when they set multiple media items to be sent in high visual quality. -->
|
||||
<plurals name="MediaReviewFragment__items_set_to_high_quality">
|
||||
<item quantity="one">Встановлено високу якість для %1$d медіафайлу</item>
|
||||
<item quantity="few">Встановлено високу якість для %1$d медіафайлів</item>
|
||||
<item quantity="many">Встановлено високу якість для %1$d медіафайлів</item>
|
||||
<item quantity="other">Встановлено високу якість для %1$d медіафайлу</item>
|
||||
</plurals>
|
||||
<!-- Small notification presented to the user when they set multiple media items to be sent in standard (lower than high) visual quality. -->
|
||||
<plurals name="MediaReviewFragment__items_set_to_standard_quality">
|
||||
<item quantity="one">Встановлено стандартну якість для %1$d медіафайлу</item>
|
||||
<item quantity="few">Встановлено стандартну якість для %1$d медіафайлів</item>
|
||||
<item quantity="many">Встановлено стандартну якість для %1$d медіафайлів</item>
|
||||
<item quantity="other">Встановлено стандартну якість для %1$d медіафайлу</item>
|
||||
</plurals>
|
||||
|
||||
<string name="ImageEditorHud__cancel">Закрити</string>
|
||||
<string name="ImageEditorHud__draw">Малювати</string>
|
||||
|
||||
@@ -5652,18 +5652,6 @@
|
||||
<!-- GroupDescriptionDialog -->
|
||||
<string name="GroupDescriptionDialog__group_description">گروپ کی تفصیل</string>
|
||||
|
||||
<!-- QualitySelectorBottomSheetDialog -->
|
||||
<!-- Label for our standard quality media conversion. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__standard">معیار</string>
|
||||
<!-- Description for our standard quality media conversion. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__faster_less_data">تیز ، کم ڈیٹا</string>
|
||||
<!-- Label for our high quality media conversion. This has better quality than standard. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__high">اونچا</string>
|
||||
<!-- Label for our high quality media conversion. This has better quality than standard. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__slower_more_data">آہستہ ، زیادہ ڈیٹا</string>
|
||||
<!-- Title heading for our media conversion quality selector. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__media_quality">میڈیا کوالٹی</string>
|
||||
|
||||
<!-- AppSettingsFragment -->
|
||||
<!-- String alerting user that something is wrong with their backups subscription -->
|
||||
<string name="AppSettingsFragment__renew_your_signal_backups_subscription">اپنے Signal کے محفوظ بیک اپس کی سبسکرپشن کی تجدید کریں</string>
|
||||
@@ -6414,14 +6402,6 @@
|
||||
<string name="MediaReviewFragment__video_set_to_view_once">ویڈیو صرف ایک بار ویو پر سیٹ کر دی گئی</string>
|
||||
<!-- Small notification presented to the user when they set their photo to view-once mode -->
|
||||
<string name="MediaReviewFragment__photo_set_to_view_once">تصویر ایک مرتبہ ویو پر سیٹ کر دی گئی</string>
|
||||
<!-- Small notification presented to the user when they set their video to be sent in high visual quality. -->
|
||||
<string name="MediaReviewFragment__video_set_to_high_quality">ویڈیو ہائی کوالٹی پر سیٹ کر دی گئی</string>
|
||||
<!-- Small notification presented to the user when they set their video to be sent in standard (lower than high) visual quality. -->
|
||||
<string name="MediaReviewFragment__video_set_to_standard_quality">ویڈیو معیاری کوالٹی پر سیٹ کر دی گئی</string>
|
||||
<!-- Small notification presented to the user when they set their still image to be sent in high visual quality. -->
|
||||
<string name="MediaReviewFragment__photo_set_to_high_quality">تصویر ہائی کوالٹی پر سیٹ کر دی گئی</string>
|
||||
<!-- Small notification presented to the user when they set their still image to be sent in standard (lower than high) visual quality. -->
|
||||
<string name="MediaReviewFragment__photo_set_to_standard_quality">تصویر معیاری کوالٹی پر سیٹ کر دی گئی</string>
|
||||
<!-- Accessibility label describing the add media button on the Media review screen -->
|
||||
<string name="MediaReviewFragment__add_media_accessibility_label">میڈیا شامل کریں</string>
|
||||
<!-- Accessibility label describing the brush and pen button on the Media review screen -->
|
||||
@@ -6440,16 +6420,6 @@
|
||||
<string name="MediaReviewFragment__send_media_accessibility_label">میڈیا بھیجیں</string>
|
||||
<!-- Accessibility label describing the finish adding a message button on the Media review screen dialog -->
|
||||
<string name="MediaReviewFragment__finish_adding_a_message_accessibility_label">میسج شامل کرنا مکمل کریں</string>
|
||||
<!-- Small notification presented to the user when they set multiple media items to be sent in high visual quality. -->
|
||||
<plurals name="MediaReviewFragment__items_set_to_high_quality">
|
||||
<item quantity="one">%1$d آئٹم ہائی کوالٹی پر سیٹ کر دی گئی</item>
|
||||
<item quantity="other">%1$d آئٹمز ہائی کوالٹی پر سیٹ کر دی گئیں</item>
|
||||
</plurals>
|
||||
<!-- Small notification presented to the user when they set multiple media items to be sent in standard (lower than high) visual quality. -->
|
||||
<plurals name="MediaReviewFragment__items_set_to_standard_quality">
|
||||
<item quantity="one">%1$d آئٹم معیاری کوالٹی پر سیٹ کردی گئی</item>
|
||||
<item quantity="other">%1$d آئٹمز معیاری کوالٹی پر سیٹ کر دی گئیں</item>
|
||||
</plurals>
|
||||
|
||||
<string name="ImageEditorHud__cancel">منسوخ کریں</string>
|
||||
<string name="ImageEditorHud__draw">ڈرا کریں</string>
|
||||
|
||||
@@ -5509,18 +5509,6 @@
|
||||
<!-- GroupDescriptionDialog -->
|
||||
<string name="GroupDescriptionDialog__group_description">Miêu tả nhóm</string>
|
||||
|
||||
<!-- QualitySelectorBottomSheetDialog -->
|
||||
<!-- Label for our standard quality media conversion. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__standard">Tiêu chuẩn</string>
|
||||
<!-- Description for our standard quality media conversion. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__faster_less_data">Nhanh hơn, ít dữ liệu</string>
|
||||
<!-- Label for our high quality media conversion. This has better quality than standard. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__high">Cao</string>
|
||||
<!-- Label for our high quality media conversion. This has better quality than standard. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__slower_more_data">Chậm hơn, nhiều dữ liệu</string>
|
||||
<!-- Title heading for our media conversion quality selector. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__media_quality">Chất lượng tập tin đa phương tiện</string>
|
||||
|
||||
<!-- AppSettingsFragment -->
|
||||
<!-- String alerting user that something is wrong with their backups subscription -->
|
||||
<string name="AppSettingsFragment__renew_your_signal_backups_subscription">Gia hạn gói đăng ký Sao lưu bảo mật Signal</string>
|
||||
@@ -6254,14 +6242,6 @@
|
||||
<string name="MediaReviewFragment__video_set_to_view_once">Video đã được đặt thành xem một lần</string>
|
||||
<!-- Small notification presented to the user when they set their photo to view-once mode -->
|
||||
<string name="MediaReviewFragment__photo_set_to_view_once">Ảnh đã được đặt thành xem một lần</string>
|
||||
<!-- Small notification presented to the user when they set their video to be sent in high visual quality. -->
|
||||
<string name="MediaReviewFragment__video_set_to_high_quality">Video đã được đặt thành chất lượng cao</string>
|
||||
<!-- Small notification presented to the user when they set their video to be sent in standard (lower than high) visual quality. -->
|
||||
<string name="MediaReviewFragment__video_set_to_standard_quality">Video đã được đặt thành chất lượng tiêu chuẩn</string>
|
||||
<!-- Small notification presented to the user when they set their still image to be sent in high visual quality. -->
|
||||
<string name="MediaReviewFragment__photo_set_to_high_quality">Ảnh đã được đặt thành chất lượng cao</string>
|
||||
<!-- Small notification presented to the user when they set their still image to be sent in standard (lower than high) visual quality. -->
|
||||
<string name="MediaReviewFragment__photo_set_to_standard_quality">Ảnh đã được đặt thành chất lượng tiêu chuẩn</string>
|
||||
<!-- Accessibility label describing the add media button on the Media review screen -->
|
||||
<string name="MediaReviewFragment__add_media_accessibility_label">Thêm tập tin đa phương tiện</string>
|
||||
<!-- Accessibility label describing the brush and pen button on the Media review screen -->
|
||||
@@ -6280,14 +6260,6 @@
|
||||
<string name="MediaReviewFragment__send_media_accessibility_label">Gửi tập tin đa phương tiện</string>
|
||||
<!-- Accessibility label describing the finish adding a message button on the Media review screen dialog -->
|
||||
<string name="MediaReviewFragment__finish_adding_a_message_accessibility_label">Hoàn tất thêm Tin nhắn</string>
|
||||
<!-- Small notification presented to the user when they set multiple media items to be sent in high visual quality. -->
|
||||
<plurals name="MediaReviewFragment__items_set_to_high_quality">
|
||||
<item quantity="other">%1$d mục được đặt thành chất lượng cao</item>
|
||||
</plurals>
|
||||
<!-- Small notification presented to the user when they set multiple media items to be sent in standard (lower than high) visual quality. -->
|
||||
<plurals name="MediaReviewFragment__items_set_to_standard_quality">
|
||||
<item quantity="other">%1$d mục được đặt thành chất lượng tiêu chuẩn</item>
|
||||
</plurals>
|
||||
|
||||
<string name="ImageEditorHud__cancel">Hủy</string>
|
||||
<string name="ImageEditorHud__draw">Kéo</string>
|
||||
|
||||
@@ -5509,18 +5509,6 @@
|
||||
<!-- GroupDescriptionDialog -->
|
||||
<string name="GroupDescriptionDialog__group_description">個谷嘅描述</string>
|
||||
|
||||
<!-- QualitySelectorBottomSheetDialog -->
|
||||
<!-- Label for our standard quality media conversion. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__standard">標準</string>
|
||||
<!-- Description for our standard quality media conversion. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__faster_less_data">快啲、用少啲數據</string>
|
||||
<!-- Label for our high quality media conversion. This has better quality than standard. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__high">高</string>
|
||||
<!-- Label for our high quality media conversion. This has better quality than standard. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__slower_more_data">慢啲、用多啲數據</string>
|
||||
<!-- Title heading for our media conversion quality selector. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__media_quality">多媒體檔案嘅畫質</string>
|
||||
|
||||
<!-- AppSettingsFragment -->
|
||||
<!-- String alerting user that something is wrong with their backups subscription -->
|
||||
<string name="AppSettingsFragment__renew_your_signal_backups_subscription">為你嘅「Signal 安全備份」課金計劃續期</string>
|
||||
@@ -6254,14 +6242,6 @@
|
||||
<string name="MediaReviewFragment__video_set_to_view_once">影片設定咗做閱後即毁</string>
|
||||
<!-- Small notification presented to the user when they set their photo to view-once mode -->
|
||||
<string name="MediaReviewFragment__photo_set_to_view_once">相片設定咗做閱後即毁</string>
|
||||
<!-- Small notification presented to the user when they set their video to be sent in high visual quality. -->
|
||||
<string name="MediaReviewFragment__video_set_to_high_quality">影片設定咗做高品質</string>
|
||||
<!-- Small notification presented to the user when they set their video to be sent in standard (lower than high) visual quality. -->
|
||||
<string name="MediaReviewFragment__video_set_to_standard_quality">影片設定咗做標準品質</string>
|
||||
<!-- Small notification presented to the user when they set their still image to be sent in high visual quality. -->
|
||||
<string name="MediaReviewFragment__photo_set_to_high_quality">相片設定咗做高品質</string>
|
||||
<!-- Small notification presented to the user when they set their still image to be sent in standard (lower than high) visual quality. -->
|
||||
<string name="MediaReviewFragment__photo_set_to_standard_quality">相片設定咗做標準品質</string>
|
||||
<!-- Accessibility label describing the add media button on the Media review screen -->
|
||||
<string name="MediaReviewFragment__add_media_accessibility_label">加入媒體</string>
|
||||
<!-- Accessibility label describing the brush and pen button on the Media review screen -->
|
||||
@@ -6280,14 +6260,6 @@
|
||||
<string name="MediaReviewFragment__send_media_accessibility_label">傳送媒體</string>
|
||||
<!-- Accessibility label describing the finish adding a message button on the Media review screen dialog -->
|
||||
<string name="MediaReviewFragment__finish_adding_a_message_accessibility_label">完成加入訊息</string>
|
||||
<!-- Small notification presented to the user when they set multiple media items to be sent in high visual quality. -->
|
||||
<plurals name="MediaReviewFragment__items_set_to_high_quality">
|
||||
<item quantity="other">%1$d 個項目設定咗做高品質</item>
|
||||
</plurals>
|
||||
<!-- Small notification presented to the user when they set multiple media items to be sent in standard (lower than high) visual quality. -->
|
||||
<plurals name="MediaReviewFragment__items_set_to_standard_quality">
|
||||
<item quantity="other">%1$d 個項目設定咗做標準品質</item>
|
||||
</plurals>
|
||||
|
||||
<string name="ImageEditorHud__cancel">取消</string>
|
||||
<string name="ImageEditorHud__draw">畫畫</string>
|
||||
|
||||
@@ -5509,18 +5509,6 @@
|
||||
<!-- GroupDescriptionDialog -->
|
||||
<string name="GroupDescriptionDialog__group_description">群组描述</string>
|
||||
|
||||
<!-- QualitySelectorBottomSheetDialog -->
|
||||
<!-- Label for our standard quality media conversion. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__standard">标准</string>
|
||||
<!-- Description for our standard quality media conversion. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__faster_less_data">速度更快,数据更少</string>
|
||||
<!-- Label for our high quality media conversion. This has better quality than standard. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__high">高</string>
|
||||
<!-- Label for our high quality media conversion. This has better quality than standard. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__slower_more_data">速度更慢,数据更多</string>
|
||||
<!-- Title heading for our media conversion quality selector. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__media_quality">媒体质量</string>
|
||||
|
||||
<!-- AppSettingsFragment -->
|
||||
<!-- String alerting user that something is wrong with their backups subscription -->
|
||||
<string name="AppSettingsFragment__renew_your_signal_backups_subscription">续订您的 Signal 安全备份套餐</string>
|
||||
@@ -6254,14 +6242,6 @@
|
||||
<string name="MediaReviewFragment__video_set_to_view_once">视频已设置为阅后即焚</string>
|
||||
<!-- Small notification presented to the user when they set their photo to view-once mode -->
|
||||
<string name="MediaReviewFragment__photo_set_to_view_once">照片已设置为阅后即焚</string>
|
||||
<!-- Small notification presented to the user when they set their video to be sent in high visual quality. -->
|
||||
<string name="MediaReviewFragment__video_set_to_high_quality">视频已设置为高清</string>
|
||||
<!-- Small notification presented to the user when they set their video to be sent in standard (lower than high) visual quality. -->
|
||||
<string name="MediaReviewFragment__video_set_to_standard_quality">视频已设置为标清</string>
|
||||
<!-- Small notification presented to the user when they set their still image to be sent in high visual quality. -->
|
||||
<string name="MediaReviewFragment__photo_set_to_high_quality">照片已设置为高清</string>
|
||||
<!-- Small notification presented to the user when they set their still image to be sent in standard (lower than high) visual quality. -->
|
||||
<string name="MediaReviewFragment__photo_set_to_standard_quality">照片已设置为标清</string>
|
||||
<!-- Accessibility label describing the add media button on the Media review screen -->
|
||||
<string name="MediaReviewFragment__add_media_accessibility_label">添加媒体</string>
|
||||
<!-- Accessibility label describing the brush and pen button on the Media review screen -->
|
||||
@@ -6280,14 +6260,6 @@
|
||||
<string name="MediaReviewFragment__send_media_accessibility_label">发送媒体</string>
|
||||
<!-- Accessibility label describing the finish adding a message button on the Media review screen dialog -->
|
||||
<string name="MediaReviewFragment__finish_adding_a_message_accessibility_label">完成添加消息</string>
|
||||
<!-- Small notification presented to the user when they set multiple media items to be sent in high visual quality. -->
|
||||
<plurals name="MediaReviewFragment__items_set_to_high_quality">
|
||||
<item quantity="other">%1$d 个项目已设置为高清</item>
|
||||
</plurals>
|
||||
<!-- Small notification presented to the user when they set multiple media items to be sent in standard (lower than high) visual quality. -->
|
||||
<plurals name="MediaReviewFragment__items_set_to_standard_quality">
|
||||
<item quantity="other">%1$d 个项目已设置为标清</item>
|
||||
</plurals>
|
||||
|
||||
<string name="ImageEditorHud__cancel">取消</string>
|
||||
<string name="ImageEditorHud__draw">绘画</string>
|
||||
|
||||
@@ -5509,18 +5509,6 @@
|
||||
<!-- GroupDescriptionDialog -->
|
||||
<string name="GroupDescriptionDialog__group_description">群組描述</string>
|
||||
|
||||
<!-- QualitySelectorBottomSheetDialog -->
|
||||
<!-- Label for our standard quality media conversion. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__standard">標準</string>
|
||||
<!-- Description for our standard quality media conversion. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__faster_less_data">較快、較少數據</string>
|
||||
<!-- Label for our high quality media conversion. This has better quality than standard. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__high">高品質</string>
|
||||
<!-- Label for our high quality media conversion. This has better quality than standard. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__slower_more_data">較慢、較多數據</string>
|
||||
<!-- Title heading for our media conversion quality selector. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__media_quality">媒體的品質</string>
|
||||
|
||||
<!-- AppSettingsFragment -->
|
||||
<!-- String alerting user that something is wrong with their backups subscription -->
|
||||
<string name="AppSettingsFragment__renew_your_signal_backups_subscription">為你的「Signal 安全備份」定期贊助續期</string>
|
||||
@@ -6254,14 +6242,6 @@
|
||||
<string name="MediaReviewFragment__video_set_to_view_once">影片設定為閱後即毀</string>
|
||||
<!-- Small notification presented to the user when they set their photo to view-once mode -->
|
||||
<string name="MediaReviewFragment__photo_set_to_view_once">相片設定為閱後即毁</string>
|
||||
<!-- Small notification presented to the user when they set their video to be sent in high visual quality. -->
|
||||
<string name="MediaReviewFragment__video_set_to_high_quality">影片設定為高品質</string>
|
||||
<!-- Small notification presented to the user when they set their video to be sent in standard (lower than high) visual quality. -->
|
||||
<string name="MediaReviewFragment__video_set_to_standard_quality">影片設定為標準品質</string>
|
||||
<!-- Small notification presented to the user when they set their still image to be sent in high visual quality. -->
|
||||
<string name="MediaReviewFragment__photo_set_to_high_quality">相片設定為高品質</string>
|
||||
<!-- Small notification presented to the user when they set their still image to be sent in standard (lower than high) visual quality. -->
|
||||
<string name="MediaReviewFragment__photo_set_to_standard_quality">相片設定為標準品質</string>
|
||||
<!-- Accessibility label describing the add media button on the Media review screen -->
|
||||
<string name="MediaReviewFragment__add_media_accessibility_label">新增媒體</string>
|
||||
<!-- Accessibility label describing the brush and pen button on the Media review screen -->
|
||||
@@ -6280,14 +6260,6 @@
|
||||
<string name="MediaReviewFragment__send_media_accessibility_label">傳送媒體</string>
|
||||
<!-- Accessibility label describing the finish adding a message button on the Media review screen dialog -->
|
||||
<string name="MediaReviewFragment__finish_adding_a_message_accessibility_label">完成新增訊息</string>
|
||||
<!-- Small notification presented to the user when they set multiple media items to be sent in high visual quality. -->
|
||||
<plurals name="MediaReviewFragment__items_set_to_high_quality">
|
||||
<item quantity="other">%1$d 個項目設定為高品質</item>
|
||||
</plurals>
|
||||
<!-- Small notification presented to the user when they set multiple media items to be sent in standard (lower than high) visual quality. -->
|
||||
<plurals name="MediaReviewFragment__items_set_to_standard_quality">
|
||||
<item quantity="other">%1$d 個項目設定為標準品質</item>
|
||||
</plurals>
|
||||
|
||||
<string name="ImageEditorHud__cancel">取消</string>
|
||||
<string name="ImageEditorHud__draw">繪畫</string>
|
||||
|
||||
@@ -5509,18 +5509,6 @@
|
||||
<!-- GroupDescriptionDialog -->
|
||||
<string name="GroupDescriptionDialog__group_description">群組描述</string>
|
||||
|
||||
<!-- QualitySelectorBottomSheetDialog -->
|
||||
<!-- Label for our standard quality media conversion. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__standard">標準</string>
|
||||
<!-- Description for our standard quality media conversion. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__faster_less_data">更快,更少數據</string>
|
||||
<!-- Label for our high quality media conversion. This has better quality than standard. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__high">高</string>
|
||||
<!-- Label for our high quality media conversion. This has better quality than standard. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__slower_more_data">較慢,數據更多</string>
|
||||
<!-- Title heading for our media conversion quality selector. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__media_quality">媒體檔品質</string>
|
||||
|
||||
<!-- AppSettingsFragment -->
|
||||
<!-- String alerting user that something is wrong with their backups subscription -->
|
||||
<string name="AppSettingsFragment__renew_your_signal_backups_subscription">為你的「Signal 安全備份」定期贊助續期</string>
|
||||
@@ -6254,14 +6242,6 @@
|
||||
<string name="MediaReviewFragment__video_set_to_view_once">影片設定為閱後即毀</string>
|
||||
<!-- Small notification presented to the user when they set their photo to view-once mode -->
|
||||
<string name="MediaReviewFragment__photo_set_to_view_once">相片設定為閱後即毁</string>
|
||||
<!-- Small notification presented to the user when they set their video to be sent in high visual quality. -->
|
||||
<string name="MediaReviewFragment__video_set_to_high_quality">影片設定為高品質</string>
|
||||
<!-- Small notification presented to the user when they set their video to be sent in standard (lower than high) visual quality. -->
|
||||
<string name="MediaReviewFragment__video_set_to_standard_quality">影片設定為標準品質</string>
|
||||
<!-- Small notification presented to the user when they set their still image to be sent in high visual quality. -->
|
||||
<string name="MediaReviewFragment__photo_set_to_high_quality">相片設定為高品質</string>
|
||||
<!-- Small notification presented to the user when they set their still image to be sent in standard (lower than high) visual quality. -->
|
||||
<string name="MediaReviewFragment__photo_set_to_standard_quality">相片設定為標準品質</string>
|
||||
<!-- Accessibility label describing the add media button on the Media review screen -->
|
||||
<string name="MediaReviewFragment__add_media_accessibility_label">新增媒體</string>
|
||||
<!-- Accessibility label describing the brush and pen button on the Media review screen -->
|
||||
@@ -6280,14 +6260,6 @@
|
||||
<string name="MediaReviewFragment__send_media_accessibility_label">傳送媒體</string>
|
||||
<!-- Accessibility label describing the finish adding a message button on the Media review screen dialog -->
|
||||
<string name="MediaReviewFragment__finish_adding_a_message_accessibility_label">完成新增訊息</string>
|
||||
<!-- Small notification presented to the user when they set multiple media items to be sent in high visual quality. -->
|
||||
<plurals name="MediaReviewFragment__items_set_to_high_quality">
|
||||
<item quantity="other">%1$d 個項目設定為高品質</item>
|
||||
</plurals>
|
||||
<!-- Small notification presented to the user when they set multiple media items to be sent in standard (lower than high) visual quality. -->
|
||||
<plurals name="MediaReviewFragment__items_set_to_standard_quality">
|
||||
<item quantity="other">%1$d 個項目設定為標準品質</item>
|
||||
</plurals>
|
||||
|
||||
<string name="ImageEditorHud__cancel">取消</string>
|
||||
<string name="ImageEditorHud__draw">繪圖</string>
|
||||
|
||||
@@ -5657,18 +5657,6 @@
|
||||
<!-- GroupDescriptionDialog -->
|
||||
<string name="GroupDescriptionDialog__group_description">Group description</string>
|
||||
|
||||
<!-- QualitySelectorBottomSheetDialog -->
|
||||
<!-- Label for our standard quality media conversion. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__standard">Standard</string>
|
||||
<!-- Description for our standard quality media conversion. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__faster_less_data">Faster, less data</string>
|
||||
<!-- Label for our high quality media conversion. This has better quality than standard. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__high">High</string>
|
||||
<!-- Label for our high quality media conversion. This has better quality than standard. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__slower_more_data">Slower, more data</string>
|
||||
<!-- Title heading for our media conversion quality selector. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__media_quality">Media quality</string>
|
||||
|
||||
<!-- AppSettingsFragment -->
|
||||
<!-- String alerting user that something is wrong with their backups subscription -->
|
||||
<string name="AppSettingsFragment__renew_your_signal_backups_subscription">Renew your Signal Secure Backups subscription</string>
|
||||
@@ -6419,14 +6407,6 @@
|
||||
<string name="MediaReviewFragment__video_set_to_view_once">Video set to view once</string>
|
||||
<!-- Small notification presented to the user when they set their photo to view-once mode -->
|
||||
<string name="MediaReviewFragment__photo_set_to_view_once">Photo set to view once</string>
|
||||
<!-- Small notification presented to the user when they set their video to be sent in high visual quality. -->
|
||||
<string name="MediaReviewFragment__video_set_to_high_quality">Video set to high quality</string>
|
||||
<!-- Small notification presented to the user when they set their video to be sent in standard (lower than high) visual quality. -->
|
||||
<string name="MediaReviewFragment__video_set_to_standard_quality">Video set to standard quality</string>
|
||||
<!-- Small notification presented to the user when they set their still image to be sent in high visual quality. -->
|
||||
<string name="MediaReviewFragment__photo_set_to_high_quality">Photo set to high quality</string>
|
||||
<!-- Small notification presented to the user when they set their still image to be sent in standard (lower than high) visual quality. -->
|
||||
<string name="MediaReviewFragment__photo_set_to_standard_quality">Photo set to standard quality</string>
|
||||
<!-- Accessibility label describing the add media button on the Media review screen -->
|
||||
<string name="MediaReviewFragment__add_media_accessibility_label">Add a Media</string>
|
||||
<!-- Accessibility label describing the brush and pen button on the Media review screen -->
|
||||
@@ -6445,16 +6425,6 @@
|
||||
<string name="MediaReviewFragment__send_media_accessibility_label">Send Media</string>
|
||||
<!-- Accessibility label describing the finish adding a message button on the Media review screen dialog -->
|
||||
<string name="MediaReviewFragment__finish_adding_a_message_accessibility_label">Finish adding a Message</string>
|
||||
<!-- Small notification presented to the user when they set multiple media items to be sent in high visual quality. -->
|
||||
<plurals name="MediaReviewFragment__items_set_to_high_quality">
|
||||
<item quantity="one">%1$d item set to high quality</item>
|
||||
<item quantity="other">%1$d items set to high quality</item>
|
||||
</plurals>
|
||||
<!-- Small notification presented to the user when they set multiple media items to be sent in standard (lower than high) visual quality. -->
|
||||
<plurals name="MediaReviewFragment__items_set_to_standard_quality">
|
||||
<item quantity="one">%d item set to standard quality</item>
|
||||
<item quantity="other">%d items set to standard quality</item>
|
||||
</plurals>
|
||||
|
||||
<string name="ImageEditorHud__cancel">Cancel</string>
|
||||
<string name="ImageEditorHud__draw">Draw</string>
|
||||
|
||||
@@ -1,6 +1,9 @@
|
||||
package org.signal.mediasend
|
||||
|
||||
import android.annotation.SuppressLint
|
||||
import androidx.compose.animation.AnimatedVisibility
|
||||
import androidx.compose.animation.fadeIn
|
||||
import androidx.compose.animation.fadeOut
|
||||
import androidx.compose.foundation.layout.Box
|
||||
import androidx.compose.foundation.layout.BoxScope
|
||||
import androidx.compose.foundation.layout.fillMaxSize
|
||||
@@ -10,7 +13,9 @@ import androidx.compose.runtime.Composable
|
||||
import androidx.compose.runtime.CompositionLocalProvider
|
||||
import androidx.compose.runtime.LaunchedEffect
|
||||
import androidx.compose.runtime.getValue
|
||||
import androidx.compose.runtime.mutableStateOf
|
||||
import androidx.compose.runtime.remember
|
||||
import androidx.compose.runtime.setValue
|
||||
import androidx.compose.ui.Alignment
|
||||
import androidx.compose.ui.Modifier
|
||||
import androidx.compose.ui.platform.LocalContext
|
||||
@@ -22,9 +27,11 @@ import androidx.navigation3.runtime.rememberNavBackStack
|
||||
import androidx.navigation3.ui.NavDisplay
|
||||
import androidx.navigationevent.compose.LocalNavigationEventDispatcherOwner
|
||||
import androidx.navigationevent.compose.rememberNavigationEventDispatcherOwner
|
||||
import kotlinx.coroutines.delay
|
||||
import kotlinx.coroutines.flow.Flow
|
||||
import kotlinx.coroutines.flow.MutableStateFlow
|
||||
import kotlinx.coroutines.flow.StateFlow
|
||||
import kotlinx.coroutines.flow.collectLatest
|
||||
import kotlinx.coroutines.flow.emptyFlow
|
||||
import org.signal.core.ui.compose.AllDevicePreviews
|
||||
import org.signal.core.ui.compose.Previews
|
||||
@@ -35,6 +42,7 @@ import org.signal.mediasend.edit.ImageController
|
||||
import org.signal.mediasend.edit.MediaEditScreen
|
||||
import org.signal.mediasend.select.MediaSelectScreen
|
||||
import org.signal.mediasend.select.MediaSelectScreenState
|
||||
import kotlin.time.Duration.Companion.seconds
|
||||
|
||||
/**
|
||||
* Enforces the following flow of:
|
||||
@@ -46,6 +54,7 @@ import org.signal.mediasend.select.MediaSelectScreenState
|
||||
internal fun MediaSendNavDisplay(
|
||||
stateFlow: StateFlow<MediaSendState>,
|
||||
snackbarEvents: Flow<SnackbarEvent>,
|
||||
toastEvents: Flow<ToastEvent>,
|
||||
imageControllers: ImageController.Container,
|
||||
backStack: NavBackStack<NavKey>,
|
||||
eventHandler: MediaSendEventHandler,
|
||||
@@ -122,6 +131,40 @@ internal fun MediaSendNavDisplay(
|
||||
}
|
||||
|
||||
Snackbar(snackbarEvents)
|
||||
Toast(toastEvents)
|
||||
}
|
||||
}
|
||||
|
||||
private val TOAST_DURATION = 3.seconds
|
||||
|
||||
/**
|
||||
* Shows each [ToastEvent] over the middle of the screen for [TOAST_DURATION]. A new event replaces whatever is showing
|
||||
* and restarts that countdown.
|
||||
*/
|
||||
@Composable
|
||||
private fun BoxScope.Toast(
|
||||
toastEvents: Flow<ToastEvent>
|
||||
) {
|
||||
var event: ToastEvent? by remember { mutableStateOf(null) }
|
||||
var visible: Boolean by remember { mutableStateOf(false) }
|
||||
|
||||
LaunchedEffect(Unit) {
|
||||
toastEvents.collectLatest {
|
||||
event = it
|
||||
visible = true
|
||||
delay(TOAST_DURATION)
|
||||
visible = false
|
||||
}
|
||||
}
|
||||
|
||||
AnimatedVisibility(
|
||||
visible = visible,
|
||||
enter = fadeIn(),
|
||||
exit = fadeOut(),
|
||||
modifier = Modifier.align(Alignment.Center)
|
||||
) {
|
||||
// Held past the hide so that it is still there to fade out.
|
||||
event?.let { MediaSendToast(event = it) }
|
||||
}
|
||||
}
|
||||
|
||||
@@ -156,6 +199,7 @@ private fun MediaSendNavDisplayPreview() {
|
||||
MediaSendNavDisplay(
|
||||
stateFlow = MutableStateFlow(MediaSendState(isCameraFirst = true)),
|
||||
snackbarEvents = emptyFlow(),
|
||||
toastEvents = emptyFlow(),
|
||||
imageControllers = remember { ImageController.Container() },
|
||||
backStack = rememberNavBackStack(MediaSendNavKey.Edit),
|
||||
eventHandler = MediaSendEventHandler.Empty,
|
||||
|
||||
@@ -90,6 +90,7 @@ fun MediaSendScreen(
|
||||
MediaSendNavDisplay(
|
||||
stateFlow = viewModel.state,
|
||||
snackbarEvents = viewModel.snackbarEvents,
|
||||
toastEvents = viewModel.toastEvents,
|
||||
imageControllers = viewModel.imageControllers,
|
||||
backStack = viewModel.backStack,
|
||||
eventHandler = viewModel,
|
||||
|
||||
@@ -0,0 +1,92 @@
|
||||
/*
|
||||
* Copyright 2026 Signal Messenger, LLC
|
||||
* SPDX-License-Identifier: AGPL-3.0-only
|
||||
*/
|
||||
|
||||
package org.signal.mediasend
|
||||
|
||||
import androidx.compose.foundation.layout.Arrangement.spacedBy
|
||||
import androidx.compose.foundation.layout.Row
|
||||
import androidx.compose.foundation.layout.heightIn
|
||||
import androidx.compose.foundation.layout.padding
|
||||
import androidx.compose.foundation.layout.size
|
||||
import androidx.compose.foundation.shape.RoundedCornerShape
|
||||
import androidx.compose.material3.Icon
|
||||
import androidx.compose.material3.MaterialTheme
|
||||
import androidx.compose.material3.Surface
|
||||
import androidx.compose.material3.Text
|
||||
import androidx.compose.runtime.Composable
|
||||
import androidx.compose.ui.Alignment
|
||||
import androidx.compose.ui.Modifier
|
||||
import androidx.compose.ui.res.pluralStringResource
|
||||
import androidx.compose.ui.res.stringResource
|
||||
import androidx.compose.ui.unit.dp
|
||||
import org.signal.core.ui.compose.DayNightPreviews
|
||||
import org.signal.core.ui.compose.Previews
|
||||
import org.signal.core.ui.compose.SignalIcons
|
||||
import org.signal.core.ui.compose.theme.SignalTheme
|
||||
|
||||
/**
|
||||
* Renders a [ToastEvent]. Showing and hiding it is the caller's job.
|
||||
*/
|
||||
@Composable
|
||||
internal fun MediaSendToast(
|
||||
event: ToastEvent,
|
||||
modifier: Modifier = Modifier
|
||||
) {
|
||||
Surface(
|
||||
shape = RoundedCornerShape(18.dp),
|
||||
color = SignalTheme.colors.colorSurface2,
|
||||
contentColor = MaterialTheme.colorScheme.onSurface,
|
||||
shadowElevation = 8.dp,
|
||||
modifier = modifier
|
||||
) {
|
||||
Row(
|
||||
verticalAlignment = Alignment.CenterVertically,
|
||||
horizontalArrangement = spacedBy(8.dp),
|
||||
modifier = Modifier
|
||||
.heightIn(min = 44.dp)
|
||||
.padding(horizontal = 21.dp)
|
||||
) {
|
||||
Icon(
|
||||
imageVector = event.icon.imageVector,
|
||||
contentDescription = null,
|
||||
modifier = Modifier.size(24.dp)
|
||||
)
|
||||
|
||||
Text(
|
||||
text = when (val message = event.message) {
|
||||
is ToastMessage.Text -> stringResource(message.id)
|
||||
is ToastMessage.Quantity -> pluralStringResource(message.id, message.count, message.count)
|
||||
},
|
||||
style = MaterialTheme.typography.bodyMedium
|
||||
)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@DayNightPreviews
|
||||
@Composable
|
||||
private fun MediaSendToastPreview() {
|
||||
Previews.Preview {
|
||||
MediaSendToast(
|
||||
event = ToastEvent(
|
||||
icon = SignalIcons.QualityHigh,
|
||||
message = ToastMessage.Text(R.string.MediaReviewFragment__photo_set_to_high_quality)
|
||||
)
|
||||
)
|
||||
}
|
||||
}
|
||||
|
||||
@DayNightPreviews
|
||||
@Composable
|
||||
private fun MediaSendToastQuantityPreview() {
|
||||
Previews.Preview {
|
||||
MediaSendToast(
|
||||
event = ToastEvent(
|
||||
icon = SignalIcons.QualityHighSlash,
|
||||
message = ToastMessage.Quantity(R.plurals.MediaReviewFragment__items_set_to_standard_quality, 3)
|
||||
)
|
||||
)
|
||||
}
|
||||
}
|
||||
@@ -42,6 +42,7 @@ import org.signal.core.models.media.MediaFolder
|
||||
import org.signal.core.ui.compose.DialogController
|
||||
import org.signal.core.ui.compose.DialogResult
|
||||
import org.signal.core.ui.compose.PermissionController
|
||||
import org.signal.core.ui.compose.SignalIcons
|
||||
import org.signal.core.ui.compose.Snackbars
|
||||
import org.signal.core.ui.util.StorageUtil
|
||||
import org.signal.core.util.ContentTypeUtil
|
||||
@@ -124,6 +125,9 @@ class MediaSendViewModel(
|
||||
private val internalSnackbarEvents: Channel<SnackbarEvent> = Channel(Channel.BUFFERED)
|
||||
internal val snackbarEvents: Flow<SnackbarEvent> = internalSnackbarEvents.receiveAsFlow()
|
||||
|
||||
private val internalToastEvents: Channel<ToastEvent> = Channel(Channel.BUFFERED)
|
||||
internal val toastEvents: Flow<ToastEvent> = internalToastEvents.receiveAsFlow()
|
||||
|
||||
internal val usernameScannedDialog = DialogController<String>()
|
||||
internal val linkedDeviceScannedDialog = DialogController<Unit>()
|
||||
internal val saveToStorageDialog = DialogController<Unit>()
|
||||
@@ -352,8 +356,8 @@ class MediaSendViewModel(
|
||||
backStack.goToFolders()
|
||||
}
|
||||
|
||||
MediaEditScreenEvent.ToggleMediaQuality -> {
|
||||
setSentMediaQuality(state.value.sentMediaQuality.next())
|
||||
is MediaEditScreenEvent.SetMediaQuality -> {
|
||||
setSentMediaQuality(mediaEditScreenEvent.quality)
|
||||
}
|
||||
|
||||
MediaEditScreenEvent.ToggleViewOnce -> {
|
||||
@@ -839,6 +843,9 @@ class MediaSendViewModel(
|
||||
repository.sentMediaQuality = sentMediaQuality
|
||||
preUploadController.cancelAllUploads()
|
||||
|
||||
// Confirmed from here rather than from the picker so that the fallback in onVideoRecorded is reported too.
|
||||
qualityToastEvent(sentMediaQuality, snapshot.selectedMedia)?.let { internalToastEvents.trySend(it) }
|
||||
|
||||
// Re-clamp video durations based on new quality
|
||||
var videoTrimmed = false
|
||||
snapshot.selectedMedia.forEach { mediaItem ->
|
||||
@@ -865,6 +872,44 @@ class MediaSendViewModel(
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Copy confirming a move to [quality], which names the media itself when there is only one item and counts them
|
||||
* otherwise. Null for a lone attachment that is neither a video nor an image, which there is nothing to say about.
|
||||
*/
|
||||
private fun qualityToastEvent(quality: SentMediaQuality, media: List<Media>): ToastEvent? {
|
||||
if (media.isEmpty()) {
|
||||
return null
|
||||
}
|
||||
|
||||
val isHigh = quality == SentMediaQuality.HIGH
|
||||
val single = media.singleOrNull()
|
||||
|
||||
val message = when {
|
||||
single == null -> ToastMessage.Quantity(
|
||||
id = if (isHigh) R.plurals.MediaReviewFragment__items_set_to_high_quality else R.plurals.MediaReviewFragment__items_set_to_standard_quality,
|
||||
count = media.size
|
||||
)
|
||||
|
||||
isNonGifVideo(single) -> ToastMessage.Text(
|
||||
if (isHigh) R.string.MediaReviewFragment__video_set_to_high_quality else R.string.MediaReviewFragment__video_set_to_standard_quality
|
||||
)
|
||||
|
||||
ContentTypeUtil.isImageType(single.contentType) -> ToastMessage.Text(
|
||||
if (isHigh) R.string.MediaReviewFragment__photo_set_to_high_quality else R.string.MediaReviewFragment__photo_set_to_standard_quality
|
||||
)
|
||||
|
||||
else -> {
|
||||
Log.i(TAG, "No quality confirmation for an attachment of type: ${single.contentType}")
|
||||
return null
|
||||
}
|
||||
}
|
||||
|
||||
return ToastEvent(
|
||||
icon = if (isHigh) SignalIcons.QualityHigh else SignalIcons.QualityHighSlash,
|
||||
message = message
|
||||
)
|
||||
}
|
||||
|
||||
//endregion
|
||||
|
||||
//region Video Editing
|
||||
@@ -1053,7 +1098,7 @@ class MediaSendViewModel(
|
||||
|
||||
/**
|
||||
* Flips view-once. Turning it on drops any message the user had already typed, since a view-once send cannot carry
|
||||
* a body, and confirms the change with a snackbar.
|
||||
* a body, and confirms the change with a toast.
|
||||
*/
|
||||
fun toggleViewOnce() {
|
||||
updateState { copy(viewOnceToggleState = viewOnceToggleState.next()) }
|
||||
@@ -1069,13 +1114,16 @@ class MediaSendViewModel(
|
||||
ContentTypeUtil.isVideoType(focusedMedia.contentType) &&
|
||||
!focusedMedia.isVideoGif
|
||||
|
||||
internalSnackbarEvents.trySend(
|
||||
SnackbarEvent(
|
||||
message = if (isVideo) {
|
||||
R.string.MediaSendViewModel__video_set_to_view_once
|
||||
} else {
|
||||
R.string.MediaSendViewModel__photo_set_to_view_once
|
||||
}
|
||||
internalToastEvents.trySend(
|
||||
ToastEvent(
|
||||
icon = SignalIcons.ViewOnce,
|
||||
message = ToastMessage.Text(
|
||||
if (isVideo) {
|
||||
R.string.MediaSendViewModel__video_set_to_view_once
|
||||
} else {
|
||||
R.string.MediaSendViewModel__photo_set_to_view_once
|
||||
}
|
||||
)
|
||||
)
|
||||
)
|
||||
}
|
||||
|
||||
@@ -0,0 +1,27 @@
|
||||
/*
|
||||
* Copyright 2026 Signal Messenger, LLC
|
||||
* SPDX-License-Identifier: AGPL-3.0-only
|
||||
*/
|
||||
|
||||
package org.signal.mediasend
|
||||
|
||||
import androidx.annotation.PluralsRes
|
||||
import androidx.annotation.StringRes
|
||||
import org.signal.core.ui.compose.SignalIcons
|
||||
|
||||
/**
|
||||
* A brief confirmation of something the user just did, shown over the middle of the screen rather than as a snackbar so
|
||||
* that it does not sit on top of the controls it is reporting on.
|
||||
*/
|
||||
internal data class ToastEvent(
|
||||
val icon: SignalIcons,
|
||||
val message: ToastMessage
|
||||
)
|
||||
|
||||
/**
|
||||
* The copy for a [ToastEvent], which is either a plain string or one counting the items it applies to.
|
||||
*/
|
||||
internal sealed interface ToastMessage {
|
||||
data class Text(@get:StringRes val id: Int) : ToastMessage
|
||||
data class Quantity(@get:PluralsRes val id: Int, val count: Int) : ToastMessage
|
||||
}
|
||||
@@ -6,6 +6,7 @@
|
||||
package org.signal.mediasend.edit
|
||||
|
||||
import org.signal.core.models.media.Media
|
||||
import org.signal.mediasend.SentMediaQuality
|
||||
import org.signal.mediasend.edit.image.BrushTool
|
||||
import org.signal.mediasend.edit.video.VideoTrimData
|
||||
|
||||
@@ -19,7 +20,7 @@ sealed interface MediaEditScreenEvent {
|
||||
data class ScheduleSendClick(val option: ScheduleSendOption) : MediaEditScreenEvent
|
||||
data object NavigateBack : MediaEditScreenEvent
|
||||
data object NavigateToGallery : MediaEditScreenEvent
|
||||
data object ToggleMediaQuality : MediaEditScreenEvent
|
||||
data class SetMediaQuality(val quality: SentMediaQuality) : MediaEditScreenEvent
|
||||
data object ToggleViewOnce : MediaEditScreenEvent
|
||||
data class BrushWidthChanged(val tool: BrushTool, val fraction: Float) : MediaEditScreenEvent
|
||||
data class ToggleBlurFaces(val enabled: Boolean) : MediaEditScreenEvent
|
||||
|
||||
@@ -17,6 +17,10 @@ import androidx.compose.foundation.shape.RoundedCornerShape
|
||||
import androidx.compose.material3.Icon
|
||||
import androidx.compose.material3.MaterialTheme
|
||||
import androidx.compose.runtime.Composable
|
||||
import androidx.compose.runtime.getValue
|
||||
import androidx.compose.runtime.mutableStateOf
|
||||
import androidx.compose.runtime.saveable.rememberSaveable
|
||||
import androidx.compose.runtime.setValue
|
||||
import androidx.compose.ui.Modifier
|
||||
import androidx.compose.ui.graphics.vector.ImageVector
|
||||
import androidx.compose.ui.platform.testTag
|
||||
@@ -96,13 +100,23 @@ internal fun MediaEditorToolbarSharedButtons(
|
||||
onEvent: (MediaEditScreenEvent) -> Unit
|
||||
) {
|
||||
if (isQualityVisible(state, editorState)) {
|
||||
var isSelectingQuality by rememberSaveable { mutableStateOf(false) }
|
||||
|
||||
if (isSelectingQuality) {
|
||||
QualitySelectorBottomSheet(
|
||||
quality = state.sentMediaQuality,
|
||||
onQualitySelected = { onEvent(MediaEditScreenEvent.SetMediaQuality(it)) },
|
||||
onDismiss = { isSelectingQuality = false }
|
||||
)
|
||||
}
|
||||
|
||||
MediaEditorToolbarButton(
|
||||
imageVector = if (state.sentMediaQuality == SentMediaQuality.HIGH) {
|
||||
SignalIcons.QualityHigh.imageVector
|
||||
} else {
|
||||
SignalIcons.QualityHighSlash.imageVector
|
||||
},
|
||||
onClick = { onEvent(MediaEditScreenEvent.ToggleMediaQuality) },
|
||||
onClick = { isSelectingQuality = true },
|
||||
modifier = Modifier.testTag(TestTags.MEDIA_EDITOR_TOOLBAR_QUALITY_BUTTON)
|
||||
)
|
||||
}
|
||||
|
||||
+137
@@ -0,0 +1,137 @@
|
||||
/*
|
||||
* Copyright 2026 Signal Messenger, LLC
|
||||
* SPDX-License-Identifier: AGPL-3.0-only
|
||||
*/
|
||||
|
||||
package org.signal.mediasend.edit
|
||||
|
||||
import android.content.res.Configuration
|
||||
import androidx.compose.foundation.layout.Arrangement
|
||||
import androidx.compose.foundation.layout.Column
|
||||
import androidx.compose.foundation.layout.Row
|
||||
import androidx.compose.foundation.layout.defaultMinSize
|
||||
import androidx.compose.foundation.layout.fillMaxWidth
|
||||
import androidx.compose.foundation.layout.padding
|
||||
import androidx.compose.foundation.shape.RoundedCornerShape
|
||||
import androidx.compose.material3.Button
|
||||
import androidx.compose.material3.ButtonDefaults
|
||||
import androidx.compose.material3.ExperimentalMaterial3Api
|
||||
import androidx.compose.material3.MaterialTheme
|
||||
import androidx.compose.material3.Text
|
||||
import androidx.compose.material3.rememberModalBottomSheetState
|
||||
import androidx.compose.runtime.Composable
|
||||
import androidx.compose.runtime.rememberCoroutineScope
|
||||
import androidx.compose.ui.Alignment
|
||||
import androidx.compose.ui.Modifier
|
||||
import androidx.compose.ui.res.stringResource
|
||||
import androidx.compose.ui.tooling.preview.Preview
|
||||
import androidx.compose.ui.unit.dp
|
||||
import org.signal.core.ui.compose.BottomSheets
|
||||
import org.signal.core.ui.compose.Previews
|
||||
import org.signal.core.ui.compose.dismissWithAnimation
|
||||
import org.signal.mediasend.R
|
||||
import org.signal.mediasend.SentMediaQuality
|
||||
|
||||
/**
|
||||
* Modal bottom sheet offering the media quality options, dismissing itself once one is picked.
|
||||
*/
|
||||
@OptIn(ExperimentalMaterial3Api::class)
|
||||
@Composable
|
||||
internal fun QualitySelectorBottomSheet(
|
||||
quality: SentMediaQuality,
|
||||
onQualitySelected: (SentMediaQuality) -> Unit,
|
||||
onDismiss: () -> Unit
|
||||
) {
|
||||
val sheetState = rememberModalBottomSheetState()
|
||||
val scope = rememberCoroutineScope()
|
||||
|
||||
BottomSheets.BottomSheet(
|
||||
onDismissRequest = { sheetState.dismissWithAnimation(scope, onComplete = onDismiss) },
|
||||
sheetState = sheetState
|
||||
) {
|
||||
QualitySelectorSheetContent(
|
||||
quality = quality,
|
||||
onQualitySelected = { selected ->
|
||||
sheetState.dismissWithAnimation(scope) {
|
||||
onDismiss()
|
||||
onQualitySelected(selected)
|
||||
}
|
||||
}
|
||||
)
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Bottom sheet content for selecting the media quality (Standard vs. High) when sending media. The drag handle belongs
|
||||
* to the sheet hosting this, so that a modal sheet can supply its own.
|
||||
*/
|
||||
@Composable
|
||||
fun QualitySelectorSheetContent(
|
||||
quality: SentMediaQuality,
|
||||
onQualitySelected: (SentMediaQuality) -> Unit
|
||||
) {
|
||||
Column(horizontalAlignment = Alignment.CenterHorizontally) {
|
||||
Text(
|
||||
text = stringResource(id = R.string.QualitySelectorBottomSheetDialog__media_quality),
|
||||
style = MaterialTheme.typography.titleLarge,
|
||||
color = MaterialTheme.colorScheme.onSurface,
|
||||
modifier = Modifier.padding(top = 20.dp, bottom = 14.dp)
|
||||
)
|
||||
Row(
|
||||
horizontalArrangement = Arrangement.SpaceEvenly,
|
||||
modifier = Modifier
|
||||
.fillMaxWidth()
|
||||
.padding(bottom = 20.dp)
|
||||
) {
|
||||
val standardQuality = quality == SentMediaQuality.STANDARD
|
||||
Button(
|
||||
modifier = Modifier
|
||||
.defaultMinSize(minWidth = 174.dp, minHeight = 60.dp)
|
||||
.weight(1f),
|
||||
onClick = { onQualitySelected(SentMediaQuality.STANDARD) },
|
||||
shape = RoundedCornerShape(percent = 25),
|
||||
colors = if (standardQuality) ButtonDefaults.filledTonalButtonColors() else ButtonDefaults.textButtonColors(),
|
||||
elevation = if (standardQuality) ButtonDefaults.filledTonalButtonElevation() else null,
|
||||
contentPadding = if (standardQuality) ButtonDefaults.ContentPadding else ButtonDefaults.TextButtonContentPadding
|
||||
) {
|
||||
ButtonLabel(title = stringResource(id = R.string.QualitySelectorBottomSheetDialog__standard), description = stringResource(id = R.string.QualitySelectorBottomSheetDialog__faster_less_data))
|
||||
}
|
||||
Button(
|
||||
modifier = Modifier
|
||||
.defaultMinSize(minWidth = 174.dp, minHeight = 60.dp)
|
||||
.weight(1f),
|
||||
onClick = { onQualitySelected(SentMediaQuality.HIGH) },
|
||||
shape = RoundedCornerShape(percent = 25),
|
||||
colors = if (!standardQuality) ButtonDefaults.filledTonalButtonColors() else ButtonDefaults.textButtonColors(),
|
||||
elevation = if (!standardQuality) ButtonDefaults.filledTonalButtonElevation() else null,
|
||||
contentPadding = if (!standardQuality) ButtonDefaults.ContentPadding else ButtonDefaults.TextButtonContentPadding
|
||||
) {
|
||||
ButtonLabel(title = stringResource(id = R.string.QualitySelectorBottomSheetDialog__high), description = stringResource(id = R.string.QualitySelectorBottomSheetDialog__slower_more_data))
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@Composable
|
||||
private fun ButtonLabel(title: String, description: String) {
|
||||
Column(horizontalAlignment = Alignment.CenterHorizontally) {
|
||||
Text(text = title, color = MaterialTheme.colorScheme.onSurface)
|
||||
Text(text = description, color = MaterialTheme.colorScheme.onSurface, style = MaterialTheme.typography.bodySmall)
|
||||
}
|
||||
}
|
||||
|
||||
@Preview(showBackground = true, uiMode = Configuration.UI_MODE_NIGHT_YES)
|
||||
@Composable
|
||||
private fun QualitySelectorSheetContentStandardPreview() {
|
||||
Previews.Preview {
|
||||
QualitySelectorSheetContent(SentMediaQuality.STANDARD) {}
|
||||
}
|
||||
}
|
||||
|
||||
@Preview(showBackground = true, uiMode = Configuration.UI_MODE_NIGHT_YES)
|
||||
@Composable
|
||||
private fun QualitySelectorSheetContentHighPreview() {
|
||||
Previews.Preview {
|
||||
QualitySelectorSheetContent(SentMediaQuality.HIGH) {}
|
||||
}
|
||||
}
|
||||
@@ -18,6 +18,16 @@
|
||||
<string name="SentMediaQuality__high">Hoog</string>
|
||||
<!-- Setting option that can be selected to default media to be sent as standard quality by default -->
|
||||
<string name="SentMediaQuality__standard">Standaard</string>
|
||||
<!-- Label for our standard quality media conversion. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__standard">Standaard</string>
|
||||
<!-- Description for our standard quality media conversion. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__faster_less_data">Vinniger, minder data</string>
|
||||
<!-- Label for our high quality media conversion. This has better quality than standard. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__high">Hoog</string>
|
||||
<!-- Label for our high quality media conversion. This has better quality than standard. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__slower_more_data">Stadiger, meer data</string>
|
||||
<!-- Title heading for our media conversion quality selector. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__media_quality">Mediakwaliteit</string>
|
||||
<!-- Title of the screen where the user browses their device gallery to pick media to send. -->
|
||||
<string name="MediaSelectScreen__gallery">Galery</string>
|
||||
<!-- Accessibility description for the button that advances from media selection to the next step in the send flow. -->
|
||||
@@ -113,4 +123,22 @@
|
||||
<string name="LinkedDeviceScannedDialog__it_looks_like_youre_trying">Dit lyk of jy \'n Signal-toestel probeer koppel. Tik op Gaan voort en tik dan op \"Koppel \'n nuwe toestel\" en skandeer die QR-kode weer.</string>
|
||||
<!-- The label of a dialog asking the user if they would like to continue to the linked device settings screen. -->
|
||||
<string name="LinkedDeviceScannedDialog__device_link_dialog_continue">Gaan voort</string>
|
||||
<!-- Small notification presented to the user when they set their video to be sent in high visual quality. -->
|
||||
<string name="MediaReviewFragment__video_set_to_high_quality">Video op hoë kwaliteit gestel</string>
|
||||
<!-- Small notification presented to the user when they set their video to be sent in standard (lower than high) visual quality. -->
|
||||
<string name="MediaReviewFragment__video_set_to_standard_quality">Video op standaardkwaliteit gestel</string>
|
||||
<!-- Small notification presented to the user when they set their still image to be sent in high visual quality. -->
|
||||
<string name="MediaReviewFragment__photo_set_to_high_quality">Foto op hoë kwaliteit gestel</string>
|
||||
<!-- Small notification presented to the user when they set their still image to be sent in standard (lower than high) visual quality. -->
|
||||
<string name="MediaReviewFragment__photo_set_to_standard_quality">Foto op standaardkwaliteit gestel</string>
|
||||
<!-- Small notification presented to the user when they set multiple media items to be sent in high visual quality. -->
|
||||
<plurals name="MediaReviewFragment__items_set_to_high_quality">
|
||||
<item quantity="one">%1$d item op hoë kwaliteit gestel</item>
|
||||
<item quantity="other">%1$d items op hoë kwaliteit gestel</item>
|
||||
</plurals>
|
||||
<!-- Small notification presented to the user when they set multiple media items to be sent in standard (lower than high) visual quality. -->
|
||||
<plurals name="MediaReviewFragment__items_set_to_standard_quality">
|
||||
<item quantity="one">%1$d item op standaardkwaliteit gestel</item>
|
||||
<item quantity="other">%1$d items op standaardkwaliteit gestel</item>
|
||||
</plurals>
|
||||
</resources>
|
||||
|
||||
@@ -18,6 +18,16 @@
|
||||
<string name="SentMediaQuality__high">عالية الدقة</string>
|
||||
<!-- Setting option that can be selected to default media to be sent as standard quality by default -->
|
||||
<string name="SentMediaQuality__standard">قياسية</string>
|
||||
<!-- Label for our standard quality media conversion. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__standard">قياسية</string>
|
||||
<!-- Description for our standard quality media conversion. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__faster_less_data">أسرع، بيانات أقل</string>
|
||||
<!-- Label for our high quality media conversion. This has better quality than standard. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__high">عالي الدقة</string>
|
||||
<!-- Label for our high quality media conversion. This has better quality than standard. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__slower_more_data">أبطأ، بيانات أكثر</string>
|
||||
<!-- Title heading for our media conversion quality selector. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__media_quality">جودة الوسائط</string>
|
||||
<!-- Title of the screen where the user browses their device gallery to pick media to send. -->
|
||||
<string name="MediaSelectScreen__gallery">المعرض</string>
|
||||
<!-- Accessibility description for the button that advances from media selection to the next step in the send flow. -->
|
||||
@@ -117,4 +127,30 @@
|
||||
<string name="LinkedDeviceScannedDialog__it_looks_like_youre_trying">يَبدو أنك تُحاول ربط جهاز يستخدم سيجنال. انقر على \"متابعة\" ثم انقر على \"ربط جهاز جديد\" وامسح كود الـ QR من جديد.</string>
|
||||
<!-- The label of a dialog asking the user if they would like to continue to the linked device settings screen. -->
|
||||
<string name="LinkedDeviceScannedDialog__device_link_dialog_continue">متابعة</string>
|
||||
<!-- Small notification presented to the user when they set their video to be sent in high visual quality. -->
|
||||
<string name="MediaReviewFragment__video_set_to_high_quality">تمَّ تحديد جودة الفيديو للجودة العالية</string>
|
||||
<!-- Small notification presented to the user when they set their video to be sent in standard (lower than high) visual quality. -->
|
||||
<string name="MediaReviewFragment__video_set_to_standard_quality">تمَّ تحديد جودة الفيديو للجودة القياسية</string>
|
||||
<!-- Small notification presented to the user when they set their still image to be sent in high visual quality. -->
|
||||
<string name="MediaReviewFragment__photo_set_to_high_quality">تمَّ تحديد جودة الصورة للجودة العالية</string>
|
||||
<!-- Small notification presented to the user when they set their still image to be sent in standard (lower than high) visual quality. -->
|
||||
<string name="MediaReviewFragment__photo_set_to_standard_quality">تمَّ تحديد جودة الصورة للجودة القياسية</string>
|
||||
<!-- Small notification presented to the user when they set multiple media items to be sent in high visual quality. -->
|
||||
<plurals name="MediaReviewFragment__items_set_to_high_quality">
|
||||
<item quantity="zero">تمَّ تحديد جودة %1$d عناصر للجودة العالية</item>
|
||||
<item quantity="one">تمَّ تحديد جودة %1$d عنصر للجودة العالية</item>
|
||||
<item quantity="two">تمَّ تحديد جودة %1$d عنصرين للجودة العالية</item>
|
||||
<item quantity="few">تمَّ تحديد جودة %1$d عناصر للجودة العالية</item>
|
||||
<item quantity="many">تمَّ تحديد جودة %1$d عنصرًا للجودة العالية</item>
|
||||
<item quantity="other">تمَّ تحديد جودة %1$d عنصر للجودة العالية</item>
|
||||
</plurals>
|
||||
<!-- Small notification presented to the user when they set multiple media items to be sent in standard (lower than high) visual quality. -->
|
||||
<plurals name="MediaReviewFragment__items_set_to_standard_quality">
|
||||
<item quantity="zero">تمَّ تحديد جودة %1$d عناصر للجودة القياسية</item>
|
||||
<item quantity="one">تمَّ تحديد جودة %1$d عنصر للجودة القياسية</item>
|
||||
<item quantity="two">تمَّ تحديد جودة %1$d عنصرين للجودة القياسية</item>
|
||||
<item quantity="few">تمَّ تحديد جودة %1$d عناصر للجودة القياسية</item>
|
||||
<item quantity="many">تمَّ تحديد جودة %1$d عنصرًا للجودة القياسية</item>
|
||||
<item quantity="other">تمَّ تحديد جودة %1$d عنصر للجودة القياسية</item>
|
||||
</plurals>
|
||||
</resources>
|
||||
|
||||
@@ -18,6 +18,16 @@
|
||||
<string name="SentMediaQuality__high">Yüksək</string>
|
||||
<!-- Setting option that can be selected to default media to be sent as standard quality by default -->
|
||||
<string name="SentMediaQuality__standard">Standard</string>
|
||||
<!-- Label for our standard quality media conversion. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__standard">Standard</string>
|
||||
<!-- Description for our standard quality media conversion. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__faster_less_data">Sürətli, daha az verilənlər</string>
|
||||
<!-- Label for our high quality media conversion. This has better quality than standard. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__high">Yüksək</string>
|
||||
<!-- Label for our high quality media conversion. This has better quality than standard. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__slower_more_data">Yavaş, daha çox verilənlər</string>
|
||||
<!-- Title heading for our media conversion quality selector. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__media_quality">Media keyfiyyəti</string>
|
||||
<!-- Title of the screen where the user browses their device gallery to pick media to send. -->
|
||||
<string name="MediaSelectScreen__gallery">Qalereya</string>
|
||||
<!-- Accessibility description for the button that advances from media selection to the next step in the send flow. -->
|
||||
@@ -113,4 +123,22 @@
|
||||
<string name="LinkedDeviceScannedDialog__it_looks_like_youre_trying">Görünür, bir Signal cihazını əlaqələndirməyə çalışırsınız. \"Davam et\" düyməsinə basdıqdan sonra \"Yeni cihazla əlaqələndir\" seçiminə toxunub, QR kodunu yenidən skan edin.</string>
|
||||
<!-- The label of a dialog asking the user if they would like to continue to the linked device settings screen. -->
|
||||
<string name="LinkedDeviceScannedDialog__device_link_dialog_continue">Davam et</string>
|
||||
<!-- Small notification presented to the user when they set their video to be sent in high visual quality. -->
|
||||
<string name="MediaReviewFragment__video_set_to_high_quality">Video yüksək keyfiyyətə sazlanıb</string>
|
||||
<!-- Small notification presented to the user when they set their video to be sent in standard (lower than high) visual quality. -->
|
||||
<string name="MediaReviewFragment__video_set_to_standard_quality">Video standart keyfiyyətdə sazlandı</string>
|
||||
<!-- Small notification presented to the user when they set their still image to be sent in high visual quality. -->
|
||||
<string name="MediaReviewFragment__photo_set_to_high_quality">Fotoşəkil yüksək keyfiyyətə sazlanıb</string>
|
||||
<!-- Small notification presented to the user when they set their still image to be sent in standard (lower than high) visual quality. -->
|
||||
<string name="MediaReviewFragment__photo_set_to_standard_quality">Fotoşəkil standart keyfiyyətə sazlanıb</string>
|
||||
<!-- Small notification presented to the user when they set multiple media items to be sent in high visual quality. -->
|
||||
<plurals name="MediaReviewFragment__items_set_to_high_quality">
|
||||
<item quantity="one">%1$d fayl yüksək keyfiyyətə sazlanıb</item>
|
||||
<item quantity="other">%1$d fayl yüksək keyfiyyətə sazlanıb</item>
|
||||
</plurals>
|
||||
<!-- Small notification presented to the user when they set multiple media items to be sent in standard (lower than high) visual quality. -->
|
||||
<plurals name="MediaReviewFragment__items_set_to_standard_quality">
|
||||
<item quantity="one">%1$d fayl standart keyfiyyətə sazlanıb</item>
|
||||
<item quantity="other">%1$d fayl standart keyfiyyətə sazlanıb</item>
|
||||
</plurals>
|
||||
</resources>
|
||||
|
||||
@@ -18,6 +18,16 @@
|
||||
<string name="SentMediaQuality__high">Высокі</string>
|
||||
<!-- Setting option that can be selected to default media to be sent as standard quality by default -->
|
||||
<string name="SentMediaQuality__standard">Стандартнае</string>
|
||||
<!-- Label for our standard quality media conversion. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__standard">Стандартнае</string>
|
||||
<!-- Description for our standard quality media conversion. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__faster_less_data">Хутчэй, менш даных</string>
|
||||
<!-- Label for our high quality media conversion. This has better quality than standard. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__high">Высокая</string>
|
||||
<!-- Label for our high quality media conversion. This has better quality than standard. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__slower_more_data">Павольней, больш даных</string>
|
||||
<!-- Title heading for our media conversion quality selector. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__media_quality">Якасць медыяфайла</string>
|
||||
<!-- Title of the screen where the user browses their device gallery to pick media to send. -->
|
||||
<string name="MediaSelectScreen__gallery">Галерэя</string>
|
||||
<!-- Accessibility description for the button that advances from media selection to the next step in the send flow. -->
|
||||
@@ -115,4 +125,26 @@
|
||||
<string name="LinkedDeviceScannedDialog__it_looks_like_youre_trying">Здаецца, вы спрабуеце звязаць прыладу Signal. Націсніце «Працягнуць» і потым націсніце «Звязаць новую прыладу», пасля чаго нанова праскануйце QR-код.</string>
|
||||
<!-- The label of a dialog asking the user if they would like to continue to the linked device settings screen. -->
|
||||
<string name="LinkedDeviceScannedDialog__device_link_dialog_continue">Працягнуць</string>
|
||||
<!-- Small notification presented to the user when they set their video to be sent in high visual quality. -->
|
||||
<string name="MediaReviewFragment__video_set_to_high_quality">Відэа ў высокай якасці</string>
|
||||
<!-- Small notification presented to the user when they set their video to be sent in standard (lower than high) visual quality. -->
|
||||
<string name="MediaReviewFragment__video_set_to_standard_quality">Стандартная якасць відэа</string>
|
||||
<!-- Small notification presented to the user when they set their still image to be sent in high visual quality. -->
|
||||
<string name="MediaReviewFragment__photo_set_to_high_quality">Фота ў высокай якасці</string>
|
||||
<!-- Small notification presented to the user when they set their still image to be sent in standard (lower than high) visual quality. -->
|
||||
<string name="MediaReviewFragment__photo_set_to_standard_quality">Стандартная якасць фота</string>
|
||||
<!-- Small notification presented to the user when they set multiple media items to be sent in high visual quality. -->
|
||||
<plurals name="MediaReviewFragment__items_set_to_high_quality">
|
||||
<item quantity="one">%1$d элемент у высокай якасці</item>
|
||||
<item quantity="few">%1$d элементы ў высокай якасці</item>
|
||||
<item quantity="many">%1$d элементаў у высокай якасці</item>
|
||||
<item quantity="other">%1$d элементаў у высокай якасці</item>
|
||||
</plurals>
|
||||
<!-- Small notification presented to the user when they set multiple media items to be sent in standard (lower than high) visual quality. -->
|
||||
<plurals name="MediaReviewFragment__items_set_to_standard_quality">
|
||||
<item quantity="one">%1$d элемент у стандартнай якасці</item>
|
||||
<item quantity="few">%1$d элементы ў стандартнай якасці</item>
|
||||
<item quantity="many">%1$d элементаў у стандартнай якасці</item>
|
||||
<item quantity="other">%1$d элементаў у стандартнай якасці</item>
|
||||
</plurals>
|
||||
</resources>
|
||||
|
||||
@@ -18,6 +18,16 @@
|
||||
<string name="SentMediaQuality__high">Високо</string>
|
||||
<!-- Setting option that can be selected to default media to be sent as standard quality by default -->
|
||||
<string name="SentMediaQuality__standard">Стандартно</string>
|
||||
<!-- Label for our standard quality media conversion. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__standard">Стандартно</string>
|
||||
<!-- Description for our standard quality media conversion. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__faster_less_data">По-бързо, по-малко данни</string>
|
||||
<!-- Label for our high quality media conversion. This has better quality than standard. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__high">Високо</string>
|
||||
<!-- Label for our high quality media conversion. This has better quality than standard. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__slower_more_data">По-бавно, повече данни</string>
|
||||
<!-- Title heading for our media conversion quality selector. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__media_quality">Качество на мултимедията</string>
|
||||
<!-- Title of the screen where the user browses their device gallery to pick media to send. -->
|
||||
<string name="MediaSelectScreen__gallery">Галерия</string>
|
||||
<!-- Accessibility description for the button that advances from media selection to the next step in the send flow. -->
|
||||
@@ -113,4 +123,22 @@
|
||||
<string name="LinkedDeviceScannedDialog__it_looks_like_youre_trying">Изглежда се опитвате да свържете устройство със Signal. Докоснете „продължаване“ и след това докоснете „Свързване на ново устройство“ и сканирайте QR отново.</string>
|
||||
<!-- The label of a dialog asking the user if they would like to continue to the linked device settings screen. -->
|
||||
<string name="LinkedDeviceScannedDialog__device_link_dialog_continue">Продължаване</string>
|
||||
<!-- Small notification presented to the user when they set their video to be sent in high visual quality. -->
|
||||
<string name="MediaReviewFragment__video_set_to_high_quality">Видеото е настроено на високо качество</string>
|
||||
<!-- Small notification presented to the user when they set their video to be sent in standard (lower than high) visual quality. -->
|
||||
<string name="MediaReviewFragment__video_set_to_standard_quality">Видеото е настроено на стандартно качество</string>
|
||||
<!-- Small notification presented to the user when they set their still image to be sent in high visual quality. -->
|
||||
<string name="MediaReviewFragment__photo_set_to_high_quality">Снимката е настроена на високо качество</string>
|
||||
<!-- Small notification presented to the user when they set their still image to be sent in standard (lower than high) visual quality. -->
|
||||
<string name="MediaReviewFragment__photo_set_to_standard_quality">Снимката е настроена на стандартно качество</string>
|
||||
<!-- Small notification presented to the user when they set multiple media items to be sent in high visual quality. -->
|
||||
<plurals name="MediaReviewFragment__items_set_to_high_quality">
|
||||
<item quantity="one">%1$d елемент е настроен на високо качество</item>
|
||||
<item quantity="other">%1$d елемента са настроени на високо качество</item>
|
||||
</plurals>
|
||||
<!-- Small notification presented to the user when they set multiple media items to be sent in standard (lower than high) visual quality. -->
|
||||
<plurals name="MediaReviewFragment__items_set_to_standard_quality">
|
||||
<item quantity="one">%1$d елемент е настроен на стандартно качество</item>
|
||||
<item quantity="other">%1$d елемента са настроени на стандартно качество</item>
|
||||
</plurals>
|
||||
</resources>
|
||||
|
||||
@@ -18,6 +18,16 @@
|
||||
<string name="SentMediaQuality__high">উচ্চ</string>
|
||||
<!-- Setting option that can be selected to default media to be sent as standard quality by default -->
|
||||
<string name="SentMediaQuality__standard">স্ট্যান্ডার্ড</string>
|
||||
<!-- Label for our standard quality media conversion. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__standard">স্ট্যান্ডার্ড</string>
|
||||
<!-- Description for our standard quality media conversion. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__faster_less_data">দ্রুততর, কম ডেটা</string>
|
||||
<!-- Label for our high quality media conversion. This has better quality than standard. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__high">উচ্চ</string>
|
||||
<!-- Label for our high quality media conversion. This has better quality than standard. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__slower_more_data">আরও ধীরগতি, আরও ডেটা</string>
|
||||
<!-- Title heading for our media conversion quality selector. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__media_quality">মিডিয়ার মান</string>
|
||||
<!-- Title of the screen where the user browses their device gallery to pick media to send. -->
|
||||
<string name="MediaSelectScreen__gallery">গ্যাল্যারি</string>
|
||||
<!-- Accessibility description for the button that advances from media selection to the next step in the send flow. -->
|
||||
@@ -113,4 +123,22 @@
|
||||
<string name="LinkedDeviceScannedDialog__it_looks_like_youre_trying">মনে হচ্ছে আপনি একটি Signal ডিভাইস লিংক করার চেষ্টা করছেন। \"এগিয়ে যান\"-এ ট্যাপ করুন এবং তারপর \"একটি নতুন ডিভাইস লিংক করুন\"-এ ট্যাপ করুন এবং আবারো QR কোডটি স্ক্যান করুন।</string>
|
||||
<!-- The label of a dialog asking the user if they would like to continue to the linked device settings screen. -->
|
||||
<string name="LinkedDeviceScannedDialog__device_link_dialog_continue">চলতে থাকুন</string>
|
||||
<!-- Small notification presented to the user when they set their video to be sent in high visual quality. -->
|
||||
<string name="MediaReviewFragment__video_set_to_high_quality">ভিডিও উচ্চ মানে সেট করা হয়েছে</string>
|
||||
<!-- Small notification presented to the user when they set their video to be sent in standard (lower than high) visual quality. -->
|
||||
<string name="MediaReviewFragment__video_set_to_standard_quality">ভিডিও স্ট্যান্ডার্ড কোয়ালিটিতে সেট করা হয়েছে</string>
|
||||
<!-- Small notification presented to the user when they set their still image to be sent in high visual quality. -->
|
||||
<string name="MediaReviewFragment__photo_set_to_high_quality">ছবি উচ্চ মানে সেট করা হয়েছে</string>
|
||||
<!-- Small notification presented to the user when they set their still image to be sent in standard (lower than high) visual quality. -->
|
||||
<string name="MediaReviewFragment__photo_set_to_standard_quality">ছবি স্ট্যান্ডার্ড মানে সেট করা হয়েছে</string>
|
||||
<!-- Small notification presented to the user when they set multiple media items to be sent in high visual quality. -->
|
||||
<plurals name="MediaReviewFragment__items_set_to_high_quality">
|
||||
<item quantity="one">%1$d-টি আইটেম উচ্চ মানে সেট করা হয়েছে</item>
|
||||
<item quantity="other">%1$d-টি আইটেম উচ্চ মানে সেট করা হয়েছে</item>
|
||||
</plurals>
|
||||
<!-- Small notification presented to the user when they set multiple media items to be sent in standard (lower than high) visual quality. -->
|
||||
<plurals name="MediaReviewFragment__items_set_to_standard_quality">
|
||||
<item quantity="one">%1$d-টি আইটেম স্ট্যান্ডার্ড মানে সেট করা হয়েছে</item>
|
||||
<item quantity="other">%1$d-টি আইটেম স্ট্যান্ডার্ড মানে সেট করা হয়েছে</item>
|
||||
</plurals>
|
||||
</resources>
|
||||
|
||||
@@ -18,6 +18,16 @@
|
||||
<string name="SentMediaQuality__high">Visoki</string>
|
||||
<!-- Setting option that can be selected to default media to be sent as standard quality by default -->
|
||||
<string name="SentMediaQuality__standard">Standardni</string>
|
||||
<!-- Label for our standard quality media conversion. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__standard">Standardni</string>
|
||||
<!-- Description for our standard quality media conversion. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__faster_less_data">Brži, manji protok</string>
|
||||
<!-- Label for our high quality media conversion. This has better quality than standard. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__high">Visoki</string>
|
||||
<!-- Label for our high quality media conversion. This has better quality than standard. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__slower_more_data">Sporiji, veći protok</string>
|
||||
<!-- Title heading for our media conversion quality selector. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__media_quality">Kvalitet zapisa</string>
|
||||
<!-- Title of the screen where the user browses their device gallery to pick media to send. -->
|
||||
<string name="MediaSelectScreen__gallery">Galerija</string>
|
||||
<!-- Accessibility description for the button that advances from media selection to the next step in the send flow. -->
|
||||
@@ -115,4 +125,26 @@
|
||||
<string name="LinkedDeviceScannedDialog__it_looks_like_youre_trying">Izgleda da pokušavate povezati Signal uređaj. Dodirnite Nastavi, a zatim dodirnite \"Poveži novi uređaj\" i ponovo skenirajte QR kod.</string>
|
||||
<!-- The label of a dialog asking the user if they would like to continue to the linked device settings screen. -->
|
||||
<string name="LinkedDeviceScannedDialog__device_link_dialog_continue">Nastavi</string>
|
||||
<!-- Small notification presented to the user when they set their video to be sent in high visual quality. -->
|
||||
<string name="MediaReviewFragment__video_set_to_high_quality">Video je postavljen na visoku kvalitetu</string>
|
||||
<!-- Small notification presented to the user when they set their video to be sent in standard (lower than high) visual quality. -->
|
||||
<string name="MediaReviewFragment__video_set_to_standard_quality">Video je postavljen na standardni kvalitet</string>
|
||||
<!-- Small notification presented to the user when they set their still image to be sent in high visual quality. -->
|
||||
<string name="MediaReviewFragment__photo_set_to_high_quality">Fotografija je postavljena na visoku kvalitetu</string>
|
||||
<!-- Small notification presented to the user when they set their still image to be sent in standard (lower than high) visual quality. -->
|
||||
<string name="MediaReviewFragment__photo_set_to_standard_quality">Fotografija je postavljena na standardni kvalitet</string>
|
||||
<!-- Small notification presented to the user when they set multiple media items to be sent in high visual quality. -->
|
||||
<plurals name="MediaReviewFragment__items_set_to_high_quality">
|
||||
<item quantity="one">%1$d stavka je postavljena na visok kvalitet</item>
|
||||
<item quantity="few">%1$d stavke su postavljene na visok kvalitet</item>
|
||||
<item quantity="many">%1$d stavki je postavljeno na visok kvalitet</item>
|
||||
<item quantity="other">%1$d stavki je postavljeno na visok kvalitet</item>
|
||||
</plurals>
|
||||
<!-- Small notification presented to the user when they set multiple media items to be sent in standard (lower than high) visual quality. -->
|
||||
<plurals name="MediaReviewFragment__items_set_to_standard_quality">
|
||||
<item quantity="one">%1$d stavka je postavljena na standardni kvalitet</item>
|
||||
<item quantity="few">%1$d stavke su postavljene na standardni kvalitet</item>
|
||||
<item quantity="many">%1$d stavki je postavljeno na standardni kvalitet</item>
|
||||
<item quantity="other">%1$d stavki je postavljeno na standardni kvalitet</item>
|
||||
</plurals>
|
||||
</resources>
|
||||
|
||||
@@ -18,6 +18,16 @@
|
||||
<string name="SentMediaQuality__high">Alta</string>
|
||||
<!-- Setting option that can be selected to default media to be sent as standard quality by default -->
|
||||
<string name="SentMediaQuality__standard">Estàndard</string>
|
||||
<!-- Label for our standard quality media conversion. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__standard">Estàndard</string>
|
||||
<!-- Description for our standard quality media conversion. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__faster_less_data">Més ràpid, menys dades</string>
|
||||
<!-- Label for our high quality media conversion. This has better quality than standard. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__high">Alta</string>
|
||||
<!-- Label for our high quality media conversion. This has better quality than standard. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__slower_more_data">Més lent, més dades</string>
|
||||
<!-- Title heading for our media conversion quality selector. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__media_quality">Qualitat dels mitjans</string>
|
||||
<!-- Title of the screen where the user browses their device gallery to pick media to send. -->
|
||||
<string name="MediaSelectScreen__gallery">Galeria</string>
|
||||
<!-- Accessibility description for the button that advances from media selection to the next step in the send flow. -->
|
||||
@@ -113,4 +123,22 @@
|
||||
<string name="LinkedDeviceScannedDialog__it_looks_like_youre_trying">Sembla que estàs intentant enllaçar un dispositiu a Signal. Toca \"Continuar\", selecciona \"Vincular un nou dispositiu\" i torna a escanejar el codi QR.</string>
|
||||
<!-- The label of a dialog asking the user if they would like to continue to the linked device settings screen. -->
|
||||
<string name="LinkedDeviceScannedDialog__device_link_dialog_continue">Continua</string>
|
||||
<!-- Small notification presented to the user when they set their video to be sent in high visual quality. -->
|
||||
<string name="MediaReviewFragment__video_set_to_high_quality">Vídeo configurat en alta qualitat</string>
|
||||
<!-- Small notification presented to the user when they set their video to be sent in standard (lower than high) visual quality. -->
|
||||
<string name="MediaReviewFragment__video_set_to_standard_quality">Vídeo configurat en qualitat estàndard</string>
|
||||
<!-- Small notification presented to the user when they set their still image to be sent in high visual quality. -->
|
||||
<string name="MediaReviewFragment__photo_set_to_high_quality">Foto configurada en alta qualitat</string>
|
||||
<!-- Small notification presented to the user when they set their still image to be sent in standard (lower than high) visual quality. -->
|
||||
<string name="MediaReviewFragment__photo_set_to_standard_quality">Foto configurada en qualitat estàndard</string>
|
||||
<!-- Small notification presented to the user when they set multiple media items to be sent in high visual quality. -->
|
||||
<plurals name="MediaReviewFragment__items_set_to_high_quality">
|
||||
<item quantity="one">%1$d element configurat en alta qualitat</item>
|
||||
<item quantity="other">%1$d elements configurats en alta qualitat</item>
|
||||
</plurals>
|
||||
<!-- Small notification presented to the user when they set multiple media items to be sent in standard (lower than high) visual quality. -->
|
||||
<plurals name="MediaReviewFragment__items_set_to_standard_quality">
|
||||
<item quantity="one">%1$d element configurat en qualitat estàndard</item>
|
||||
<item quantity="other">%1$d elements configurats en qualitat estàndard</item>
|
||||
</plurals>
|
||||
</resources>
|
||||
|
||||
@@ -18,6 +18,16 @@
|
||||
<string name="SentMediaQuality__high">Vysoká</string>
|
||||
<!-- Setting option that can be selected to default media to be sent as standard quality by default -->
|
||||
<string name="SentMediaQuality__standard">Standard</string>
|
||||
<!-- Label for our standard quality media conversion. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__standard">Standard</string>
|
||||
<!-- Description for our standard quality media conversion. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__faster_less_data">Rychlejší, méně dat</string>
|
||||
<!-- Label for our high quality media conversion. This has better quality than standard. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__high">Vysoká</string>
|
||||
<!-- Label for our high quality media conversion. This has better quality than standard. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__slower_more_data">Pomalejší, více dat</string>
|
||||
<!-- Title heading for our media conversion quality selector. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__media_quality">Kvalita médií</string>
|
||||
<!-- Title of the screen where the user browses their device gallery to pick media to send. -->
|
||||
<string name="MediaSelectScreen__gallery">Galerie</string>
|
||||
<!-- Accessibility description for the button that advances from media selection to the next step in the send flow. -->
|
||||
@@ -115,4 +125,26 @@
|
||||
<string name="LinkedDeviceScannedDialog__it_looks_like_youre_trying">Zdá se, že se snažíte propojit zařízení Signal. Klepněte na pokračovat a poté klepněte na Propojit nové zařízení a znovu naskenujte QR kód.</string>
|
||||
<!-- The label of a dialog asking the user if they would like to continue to the linked device settings screen. -->
|
||||
<string name="LinkedDeviceScannedDialog__device_link_dialog_continue">Pokračovat</string>
|
||||
<!-- Small notification presented to the user when they set their video to be sent in high visual quality. -->
|
||||
<string name="MediaReviewFragment__video_set_to_high_quality">Video nastaveno na vysokou kvalitu</string>
|
||||
<!-- Small notification presented to the user when they set their video to be sent in standard (lower than high) visual quality. -->
|
||||
<string name="MediaReviewFragment__video_set_to_standard_quality">Video nastaveno na standardní kvalitu</string>
|
||||
<!-- Small notification presented to the user when they set their still image to be sent in high visual quality. -->
|
||||
<string name="MediaReviewFragment__photo_set_to_high_quality">Fotografie nastavena na vysokou kvalitu</string>
|
||||
<!-- Small notification presented to the user when they set their still image to be sent in standard (lower than high) visual quality. -->
|
||||
<string name="MediaReviewFragment__photo_set_to_standard_quality">Fotografie nastavena na standardní kvalitu</string>
|
||||
<!-- Small notification presented to the user when they set multiple media items to be sent in high visual quality. -->
|
||||
<plurals name="MediaReviewFragment__items_set_to_high_quality">
|
||||
<item quantity="one">%1$d položka nastavena na vysokou kvalitu</item>
|
||||
<item quantity="few">%1$d položky nastaveny na vysokou kvalitu</item>
|
||||
<item quantity="many">%1$d položek nastaveno na vysokou kvalitu</item>
|
||||
<item quantity="other">%1$d položek nastaveno na vysokou kvalitu</item>
|
||||
</plurals>
|
||||
<!-- Small notification presented to the user when they set multiple media items to be sent in standard (lower than high) visual quality. -->
|
||||
<plurals name="MediaReviewFragment__items_set_to_standard_quality">
|
||||
<item quantity="one">%1$d položka nastavena na standardní kvalitu</item>
|
||||
<item quantity="few">%1$d položky nastaveny na standardní kvalitu</item>
|
||||
<item quantity="many">%1$d položek nastaveno na standardní kvalitu</item>
|
||||
<item quantity="other">%1$d položek nastaveno na standardní kvalitu</item>
|
||||
</plurals>
|
||||
</resources>
|
||||
|
||||
@@ -18,6 +18,16 @@
|
||||
<string name="SentMediaQuality__high">Høj</string>
|
||||
<!-- Setting option that can be selected to default media to be sent as standard quality by default -->
|
||||
<string name="SentMediaQuality__standard">Standard</string>
|
||||
<!-- Label for our standard quality media conversion. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__standard">Standard</string>
|
||||
<!-- Description for our standard quality media conversion. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__faster_less_data">Hurtigere, færre data</string>
|
||||
<!-- Label for our high quality media conversion. This has better quality than standard. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__high">Høj</string>
|
||||
<!-- Label for our high quality media conversion. This has better quality than standard. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__slower_more_data">Langsommere, mere data</string>
|
||||
<!-- Title heading for our media conversion quality selector. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__media_quality">Mediekvalitet</string>
|
||||
<!-- Title of the screen where the user browses their device gallery to pick media to send. -->
|
||||
<string name="MediaSelectScreen__gallery">Galleri</string>
|
||||
<!-- Accessibility description for the button that advances from media selection to the next step in the send flow. -->
|
||||
@@ -113,4 +123,22 @@
|
||||
<string name="LinkedDeviceScannedDialog__it_looks_like_youre_trying">Det ser ud til, at du forsøger at tilknytte en Signal-enhed. Tryk på fortsæt, tryk \"Tilknyt en ny enhed\", og scan QR-koden igen.</string>
|
||||
<!-- The label of a dialog asking the user if they would like to continue to the linked device settings screen. -->
|
||||
<string name="LinkedDeviceScannedDialog__device_link_dialog_continue">Fortsæt</string>
|
||||
<!-- Small notification presented to the user when they set their video to be sent in high visual quality. -->
|
||||
<string name="MediaReviewFragment__video_set_to_high_quality">Video indstillet til høj kvalitet</string>
|
||||
<!-- Small notification presented to the user when they set their video to be sent in standard (lower than high) visual quality. -->
|
||||
<string name="MediaReviewFragment__video_set_to_standard_quality">Video indstillet til standardkvalitet</string>
|
||||
<!-- Small notification presented to the user when they set their still image to be sent in high visual quality. -->
|
||||
<string name="MediaReviewFragment__photo_set_to_high_quality">Billede indstillet til høj kvalitet</string>
|
||||
<!-- Small notification presented to the user when they set their still image to be sent in standard (lower than high) visual quality. -->
|
||||
<string name="MediaReviewFragment__photo_set_to_standard_quality">Billede indstillet til standardkvalitet</string>
|
||||
<!-- Small notification presented to the user when they set multiple media items to be sent in high visual quality. -->
|
||||
<plurals name="MediaReviewFragment__items_set_to_high_quality">
|
||||
<item quantity="one">%1$d emne indstillet til høj kvalitet</item>
|
||||
<item quantity="other">%1$d emner indstillet til høj kvalitet</item>
|
||||
</plurals>
|
||||
<!-- Small notification presented to the user when they set multiple media items to be sent in standard (lower than high) visual quality. -->
|
||||
<plurals name="MediaReviewFragment__items_set_to_standard_quality">
|
||||
<item quantity="one">%1$d emne indstillet til standardkvalitet</item>
|
||||
<item quantity="other">%1$d emner indstillet til standardkvalitet</item>
|
||||
</plurals>
|
||||
</resources>
|
||||
|
||||
@@ -18,6 +18,16 @@
|
||||
<string name="SentMediaQuality__high">Hoch</string>
|
||||
<!-- Setting option that can be selected to default media to be sent as standard quality by default -->
|
||||
<string name="SentMediaQuality__standard">Standard</string>
|
||||
<!-- Label for our standard quality media conversion. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__standard">Standard</string>
|
||||
<!-- Description for our standard quality media conversion. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__faster_less_data">Schneller, weniger Daten</string>
|
||||
<!-- Label for our high quality media conversion. This has better quality than standard. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__high">Hoch</string>
|
||||
<!-- Label for our high quality media conversion. This has better quality than standard. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__slower_more_data">Langsamer, mehr Daten</string>
|
||||
<!-- Title heading for our media conversion quality selector. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__media_quality">Medienqualität</string>
|
||||
<!-- Title of the screen where the user browses their device gallery to pick media to send. -->
|
||||
<string name="MediaSelectScreen__gallery">Galerie</string>
|
||||
<!-- Accessibility description for the button that advances from media selection to the next step in the send flow. -->
|
||||
@@ -113,4 +123,22 @@
|
||||
<string name="LinkedDeviceScannedDialog__it_looks_like_youre_trying">Es sieht so aus, als würdest du versuchen, ein Gerät mit Signal koppeln. Tippe auf Fortfahren und dann auf „Neues Gerät koppeln“, und scanne den Code erneut.</string>
|
||||
<!-- The label of a dialog asking the user if they would like to continue to the linked device settings screen. -->
|
||||
<string name="LinkedDeviceScannedDialog__device_link_dialog_continue">Weiter</string>
|
||||
<!-- Small notification presented to the user when they set their video to be sent in high visual quality. -->
|
||||
<string name="MediaReviewFragment__video_set_to_high_quality">Video auf hohe Qualität eingestellt</string>
|
||||
<!-- Small notification presented to the user when they set their video to be sent in standard (lower than high) visual quality. -->
|
||||
<string name="MediaReviewFragment__video_set_to_standard_quality">Video auf Standardqualität eingestellt</string>
|
||||
<!-- Small notification presented to the user when they set their still image to be sent in high visual quality. -->
|
||||
<string name="MediaReviewFragment__photo_set_to_high_quality">Foto auf hohe Qualität eingestellt</string>
|
||||
<!-- Small notification presented to the user when they set their still image to be sent in standard (lower than high) visual quality. -->
|
||||
<string name="MediaReviewFragment__photo_set_to_standard_quality">Foto auf Standardqualität eingestellt</string>
|
||||
<!-- Small notification presented to the user when they set multiple media items to be sent in high visual quality. -->
|
||||
<plurals name="MediaReviewFragment__items_set_to_high_quality">
|
||||
<item quantity="one">%1$d Medienelement auf hohe Qualität eingestellt</item>
|
||||
<item quantity="other">%1$d Medienelemente auf hohe Qualität eingestellt</item>
|
||||
</plurals>
|
||||
<!-- Small notification presented to the user when they set multiple media items to be sent in standard (lower than high) visual quality. -->
|
||||
<plurals name="MediaReviewFragment__items_set_to_standard_quality">
|
||||
<item quantity="one">%1$d Medienelement auf Standardqualität eingestellt</item>
|
||||
<item quantity="other">%1$d Medienelemente auf Standardqualität eingestellt</item>
|
||||
</plurals>
|
||||
</resources>
|
||||
|
||||
@@ -18,6 +18,16 @@
|
||||
<string name="SentMediaQuality__high">Υψηλή</string>
|
||||
<!-- Setting option that can be selected to default media to be sent as standard quality by default -->
|
||||
<string name="SentMediaQuality__standard">Κανονική</string>
|
||||
<!-- Label for our standard quality media conversion. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__standard">Κανονική</string>
|
||||
<!-- Description for our standard quality media conversion. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__faster_less_data">Γρηγορότερα, λιγότερα δεδομένα</string>
|
||||
<!-- Label for our high quality media conversion. This has better quality than standard. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__high">Υψηλή</string>
|
||||
<!-- Label for our high quality media conversion. This has better quality than standard. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__slower_more_data">Πιο αργά, περισσότερα δεδομένα</string>
|
||||
<!-- Title heading for our media conversion quality selector. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__media_quality">Ποιότητα πολυμέσων</string>
|
||||
<!-- Title of the screen where the user browses their device gallery to pick media to send. -->
|
||||
<string name="MediaSelectScreen__gallery">Συλλογή</string>
|
||||
<!-- Accessibility description for the button that advances from media selection to the next step in the send flow. -->
|
||||
@@ -113,4 +123,22 @@
|
||||
<string name="LinkedDeviceScannedDialog__it_looks_like_youre_trying">Φαίνεται πως προσπαθείς να συνδέσεις μια συσκευή Signal. Πάτησε «Συνέχεια», μετά «Σύνδεση νέας συσκευής» και σάρωσε ξανά τον κωδικό QR.</string>
|
||||
<!-- The label of a dialog asking the user if they would like to continue to the linked device settings screen. -->
|
||||
<string name="LinkedDeviceScannedDialog__device_link_dialog_continue">Συνέχεια</string>
|
||||
<!-- Small notification presented to the user when they set their video to be sent in high visual quality. -->
|
||||
<string name="MediaReviewFragment__video_set_to_high_quality">Ρύθμιση βίντεο σε υψηλή ποιότητα</string>
|
||||
<!-- Small notification presented to the user when they set their video to be sent in standard (lower than high) visual quality. -->
|
||||
<string name="MediaReviewFragment__video_set_to_standard_quality">Ρύθμιση βίντεο σε τυπική ποιότητα</string>
|
||||
<!-- Small notification presented to the user when they set their still image to be sent in high visual quality. -->
|
||||
<string name="MediaReviewFragment__photo_set_to_high_quality">Ρύθμιση φωτογραφίας σε υψηλή ποιότητα</string>
|
||||
<!-- Small notification presented to the user when they set their still image to be sent in standard (lower than high) visual quality. -->
|
||||
<string name="MediaReviewFragment__photo_set_to_standard_quality">Ρύθμιση φωτογραφίας σε τυπική ποιότητα</string>
|
||||
<!-- Small notification presented to the user when they set multiple media items to be sent in high visual quality. -->
|
||||
<plurals name="MediaReviewFragment__items_set_to_high_quality">
|
||||
<item quantity="one">Ρύθμιση %1$d αντικειμένου σε υψηλή ποιότητα</item>
|
||||
<item quantity="other">Ρύθμιση %1$d αντικειμένων σε υψηλή ποιότητα</item>
|
||||
</plurals>
|
||||
<!-- Small notification presented to the user when they set multiple media items to be sent in standard (lower than high) visual quality. -->
|
||||
<plurals name="MediaReviewFragment__items_set_to_standard_quality">
|
||||
<item quantity="one">Ρύθμιση %1$d αντικειμένου σε τυπική ποιότητα</item>
|
||||
<item quantity="other">Ρύθμιση %1$d αντικειμένων σε τυπική ποιότητα</item>
|
||||
</plurals>
|
||||
</resources>
|
||||
|
||||
@@ -18,6 +18,16 @@
|
||||
<string name="SentMediaQuality__high">Alta</string>
|
||||
<!-- Setting option that can be selected to default media to be sent as standard quality by default -->
|
||||
<string name="SentMediaQuality__standard">Estándar</string>
|
||||
<!-- Label for our standard quality media conversion. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__standard">Estándar</string>
|
||||
<!-- Description for our standard quality media conversion. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__faster_less_data">Más rápido, menos datos</string>
|
||||
<!-- Label for our high quality media conversion. This has better quality than standard. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__high">Alta</string>
|
||||
<!-- Label for our high quality media conversion. This has better quality than standard. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__slower_more_data">Más lento, más datos</string>
|
||||
<!-- Title heading for our media conversion quality selector. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__media_quality">Calidad de archivos multimedia</string>
|
||||
<!-- Title of the screen where the user browses their device gallery to pick media to send. -->
|
||||
<string name="MediaSelectScreen__gallery">Galería</string>
|
||||
<!-- Accessibility description for the button that advances from media selection to the next step in the send flow. -->
|
||||
@@ -113,4 +123,22 @@
|
||||
<string name="LinkedDeviceScannedDialog__it_looks_like_youre_trying">Parece que estás intentando vincular un dispositivo a tu cuenta de Signal. Toca \"Continuar\", selecciona \"Vincular un nuevo dispositivo\" y vuelve a escanear el código QR.</string>
|
||||
<!-- The label of a dialog asking the user if they would like to continue to the linked device settings screen. -->
|
||||
<string name="LinkedDeviceScannedDialog__device_link_dialog_continue">Continuar</string>
|
||||
<!-- Small notification presented to the user when they set their video to be sent in high visual quality. -->
|
||||
<string name="MediaReviewFragment__video_set_to_high_quality">Vídeo configurado en alta calidad</string>
|
||||
<!-- Small notification presented to the user when they set their video to be sent in standard (lower than high) visual quality. -->
|
||||
<string name="MediaReviewFragment__video_set_to_standard_quality">Vídeo configurado en calidad estándar</string>
|
||||
<!-- Small notification presented to the user when they set their still image to be sent in high visual quality. -->
|
||||
<string name="MediaReviewFragment__photo_set_to_high_quality">Foto configurada en alta calidad</string>
|
||||
<!-- Small notification presented to the user when they set their still image to be sent in standard (lower than high) visual quality. -->
|
||||
<string name="MediaReviewFragment__photo_set_to_standard_quality">Foto configurada en calidad estándar</string>
|
||||
<!-- Small notification presented to the user when they set multiple media items to be sent in high visual quality. -->
|
||||
<plurals name="MediaReviewFragment__items_set_to_high_quality">
|
||||
<item quantity="one">%1$d elemento configurado en alta calidad</item>
|
||||
<item quantity="other">%1$d elementos configurados en alta calidad</item>
|
||||
</plurals>
|
||||
<!-- Small notification presented to the user when they set multiple media items to be sent in standard (lower than high) visual quality. -->
|
||||
<plurals name="MediaReviewFragment__items_set_to_standard_quality">
|
||||
<item quantity="one">%1$d elemento configurado en calidad estándar</item>
|
||||
<item quantity="other">%1$d elementos configurados en calidad estándar</item>
|
||||
</plurals>
|
||||
</resources>
|
||||
|
||||
@@ -18,6 +18,16 @@
|
||||
<string name="SentMediaQuality__high">Kõrge</string>
|
||||
<!-- Setting option that can be selected to default media to be sent as standard quality by default -->
|
||||
<string name="SentMediaQuality__standard">Standardne</string>
|
||||
<!-- Label for our standard quality media conversion. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__standard">Standardne</string>
|
||||
<!-- Description for our standard quality media conversion. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__faster_less_data">Kiirem, vähem andmeid</string>
|
||||
<!-- Label for our high quality media conversion. This has better quality than standard. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__high">Kõrge</string>
|
||||
<!-- Label for our high quality media conversion. This has better quality than standard. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__slower_more_data">Aeglasem, rohkem andmeid</string>
|
||||
<!-- Title heading for our media conversion quality selector. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__media_quality">Meedia kvaliteet</string>
|
||||
<!-- Title of the screen where the user browses their device gallery to pick media to send. -->
|
||||
<string name="MediaSelectScreen__gallery">Galerii</string>
|
||||
<!-- Accessibility description for the button that advances from media selection to the next step in the send flow. -->
|
||||
@@ -113,4 +123,22 @@
|
||||
<string name="LinkedDeviceScannedDialog__it_looks_like_youre_trying">Tundub, et üritad Signali seadet linkida. Toksa, et jätkata, seejärel toksa „Lingi uus seade“ ning skanni QR-kood uuesti.</string>
|
||||
<!-- The label of a dialog asking the user if they would like to continue to the linked device settings screen. -->
|
||||
<string name="LinkedDeviceScannedDialog__device_link_dialog_continue">Jätka</string>
|
||||
<!-- Small notification presented to the user when they set their video to be sent in high visual quality. -->
|
||||
<string name="MediaReviewFragment__video_set_to_high_quality">Valitud kõrge videokvaliteet</string>
|
||||
<!-- Small notification presented to the user when they set their video to be sent in standard (lower than high) visual quality. -->
|
||||
<string name="MediaReviewFragment__video_set_to_standard_quality">Valitud standardne videokvaliteet</string>
|
||||
<!-- Small notification presented to the user when they set their still image to be sent in high visual quality. -->
|
||||
<string name="MediaReviewFragment__photo_set_to_high_quality">Valitud kõrge fotokvaliteet</string>
|
||||
<!-- Small notification presented to the user when they set their still image to be sent in standard (lower than high) visual quality. -->
|
||||
<string name="MediaReviewFragment__photo_set_to_standard_quality">Valitud standardne fotokvaliteet</string>
|
||||
<!-- Small notification presented to the user when they set multiple media items to be sent in high visual quality. -->
|
||||
<plurals name="MediaReviewFragment__items_set_to_high_quality">
|
||||
<item quantity="one">%1$d üksusel valitud kõrge kvaliteet</item>
|
||||
<item quantity="other">%1$d üksusel valitud kõrge kvaliteet</item>
|
||||
</plurals>
|
||||
<!-- Small notification presented to the user when they set multiple media items to be sent in standard (lower than high) visual quality. -->
|
||||
<plurals name="MediaReviewFragment__items_set_to_standard_quality">
|
||||
<item quantity="one">%1$d üksusel valitud standardne kvaliteet</item>
|
||||
<item quantity="other">%1$d üksusel valitud standardne kvaliteet</item>
|
||||
</plurals>
|
||||
</resources>
|
||||
|
||||
@@ -18,6 +18,16 @@
|
||||
<string name="SentMediaQuality__high">Altua</string>
|
||||
<!-- Setting option that can be selected to default media to be sent as standard quality by default -->
|
||||
<string name="SentMediaQuality__standard">Estandarra</string>
|
||||
<!-- Label for our standard quality media conversion. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__standard">Estandarra</string>
|
||||
<!-- Description for our standard quality media conversion. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__faster_less_data">Azkarrago, datu gutxiago</string>
|
||||
<!-- Label for our high quality media conversion. This has better quality than standard. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__high">Altua</string>
|
||||
<!-- Label for our high quality media conversion. This has better quality than standard. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__slower_more_data">Mantsoago, datu gehiago</string>
|
||||
<!-- Title heading for our media conversion quality selector. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__media_quality">Media kalitatea</string>
|
||||
<!-- Title of the screen where the user browses their device gallery to pick media to send. -->
|
||||
<string name="MediaSelectScreen__gallery">Galeria</string>
|
||||
<!-- Accessibility description for the button that advances from media selection to the next step in the send flow. -->
|
||||
@@ -113,4 +123,22 @@
|
||||
<string name="LinkedDeviceScannedDialog__it_looks_like_youre_trying">Signal-eko gailu bat lotu nahian zabiltzala dirudi. Sakatu \"Jarraitu\" eta, ondoren, sakatu \"Lotu beste gailu bat\". Ondoren, eskaneatu QR kodea berriro.</string>
|
||||
<!-- The label of a dialog asking the user if they would like to continue to the linked device settings screen. -->
|
||||
<string name="LinkedDeviceScannedDialog__device_link_dialog_continue">Jarraitu</string>
|
||||
<!-- Small notification presented to the user when they set their video to be sent in high visual quality. -->
|
||||
<string name="MediaReviewFragment__video_set_to_high_quality">Bideoaren kalitatea handi gisa ezarri da</string>
|
||||
<!-- Small notification presented to the user when they set their video to be sent in standard (lower than high) visual quality. -->
|
||||
<string name="MediaReviewFragment__video_set_to_standard_quality">Bideoaren kalitatea estandar gisa ezarri da</string>
|
||||
<!-- Small notification presented to the user when they set their still image to be sent in high visual quality. -->
|
||||
<string name="MediaReviewFragment__photo_set_to_high_quality">Argazkiaren kalitatea handi gisa ezarri da</string>
|
||||
<!-- Small notification presented to the user when they set their still image to be sent in standard (lower than high) visual quality. -->
|
||||
<string name="MediaReviewFragment__photo_set_to_standard_quality">Argazkiaren kalitatea estandar gisa ezarri da</string>
|
||||
<!-- Small notification presented to the user when they set multiple media items to be sent in high visual quality. -->
|
||||
<plurals name="MediaReviewFragment__items_set_to_high_quality">
|
||||
<item quantity="one">%1$d elementuren kalitatea handi gisa ezarri da</item>
|
||||
<item quantity="other">%1$d elementuren kalitatea handi gisa ezarri da</item>
|
||||
</plurals>
|
||||
<!-- Small notification presented to the user when they set multiple media items to be sent in standard (lower than high) visual quality. -->
|
||||
<plurals name="MediaReviewFragment__items_set_to_standard_quality">
|
||||
<item quantity="one">%1$d elementuren kalitatea estandar gisa ezarri da</item>
|
||||
<item quantity="other">%1$d elementuren kalitatea estandar gisa ezarri da</item>
|
||||
</plurals>
|
||||
</resources>
|
||||
|
||||
@@ -18,6 +18,16 @@
|
||||
<string name="SentMediaQuality__high">عالی</string>
|
||||
<!-- Setting option that can be selected to default media to be sent as standard quality by default -->
|
||||
<string name="SentMediaQuality__standard">استاندارد</string>
|
||||
<!-- Label for our standard quality media conversion. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__standard">استاندارد</string>
|
||||
<!-- Description for our standard quality media conversion. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__faster_less_data">سریعتر، دادهٔ کمتر</string>
|
||||
<!-- Label for our high quality media conversion. This has better quality than standard. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__high">عالی</string>
|
||||
<!-- Label for our high quality media conversion. This has better quality than standard. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__slower_more_data">آهستهتر، دادهٔ بیشتر</string>
|
||||
<!-- Title heading for our media conversion quality selector. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__media_quality">کیفیت رسانه</string>
|
||||
<!-- Title of the screen where the user browses their device gallery to pick media to send. -->
|
||||
<string name="MediaSelectScreen__gallery">گالری</string>
|
||||
<!-- Accessibility description for the button that advances from media selection to the next step in the send flow. -->
|
||||
@@ -113,4 +123,22 @@
|
||||
<string name="LinkedDeviceScannedDialog__it_looks_like_youre_trying">به نظر میرسد میخواهید یک دستگاه سیگنال را متصل کنید. روی ادامه و سپس روی «اتصال دستگاه جدید» ضربه بزنید و دوباره کد QR را اسکن کنید.</string>
|
||||
<!-- The label of a dialog asking the user if they would like to continue to the linked device settings screen. -->
|
||||
<string name="LinkedDeviceScannedDialog__device_link_dialog_continue">ادامه</string>
|
||||
<!-- Small notification presented to the user when they set their video to be sent in high visual quality. -->
|
||||
<string name="MediaReviewFragment__video_set_to_high_quality">ویدیو روی کیفیت بالا تنظیم شد</string>
|
||||
<!-- Small notification presented to the user when they set their video to be sent in standard (lower than high) visual quality. -->
|
||||
<string name="MediaReviewFragment__video_set_to_standard_quality">ویدیو روی کیفیت استاندارد تنظیم شد</string>
|
||||
<!-- Small notification presented to the user when they set their still image to be sent in high visual quality. -->
|
||||
<string name="MediaReviewFragment__photo_set_to_high_quality">عکس روی کیفیت بالا تنظیم شد</string>
|
||||
<!-- Small notification presented to the user when they set their still image to be sent in standard (lower than high) visual quality. -->
|
||||
<string name="MediaReviewFragment__photo_set_to_standard_quality">عکس روی کیفیت استاندارد تنظیم شد</string>
|
||||
<!-- Small notification presented to the user when they set multiple media items to be sent in high visual quality. -->
|
||||
<plurals name="MediaReviewFragment__items_set_to_high_quality">
|
||||
<item quantity="one">%1$d مورد روی کیفیت بالا تنظیم شد</item>
|
||||
<item quantity="other">%1$d مورد روی کیفیت بالا تنظیم شدند</item>
|
||||
</plurals>
|
||||
<!-- Small notification presented to the user when they set multiple media items to be sent in standard (lower than high) visual quality. -->
|
||||
<plurals name="MediaReviewFragment__items_set_to_standard_quality">
|
||||
<item quantity="one">%1$d مورد روی کیفیت استاندارد تنظیم شد</item>
|
||||
<item quantity="other">%1$d مورد روی کیفیت استاندارد تنظیم شدند</item>
|
||||
</plurals>
|
||||
</resources>
|
||||
|
||||
@@ -18,6 +18,16 @@
|
||||
<string name="SentMediaQuality__high">Korkea</string>
|
||||
<!-- Setting option that can be selected to default media to be sent as standard quality by default -->
|
||||
<string name="SentMediaQuality__standard">Vakio</string>
|
||||
<!-- Label for our standard quality media conversion. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__standard">Vakio</string>
|
||||
<!-- Description for our standard quality media conversion. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__faster_less_data">Nopeampi, vähemmän dataa</string>
|
||||
<!-- Label for our high quality media conversion. This has better quality than standard. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__high">Korkea</string>
|
||||
<!-- Label for our high quality media conversion. This has better quality than standard. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__slower_more_data">Hitaampi, enemmän dataa</string>
|
||||
<!-- Title heading for our media conversion quality selector. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__media_quality">Median laatu</string>
|
||||
<!-- Title of the screen where the user browses their device gallery to pick media to send. -->
|
||||
<string name="MediaSelectScreen__gallery">Galleria</string>
|
||||
<!-- Accessibility description for the button that advances from media selection to the next step in the send flow. -->
|
||||
@@ -113,4 +123,22 @@
|
||||
<string name="LinkedDeviceScannedDialog__it_looks_like_youre_trying">Vaikuttaa siltä, että yrität yhdistää laitetta Signaliin. Napauta Jatka ja napauta sitten Yhdistä uusi laite ja skannaa QR-koodi uudelleen.</string>
|
||||
<!-- The label of a dialog asking the user if they would like to continue to the linked device settings screen. -->
|
||||
<string name="LinkedDeviceScannedDialog__device_link_dialog_continue">Jatka</string>
|
||||
<!-- Small notification presented to the user when they set their video to be sent in high visual quality. -->
|
||||
<string name="MediaReviewFragment__video_set_to_high_quality">Video asetettu korkealaatuiseksi</string>
|
||||
<!-- Small notification presented to the user when they set their video to be sent in standard (lower than high) visual quality. -->
|
||||
<string name="MediaReviewFragment__video_set_to_standard_quality">Video asetettu vakiolaatuiseksi</string>
|
||||
<!-- Small notification presented to the user when they set their still image to be sent in high visual quality. -->
|
||||
<string name="MediaReviewFragment__photo_set_to_high_quality">Kuva asetettu korkealaatuiseksi</string>
|
||||
<!-- Small notification presented to the user when they set their still image to be sent in standard (lower than high) visual quality. -->
|
||||
<string name="MediaReviewFragment__photo_set_to_standard_quality">Kuva asetettu vakiolaatuiseksi</string>
|
||||
<!-- Small notification presented to the user when they set multiple media items to be sent in high visual quality. -->
|
||||
<plurals name="MediaReviewFragment__items_set_to_high_quality">
|
||||
<item quantity="one">%1$d kohde asetettu korkealaatuiseksi</item>
|
||||
<item quantity="other">%1$d kohdetta asetettu korkealaatuiseksi</item>
|
||||
</plurals>
|
||||
<!-- Small notification presented to the user when they set multiple media items to be sent in standard (lower than high) visual quality. -->
|
||||
<plurals name="MediaReviewFragment__items_set_to_standard_quality">
|
||||
<item quantity="one">%1$d kohde asetettu vakiolaatuiseksi</item>
|
||||
<item quantity="other">%1$d kohdetta asetettu vakiolaatuiseksi</item>
|
||||
</plurals>
|
||||
</resources>
|
||||
|
||||
@@ -18,6 +18,16 @@
|
||||
<string name="SentMediaQuality__high">Haute qualité</string>
|
||||
<!-- Setting option that can be selected to default media to be sent as standard quality by default -->
|
||||
<string name="SentMediaQuality__standard">Standard</string>
|
||||
<!-- Label for our standard quality media conversion. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__standard">Standard</string>
|
||||
<!-- Description for our standard quality media conversion. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__faster_less_data">Plus rapide, consomme moins de données</string>
|
||||
<!-- Label for our high quality media conversion. This has better quality than standard. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__high">Haute qualité</string>
|
||||
<!-- Label for our high quality media conversion. This has better quality than standard. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__slower_more_data">Moins rapide, consomme plus de données</string>
|
||||
<!-- Title heading for our media conversion quality selector. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__media_quality">Qualité des médias</string>
|
||||
<!-- Title of the screen where the user browses their device gallery to pick media to send. -->
|
||||
<string name="MediaSelectScreen__gallery">Galerie</string>
|
||||
<!-- Accessibility description for the button that advances from media selection to the next step in the send flow. -->
|
||||
@@ -113,4 +123,22 @@
|
||||
<string name="LinkedDeviceScannedDialog__it_looks_like_youre_trying">Vous voulez associer un appareil Signal ? Appuyez sur \"Continuer\", puis sur \"Associer un nouvel appareil\" et rescannez le code QR.</string>
|
||||
<!-- The label of a dialog asking the user if they would like to continue to the linked device settings screen. -->
|
||||
<string name="LinkedDeviceScannedDialog__device_link_dialog_continue">Continuer</string>
|
||||
<!-- Small notification presented to the user when they set their video to be sent in high visual quality. -->
|
||||
<string name="MediaReviewFragment__video_set_to_high_quality">Vidéo de haute qualité</string>
|
||||
<!-- Small notification presented to the user when they set their video to be sent in standard (lower than high) visual quality. -->
|
||||
<string name="MediaReviewFragment__video_set_to_standard_quality">Vidéo de qualité standard</string>
|
||||
<!-- Small notification presented to the user when they set their still image to be sent in high visual quality. -->
|
||||
<string name="MediaReviewFragment__photo_set_to_high_quality">Photo de haute qualité</string>
|
||||
<!-- Small notification presented to the user when they set their still image to be sent in standard (lower than high) visual quality. -->
|
||||
<string name="MediaReviewFragment__photo_set_to_standard_quality">Photo de qualité standard</string>
|
||||
<!-- Small notification presented to the user when they set multiple media items to be sent in high visual quality. -->
|
||||
<plurals name="MediaReviewFragment__items_set_to_high_quality">
|
||||
<item quantity="one">%1$d élément de haute qualité</item>
|
||||
<item quantity="other">%1$d éléments de haute qualité</item>
|
||||
</plurals>
|
||||
<!-- Small notification presented to the user when they set multiple media items to be sent in standard (lower than high) visual quality. -->
|
||||
<plurals name="MediaReviewFragment__items_set_to_standard_quality">
|
||||
<item quantity="one">%1$d élément de qualité standard</item>
|
||||
<item quantity="other">%1$d éléments de qualité standard</item>
|
||||
</plurals>
|
||||
</resources>
|
||||
|
||||
@@ -18,6 +18,16 @@
|
||||
<string name="SentMediaQuality__high">Ard</string>
|
||||
<!-- Setting option that can be selected to default media to be sent as standard quality by default -->
|
||||
<string name="SentMediaQuality__standard">Caighdeánach</string>
|
||||
<!-- Label for our standard quality media conversion. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__standard">Caighdeánach</string>
|
||||
<!-- Description for our standard quality media conversion. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__faster_less_data">Níos tapúla, níos lú sonraí</string>
|
||||
<!-- Label for our high quality media conversion. This has better quality than standard. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__high">Ard</string>
|
||||
<!-- Label for our high quality media conversion. This has better quality than standard. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__slower_more_data">Níos moille, níos mó sonraí</string>
|
||||
<!-- Title heading for our media conversion quality selector. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__media_quality">Media Quality</string>
|
||||
<!-- Title of the screen where the user browses their device gallery to pick media to send. -->
|
||||
<string name="MediaSelectScreen__gallery">Gailearaí</string>
|
||||
<!-- Accessibility description for the button that advances from media selection to the next step in the send flow. -->
|
||||
@@ -116,4 +126,28 @@
|
||||
<string name="LinkedDeviceScannedDialog__it_looks_like_youre_trying">Is cosúil go bhfuil tú ag iarraidh gléas Signal a nascadh. Tapáil \"Ar aghaidh\" agus ansin tapáil \"Nasc Gléas Nua\" agus scan an cód QR athuair.</string>
|
||||
<!-- The label of a dialog asking the user if they would like to continue to the linked device settings screen. -->
|
||||
<string name="LinkedDeviceScannedDialog__device_link_dialog_continue">Lean ar aghaidh</string>
|
||||
<!-- Small notification presented to the user when they set their video to be sent in high visual quality. -->
|
||||
<string name="MediaReviewFragment__video_set_to_high_quality">Físeán socraithe ag ardchaighdeán</string>
|
||||
<!-- Small notification presented to the user when they set their video to be sent in standard (lower than high) visual quality. -->
|
||||
<string name="MediaReviewFragment__video_set_to_standard_quality">Físeán socraithe ag gnáthchaighdeán</string>
|
||||
<!-- Small notification presented to the user when they set their still image to be sent in high visual quality. -->
|
||||
<string name="MediaReviewFragment__photo_set_to_high_quality">Grianghraf socraithe ag ardchaighdeán</string>
|
||||
<!-- Small notification presented to the user when they set their still image to be sent in standard (lower than high) visual quality. -->
|
||||
<string name="MediaReviewFragment__photo_set_to_standard_quality">Grianghraf socraithe ag gnáthchaighdeán</string>
|
||||
<!-- Small notification presented to the user when they set multiple media items to be sent in high visual quality. -->
|
||||
<plurals name="MediaReviewFragment__items_set_to_high_quality">
|
||||
<item quantity="one">%1$d mhír socraithe ag ardchaighdeán</item>
|
||||
<item quantity="two">%1$d mhír socraithe ag ardchaighdeán</item>
|
||||
<item quantity="few">%1$d mhír socraithe ag ardchaighdeán</item>
|
||||
<item quantity="many">%1$d mír socraithe ag ardchaighdeán</item>
|
||||
<item quantity="other">%1$d mír socraithe ag ardchaighdeán</item>
|
||||
</plurals>
|
||||
<!-- Small notification presented to the user when they set multiple media items to be sent in standard (lower than high) visual quality. -->
|
||||
<plurals name="MediaReviewFragment__items_set_to_standard_quality">
|
||||
<item quantity="one">%1$d mhír socraithe ag gnáthchaighdeán</item>
|
||||
<item quantity="two">%1$d mhír socraithe ag gnáthchaighdeán</item>
|
||||
<item quantity="few">%1$d mhír socraithe ag gnáthchaighdeán</item>
|
||||
<item quantity="many">%1$d mír socraithe ag gnáthchaighdeán</item>
|
||||
<item quantity="other">%1$d mír socraithe ag gnáthchaighdeán</item>
|
||||
</plurals>
|
||||
</resources>
|
||||
|
||||
@@ -18,6 +18,16 @@
|
||||
<string name="SentMediaQuality__high">Alta</string>
|
||||
<!-- Setting option that can be selected to default media to be sent as standard quality by default -->
|
||||
<string name="SentMediaQuality__standard">Estándar</string>
|
||||
<!-- Label for our standard quality media conversion. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__standard">Estándar</string>
|
||||
<!-- Description for our standard quality media conversion. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__faster_less_data">Máis rápido pero menos datos</string>
|
||||
<!-- Label for our high quality media conversion. This has better quality than standard. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__high">Alta</string>
|
||||
<!-- Label for our high quality media conversion. This has better quality than standard. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__slower_more_data">Máis lento pero máis datos</string>
|
||||
<!-- Title heading for our media conversion quality selector. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__media_quality">Calidade multimedia</string>
|
||||
<!-- Title of the screen where the user browses their device gallery to pick media to send. -->
|
||||
<string name="MediaSelectScreen__gallery">Galería</string>
|
||||
<!-- Accessibility description for the button that advances from media selection to the next step in the send flow. -->
|
||||
@@ -113,4 +123,22 @@
|
||||
<string name="LinkedDeviceScannedDialog__it_looks_like_youre_trying">Semella que tentas vincular un dispositivo á túa conta de Signal. Preme en «Continuar», selecciona «Vincular novo dispositivo» e escanea o código QR de novo.</string>
|
||||
<!-- The label of a dialog asking the user if they would like to continue to the linked device settings screen. -->
|
||||
<string name="LinkedDeviceScannedDialog__device_link_dialog_continue">Continuar</string>
|
||||
<!-- Small notification presented to the user when they set their video to be sent in high visual quality. -->
|
||||
<string name="MediaReviewFragment__video_set_to_high_quality">Vídeo configurado para visualizarse en calidade alta</string>
|
||||
<!-- Small notification presented to the user when they set their video to be sent in standard (lower than high) visual quality. -->
|
||||
<string name="MediaReviewFragment__video_set_to_standard_quality">Vídeo configurado para visualizarse en calidade estándar</string>
|
||||
<!-- Small notification presented to the user when they set their still image to be sent in high visual quality. -->
|
||||
<string name="MediaReviewFragment__photo_set_to_high_quality">Imaxe configurada para visualizarse en calidade alta</string>
|
||||
<!-- Small notification presented to the user when they set their still image to be sent in standard (lower than high) visual quality. -->
|
||||
<string name="MediaReviewFragment__photo_set_to_standard_quality">Imaxe configurada para visualizarse en calidade estándar</string>
|
||||
<!-- Small notification presented to the user when they set multiple media items to be sent in high visual quality. -->
|
||||
<plurals name="MediaReviewFragment__items_set_to_high_quality">
|
||||
<item quantity="one">%1$d elemento configurado para visualizarse en calidade alta</item>
|
||||
<item quantity="other">%1$d elementos configurados para visualizarse en calidade alta</item>
|
||||
</plurals>
|
||||
<!-- Small notification presented to the user when they set multiple media items to be sent in standard (lower than high) visual quality. -->
|
||||
<plurals name="MediaReviewFragment__items_set_to_standard_quality">
|
||||
<item quantity="one">%1$d elemento configurado para visualizarse en calidade estándar</item>
|
||||
<item quantity="other">%1$d elementos configurados para visualizarse en calidade estándar</item>
|
||||
</plurals>
|
||||
</resources>
|
||||
|
||||
@@ -18,6 +18,16 @@
|
||||
<string name="SentMediaQuality__high">ઉચ્ચ</string>
|
||||
<!-- Setting option that can be selected to default media to be sent as standard quality by default -->
|
||||
<string name="SentMediaQuality__standard">સ્ટાન્ડર્ડ</string>
|
||||
<!-- Label for our standard quality media conversion. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__standard">સ્ટાન્ડર્ડ</string>
|
||||
<!-- Description for our standard quality media conversion. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__faster_less_data">ઝડપી, ઓછો ડેટા</string>
|
||||
<!-- Label for our high quality media conversion. This has better quality than standard. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__high">ઉચ્ચ</string>
|
||||
<!-- Label for our high quality media conversion. This has better quality than standard. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__slower_more_data">ધીમો, વધુ ડેટા</string>
|
||||
<!-- Title heading for our media conversion quality selector. -->
|
||||
<string name="QualitySelectorBottomSheetDialog__media_quality">મીડિયા ગુણવત્તા</string>
|
||||
<!-- Title of the screen where the user browses their device gallery to pick media to send. -->
|
||||
<string name="MediaSelectScreen__gallery">ગેલેરી</string>
|
||||
<!-- Accessibility description for the button that advances from media selection to the next step in the send flow. -->
|
||||
@@ -113,4 +123,22 @@
|
||||
<string name="LinkedDeviceScannedDialog__it_looks_like_youre_trying">એવું લાગે છે કે તમે Signal ડિવાઇસને લિંક કરવાનો પ્રયાસ કરી રહ્યાં છો. ચાલુ રાખો પર ટેપ કરો અને પછી \"નવું ડિવાઇસ લિંક કરો\" પર ટેપ કરો અને ફરીથી QR કોડ સ્કેન કરો.</string>
|
||||
<!-- The label of a dialog asking the user if they would like to continue to the linked device settings screen. -->
|
||||
<string name="LinkedDeviceScannedDialog__device_link_dialog_continue">ચાલુ રાખો</string>
|
||||
<!-- Small notification presented to the user when they set their video to be sent in high visual quality. -->
|
||||
<string name="MediaReviewFragment__video_set_to_high_quality">વીડિયોને હાઇ ક્વોલિટી પર સેટ કરવામાં આવ્યો</string>
|
||||
<!-- Small notification presented to the user when they set their video to be sent in standard (lower than high) visual quality. -->
|
||||
<string name="MediaReviewFragment__video_set_to_standard_quality">વીડિયોને સ્ટાન્ડર્ડ ક્વોલિટી પર સેટ કરવામાં આવ્યો</string>
|
||||
<!-- Small notification presented to the user when they set their still image to be sent in high visual quality. -->
|
||||
<string name="MediaReviewFragment__photo_set_to_high_quality">ફોટોને હાઇ ક્વોલિટી પર સેટ કરવામાં આવ્યો</string>
|
||||
<!-- Small notification presented to the user when they set their still image to be sent in standard (lower than high) visual quality. -->
|
||||
<string name="MediaReviewFragment__photo_set_to_standard_quality">ફોટાને સ્ટાન્ડર્ડ ક્વોલિટી પર સેટ કરવામાં આવ્યો</string>
|
||||
<!-- Small notification presented to the user when they set multiple media items to be sent in high visual quality. -->
|
||||
<plurals name="MediaReviewFragment__items_set_to_high_quality">
|
||||
<item quantity="one">%1$d આઇટમને હાઇ ક્વોલિટી પર સેટ કરવામાં આવી</item>
|
||||
<item quantity="other">%1$d આઇટમને હાઇ ક્વોલિટી પર સેટ કરવામાં આવી</item>
|
||||
</plurals>
|
||||
<!-- Small notification presented to the user when they set multiple media items to be sent in standard (lower than high) visual quality. -->
|
||||
<plurals name="MediaReviewFragment__items_set_to_standard_quality">
|
||||
<item quantity="one">%1$d આઇટમને સ્ટાન્ડર્ડ ક્વોલિટી પર સેટ કરવામાં આવી</item>
|
||||
<item quantity="other">%1$d આઇટમને સ્ટાન્ડર્ડ ક્વોલિટી પર સેટ કરવામાં આવી</item>
|
||||
</plurals>
|
||||
</resources>
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user