Compare commits

...

18 Commits

Author SHA1 Message Date
Cody Henthorne 5e8cebdc87 Bump version to 8.15.2 2026-06-12 15:06:49 -04:00
Cody Henthorne c8f9c41cea Update baseline profile. 2026-06-12 15:00:45 -04:00
Cody Henthorne 647dc23de6 Update translations and other static files. 2026-06-12 14:53:10 -04:00
Cody Henthorne b0531247c3 Prevent crash when building shortcuts for large groups. 2026-06-12 14:35:15 -04:00
Greyson Parrelli f08a20d0a6 Render unread divider when the only unread message is the newest in the thread. 2026-06-12 14:10:40 -03:00
Cody Henthorne 16232e2f9f Fix transfer control showing stale data or not responding. 2026-06-12 13:01:18 -04:00
Michelle Tang fc856dd500 Turn off KT. 2026-06-12 11:22:37 -04:00
Alex Hart 73f81075ce Removes second dialog and adds learnmore. 2026-06-12 11:16:19 -03:00
Cody Henthorne c5efb2ce6c Bump version to 8.15.1 2026-06-11 14:20:28 -04:00
Cody Henthorne c7b5738787 Update baseline profile. 2026-06-11 14:13:07 -04:00
Cody Henthorne df88b7fe35 Update translations and other static files. 2026-06-11 14:03:42 -04:00
Cody Henthorne 46213b38e7 Exclude quote attachments from sticker detection during backup export. 2026-06-11 12:26:41 -04:00
Alex Hart f8b53378c6 Remove touch interceptor. 2026-06-11 13:16:23 -03:00
Greyson Parrelli bbb09eb7a0 Debounce search queries on conversation list. 2026-06-10 23:54:55 -04:00
Cody Henthorne 52ceb4062d Reject group call ring updates from senders who are not current group members. 2026-06-10 16:00:59 -04:00
Cody Henthorne f7eaa1cb51 Fix outgoing group calls showing as incoming when someone joins. 2026-06-10 16:00:59 -04:00
Cody Henthorne c62c15c810 Refresh conversation options menu when message request state changes. 2026-06-10 16:00:59 -04:00
Cody Henthorne 2389279cfd Prevent exported settings activity from honoring caller-supplied navigation graph. 2026-06-10 16:00:59 -04:00
162 changed files with 8341 additions and 7217 deletions
+2 -2
View File
@@ -27,8 +27,8 @@ plugins {
val staticIps = Properties().apply { file("static-ips.properties").reader().use { load(it) } }
staticIps.stringPropertyNames().forEach { rootProject.extra[it] = staticIps.getProperty(it) }
val canonicalVersionCode = 1704
val canonicalVersionName = "8.15.0"
val canonicalVersionCode = 1706
val canonicalVersionName = "8.15.2"
val currentHotfixVersion = 0
val maxHotfixVersions = 100
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
@@ -281,7 +281,8 @@ public final class ContactSelectionListFragment extends LoggingFragment {
new ContactSelectionListAdapter.ArbitraryRepository(),
new SearchRepository(requireContext().getString(R.string.note_to_self)),
new ContactSearchPagedDataSourceRepository(requireContext()),
fixedContacts
fixedContacts,
false
)
).get(ContactSearchViewModel.class);
@@ -435,7 +435,7 @@ class ChatItemArchiveExporter(
else -> {
val attachments = extraData.attachmentsById[record.id]
val sticker = attachments?.firstOrNull { dbAttachment -> dbAttachment.isSticker }
val sticker = attachments?.firstOrNull { dbAttachment -> dbAttachment.isSticker && !dbAttachment.quote }
if (sticker?.stickerLocator != null) {
builder.stickerMessage = sticker.toRemoteStickerMessage(sentTimestamp = record.dateSent, reactions = extraData.reactionsById[id], exportState = exportState)
@@ -157,7 +157,6 @@ fun MessageBackupsKeyRecordScreen(
val url = stringResource(R.string.recovery_key_phishing_support_url)
val events: (RecoveryKeyWarningSheetEvent) -> Unit = {
when (it) {
RecoveryKeyWarningSheetEvent.DoNotShareClick -> error("Not supported")
RecoveryKeyWarningSheetEvent.GotItClick -> {
onCopyToClipboardClick(backupKeyString)
displayRecoveryKeyCopyWarning = false
@@ -167,7 +166,7 @@ fun MessageBackupsKeyRecordScreen(
displayRecoveryKeyCopyWarning = false
}
RecoveryKeyWarningSheetEvent.PasteKeyClick -> error("Not supported")
RecoveryKeyWarningSheetEvent.DoNotShareClick -> error("Not supported")
RecoveryKeyWarningSheetEvent.ShareKeyClick -> error("Not supported")
}
}
@@ -5,22 +5,16 @@
package org.thoughtcrime.securesms.backup.v2.ui.warning
import android.app.Dialog
import android.content.DialogInterface
import android.graphics.Color
import android.graphics.drawable.ColorDrawable
import android.os.Bundle
import androidx.compose.material3.ExperimentalMaterial3Api
import androidx.compose.material3.ModalBottomSheet
import androidx.compose.material3.rememberModalBottomSheetState
import androidx.compose.runtime.Composable
import androidx.compose.runtime.getValue
import androidx.compose.runtime.mutableStateOf
import androidx.compose.runtime.remember
import androidx.compose.runtime.setValue
import androidx.compose.ui.platform.LocalContext
import androidx.compose.ui.res.stringResource
import androidx.fragment.app.setFragmentResult
import org.signal.core.ui.compose.BottomSheets
import org.signal.core.ui.compose.ComposeFullScreenDialogFragment
import org.signal.core.ui.compose.ComposeBottomSheetDialogFragment
import org.thoughtcrime.securesms.R
import org.thoughtcrime.securesms.backup.v2.ui.warning.RecoveryKeyPasteWarningFragment.Companion.REQUEST_KEY
import org.thoughtcrime.securesms.util.CommunicationActions
/**
* Displayed via the [org.thoughtcrime.securesms.components.settings.conversation.ConversationSettingsFragment] whenever the user
@@ -30,7 +24,7 @@ import org.signal.core.ui.compose.ComposeFullScreenDialogFragment
* indicating whether the user chose to proceed with the paste. The host can rely on this firing for
* every dismissal path (paste, decline, or cancel) to restore its own state.
*/
class RecoveryKeyPasteWarningFragment : ComposeFullScreenDialogFragment() {
class RecoveryKeyPasteWarningFragment : ComposeBottomSheetDialogFragment() {
companion object {
const val REQUEST_KEY = "recovery_key_request"
@@ -38,13 +32,6 @@ class RecoveryKeyPasteWarningFragment : ComposeFullScreenDialogFragment() {
private var shouldPaste = false
override fun onCreateDialog(savedInstanceState: Bundle?): Dialog {
return super.onCreateDialog(savedInstanceState).apply {
window?.setBackgroundDrawable(ColorDrawable(Color.TRANSPARENT))
window?.setWindowAnimations(0)
}
}
override fun onDismiss(dialog: DialogInterface) {
setFragmentResult(
REQUEST_KEY,
@@ -56,10 +43,10 @@ class RecoveryKeyPasteWarningFragment : ComposeFullScreenDialogFragment() {
super.onDismiss(dialog)
}
@OptIn(ExperimentalMaterial3Api::class)
@Composable
override fun DialogContent() {
var isDisplayingFinalWarningDialog by remember { mutableStateOf(false) }
override fun SheetContent() {
val context = LocalContext.current
val url = stringResource(R.string.recovery_key_phishing_support_url)
val eventHandler: (RecoveryKeyWarningSheetEvent) -> Unit = {
when (it) {
@@ -67,34 +54,25 @@ class RecoveryKeyPasteWarningFragment : ComposeFullScreenDialogFragment() {
dismissAllowingStateLoss()
}
RecoveryKeyWarningSheetEvent.GotItClick -> error("Not supported for paste")
RecoveryKeyWarningSheetEvent.LearnMoreClick -> error("Not supported for paste")
RecoveryKeyWarningSheetEvent.PasteKeyClick -> {
shouldPaste = true
RecoveryKeyWarningSheetEvent.GotItClick -> {
error("Not supported for paste")
}
RecoveryKeyWarningSheetEvent.LearnMoreClick -> {
CommunicationActions.openBrowserLink(context, url)
dismissAllowingStateLoss()
}
RecoveryKeyWarningSheetEvent.ShareKeyClick -> {
isDisplayingFinalWarningDialog = true
shouldPaste = true
dismissAllowingStateLoss()
}
}
}
if (isDisplayingFinalWarningDialog) {
RecoveryKeyWarningDialog(
events = eventHandler
)
} else {
ModalBottomSheet(
onDismissRequest = { dismissAllowingStateLoss() },
dragHandle = { BottomSheets.Handle() },
sheetState = rememberModalBottomSheetState(skipPartiallyExpanded = true)
) {
RecoveryKeyWarningSheetContent(
clipStage = ClipStage.PASTE,
events = eventHandler
)
}
}
RecoveryKeyWarningSheetContent(
clipStage = ClipStage.PASTE,
events = eventHandler
)
}
}
@@ -12,6 +12,7 @@ import androidx.compose.foundation.layout.fillMaxSize
import androidx.compose.foundation.layout.padding
import androidx.compose.foundation.layout.size
import androidx.compose.foundation.shape.CircleShape
import androidx.compose.material3.ButtonDefaults
import androidx.compose.material3.Icon
import androidx.compose.material3.MaterialTheme
import androidx.compose.material3.Text
@@ -22,16 +23,17 @@ import androidx.compose.ui.Modifier
import androidx.compose.ui.graphics.vector.ImageVector
import androidx.compose.ui.res.stringResource
import androidx.compose.ui.res.vectorResource
import androidx.compose.ui.text.AnnotatedString
import androidx.compose.ui.text.LinkAnnotation
import androidx.compose.ui.text.SpanStyle
import androidx.compose.ui.text.TextLinkStyles
import androidx.compose.ui.text.buildAnnotatedString
import androidx.compose.ui.text.font.FontWeight
import androidx.compose.ui.text.style.TextAlign
import androidx.compose.ui.text.withLink
import androidx.compose.ui.text.withStyle
import androidx.compose.ui.unit.dp
import org.signal.core.ui.compose.Buttons
import org.signal.core.ui.compose.DayNightPreviews
import org.signal.core.ui.compose.Dialogs
import org.signal.core.ui.compose.Previews
import org.signal.core.ui.compose.horizontalGutters
import org.thoughtcrime.securesms.R
@@ -64,17 +66,32 @@ fun RecoveryKeyWarningSheetContent(
modifier = Modifier.padding(bottom = 12.dp)
)
val signalWillNeverMessageYou = stringResource(R.string.RecoveryKeyWarningSheetContent__signal_will_never_message_you)
val recoveryKeyWarningBody = stringResource(R.string.RecoveryKeyWarningSheetContent__for_your_recovery_key_never_respond)
Text(
text = buildAnnotatedString {
withStyle(style = SpanStyle(fontWeight = FontWeight.Bold)) {
append(signalWillNeverMessageYou)
append(stringResource(R.string.RecoveryKeyWarningSheetContent__signal_will_never_message_you))
}
append(" ")
append(recoveryKeyWarningBody)
append(stringResource(R.string.RecoveryKeyWarningSheetContent__for_your_recovery_key_never_respond))
if (clipStage == ClipStage.PASTE) {
append(" ")
withLink(
link = LinkAnnotation.Clickable(
tag = "learn-more",
styles = TextLinkStyles(
style = SpanStyle(
color = MaterialTheme.colorScheme.primary
)
)
) {
events(RecoveryKeyWarningSheetEvent.LearnMoreClick)
}
) {
append(stringResource(R.string.RecoveryKeyWarningSheetContent__learn_more_period))
}
}
},
textAlign = TextAlign.Center,
color = MaterialTheme.colorScheme.onSurfaceVariant,
@@ -113,40 +130,18 @@ fun PasteActionButtons(events: (RecoveryKeyWarningSheetEvent) -> Unit) {
Text(text = stringResource(R.string.RecoveryKeyWarningSheetContent__do_not_share_key))
}
TextButton(onClick = {
events(RecoveryKeyWarningSheetEvent.ShareKeyClick)
}) {
TextButton(
colors = ButtonDefaults.textButtonColors(
contentColor = MaterialTheme.colorScheme.error
),
onClick = {
events(RecoveryKeyWarningSheetEvent.ShareKeyClick)
}
) {
Text(text = stringResource(R.string.RecoveryKeyWarningSheetContent__share_key))
}
}
@Composable
fun RecoveryKeyWarningDialog(events: (RecoveryKeyWarningSheetEvent) -> Unit) {
val bodyIntro = stringResource(R.string.RecoveryKeyWarningDialog__do_not_share_your_recovery_key_with_anyone)
val bodyEmphasis = stringResource(R.string.RecoveryKeyWarningDialog__signal_will_never_message_you_for_your_recovery_key)
val bodyOutro = stringResource(R.string.RecoveryKeyWarningDialog__never_respond_to_a_chat)
Dialogs.SimpleAlertDialog(
title = AnnotatedString(stringResource(R.string.RecoveryKeyWarningDialog__do_not_share_recovery_key)),
body = buildAnnotatedString {
append(bodyIntro)
append(" ")
withStyle(style = SpanStyle(fontWeight = FontWeight.Bold)) {
append(bodyEmphasis)
}
append(" ")
append(bodyOutro)
},
confirm = AnnotatedString(stringResource(R.string.RecoveryKeyWarningDialog__paste_key)),
confirmColor = MaterialTheme.colorScheme.error,
dismiss = AnnotatedString(stringResource(R.string.RecoveryKeyWarningDialog__dont_share)),
onConfirm = { events(RecoveryKeyWarningSheetEvent.PasteKeyClick) },
onDeny = { events(RecoveryKeyWarningSheetEvent.DoNotShareClick) }
)
}
enum class ClipStage {
COPY,
PASTE
@@ -175,11 +170,3 @@ private fun RecoveryKeyWarningSheetContentPastePreview() {
)
}
}
@DayNightPreviews
@Composable
private fun RecoveryKeyWarningDialogPreview() {
Previews.Preview {
RecoveryKeyWarningDialog(events = {})
}
}
@@ -8,7 +8,6 @@ package org.thoughtcrime.securesms.backup.v2.ui.warning
sealed interface RecoveryKeyWarningSheetEvent {
data object DoNotShareClick : RecoveryKeyWarningSheetEvent
data object ShareKeyClick : RecoveryKeyWarningSheetEvent
data object PasteKeyClick : RecoveryKeyWarningSheetEvent
data object GotItClick : RecoveryKeyWarningSheetEvent
data object LearnMoreClick : RecoveryKeyWarningSheetEvent
}
@@ -25,12 +25,12 @@ open class DSLSettingsActivity : PassphraseRequiredActivity() {
setContentView(R.layout.dsl_settings_activity)
if (savedInstanceState == null) {
val navGraphId = intent.getIntExtra(ARG_NAV_GRAPH, -1)
val navGraphId = resolveNavGraphId()
if (navGraphId == -1) {
throw IllegalStateException("No navgraph id was passed to activity")
}
val fragment: NavHostFragment = NavHostFragment.create(navGraphId, intent.getBundleExtra(ARG_START_BUNDLE))
val fragment: NavHostFragment = NavHostFragment.create(navGraphId, resolveStartBundle())
supportFragmentManager.beginTransaction()
.replace(R.id.nav_host_fragment, fragment)
@@ -64,6 +64,10 @@ open class DSLSettingsActivity : PassphraseRequiredActivity() {
protected open fun onWillFinish() {}
protected open fun resolveNavGraphId(): Int = intent.getIntExtra(ARG_NAV_GRAPH, -1)
protected open fun resolveStartBundle(): Bundle? = intent.getBundleExtra(ARG_START_BUNDLE)
companion object {
const val ARG_NAV_GRAPH = "nav_graph"
const val ARG_START_BUNDLE = "start_bundle"
@@ -45,10 +45,6 @@ class AppSettingsActivity : DSLSettingsActivity(), GooglePayComponent {
override val googlePayResultPublisher: Subject<GooglePayComponent.GooglePayResult> = PublishSubject.create()
override fun onCreate(savedInstanceState: Bundle?, ready: Boolean) {
if (intent?.hasExtra(ARG_NAV_GRAPH) != true) {
intent?.putExtra(ARG_NAV_GRAPH, R.navigation.app_settings_with_change_number)
}
super.onCreate(savedInstanceState, ready)
val startingAction: NavDirections? = if (intent?.categories?.contains(NOTIFICATION_CATEGORY) == true) {
@@ -152,6 +148,10 @@ class AppSettingsActivity : DSLSettingsActivity(), GooglePayComponent {
}
}
override fun resolveNavGraphId(): Int = R.navigation.app_settings_with_change_number
override fun resolveStartBundle(): Bundle? = null
@Suppress("DEPRECATION")
override fun onActivityResult(requestCode: Int, resultCode: Int, data: Intent?) {
super.onActivityResult(requestCode, resultCode, data)
@@ -45,6 +45,7 @@ import org.signal.core.ui.compose.Texts
import org.thoughtcrime.securesms.R
import org.thoughtcrime.securesms.compose.rememberStatusBarColorNestedScrollModifier
import org.thoughtcrime.securesms.util.CommunicationActions
import org.thoughtcrime.securesms.util.RemoteConfig
import org.thoughtcrime.securesms.util.viewModel
/**
@@ -298,29 +299,31 @@ private fun AdvancedPrivacySettingsScreen(
)
}
item {
Dividers.Default()
}
item {
val label = buildAnnotatedString {
append(stringResource(R.string.preferences_automatic_key_verification_body))
append(" ")
withLink(
LinkAnnotation.Clickable("learn-more", linkInteractionListener = {
callbacks.onAutomaticVerificationLearnMoreClick()
})
) {
append(stringResource(R.string.LearnMoreTextView_learn_more))
}
if (RemoteConfig.internalUser) {
item {
Dividers.Default()
}
Rows.ToggleRow(
checked = state.allowAutomaticKeyVerification,
text = AnnotatedString(stringResource(R.string.preferences_automatic_key_verification)),
label = label,
onCheckChanged = callbacks::onAllowAutomaticVerificationChanged
)
item {
val label = buildAnnotatedString {
append(stringResource(R.string.preferences_automatic_key_verification_body))
append(" ")
withLink(
LinkAnnotation.Clickable("learn-more", linkInteractionListener = {
callbacks.onAutomaticVerificationLearnMoreClick()
})
) {
append(stringResource(R.string.LearnMoreTextView_learn_more))
}
}
Rows.ToggleRow(
checked = state.allowAutomaticKeyVerification,
text = AnnotatedString(stringResource(R.string.preferences_automatic_key_verification)),
label = label,
onCheckChanged = callbacks::onAllowAutomaticVerificationChanged
)
}
}
}
}
@@ -90,13 +90,22 @@ class TransferControlView @JvmOverloads constructor(context: Context, attrs: Att
val newRender = TransferControls.deriveRenderState(newState)
state = newState
if (oldRender != newRender) {
verboseLog { "render $oldRender -> $newRender slides=[${slidesAsLogString(newState.slides)}]" }
if (oldRender == newRender) {
return
}
verboseLog { "render $oldRender -> $newRender slides=[${slidesAsLogString(newState.slides)}]" }
if (oldRender is TransferControlsRenderState.InProgress && oldRender.isProgressOnlyDifference(newRender)) {
progressUpdateDebouncer.publish {
renderState = newRender
if (newRender !is TransferControlsRenderState.Gone) {
visibility = VISIBLE
}
visibility = VISIBLE
}
} else {
progressUpdateDebouncer.clear()
renderState = newRender
if (newRender !is TransferControlsRenderState.Gone) {
visibility = VISIBLE
}
}
}
@@ -319,7 +319,11 @@ sealed interface TransferControlsRenderState {
val showPlayButton: Boolean,
val cancelable: Boolean,
val label: TransferControls.ProgressLabel?
) : TransferControlsRenderState
) : TransferControlsRenderState {
fun isProgressOnlyDifference(other: TransferControlsRenderState): Boolean {
return other is InProgress && copy(progress = other.progress, label = other.label) == other
}
}
data class Retry(
val isUpload: Boolean
@@ -20,6 +20,7 @@ import kotlinx.coroutines.flow.SharedFlow
import kotlinx.coroutines.flow.SharingStarted
import kotlinx.coroutines.flow.StateFlow
import kotlinx.coroutines.flow.combine
import kotlinx.coroutines.flow.debounce
import kotlinx.coroutines.flow.drop
import kotlinx.coroutines.flow.flatMapLatest
import kotlinx.coroutines.flow.flowOf
@@ -63,11 +64,13 @@ class ContactSearchViewModel(
val arbitraryRepository: ArbitraryRepository?,
private val searchRepository: SearchRepository,
private val contactSearchPagedDataSourceRepository: ContactSearchPagedDataSourceRepository,
val fixedContacts: Set<ContactSearchKey> = emptySet()
val fixedContacts: Set<ContactSearchKey> = emptySet(),
private val debounceSearch: Boolean = false
) : ViewModel() {
companion object {
private const val QUERY = "query"
private const val SEARCH_DEBOUNCE_MILLIS = 300L
}
private val safetyNumberRepository: SafetyNumberRepository by lazy { SafetyNumberRepository() }
@@ -97,7 +100,8 @@ class ContactSearchViewModel(
init {
viewModelScope.launch {
rawQuery.drop(1).collect { query ->
val querySource = if (debounceSearch) rawQuery.drop(1).debounce(SEARCH_DEBOUNCE_MILLIS) else rawQuery.drop(1)
querySource.collect { query ->
savedStateHandle[QUERY] = query
internalConfigurationState.update { it.copy(query = query) }
}
@@ -266,7 +270,8 @@ class ContactSearchViewModel(
private val arbitraryRepository: ArbitraryRepository?,
private val searchRepository: SearchRepository,
private val contactSearchPagedDataSourceRepository: ContactSearchPagedDataSourceRepository,
private val fixedContacts: Set<ContactSearchKey> = emptySet()
private val fixedContacts: Set<ContactSearchKey> = emptySet(),
private val debounceSearch: Boolean = false
) : AbstractSavedStateViewModelFactory() {
override fun <T : ViewModel> create(key: String, modelClass: Class<T>, handle: SavedStateHandle): T {
return modelClass.cast(
@@ -279,7 +284,8 @@ class ContactSearchViewModel(
arbitraryRepository = arbitraryRepository,
searchRepository = searchRepository,
contactSearchPagedDataSourceRepository = contactSearchPagedDataSourceRepository,
fixedContacts = fixedContacts
fixedContacts = fixedContacts,
debounceSearch = debounceSearch
)
) as T
}
@@ -65,10 +65,8 @@ public class ConversationRepository {
firstUnreadPosition = SignalDatabase.messages().getMessagePositionByDateReceivedTimestamp(threadId, firstUnreadDateReceived, false);
}
if (firstUnreadPosition <= 0) {
firstUnreadId = -1;
firstUnreadDateReceived = 0;
}
// A position of 0 means the oldest unread message is the newest message in the thread (e.g. a single unread). That
// is a valid divider anchor, so we keep firstUnreadId; it just means we don't scroll up to reach it.
if (firstUnreadDateReceived == 0 && lastScrolled > 0) {
lastScrolledPosition = SignalDatabase.messages().getMessagePositionByDateReceivedTimestamp(threadId, lastScrolled, true);
@@ -26,7 +26,6 @@ import androidx.compose.runtime.remember
import androidx.compose.runtime.setValue
import androidx.compose.ui.Modifier
import androidx.compose.ui.graphics.Color
import androidx.compose.ui.input.pointer.pointerInput
import androidx.compose.ui.platform.ComposeView
import androidx.compose.ui.platform.LocalDensity
import androidx.compose.ui.platform.LocalResources
@@ -186,15 +185,7 @@ class MultiselectForwardFragment :
SignalTheme {
Surface(
color = remember { Color(callback.getDialogBackgroundColor()) },
// Swallow touches that miss the bar's children so they don't toggle a contact row behind it.
modifier = Modifier.pointerInput(Unit) {
awaitPointerEventScope {
while (true) {
awaitPointerEvent().changes.forEach { it.consume() }
}
}
}
color = remember { Color(callback.getDialogBackgroundColor()) }
) {
MultiselectForwardBottomBar(
state = state,
@@ -1611,6 +1611,8 @@ class ConversationFragment :
}
composeText.setMessageSendType(MessageSendType.SignalMessageSendType)
invalidateOptionsMenu()
}
private fun applyReleaseNotesLayout() {
@@ -331,7 +331,8 @@ public class ConversationListFragment extends MainFragment implements Conversati
new ConversationListSearchAdapter.ChatFilterRepository(),
new SearchRepository(requireContext().getString(R.string.note_to_self)),
new ContactSearchPagedDataSourceRepository(requireContext()),
Collections.emptySet()
Collections.emptySet(),
true
)).get(ContactSearchViewModel.class);
searchAdapter = new ConversationListSearchAdapter(
@@ -87,7 +87,10 @@ class CheckKeyTransparencyJob private constructor(
}
private fun canRunJob(): Boolean {
return if (!SignalStore.account.isRegistered) {
return if (!RemoteConfig.internalUser) {
Log.i(TAG, "Remote config is not on. Exiting.")
false
} else if (!SignalStore.account.isRegistered) {
Log.i(TAG, "Account not registered. Exiting.")
false
} else if (TextSecurePreferences.isUnauthorizedReceived(AppDependencies.application)) {
@@ -307,8 +307,14 @@ public class GroupConnectedActionProcessor extends GroupActionProcessor {
return currentState;
}
String eraId = WebRtcUtil.getGroupCallEraId(groupCall);
if (eraId == null) {
Log.i(tag, "handleGroupJoinedMembershipChanged(): eraId is null, waiting for peek update");
return currentState;
}
boolean remoteUserRangTheCall = currentState.getCallSetupState(RemotePeer.GROUP_CALL_ID).getRingerRecipient() != Recipient.self();
String eraId = WebRtcUtil.getGroupCallEraId(groupCall);
webRtcInteractor.sendGroupCallMessage(currentState.getCallInfoState().getCallRecipient(), eraId, null, remoteUserRangTheCall, true);
List<UUID> members = new ArrayList<>(peekInfo.getJoinedMembers());
@@ -1003,11 +1003,12 @@ public final class SignalCallManager implements CallManager.Observer, GroupCall.
if (group != null &&
group.isActive() &&
!Recipient.resolved(group.getRecipientId()).isBlocked() &&
group.memberLevel(senderRecipient).isInGroup() &&
(!group.isAnnouncementGroup() || group.isAdmin(senderRecipient)))
{
process((s, p) -> p.handleGroupCallRingUpdate(s, new RemotePeer(group.getRecipientId()), groupId, ringId, senderAci, ringUpdate));
} else {
Log.w(TAG, "Unable to ring unknown/inactive/blocked group.");
Log.w(TAG, "Unable to ring unknown/inactive/blocked group, or sender is not a current member of the group.");
}
} catch (InvalidInputException e) {
Log.w(TAG, "Unable to ring group due to invalid group id", e);
@@ -54,8 +54,9 @@ public final class ConversationUtil {
private static final List<String> PARAMETERS_AUDIENCE = Collections.singletonList("Audience");
private ConversationUtil() {}
private static final int MAX_SHORTCUT_PERSON_COUNT = 10;
private ConversationUtil() {}
/**
* @return The stringified channel id for a given Recipient
@@ -183,7 +184,12 @@ public final class ConversationUtil {
shortcuts.add(info);
}
return ShortcutManagerCompat.setDynamicShortcuts(context, shortcuts);
try {
return ShortcutManagerCompat.setDynamicShortcuts(context, shortcuts);
} catch (IllegalArgumentException e) {
Log.w(TAG, "Failed to set dynamic shortcuts, likely because one was too large. Skipping update.", e);
return true;
}
}
/**
@@ -198,7 +204,12 @@ public final class ConversationUtil {
ShortcutInfoCompat shortcutInfo = buildShortcutInfo(context, activityName, recipient, rank, direction);
return ShortcutManagerCompat.pushDynamicShortcut(context, shortcutInfo);
try {
return ShortcutManagerCompat.pushDynamicShortcut(context, shortcutInfo);
} catch (IllegalArgumentException e) {
Log.w(TAG, "Failed to push dynamic shortcut, likely because it was too large. Skipping update.", e);
return true;
}
}
/**
@@ -271,7 +282,7 @@ public final class ConversationUtil {
private static @NonNull Person[] buildPersonsForGroup(@NonNull Context context, @NonNull GroupId groupId) {
List<Recipient> members = SignalDatabase.groups().getGroupMembers(groupId, GroupTable.MemberSet.FULL_MEMBERS_EXCLUDING_SELF);
return members.stream().map(member -> buildPersonWithoutIcon(context, member.resolve())).toArray(Person[]::new);
return members.stream().limit(MAX_SHORTCUT_PERSON_COUNT).map(member -> buildPersonWithoutIcon(context, member.resolve())).toArray(Person[]::new);
}
/**
@@ -7,11 +7,12 @@ package org.thoughtcrime.securesms.verify
import org.thoughtcrime.securesms.keyvalue.SignalStore
import org.thoughtcrime.securesms.recipients.Recipient
import org.thoughtcrime.securesms.util.RemoteConfig
data class VerifyDisplayScreenState(
val isSafetyNumberVerified: Boolean,
val isAutomaticVerificationVisible: Boolean = SignalStore.settings.automaticVerificationEnabled,
val shouldDisplayVerifyAutomaticallyEducationSheet: Boolean = SignalStore.settings.automaticVerificationEnabled && !SignalStore.uiHints.hasSeenVerifyAutomaticallySheet(),
val isAutomaticVerificationVisible: Boolean = RemoteConfig.internalUser && SignalStore.settings.automaticVerificationEnabled,
val shouldDisplayVerifyAutomaticallyEducationSheet: Boolean = RemoteConfig.internalUser && SignalStore.settings.automaticVerificationEnabled && !SignalStore.uiHints.hasSeenVerifyAutomaticallySheet(),
val recipient: Recipient? = null,
val fingerprintHolder: FingerprintHolder = FingerprintHolder.Uninitialised,
val automaticVerificationStatus: AutomaticVerificationStatus = AutomaticVerificationStatus.NONE,
+7 -5
View File
@@ -3522,9 +3522,9 @@
<!-- Status update label used while the device is transmitting data over the network. Will take the form of "1.0 MB/2.0 MB" -->
<string name="TransferControlView__download_progress_s_s">%1$s/%2$s</string>
<!-- Accessibility description for the button that starts downloading an attachment -->
<string name="TransferControlView__download">Download</string>
<string name="TransferControlView__download">Laai af</string>
<!-- Accessibility description for the button that starts uploading an attachment -->
<string name="TransferControlView__upload">Upload</string>
<string name="TransferControlView__upload">Laai op</string>
<!-- UnauthorizedReminder -->
<!-- Message shown in a reminder banner when the user\'s device is no longer registered -->
@@ -9938,9 +9938,11 @@
<!-- Remainder of the warning sheet body following the bolded lead-in RecoveryKeyWarningSheetContent__signal_will_never_message_you -->
<string name="RecoveryKeyWarningSheetContent__for_your_recovery_key_never_respond">for your recovery key. Never respond to a chat pretending to be Signal. Store your recovery key somewhere safe and never share it with anyone.</string>
<!-- Button dismissing the recovery key warning sheet after the user has copied their key -->
<string name="RecoveryKeyWarningSheetContent__got_it">Got it</string>
<string name="RecoveryKeyWarningSheetContent__got_it">Ek verstaan</string>
<!-- Button opening a help article with more information about recovery key safety -->
<string name="RecoveryKeyWarningSheetContent__learn_more">Learn more</string>
<string name="RecoveryKeyWarningSheetContent__learn_more">Vind meer uit</string>
<!-- Inline link opening a help article with more information about recovery key safety -->
<string name="RecoveryKeyWarningSheetContent__learn_more_period">Learn more.</string>
<!-- Button declining to paste/share the recovery key, dismissing the warning sheet -->
<string name="RecoveryKeyWarningSheetContent__do_not_share_key">Do not share key</string>
<!-- Button indicating the user wants to proceed with sharing/pasting the recovery key, which shows a final confirmation -->
@@ -9953,7 +9955,7 @@
<!-- Bolded middle sentence of the final confirmation dialog body -->
<string name="RecoveryKeyWarningDialog__signal_will_never_message_you_for_your_recovery_key">Signal will never message you for your recovery key.</string>
<!-- Final sentence of the final confirmation dialog body -->
<string name="RecoveryKeyWarningDialog__never_respond_to_a_chat">Never respond to a chat pretending to be Signal.</string>
<string name="RecoveryKeyWarningDialog__never_respond_to_a_chat">Moet nooit reageer op \'n klets wat voorgee dat dit van Signal af is nie.</string>
<!-- Button confirming the user wants to paste the recovery key -->
<string name="RecoveryKeyWarningDialog__paste_key">Paste key</string>
<!-- Button declining to paste the recovery key -->
+8 -6
View File
@@ -3946,9 +3946,9 @@
<!-- Status update label used while the device is transmitting data over the network. Will take the form of "1.0 MB/2.0 MB" -->
<string name="TransferControlView__download_progress_s_s">%1$s/%2$s</string>
<!-- Accessibility description for the button that starts downloading an attachment -->
<string name="TransferControlView__download">Download</string>
<string name="TransferControlView__download">تنزيل</string>
<!-- Accessibility description for the button that starts uploading an attachment -->
<string name="TransferControlView__upload">Upload</string>
<string name="TransferControlView__upload">تحميل</string>
<!-- UnauthorizedReminder -->
<!-- Message shown in a reminder banner when the user\'s device is no longer registered -->
@@ -10744,15 +10744,17 @@
<string name="SafetyTipsBottomSheet__open_account_settings">افتح إعدادات الحساب</string>
<!-- Title of a warning sheet shown when the user copies or pastes their recovery key, urging them not to share it -->
<string name="RecoveryKeyWarningSheetContent__do_not_share_your_recovery_key">Do not share your recovery key</string>
<string name="RecoveryKeyWarningSheetContent__do_not_share_your_recovery_key">لا تشارِك مفتاح الاستعادة الخاص بك مع أحد</string>
<!-- Bolded lead-in to the warning sheet body; combined with RecoveryKeyWarningSheetContent__for_your_recovery_key_never_respond to form a full sentence -->
<string name="RecoveryKeyWarningSheetContent__signal_will_never_message_you">Signal will never message you</string>
<!-- Remainder of the warning sheet body following the bolded lead-in RecoveryKeyWarningSheetContent__signal_will_never_message_you -->
<string name="RecoveryKeyWarningSheetContent__for_your_recovery_key_never_respond">for your recovery key. Never respond to a chat pretending to be Signal. Store your recovery key somewhere safe and never share it with anyone.</string>
<!-- Button dismissing the recovery key warning sheet after the user has copied their key -->
<string name="RecoveryKeyWarningSheetContent__got_it">Got it</string>
<string name="RecoveryKeyWarningSheetContent__got_it">تم</string>
<!-- Button opening a help article with more information about recovery key safety -->
<string name="RecoveryKeyWarningSheetContent__learn_more">Learn more</string>
<string name="RecoveryKeyWarningSheetContent__learn_more">اعرف المزيد</string>
<!-- Inline link opening a help article with more information about recovery key safety -->
<string name="RecoveryKeyWarningSheetContent__learn_more_period">Learn more.</string>
<!-- Button declining to paste/share the recovery key, dismissing the warning sheet -->
<string name="RecoveryKeyWarningSheetContent__do_not_share_key">Do not share key</string>
<!-- Button indicating the user wants to proceed with sharing/pasting the recovery key, which shows a final confirmation -->
@@ -10765,7 +10767,7 @@
<!-- Bolded middle sentence of the final confirmation dialog body -->
<string name="RecoveryKeyWarningDialog__signal_will_never_message_you_for_your_recovery_key">Signal will never message you for your recovery key.</string>
<!-- Final sentence of the final confirmation dialog body -->
<string name="RecoveryKeyWarningDialog__never_respond_to_a_chat">Never respond to a chat pretending to be Signal.</string>
<string name="RecoveryKeyWarningDialog__never_respond_to_a_chat">تجنَّب الرد نهائيًا على الدردشات التي تدعي أنها مُرسَلة من طرف سيجنال.</string>
<!-- Button confirming the user wants to paste the recovery key -->
<string name="RecoveryKeyWarningDialog__paste_key">Paste key</string>
<!-- Button declining to paste the recovery key -->
+7 -5
View File
@@ -3522,9 +3522,9 @@
<!-- Status update label used while the device is transmitting data over the network. Will take the form of "1.0 MB/2.0 MB" -->
<string name="TransferControlView__download_progress_s_s">%1$s/%2$s</string>
<!-- Accessibility description for the button that starts downloading an attachment -->
<string name="TransferControlView__download">Download</string>
<string name="TransferControlView__download">Endir</string>
<!-- Accessibility description for the button that starts uploading an attachment -->
<string name="TransferControlView__upload">Upload</string>
<string name="TransferControlView__upload">Yüklə</string>
<!-- UnauthorizedReminder -->
<!-- Message shown in a reminder banner when the user\'s device is no longer registered -->
@@ -9938,9 +9938,11 @@
<!-- Remainder of the warning sheet body following the bolded lead-in RecoveryKeyWarningSheetContent__signal_will_never_message_you -->
<string name="RecoveryKeyWarningSheetContent__for_your_recovery_key_never_respond">for your recovery key. Never respond to a chat pretending to be Signal. Store your recovery key somewhere safe and never share it with anyone.</string>
<!-- Button dismissing the recovery key warning sheet after the user has copied their key -->
<string name="RecoveryKeyWarningSheetContent__got_it">Got it</string>
<string name="RecoveryKeyWarningSheetContent__got_it">Anladım</string>
<!-- Button opening a help article with more information about recovery key safety -->
<string name="RecoveryKeyWarningSheetContent__learn_more">Learn more</string>
<string name="RecoveryKeyWarningSheetContent__learn_more">Daha ətraflı</string>
<!-- Inline link opening a help article with more information about recovery key safety -->
<string name="RecoveryKeyWarningSheetContent__learn_more_period">Learn more.</string>
<!-- Button declining to paste/share the recovery key, dismissing the warning sheet -->
<string name="RecoveryKeyWarningSheetContent__do_not_share_key">Do not share key</string>
<!-- Button indicating the user wants to proceed with sharing/pasting the recovery key, which shows a final confirmation -->
@@ -9953,7 +9955,7 @@
<!-- Bolded middle sentence of the final confirmation dialog body -->
<string name="RecoveryKeyWarningDialog__signal_will_never_message_you_for_your_recovery_key">Signal will never message you for your recovery key.</string>
<!-- Final sentence of the final confirmation dialog body -->
<string name="RecoveryKeyWarningDialog__never_respond_to_a_chat">Never respond to a chat pretending to be Signal.</string>
<string name="RecoveryKeyWarningDialog__never_respond_to_a_chat">Özünü Signal kimi göstərən çat mesajına əsla cavab verməyin.</string>
<!-- Button confirming the user wants to paste the recovery key -->
<string name="RecoveryKeyWarningDialog__paste_key">Paste key</string>
<!-- Button declining to paste the recovery key -->
+8 -6
View File
@@ -3734,9 +3734,9 @@
<!-- Status update label used while the device is transmitting data over the network. Will take the form of "1.0 MB/2.0 MB" -->
<string name="TransferControlView__download_progress_s_s">%1$s/%2$s</string>
<!-- Accessibility description for the button that starts downloading an attachment -->
<string name="TransferControlView__download">Download</string>
<string name="TransferControlView__download">Спампаваць</string>
<!-- Accessibility description for the button that starts uploading an attachment -->
<string name="TransferControlView__upload">Upload</string>
<string name="TransferControlView__upload">Запампаваць</string>
<!-- UnauthorizedReminder -->
<!-- Message shown in a reminder banner when the user\'s device is no longer registered -->
@@ -10338,15 +10338,17 @@
<string name="SafetyTipsBottomSheet__open_account_settings">Адкрыць налады ўліковага запісу</string>
<!-- Title of a warning sheet shown when the user copies or pastes their recovery key, urging them not to share it -->
<string name="RecoveryKeyWarningSheetContent__do_not_share_your_recovery_key">Do not share your recovery key</string>
<string name="RecoveryKeyWarningSheetContent__do_not_share_your_recovery_key">Нікому не паказвайце свой код для аднаўлення</string>
<!-- Bolded lead-in to the warning sheet body; combined with RecoveryKeyWarningSheetContent__for_your_recovery_key_never_respond to form a full sentence -->
<string name="RecoveryKeyWarningSheetContent__signal_will_never_message_you">Signal will never message you</string>
<!-- Remainder of the warning sheet body following the bolded lead-in RecoveryKeyWarningSheetContent__signal_will_never_message_you -->
<string name="RecoveryKeyWarningSheetContent__for_your_recovery_key_never_respond">for your recovery key. Never respond to a chat pretending to be Signal. Store your recovery key somewhere safe and never share it with anyone.</string>
<!-- Button dismissing the recovery key warning sheet after the user has copied their key -->
<string name="RecoveryKeyWarningSheetContent__got_it">Got it</string>
<string name="RecoveryKeyWarningSheetContent__got_it">Зразумела</string>
<!-- Button opening a help article with more information about recovery key safety -->
<string name="RecoveryKeyWarningSheetContent__learn_more">Learn more</string>
<string name="RecoveryKeyWarningSheetContent__learn_more">Даведацца больш</string>
<!-- Inline link opening a help article with more information about recovery key safety -->
<string name="RecoveryKeyWarningSheetContent__learn_more_period">Learn more.</string>
<!-- Button declining to paste/share the recovery key, dismissing the warning sheet -->
<string name="RecoveryKeyWarningSheetContent__do_not_share_key">Do not share key</string>
<!-- Button indicating the user wants to proceed with sharing/pasting the recovery key, which shows a final confirmation -->
@@ -10359,7 +10361,7 @@
<!-- Bolded middle sentence of the final confirmation dialog body -->
<string name="RecoveryKeyWarningDialog__signal_will_never_message_you_for_your_recovery_key">Signal will never message you for your recovery key.</string>
<!-- Final sentence of the final confirmation dialog body -->
<string name="RecoveryKeyWarningDialog__never_respond_to_a_chat">Never respond to a chat pretending to be Signal.</string>
<string name="RecoveryKeyWarningDialog__never_respond_to_a_chat">Не адказвайце на чат, што выдае сябе за Signal.</string>
<!-- Button confirming the user wants to paste the recovery key -->
<string name="RecoveryKeyWarningDialog__paste_key">Paste key</string>
<!-- Button declining to paste the recovery key -->
+8 -6
View File
@@ -3522,9 +3522,9 @@
<!-- Status update label used while the device is transmitting data over the network. Will take the form of "1.0 MB/2.0 MB" -->
<string name="TransferControlView__download_progress_s_s">%1$s/%2$s</string>
<!-- Accessibility description for the button that starts downloading an attachment -->
<string name="TransferControlView__download">Download</string>
<string name="TransferControlView__download">Изтегляне</string>
<!-- Accessibility description for the button that starts uploading an attachment -->
<string name="TransferControlView__upload">Upload</string>
<string name="TransferControlView__upload">Качване</string>
<!-- UnauthorizedReminder -->
<!-- Message shown in a reminder banner when the user\'s device is no longer registered -->
@@ -9932,15 +9932,17 @@
<string name="SafetyTipsBottomSheet__open_account_settings">Отваряне на настройките на акаунта</string>
<!-- Title of a warning sheet shown when the user copies or pastes their recovery key, urging them not to share it -->
<string name="RecoveryKeyWarningSheetContent__do_not_share_your_recovery_key">Do not share your recovery key</string>
<string name="RecoveryKeyWarningSheetContent__do_not_share_your_recovery_key">Не споделяйте своя ключ за възстановяване</string>
<!-- Bolded lead-in to the warning sheet body; combined with RecoveryKeyWarningSheetContent__for_your_recovery_key_never_respond to form a full sentence -->
<string name="RecoveryKeyWarningSheetContent__signal_will_never_message_you">Signal will never message you</string>
<!-- Remainder of the warning sheet body following the bolded lead-in RecoveryKeyWarningSheetContent__signal_will_never_message_you -->
<string name="RecoveryKeyWarningSheetContent__for_your_recovery_key_never_respond">for your recovery key. Never respond to a chat pretending to be Signal. Store your recovery key somewhere safe and never share it with anyone.</string>
<!-- Button dismissing the recovery key warning sheet after the user has copied their key -->
<string name="RecoveryKeyWarningSheetContent__got_it">Got it</string>
<string name="RecoveryKeyWarningSheetContent__got_it">Ясно</string>
<!-- Button opening a help article with more information about recovery key safety -->
<string name="RecoveryKeyWarningSheetContent__learn_more">Learn more</string>
<string name="RecoveryKeyWarningSheetContent__learn_more">Научете повече</string>
<!-- Inline link opening a help article with more information about recovery key safety -->
<string name="RecoveryKeyWarningSheetContent__learn_more_period">Learn more.</string>
<!-- Button declining to paste/share the recovery key, dismissing the warning sheet -->
<string name="RecoveryKeyWarningSheetContent__do_not_share_key">Do not share key</string>
<!-- Button indicating the user wants to proceed with sharing/pasting the recovery key, which shows a final confirmation -->
@@ -9953,7 +9955,7 @@
<!-- Bolded middle sentence of the final confirmation dialog body -->
<string name="RecoveryKeyWarningDialog__signal_will_never_message_you_for_your_recovery_key">Signal will never message you for your recovery key.</string>
<!-- Final sentence of the final confirmation dialog body -->
<string name="RecoveryKeyWarningDialog__never_respond_to_a_chat">Never respond to a chat pretending to be Signal.</string>
<string name="RecoveryKeyWarningDialog__never_respond_to_a_chat">Никога не отговаряйте на чатове, в които някой се преструва за Signal.</string>
<!-- Button confirming the user wants to paste the recovery key -->
<string name="RecoveryKeyWarningDialog__paste_key">Paste key</string>
<!-- Button declining to paste the recovery key -->
+8 -6
View File
@@ -3522,9 +3522,9 @@
<!-- Status update label used while the device is transmitting data over the network. Will take the form of "1.0 MB/2.0 MB" -->
<string name="TransferControlView__download_progress_s_s">%1$s/%2$s</string>
<!-- Accessibility description for the button that starts downloading an attachment -->
<string name="TransferControlView__download">Download</string>
<string name="TransferControlView__download">ডাউনলোড</string>
<!-- Accessibility description for the button that starts uploading an attachment -->
<string name="TransferControlView__upload">Upload</string>
<string name="TransferControlView__upload">আপলোড করুন</string>
<!-- UnauthorizedReminder -->
<!-- Message shown in a reminder banner when the user\'s device is no longer registered -->
@@ -9932,15 +9932,17 @@
<string name="SafetyTipsBottomSheet__open_account_settings">অ্যাকাউন্ট সেটিংস খুলুন</string>
<!-- Title of a warning sheet shown when the user copies or pastes their recovery key, urging them not to share it -->
<string name="RecoveryKeyWarningSheetContent__do_not_share_your_recovery_key">Do not share your recovery key</string>
<string name="RecoveryKeyWarningSheetContent__do_not_share_your_recovery_key">আপনার পুনরুদ্ধার \'কি\' শেয়ার করবেন না</string>
<!-- Bolded lead-in to the warning sheet body; combined with RecoveryKeyWarningSheetContent__for_your_recovery_key_never_respond to form a full sentence -->
<string name="RecoveryKeyWarningSheetContent__signal_will_never_message_you">Signal will never message you</string>
<!-- Remainder of the warning sheet body following the bolded lead-in RecoveryKeyWarningSheetContent__signal_will_never_message_you -->
<string name="RecoveryKeyWarningSheetContent__for_your_recovery_key_never_respond">for your recovery key. Never respond to a chat pretending to be Signal. Store your recovery key somewhere safe and never share it with anyone.</string>
<!-- Button dismissing the recovery key warning sheet after the user has copied their key -->
<string name="RecoveryKeyWarningSheetContent__got_it">Got it</string>
<string name="RecoveryKeyWarningSheetContent__got_it">বুঝতে পেরেছি</string>
<!-- Button opening a help article with more information about recovery key safety -->
<string name="RecoveryKeyWarningSheetContent__learn_more">Learn more</string>
<string name="RecoveryKeyWarningSheetContent__learn_more">আরো জানুন</string>
<!-- Inline link opening a help article with more information about recovery key safety -->
<string name="RecoveryKeyWarningSheetContent__learn_more_period">Learn more.</string>
<!-- Button declining to paste/share the recovery key, dismissing the warning sheet -->
<string name="RecoveryKeyWarningSheetContent__do_not_share_key">Do not share key</string>
<!-- Button indicating the user wants to proceed with sharing/pasting the recovery key, which shows a final confirmation -->
@@ -9953,7 +9955,7 @@
<!-- Bolded middle sentence of the final confirmation dialog body -->
<string name="RecoveryKeyWarningDialog__signal_will_never_message_you_for_your_recovery_key">Signal will never message you for your recovery key.</string>
<!-- Final sentence of the final confirmation dialog body -->
<string name="RecoveryKeyWarningDialog__never_respond_to_a_chat">Never respond to a chat pretending to be Signal.</string>
<string name="RecoveryKeyWarningDialog__never_respond_to_a_chat">Signal-এর প্রতিনিধি হওয়ার ভান করে এমন কোনো চ্যাটের উত্তর দিবেন না।</string>
<!-- Button confirming the user wants to paste the recovery key -->
<string name="RecoveryKeyWarningDialog__paste_key">Paste key</string>
<!-- Button declining to paste the recovery key -->
+7 -5
View File
@@ -3734,9 +3734,9 @@
<!-- Status update label used while the device is transmitting data over the network. Will take the form of "1.0 MB/2.0 MB" -->
<string name="TransferControlView__download_progress_s_s">%1$s/%2$s</string>
<!-- Accessibility description for the button that starts downloading an attachment -->
<string name="TransferControlView__download">Download</string>
<string name="TransferControlView__download">Preuzmi</string>
<!-- Accessibility description for the button that starts uploading an attachment -->
<string name="TransferControlView__upload">Upload</string>
<string name="TransferControlView__upload">Preuzmi</string>
<!-- UnauthorizedReminder -->
<!-- Message shown in a reminder banner when the user\'s device is no longer registered -->
@@ -10344,9 +10344,11 @@
<!-- Remainder of the warning sheet body following the bolded lead-in RecoveryKeyWarningSheetContent__signal_will_never_message_you -->
<string name="RecoveryKeyWarningSheetContent__for_your_recovery_key_never_respond">for your recovery key. Never respond to a chat pretending to be Signal. Store your recovery key somewhere safe and never share it with anyone.</string>
<!-- Button dismissing the recovery key warning sheet after the user has copied their key -->
<string name="RecoveryKeyWarningSheetContent__got_it">Got it</string>
<string name="RecoveryKeyWarningSheetContent__got_it">Razumijem</string>
<!-- Button opening a help article with more information about recovery key safety -->
<string name="RecoveryKeyWarningSheetContent__learn_more">Learn more</string>
<string name="RecoveryKeyWarningSheetContent__learn_more">Saznaj više</string>
<!-- Inline link opening a help article with more information about recovery key safety -->
<string name="RecoveryKeyWarningSheetContent__learn_more_period">Learn more.</string>
<!-- Button declining to paste/share the recovery key, dismissing the warning sheet -->
<string name="RecoveryKeyWarningSheetContent__do_not_share_key">Do not share key</string>
<!-- Button indicating the user wants to proceed with sharing/pasting the recovery key, which shows a final confirmation -->
@@ -10359,7 +10361,7 @@
<!-- Bolded middle sentence of the final confirmation dialog body -->
<string name="RecoveryKeyWarningDialog__signal_will_never_message_you_for_your_recovery_key">Signal will never message you for your recovery key.</string>
<!-- Final sentence of the final confirmation dialog body -->
<string name="RecoveryKeyWarningDialog__never_respond_to_a_chat">Never respond to a chat pretending to be Signal.</string>
<string name="RecoveryKeyWarningDialog__never_respond_to_a_chat">Ne odgovarajte na razgovore koji navodno dolaze od Signala.</string>
<!-- Button confirming the user wants to paste the recovery key -->
<string name="RecoveryKeyWarningDialog__paste_key">Paste key</string>
<!-- Button declining to paste the recovery key -->
+8 -6
View File
@@ -3522,9 +3522,9 @@
<!-- Status update label used while the device is transmitting data over the network. Will take the form of "1.0 MB/2.0 MB" -->
<string name="TransferControlView__download_progress_s_s">%1$s/%2$s</string>
<!-- Accessibility description for the button that starts downloading an attachment -->
<string name="TransferControlView__download">Download</string>
<string name="TransferControlView__download">Baixa</string>
<!-- Accessibility description for the button that starts uploading an attachment -->
<string name="TransferControlView__upload">Upload</string>
<string name="TransferControlView__upload">Pujar</string>
<!-- UnauthorizedReminder -->
<!-- Message shown in a reminder banner when the user\'s device is no longer registered -->
@@ -9932,15 +9932,17 @@
<string name="SafetyTipsBottomSheet__open_account_settings">Obrir els Ajustos del compte</string>
<!-- Title of a warning sheet shown when the user copies or pastes their recovery key, urging them not to share it -->
<string name="RecoveryKeyWarningSheetContent__do_not_share_your_recovery_key">Do not share your recovery key</string>
<string name="RecoveryKeyWarningSheetContent__do_not_share_your_recovery_key">No comparteixis la teva clau de recuperació</string>
<!-- Bolded lead-in to the warning sheet body; combined with RecoveryKeyWarningSheetContent__for_your_recovery_key_never_respond to form a full sentence -->
<string name="RecoveryKeyWarningSheetContent__signal_will_never_message_you">Signal will never message you</string>
<!-- Remainder of the warning sheet body following the bolded lead-in RecoveryKeyWarningSheetContent__signal_will_never_message_you -->
<string name="RecoveryKeyWarningSheetContent__for_your_recovery_key_never_respond">for your recovery key. Never respond to a chat pretending to be Signal. Store your recovery key somewhere safe and never share it with anyone.</string>
<!-- Button dismissing the recovery key warning sheet after the user has copied their key -->
<string name="RecoveryKeyWarningSheetContent__got_it">Got it</string>
<string name="RecoveryKeyWarningSheetContent__got_it">Entesos</string>
<!-- Button opening a help article with more information about recovery key safety -->
<string name="RecoveryKeyWarningSheetContent__learn_more">Learn more</string>
<string name="RecoveryKeyWarningSheetContent__learn_more">Més informació</string>
<!-- Inline link opening a help article with more information about recovery key safety -->
<string name="RecoveryKeyWarningSheetContent__learn_more_period">Learn more.</string>
<!-- Button declining to paste/share the recovery key, dismissing the warning sheet -->
<string name="RecoveryKeyWarningSheetContent__do_not_share_key">Do not share key</string>
<!-- Button indicating the user wants to proceed with sharing/pasting the recovery key, which shows a final confirmation -->
@@ -9953,7 +9955,7 @@
<!-- Bolded middle sentence of the final confirmation dialog body -->
<string name="RecoveryKeyWarningDialog__signal_will_never_message_you_for_your_recovery_key">Signal will never message you for your recovery key.</string>
<!-- Final sentence of the final confirmation dialog body -->
<string name="RecoveryKeyWarningDialog__never_respond_to_a_chat">Never respond to a chat pretending to be Signal.</string>
<string name="RecoveryKeyWarningDialog__never_respond_to_a_chat">No responguis mai a missatges que es facin passar per Signal.</string>
<!-- Button confirming the user wants to paste the recovery key -->
<string name="RecoveryKeyWarningDialog__paste_key">Paste key</string>
<!-- Button declining to paste the recovery key -->
+8 -6
View File
@@ -3734,9 +3734,9 @@
<!-- Status update label used while the device is transmitting data over the network. Will take the form of "1.0 MB/2.0 MB" -->
<string name="TransferControlView__download_progress_s_s">%1$s/%2$s</string>
<!-- Accessibility description for the button that starts downloading an attachment -->
<string name="TransferControlView__download">Download</string>
<string name="TransferControlView__download">Stáhnout</string>
<!-- Accessibility description for the button that starts uploading an attachment -->
<string name="TransferControlView__upload">Upload</string>
<string name="TransferControlView__upload">Nahrát</string>
<!-- UnauthorizedReminder -->
<!-- Message shown in a reminder banner when the user\'s device is no longer registered -->
@@ -10338,15 +10338,17 @@
<string name="SafetyTipsBottomSheet__open_account_settings">Otevřít nastavení účtu</string>
<!-- Title of a warning sheet shown when the user copies or pastes their recovery key, urging them not to share it -->
<string name="RecoveryKeyWarningSheetContent__do_not_share_your_recovery_key">Do not share your recovery key</string>
<string name="RecoveryKeyWarningSheetContent__do_not_share_your_recovery_key">Svůj klíč pro obnovení nesdílejte</string>
<!-- Bolded lead-in to the warning sheet body; combined with RecoveryKeyWarningSheetContent__for_your_recovery_key_never_respond to form a full sentence -->
<string name="RecoveryKeyWarningSheetContent__signal_will_never_message_you">Signal will never message you</string>
<!-- Remainder of the warning sheet body following the bolded lead-in RecoveryKeyWarningSheetContent__signal_will_never_message_you -->
<string name="RecoveryKeyWarningSheetContent__for_your_recovery_key_never_respond">for your recovery key. Never respond to a chat pretending to be Signal. Store your recovery key somewhere safe and never share it with anyone.</string>
<!-- Button dismissing the recovery key warning sheet after the user has copied their key -->
<string name="RecoveryKeyWarningSheetContent__got_it">Got it</string>
<string name="RecoveryKeyWarningSheetContent__got_it">Rozumím</string>
<!-- Button opening a help article with more information about recovery key safety -->
<string name="RecoveryKeyWarningSheetContent__learn_more">Learn more</string>
<string name="RecoveryKeyWarningSheetContent__learn_more">Zjistit více</string>
<!-- Inline link opening a help article with more information about recovery key safety -->
<string name="RecoveryKeyWarningSheetContent__learn_more_period">Learn more.</string>
<!-- Button declining to paste/share the recovery key, dismissing the warning sheet -->
<string name="RecoveryKeyWarningSheetContent__do_not_share_key">Do not share key</string>
<!-- Button indicating the user wants to proceed with sharing/pasting the recovery key, which shows a final confirmation -->
@@ -10359,7 +10361,7 @@
<!-- Bolded middle sentence of the final confirmation dialog body -->
<string name="RecoveryKeyWarningDialog__signal_will_never_message_you_for_your_recovery_key">Signal will never message you for your recovery key.</string>
<!-- Final sentence of the final confirmation dialog body -->
<string name="RecoveryKeyWarningDialog__never_respond_to_a_chat">Never respond to a chat pretending to be Signal.</string>
<string name="RecoveryKeyWarningDialog__never_respond_to_a_chat">Nikdy neodpovídejte na chat, který se tváří jako Signal.</string>
<!-- Button confirming the user wants to paste the recovery key -->
<string name="RecoveryKeyWarningDialog__paste_key">Paste key</string>
<!-- Button declining to paste the recovery key -->
+7 -5
View File
@@ -3522,7 +3522,7 @@
<!-- Status update label used while the device is transmitting data over the network. Will take the form of "1.0 MB/2.0 MB" -->
<string name="TransferControlView__download_progress_s_s">%1$s/%2$s</string>
<!-- Accessibility description for the button that starts downloading an attachment -->
<string name="TransferControlView__download">Download</string>
<string name="TransferControlView__download">Hent</string>
<!-- Accessibility description for the button that starts uploading an attachment -->
<string name="TransferControlView__upload">Upload</string>
@@ -9932,15 +9932,17 @@
<string name="SafetyTipsBottomSheet__open_account_settings">Åbn kontoindstillinger</string>
<!-- Title of a warning sheet shown when the user copies or pastes their recovery key, urging them not to share it -->
<string name="RecoveryKeyWarningSheetContent__do_not_share_your_recovery_key">Do not share your recovery key</string>
<string name="RecoveryKeyWarningSheetContent__do_not_share_your_recovery_key">Del ikke din gendannelsesnøgle</string>
<!-- Bolded lead-in to the warning sheet body; combined with RecoveryKeyWarningSheetContent__for_your_recovery_key_never_respond to form a full sentence -->
<string name="RecoveryKeyWarningSheetContent__signal_will_never_message_you">Signal will never message you</string>
<!-- Remainder of the warning sheet body following the bolded lead-in RecoveryKeyWarningSheetContent__signal_will_never_message_you -->
<string name="RecoveryKeyWarningSheetContent__for_your_recovery_key_never_respond">for your recovery key. Never respond to a chat pretending to be Signal. Store your recovery key somewhere safe and never share it with anyone.</string>
<!-- Button dismissing the recovery key warning sheet after the user has copied their key -->
<string name="RecoveryKeyWarningSheetContent__got_it">Got it</string>
<string name="RecoveryKeyWarningSheetContent__got_it">Forstået</string>
<!-- Button opening a help article with more information about recovery key safety -->
<string name="RecoveryKeyWarningSheetContent__learn_more">Learn more</string>
<string name="RecoveryKeyWarningSheetContent__learn_more">Få mere at vide</string>
<!-- Inline link opening a help article with more information about recovery key safety -->
<string name="RecoveryKeyWarningSheetContent__learn_more_period">Learn more.</string>
<!-- Button declining to paste/share the recovery key, dismissing the warning sheet -->
<string name="RecoveryKeyWarningSheetContent__do_not_share_key">Do not share key</string>
<!-- Button indicating the user wants to proceed with sharing/pasting the recovery key, which shows a final confirmation -->
@@ -9953,7 +9955,7 @@
<!-- Bolded middle sentence of the final confirmation dialog body -->
<string name="RecoveryKeyWarningDialog__signal_will_never_message_you_for_your_recovery_key">Signal will never message you for your recovery key.</string>
<!-- Final sentence of the final confirmation dialog body -->
<string name="RecoveryKeyWarningDialog__never_respond_to_a_chat">Never respond to a chat pretending to be Signal.</string>
<string name="RecoveryKeyWarningDialog__never_respond_to_a_chat">Svar aldrig på en chat, der udgiver sig for at være fra Signal.</string>
<!-- Button confirming the user wants to paste the recovery key -->
<string name="RecoveryKeyWarningDialog__paste_key">Paste key</string>
<!-- Button declining to paste the recovery key -->
+8 -6
View File
@@ -3522,9 +3522,9 @@
<!-- Status update label used while the device is transmitting data over the network. Will take the form of "1.0 MB/2.0 MB" -->
<string name="TransferControlView__download_progress_s_s">%1$s/%2$s</string>
<!-- Accessibility description for the button that starts downloading an attachment -->
<string name="TransferControlView__download">Download</string>
<string name="TransferControlView__download">Herunterladen</string>
<!-- Accessibility description for the button that starts uploading an attachment -->
<string name="TransferControlView__upload">Upload</string>
<string name="TransferControlView__upload">Hochladen</string>
<!-- UnauthorizedReminder -->
<!-- Message shown in a reminder banner when the user\'s device is no longer registered -->
@@ -9932,15 +9932,17 @@
<string name="SafetyTipsBottomSheet__open_account_settings">Konto-Einstellungen öffnen</string>
<!-- Title of a warning sheet shown when the user copies or pastes their recovery key, urging them not to share it -->
<string name="RecoveryKeyWarningSheetContent__do_not_share_your_recovery_key">Do not share your recovery key</string>
<string name="RecoveryKeyWarningSheetContent__do_not_share_your_recovery_key">Gib deinen Wiederherstellungsschlüssel nicht weiter</string>
<!-- Bolded lead-in to the warning sheet body; combined with RecoveryKeyWarningSheetContent__for_your_recovery_key_never_respond to form a full sentence -->
<string name="RecoveryKeyWarningSheetContent__signal_will_never_message_you">Signal will never message you</string>
<!-- Remainder of the warning sheet body following the bolded lead-in RecoveryKeyWarningSheetContent__signal_will_never_message_you -->
<string name="RecoveryKeyWarningSheetContent__for_your_recovery_key_never_respond">for your recovery key. Never respond to a chat pretending to be Signal. Store your recovery key somewhere safe and never share it with anyone.</string>
<!-- Button dismissing the recovery key warning sheet after the user has copied their key -->
<string name="RecoveryKeyWarningSheetContent__got_it">Got it</string>
<string name="RecoveryKeyWarningSheetContent__got_it">Verstanden</string>
<!-- Button opening a help article with more information about recovery key safety -->
<string name="RecoveryKeyWarningSheetContent__learn_more">Learn more</string>
<string name="RecoveryKeyWarningSheetContent__learn_more">Mehr erfahren</string>
<!-- Inline link opening a help article with more information about recovery key safety -->
<string name="RecoveryKeyWarningSheetContent__learn_more_period">Learn more.</string>
<!-- Button declining to paste/share the recovery key, dismissing the warning sheet -->
<string name="RecoveryKeyWarningSheetContent__do_not_share_key">Do not share key</string>
<!-- Button indicating the user wants to proceed with sharing/pasting the recovery key, which shows a final confirmation -->
@@ -9953,7 +9955,7 @@
<!-- Bolded middle sentence of the final confirmation dialog body -->
<string name="RecoveryKeyWarningDialog__signal_will_never_message_you_for_your_recovery_key">Signal will never message you for your recovery key.</string>
<!-- Final sentence of the final confirmation dialog body -->
<string name="RecoveryKeyWarningDialog__never_respond_to_a_chat">Never respond to a chat pretending to be Signal.</string>
<string name="RecoveryKeyWarningDialog__never_respond_to_a_chat">Reagiere niemals auf eine Nachricht, die vorgibt, von Signal zu sein.</string>
<!-- Button confirming the user wants to paste the recovery key -->
<string name="RecoveryKeyWarningDialog__paste_key">Paste key</string>
<!-- Button declining to paste the recovery key -->
+8 -6
View File
@@ -3522,9 +3522,9 @@
<!-- Status update label used while the device is transmitting data over the network. Will take the form of "1.0 MB/2.0 MB" -->
<string name="TransferControlView__download_progress_s_s">%1$s/%2$s</string>
<!-- Accessibility description for the button that starts downloading an attachment -->
<string name="TransferControlView__download">Download</string>
<string name="TransferControlView__download">Λήψη</string>
<!-- Accessibility description for the button that starts uploading an attachment -->
<string name="TransferControlView__upload">Upload</string>
<string name="TransferControlView__upload">Ανέβασμα</string>
<!-- UnauthorizedReminder -->
<!-- Message shown in a reminder banner when the user\'s device is no longer registered -->
@@ -9932,15 +9932,17 @@
<string name="SafetyTipsBottomSheet__open_account_settings">Άνοιγμα ρυθμίσεων λογαριασμού</string>
<!-- Title of a warning sheet shown when the user copies or pastes their recovery key, urging them not to share it -->
<string name="RecoveryKeyWarningSheetContent__do_not_share_your_recovery_key">Do not share your recovery key</string>
<string name="RecoveryKeyWarningSheetContent__do_not_share_your_recovery_key">Μην μοιράζεσαι το κλειδί ανάκτησής σου</string>
<!-- Bolded lead-in to the warning sheet body; combined with RecoveryKeyWarningSheetContent__for_your_recovery_key_never_respond to form a full sentence -->
<string name="RecoveryKeyWarningSheetContent__signal_will_never_message_you">Signal will never message you</string>
<!-- Remainder of the warning sheet body following the bolded lead-in RecoveryKeyWarningSheetContent__signal_will_never_message_you -->
<string name="RecoveryKeyWarningSheetContent__for_your_recovery_key_never_respond">for your recovery key. Never respond to a chat pretending to be Signal. Store your recovery key somewhere safe and never share it with anyone.</string>
<!-- Button dismissing the recovery key warning sheet after the user has copied their key -->
<string name="RecoveryKeyWarningSheetContent__got_it">Got it</string>
<string name="RecoveryKeyWarningSheetContent__got_it">Εντάξει</string>
<!-- Button opening a help article with more information about recovery key safety -->
<string name="RecoveryKeyWarningSheetContent__learn_more">Learn more</string>
<string name="RecoveryKeyWarningSheetContent__learn_more">Μάθε περισσότερα</string>
<!-- Inline link opening a help article with more information about recovery key safety -->
<string name="RecoveryKeyWarningSheetContent__learn_more_period">Learn more.</string>
<!-- Button declining to paste/share the recovery key, dismissing the warning sheet -->
<string name="RecoveryKeyWarningSheetContent__do_not_share_key">Do not share key</string>
<!-- Button indicating the user wants to proceed with sharing/pasting the recovery key, which shows a final confirmation -->
@@ -9953,7 +9955,7 @@
<!-- Bolded middle sentence of the final confirmation dialog body -->
<string name="RecoveryKeyWarningDialog__signal_will_never_message_you_for_your_recovery_key">Signal will never message you for your recovery key.</string>
<!-- Final sentence of the final confirmation dialog body -->
<string name="RecoveryKeyWarningDialog__never_respond_to_a_chat">Never respond to a chat pretending to be Signal.</string>
<string name="RecoveryKeyWarningDialog__never_respond_to_a_chat">Μην απαντάς ποτέ σε μηνύματα από το Signal.</string>
<!-- Button confirming the user wants to paste the recovery key -->
<string name="RecoveryKeyWarningDialog__paste_key">Paste key</string>
<!-- Button declining to paste the recovery key -->
+8 -6
View File
@@ -3522,9 +3522,9 @@
<!-- Status update label used while the device is transmitting data over the network. Will take the form of "1.0 MB/2.0 MB" -->
<string name="TransferControlView__download_progress_s_s">%1$s/%2$s</string>
<!-- Accessibility description for the button that starts downloading an attachment -->
<string name="TransferControlView__download">Download</string>
<string name="TransferControlView__download">Descargar</string>
<!-- Accessibility description for the button that starts uploading an attachment -->
<string name="TransferControlView__upload">Upload</string>
<string name="TransferControlView__upload">Subir</string>
<!-- UnauthorizedReminder -->
<!-- Message shown in a reminder banner when the user\'s device is no longer registered -->
@@ -9932,15 +9932,17 @@
<string name="SafetyTipsBottomSheet__open_account_settings">Abrir Ajustes de Signal</string>
<!-- Title of a warning sheet shown when the user copies or pastes their recovery key, urging them not to share it -->
<string name="RecoveryKeyWarningSheetContent__do_not_share_your_recovery_key">Do not share your recovery key</string>
<string name="RecoveryKeyWarningSheetContent__do_not_share_your_recovery_key">No compartas tu clave de recuperación</string>
<!-- Bolded lead-in to the warning sheet body; combined with RecoveryKeyWarningSheetContent__for_your_recovery_key_never_respond to form a full sentence -->
<string name="RecoveryKeyWarningSheetContent__signal_will_never_message_you">Signal will never message you</string>
<!-- Remainder of the warning sheet body following the bolded lead-in RecoveryKeyWarningSheetContent__signal_will_never_message_you -->
<string name="RecoveryKeyWarningSheetContent__for_your_recovery_key_never_respond">for your recovery key. Never respond to a chat pretending to be Signal. Store your recovery key somewhere safe and never share it with anyone.</string>
<!-- Button dismissing the recovery key warning sheet after the user has copied their key -->
<string name="RecoveryKeyWarningSheetContent__got_it">Got it</string>
<string name="RecoveryKeyWarningSheetContent__got_it">Entendido</string>
<!-- Button opening a help article with more information about recovery key safety -->
<string name="RecoveryKeyWarningSheetContent__learn_more">Learn more</string>
<string name="RecoveryKeyWarningSheetContent__learn_more">Más información</string>
<!-- Inline link opening a help article with more information about recovery key safety -->
<string name="RecoveryKeyWarningSheetContent__learn_more_period">Learn more.</string>
<!-- Button declining to paste/share the recovery key, dismissing the warning sheet -->
<string name="RecoveryKeyWarningSheetContent__do_not_share_key">Do not share key</string>
<!-- Button indicating the user wants to proceed with sharing/pasting the recovery key, which shows a final confirmation -->
@@ -9953,7 +9955,7 @@
<!-- Bolded middle sentence of the final confirmation dialog body -->
<string name="RecoveryKeyWarningDialog__signal_will_never_message_you_for_your_recovery_key">Signal will never message you for your recovery key.</string>
<!-- Final sentence of the final confirmation dialog body -->
<string name="RecoveryKeyWarningDialog__never_respond_to_a_chat">Never respond to a chat pretending to be Signal.</string>
<string name="RecoveryKeyWarningDialog__never_respond_to_a_chat">Nunca respondas a un mensaje que diga ser de Signal.</string>
<!-- Button confirming the user wants to paste the recovery key -->
<string name="RecoveryKeyWarningDialog__paste_key">Paste key</string>
<!-- Button declining to paste the recovery key -->
+7 -5
View File
@@ -3522,9 +3522,9 @@
<!-- Status update label used while the device is transmitting data over the network. Will take the form of "1.0 MB/2.0 MB" -->
<string name="TransferControlView__download_progress_s_s">%1$s/%2$s</string>
<!-- Accessibility description for the button that starts downloading an attachment -->
<string name="TransferControlView__download">Download</string>
<string name="TransferControlView__download">Laadi alla</string>
<!-- Accessibility description for the button that starts uploading an attachment -->
<string name="TransferControlView__upload">Upload</string>
<string name="TransferControlView__upload">Laadi üles</string>
<!-- UnauthorizedReminder -->
<!-- Message shown in a reminder banner when the user\'s device is no longer registered -->
@@ -9938,9 +9938,11 @@
<!-- Remainder of the warning sheet body following the bolded lead-in RecoveryKeyWarningSheetContent__signal_will_never_message_you -->
<string name="RecoveryKeyWarningSheetContent__for_your_recovery_key_never_respond">for your recovery key. Never respond to a chat pretending to be Signal. Store your recovery key somewhere safe and never share it with anyone.</string>
<!-- Button dismissing the recovery key warning sheet after the user has copied their key -->
<string name="RecoveryKeyWarningSheetContent__got_it">Got it</string>
<string name="RecoveryKeyWarningSheetContent__got_it">Sain aru</string>
<!-- Button opening a help article with more information about recovery key safety -->
<string name="RecoveryKeyWarningSheetContent__learn_more">Learn more</string>
<string name="RecoveryKeyWarningSheetContent__learn_more">Rohkem teavet</string>
<!-- Inline link opening a help article with more information about recovery key safety -->
<string name="RecoveryKeyWarningSheetContent__learn_more_period">Learn more.</string>
<!-- Button declining to paste/share the recovery key, dismissing the warning sheet -->
<string name="RecoveryKeyWarningSheetContent__do_not_share_key">Do not share key</string>
<!-- Button indicating the user wants to proceed with sharing/pasting the recovery key, which shows a final confirmation -->
@@ -9953,7 +9955,7 @@
<!-- Bolded middle sentence of the final confirmation dialog body -->
<string name="RecoveryKeyWarningDialog__signal_will_never_message_you_for_your_recovery_key">Signal will never message you for your recovery key.</string>
<!-- Final sentence of the final confirmation dialog body -->
<string name="RecoveryKeyWarningDialog__never_respond_to_a_chat">Never respond to a chat pretending to be Signal.</string>
<string name="RecoveryKeyWarningDialog__never_respond_to_a_chat">Ära vasta kunagi sõnumitele, milles väidetakse, et need on Signalilt.</string>
<!-- Button confirming the user wants to paste the recovery key -->
<string name="RecoveryKeyWarningDialog__paste_key">Paste key</string>
<!-- Button declining to paste the recovery key -->
+7 -5
View File
@@ -3522,9 +3522,9 @@
<!-- Status update label used while the device is transmitting data over the network. Will take the form of "1.0 MB/2.0 MB" -->
<string name="TransferControlView__download_progress_s_s">%1$s / %2$s</string>
<!-- Accessibility description for the button that starts downloading an attachment -->
<string name="TransferControlView__download">Download</string>
<string name="TransferControlView__download">Deskargatu</string>
<!-- Accessibility description for the button that starts uploading an attachment -->
<string name="TransferControlView__upload">Upload</string>
<string name="TransferControlView__upload">Kargatu</string>
<!-- UnauthorizedReminder -->
<!-- Message shown in a reminder banner when the user\'s device is no longer registered -->
@@ -9938,9 +9938,11 @@
<!-- Remainder of the warning sheet body following the bolded lead-in RecoveryKeyWarningSheetContent__signal_will_never_message_you -->
<string name="RecoveryKeyWarningSheetContent__for_your_recovery_key_never_respond">for your recovery key. Never respond to a chat pretending to be Signal. Store your recovery key somewhere safe and never share it with anyone.</string>
<!-- Button dismissing the recovery key warning sheet after the user has copied their key -->
<string name="RecoveryKeyWarningSheetContent__got_it">Got it</string>
<string name="RecoveryKeyWarningSheetContent__got_it">Ulertu dut</string>
<!-- Button opening a help article with more information about recovery key safety -->
<string name="RecoveryKeyWarningSheetContent__learn_more">Learn more</string>
<string name="RecoveryKeyWarningSheetContent__learn_more">Informazio gehiago</string>
<!-- Inline link opening a help article with more information about recovery key safety -->
<string name="RecoveryKeyWarningSheetContent__learn_more_period">Learn more.</string>
<!-- Button declining to paste/share the recovery key, dismissing the warning sheet -->
<string name="RecoveryKeyWarningSheetContent__do_not_share_key">Do not share key</string>
<!-- Button indicating the user wants to proceed with sharing/pasting the recovery key, which shows a final confirmation -->
@@ -9953,7 +9955,7 @@
<!-- Bolded middle sentence of the final confirmation dialog body -->
<string name="RecoveryKeyWarningDialog__signal_will_never_message_you_for_your_recovery_key">Signal will never message you for your recovery key.</string>
<!-- Final sentence of the final confirmation dialog body -->
<string name="RecoveryKeyWarningDialog__never_respond_to_a_chat">Never respond to a chat pretending to be Signal.</string>
<string name="RecoveryKeyWarningDialog__never_respond_to_a_chat">Ez erantzun Signal izatearen plantak egiten dituzten txatei.</string>
<!-- Button confirming the user wants to paste the recovery key -->
<string name="RecoveryKeyWarningDialog__paste_key">Paste key</string>
<!-- Button declining to paste the recovery key -->
+8 -6
View File
@@ -3522,9 +3522,9 @@
<!-- Status update label used while the device is transmitting data over the network. Will take the form of "1.0 MB/2.0 MB" -->
<string name="TransferControlView__download_progress_s_s">%1$s/%2$s</string>
<!-- Accessibility description for the button that starts downloading an attachment -->
<string name="TransferControlView__download">Download</string>
<string name="TransferControlView__download">بارگیری</string>
<!-- Accessibility description for the button that starts uploading an attachment -->
<string name="TransferControlView__upload">Upload</string>
<string name="TransferControlView__upload">بارگذاری</string>
<!-- UnauthorizedReminder -->
<!-- Message shown in a reminder banner when the user\'s device is no longer registered -->
@@ -9932,15 +9932,17 @@
<string name="SafetyTipsBottomSheet__open_account_settings">باز کردن تنظیمات حساب</string>
<!-- Title of a warning sheet shown when the user copies or pastes their recovery key, urging them not to share it -->
<string name="RecoveryKeyWarningSheetContent__do_not_share_your_recovery_key">Do not share your recovery key</string>
<string name="RecoveryKeyWarningSheetContent__do_not_share_your_recovery_key">رمز بازیابی خود را به اشتراک نگذارید</string>
<!-- Bolded lead-in to the warning sheet body; combined with RecoveryKeyWarningSheetContent__for_your_recovery_key_never_respond to form a full sentence -->
<string name="RecoveryKeyWarningSheetContent__signal_will_never_message_you">Signal will never message you</string>
<!-- Remainder of the warning sheet body following the bolded lead-in RecoveryKeyWarningSheetContent__signal_will_never_message_you -->
<string name="RecoveryKeyWarningSheetContent__for_your_recovery_key_never_respond">for your recovery key. Never respond to a chat pretending to be Signal. Store your recovery key somewhere safe and never share it with anyone.</string>
<!-- Button dismissing the recovery key warning sheet after the user has copied their key -->
<string name="RecoveryKeyWarningSheetContent__got_it">Got it</string>
<string name="RecoveryKeyWarningSheetContent__got_it">فهمیدم</string>
<!-- Button opening a help article with more information about recovery key safety -->
<string name="RecoveryKeyWarningSheetContent__learn_more">Learn more</string>
<string name="RecoveryKeyWarningSheetContent__learn_more">اطلاعات بیشتر</string>
<!-- Inline link opening a help article with more information about recovery key safety -->
<string name="RecoveryKeyWarningSheetContent__learn_more_period">Learn more.</string>
<!-- Button declining to paste/share the recovery key, dismissing the warning sheet -->
<string name="RecoveryKeyWarningSheetContent__do_not_share_key">Do not share key</string>
<!-- Button indicating the user wants to proceed with sharing/pasting the recovery key, which shows a final confirmation -->
@@ -9953,7 +9955,7 @@
<!-- Bolded middle sentence of the final confirmation dialog body -->
<string name="RecoveryKeyWarningDialog__signal_will_never_message_you_for_your_recovery_key">Signal will never message you for your recovery key.</string>
<!-- Final sentence of the final confirmation dialog body -->
<string name="RecoveryKeyWarningDialog__never_respond_to_a_chat">Never respond to a chat pretending to be Signal.</string>
<string name="RecoveryKeyWarningDialog__never_respond_to_a_chat">هیچ‌وقت به گفتگویی که وانمود می‌کند سیگنال است پاسخ ندهید.</string>
<!-- Button confirming the user wants to paste the recovery key -->
<string name="RecoveryKeyWarningDialog__paste_key">Paste key</string>
<!-- Button declining to paste the recovery key -->
+8 -6
View File
@@ -3522,9 +3522,9 @@
<!-- Status update label used while the device is transmitting data over the network. Will take the form of "1.0 MB/2.0 MB" -->
<string name="TransferControlView__download_progress_s_s">%1$s/%2$s</string>
<!-- Accessibility description for the button that starts downloading an attachment -->
<string name="TransferControlView__download">Download</string>
<string name="TransferControlView__download">Lataa</string>
<!-- Accessibility description for the button that starts uploading an attachment -->
<string name="TransferControlView__upload">Upload</string>
<string name="TransferControlView__upload">Lataa</string>
<!-- UnauthorizedReminder -->
<!-- Message shown in a reminder banner when the user\'s device is no longer registered -->
@@ -9932,15 +9932,17 @@
<string name="SafetyTipsBottomSheet__open_account_settings">Avaa tiliasetukset</string>
<!-- Title of a warning sheet shown when the user copies or pastes their recovery key, urging them not to share it -->
<string name="RecoveryKeyWarningSheetContent__do_not_share_your_recovery_key">Do not share your recovery key</string>
<string name="RecoveryKeyWarningSheetContent__do_not_share_your_recovery_key">Älä koskaan jaa palautusavaintasi</string>
<!-- Bolded lead-in to the warning sheet body; combined with RecoveryKeyWarningSheetContent__for_your_recovery_key_never_respond to form a full sentence -->
<string name="RecoveryKeyWarningSheetContent__signal_will_never_message_you">Signal will never message you</string>
<!-- Remainder of the warning sheet body following the bolded lead-in RecoveryKeyWarningSheetContent__signal_will_never_message_you -->
<string name="RecoveryKeyWarningSheetContent__for_your_recovery_key_never_respond">for your recovery key. Never respond to a chat pretending to be Signal. Store your recovery key somewhere safe and never share it with anyone.</string>
<!-- Button dismissing the recovery key warning sheet after the user has copied their key -->
<string name="RecoveryKeyWarningSheetContent__got_it">Got it</string>
<string name="RecoveryKeyWarningSheetContent__got_it">Selvä</string>
<!-- Button opening a help article with more information about recovery key safety -->
<string name="RecoveryKeyWarningSheetContent__learn_more">Learn more</string>
<string name="RecoveryKeyWarningSheetContent__learn_more">Lue lisää</string>
<!-- Inline link opening a help article with more information about recovery key safety -->
<string name="RecoveryKeyWarningSheetContent__learn_more_period">Learn more.</string>
<!-- Button declining to paste/share the recovery key, dismissing the warning sheet -->
<string name="RecoveryKeyWarningSheetContent__do_not_share_key">Do not share key</string>
<!-- Button indicating the user wants to proceed with sharing/pasting the recovery key, which shows a final confirmation -->
@@ -9953,7 +9955,7 @@
<!-- Bolded middle sentence of the final confirmation dialog body -->
<string name="RecoveryKeyWarningDialog__signal_will_never_message_you_for_your_recovery_key">Signal will never message you for your recovery key.</string>
<!-- Final sentence of the final confirmation dialog body -->
<string name="RecoveryKeyWarningDialog__never_respond_to_a_chat">Never respond to a chat pretending to be Signal.</string>
<string name="RecoveryKeyWarningDialog__never_respond_to_a_chat">Älä vastaa keskusteluihin, joissa lähettäjä esittää edustavansa Signalia.</string>
<!-- Button confirming the user wants to paste the recovery key -->
<string name="RecoveryKeyWarningDialog__paste_key">Paste key</string>
<!-- Button declining to paste the recovery key -->
+8 -6
View File
@@ -3522,9 +3522,9 @@
<!-- Status update label used while the device is transmitting data over the network. Will take the form of "1.0 MB/2.0 MB" -->
<string name="TransferControlView__download_progress_s_s">%1$s/%2$s</string>
<!-- Accessibility description for the button that starts downloading an attachment -->
<string name="TransferControlView__download">Download</string>
<string name="TransferControlView__download">Télécharger</string>
<!-- Accessibility description for the button that starts uploading an attachment -->
<string name="TransferControlView__upload">Upload</string>
<string name="TransferControlView__upload">Importer</string>
<!-- UnauthorizedReminder -->
<!-- Message shown in a reminder banner when the user\'s device is no longer registered -->
@@ -9932,15 +9932,17 @@
<string name="SafetyTipsBottomSheet__open_account_settings">Accéder aux paramètres du compte</string>
<!-- Title of a warning sheet shown when the user copies or pastes their recovery key, urging them not to share it -->
<string name="RecoveryKeyWarningSheetContent__do_not_share_your_recovery_key">Do not share your recovery key</string>
<string name="RecoveryKeyWarningSheetContent__do_not_share_your_recovery_key">Ne partagez pas votre clé de récupération</string>
<!-- Bolded lead-in to the warning sheet body; combined with RecoveryKeyWarningSheetContent__for_your_recovery_key_never_respond to form a full sentence -->
<string name="RecoveryKeyWarningSheetContent__signal_will_never_message_you">Signal will never message you</string>
<!-- Remainder of the warning sheet body following the bolded lead-in RecoveryKeyWarningSheetContent__signal_will_never_message_you -->
<string name="RecoveryKeyWarningSheetContent__for_your_recovery_key_never_respond">for your recovery key. Never respond to a chat pretending to be Signal. Store your recovery key somewhere safe and never share it with anyone.</string>
<!-- Button dismissing the recovery key warning sheet after the user has copied their key -->
<string name="RecoveryKeyWarningSheetContent__got_it">Got it</string>
<string name="RecoveryKeyWarningSheetContent__got_it">J\'ai compris</string>
<!-- Button opening a help article with more information about recovery key safety -->
<string name="RecoveryKeyWarningSheetContent__learn_more">Learn more</string>
<string name="RecoveryKeyWarningSheetContent__learn_more">En savoir plus</string>
<!-- Inline link opening a help article with more information about recovery key safety -->
<string name="RecoveryKeyWarningSheetContent__learn_more_period">Learn more.</string>
<!-- Button declining to paste/share the recovery key, dismissing the warning sheet -->
<string name="RecoveryKeyWarningSheetContent__do_not_share_key">Do not share key</string>
<!-- Button indicating the user wants to proceed with sharing/pasting the recovery key, which shows a final confirmation -->
@@ -9953,7 +9955,7 @@
<!-- Bolded middle sentence of the final confirmation dialog body -->
<string name="RecoveryKeyWarningDialog__signal_will_never_message_you_for_your_recovery_key">Signal will never message you for your recovery key.</string>
<!-- Final sentence of the final confirmation dialog body -->
<string name="RecoveryKeyWarningDialog__never_respond_to_a_chat">Never respond to a chat pretending to be Signal.</string>
<string name="RecoveryKeyWarningDialog__never_respond_to_a_chat">Ne répondez jamais à une personne se faisant passer pour Signal.</string>
<!-- Button confirming the user wants to paste the recovery key -->
<string name="RecoveryKeyWarningDialog__paste_key">Paste key</string>
<!-- Button declining to paste the recovery key -->
+8 -6
View File
@@ -3840,9 +3840,9 @@
<!-- Status update label used while the device is transmitting data over the network. Will take the form of "1.0 MB/2.0 MB" -->
<string name="TransferControlView__download_progress_s_s">%1$s / %2$s</string>
<!-- Accessibility description for the button that starts downloading an attachment -->
<string name="TransferControlView__download">Download</string>
<string name="TransferControlView__download">Íoslódáil</string>
<!-- Accessibility description for the button that starts uploading an attachment -->
<string name="TransferControlView__upload">Upload</string>
<string name="TransferControlView__upload">Uaslódáil</string>
<!-- UnauthorizedReminder -->
<!-- Message shown in a reminder banner when the user\'s device is no longer registered -->
@@ -10541,15 +10541,17 @@
<string name="SafetyTipsBottomSheet__open_account_settings">Oscail socruithe an chuntais</string>
<!-- Title of a warning sheet shown when the user copies or pastes their recovery key, urging them not to share it -->
<string name="RecoveryKeyWarningSheetContent__do_not_share_your_recovery_key">Do not share your recovery key</string>
<string name="RecoveryKeyWarningSheetContent__do_not_share_your_recovery_key">Ná Comhroinn d\'Eochair Athshlánaithe</string>
<!-- Bolded lead-in to the warning sheet body; combined with RecoveryKeyWarningSheetContent__for_your_recovery_key_never_respond to form a full sentence -->
<string name="RecoveryKeyWarningSheetContent__signal_will_never_message_you">Signal will never message you</string>
<!-- Remainder of the warning sheet body following the bolded lead-in RecoveryKeyWarningSheetContent__signal_will_never_message_you -->
<string name="RecoveryKeyWarningSheetContent__for_your_recovery_key_never_respond">for your recovery key. Never respond to a chat pretending to be Signal. Store your recovery key somewhere safe and never share it with anyone.</string>
<!-- Button dismissing the recovery key warning sheet after the user has copied their key -->
<string name="RecoveryKeyWarningSheetContent__got_it">Got it</string>
<string name="RecoveryKeyWarningSheetContent__got_it">Tuigim</string>
<!-- Button opening a help article with more information about recovery key safety -->
<string name="RecoveryKeyWarningSheetContent__learn_more">Learn more</string>
<string name="RecoveryKeyWarningSheetContent__learn_more">Tuilleadh faisnéise</string>
<!-- Inline link opening a help article with more information about recovery key safety -->
<string name="RecoveryKeyWarningSheetContent__learn_more_period">Learn more.</string>
<!-- Button declining to paste/share the recovery key, dismissing the warning sheet -->
<string name="RecoveryKeyWarningSheetContent__do_not_share_key">Do not share key</string>
<!-- Button indicating the user wants to proceed with sharing/pasting the recovery key, which shows a final confirmation -->
@@ -10562,7 +10564,7 @@
<!-- Bolded middle sentence of the final confirmation dialog body -->
<string name="RecoveryKeyWarningDialog__signal_will_never_message_you_for_your_recovery_key">Signal will never message you for your recovery key.</string>
<!-- Final sentence of the final confirmation dialog body -->
<string name="RecoveryKeyWarningDialog__never_respond_to_a_chat">Never respond to a chat pretending to be Signal.</string>
<string name="RecoveryKeyWarningDialog__never_respond_to_a_chat">Ná freagair comhrá choíche a ligeann gur Signal atá ann.</string>
<!-- Button confirming the user wants to paste the recovery key -->
<string name="RecoveryKeyWarningDialog__paste_key">Paste key</string>
<!-- Button declining to paste the recovery key -->
+8 -6
View File
@@ -3522,9 +3522,9 @@
<!-- Status update label used while the device is transmitting data over the network. Will take the form of "1.0 MB/2.0 MB" -->
<string name="TransferControlView__download_progress_s_s">%1$s/%2$s</string>
<!-- Accessibility description for the button that starts downloading an attachment -->
<string name="TransferControlView__download">Download</string>
<string name="TransferControlView__download">Descargar</string>
<!-- Accessibility description for the button that starts uploading an attachment -->
<string name="TransferControlView__upload">Upload</string>
<string name="TransferControlView__upload">Subir</string>
<!-- UnauthorizedReminder -->
<!-- Message shown in a reminder banner when the user\'s device is no longer registered -->
@@ -5711,7 +5711,7 @@
<string name="ExportAccountDataFragment__export_report_action">Exportar</string>
<!-- Shown in a dialog with a spinner while the report is downloading -->
<string name="ExportAccountDataFragment__download_progress">Xerando informe...</string>
<string name="ExportAccountDataFragment__download_progress">Xerando informe</string>
<!-- Explanation that the report is only generated on export and is not saved on the device -->
<string name="ExportAccountDataFragment__report_not_stored_disclaimer">O informe só se xera no momento da súa exportación e Signal non o almacena no teu dispositivo.</string>
@@ -9938,9 +9938,11 @@
<!-- Remainder of the warning sheet body following the bolded lead-in RecoveryKeyWarningSheetContent__signal_will_never_message_you -->
<string name="RecoveryKeyWarningSheetContent__for_your_recovery_key_never_respond">for your recovery key. Never respond to a chat pretending to be Signal. Store your recovery key somewhere safe and never share it with anyone.</string>
<!-- Button dismissing the recovery key warning sheet after the user has copied their key -->
<string name="RecoveryKeyWarningSheetContent__got_it">Got it</string>
<string name="RecoveryKeyWarningSheetContent__got_it">Entendo</string>
<!-- Button opening a help article with more information about recovery key safety -->
<string name="RecoveryKeyWarningSheetContent__learn_more">Learn more</string>
<string name="RecoveryKeyWarningSheetContent__learn_more">Máis información</string>
<!-- Inline link opening a help article with more information about recovery key safety -->
<string name="RecoveryKeyWarningSheetContent__learn_more_period">Learn more.</string>
<!-- Button declining to paste/share the recovery key, dismissing the warning sheet -->
<string name="RecoveryKeyWarningSheetContent__do_not_share_key">Do not share key</string>
<!-- Button indicating the user wants to proceed with sharing/pasting the recovery key, which shows a final confirmation -->
@@ -9953,7 +9955,7 @@
<!-- Bolded middle sentence of the final confirmation dialog body -->
<string name="RecoveryKeyWarningDialog__signal_will_never_message_you_for_your_recovery_key">Signal will never message you for your recovery key.</string>
<!-- Final sentence of the final confirmation dialog body -->
<string name="RecoveryKeyWarningDialog__never_respond_to_a_chat">Never respond to a chat pretending to be Signal.</string>
<string name="RecoveryKeyWarningDialog__never_respond_to_a_chat">Nunca respondas a unha mensaxe de alguén que di ser Signal.</string>
<!-- Button confirming the user wants to paste the recovery key -->
<string name="RecoveryKeyWarningDialog__paste_key">Paste key</string>
<!-- Button declining to paste the recovery key -->
+8 -6
View File
@@ -3522,9 +3522,9 @@
<!-- Status update label used while the device is transmitting data over the network. Will take the form of "1.0 MB/2.0 MB" -->
<string name="TransferControlView__download_progress_s_s">%1$s/%2$s</string>
<!-- Accessibility description for the button that starts downloading an attachment -->
<string name="TransferControlView__download">Download</string>
<string name="TransferControlView__download">ડાઉનલોડ કરો</string>
<!-- Accessibility description for the button that starts uploading an attachment -->
<string name="TransferControlView__upload">Upload</string>
<string name="TransferControlView__upload">અપલોડ કરો</string>
<!-- UnauthorizedReminder -->
<!-- Message shown in a reminder banner when the user\'s device is no longer registered -->
@@ -9932,15 +9932,17 @@
<string name="SafetyTipsBottomSheet__open_account_settings">એકાઉન્ટ સેટિંગ્સ ખોલો</string>
<!-- Title of a warning sheet shown when the user copies or pastes their recovery key, urging them not to share it -->
<string name="RecoveryKeyWarningSheetContent__do_not_share_your_recovery_key">Do not share your recovery key</string>
<string name="RecoveryKeyWarningSheetContent__do_not_share_your_recovery_key">તમારી રિકવરી કી શેર કરશો નહીં</string>
<!-- Bolded lead-in to the warning sheet body; combined with RecoveryKeyWarningSheetContent__for_your_recovery_key_never_respond to form a full sentence -->
<string name="RecoveryKeyWarningSheetContent__signal_will_never_message_you">Signal will never message you</string>
<!-- Remainder of the warning sheet body following the bolded lead-in RecoveryKeyWarningSheetContent__signal_will_never_message_you -->
<string name="RecoveryKeyWarningSheetContent__for_your_recovery_key_never_respond">for your recovery key. Never respond to a chat pretending to be Signal. Store your recovery key somewhere safe and never share it with anyone.</string>
<!-- Button dismissing the recovery key warning sheet after the user has copied their key -->
<string name="RecoveryKeyWarningSheetContent__got_it">Got it</string>
<string name="RecoveryKeyWarningSheetContent__got_it">સમજાઈ ગયું</string>
<!-- Button opening a help article with more information about recovery key safety -->
<string name="RecoveryKeyWarningSheetContent__learn_more">Learn more</string>
<string name="RecoveryKeyWarningSheetContent__learn_more">વધુ જાણો</string>
<!-- Inline link opening a help article with more information about recovery key safety -->
<string name="RecoveryKeyWarningSheetContent__learn_more_period">Learn more.</string>
<!-- Button declining to paste/share the recovery key, dismissing the warning sheet -->
<string name="RecoveryKeyWarningSheetContent__do_not_share_key">Do not share key</string>
<!-- Button indicating the user wants to proceed with sharing/pasting the recovery key, which shows a final confirmation -->
@@ -9953,7 +9955,7 @@
<!-- Bolded middle sentence of the final confirmation dialog body -->
<string name="RecoveryKeyWarningDialog__signal_will_never_message_you_for_your_recovery_key">Signal will never message you for your recovery key.</string>
<!-- Final sentence of the final confirmation dialog body -->
<string name="RecoveryKeyWarningDialog__never_respond_to_a_chat">Never respond to a chat pretending to be Signal.</string>
<string name="RecoveryKeyWarningDialog__never_respond_to_a_chat">Signal હોવાનો દાવો કરતી કોઈ ચેટનો ક્યારેય જવાબ આપશો નહીં</string>
<!-- Button confirming the user wants to paste the recovery key -->
<string name="RecoveryKeyWarningDialog__paste_key">Paste key</string>
<!-- Button declining to paste the recovery key -->
+8 -6
View File
@@ -3522,9 +3522,9 @@
<!-- Status update label used while the device is transmitting data over the network. Will take the form of "1.0 MB/2.0 MB" -->
<string name="TransferControlView__download_progress_s_s">%1$s/%2$s</string>
<!-- Accessibility description for the button that starts downloading an attachment -->
<string name="TransferControlView__download">Download</string>
<string name="TransferControlView__download">डाउनलोड करें</string>
<!-- Accessibility description for the button that starts uploading an attachment -->
<string name="TransferControlView__upload">Upload</string>
<string name="TransferControlView__upload">अपलोड करें</string>
<!-- UnauthorizedReminder -->
<!-- Message shown in a reminder banner when the user\'s device is no longer registered -->
@@ -9932,15 +9932,17 @@
<string name="SafetyTipsBottomSheet__open_account_settings">अकाउंट सेटिंग खोलें</string>
<!-- Title of a warning sheet shown when the user copies or pastes their recovery key, urging them not to share it -->
<string name="RecoveryKeyWarningSheetContent__do_not_share_your_recovery_key">Do not share your recovery key</string>
<string name="RecoveryKeyWarningSheetContent__do_not_share_your_recovery_key">अपनी \'रिकवरी की\' किसी को न बताएं</string>
<!-- Bolded lead-in to the warning sheet body; combined with RecoveryKeyWarningSheetContent__for_your_recovery_key_never_respond to form a full sentence -->
<string name="RecoveryKeyWarningSheetContent__signal_will_never_message_you">Signal will never message you</string>
<!-- Remainder of the warning sheet body following the bolded lead-in RecoveryKeyWarningSheetContent__signal_will_never_message_you -->
<string name="RecoveryKeyWarningSheetContent__for_your_recovery_key_never_respond">for your recovery key. Never respond to a chat pretending to be Signal. Store your recovery key somewhere safe and never share it with anyone.</string>
<!-- Button dismissing the recovery key warning sheet after the user has copied their key -->
<string name="RecoveryKeyWarningSheetContent__got_it">Got it</string>
<string name="RecoveryKeyWarningSheetContent__got_it">ठीक है</string>
<!-- Button opening a help article with more information about recovery key safety -->
<string name="RecoveryKeyWarningSheetContent__learn_more">Learn more</string>
<string name="RecoveryKeyWarningSheetContent__learn_more">और जानें</string>
<!-- Inline link opening a help article with more information about recovery key safety -->
<string name="RecoveryKeyWarningSheetContent__learn_more_period">Learn more.</string>
<!-- Button declining to paste/share the recovery key, dismissing the warning sheet -->
<string name="RecoveryKeyWarningSheetContent__do_not_share_key">Do not share key</string>
<!-- Button indicating the user wants to proceed with sharing/pasting the recovery key, which shows a final confirmation -->
@@ -9953,7 +9955,7 @@
<!-- Bolded middle sentence of the final confirmation dialog body -->
<string name="RecoveryKeyWarningDialog__signal_will_never_message_you_for_your_recovery_key">Signal will never message you for your recovery key.</string>
<!-- Final sentence of the final confirmation dialog body -->
<string name="RecoveryKeyWarningDialog__never_respond_to_a_chat">Never respond to a chat pretending to be Signal.</string>
<string name="RecoveryKeyWarningDialog__never_respond_to_a_chat">Signal के नाम पर भेजी गई ऐसी किसी चैट का जवाब न दें।</string>
<!-- Button confirming the user wants to paste the recovery key -->
<string name="RecoveryKeyWarningDialog__paste_key">Paste key</string>
<!-- Button declining to paste the recovery key -->
+8 -6
View File
@@ -3734,9 +3734,9 @@
<!-- Status update label used while the device is transmitting data over the network. Will take the form of "1.0 MB/2.0 MB" -->
<string name="TransferControlView__download_progress_s_s">%1$s/%2$s</string>
<!-- Accessibility description for the button that starts downloading an attachment -->
<string name="TransferControlView__download">Download</string>
<string name="TransferControlView__download">Preuzmi</string>
<!-- Accessibility description for the button that starts uploading an attachment -->
<string name="TransferControlView__upload">Upload</string>
<string name="TransferControlView__upload">Učitaj</string>
<!-- UnauthorizedReminder -->
<!-- Message shown in a reminder banner when the user\'s device is no longer registered -->
@@ -10338,15 +10338,17 @@
<string name="SafetyTipsBottomSheet__open_account_settings">Otvori postavke računa</string>
<!-- Title of a warning sheet shown when the user copies or pastes their recovery key, urging them not to share it -->
<string name="RecoveryKeyWarningSheetContent__do_not_share_your_recovery_key">Do not share your recovery key</string>
<string name="RecoveryKeyWarningSheetContent__do_not_share_your_recovery_key">Nemojte dijeliti svoj ključ za oporavak</string>
<!-- Bolded lead-in to the warning sheet body; combined with RecoveryKeyWarningSheetContent__for_your_recovery_key_never_respond to form a full sentence -->
<string name="RecoveryKeyWarningSheetContent__signal_will_never_message_you">Signal will never message you</string>
<!-- Remainder of the warning sheet body following the bolded lead-in RecoveryKeyWarningSheetContent__signal_will_never_message_you -->
<string name="RecoveryKeyWarningSheetContent__for_your_recovery_key_never_respond">for your recovery key. Never respond to a chat pretending to be Signal. Store your recovery key somewhere safe and never share it with anyone.</string>
<!-- Button dismissing the recovery key warning sheet after the user has copied their key -->
<string name="RecoveryKeyWarningSheetContent__got_it">Got it</string>
<string name="RecoveryKeyWarningSheetContent__got_it">Shvaćam</string>
<!-- Button opening a help article with more information about recovery key safety -->
<string name="RecoveryKeyWarningSheetContent__learn_more">Learn more</string>
<string name="RecoveryKeyWarningSheetContent__learn_more">Saznajte više</string>
<!-- Inline link opening a help article with more information about recovery key safety -->
<string name="RecoveryKeyWarningSheetContent__learn_more_period">Learn more.</string>
<!-- Button declining to paste/share the recovery key, dismissing the warning sheet -->
<string name="RecoveryKeyWarningSheetContent__do_not_share_key">Do not share key</string>
<!-- Button indicating the user wants to proceed with sharing/pasting the recovery key, which shows a final confirmation -->
@@ -10359,7 +10361,7 @@
<!-- Bolded middle sentence of the final confirmation dialog body -->
<string name="RecoveryKeyWarningDialog__signal_will_never_message_you_for_your_recovery_key">Signal will never message you for your recovery key.</string>
<!-- Final sentence of the final confirmation dialog body -->
<string name="RecoveryKeyWarningDialog__never_respond_to_a_chat">Never respond to a chat pretending to be Signal.</string>
<string name="RecoveryKeyWarningDialog__never_respond_to_a_chat">Nikada ne odgovarajte na poruke koje se predstavljaju kao da su od Signala.</string>
<!-- Button confirming the user wants to paste the recovery key -->
<string name="RecoveryKeyWarningDialog__paste_key">Paste key</string>
<!-- Button declining to paste the recovery key -->
+8 -6
View File
@@ -3522,9 +3522,9 @@
<!-- Status update label used while the device is transmitting data over the network. Will take the form of "1.0 MB/2.0 MB" -->
<string name="TransferControlView__download_progress_s_s">%1$s/%2$s</string>
<!-- Accessibility description for the button that starts downloading an attachment -->
<string name="TransferControlView__download">Download</string>
<string name="TransferControlView__download">Letöltés</string>
<!-- Accessibility description for the button that starts uploading an attachment -->
<string name="TransferControlView__upload">Upload</string>
<string name="TransferControlView__upload">Feltöltés</string>
<!-- UnauthorizedReminder -->
<!-- Message shown in a reminder banner when the user\'s device is no longer registered -->
@@ -9932,15 +9932,17 @@
<string name="SafetyTipsBottomSheet__open_account_settings">Fiókbeállítok megnyitása</string>
<!-- Title of a warning sheet shown when the user copies or pastes their recovery key, urging them not to share it -->
<string name="RecoveryKeyWarningSheetContent__do_not_share_your_recovery_key">Do not share your recovery key</string>
<string name="RecoveryKeyWarningSheetContent__do_not_share_your_recovery_key">Ne oszd meg a helyreállítási kulcsodat</string>
<!-- Bolded lead-in to the warning sheet body; combined with RecoveryKeyWarningSheetContent__for_your_recovery_key_never_respond to form a full sentence -->
<string name="RecoveryKeyWarningSheetContent__signal_will_never_message_you">Signal will never message you</string>
<!-- Remainder of the warning sheet body following the bolded lead-in RecoveryKeyWarningSheetContent__signal_will_never_message_you -->
<string name="RecoveryKeyWarningSheetContent__for_your_recovery_key_never_respond">for your recovery key. Never respond to a chat pretending to be Signal. Store your recovery key somewhere safe and never share it with anyone.</string>
<!-- Button dismissing the recovery key warning sheet after the user has copied their key -->
<string name="RecoveryKeyWarningSheetContent__got_it">Got it</string>
<string name="RecoveryKeyWarningSheetContent__got_it">Rendben</string>
<!-- Button opening a help article with more information about recovery key safety -->
<string name="RecoveryKeyWarningSheetContent__learn_more">Learn more</string>
<string name="RecoveryKeyWarningSheetContent__learn_more">Tudj meg többet</string>
<!-- Inline link opening a help article with more information about recovery key safety -->
<string name="RecoveryKeyWarningSheetContent__learn_more_period">Learn more.</string>
<!-- Button declining to paste/share the recovery key, dismissing the warning sheet -->
<string name="RecoveryKeyWarningSheetContent__do_not_share_key">Do not share key</string>
<!-- Button indicating the user wants to proceed with sharing/pasting the recovery key, which shows a final confirmation -->
@@ -9953,7 +9955,7 @@
<!-- Bolded middle sentence of the final confirmation dialog body -->
<string name="RecoveryKeyWarningDialog__signal_will_never_message_you_for_your_recovery_key">Signal will never message you for your recovery key.</string>
<!-- Final sentence of the final confirmation dialog body -->
<string name="RecoveryKeyWarningDialog__never_respond_to_a_chat">Never respond to a chat pretending to be Signal.</string>
<string name="RecoveryKeyWarningDialog__never_respond_to_a_chat">Soha ne válaszolj olyan csevegésre, amelyben úgy tesznek, mintha a Signal nevében írnának.</string>
<!-- Button confirming the user wants to paste the recovery key -->
<string name="RecoveryKeyWarningDialog__paste_key">Paste key</string>
<!-- Button declining to paste the recovery key -->
+8 -6
View File
@@ -3416,9 +3416,9 @@
<!-- Status update label used while the device is transmitting data over the network. Will take the form of "1.0 MB/2.0 MB" -->
<string name="TransferControlView__download_progress_s_s">%1$s/%2$s</string>
<!-- Accessibility description for the button that starts downloading an attachment -->
<string name="TransferControlView__download">Download</string>
<string name="TransferControlView__download">Unduh</string>
<!-- Accessibility description for the button that starts uploading an attachment -->
<string name="TransferControlView__upload">Upload</string>
<string name="TransferControlView__upload">Unggah</string>
<!-- UnauthorizedReminder -->
<!-- Message shown in a reminder banner when the user\'s device is no longer registered -->
@@ -9729,15 +9729,17 @@
<string name="SafetyTipsBottomSheet__open_account_settings">Buka pengaturan akun</string>
<!-- Title of a warning sheet shown when the user copies or pastes their recovery key, urging them not to share it -->
<string name="RecoveryKeyWarningSheetContent__do_not_share_your_recovery_key">Do not share your recovery key</string>
<string name="RecoveryKeyWarningSheetContent__do_not_share_your_recovery_key">Jangan Bagikan Kunci Pemulihan Anda</string>
<!-- Bolded lead-in to the warning sheet body; combined with RecoveryKeyWarningSheetContent__for_your_recovery_key_never_respond to form a full sentence -->
<string name="RecoveryKeyWarningSheetContent__signal_will_never_message_you">Signal will never message you</string>
<!-- Remainder of the warning sheet body following the bolded lead-in RecoveryKeyWarningSheetContent__signal_will_never_message_you -->
<string name="RecoveryKeyWarningSheetContent__for_your_recovery_key_never_respond">for your recovery key. Never respond to a chat pretending to be Signal. Store your recovery key somewhere safe and never share it with anyone.</string>
<!-- Button dismissing the recovery key warning sheet after the user has copied their key -->
<string name="RecoveryKeyWarningSheetContent__got_it">Got it</string>
<string name="RecoveryKeyWarningSheetContent__got_it">Mengerti</string>
<!-- Button opening a help article with more information about recovery key safety -->
<string name="RecoveryKeyWarningSheetContent__learn_more">Learn more</string>
<string name="RecoveryKeyWarningSheetContent__learn_more">Pelajari selengkapnya</string>
<!-- Inline link opening a help article with more information about recovery key safety -->
<string name="RecoveryKeyWarningSheetContent__learn_more_period">Learn more.</string>
<!-- Button declining to paste/share the recovery key, dismissing the warning sheet -->
<string name="RecoveryKeyWarningSheetContent__do_not_share_key">Do not share key</string>
<!-- Button indicating the user wants to proceed with sharing/pasting the recovery key, which shows a final confirmation -->
@@ -9750,7 +9752,7 @@
<!-- Bolded middle sentence of the final confirmation dialog body -->
<string name="RecoveryKeyWarningDialog__signal_will_never_message_you_for_your_recovery_key">Signal will never message you for your recovery key.</string>
<!-- Final sentence of the final confirmation dialog body -->
<string name="RecoveryKeyWarningDialog__never_respond_to_a_chat">Never respond to a chat pretending to be Signal.</string>
<string name="RecoveryKeyWarningDialog__never_respond_to_a_chat">Jangan pernah membalas chat yang mengatasnamakan Signal.</string>
<!-- Button confirming the user wants to paste the recovery key -->
<string name="RecoveryKeyWarningDialog__paste_key">Paste key</string>
<!-- Button declining to paste the recovery key -->
+11 -9
View File
@@ -1850,7 +1850,7 @@
<!-- Megaphones -->
<string name="Megaphones_remind_me_later">Ricordamelo più tardi</string>
<string name="Megaphones_verify_your_signal_pin">Verifica il tuo PIN di Signal</string>
<string name="Megaphones_well_occasionally_ask_you_to_verify_your_pin">Occasionalmente ti chiederemo di verificare il tuo PIN in modo che te lo ricordi.</string>
<string name="Megaphones_well_occasionally_ask_you_to_verify_your_pin">Ti chiederemo periodicamente di verificare il tuo PIN per aiutarti a ricordarlo.</string>
<string name="Megaphones_verify_pin">Verifica PIN</string>
<string name="Megaphones_get_started">Iniziamo</string>
<string name="Megaphones_new_group">Nuovo gruppo</string>
@@ -1882,8 +1882,8 @@
<!-- NotificationBarManager -->
<string name="NotificationBarManager__establishing_signal_call">Preparazione chiamata Signal</string>
<!-- Temporary notification shown when starting the calling service -->
<string name="NotificationBarManager__starting_signal_call_service">Inizio chiamata su Signal in corso</string>
<string name="NotificationBarManager__stopping_signal_call_service">Interruzione del servizio di chiamata di Signal</string>
<string name="NotificationBarManager__starting_signal_call_service">Avvio chiamata su Signal</string>
<string name="NotificationBarManager__stopping_signal_call_service">La chiamata su Signal si è interrotta</string>
<string name="NotificationBarManager__cancel_call">Annulla chiamata</string>
<!-- NotificationsMegaphone -->
@@ -1910,7 +1910,7 @@
<!-- MessageRecord -->
<string name="MessageRecord_unknown">Sconosciuto</string>
<string name="MessageRecord_message_encrypted_with_a_legacy_protocol_version_that_is_no_longer_supported">Hai ricevuto un messaggio criptato usando una vecchia versione di Signal che non è più supportata. Per favore chiedi al mittente di aggiornare alla versione più recente e di inviare nuovamente il messaggio.</string>
<string name="MessageRecord_left_group">Hai lasciato il gruppo.</string>
<string name="MessageRecord_left_group">Hai abbandonato il gruppo.</string>
<string name="MessageRecord_you_updated_group">Hai aggiornato il gruppo.</string>
<string name="MessageRecord_the_group_was_updated">Il gruppo è stato aggiornato.</string>
<!-- Update message shown a group is terminated, but the person that terminated it is unknown. -->
@@ -3524,7 +3524,7 @@
<!-- Accessibility description for the button that starts downloading an attachment -->
<string name="TransferControlView__download">Download</string>
<!-- Accessibility description for the button that starts uploading an attachment -->
<string name="TransferControlView__upload">Upload</string>
<string name="TransferControlView__upload">Carica</string>
<!-- UnauthorizedReminder -->
<!-- Message shown in a reminder banner when the user\'s device is no longer registered -->
@@ -9932,15 +9932,17 @@
<string name="SafetyTipsBottomSheet__open_account_settings">Apri le Impostazioni dell\'account</string>
<!-- Title of a warning sheet shown when the user copies or pastes their recovery key, urging them not to share it -->
<string name="RecoveryKeyWarningSheetContent__do_not_share_your_recovery_key">Do not share your recovery key</string>
<string name="RecoveryKeyWarningSheetContent__do_not_share_your_recovery_key">Non condividere la tua chiave di ripristino</string>
<!-- Bolded lead-in to the warning sheet body; combined with RecoveryKeyWarningSheetContent__for_your_recovery_key_never_respond to form a full sentence -->
<string name="RecoveryKeyWarningSheetContent__signal_will_never_message_you">Signal will never message you</string>
<!-- Remainder of the warning sheet body following the bolded lead-in RecoveryKeyWarningSheetContent__signal_will_never_message_you -->
<string name="RecoveryKeyWarningSheetContent__for_your_recovery_key_never_respond">for your recovery key. Never respond to a chat pretending to be Signal. Store your recovery key somewhere safe and never share it with anyone.</string>
<!-- Button dismissing the recovery key warning sheet after the user has copied their key -->
<string name="RecoveryKeyWarningSheetContent__got_it">Got it</string>
<string name="RecoveryKeyWarningSheetContent__got_it">Capito</string>
<!-- Button opening a help article with more information about recovery key safety -->
<string name="RecoveryKeyWarningSheetContent__learn_more">Learn more</string>
<string name="RecoveryKeyWarningSheetContent__learn_more">Scopri di più</string>
<!-- Inline link opening a help article with more information about recovery key safety -->
<string name="RecoveryKeyWarningSheetContent__learn_more_period">Learn more.</string>
<!-- Button declining to paste/share the recovery key, dismissing the warning sheet -->
<string name="RecoveryKeyWarningSheetContent__do_not_share_key">Do not share key</string>
<!-- Button indicating the user wants to proceed with sharing/pasting the recovery key, which shows a final confirmation -->
@@ -9953,7 +9955,7 @@
<!-- Bolded middle sentence of the final confirmation dialog body -->
<string name="RecoveryKeyWarningDialog__signal_will_never_message_you_for_your_recovery_key">Signal will never message you for your recovery key.</string>
<!-- Final sentence of the final confirmation dialog body -->
<string name="RecoveryKeyWarningDialog__never_respond_to_a_chat">Never respond to a chat pretending to be Signal.</string>
<string name="RecoveryKeyWarningDialog__never_respond_to_a_chat">Non rispondere mai a una chat che cerca di impersonare il team di Signal.</string>
<!-- Button confirming the user wants to paste the recovery key -->
<string name="RecoveryKeyWarningDialog__paste_key">Paste key</string>
<!-- Button declining to paste the recovery key -->
+8 -6
View File
@@ -3734,9 +3734,9 @@
<!-- Status update label used while the device is transmitting data over the network. Will take the form of "1.0 MB/2.0 MB" -->
<string name="TransferControlView__download_progress_s_s">%1$s/%2$s</string>
<!-- Accessibility description for the button that starts downloading an attachment -->
<string name="TransferControlView__download">Download</string>
<string name="TransferControlView__download">הורד</string>
<!-- Accessibility description for the button that starts uploading an attachment -->
<string name="TransferControlView__upload">Upload</string>
<string name="TransferControlView__upload">העלאה</string>
<!-- UnauthorizedReminder -->
<!-- Message shown in a reminder banner when the user\'s device is no longer registered -->
@@ -10338,15 +10338,17 @@
<string name="SafetyTipsBottomSheet__open_account_settings">פתיחת הגדרות החשבון</string>
<!-- Title of a warning sheet shown when the user copies or pastes their recovery key, urging them not to share it -->
<string name="RecoveryKeyWarningSheetContent__do_not_share_your_recovery_key">Do not share your recovery key</string>
<string name="RecoveryKeyWarningSheetContent__do_not_share_your_recovery_key">אין לשתף את מפתח השחזור שלך</string>
<!-- Bolded lead-in to the warning sheet body; combined with RecoveryKeyWarningSheetContent__for_your_recovery_key_never_respond to form a full sentence -->
<string name="RecoveryKeyWarningSheetContent__signal_will_never_message_you">Signal will never message you</string>
<!-- Remainder of the warning sheet body following the bolded lead-in RecoveryKeyWarningSheetContent__signal_will_never_message_you -->
<string name="RecoveryKeyWarningSheetContent__for_your_recovery_key_never_respond">for your recovery key. Never respond to a chat pretending to be Signal. Store your recovery key somewhere safe and never share it with anyone.</string>
<!-- Button dismissing the recovery key warning sheet after the user has copied their key -->
<string name="RecoveryKeyWarningSheetContent__got_it">Got it</string>
<string name="RecoveryKeyWarningSheetContent__got_it">הבנתי</string>
<!-- Button opening a help article with more information about recovery key safety -->
<string name="RecoveryKeyWarningSheetContent__learn_more">Learn more</string>
<string name="RecoveryKeyWarningSheetContent__learn_more">למידע נוסף</string>
<!-- Inline link opening a help article with more information about recovery key safety -->
<string name="RecoveryKeyWarningSheetContent__learn_more_period">Learn more.</string>
<!-- Button declining to paste/share the recovery key, dismissing the warning sheet -->
<string name="RecoveryKeyWarningSheetContent__do_not_share_key">Do not share key</string>
<!-- Button indicating the user wants to proceed with sharing/pasting the recovery key, which shows a final confirmation -->
@@ -10359,7 +10361,7 @@
<!-- Bolded middle sentence of the final confirmation dialog body -->
<string name="RecoveryKeyWarningDialog__signal_will_never_message_you_for_your_recovery_key">Signal will never message you for your recovery key.</string>
<!-- Final sentence of the final confirmation dialog body -->
<string name="RecoveryKeyWarningDialog__never_respond_to_a_chat">Never respond to a chat pretending to be Signal.</string>
<string name="RecoveryKeyWarningDialog__never_respond_to_a_chat">אף פעם אין להשיב לצ׳אט ממישהו שמתחזה ל–Signal.</string>
<!-- Button confirming the user wants to paste the recovery key -->
<string name="RecoveryKeyWarningDialog__paste_key">Paste key</string>
<!-- Button declining to paste the recovery key -->
+8 -6
View File
@@ -3416,9 +3416,9 @@
<!-- Status update label used while the device is transmitting data over the network. Will take the form of "1.0 MB/2.0 MB" -->
<string name="TransferControlView__download_progress_s_s">%1$s/%2$s</string>
<!-- Accessibility description for the button that starts downloading an attachment -->
<string name="TransferControlView__download">Download</string>
<string name="TransferControlView__download">ダウンロード</string>
<!-- Accessibility description for the button that starts uploading an attachment -->
<string name="TransferControlView__upload">Upload</string>
<string name="TransferControlView__upload">アップロード</string>
<!-- UnauthorizedReminder -->
<!-- Message shown in a reminder banner when the user\'s device is no longer registered -->
@@ -9729,15 +9729,17 @@
<string name="SafetyTipsBottomSheet__open_account_settings">アカウントの設定を開く</string>
<!-- Title of a warning sheet shown when the user copies or pastes their recovery key, urging them not to share it -->
<string name="RecoveryKeyWarningSheetContent__do_not_share_your_recovery_key">Do not share your recovery key</string>
<string name="RecoveryKeyWarningSheetContent__do_not_share_your_recovery_key">回復キーは共有しないでください</string>
<!-- Bolded lead-in to the warning sheet body; combined with RecoveryKeyWarningSheetContent__for_your_recovery_key_never_respond to form a full sentence -->
<string name="RecoveryKeyWarningSheetContent__signal_will_never_message_you">Signal will never message you</string>
<!-- Remainder of the warning sheet body following the bolded lead-in RecoveryKeyWarningSheetContent__signal_will_never_message_you -->
<string name="RecoveryKeyWarningSheetContent__for_your_recovery_key_never_respond">for your recovery key. Never respond to a chat pretending to be Signal. Store your recovery key somewhere safe and never share it with anyone.</string>
<!-- Button dismissing the recovery key warning sheet after the user has copied their key -->
<string name="RecoveryKeyWarningSheetContent__got_it">Got it</string>
<string name="RecoveryKeyWarningSheetContent__got_it">わかりました</string>
<!-- Button opening a help article with more information about recovery key safety -->
<string name="RecoveryKeyWarningSheetContent__learn_more">Learn more</string>
<string name="RecoveryKeyWarningSheetContent__learn_more">詳しく見る</string>
<!-- Inline link opening a help article with more information about recovery key safety -->
<string name="RecoveryKeyWarningSheetContent__learn_more_period">Learn more.</string>
<!-- Button declining to paste/share the recovery key, dismissing the warning sheet -->
<string name="RecoveryKeyWarningSheetContent__do_not_share_key">Do not share key</string>
<!-- Button indicating the user wants to proceed with sharing/pasting the recovery key, which shows a final confirmation -->
@@ -9750,7 +9752,7 @@
<!-- Bolded middle sentence of the final confirmation dialog body -->
<string name="RecoveryKeyWarningDialog__signal_will_never_message_you_for_your_recovery_key">Signal will never message you for your recovery key.</string>
<!-- Final sentence of the final confirmation dialog body -->
<string name="RecoveryKeyWarningDialog__never_respond_to_a_chat">Never respond to a chat pretending to be Signal.</string>
<string name="RecoveryKeyWarningDialog__never_respond_to_a_chat">Signalを装ったチャットには返信しないでください。</string>
<!-- Button confirming the user wants to paste the recovery key -->
<string name="RecoveryKeyWarningDialog__paste_key">Paste key</string>
<!-- Button declining to paste the recovery key -->
+7 -5
View File
@@ -3522,9 +3522,9 @@
<!-- Status update label used while the device is transmitting data over the network. Will take the form of "1.0 MB/2.0 MB" -->
<string name="TransferControlView__download_progress_s_s">%1$s/%2$s</string>
<!-- Accessibility description for the button that starts downloading an attachment -->
<string name="TransferControlView__download">Download</string>
<string name="TransferControlView__download">ჩამოტვირთვა</string>
<!-- Accessibility description for the button that starts uploading an attachment -->
<string name="TransferControlView__upload">Upload</string>
<string name="TransferControlView__upload">ატვირთვა</string>
<!-- UnauthorizedReminder -->
<!-- Message shown in a reminder banner when the user\'s device is no longer registered -->
@@ -9938,9 +9938,11 @@
<!-- Remainder of the warning sheet body following the bolded lead-in RecoveryKeyWarningSheetContent__signal_will_never_message_you -->
<string name="RecoveryKeyWarningSheetContent__for_your_recovery_key_never_respond">for your recovery key. Never respond to a chat pretending to be Signal. Store your recovery key somewhere safe and never share it with anyone.</string>
<!-- Button dismissing the recovery key warning sheet after the user has copied their key -->
<string name="RecoveryKeyWarningSheetContent__got_it">Got it</string>
<string name="RecoveryKeyWarningSheetContent__got_it">გასაგებია</string>
<!-- Button opening a help article with more information about recovery key safety -->
<string name="RecoveryKeyWarningSheetContent__learn_more">Learn more</string>
<string name="RecoveryKeyWarningSheetContent__learn_more">გაიგე მეტი</string>
<!-- Inline link opening a help article with more information about recovery key safety -->
<string name="RecoveryKeyWarningSheetContent__learn_more_period">Learn more.</string>
<!-- Button declining to paste/share the recovery key, dismissing the warning sheet -->
<string name="RecoveryKeyWarningSheetContent__do_not_share_key">Do not share key</string>
<!-- Button indicating the user wants to proceed with sharing/pasting the recovery key, which shows a final confirmation -->
@@ -9953,7 +9955,7 @@
<!-- Bolded middle sentence of the final confirmation dialog body -->
<string name="RecoveryKeyWarningDialog__signal_will_never_message_you_for_your_recovery_key">Signal will never message you for your recovery key.</string>
<!-- Final sentence of the final confirmation dialog body -->
<string name="RecoveryKeyWarningDialog__never_respond_to_a_chat">Never respond to a chat pretending to be Signal.</string>
<string name="RecoveryKeyWarningDialog__never_respond_to_a_chat">არასდროს უპასუხო ჩატს, რომელიც თავს Signal-ად ასაღებს.</string>
<!-- Button confirming the user wants to paste the recovery key -->
<string name="RecoveryKeyWarningDialog__paste_key">Paste key</string>
<!-- Button declining to paste the recovery key -->
+7 -5
View File
@@ -3522,9 +3522,9 @@
<!-- Status update label used while the device is transmitting data over the network. Will take the form of "1.0 MB/2.0 MB" -->
<string name="TransferControlView__download_progress_s_s">%1$s/%2$s</string>
<!-- Accessibility description for the button that starts downloading an attachment -->
<string name="TransferControlView__download">Download</string>
<string name="TransferControlView__download">Жүктеп алу</string>
<!-- Accessibility description for the button that starts uploading an attachment -->
<string name="TransferControlView__upload">Upload</string>
<string name="TransferControlView__upload">Жүктеп салу</string>
<!-- UnauthorizedReminder -->
<!-- Message shown in a reminder banner when the user\'s device is no longer registered -->
@@ -9938,9 +9938,11 @@
<!-- Remainder of the warning sheet body following the bolded lead-in RecoveryKeyWarningSheetContent__signal_will_never_message_you -->
<string name="RecoveryKeyWarningSheetContent__for_your_recovery_key_never_respond">for your recovery key. Never respond to a chat pretending to be Signal. Store your recovery key somewhere safe and never share it with anyone.</string>
<!-- Button dismissing the recovery key warning sheet after the user has copied their key -->
<string name="RecoveryKeyWarningSheetContent__got_it">Got it</string>
<string name="RecoveryKeyWarningSheetContent__got_it">Түсінікті</string>
<!-- Button opening a help article with more information about recovery key safety -->
<string name="RecoveryKeyWarningSheetContent__learn_more">Learn more</string>
<string name="RecoveryKeyWarningSheetContent__learn_more">Толық ақпарат</string>
<!-- Inline link opening a help article with more information about recovery key safety -->
<string name="RecoveryKeyWarningSheetContent__learn_more_period">Learn more.</string>
<!-- Button declining to paste/share the recovery key, dismissing the warning sheet -->
<string name="RecoveryKeyWarningSheetContent__do_not_share_key">Do not share key</string>
<!-- Button indicating the user wants to proceed with sharing/pasting the recovery key, which shows a final confirmation -->
@@ -9953,7 +9955,7 @@
<!-- Bolded middle sentence of the final confirmation dialog body -->
<string name="RecoveryKeyWarningDialog__signal_will_never_message_you_for_your_recovery_key">Signal will never message you for your recovery key.</string>
<!-- Final sentence of the final confirmation dialog body -->
<string name="RecoveryKeyWarningDialog__never_respond_to_a_chat">Never respond to a chat pretending to be Signal.</string>
<string name="RecoveryKeyWarningDialog__never_respond_to_a_chat">Signal-дың атын жамылған чаттарға ешқашан жауап бермеңіз.</string>
<!-- Button confirming the user wants to paste the recovery key -->
<string name="RecoveryKeyWarningDialog__paste_key">Paste key</string>
<!-- Button declining to paste the recovery key -->
+7 -5
View File
@@ -3416,9 +3416,9 @@
<!-- Status update label used while the device is transmitting data over the network. Will take the form of "1.0 MB/2.0 MB" -->
<string name="TransferControlView__download_progress_s_s">%1$s/%2$s</string>
<!-- Accessibility description for the button that starts downloading an attachment -->
<string name="TransferControlView__download">Download</string>
<string name="TransferControlView__download">ទាញយក</string>
<!-- Accessibility description for the button that starts uploading an attachment -->
<string name="TransferControlView__upload">Upload</string>
<string name="TransferControlView__upload">បង្ហោះ</string>
<!-- UnauthorizedReminder -->
<!-- Message shown in a reminder banner when the user\'s device is no longer registered -->
@@ -9735,9 +9735,11 @@
<!-- Remainder of the warning sheet body following the bolded lead-in RecoveryKeyWarningSheetContent__signal_will_never_message_you -->
<string name="RecoveryKeyWarningSheetContent__for_your_recovery_key_never_respond">for your recovery key. Never respond to a chat pretending to be Signal. Store your recovery key somewhere safe and never share it with anyone.</string>
<!-- Button dismissing the recovery key warning sheet after the user has copied their key -->
<string name="RecoveryKeyWarningSheetContent__got_it">Got it</string>
<string name="RecoveryKeyWarningSheetContent__got_it">យល់ហើយ</string>
<!-- Button opening a help article with more information about recovery key safety -->
<string name="RecoveryKeyWarningSheetContent__learn_more">Learn more</string>
<string name="RecoveryKeyWarningSheetContent__learn_more">ស្វែងយល់បន្ថែម</string>
<!-- Inline link opening a help article with more information about recovery key safety -->
<string name="RecoveryKeyWarningSheetContent__learn_more_period">Learn more.</string>
<!-- Button declining to paste/share the recovery key, dismissing the warning sheet -->
<string name="RecoveryKeyWarningSheetContent__do_not_share_key">Do not share key</string>
<!-- Button indicating the user wants to proceed with sharing/pasting the recovery key, which shows a final confirmation -->
@@ -9750,7 +9752,7 @@
<!-- Bolded middle sentence of the final confirmation dialog body -->
<string name="RecoveryKeyWarningDialog__signal_will_never_message_you_for_your_recovery_key">Signal will never message you for your recovery key.</string>
<!-- Final sentence of the final confirmation dialog body -->
<string name="RecoveryKeyWarningDialog__never_respond_to_a_chat">Never respond to a chat pretending to be Signal.</string>
<string name="RecoveryKeyWarningDialog__never_respond_to_a_chat">កុំឆ្លើយតបទៅនឹងការជជែកដែលតាំងខ្លួនជា Signal</string>
<!-- Button confirming the user wants to paste the recovery key -->
<string name="RecoveryKeyWarningDialog__paste_key">Paste key</string>
<!-- Button declining to paste the recovery key -->
+7 -5
View File
@@ -3522,9 +3522,9 @@
<!-- Status update label used while the device is transmitting data over the network. Will take the form of "1.0 MB/2.0 MB" -->
<string name="TransferControlView__download_progress_s_s">%1$s/%2$s/</string>
<!-- Accessibility description for the button that starts downloading an attachment -->
<string name="TransferControlView__download">Download</string>
<string name="TransferControlView__download">ಡೌನ್‌ಲೋಡ್ ಮಾಡಿ</string>
<!-- Accessibility description for the button that starts uploading an attachment -->
<string name="TransferControlView__upload">Upload</string>
<string name="TransferControlView__upload">ಅಪ್‌ಲೋಡ್</string>
<!-- UnauthorizedReminder -->
<!-- Message shown in a reminder banner when the user\'s device is no longer registered -->
@@ -9938,9 +9938,11 @@
<!-- Remainder of the warning sheet body following the bolded lead-in RecoveryKeyWarningSheetContent__signal_will_never_message_you -->
<string name="RecoveryKeyWarningSheetContent__for_your_recovery_key_never_respond">for your recovery key. Never respond to a chat pretending to be Signal. Store your recovery key somewhere safe and never share it with anyone.</string>
<!-- Button dismissing the recovery key warning sheet after the user has copied their key -->
<string name="RecoveryKeyWarningSheetContent__got_it">Got it</string>
<string name="RecoveryKeyWarningSheetContent__got_it">ಅರ್ಥವಾಯಿತು</string>
<!-- Button opening a help article with more information about recovery key safety -->
<string name="RecoveryKeyWarningSheetContent__learn_more">Learn more</string>
<string name="RecoveryKeyWarningSheetContent__learn_more">ಇನ್ನಷ್ಟು ತಿಳಿಯಿರಿ</string>
<!-- Inline link opening a help article with more information about recovery key safety -->
<string name="RecoveryKeyWarningSheetContent__learn_more_period">Learn more.</string>
<!-- Button declining to paste/share the recovery key, dismissing the warning sheet -->
<string name="RecoveryKeyWarningSheetContent__do_not_share_key">Do not share key</string>
<!-- Button indicating the user wants to proceed with sharing/pasting the recovery key, which shows a final confirmation -->
@@ -9953,7 +9955,7 @@
<!-- Bolded middle sentence of the final confirmation dialog body -->
<string name="RecoveryKeyWarningDialog__signal_will_never_message_you_for_your_recovery_key">Signal will never message you for your recovery key.</string>
<!-- Final sentence of the final confirmation dialog body -->
<string name="RecoveryKeyWarningDialog__never_respond_to_a_chat">Never respond to a chat pretending to be Signal.</string>
<string name="RecoveryKeyWarningDialog__never_respond_to_a_chat">Signal ಎಂದು ಸೋಗುಹಾಕುವ ಚಾಟ್‌ಗೆ ಎಂದಿಗೂ ಪ್ರತಿಕ್ರಿಯಿಸಬೇಡಿ.</string>
<!-- Button confirming the user wants to paste the recovery key -->
<string name="RecoveryKeyWarningDialog__paste_key">Paste key</string>
<!-- Button declining to paste the recovery key -->
+13 -11
View File
@@ -3416,9 +3416,9 @@
<!-- Status update label used while the device is transmitting data over the network. Will take the form of "1.0 MB/2.0 MB" -->
<string name="TransferControlView__download_progress_s_s">%1$s/%2$s</string>
<!-- Accessibility description for the button that starts downloading an attachment -->
<string name="TransferControlView__download">Download</string>
<string name="TransferControlView__download">다운로드</string>
<!-- Accessibility description for the button that starts uploading an attachment -->
<string name="TransferControlView__upload">Upload</string>
<string name="TransferControlView__upload">업로드</string>
<!-- UnauthorizedReminder -->
<!-- Message shown in a reminder banner when the user\'s device is no longer registered -->
@@ -3561,20 +3561,20 @@
<string name="conversation_activity__send">보내기</string>
<string name="conversation_activity__compose_description">메시지 작성</string>
<string name="conversation_activity__emoji_toggle_description">이모지 키보드 전환</string>
<string name="conversation_activity__attachment_thumbnail">첨부 파일 네일</string>
<string name="conversation_activity__quick_attachment_drawer_toggle_camera_description">빠른 카메라 첨부 파일 창 전환</string>
<string name="conversation_activity__attachment_thumbnail">첨부 파일 네일</string>
<string name="conversation_activity__quick_attachment_drawer_toggle_camera_description">사진 및 동영상 첨부를 위해 카메라 또는 갤러리 열기</string>
<string name="conversation_activity__quick_attachment_drawer_record_and_send_audio_description">오디오 첨부 파일 녹음 후 보내기</string>
<!-- Accessibility content description describing how a user can lock voice note recording. -->
<string name="conversation_activity__quick_attachment_drawer_lock_record_description">오디오 첨부 파일 녹음 잠금</string>
<string name="conversation_activity__message_could_not_be_sent">메시지를 보낼 수 없습니다. 연결을 확인하고 다시 시도하세요.</string>
<string name="conversation_activity__message_could_not_be_sent">메시지를 보내지 못했습니다. 연결을 확인하고 다시 시도하세요.</string>
<!-- Dialog body shown when tapping a failed message in a terminated group -->
<string name="conversation_activity__send_failed_group_ended">그룹이 종료되어 더 이상 이 그룹에서 메시지를 주고받을 수 없습니다.</string>
<!-- Dialog body shown when tapping a group action button (e.g. invite friends) in a terminated group -->
<string name="conversation_activity__group_action_not_allowed_group_ended">그룹이 종료되어 해당 작업을 수행할 수 없습니다.</string>
<!-- Dialog body when a message failed to delete and retry is possible. -->
<string name="conversation_activity__message_failed_to_delete_retry">메시지를 삭제할 수 없습니다. 연결을 확인하고 다시 시도하세요.</string>
<string name="conversation_activity__message_failed_to_delete_retry">메시지를 삭제하지 못했습니다. 연결을 확인하고 다시 시도하세요.</string>
<!-- Dialog body when a message failed to delete. -->
<string name="conversation_activity__message_failed_to_delete">메시지를 삭제할 수 없습니다.</string>
<string name="conversation_activity__message_failed_to_delete">메시지를 삭제하지 못했습니다.</string>
<!-- conversation_input_panel -->
<string name="conversation_input_panel__slide_to_cancel">밀어서 취소</string>
@@ -9729,15 +9729,17 @@
<string name="SafetyTipsBottomSheet__open_account_settings">계정 설정 열기</string>
<!-- Title of a warning sheet shown when the user copies or pastes their recovery key, urging them not to share it -->
<string name="RecoveryKeyWarningSheetContent__do_not_share_your_recovery_key">Do not share your recovery key</string>
<string name="RecoveryKeyWarningSheetContent__do_not_share_your_recovery_key">복구 키를 공유하지 마세요</string>
<!-- Bolded lead-in to the warning sheet body; combined with RecoveryKeyWarningSheetContent__for_your_recovery_key_never_respond to form a full sentence -->
<string name="RecoveryKeyWarningSheetContent__signal_will_never_message_you">Signal will never message you</string>
<!-- Remainder of the warning sheet body following the bolded lead-in RecoveryKeyWarningSheetContent__signal_will_never_message_you -->
<string name="RecoveryKeyWarningSheetContent__for_your_recovery_key_never_respond">for your recovery key. Never respond to a chat pretending to be Signal. Store your recovery key somewhere safe and never share it with anyone.</string>
<!-- Button dismissing the recovery key warning sheet after the user has copied their key -->
<string name="RecoveryKeyWarningSheetContent__got_it">Got it</string>
<string name="RecoveryKeyWarningSheetContent__got_it">확인</string>
<!-- Button opening a help article with more information about recovery key safety -->
<string name="RecoveryKeyWarningSheetContent__learn_more">Learn more</string>
<string name="RecoveryKeyWarningSheetContent__learn_more">자세히 알아보기</string>
<!-- Inline link opening a help article with more information about recovery key safety -->
<string name="RecoveryKeyWarningSheetContent__learn_more_period">Learn more.</string>
<!-- Button declining to paste/share the recovery key, dismissing the warning sheet -->
<string name="RecoveryKeyWarningSheetContent__do_not_share_key">Do not share key</string>
<!-- Button indicating the user wants to proceed with sharing/pasting the recovery key, which shows a final confirmation -->
@@ -9750,7 +9752,7 @@
<!-- Bolded middle sentence of the final confirmation dialog body -->
<string name="RecoveryKeyWarningDialog__signal_will_never_message_you_for_your_recovery_key">Signal will never message you for your recovery key.</string>
<!-- Final sentence of the final confirmation dialog body -->
<string name="RecoveryKeyWarningDialog__never_respond_to_a_chat">Never respond to a chat pretending to be Signal.</string>
<string name="RecoveryKeyWarningDialog__never_respond_to_a_chat">Signal을 사칭하는 채팅에 절대 답장하지 마세요.</string>
<!-- Button confirming the user wants to paste the recovery key -->
<string name="RecoveryKeyWarningDialog__paste_key">Paste key</string>
<!-- Button declining to paste the recovery key -->
+9 -7
View File
@@ -1001,7 +1001,7 @@
<string name="BackupsPreferenceFragment__test_your_backup_passphrase">Камдык көчүрмөңүздүн сыр сөз айкашын сынап көрүп, анын иштеп жатканын текшериңиз</string>
<string name="BackupsPreferenceFragment__turn_on">Камдык көчүрмөлөрдү күйгүзүү</string>
<string name="BackupsPreferenceFragment__turn_off">Өчүрүү</string>
<string name="BackupsPreferenceFragment__to_restore_a_backup">"Камдык көчүрмөдөн калыбына келтирүү үчүн Signal\'дын жаңы көчүрмөсүн орнотуңуз. Колдонмону ачып, \"Камдык көчүрмөнү калыбына келтирүү\" дегенди басып, камдык көчүрмөнүн файлын тандаңыз. %1$s"</string>
<string name="BackupsPreferenceFragment__to_restore_a_backup">"Камдык көчүрмөдөн калыбына келтирүү үчүн Signal'дын жаңы көчүрмөсүн орнотуңуз. Колдонмону ачып, \"Камдык көчүрмөнү калыбына келтирүү\" дегенди басып, камдык көчүрмөнүн файлын тандаңыз. %1$s"</string>
<string name="BackupsPreferenceFragment__learn_more">Кененирээк маалымат</string>
<string name="BackupsPreferenceFragment__in_progress">Иштелип жатат…</string>
<!-- Status text shown in backup preferences when verifying a backup -->
@@ -3522,9 +3522,9 @@
<!-- Status update label used while the device is transmitting data over the network. Will take the form of "1.0 MB/2.0 MB" -->
<string name="TransferControlView__download_progress_s_s">%1$s/%2$s</string>
<!-- Accessibility description for the button that starts downloading an attachment -->
<string name="TransferControlView__download">Download</string>
<string name="TransferControlView__download">Жүктөп алуу</string>
<!-- Accessibility description for the button that starts uploading an attachment -->
<string name="TransferControlView__upload">Upload</string>
<string name="TransferControlView__upload">Жүктөп берүү</string>
<!-- UnauthorizedReminder -->
<!-- Message shown in a reminder banner when the user\'s device is no longer registered -->
@@ -8284,7 +8284,7 @@
<string name="InactivePrimary__got_it">Түшүндүм</string>
<!-- Text describing how to restore a backup displayed on the on-device backups screen -->
<string name="OnDeviceBackupsScreen__to_restore_a_backup">"Камдык көчүрмөнү калыбына келтирүү үчүн Signal\'дын жаңы көчүрмөсүн орнотуңуз. Колдонмону ачып, \"Камдык көчүрмөнү калыбына келтирүү\" дегенди басып, камдык көчүрмөлөр сакталган папканы табыңыз."</string>
<string name="OnDeviceBackupsScreen__to_restore_a_backup">"Камдык көчүрмөнү калыбына келтирүү үчүн Signal'дын жаңы көчүрмөсүн орнотуңуз. Колдонмону ачып, \"Камдык көчүрмөнү калыбына келтирүү\" дегенди басып, камдык көчүрмөлөр сакталган папканы табыңыз."</string>
<!-- Title of a megaphone shown to prompt the user to verify their recovery key -->
<string name="VerifyBackupKey__title">Калыбына келтирүү ачкычыңызды ырастаңыз</string>
@@ -9938,9 +9938,11 @@
<!-- Remainder of the warning sheet body following the bolded lead-in RecoveryKeyWarningSheetContent__signal_will_never_message_you -->
<string name="RecoveryKeyWarningSheetContent__for_your_recovery_key_never_respond">for your recovery key. Never respond to a chat pretending to be Signal. Store your recovery key somewhere safe and never share it with anyone.</string>
<!-- Button dismissing the recovery key warning sheet after the user has copied their key -->
<string name="RecoveryKeyWarningSheetContent__got_it">Got it</string>
<string name="RecoveryKeyWarningSheetContent__got_it">Түшүндүм</string>
<!-- Button opening a help article with more information about recovery key safety -->
<string name="RecoveryKeyWarningSheetContent__learn_more">Learn more</string>
<string name="RecoveryKeyWarningSheetContent__learn_more">Кененирээк маалымат</string>
<!-- Inline link opening a help article with more information about recovery key safety -->
<string name="RecoveryKeyWarningSheetContent__learn_more_period">Learn more.</string>
<!-- Button declining to paste/share the recovery key, dismissing the warning sheet -->
<string name="RecoveryKeyWarningSheetContent__do_not_share_key">Do not share key</string>
<!-- Button indicating the user wants to proceed with sharing/pasting the recovery key, which shows a final confirmation -->
@@ -9953,7 +9955,7 @@
<!-- Bolded middle sentence of the final confirmation dialog body -->
<string name="RecoveryKeyWarningDialog__signal_will_never_message_you_for_your_recovery_key">Signal will never message you for your recovery key.</string>
<!-- Final sentence of the final confirmation dialog body -->
<string name="RecoveryKeyWarningDialog__never_respond_to_a_chat">Never respond to a chat pretending to be Signal.</string>
<string name="RecoveryKeyWarningDialog__never_respond_to_a_chat">Өзүн Signal катары көрсөткөн маекке эч качан жооп бербеңиз.</string>
<!-- Button confirming the user wants to paste the recovery key -->
<string name="RecoveryKeyWarningDialog__paste_key">Paste key</string>
<!-- Button declining to paste the recovery key -->
+8 -6
View File
@@ -3734,9 +3734,9 @@
<!-- Status update label used while the device is transmitting data over the network. Will take the form of "1.0 MB/2.0 MB" -->
<string name="TransferControlView__download_progress_s_s">%1$s/%2$s</string>
<!-- Accessibility description for the button that starts downloading an attachment -->
<string name="TransferControlView__download">Download</string>
<string name="TransferControlView__download">Atsisiųsti</string>
<!-- Accessibility description for the button that starts uploading an attachment -->
<string name="TransferControlView__upload">Upload</string>
<string name="TransferControlView__upload">Įkelti</string>
<!-- UnauthorizedReminder -->
<!-- Message shown in a reminder banner when the user\'s device is no longer registered -->
@@ -10338,15 +10338,17 @@
<string name="SafetyTipsBottomSheet__open_account_settings">Atverti paskyros nustatymus</string>
<!-- Title of a warning sheet shown when the user copies or pastes their recovery key, urging them not to share it -->
<string name="RecoveryKeyWarningSheetContent__do_not_share_your_recovery_key">Do not share your recovery key</string>
<string name="RecoveryKeyWarningSheetContent__do_not_share_your_recovery_key">Nesidalinkite savo atkūrimo raktu</string>
<!-- Bolded lead-in to the warning sheet body; combined with RecoveryKeyWarningSheetContent__for_your_recovery_key_never_respond to form a full sentence -->
<string name="RecoveryKeyWarningSheetContent__signal_will_never_message_you">Signal will never message you</string>
<!-- Remainder of the warning sheet body following the bolded lead-in RecoveryKeyWarningSheetContent__signal_will_never_message_you -->
<string name="RecoveryKeyWarningSheetContent__for_your_recovery_key_never_respond">for your recovery key. Never respond to a chat pretending to be Signal. Store your recovery key somewhere safe and never share it with anyone.</string>
<!-- Button dismissing the recovery key warning sheet after the user has copied their key -->
<string name="RecoveryKeyWarningSheetContent__got_it">Got it</string>
<string name="RecoveryKeyWarningSheetContent__got_it">Supratau</string>
<!-- Button opening a help article with more information about recovery key safety -->
<string name="RecoveryKeyWarningSheetContent__learn_more">Learn more</string>
<string name="RecoveryKeyWarningSheetContent__learn_more">Sužinoti daugiau</string>
<!-- Inline link opening a help article with more information about recovery key safety -->
<string name="RecoveryKeyWarningSheetContent__learn_more_period">Learn more.</string>
<!-- Button declining to paste/share the recovery key, dismissing the warning sheet -->
<string name="RecoveryKeyWarningSheetContent__do_not_share_key">Do not share key</string>
<!-- Button indicating the user wants to proceed with sharing/pasting the recovery key, which shows a final confirmation -->
@@ -10359,7 +10361,7 @@
<!-- Bolded middle sentence of the final confirmation dialog body -->
<string name="RecoveryKeyWarningDialog__signal_will_never_message_you_for_your_recovery_key">Signal will never message you for your recovery key.</string>
<!-- Final sentence of the final confirmation dialog body -->
<string name="RecoveryKeyWarningDialog__never_respond_to_a_chat">Never respond to a chat pretending to be Signal.</string>
<string name="RecoveryKeyWarningDialog__never_respond_to_a_chat">Niekada neatsakykite į pokalbius, kuriuose apsimetama „Signal.</string>
<!-- Button confirming the user wants to paste the recovery key -->
<string name="RecoveryKeyWarningDialog__paste_key">Paste key</string>
<!-- Button declining to paste the recovery key -->
+7 -5
View File
@@ -3628,9 +3628,9 @@
<!-- Status update label used while the device is transmitting data over the network. Will take the form of "1.0 MB/2.0 MB" -->
<string name="TransferControlView__download_progress_s_s">%1$s/%2$s</string>
<!-- Accessibility description for the button that starts downloading an attachment -->
<string name="TransferControlView__download">Download</string>
<string name="TransferControlView__download">Lejupielādēt</string>
<!-- Accessibility description for the button that starts uploading an attachment -->
<string name="TransferControlView__upload">Upload</string>
<string name="TransferControlView__upload">Augšupielādēt</string>
<!-- UnauthorizedReminder -->
<!-- Message shown in a reminder banner when the user\'s device is no longer registered -->
@@ -10141,9 +10141,11 @@
<!-- Remainder of the warning sheet body following the bolded lead-in RecoveryKeyWarningSheetContent__signal_will_never_message_you -->
<string name="RecoveryKeyWarningSheetContent__for_your_recovery_key_never_respond">for your recovery key. Never respond to a chat pretending to be Signal. Store your recovery key somewhere safe and never share it with anyone.</string>
<!-- Button dismissing the recovery key warning sheet after the user has copied their key -->
<string name="RecoveryKeyWarningSheetContent__got_it">Got it</string>
<string name="RecoveryKeyWarningSheetContent__got_it">Skaidrs</string>
<!-- Button opening a help article with more information about recovery key safety -->
<string name="RecoveryKeyWarningSheetContent__learn_more">Learn more</string>
<string name="RecoveryKeyWarningSheetContent__learn_more">Uzzināt vairāk</string>
<!-- Inline link opening a help article with more information about recovery key safety -->
<string name="RecoveryKeyWarningSheetContent__learn_more_period">Learn more.</string>
<!-- Button declining to paste/share the recovery key, dismissing the warning sheet -->
<string name="RecoveryKeyWarningSheetContent__do_not_share_key">Do not share key</string>
<!-- Button indicating the user wants to proceed with sharing/pasting the recovery key, which shows a final confirmation -->
@@ -10156,7 +10158,7 @@
<!-- Bolded middle sentence of the final confirmation dialog body -->
<string name="RecoveryKeyWarningDialog__signal_will_never_message_you_for_your_recovery_key">Signal will never message you for your recovery key.</string>
<!-- Final sentence of the final confirmation dialog body -->
<string name="RecoveryKeyWarningDialog__never_respond_to_a_chat">Never respond to a chat pretending to be Signal.</string>
<string name="RecoveryKeyWarningDialog__never_respond_to_a_chat">Nekad neatbildiet uz sarunu, kurā lietotājs uzdodas par Signal darbinieku.</string>
<!-- Button confirming the user wants to paste the recovery key -->
<string name="RecoveryKeyWarningDialog__paste_key">Paste key</string>
<!-- Button declining to paste the recovery key -->
+7 -5
View File
@@ -3522,9 +3522,9 @@
<!-- Status update label used while the device is transmitting data over the network. Will take the form of "1.0 MB/2.0 MB" -->
<string name="TransferControlView__download_progress_s_s">%1$s/%2$s</string>
<!-- Accessibility description for the button that starts downloading an attachment -->
<string name="TransferControlView__download">Download</string>
<string name="TransferControlView__download">Преземи</string>
<!-- Accessibility description for the button that starts uploading an attachment -->
<string name="TransferControlView__upload">Upload</string>
<string name="TransferControlView__upload">Внеси</string>
<!-- UnauthorizedReminder -->
<!-- Message shown in a reminder banner when the user\'s device is no longer registered -->
@@ -9938,9 +9938,11 @@
<!-- Remainder of the warning sheet body following the bolded lead-in RecoveryKeyWarningSheetContent__signal_will_never_message_you -->
<string name="RecoveryKeyWarningSheetContent__for_your_recovery_key_never_respond">for your recovery key. Never respond to a chat pretending to be Signal. Store your recovery key somewhere safe and never share it with anyone.</string>
<!-- Button dismissing the recovery key warning sheet after the user has copied their key -->
<string name="RecoveryKeyWarningSheetContent__got_it">Got it</string>
<string name="RecoveryKeyWarningSheetContent__got_it">Во ред</string>
<!-- Button opening a help article with more information about recovery key safety -->
<string name="RecoveryKeyWarningSheetContent__learn_more">Learn more</string>
<string name="RecoveryKeyWarningSheetContent__learn_more">Дознајте повеќе</string>
<!-- Inline link opening a help article with more information about recovery key safety -->
<string name="RecoveryKeyWarningSheetContent__learn_more_period">Learn more.</string>
<!-- Button declining to paste/share the recovery key, dismissing the warning sheet -->
<string name="RecoveryKeyWarningSheetContent__do_not_share_key">Do not share key</string>
<!-- Button indicating the user wants to proceed with sharing/pasting the recovery key, which shows a final confirmation -->
@@ -9953,7 +9955,7 @@
<!-- Bolded middle sentence of the final confirmation dialog body -->
<string name="RecoveryKeyWarningDialog__signal_will_never_message_you_for_your_recovery_key">Signal will never message you for your recovery key.</string>
<!-- Final sentence of the final confirmation dialog body -->
<string name="RecoveryKeyWarningDialog__never_respond_to_a_chat">Never respond to a chat pretending to be Signal.</string>
<string name="RecoveryKeyWarningDialog__never_respond_to_a_chat">Не одговарајте на пораки од некој кој се преправа дека е од Signal.</string>
<!-- Button confirming the user wants to paste the recovery key -->
<string name="RecoveryKeyWarningDialog__paste_key">Paste key</string>
<!-- Button declining to paste the recovery key -->
+7 -5
View File
@@ -3522,9 +3522,9 @@
<!-- Status update label used while the device is transmitting data over the network. Will take the form of "1.0 MB/2.0 MB" -->
<string name="TransferControlView__download_progress_s_s">%1$s/%2$s</string>
<!-- Accessibility description for the button that starts downloading an attachment -->
<string name="TransferControlView__download">Download</string>
<string name="TransferControlView__download">ഡൌൺലോഡ് ചെയ്യുക</string>
<!-- Accessibility description for the button that starts uploading an attachment -->
<string name="TransferControlView__upload">Upload</string>
<string name="TransferControlView__upload">അപ്‌ലോഡ് ചെയ്യുക</string>
<!-- UnauthorizedReminder -->
<!-- Message shown in a reminder banner when the user\'s device is no longer registered -->
@@ -9938,9 +9938,11 @@
<!-- Remainder of the warning sheet body following the bolded lead-in RecoveryKeyWarningSheetContent__signal_will_never_message_you -->
<string name="RecoveryKeyWarningSheetContent__for_your_recovery_key_never_respond">for your recovery key. Never respond to a chat pretending to be Signal. Store your recovery key somewhere safe and never share it with anyone.</string>
<!-- Button dismissing the recovery key warning sheet after the user has copied their key -->
<string name="RecoveryKeyWarningSheetContent__got_it">Got it</string>
<string name="RecoveryKeyWarningSheetContent__got_it">മനസ്സിലായി</string>
<!-- Button opening a help article with more information about recovery key safety -->
<string name="RecoveryKeyWarningSheetContent__learn_more">Learn more</string>
<string name="RecoveryKeyWarningSheetContent__learn_more">കൂടുതലറിയുക</string>
<!-- Inline link opening a help article with more information about recovery key safety -->
<string name="RecoveryKeyWarningSheetContent__learn_more_period">Learn more.</string>
<!-- Button declining to paste/share the recovery key, dismissing the warning sheet -->
<string name="RecoveryKeyWarningSheetContent__do_not_share_key">Do not share key</string>
<!-- Button indicating the user wants to proceed with sharing/pasting the recovery key, which shows a final confirmation -->
@@ -9953,7 +9955,7 @@
<!-- Bolded middle sentence of the final confirmation dialog body -->
<string name="RecoveryKeyWarningDialog__signal_will_never_message_you_for_your_recovery_key">Signal will never message you for your recovery key.</string>
<!-- Final sentence of the final confirmation dialog body -->
<string name="RecoveryKeyWarningDialog__never_respond_to_a_chat">Never respond to a chat pretending to be Signal.</string>
<string name="RecoveryKeyWarningDialog__never_respond_to_a_chat">Signal ആണെന്ന് നടിച്ച് വരുന്ന ചാറ്റുകളോട് ഒരിക്കലും പ്രതികരിക്കരുത്.</string>
<!-- Button confirming the user wants to paste the recovery key -->
<string name="RecoveryKeyWarningDialog__paste_key">Paste key</string>
<!-- Button declining to paste the recovery key -->
+8 -6
View File
@@ -3522,9 +3522,9 @@
<!-- Status update label used while the device is transmitting data over the network. Will take the form of "1.0 MB/2.0 MB" -->
<string name="TransferControlView__download_progress_s_s">%1$s/%2$s</string>
<!-- Accessibility description for the button that starts downloading an attachment -->
<string name="TransferControlView__download">Download</string>
<string name="TransferControlView__download">डाऊनलोड करा</string>
<!-- Accessibility description for the button that starts uploading an attachment -->
<string name="TransferControlView__upload">Upload</string>
<string name="TransferControlView__upload">अपलोड करा</string>
<!-- UnauthorizedReminder -->
<!-- Message shown in a reminder banner when the user\'s device is no longer registered -->
@@ -9932,15 +9932,17 @@
<string name="SafetyTipsBottomSheet__open_account_settings">खाते सेटिंग्ज उघडा</string>
<!-- Title of a warning sheet shown when the user copies or pastes their recovery key, urging them not to share it -->
<string name="RecoveryKeyWarningSheetContent__do_not_share_your_recovery_key">Do not share your recovery key</string>
<string name="RecoveryKeyWarningSheetContent__do_not_share_your_recovery_key">तुमची रीकव्हरी की कोणालाही देऊ नका</string>
<!-- Bolded lead-in to the warning sheet body; combined with RecoveryKeyWarningSheetContent__for_your_recovery_key_never_respond to form a full sentence -->
<string name="RecoveryKeyWarningSheetContent__signal_will_never_message_you">Signal will never message you</string>
<!-- Remainder of the warning sheet body following the bolded lead-in RecoveryKeyWarningSheetContent__signal_will_never_message_you -->
<string name="RecoveryKeyWarningSheetContent__for_your_recovery_key_never_respond">for your recovery key. Never respond to a chat pretending to be Signal. Store your recovery key somewhere safe and never share it with anyone.</string>
<!-- Button dismissing the recovery key warning sheet after the user has copied their key -->
<string name="RecoveryKeyWarningSheetContent__got_it">Got it</string>
<string name="RecoveryKeyWarningSheetContent__got_it">कळले</string>
<!-- Button opening a help article with more information about recovery key safety -->
<string name="RecoveryKeyWarningSheetContent__learn_more">Learn more</string>
<string name="RecoveryKeyWarningSheetContent__learn_more">अधिक जाणून घ्या</string>
<!-- Inline link opening a help article with more information about recovery key safety -->
<string name="RecoveryKeyWarningSheetContent__learn_more_period">Learn more.</string>
<!-- Button declining to paste/share the recovery key, dismissing the warning sheet -->
<string name="RecoveryKeyWarningSheetContent__do_not_share_key">Do not share key</string>
<!-- Button indicating the user wants to proceed with sharing/pasting the recovery key, which shows a final confirmation -->
@@ -9953,7 +9955,7 @@
<!-- Bolded middle sentence of the final confirmation dialog body -->
<string name="RecoveryKeyWarningDialog__signal_will_never_message_you_for_your_recovery_key">Signal will never message you for your recovery key.</string>
<!-- Final sentence of the final confirmation dialog body -->
<string name="RecoveryKeyWarningDialog__never_respond_to_a_chat">Never respond to a chat pretending to be Signal.</string>
<string name="RecoveryKeyWarningDialog__never_respond_to_a_chat">Signal असल्याची बतावणी करणाऱ्या कोणत्याही चॅटला उत्तर देऊ नका.</string>
<!-- Button confirming the user wants to paste the recovery key -->
<string name="RecoveryKeyWarningDialog__paste_key">Paste key</string>
<!-- Button declining to paste the recovery key -->
+8 -6
View File
@@ -3416,9 +3416,9 @@
<!-- Status update label used while the device is transmitting data over the network. Will take the form of "1.0 MB/2.0 MB" -->
<string name="TransferControlView__download_progress_s_s">%1$s/%2$s</string>
<!-- Accessibility description for the button that starts downloading an attachment -->
<string name="TransferControlView__download">Download</string>
<string name="TransferControlView__download">Muat turun</string>
<!-- Accessibility description for the button that starts uploading an attachment -->
<string name="TransferControlView__upload">Upload</string>
<string name="TransferControlView__upload">Muat naik</string>
<!-- UnauthorizedReminder -->
<!-- Message shown in a reminder banner when the user\'s device is no longer registered -->
@@ -9729,15 +9729,17 @@
<string name="SafetyTipsBottomSheet__open_account_settings">Buka tetapan akaun</string>
<!-- Title of a warning sheet shown when the user copies or pastes their recovery key, urging them not to share it -->
<string name="RecoveryKeyWarningSheetContent__do_not_share_your_recovery_key">Do not share your recovery key</string>
<string name="RecoveryKeyWarningSheetContent__do_not_share_your_recovery_key">Jangan Kongsikan Kunci Pemulihan Anda</string>
<!-- Bolded lead-in to the warning sheet body; combined with RecoveryKeyWarningSheetContent__for_your_recovery_key_never_respond to form a full sentence -->
<string name="RecoveryKeyWarningSheetContent__signal_will_never_message_you">Signal will never message you</string>
<!-- Remainder of the warning sheet body following the bolded lead-in RecoveryKeyWarningSheetContent__signal_will_never_message_you -->
<string name="RecoveryKeyWarningSheetContent__for_your_recovery_key_never_respond">for your recovery key. Never respond to a chat pretending to be Signal. Store your recovery key somewhere safe and never share it with anyone.</string>
<!-- Button dismissing the recovery key warning sheet after the user has copied their key -->
<string name="RecoveryKeyWarningSheetContent__got_it">Got it</string>
<string name="RecoveryKeyWarningSheetContent__got_it">Faham</string>
<!-- Button opening a help article with more information about recovery key safety -->
<string name="RecoveryKeyWarningSheetContent__learn_more">Learn more</string>
<string name="RecoveryKeyWarningSheetContent__learn_more">Ketahui lebih lanjut</string>
<!-- Inline link opening a help article with more information about recovery key safety -->
<string name="RecoveryKeyWarningSheetContent__learn_more_period">Learn more.</string>
<!-- Button declining to paste/share the recovery key, dismissing the warning sheet -->
<string name="RecoveryKeyWarningSheetContent__do_not_share_key">Do not share key</string>
<!-- Button indicating the user wants to proceed with sharing/pasting the recovery key, which shows a final confirmation -->
@@ -9750,7 +9752,7 @@
<!-- Bolded middle sentence of the final confirmation dialog body -->
<string name="RecoveryKeyWarningDialog__signal_will_never_message_you_for_your_recovery_key">Signal will never message you for your recovery key.</string>
<!-- Final sentence of the final confirmation dialog body -->
<string name="RecoveryKeyWarningDialog__never_respond_to_a_chat">Never respond to a chat pretending to be Signal.</string>
<string name="RecoveryKeyWarningDialog__never_respond_to_a_chat">Jangan pernah membalas sembang yang menyamar sebagai Signal.</string>
<!-- Button confirming the user wants to paste the recovery key -->
<string name="RecoveryKeyWarningDialog__paste_key">Paste key</string>
<!-- Button declining to paste the recovery key -->
+7 -5
View File
@@ -3416,9 +3416,9 @@
<!-- Status update label used while the device is transmitting data over the network. Will take the form of "1.0 MB/2.0 MB" -->
<string name="TransferControlView__download_progress_s_s">%1$s/%2$s</string>
<!-- Accessibility description for the button that starts downloading an attachment -->
<string name="TransferControlView__download">Download</string>
<string name="TransferControlView__download">ဒေါင်းလုဒ်လုပ်မည်</string>
<!-- Accessibility description for the button that starts uploading an attachment -->
<string name="TransferControlView__upload">Upload</string>
<string name="TransferControlView__upload">အပ်လုဒ်လုပ်ရန်</string>
<!-- UnauthorizedReminder -->
<!-- Message shown in a reminder banner when the user\'s device is no longer registered -->
@@ -9735,9 +9735,11 @@
<!-- Remainder of the warning sheet body following the bolded lead-in RecoveryKeyWarningSheetContent__signal_will_never_message_you -->
<string name="RecoveryKeyWarningSheetContent__for_your_recovery_key_never_respond">for your recovery key. Never respond to a chat pretending to be Signal. Store your recovery key somewhere safe and never share it with anyone.</string>
<!-- Button dismissing the recovery key warning sheet after the user has copied their key -->
<string name="RecoveryKeyWarningSheetContent__got_it">Got it</string>
<string name="RecoveryKeyWarningSheetContent__got_it">ရပြီ</string>
<!-- Button opening a help article with more information about recovery key safety -->
<string name="RecoveryKeyWarningSheetContent__learn_more">Learn more</string>
<string name="RecoveryKeyWarningSheetContent__learn_more">ပိုမိုလေ့လာရန်</string>
<!-- Inline link opening a help article with more information about recovery key safety -->
<string name="RecoveryKeyWarningSheetContent__learn_more_period">Learn more.</string>
<!-- Button declining to paste/share the recovery key, dismissing the warning sheet -->
<string name="RecoveryKeyWarningSheetContent__do_not_share_key">Do not share key</string>
<!-- Button indicating the user wants to proceed with sharing/pasting the recovery key, which shows a final confirmation -->
@@ -9750,7 +9752,7 @@
<!-- Bolded middle sentence of the final confirmation dialog body -->
<string name="RecoveryKeyWarningDialog__signal_will_never_message_you_for_your_recovery_key">Signal will never message you for your recovery key.</string>
<!-- Final sentence of the final confirmation dialog body -->
<string name="RecoveryKeyWarningDialog__never_respond_to_a_chat">Never respond to a chat pretending to be Signal.</string>
<string name="RecoveryKeyWarningDialog__never_respond_to_a_chat">Signal ဟန်ဆောင်ထားသည့် ချက်(တ်)ကို စာမပြန်ပါနှင့်။</string>
<!-- Button confirming the user wants to paste the recovery key -->
<string name="RecoveryKeyWarningDialog__paste_key">Paste key</string>
<!-- Button declining to paste the recovery key -->
+8 -6
View File
@@ -3522,9 +3522,9 @@
<!-- Status update label used while the device is transmitting data over the network. Will take the form of "1.0 MB/2.0 MB" -->
<string name="TransferControlView__download_progress_s_s">%1$s/%2$s</string>
<!-- Accessibility description for the button that starts downloading an attachment -->
<string name="TransferControlView__download">Download</string>
<string name="TransferControlView__download">Last ned</string>
<!-- Accessibility description for the button that starts uploading an attachment -->
<string name="TransferControlView__upload">Upload</string>
<string name="TransferControlView__upload">Last opp</string>
<!-- UnauthorizedReminder -->
<!-- Message shown in a reminder banner when the user\'s device is no longer registered -->
@@ -9932,15 +9932,17 @@
<string name="SafetyTipsBottomSheet__open_account_settings">Åpne kontoinnstillingene</string>
<!-- Title of a warning sheet shown when the user copies or pastes their recovery key, urging them not to share it -->
<string name="RecoveryKeyWarningSheetContent__do_not_share_your_recovery_key">Do not share your recovery key</string>
<string name="RecoveryKeyWarningSheetContent__do_not_share_your_recovery_key">Ikke del sikkerhetskoden din</string>
<!-- Bolded lead-in to the warning sheet body; combined with RecoveryKeyWarningSheetContent__for_your_recovery_key_never_respond to form a full sentence -->
<string name="RecoveryKeyWarningSheetContent__signal_will_never_message_you">Signal will never message you</string>
<!-- Remainder of the warning sheet body following the bolded lead-in RecoveryKeyWarningSheetContent__signal_will_never_message_you -->
<string name="RecoveryKeyWarningSheetContent__for_your_recovery_key_never_respond">for your recovery key. Never respond to a chat pretending to be Signal. Store your recovery key somewhere safe and never share it with anyone.</string>
<!-- Button dismissing the recovery key warning sheet after the user has copied their key -->
<string name="RecoveryKeyWarningSheetContent__got_it">Got it</string>
<string name="RecoveryKeyWarningSheetContent__got_it">Skjønner</string>
<!-- Button opening a help article with more information about recovery key safety -->
<string name="RecoveryKeyWarningSheetContent__learn_more">Learn more</string>
<string name="RecoveryKeyWarningSheetContent__learn_more">Les mer</string>
<!-- Inline link opening a help article with more information about recovery key safety -->
<string name="RecoveryKeyWarningSheetContent__learn_more_period">Learn more.</string>
<!-- Button declining to paste/share the recovery key, dismissing the warning sheet -->
<string name="RecoveryKeyWarningSheetContent__do_not_share_key">Do not share key</string>
<!-- Button indicating the user wants to proceed with sharing/pasting the recovery key, which shows a final confirmation -->
@@ -9953,7 +9955,7 @@
<!-- Bolded middle sentence of the final confirmation dialog body -->
<string name="RecoveryKeyWarningDialog__signal_will_never_message_you_for_your_recovery_key">Signal will never message you for your recovery key.</string>
<!-- Final sentence of the final confirmation dialog body -->
<string name="RecoveryKeyWarningDialog__never_respond_to_a_chat">Never respond to a chat pretending to be Signal.</string>
<string name="RecoveryKeyWarningDialog__never_respond_to_a_chat">Ikke svar på meldinger fra kontoer som utgir seg for å være Signal.</string>
<!-- Button confirming the user wants to paste the recovery key -->
<string name="RecoveryKeyWarningDialog__paste_key">Paste key</string>
<!-- Button declining to paste the recovery key -->
+8 -6
View File
@@ -3522,9 +3522,9 @@
<!-- Status update label used while the device is transmitting data over the network. Will take the form of "1.0 MB/2.0 MB" -->
<string name="TransferControlView__download_progress_s_s">%1$s/%2$s</string>
<!-- Accessibility description for the button that starts downloading an attachment -->
<string name="TransferControlView__download">Download</string>
<string name="TransferControlView__download">Downloaden</string>
<!-- Accessibility description for the button that starts uploading an attachment -->
<string name="TransferControlView__upload">Upload</string>
<string name="TransferControlView__upload">Uploaden</string>
<!-- UnauthorizedReminder -->
<!-- Message shown in a reminder banner when the user\'s device is no longer registered -->
@@ -9932,15 +9932,17 @@
<string name="SafetyTipsBottomSheet__open_account_settings">Accountinstellingen openen</string>
<!-- Title of a warning sheet shown when the user copies or pastes their recovery key, urging them not to share it -->
<string name="RecoveryKeyWarningSheetContent__do_not_share_your_recovery_key">Do not share your recovery key</string>
<string name="RecoveryKeyWarningSheetContent__do_not_share_your_recovery_key">Deel je herstelsleutel met niemand</string>
<!-- Bolded lead-in to the warning sheet body; combined with RecoveryKeyWarningSheetContent__for_your_recovery_key_never_respond to form a full sentence -->
<string name="RecoveryKeyWarningSheetContent__signal_will_never_message_you">Signal will never message you</string>
<!-- Remainder of the warning sheet body following the bolded lead-in RecoveryKeyWarningSheetContent__signal_will_never_message_you -->
<string name="RecoveryKeyWarningSheetContent__for_your_recovery_key_never_respond">for your recovery key. Never respond to a chat pretending to be Signal. Store your recovery key somewhere safe and never share it with anyone.</string>
<!-- Button dismissing the recovery key warning sheet after the user has copied their key -->
<string name="RecoveryKeyWarningSheetContent__got_it">Got it</string>
<string name="RecoveryKeyWarningSheetContent__got_it">Begrepen</string>
<!-- Button opening a help article with more information about recovery key safety -->
<string name="RecoveryKeyWarningSheetContent__learn_more">Learn more</string>
<string name="RecoveryKeyWarningSheetContent__learn_more">Meer lezen</string>
<!-- Inline link opening a help article with more information about recovery key safety -->
<string name="RecoveryKeyWarningSheetContent__learn_more_period">Learn more.</string>
<!-- Button declining to paste/share the recovery key, dismissing the warning sheet -->
<string name="RecoveryKeyWarningSheetContent__do_not_share_key">Do not share key</string>
<!-- Button indicating the user wants to proceed with sharing/pasting the recovery key, which shows a final confirmation -->
@@ -9953,7 +9955,7 @@
<!-- Bolded middle sentence of the final confirmation dialog body -->
<string name="RecoveryKeyWarningDialog__signal_will_never_message_you_for_your_recovery_key">Signal will never message you for your recovery key.</string>
<!-- Final sentence of the final confirmation dialog body -->
<string name="RecoveryKeyWarningDialog__never_respond_to_a_chat">Never respond to a chat pretending to be Signal.</string>
<string name="RecoveryKeyWarningDialog__never_respond_to_a_chat">Reageer niet op chats die afkomstig zijn van Signal.</string>
<!-- Button confirming the user wants to paste the recovery key -->
<string name="RecoveryKeyWarningDialog__paste_key">Paste key</string>
<!-- Button declining to paste the recovery key -->
+7 -5
View File
@@ -3522,9 +3522,9 @@
<!-- Status update label used while the device is transmitting data over the network. Will take the form of "1.0 MB/2.0 MB" -->
<string name="TransferControlView__download_progress_s_s">%1$s/%2$s</string>
<!-- Accessibility description for the button that starts downloading an attachment -->
<string name="TransferControlView__download">Download</string>
<string name="TransferControlView__download">ਡਾਊਨਲੋਡ ਕਰੋ</string>
<!-- Accessibility description for the button that starts uploading an attachment -->
<string name="TransferControlView__upload">Upload</string>
<string name="TransferControlView__upload">ਅੱਪਲੋਡ ਕਰੋ</string>
<!-- UnauthorizedReminder -->
<!-- Message shown in a reminder banner when the user\'s device is no longer registered -->
@@ -9938,9 +9938,11 @@
<!-- Remainder of the warning sheet body following the bolded lead-in RecoveryKeyWarningSheetContent__signal_will_never_message_you -->
<string name="RecoveryKeyWarningSheetContent__for_your_recovery_key_never_respond">for your recovery key. Never respond to a chat pretending to be Signal. Store your recovery key somewhere safe and never share it with anyone.</string>
<!-- Button dismissing the recovery key warning sheet after the user has copied their key -->
<string name="RecoveryKeyWarningSheetContent__got_it">Got it</string>
<string name="RecoveryKeyWarningSheetContent__got_it">ਸਮਝ ਗਏ</string>
<!-- Button opening a help article with more information about recovery key safety -->
<string name="RecoveryKeyWarningSheetContent__learn_more">Learn more</string>
<string name="RecoveryKeyWarningSheetContent__learn_more">ਹੋਰ ਜਾਣੋ</string>
<!-- Inline link opening a help article with more information about recovery key safety -->
<string name="RecoveryKeyWarningSheetContent__learn_more_period">Learn more.</string>
<!-- Button declining to paste/share the recovery key, dismissing the warning sheet -->
<string name="RecoveryKeyWarningSheetContent__do_not_share_key">Do not share key</string>
<!-- Button indicating the user wants to proceed with sharing/pasting the recovery key, which shows a final confirmation -->
@@ -9953,7 +9955,7 @@
<!-- Bolded middle sentence of the final confirmation dialog body -->
<string name="RecoveryKeyWarningDialog__signal_will_never_message_you_for_your_recovery_key">Signal will never message you for your recovery key.</string>
<!-- Final sentence of the final confirmation dialog body -->
<string name="RecoveryKeyWarningDialog__never_respond_to_a_chat">Never respond to a chat pretending to be Signal.</string>
<string name="RecoveryKeyWarningDialog__never_respond_to_a_chat">ਕਦੇ ਵੀ Signal ਹੋਣ ਦਾ ਦਿਖਾਵਾ ਕਰਨ ਵਾਲੀਆਂ ਚੈਟਾਂ ਦਾ ਜਵਾਬ ਨਾ ਦਿਓ।</string>
<!-- Button confirming the user wants to paste the recovery key -->
<string name="RecoveryKeyWarningDialog__paste_key">Paste key</string>
<!-- Button declining to paste the recovery key -->
+8 -6
View File
@@ -3734,9 +3734,9 @@
<!-- Status update label used while the device is transmitting data over the network. Will take the form of "1.0 MB/2.0 MB" -->
<string name="TransferControlView__download_progress_s_s">%1$s/%2$s</string>
<!-- Accessibility description for the button that starts downloading an attachment -->
<string name="TransferControlView__download">Download</string>
<string name="TransferControlView__download">Pobierz</string>
<!-- Accessibility description for the button that starts uploading an attachment -->
<string name="TransferControlView__upload">Upload</string>
<string name="TransferControlView__upload">Prześlij</string>
<!-- UnauthorizedReminder -->
<!-- Message shown in a reminder banner when the user\'s device is no longer registered -->
@@ -10338,15 +10338,17 @@
<string name="SafetyTipsBottomSheet__open_account_settings">Przejdź do ustawień konta</string>
<!-- Title of a warning sheet shown when the user copies or pastes their recovery key, urging them not to share it -->
<string name="RecoveryKeyWarningSheetContent__do_not_share_your_recovery_key">Do not share your recovery key</string>
<string name="RecoveryKeyWarningSheetContent__do_not_share_your_recovery_key">Nikomu nie podawaj swojego kodu odzyskiwania</string>
<!-- Bolded lead-in to the warning sheet body; combined with RecoveryKeyWarningSheetContent__for_your_recovery_key_never_respond to form a full sentence -->
<string name="RecoveryKeyWarningSheetContent__signal_will_never_message_you">Signal will never message you</string>
<!-- Remainder of the warning sheet body following the bolded lead-in RecoveryKeyWarningSheetContent__signal_will_never_message_you -->
<string name="RecoveryKeyWarningSheetContent__for_your_recovery_key_never_respond">for your recovery key. Never respond to a chat pretending to be Signal. Store your recovery key somewhere safe and never share it with anyone.</string>
<!-- Button dismissing the recovery key warning sheet after the user has copied their key -->
<string name="RecoveryKeyWarningSheetContent__got_it">Got it</string>
<string name="RecoveryKeyWarningSheetContent__got_it">Rozumiem</string>
<!-- Button opening a help article with more information about recovery key safety -->
<string name="RecoveryKeyWarningSheetContent__learn_more">Learn more</string>
<string name="RecoveryKeyWarningSheetContent__learn_more">Dowiedz się więcej</string>
<!-- Inline link opening a help article with more information about recovery key safety -->
<string name="RecoveryKeyWarningSheetContent__learn_more_period">Learn more.</string>
<!-- Button declining to paste/share the recovery key, dismissing the warning sheet -->
<string name="RecoveryKeyWarningSheetContent__do_not_share_key">Do not share key</string>
<!-- Button indicating the user wants to proceed with sharing/pasting the recovery key, which shows a final confirmation -->
@@ -10359,7 +10361,7 @@
<!-- Bolded middle sentence of the final confirmation dialog body -->
<string name="RecoveryKeyWarningDialog__signal_will_never_message_you_for_your_recovery_key">Signal will never message you for your recovery key.</string>
<!-- Final sentence of the final confirmation dialog body -->
<string name="RecoveryKeyWarningDialog__never_respond_to_a_chat">Never respond to a chat pretending to be Signal.</string>
<string name="RecoveryKeyWarningDialog__never_respond_to_a_chat">Nigdy nie odpowiadaj na wiadomości od osób podszywających się pod pracowników Signal.</string>
<!-- Button confirming the user wants to paste the recovery key -->
<string name="RecoveryKeyWarningDialog__paste_key">Paste key</string>
<!-- Button declining to paste the recovery key -->
+8 -6
View File
@@ -3522,9 +3522,9 @@
<!-- Status update label used while the device is transmitting data over the network. Will take the form of "1.0 MB/2.0 MB" -->
<string name="TransferControlView__download_progress_s_s">%1$s/%2$s</string>
<!-- Accessibility description for the button that starts downloading an attachment -->
<string name="TransferControlView__download">Download</string>
<string name="TransferControlView__download">Baixar</string>
<!-- Accessibility description for the button that starts uploading an attachment -->
<string name="TransferControlView__upload">Upload</string>
<string name="TransferControlView__upload">Carregar</string>
<!-- UnauthorizedReminder -->
<!-- Message shown in a reminder banner when the user\'s device is no longer registered -->
@@ -9932,15 +9932,17 @@
<string name="SafetyTipsBottomSheet__open_account_settings">Abrir configurações da conta</string>
<!-- Title of a warning sheet shown when the user copies or pastes their recovery key, urging them not to share it -->
<string name="RecoveryKeyWarningSheetContent__do_not_share_your_recovery_key">Do not share your recovery key</string>
<string name="RecoveryKeyWarningSheetContent__do_not_share_your_recovery_key">Não compartilhe sua chave de recuperação</string>
<!-- Bolded lead-in to the warning sheet body; combined with RecoveryKeyWarningSheetContent__for_your_recovery_key_never_respond to form a full sentence -->
<string name="RecoveryKeyWarningSheetContent__signal_will_never_message_you">Signal will never message you</string>
<!-- Remainder of the warning sheet body following the bolded lead-in RecoveryKeyWarningSheetContent__signal_will_never_message_you -->
<string name="RecoveryKeyWarningSheetContent__for_your_recovery_key_never_respond">for your recovery key. Never respond to a chat pretending to be Signal. Store your recovery key somewhere safe and never share it with anyone.</string>
<!-- Button dismissing the recovery key warning sheet after the user has copied their key -->
<string name="RecoveryKeyWarningSheetContent__got_it">Got it</string>
<string name="RecoveryKeyWarningSheetContent__got_it">Entendi</string>
<!-- Button opening a help article with more information about recovery key safety -->
<string name="RecoveryKeyWarningSheetContent__learn_more">Learn more</string>
<string name="RecoveryKeyWarningSheetContent__learn_more">Saiba mais</string>
<!-- Inline link opening a help article with more information about recovery key safety -->
<string name="RecoveryKeyWarningSheetContent__learn_more_period">Learn more.</string>
<!-- Button declining to paste/share the recovery key, dismissing the warning sheet -->
<string name="RecoveryKeyWarningSheetContent__do_not_share_key">Do not share key</string>
<!-- Button indicating the user wants to proceed with sharing/pasting the recovery key, which shows a final confirmation -->
@@ -9953,7 +9955,7 @@
<!-- Bolded middle sentence of the final confirmation dialog body -->
<string name="RecoveryKeyWarningDialog__signal_will_never_message_you_for_your_recovery_key">Signal will never message you for your recovery key.</string>
<!-- Final sentence of the final confirmation dialog body -->
<string name="RecoveryKeyWarningDialog__never_respond_to_a_chat">Never respond to a chat pretending to be Signal.</string>
<string name="RecoveryKeyWarningDialog__never_respond_to_a_chat">Nunca responda a uma conversa de alguém tentando se passar pelo Signal.</string>
<!-- Button confirming the user wants to paste the recovery key -->
<string name="RecoveryKeyWarningDialog__paste_key">Paste key</string>
<!-- Button declining to paste the recovery key -->
+7 -5
View File
@@ -3524,7 +3524,7 @@
<!-- Accessibility description for the button that starts downloading an attachment -->
<string name="TransferControlView__download">Download</string>
<!-- Accessibility description for the button that starts uploading an attachment -->
<string name="TransferControlView__upload">Upload</string>
<string name="TransferControlView__upload">Carregar</string>
<!-- UnauthorizedReminder -->
<!-- Message shown in a reminder banner when the user\'s device is no longer registered -->
@@ -9932,15 +9932,17 @@
<string name="SafetyTipsBottomSheet__open_account_settings">Abrir definições da conta</string>
<!-- Title of a warning sheet shown when the user copies or pastes their recovery key, urging them not to share it -->
<string name="RecoveryKeyWarningSheetContent__do_not_share_your_recovery_key">Do not share your recovery key</string>
<string name="RecoveryKeyWarningSheetContent__do_not_share_your_recovery_key">Não partilhe a sua chave de recuperação</string>
<!-- Bolded lead-in to the warning sheet body; combined with RecoveryKeyWarningSheetContent__for_your_recovery_key_never_respond to form a full sentence -->
<string name="RecoveryKeyWarningSheetContent__signal_will_never_message_you">Signal will never message you</string>
<!-- Remainder of the warning sheet body following the bolded lead-in RecoveryKeyWarningSheetContent__signal_will_never_message_you -->
<string name="RecoveryKeyWarningSheetContent__for_your_recovery_key_never_respond">for your recovery key. Never respond to a chat pretending to be Signal. Store your recovery key somewhere safe and never share it with anyone.</string>
<!-- Button dismissing the recovery key warning sheet after the user has copied their key -->
<string name="RecoveryKeyWarningSheetContent__got_it">Got it</string>
<string name="RecoveryKeyWarningSheetContent__got_it">Entendido</string>
<!-- Button opening a help article with more information about recovery key safety -->
<string name="RecoveryKeyWarningSheetContent__learn_more">Learn more</string>
<string name="RecoveryKeyWarningSheetContent__learn_more">Saber mais</string>
<!-- Inline link opening a help article with more information about recovery key safety -->
<string name="RecoveryKeyWarningSheetContent__learn_more_period">Learn more.</string>
<!-- Button declining to paste/share the recovery key, dismissing the warning sheet -->
<string name="RecoveryKeyWarningSheetContent__do_not_share_key">Do not share key</string>
<!-- Button indicating the user wants to proceed with sharing/pasting the recovery key, which shows a final confirmation -->
@@ -9953,7 +9955,7 @@
<!-- Bolded middle sentence of the final confirmation dialog body -->
<string name="RecoveryKeyWarningDialog__signal_will_never_message_you_for_your_recovery_key">Signal will never message you for your recovery key.</string>
<!-- Final sentence of the final confirmation dialog body -->
<string name="RecoveryKeyWarningDialog__never_respond_to_a_chat">Never respond to a chat pretending to be Signal.</string>
<string name="RecoveryKeyWarningDialog__never_respond_to_a_chat">Nunca responda a um chat que finge ser do Signal.</string>
<!-- Button confirming the user wants to paste the recovery key -->
<string name="RecoveryKeyWarningDialog__paste_key">Paste key</string>
<!-- Button declining to paste the recovery key -->
+8 -6
View File
@@ -3628,9 +3628,9 @@
<!-- Status update label used while the device is transmitting data over the network. Will take the form of "1.0 MB/2.0 MB" -->
<string name="TransferControlView__download_progress_s_s">%1$s/%2$s</string>
<!-- Accessibility description for the button that starts downloading an attachment -->
<string name="TransferControlView__download">Download</string>
<string name="TransferControlView__download">Descarcă</string>
<!-- Accessibility description for the button that starts uploading an attachment -->
<string name="TransferControlView__upload">Upload</string>
<string name="TransferControlView__upload">Încarcă</string>
<!-- UnauthorizedReminder -->
<!-- Message shown in a reminder banner when the user\'s device is no longer registered -->
@@ -10135,15 +10135,17 @@
<string name="SafetyTipsBottomSheet__open_account_settings">Deschide setările contului</string>
<!-- Title of a warning sheet shown when the user copies or pastes their recovery key, urging them not to share it -->
<string name="RecoveryKeyWarningSheetContent__do_not_share_your_recovery_key">Do not share your recovery key</string>
<string name="RecoveryKeyWarningSheetContent__do_not_share_your_recovery_key">Nu transmite codul tău de recuperare</string>
<!-- Bolded lead-in to the warning sheet body; combined with RecoveryKeyWarningSheetContent__for_your_recovery_key_never_respond to form a full sentence -->
<string name="RecoveryKeyWarningSheetContent__signal_will_never_message_you">Signal will never message you</string>
<!-- Remainder of the warning sheet body following the bolded lead-in RecoveryKeyWarningSheetContent__signal_will_never_message_you -->
<string name="RecoveryKeyWarningSheetContent__for_your_recovery_key_never_respond">for your recovery key. Never respond to a chat pretending to be Signal. Store your recovery key somewhere safe and never share it with anyone.</string>
<!-- Button dismissing the recovery key warning sheet after the user has copied their key -->
<string name="RecoveryKeyWarningSheetContent__got_it">Got it</string>
<string name="RecoveryKeyWarningSheetContent__got_it">Am înțeles</string>
<!-- Button opening a help article with more information about recovery key safety -->
<string name="RecoveryKeyWarningSheetContent__learn_more">Learn more</string>
<string name="RecoveryKeyWarningSheetContent__learn_more">Află mai multe</string>
<!-- Inline link opening a help article with more information about recovery key safety -->
<string name="RecoveryKeyWarningSheetContent__learn_more_period">Learn more.</string>
<!-- Button declining to paste/share the recovery key, dismissing the warning sheet -->
<string name="RecoveryKeyWarningSheetContent__do_not_share_key">Do not share key</string>
<!-- Button indicating the user wants to proceed with sharing/pasting the recovery key, which shows a final confirmation -->
@@ -10156,7 +10158,7 @@
<!-- Bolded middle sentence of the final confirmation dialog body -->
<string name="RecoveryKeyWarningDialog__signal_will_never_message_you_for_your_recovery_key">Signal will never message you for your recovery key.</string>
<!-- Final sentence of the final confirmation dialog body -->
<string name="RecoveryKeyWarningDialog__never_respond_to_a_chat">Never respond to a chat pretending to be Signal.</string>
<string name="RecoveryKeyWarningDialog__never_respond_to_a_chat">Nu răspunde niciodată la o conversație în care persoana pretinde că e Signal.</string>
<!-- Button confirming the user wants to paste the recovery key -->
<string name="RecoveryKeyWarningDialog__paste_key">Paste key</string>
<!-- Button declining to paste the recovery key -->
+8 -6
View File
@@ -3734,9 +3734,9 @@
<!-- Status update label used while the device is transmitting data over the network. Will take the form of "1.0 MB/2.0 MB" -->
<string name="TransferControlView__download_progress_s_s">%1$s/%2$s</string>
<!-- Accessibility description for the button that starts downloading an attachment -->
<string name="TransferControlView__download">Download</string>
<string name="TransferControlView__download">Скачать</string>
<!-- Accessibility description for the button that starts uploading an attachment -->
<string name="TransferControlView__upload">Upload</string>
<string name="TransferControlView__upload">Загрузить на сервер</string>
<!-- UnauthorizedReminder -->
<!-- Message shown in a reminder banner when the user\'s device is no longer registered -->
@@ -10338,15 +10338,17 @@
<string name="SafetyTipsBottomSheet__open_account_settings">Открыть настройки учётной записи</string>
<!-- Title of a warning sheet shown when the user copies or pastes their recovery key, urging them not to share it -->
<string name="RecoveryKeyWarningSheetContent__do_not_share_your_recovery_key">Do not share your recovery key</string>
<string name="RecoveryKeyWarningSheetContent__do_not_share_your_recovery_key">Не делитесь вашим ключом восстановления</string>
<!-- Bolded lead-in to the warning sheet body; combined with RecoveryKeyWarningSheetContent__for_your_recovery_key_never_respond to form a full sentence -->
<string name="RecoveryKeyWarningSheetContent__signal_will_never_message_you">Signal will never message you</string>
<!-- Remainder of the warning sheet body following the bolded lead-in RecoveryKeyWarningSheetContent__signal_will_never_message_you -->
<string name="RecoveryKeyWarningSheetContent__for_your_recovery_key_never_respond">for your recovery key. Never respond to a chat pretending to be Signal. Store your recovery key somewhere safe and never share it with anyone.</string>
<!-- Button dismissing the recovery key warning sheet after the user has copied their key -->
<string name="RecoveryKeyWarningSheetContent__got_it">Got it</string>
<string name="RecoveryKeyWarningSheetContent__got_it">Понятно</string>
<!-- Button opening a help article with more information about recovery key safety -->
<string name="RecoveryKeyWarningSheetContent__learn_more">Learn more</string>
<string name="RecoveryKeyWarningSheetContent__learn_more">Узнать больше</string>
<!-- Inline link opening a help article with more information about recovery key safety -->
<string name="RecoveryKeyWarningSheetContent__learn_more_period">Learn more.</string>
<!-- Button declining to paste/share the recovery key, dismissing the warning sheet -->
<string name="RecoveryKeyWarningSheetContent__do_not_share_key">Do not share key</string>
<!-- Button indicating the user wants to proceed with sharing/pasting the recovery key, which shows a final confirmation -->
@@ -10359,7 +10361,7 @@
<!-- Bolded middle sentence of the final confirmation dialog body -->
<string name="RecoveryKeyWarningDialog__signal_will_never_message_you_for_your_recovery_key">Signal will never message you for your recovery key.</string>
<!-- Final sentence of the final confirmation dialog body -->
<string name="RecoveryKeyWarningDialog__never_respond_to_a_chat">Never respond to a chat pretending to be Signal.</string>
<string name="RecoveryKeyWarningDialog__never_respond_to_a_chat">Никогда не отвечайте на чаты, притворяющиеся Signal.</string>
<!-- Button confirming the user wants to paste the recovery key -->
<string name="RecoveryKeyWarningDialog__paste_key">Paste key</string>
<!-- Button declining to paste the recovery key -->
+8 -6
View File
@@ -3734,9 +3734,9 @@
<!-- Status update label used while the device is transmitting data over the network. Will take the form of "1.0 MB/2.0 MB" -->
<string name="TransferControlView__download_progress_s_s">%1$s/%2$s</string>
<!-- Accessibility description for the button that starts downloading an attachment -->
<string name="TransferControlView__download">Download</string>
<string name="TransferControlView__download">Stiahnuť</string>
<!-- Accessibility description for the button that starts uploading an attachment -->
<string name="TransferControlView__upload">Upload</string>
<string name="TransferControlView__upload">Nahrať</string>
<!-- UnauthorizedReminder -->
<!-- Message shown in a reminder banner when the user\'s device is no longer registered -->
@@ -10338,15 +10338,17 @@
<string name="SafetyTipsBottomSheet__open_account_settings">Otvoriť nastavenia účtu</string>
<!-- Title of a warning sheet shown when the user copies or pastes their recovery key, urging them not to share it -->
<string name="RecoveryKeyWarningSheetContent__do_not_share_your_recovery_key">Do not share your recovery key</string>
<string name="RecoveryKeyWarningSheetContent__do_not_share_your_recovery_key">Nezdieľajte svoj kľúč na obnovenie</string>
<!-- Bolded lead-in to the warning sheet body; combined with RecoveryKeyWarningSheetContent__for_your_recovery_key_never_respond to form a full sentence -->
<string name="RecoveryKeyWarningSheetContent__signal_will_never_message_you">Signal will never message you</string>
<!-- Remainder of the warning sheet body following the bolded lead-in RecoveryKeyWarningSheetContent__signal_will_never_message_you -->
<string name="RecoveryKeyWarningSheetContent__for_your_recovery_key_never_respond">for your recovery key. Never respond to a chat pretending to be Signal. Store your recovery key somewhere safe and never share it with anyone.</string>
<!-- Button dismissing the recovery key warning sheet after the user has copied their key -->
<string name="RecoveryKeyWarningSheetContent__got_it">Got it</string>
<string name="RecoveryKeyWarningSheetContent__got_it">Rozumiem</string>
<!-- Button opening a help article with more information about recovery key safety -->
<string name="RecoveryKeyWarningSheetContent__learn_more">Learn more</string>
<string name="RecoveryKeyWarningSheetContent__learn_more">Zistiť viac</string>
<!-- Inline link opening a help article with more information about recovery key safety -->
<string name="RecoveryKeyWarningSheetContent__learn_more_period">Learn more.</string>
<!-- Button declining to paste/share the recovery key, dismissing the warning sheet -->
<string name="RecoveryKeyWarningSheetContent__do_not_share_key">Do not share key</string>
<!-- Button indicating the user wants to proceed with sharing/pasting the recovery key, which shows a final confirmation -->
@@ -10359,7 +10361,7 @@
<!-- Bolded middle sentence of the final confirmation dialog body -->
<string name="RecoveryKeyWarningDialog__signal_will_never_message_you_for_your_recovery_key">Signal will never message you for your recovery key.</string>
<!-- Final sentence of the final confirmation dialog body -->
<string name="RecoveryKeyWarningDialog__never_respond_to_a_chat">Never respond to a chat pretending to be Signal.</string>
<string name="RecoveryKeyWarningDialog__never_respond_to_a_chat">Nikdy neodpovedajte na správu, ktorá sa vydáva za Signal.</string>
<!-- Button confirming the user wants to paste the recovery key -->
<string name="RecoveryKeyWarningDialog__paste_key">Paste key</string>
<!-- Button declining to paste the recovery key -->
+7 -5
View File
@@ -3734,9 +3734,9 @@
<!-- Status update label used while the device is transmitting data over the network. Will take the form of "1.0 MB/2.0 MB" -->
<string name="TransferControlView__download_progress_s_s">%1$s/%2$s</string>
<!-- Accessibility description for the button that starts downloading an attachment -->
<string name="TransferControlView__download">Download</string>
<string name="TransferControlView__download">Prenesi</string>
<!-- Accessibility description for the button that starts uploading an attachment -->
<string name="TransferControlView__upload">Upload</string>
<string name="TransferControlView__upload">Naloži</string>
<!-- UnauthorizedReminder -->
<!-- Message shown in a reminder banner when the user\'s device is no longer registered -->
@@ -10344,9 +10344,11 @@
<!-- Remainder of the warning sheet body following the bolded lead-in RecoveryKeyWarningSheetContent__signal_will_never_message_you -->
<string name="RecoveryKeyWarningSheetContent__for_your_recovery_key_never_respond">for your recovery key. Never respond to a chat pretending to be Signal. Store your recovery key somewhere safe and never share it with anyone.</string>
<!-- Button dismissing the recovery key warning sheet after the user has copied their key -->
<string name="RecoveryKeyWarningSheetContent__got_it">Got it</string>
<string name="RecoveryKeyWarningSheetContent__got_it">Razumem</string>
<!-- Button opening a help article with more information about recovery key safety -->
<string name="RecoveryKeyWarningSheetContent__learn_more">Learn more</string>
<string name="RecoveryKeyWarningSheetContent__learn_more">Več o tem</string>
<!-- Inline link opening a help article with more information about recovery key safety -->
<string name="RecoveryKeyWarningSheetContent__learn_more_period">Learn more.</string>
<!-- Button declining to paste/share the recovery key, dismissing the warning sheet -->
<string name="RecoveryKeyWarningSheetContent__do_not_share_key">Do not share key</string>
<!-- Button indicating the user wants to proceed with sharing/pasting the recovery key, which shows a final confirmation -->
@@ -10359,7 +10361,7 @@
<!-- Bolded middle sentence of the final confirmation dialog body -->
<string name="RecoveryKeyWarningDialog__signal_will_never_message_you_for_your_recovery_key">Signal will never message you for your recovery key.</string>
<!-- Final sentence of the final confirmation dialog body -->
<string name="RecoveryKeyWarningDialog__never_respond_to_a_chat">Never respond to a chat pretending to be Signal.</string>
<string name="RecoveryKeyWarningDialog__never_respond_to_a_chat">Nikoli ne odgovarjajte na sporočilo, ki se pretvarja, da je Signal.</string>
<!-- Button confirming the user wants to paste the recovery key -->
<string name="RecoveryKeyWarningDialog__paste_key">Paste key</string>
<!-- Button declining to paste the recovery key -->
+7 -5
View File
@@ -3522,9 +3522,9 @@
<!-- Status update label used while the device is transmitting data over the network. Will take the form of "1.0 MB/2.0 MB" -->
<string name="TransferControlView__download_progress_s_s">%1$s/%2$s</string>
<!-- Accessibility description for the button that starts downloading an attachment -->
<string name="TransferControlView__download">Download</string>
<string name="TransferControlView__download">Shkarko</string>
<!-- Accessibility description for the button that starts uploading an attachment -->
<string name="TransferControlView__upload">Upload</string>
<string name="TransferControlView__upload">Ngarko</string>
<!-- UnauthorizedReminder -->
<!-- Message shown in a reminder banner when the user\'s device is no longer registered -->
@@ -9938,9 +9938,11 @@
<!-- Remainder of the warning sheet body following the bolded lead-in RecoveryKeyWarningSheetContent__signal_will_never_message_you -->
<string name="RecoveryKeyWarningSheetContent__for_your_recovery_key_never_respond">for your recovery key. Never respond to a chat pretending to be Signal. Store your recovery key somewhere safe and never share it with anyone.</string>
<!-- Button dismissing the recovery key warning sheet after the user has copied their key -->
<string name="RecoveryKeyWarningSheetContent__got_it">Got it</string>
<string name="RecoveryKeyWarningSheetContent__got_it">E kuptova</string>
<!-- Button opening a help article with more information about recovery key safety -->
<string name="RecoveryKeyWarningSheetContent__learn_more">Learn more</string>
<string name="RecoveryKeyWarningSheetContent__learn_more">Mëso më shumë</string>
<!-- Inline link opening a help article with more information about recovery key safety -->
<string name="RecoveryKeyWarningSheetContent__learn_more_period">Learn more.</string>
<!-- Button declining to paste/share the recovery key, dismissing the warning sheet -->
<string name="RecoveryKeyWarningSheetContent__do_not_share_key">Do not share key</string>
<!-- Button indicating the user wants to proceed with sharing/pasting the recovery key, which shows a final confirmation -->
@@ -9953,7 +9955,7 @@
<!-- Bolded middle sentence of the final confirmation dialog body -->
<string name="RecoveryKeyWarningDialog__signal_will_never_message_you_for_your_recovery_key">Signal will never message you for your recovery key.</string>
<!-- Final sentence of the final confirmation dialog body -->
<string name="RecoveryKeyWarningDialog__never_respond_to_a_chat">Never respond to a chat pretending to be Signal.</string>
<string name="RecoveryKeyWarningDialog__never_respond_to_a_chat">Mos iu përgjigj asnjëherë një bisede që hiqet si Signal.</string>
<!-- Button confirming the user wants to paste the recovery key -->
<string name="RecoveryKeyWarningDialog__paste_key">Paste key</string>
<!-- Button declining to paste the recovery key -->
+8 -6
View File
@@ -3522,9 +3522,9 @@
<!-- Status update label used while the device is transmitting data over the network. Will take the form of "1.0 MB/2.0 MB" -->
<string name="TransferControlView__download_progress_s_s">%1$s/%2$s</string>
<!-- Accessibility description for the button that starts downloading an attachment -->
<string name="TransferControlView__download">Download</string>
<string name="TransferControlView__download">Преузми</string>
<!-- Accessibility description for the button that starts uploading an attachment -->
<string name="TransferControlView__upload">Upload</string>
<string name="TransferControlView__upload">Отпреми</string>
<!-- UnauthorizedReminder -->
<!-- Message shown in a reminder banner when the user\'s device is no longer registered -->
@@ -9932,15 +9932,17 @@
<string name="SafetyTipsBottomSheet__open_account_settings">Отвори подешавања налога</string>
<!-- Title of a warning sheet shown when the user copies or pastes their recovery key, urging them not to share it -->
<string name="RecoveryKeyWarningSheetContent__do_not_share_your_recovery_key">Do not share your recovery key</string>
<string name="RecoveryKeyWarningSheetContent__do_not_share_your_recovery_key">Не делите свој кључ за опоравак</string>
<!-- Bolded lead-in to the warning sheet body; combined with RecoveryKeyWarningSheetContent__for_your_recovery_key_never_respond to form a full sentence -->
<string name="RecoveryKeyWarningSheetContent__signal_will_never_message_you">Signal will never message you</string>
<!-- Remainder of the warning sheet body following the bolded lead-in RecoveryKeyWarningSheetContent__signal_will_never_message_you -->
<string name="RecoveryKeyWarningSheetContent__for_your_recovery_key_never_respond">for your recovery key. Never respond to a chat pretending to be Signal. Store your recovery key somewhere safe and never share it with anyone.</string>
<!-- Button dismissing the recovery key warning sheet after the user has copied their key -->
<string name="RecoveryKeyWarningSheetContent__got_it">Got it</string>
<string name="RecoveryKeyWarningSheetContent__got_it">Разумем</string>
<!-- Button opening a help article with more information about recovery key safety -->
<string name="RecoveryKeyWarningSheetContent__learn_more">Learn more</string>
<string name="RecoveryKeyWarningSheetContent__learn_more">Сазнајте више</string>
<!-- Inline link opening a help article with more information about recovery key safety -->
<string name="RecoveryKeyWarningSheetContent__learn_more_period">Learn more.</string>
<!-- Button declining to paste/share the recovery key, dismissing the warning sheet -->
<string name="RecoveryKeyWarningSheetContent__do_not_share_key">Do not share key</string>
<!-- Button indicating the user wants to proceed with sharing/pasting the recovery key, which shows a final confirmation -->
@@ -9953,7 +9955,7 @@
<!-- Bolded middle sentence of the final confirmation dialog body -->
<string name="RecoveryKeyWarningDialog__signal_will_never_message_you_for_your_recovery_key">Signal will never message you for your recovery key.</string>
<!-- Final sentence of the final confirmation dialog body -->
<string name="RecoveryKeyWarningDialog__never_respond_to_a_chat">Never respond to a chat pretending to be Signal.</string>
<string name="RecoveryKeyWarningDialog__never_respond_to_a_chat">Никада не одговарајте на поруке из ћаскања која се представљају као Signal.</string>
<!-- Button confirming the user wants to paste the recovery key -->
<string name="RecoveryKeyWarningDialog__paste_key">Paste key</string>
<!-- Button declining to paste the recovery key -->
+8 -6
View File
@@ -3522,9 +3522,9 @@
<!-- Status update label used while the device is transmitting data over the network. Will take the form of "1.0 MB/2.0 MB" -->
<string name="TransferControlView__download_progress_s_s">%1$s/%2$s</string>
<!-- Accessibility description for the button that starts downloading an attachment -->
<string name="TransferControlView__download">Download</string>
<string name="TransferControlView__download">Hämta</string>
<!-- Accessibility description for the button that starts uploading an attachment -->
<string name="TransferControlView__upload">Upload</string>
<string name="TransferControlView__upload">Ladda upp</string>
<!-- UnauthorizedReminder -->
<!-- Message shown in a reminder banner when the user\'s device is no longer registered -->
@@ -9932,15 +9932,17 @@
<string name="SafetyTipsBottomSheet__open_account_settings">Öppna kontoinställningar</string>
<!-- Title of a warning sheet shown when the user copies or pastes their recovery key, urging them not to share it -->
<string name="RecoveryKeyWarningSheetContent__do_not_share_your_recovery_key">Do not share your recovery key</string>
<string name="RecoveryKeyWarningSheetContent__do_not_share_your_recovery_key">Dela inte din återställningsnyckel</string>
<!-- Bolded lead-in to the warning sheet body; combined with RecoveryKeyWarningSheetContent__for_your_recovery_key_never_respond to form a full sentence -->
<string name="RecoveryKeyWarningSheetContent__signal_will_never_message_you">Signal will never message you</string>
<!-- Remainder of the warning sheet body following the bolded lead-in RecoveryKeyWarningSheetContent__signal_will_never_message_you -->
<string name="RecoveryKeyWarningSheetContent__for_your_recovery_key_never_respond">for your recovery key. Never respond to a chat pretending to be Signal. Store your recovery key somewhere safe and never share it with anyone.</string>
<!-- Button dismissing the recovery key warning sheet after the user has copied their key -->
<string name="RecoveryKeyWarningSheetContent__got_it">Got it</string>
<string name="RecoveryKeyWarningSheetContent__got_it">Uppfattat</string>
<!-- Button opening a help article with more information about recovery key safety -->
<string name="RecoveryKeyWarningSheetContent__learn_more">Learn more</string>
<string name="RecoveryKeyWarningSheetContent__learn_more">Läs mer</string>
<!-- Inline link opening a help article with more information about recovery key safety -->
<string name="RecoveryKeyWarningSheetContent__learn_more_period">Learn more.</string>
<!-- Button declining to paste/share the recovery key, dismissing the warning sheet -->
<string name="RecoveryKeyWarningSheetContent__do_not_share_key">Do not share key</string>
<!-- Button indicating the user wants to proceed with sharing/pasting the recovery key, which shows a final confirmation -->
@@ -9953,7 +9955,7 @@
<!-- Bolded middle sentence of the final confirmation dialog body -->
<string name="RecoveryKeyWarningDialog__signal_will_never_message_you_for_your_recovery_key">Signal will never message you for your recovery key.</string>
<!-- Final sentence of the final confirmation dialog body -->
<string name="RecoveryKeyWarningDialog__never_respond_to_a_chat">Never respond to a chat pretending to be Signal.</string>
<string name="RecoveryKeyWarningDialog__never_respond_to_a_chat">Svara aldrig på en chatt som utger sig för att vara Signal.</string>
<!-- Button confirming the user wants to paste the recovery key -->
<string name="RecoveryKeyWarningDialog__paste_key">Paste key</string>
<!-- Button declining to paste the recovery key -->
+7 -5
View File
@@ -3522,9 +3522,9 @@
<!-- Status update label used while the device is transmitting data over the network. Will take the form of "1.0 MB/2.0 MB" -->
<string name="TransferControlView__download_progress_s_s">%1$s/%2$s</string>
<!-- Accessibility description for the button that starts downloading an attachment -->
<string name="TransferControlView__download">Download</string>
<string name="TransferControlView__download">Pakua</string>
<!-- Accessibility description for the button that starts uploading an attachment -->
<string name="TransferControlView__upload">Upload</string>
<string name="TransferControlView__upload">Pakia</string>
<!-- UnauthorizedReminder -->
<!-- Message shown in a reminder banner when the user\'s device is no longer registered -->
@@ -9938,9 +9938,11 @@
<!-- Remainder of the warning sheet body following the bolded lead-in RecoveryKeyWarningSheetContent__signal_will_never_message_you -->
<string name="RecoveryKeyWarningSheetContent__for_your_recovery_key_never_respond">for your recovery key. Never respond to a chat pretending to be Signal. Store your recovery key somewhere safe and never share it with anyone.</string>
<!-- Button dismissing the recovery key warning sheet after the user has copied their key -->
<string name="RecoveryKeyWarningSheetContent__got_it">Got it</string>
<string name="RecoveryKeyWarningSheetContent__got_it">Nimeelewa</string>
<!-- Button opening a help article with more information about recovery key safety -->
<string name="RecoveryKeyWarningSheetContent__learn_more">Learn more</string>
<string name="RecoveryKeyWarningSheetContent__learn_more">Jifunze zaidi</string>
<!-- Inline link opening a help article with more information about recovery key safety -->
<string name="RecoveryKeyWarningSheetContent__learn_more_period">Learn more.</string>
<!-- Button declining to paste/share the recovery key, dismissing the warning sheet -->
<string name="RecoveryKeyWarningSheetContent__do_not_share_key">Do not share key</string>
<!-- Button indicating the user wants to proceed with sharing/pasting the recovery key, which shows a final confirmation -->
@@ -9953,7 +9955,7 @@
<!-- Bolded middle sentence of the final confirmation dialog body -->
<string name="RecoveryKeyWarningDialog__signal_will_never_message_you_for_your_recovery_key">Signal will never message you for your recovery key.</string>
<!-- Final sentence of the final confirmation dialog body -->
<string name="RecoveryKeyWarningDialog__never_respond_to_a_chat">Never respond to a chat pretending to be Signal.</string>
<string name="RecoveryKeyWarningDialog__never_respond_to_a_chat">Usijibu gumzo linaloiga kuwa Signal.</string>
<!-- Button confirming the user wants to paste the recovery key -->
<string name="RecoveryKeyWarningDialog__paste_key">Paste key</string>
<!-- Button declining to paste the recovery key -->
+7 -5
View File
@@ -3522,9 +3522,9 @@
<!-- Status update label used while the device is transmitting data over the network. Will take the form of "1.0 MB/2.0 MB" -->
<string name="TransferControlView__download_progress_s_s">%1$s/%2$s</string>
<!-- Accessibility description for the button that starts downloading an attachment -->
<string name="TransferControlView__download">Download</string>
<string name="TransferControlView__download">பதிவிறக்க</string>
<!-- Accessibility description for the button that starts uploading an attachment -->
<string name="TransferControlView__upload">Upload</string>
<string name="TransferControlView__upload">பதிவேற்று</string>
<!-- UnauthorizedReminder -->
<!-- Message shown in a reminder banner when the user\'s device is no longer registered -->
@@ -9938,9 +9938,11 @@
<!-- Remainder of the warning sheet body following the bolded lead-in RecoveryKeyWarningSheetContent__signal_will_never_message_you -->
<string name="RecoveryKeyWarningSheetContent__for_your_recovery_key_never_respond">for your recovery key. Never respond to a chat pretending to be Signal. Store your recovery key somewhere safe and never share it with anyone.</string>
<!-- Button dismissing the recovery key warning sheet after the user has copied their key -->
<string name="RecoveryKeyWarningSheetContent__got_it">Got it</string>
<string name="RecoveryKeyWarningSheetContent__got_it">அறிந்துகொண்டேன்</string>
<!-- Button opening a help article with more information about recovery key safety -->
<string name="RecoveryKeyWarningSheetContent__learn_more">Learn more</string>
<string name="RecoveryKeyWarningSheetContent__learn_more">மேலும் அறிக</string>
<!-- Inline link opening a help article with more information about recovery key safety -->
<string name="RecoveryKeyWarningSheetContent__learn_more_period">Learn more.</string>
<!-- Button declining to paste/share the recovery key, dismissing the warning sheet -->
<string name="RecoveryKeyWarningSheetContent__do_not_share_key">Do not share key</string>
<!-- Button indicating the user wants to proceed with sharing/pasting the recovery key, which shows a final confirmation -->
@@ -9953,7 +9955,7 @@
<!-- Bolded middle sentence of the final confirmation dialog body -->
<string name="RecoveryKeyWarningDialog__signal_will_never_message_you_for_your_recovery_key">Signal will never message you for your recovery key.</string>
<!-- Final sentence of the final confirmation dialog body -->
<string name="RecoveryKeyWarningDialog__never_respond_to_a_chat">Never respond to a chat pretending to be Signal.</string>
<string name="RecoveryKeyWarningDialog__never_respond_to_a_chat">சிக்னல் போல் ஆள்மாறாட்டம் செய்து வரும் உரையாடலுக்கு ஒருபோதும் பதிலளிக்காதீர்கள்.</string>
<!-- Button confirming the user wants to paste the recovery key -->
<string name="RecoveryKeyWarningDialog__paste_key">Paste key</string>
<!-- Button declining to paste the recovery key -->
+7 -5
View File
@@ -3522,9 +3522,9 @@
<!-- Status update label used while the device is transmitting data over the network. Will take the form of "1.0 MB/2.0 MB" -->
<string name="TransferControlView__download_progress_s_s">%1$s/%2$s</string>
<!-- Accessibility description for the button that starts downloading an attachment -->
<string name="TransferControlView__download">Download</string>
<string name="TransferControlView__download">దిగుమతి</string>
<!-- Accessibility description for the button that starts uploading an attachment -->
<string name="TransferControlView__upload">Upload</string>
<string name="TransferControlView__upload">అప్‌లోడ్ చేయండి</string>
<!-- UnauthorizedReminder -->
<!-- Message shown in a reminder banner when the user\'s device is no longer registered -->
@@ -9938,9 +9938,11 @@
<!-- Remainder of the warning sheet body following the bolded lead-in RecoveryKeyWarningSheetContent__signal_will_never_message_you -->
<string name="RecoveryKeyWarningSheetContent__for_your_recovery_key_never_respond">for your recovery key. Never respond to a chat pretending to be Signal. Store your recovery key somewhere safe and never share it with anyone.</string>
<!-- Button dismissing the recovery key warning sheet after the user has copied their key -->
<string name="RecoveryKeyWarningSheetContent__got_it">Got it</string>
<string name="RecoveryKeyWarningSheetContent__got_it">అర్థమైంది</string>
<!-- Button opening a help article with more information about recovery key safety -->
<string name="RecoveryKeyWarningSheetContent__learn_more">Learn more</string>
<string name="RecoveryKeyWarningSheetContent__learn_more">మరింత తెలుసుకోండి</string>
<!-- Inline link opening a help article with more information about recovery key safety -->
<string name="RecoveryKeyWarningSheetContent__learn_more_period">Learn more.</string>
<!-- Button declining to paste/share the recovery key, dismissing the warning sheet -->
<string name="RecoveryKeyWarningSheetContent__do_not_share_key">Do not share key</string>
<!-- Button indicating the user wants to proceed with sharing/pasting the recovery key, which shows a final confirmation -->
@@ -9953,7 +9955,7 @@
<!-- Bolded middle sentence of the final confirmation dialog body -->
<string name="RecoveryKeyWarningDialog__signal_will_never_message_you_for_your_recovery_key">Signal will never message you for your recovery key.</string>
<!-- Final sentence of the final confirmation dialog body -->
<string name="RecoveryKeyWarningDialog__never_respond_to_a_chat">Never respond to a chat pretending to be Signal.</string>
<string name="RecoveryKeyWarningDialog__never_respond_to_a_chat">Signal అని నటిస్తూ చేసే చాట్‌కు ఎప్పుడూ స్పందించవద్దు.</string>
<!-- Button confirming the user wants to paste the recovery key -->
<string name="RecoveryKeyWarningDialog__paste_key">Paste key</string>
<!-- Button declining to paste the recovery key -->
+8 -6
View File
@@ -3416,9 +3416,9 @@
<!-- Status update label used while the device is transmitting data over the network. Will take the form of "1.0 MB/2.0 MB" -->
<string name="TransferControlView__download_progress_s_s">%1$s/%2$s</string>
<!-- Accessibility description for the button that starts downloading an attachment -->
<string name="TransferControlView__download">Download</string>
<string name="TransferControlView__download">ดาวน์โหลด</string>
<!-- Accessibility description for the button that starts uploading an attachment -->
<string name="TransferControlView__upload">Upload</string>
<string name="TransferControlView__upload">อัปโหลด</string>
<!-- UnauthorizedReminder -->
<!-- Message shown in a reminder banner when the user\'s device is no longer registered -->
@@ -9729,15 +9729,17 @@
<string name="SafetyTipsBottomSheet__open_account_settings">เปิดหน้าการตั้งค่าบัญชี</string>
<!-- Title of a warning sheet shown when the user copies or pastes their recovery key, urging them not to share it -->
<string name="RecoveryKeyWarningSheetContent__do_not_share_your_recovery_key">Do not share your recovery key</string>
<string name="RecoveryKeyWarningSheetContent__do_not_share_your_recovery_key">อย่าเปิดเผยกุญแจกู้คืนของคุณ</string>
<!-- Bolded lead-in to the warning sheet body; combined with RecoveryKeyWarningSheetContent__for_your_recovery_key_never_respond to form a full sentence -->
<string name="RecoveryKeyWarningSheetContent__signal_will_never_message_you">Signal will never message you</string>
<!-- Remainder of the warning sheet body following the bolded lead-in RecoveryKeyWarningSheetContent__signal_will_never_message_you -->
<string name="RecoveryKeyWarningSheetContent__for_your_recovery_key_never_respond">for your recovery key. Never respond to a chat pretending to be Signal. Store your recovery key somewhere safe and never share it with anyone.</string>
<!-- Button dismissing the recovery key warning sheet after the user has copied their key -->
<string name="RecoveryKeyWarningSheetContent__got_it">Got it</string>
<string name="RecoveryKeyWarningSheetContent__got_it">เข้าใจแล้ว</string>
<!-- Button opening a help article with more information about recovery key safety -->
<string name="RecoveryKeyWarningSheetContent__learn_more">Learn more</string>
<string name="RecoveryKeyWarningSheetContent__learn_more">เรียนรู้เพิ่มเติม</string>
<!-- Inline link opening a help article with more information about recovery key safety -->
<string name="RecoveryKeyWarningSheetContent__learn_more_period">Learn more.</string>
<!-- Button declining to paste/share the recovery key, dismissing the warning sheet -->
<string name="RecoveryKeyWarningSheetContent__do_not_share_key">Do not share key</string>
<!-- Button indicating the user wants to proceed with sharing/pasting the recovery key, which shows a final confirmation -->
@@ -9750,7 +9752,7 @@
<!-- Bolded middle sentence of the final confirmation dialog body -->
<string name="RecoveryKeyWarningDialog__signal_will_never_message_you_for_your_recovery_key">Signal will never message you for your recovery key.</string>
<!-- Final sentence of the final confirmation dialog body -->
<string name="RecoveryKeyWarningDialog__never_respond_to_a_chat">Never respond to a chat pretending to be Signal.</string>
<string name="RecoveryKeyWarningDialog__never_respond_to_a_chat">โปรดอย่าตอบกลับแชทที่แอบอ้างว่าเป็น Signal</string>
<!-- Button confirming the user wants to paste the recovery key -->
<string name="RecoveryKeyWarningDialog__paste_key">Paste key</string>
<!-- Button declining to paste the recovery key -->
+7 -5
View File
@@ -3522,9 +3522,9 @@
<!-- Status update label used while the device is transmitting data over the network. Will take the form of "1.0 MB/2.0 MB" -->
<string name="TransferControlView__download_progress_s_s">%1$s/%2$s</string>
<!-- Accessibility description for the button that starts downloading an attachment -->
<string name="TransferControlView__download">Download</string>
<string name="TransferControlView__download">I-download</string>
<!-- Accessibility description for the button that starts uploading an attachment -->
<string name="TransferControlView__upload">Upload</string>
<string name="TransferControlView__upload">I-upload</string>
<!-- UnauthorizedReminder -->
<!-- Message shown in a reminder banner when the user\'s device is no longer registered -->
@@ -9938,9 +9938,11 @@
<!-- Remainder of the warning sheet body following the bolded lead-in RecoveryKeyWarningSheetContent__signal_will_never_message_you -->
<string name="RecoveryKeyWarningSheetContent__for_your_recovery_key_never_respond">for your recovery key. Never respond to a chat pretending to be Signal. Store your recovery key somewhere safe and never share it with anyone.</string>
<!-- Button dismissing the recovery key warning sheet after the user has copied their key -->
<string name="RecoveryKeyWarningSheetContent__got_it">Got it</string>
<string name="RecoveryKeyWarningSheetContent__got_it">OK</string>
<!-- Button opening a help article with more information about recovery key safety -->
<string name="RecoveryKeyWarningSheetContent__learn_more">Learn more</string>
<string name="RecoveryKeyWarningSheetContent__learn_more">Matuto pa</string>
<!-- Inline link opening a help article with more information about recovery key safety -->
<string name="RecoveryKeyWarningSheetContent__learn_more_period">Learn more.</string>
<!-- Button declining to paste/share the recovery key, dismissing the warning sheet -->
<string name="RecoveryKeyWarningSheetContent__do_not_share_key">Do not share key</string>
<!-- Button indicating the user wants to proceed with sharing/pasting the recovery key, which shows a final confirmation -->
@@ -9953,7 +9955,7 @@
<!-- Bolded middle sentence of the final confirmation dialog body -->
<string name="RecoveryKeyWarningDialog__signal_will_never_message_you_for_your_recovery_key">Signal will never message you for your recovery key.</string>
<!-- Final sentence of the final confirmation dialog body -->
<string name="RecoveryKeyWarningDialog__never_respond_to_a_chat">Never respond to a chat pretending to be Signal.</string>
<string name="RecoveryKeyWarningDialog__never_respond_to_a_chat">Huwag mag-reply sa chats na nagpapanggap na Signal o Signal Support.</string>
<!-- Button confirming the user wants to paste the recovery key -->
<string name="RecoveryKeyWarningDialog__paste_key">Paste key</string>
<!-- Button declining to paste the recovery key -->
+8 -6
View File
@@ -3522,9 +3522,9 @@
<!-- Status update label used while the device is transmitting data over the network. Will take the form of "1.0 MB/2.0 MB" -->
<string name="TransferControlView__download_progress_s_s">%1$s/%2$s</string>
<!-- Accessibility description for the button that starts downloading an attachment -->
<string name="TransferControlView__download">Download</string>
<string name="TransferControlView__download">İndir</string>
<!-- Accessibility description for the button that starts uploading an attachment -->
<string name="TransferControlView__upload">Upload</string>
<string name="TransferControlView__upload">Yükle</string>
<!-- UnauthorizedReminder -->
<!-- Message shown in a reminder banner when the user\'s device is no longer registered -->
@@ -9932,15 +9932,17 @@
<string name="SafetyTipsBottomSheet__open_account_settings">Hesap ayarlarını</string>
<!-- Title of a warning sheet shown when the user copies or pastes their recovery key, urging them not to share it -->
<string name="RecoveryKeyWarningSheetContent__do_not_share_your_recovery_key">Do not share your recovery key</string>
<string name="RecoveryKeyWarningSheetContent__do_not_share_your_recovery_key">Kurtarma Anahtarını Paylaşma</string>
<!-- Bolded lead-in to the warning sheet body; combined with RecoveryKeyWarningSheetContent__for_your_recovery_key_never_respond to form a full sentence -->
<string name="RecoveryKeyWarningSheetContent__signal_will_never_message_you">Signal will never message you</string>
<!-- Remainder of the warning sheet body following the bolded lead-in RecoveryKeyWarningSheetContent__signal_will_never_message_you -->
<string name="RecoveryKeyWarningSheetContent__for_your_recovery_key_never_respond">for your recovery key. Never respond to a chat pretending to be Signal. Store your recovery key somewhere safe and never share it with anyone.</string>
<!-- Button dismissing the recovery key warning sheet after the user has copied their key -->
<string name="RecoveryKeyWarningSheetContent__got_it">Got it</string>
<string name="RecoveryKeyWarningSheetContent__got_it">Anladım</string>
<!-- Button opening a help article with more information about recovery key safety -->
<string name="RecoveryKeyWarningSheetContent__learn_more">Learn more</string>
<string name="RecoveryKeyWarningSheetContent__learn_more">Daha fazlasını öğren</string>
<!-- Inline link opening a help article with more information about recovery key safety -->
<string name="RecoveryKeyWarningSheetContent__learn_more_period">Learn more.</string>
<!-- Button declining to paste/share the recovery key, dismissing the warning sheet -->
<string name="RecoveryKeyWarningSheetContent__do_not_share_key">Do not share key</string>
<!-- Button indicating the user wants to proceed with sharing/pasting the recovery key, which shows a final confirmation -->
@@ -9953,7 +9955,7 @@
<!-- Bolded middle sentence of the final confirmation dialog body -->
<string name="RecoveryKeyWarningDialog__signal_will_never_message_you_for_your_recovery_key">Signal will never message you for your recovery key.</string>
<!-- Final sentence of the final confirmation dialog body -->
<string name="RecoveryKeyWarningDialog__never_respond_to_a_chat">Never respond to a chat pretending to be Signal.</string>
<string name="RecoveryKeyWarningDialog__never_respond_to_a_chat">Signal olduğunu iddia eden bir sohbeti hiçbir zaman yanıtlama.</string>
<!-- Button confirming the user wants to paste the recovery key -->
<string name="RecoveryKeyWarningDialog__paste_key">Paste key</string>
<!-- Button declining to paste the recovery key -->
+8 -6
View File
@@ -3416,9 +3416,9 @@
<!-- Status update label used while the device is transmitting data over the network. Will take the form of "1.0 MB/2.0 MB" -->
<string name="TransferControlView__download_progress_s_s">%1$s/%2$s</string>
<!-- Accessibility description for the button that starts downloading an attachment -->
<string name="TransferControlView__download">Download</string>
<string name="TransferControlView__download">چۈشۈر</string>
<!-- Accessibility description for the button that starts uploading an attachment -->
<string name="TransferControlView__upload">Upload</string>
<string name="TransferControlView__upload">يۈكلەش</string>
<!-- UnauthorizedReminder -->
<!-- Message shown in a reminder banner when the user\'s device is no longer registered -->
@@ -9729,15 +9729,17 @@
<string name="SafetyTipsBottomSheet__open_account_settings">ھېسابات تەڭشەكلىرىنى ئېچىڭ</string>
<!-- Title of a warning sheet shown when the user copies or pastes their recovery key, urging them not to share it -->
<string name="RecoveryKeyWarningSheetContent__do_not_share_your_recovery_key">Do not share your recovery key</string>
<string name="RecoveryKeyWarningSheetContent__do_not_share_your_recovery_key">ئەسلىگە كەلتۈرۈش ئاچقۇچىڭىزنى باشقىلار بىلەن ئورتاقلاشماڭ</string>
<!-- Bolded lead-in to the warning sheet body; combined with RecoveryKeyWarningSheetContent__for_your_recovery_key_never_respond to form a full sentence -->
<string name="RecoveryKeyWarningSheetContent__signal_will_never_message_you">Signal will never message you</string>
<!-- Remainder of the warning sheet body following the bolded lead-in RecoveryKeyWarningSheetContent__signal_will_never_message_you -->
<string name="RecoveryKeyWarningSheetContent__for_your_recovery_key_never_respond">for your recovery key. Never respond to a chat pretending to be Signal. Store your recovery key somewhere safe and never share it with anyone.</string>
<!-- Button dismissing the recovery key warning sheet after the user has copied their key -->
<string name="RecoveryKeyWarningSheetContent__got_it">Got it</string>
<string name="RecoveryKeyWarningSheetContent__got_it">بىلدىم</string>
<!-- Button opening a help article with more information about recovery key safety -->
<string name="RecoveryKeyWarningSheetContent__learn_more">Learn more</string>
<string name="RecoveryKeyWarningSheetContent__learn_more">تەپسىلاتى</string>
<!-- Inline link opening a help article with more information about recovery key safety -->
<string name="RecoveryKeyWarningSheetContent__learn_more_period">Learn more.</string>
<!-- Button declining to paste/share the recovery key, dismissing the warning sheet -->
<string name="RecoveryKeyWarningSheetContent__do_not_share_key">Do not share key</string>
<!-- Button indicating the user wants to proceed with sharing/pasting the recovery key, which shows a final confirmation -->
@@ -9750,7 +9752,7 @@
<!-- Bolded middle sentence of the final confirmation dialog body -->
<string name="RecoveryKeyWarningDialog__signal_will_never_message_you_for_your_recovery_key">Signal will never message you for your recovery key.</string>
<!-- Final sentence of the final confirmation dialog body -->
<string name="RecoveryKeyWarningDialog__never_respond_to_a_chat">Never respond to a chat pretending to be Signal.</string>
<string name="RecoveryKeyWarningDialog__never_respond_to_a_chat">ھەرگىز Signal دىن كەلگەن قىياپەتكە كىرىۋالغان ئۇچۇرغا جاۋاپ قايتۇرماڭ.</string>
<!-- Button confirming the user wants to paste the recovery key -->
<string name="RecoveryKeyWarningDialog__paste_key">Paste key</string>
<!-- Button declining to paste the recovery key -->
+8 -6
View File
@@ -3734,9 +3734,9 @@
<!-- Status update label used while the device is transmitting data over the network. Will take the form of "1.0 MB/2.0 MB" -->
<string name="TransferControlView__download_progress_s_s">%1$s/%2$s</string>
<!-- Accessibility description for the button that starts downloading an attachment -->
<string name="TransferControlView__download">Download</string>
<string name="TransferControlView__download">Завантажити</string>
<!-- Accessibility description for the button that starts uploading an attachment -->
<string name="TransferControlView__upload">Upload</string>
<string name="TransferControlView__upload">Вивантажити</string>
<!-- UnauthorizedReminder -->
<!-- Message shown in a reminder banner when the user\'s device is no longer registered -->
@@ -10338,15 +10338,17 @@
<string name="SafetyTipsBottomSheet__open_account_settings">До налаштувань акаунту</string>
<!-- Title of a warning sheet shown when the user copies or pastes their recovery key, urging them not to share it -->
<string name="RecoveryKeyWarningSheetContent__do_not_share_your_recovery_key">Do not share your recovery key</string>
<string name="RecoveryKeyWarningSheetContent__do_not_share_your_recovery_key">Нікому не повідомляйте свій ключ відновлення</string>
<!-- Bolded lead-in to the warning sheet body; combined with RecoveryKeyWarningSheetContent__for_your_recovery_key_never_respond to form a full sentence -->
<string name="RecoveryKeyWarningSheetContent__signal_will_never_message_you">Signal will never message you</string>
<!-- Remainder of the warning sheet body following the bolded lead-in RecoveryKeyWarningSheetContent__signal_will_never_message_you -->
<string name="RecoveryKeyWarningSheetContent__for_your_recovery_key_never_respond">for your recovery key. Never respond to a chat pretending to be Signal. Store your recovery key somewhere safe and never share it with anyone.</string>
<!-- Button dismissing the recovery key warning sheet after the user has copied their key -->
<string name="RecoveryKeyWarningSheetContent__got_it">Got it</string>
<string name="RecoveryKeyWarningSheetContent__got_it">Зрозуміло</string>
<!-- Button opening a help article with more information about recovery key safety -->
<string name="RecoveryKeyWarningSheetContent__learn_more">Learn more</string>
<string name="RecoveryKeyWarningSheetContent__learn_more">Докладніше</string>
<!-- Inline link opening a help article with more information about recovery key safety -->
<string name="RecoveryKeyWarningSheetContent__learn_more_period">Learn more.</string>
<!-- Button declining to paste/share the recovery key, dismissing the warning sheet -->
<string name="RecoveryKeyWarningSheetContent__do_not_share_key">Do not share key</string>
<!-- Button indicating the user wants to proceed with sharing/pasting the recovery key, which shows a final confirmation -->
@@ -10359,7 +10361,7 @@
<!-- Bolded middle sentence of the final confirmation dialog body -->
<string name="RecoveryKeyWarningDialog__signal_will_never_message_you_for_your_recovery_key">Signal will never message you for your recovery key.</string>
<!-- Final sentence of the final confirmation dialog body -->
<string name="RecoveryKeyWarningDialog__never_respond_to_a_chat">Never respond to a chat pretending to be Signal.</string>
<string name="RecoveryKeyWarningDialog__never_respond_to_a_chat">Ніколи не відповідайте на повідомлення нібито від Signal.</string>
<!-- Button confirming the user wants to paste the recovery key -->
<string name="RecoveryKeyWarningDialog__paste_key">Paste key</string>
<!-- Button declining to paste the recovery key -->
+8 -6
View File
@@ -3522,9 +3522,9 @@
<!-- Status update label used while the device is transmitting data over the network. Will take the form of "1.0 MB/2.0 MB" -->
<string name="TransferControlView__download_progress_s_s">%1$s/%2$s</string>
<!-- Accessibility description for the button that starts downloading an attachment -->
<string name="TransferControlView__download">Download</string>
<string name="TransferControlView__download">ڈاؤن لوڈ کریں</string>
<!-- Accessibility description for the button that starts uploading an attachment -->
<string name="TransferControlView__upload">Upload</string>
<string name="TransferControlView__upload">اپ لوڈ کریں</string>
<!-- UnauthorizedReminder -->
<!-- Message shown in a reminder banner when the user\'s device is no longer registered -->
@@ -9932,15 +9932,17 @@
<string name="SafetyTipsBottomSheet__open_account_settings">اکاؤنٹ کی سیٹنگز کھولیں</string>
<!-- Title of a warning sheet shown when the user copies or pastes their recovery key, urging them not to share it -->
<string name="RecoveryKeyWarningSheetContent__do_not_share_your_recovery_key">Do not share your recovery key</string>
<string name="RecoveryKeyWarningSheetContent__do_not_share_your_recovery_key">اپنی بحالی کی کیی شیئر مت کریں</string>
<!-- Bolded lead-in to the warning sheet body; combined with RecoveryKeyWarningSheetContent__for_your_recovery_key_never_respond to form a full sentence -->
<string name="RecoveryKeyWarningSheetContent__signal_will_never_message_you">Signal will never message you</string>
<!-- Remainder of the warning sheet body following the bolded lead-in RecoveryKeyWarningSheetContent__signal_will_never_message_you -->
<string name="RecoveryKeyWarningSheetContent__for_your_recovery_key_never_respond">for your recovery key. Never respond to a chat pretending to be Signal. Store your recovery key somewhere safe and never share it with anyone.</string>
<!-- Button dismissing the recovery key warning sheet after the user has copied their key -->
<string name="RecoveryKeyWarningSheetContent__got_it">Got it</string>
<string name="RecoveryKeyWarningSheetContent__got_it">سمجھ گیا</string>
<!-- Button opening a help article with more information about recovery key safety -->
<string name="RecoveryKeyWarningSheetContent__learn_more">Learn more</string>
<string name="RecoveryKeyWarningSheetContent__learn_more">مزید جانیں</string>
<!-- Inline link opening a help article with more information about recovery key safety -->
<string name="RecoveryKeyWarningSheetContent__learn_more_period">Learn more.</string>
<!-- Button declining to paste/share the recovery key, dismissing the warning sheet -->
<string name="RecoveryKeyWarningSheetContent__do_not_share_key">Do not share key</string>
<!-- Button indicating the user wants to proceed with sharing/pasting the recovery key, which shows a final confirmation -->
@@ -9953,7 +9955,7 @@
<!-- Bolded middle sentence of the final confirmation dialog body -->
<string name="RecoveryKeyWarningDialog__signal_will_never_message_you_for_your_recovery_key">Signal will never message you for your recovery key.</string>
<!-- Final sentence of the final confirmation dialog body -->
<string name="RecoveryKeyWarningDialog__never_respond_to_a_chat">Never respond to a chat pretending to be Signal.</string>
<string name="RecoveryKeyWarningDialog__never_respond_to_a_chat">ایسی چیٹ کا کبھی جواب نہ دیں جو Signal بننے کا ڈرامہ کر رہی ہو۔</string>
<!-- Button confirming the user wants to paste the recovery key -->
<string name="RecoveryKeyWarningDialog__paste_key">Paste key</string>
<!-- Button declining to paste the recovery key -->
+8 -6
View File
@@ -3416,9 +3416,9 @@
<!-- Status update label used while the device is transmitting data over the network. Will take the form of "1.0 MB/2.0 MB" -->
<string name="TransferControlView__download_progress_s_s">%1$s/%2$s</string>
<!-- Accessibility description for the button that starts downloading an attachment -->
<string name="TransferControlView__download">Download</string>
<string name="TransferControlView__download">Tải xuống</string>
<!-- Accessibility description for the button that starts uploading an attachment -->
<string name="TransferControlView__upload">Upload</string>
<string name="TransferControlView__upload">Tải lên</string>
<!-- UnauthorizedReminder -->
<!-- Message shown in a reminder banner when the user\'s device is no longer registered -->
@@ -9729,15 +9729,17 @@
<string name="SafetyTipsBottomSheet__open_account_settings">Mở cài đặt tài khoản</string>
<!-- Title of a warning sheet shown when the user copies or pastes their recovery key, urging them not to share it -->
<string name="RecoveryKeyWarningSheetContent__do_not_share_your_recovery_key">Do not share your recovery key</string>
<string name="RecoveryKeyWarningSheetContent__do_not_share_your_recovery_key">Không chia sẻ mã khóa khôi phục của bạn</string>
<!-- Bolded lead-in to the warning sheet body; combined with RecoveryKeyWarningSheetContent__for_your_recovery_key_never_respond to form a full sentence -->
<string name="RecoveryKeyWarningSheetContent__signal_will_never_message_you">Signal will never message you</string>
<!-- Remainder of the warning sheet body following the bolded lead-in RecoveryKeyWarningSheetContent__signal_will_never_message_you -->
<string name="RecoveryKeyWarningSheetContent__for_your_recovery_key_never_respond">for your recovery key. Never respond to a chat pretending to be Signal. Store your recovery key somewhere safe and never share it with anyone.</string>
<!-- Button dismissing the recovery key warning sheet after the user has copied their key -->
<string name="RecoveryKeyWarningSheetContent__got_it">Got it</string>
<string name="RecoveryKeyWarningSheetContent__got_it">Đã hiểu</string>
<!-- Button opening a help article with more information about recovery key safety -->
<string name="RecoveryKeyWarningSheetContent__learn_more">Learn more</string>
<string name="RecoveryKeyWarningSheetContent__learn_more">Tìm hiểu thêm</string>
<!-- Inline link opening a help article with more information about recovery key safety -->
<string name="RecoveryKeyWarningSheetContent__learn_more_period">Learn more.</string>
<!-- Button declining to paste/share the recovery key, dismissing the warning sheet -->
<string name="RecoveryKeyWarningSheetContent__do_not_share_key">Do not share key</string>
<!-- Button indicating the user wants to proceed with sharing/pasting the recovery key, which shows a final confirmation -->
@@ -9750,7 +9752,7 @@
<!-- Bolded middle sentence of the final confirmation dialog body -->
<string name="RecoveryKeyWarningDialog__signal_will_never_message_you_for_your_recovery_key">Signal will never message you for your recovery key.</string>
<!-- Final sentence of the final confirmation dialog body -->
<string name="RecoveryKeyWarningDialog__never_respond_to_a_chat">Never respond to a chat pretending to be Signal.</string>
<string name="RecoveryKeyWarningDialog__never_respond_to_a_chat">Đừng bao giờ trả lời tin nhắn giả mạo Signal.</string>
<!-- Button confirming the user wants to paste the recovery key -->
<string name="RecoveryKeyWarningDialog__paste_key">Paste key</string>
<!-- Button declining to paste the recovery key -->
+8 -6
View File
@@ -3416,9 +3416,9 @@
<!-- Status update label used while the device is transmitting data over the network. Will take the form of "1.0 MB/2.0 MB" -->
<string name="TransferControlView__download_progress_s_s">%1$s/%2$s</string>
<!-- Accessibility description for the button that starts downloading an attachment -->
<string name="TransferControlView__download">Download</string>
<string name="TransferControlView__download">下載</string>
<!-- Accessibility description for the button that starts uploading an attachment -->
<string name="TransferControlView__upload">Upload</string>
<string name="TransferControlView__upload">上載</string>
<!-- UnauthorizedReminder -->
<!-- Message shown in a reminder banner when the user\'s device is no longer registered -->
@@ -9729,15 +9729,17 @@
<string name="SafetyTipsBottomSheet__open_account_settings">打開帳戶設定</string>
<!-- Title of a warning sheet shown when the user copies or pastes their recovery key, urging them not to share it -->
<string name="RecoveryKeyWarningSheetContent__do_not_share_your_recovery_key">Do not share your recovery key</string>
<string name="RecoveryKeyWarningSheetContent__do_not_share_your_recovery_key">唔好分享你嘅恢復金鑰</string>
<!-- Bolded lead-in to the warning sheet body; combined with RecoveryKeyWarningSheetContent__for_your_recovery_key_never_respond to form a full sentence -->
<string name="RecoveryKeyWarningSheetContent__signal_will_never_message_you">Signal will never message you</string>
<!-- Remainder of the warning sheet body following the bolded lead-in RecoveryKeyWarningSheetContent__signal_will_never_message_you -->
<string name="RecoveryKeyWarningSheetContent__for_your_recovery_key_never_respond">for your recovery key. Never respond to a chat pretending to be Signal. Store your recovery key somewhere safe and never share it with anyone.</string>
<!-- Button dismissing the recovery key warning sheet after the user has copied their key -->
<string name="RecoveryKeyWarningSheetContent__got_it">Got it</string>
<string name="RecoveryKeyWarningSheetContent__got_it">明白</string>
<!-- Button opening a help article with more information about recovery key safety -->
<string name="RecoveryKeyWarningSheetContent__learn_more">Learn more</string>
<string name="RecoveryKeyWarningSheetContent__learn_more">了解詳情</string>
<!-- Inline link opening a help article with more information about recovery key safety -->
<string name="RecoveryKeyWarningSheetContent__learn_more_period">Learn more.</string>
<!-- Button declining to paste/share the recovery key, dismissing the warning sheet -->
<string name="RecoveryKeyWarningSheetContent__do_not_share_key">Do not share key</string>
<!-- Button indicating the user wants to proceed with sharing/pasting the recovery key, which shows a final confirmation -->
@@ -9750,7 +9752,7 @@
<!-- Bolded middle sentence of the final confirmation dialog body -->
<string name="RecoveryKeyWarningDialog__signal_will_never_message_you_for_your_recovery_key">Signal will never message you for your recovery key.</string>
<!-- Final sentence of the final confirmation dialog body -->
<string name="RecoveryKeyWarningDialog__never_respond_to_a_chat">Never respond to a chat pretending to be Signal.</string>
<string name="RecoveryKeyWarningDialog__never_respond_to_a_chat">千祈唔好回覆任何假扮 Signal 嘅聊天訊息。</string>
<!-- Button confirming the user wants to paste the recovery key -->
<string name="RecoveryKeyWarningDialog__paste_key">Paste key</string>
<!-- Button declining to paste the recovery key -->
+8 -6
View File
@@ -3416,9 +3416,9 @@
<!-- Status update label used while the device is transmitting data over the network. Will take the form of "1.0 MB/2.0 MB" -->
<string name="TransferControlView__download_progress_s_s">%1$s/%2$s</string>
<!-- Accessibility description for the button that starts downloading an attachment -->
<string name="TransferControlView__download">Download</string>
<string name="TransferControlView__download">下载</string>
<!-- Accessibility description for the button that starts uploading an attachment -->
<string name="TransferControlView__upload">Upload</string>
<string name="TransferControlView__upload">上传</string>
<!-- UnauthorizedReminder -->
<!-- Message shown in a reminder banner when the user\'s device is no longer registered -->
@@ -9729,15 +9729,17 @@
<string name="SafetyTipsBottomSheet__open_account_settings">打开账户设置</string>
<!-- Title of a warning sheet shown when the user copies or pastes their recovery key, urging them not to share it -->
<string name="RecoveryKeyWarningSheetContent__do_not_share_your_recovery_key">Do not share your recovery key</string>
<string name="RecoveryKeyWarningSheetContent__do_not_share_your_recovery_key">请勿分享您的恢复密钥</string>
<!-- Bolded lead-in to the warning sheet body; combined with RecoveryKeyWarningSheetContent__for_your_recovery_key_never_respond to form a full sentence -->
<string name="RecoveryKeyWarningSheetContent__signal_will_never_message_you">Signal will never message you</string>
<!-- Remainder of the warning sheet body following the bolded lead-in RecoveryKeyWarningSheetContent__signal_will_never_message_you -->
<string name="RecoveryKeyWarningSheetContent__for_your_recovery_key_never_respond">for your recovery key. Never respond to a chat pretending to be Signal. Store your recovery key somewhere safe and never share it with anyone.</string>
<!-- Button dismissing the recovery key warning sheet after the user has copied their key -->
<string name="RecoveryKeyWarningSheetContent__got_it">Got it</string>
<string name="RecoveryKeyWarningSheetContent__got_it">知道了</string>
<!-- Button opening a help article with more information about recovery key safety -->
<string name="RecoveryKeyWarningSheetContent__learn_more">Learn more</string>
<string name="RecoveryKeyWarningSheetContent__learn_more">了解详情</string>
<!-- Inline link opening a help article with more information about recovery key safety -->
<string name="RecoveryKeyWarningSheetContent__learn_more_period">Learn more.</string>
<!-- Button declining to paste/share the recovery key, dismissing the warning sheet -->
<string name="RecoveryKeyWarningSheetContent__do_not_share_key">Do not share key</string>
<!-- Button indicating the user wants to proceed with sharing/pasting the recovery key, which shows a final confirmation -->
@@ -9750,7 +9752,7 @@
<!-- Bolded middle sentence of the final confirmation dialog body -->
<string name="RecoveryKeyWarningDialog__signal_will_never_message_you_for_your_recovery_key">Signal will never message you for your recovery key.</string>
<!-- Final sentence of the final confirmation dialog body -->
<string name="RecoveryKeyWarningDialog__never_respond_to_a_chat">Never respond to a chat pretending to be Signal.</string>
<string name="RecoveryKeyWarningDialog__never_respond_to_a_chat">请勿回复冒充 Signal 的聊天。</string>
<!-- Button confirming the user wants to paste the recovery key -->
<string name="RecoveryKeyWarningDialog__paste_key">Paste key</string>
<!-- Button declining to paste the recovery key -->
+8 -6
View File
@@ -3416,9 +3416,9 @@
<!-- Status update label used while the device is transmitting data over the network. Will take the form of "1.0 MB/2.0 MB" -->
<string name="TransferControlView__download_progress_s_s">%1$s/%2$s</string>
<!-- Accessibility description for the button that starts downloading an attachment -->
<string name="TransferControlView__download">Download</string>
<string name="TransferControlView__download">下載</string>
<!-- Accessibility description for the button that starts uploading an attachment -->
<string name="TransferControlView__upload">Upload</string>
<string name="TransferControlView__upload">上載</string>
<!-- UnauthorizedReminder -->
<!-- Message shown in a reminder banner when the user\'s device is no longer registered -->
@@ -9729,15 +9729,17 @@
<string name="SafetyTipsBottomSheet__open_account_settings">開啟帳戶設定</string>
<!-- Title of a warning sheet shown when the user copies or pastes their recovery key, urging them not to share it -->
<string name="RecoveryKeyWarningSheetContent__do_not_share_your_recovery_key">Do not share your recovery key</string>
<string name="RecoveryKeyWarningSheetContent__do_not_share_your_recovery_key">切勿分享你的恢復金鑰</string>
<!-- Bolded lead-in to the warning sheet body; combined with RecoveryKeyWarningSheetContent__for_your_recovery_key_never_respond to form a full sentence -->
<string name="RecoveryKeyWarningSheetContent__signal_will_never_message_you">Signal will never message you</string>
<!-- Remainder of the warning sheet body following the bolded lead-in RecoveryKeyWarningSheetContent__signal_will_never_message_you -->
<string name="RecoveryKeyWarningSheetContent__for_your_recovery_key_never_respond">for your recovery key. Never respond to a chat pretending to be Signal. Store your recovery key somewhere safe and never share it with anyone.</string>
<!-- Button dismissing the recovery key warning sheet after the user has copied their key -->
<string name="RecoveryKeyWarningSheetContent__got_it">Got it</string>
<string name="RecoveryKeyWarningSheetContent__got_it">我知道了</string>
<!-- Button opening a help article with more information about recovery key safety -->
<string name="RecoveryKeyWarningSheetContent__learn_more">Learn more</string>
<string name="RecoveryKeyWarningSheetContent__learn_more">了解更多</string>
<!-- Inline link opening a help article with more information about recovery key safety -->
<string name="RecoveryKeyWarningSheetContent__learn_more_period">Learn more.</string>
<!-- Button declining to paste/share the recovery key, dismissing the warning sheet -->
<string name="RecoveryKeyWarningSheetContent__do_not_share_key">Do not share key</string>
<!-- Button indicating the user wants to proceed with sharing/pasting the recovery key, which shows a final confirmation -->
@@ -9750,7 +9752,7 @@
<!-- Bolded middle sentence of the final confirmation dialog body -->
<string name="RecoveryKeyWarningDialog__signal_will_never_message_you_for_your_recovery_key">Signal will never message you for your recovery key.</string>
<!-- Final sentence of the final confirmation dialog body -->
<string name="RecoveryKeyWarningDialog__never_respond_to_a_chat">Never respond to a chat pretending to be Signal.</string>
<string name="RecoveryKeyWarningDialog__never_respond_to_a_chat">切勿回覆任何假冒 Signal 的聊天訊息。</string>
<!-- Button confirming the user wants to paste the recovery key -->
<string name="RecoveryKeyWarningDialog__paste_key">Paste key</string>
<!-- Button declining to paste the recovery key -->
+8 -6
View File
@@ -3416,9 +3416,9 @@
<!-- Status update label used while the device is transmitting data over the network. Will take the form of "1.0 MB/2.0 MB" -->
<string name="TransferControlView__download_progress_s_s">%1$s/%2$s</string>
<!-- Accessibility description for the button that starts downloading an attachment -->
<string name="TransferControlView__download">Download</string>
<string name="TransferControlView__download">下載</string>
<!-- Accessibility description for the button that starts uploading an attachment -->
<string name="TransferControlView__upload">Upload</string>
<string name="TransferControlView__upload">上傳</string>
<!-- UnauthorizedReminder -->
<!-- Message shown in a reminder banner when the user\'s device is no longer registered -->
@@ -9729,15 +9729,17 @@
<string name="SafetyTipsBottomSheet__open_account_settings">開啟帳戶設定</string>
<!-- Title of a warning sheet shown when the user copies or pastes their recovery key, urging them not to share it -->
<string name="RecoveryKeyWarningSheetContent__do_not_share_your_recovery_key">Do not share your recovery key</string>
<string name="RecoveryKeyWarningSheetContent__do_not_share_your_recovery_key">切勿分享你的恢復金鑰</string>
<!-- Bolded lead-in to the warning sheet body; combined with RecoveryKeyWarningSheetContent__for_your_recovery_key_never_respond to form a full sentence -->
<string name="RecoveryKeyWarningSheetContent__signal_will_never_message_you">Signal will never message you</string>
<!-- Remainder of the warning sheet body following the bolded lead-in RecoveryKeyWarningSheetContent__signal_will_never_message_you -->
<string name="RecoveryKeyWarningSheetContent__for_your_recovery_key_never_respond">for your recovery key. Never respond to a chat pretending to be Signal. Store your recovery key somewhere safe and never share it with anyone.</string>
<!-- Button dismissing the recovery key warning sheet after the user has copied their key -->
<string name="RecoveryKeyWarningSheetContent__got_it">Got it</string>
<string name="RecoveryKeyWarningSheetContent__got_it">我知道了</string>
<!-- Button opening a help article with more information about recovery key safety -->
<string name="RecoveryKeyWarningSheetContent__learn_more">Learn more</string>
<string name="RecoveryKeyWarningSheetContent__learn_more">了解更多</string>
<!-- Inline link opening a help article with more information about recovery key safety -->
<string name="RecoveryKeyWarningSheetContent__learn_more_period">Learn more.</string>
<!-- Button declining to paste/share the recovery key, dismissing the warning sheet -->
<string name="RecoveryKeyWarningSheetContent__do_not_share_key">Do not share key</string>
<!-- Button indicating the user wants to proceed with sharing/pasting the recovery key, which shows a final confirmation -->
@@ -9750,7 +9752,7 @@
<!-- Bolded middle sentence of the final confirmation dialog body -->
<string name="RecoveryKeyWarningDialog__signal_will_never_message_you_for_your_recovery_key">Signal will never message you for your recovery key.</string>
<!-- Final sentence of the final confirmation dialog body -->
<string name="RecoveryKeyWarningDialog__never_respond_to_a_chat">Never respond to a chat pretending to be Signal.</string>
<string name="RecoveryKeyWarningDialog__never_respond_to_a_chat">切勿回覆任何假冒 Signal 的聊天訊息。</string>
<!-- Button confirming the user wants to paste the recovery key -->
<string name="RecoveryKeyWarningDialog__paste_key">Paste key</string>
<!-- Button declining to paste the recovery key -->
+2
View File
@@ -9946,6 +9946,8 @@
<string name="RecoveryKeyWarningSheetContent__got_it">Got it</string>
<!-- Button opening a help article with more information about recovery key safety -->
<string name="RecoveryKeyWarningSheetContent__learn_more">Learn more</string>
<!-- Inline link opening a help article with more information about recovery key safety -->
<string name="RecoveryKeyWarningSheetContent__learn_more_period">Learn more.</string>
<!-- Button declining to paste/share the recovery key, dismissing the warning sheet -->
<string name="RecoveryKeyWarningSheetContent__do_not_share_key">Do not share key</string>
<!-- Button indicating the user wants to proceed with sharing/pasting the recovery key, which shows a final confirmation -->
+3 -3
View File
@@ -1,9 +1,9 @@
service_ips=new String[]{"13.248.212.111","76.223.92.165"}
storage_ips=new String[]{"142.250.68.211"}
cdn_ips=new String[]{"18.238.49.106","18.238.49.6","18.238.49.66","18.238.49.90"}
storage_ips=new String[]{"142.251.211.211"}
cdn_ips=new String[]{"18.160.18.106","18.160.18.114","18.160.18.42","18.160.18.45"}
cdn2_ips=new String[]{"104.18.10.47","104.18.11.47"}
cdn3_ips=new String[]{"104.18.10.47","104.18.11.47"}
sfu_ips=new String[]{"34.117.136.13"}
content_proxy_ips=new String[]{"107.178.250.75"}
svr2_ips=new String[]{"20.119.62.85"}
svr2_ips=new String[]{"20.9.45.98"}
cdsi_ips=new String[]{"40.122.45.194"}
@@ -402,83 +402,83 @@
<!-- Device transfer: Instructions screen -->
<string name="DeviceTransferInstructions__transfer_your_account">Transfer your account</string>
<string name="DeviceTransferInstructions__to_transfer_open_signal_on_your_old_android_device">To transfer your account, open Signal on your old Android device and select Transfer Account.</string>
<string name="DeviceTransferInstructions__continue">Continue</string>
<string name="DeviceTransferInstructions__continue">Gaan voort</string>
<!-- Device transfer: Setup screen -->
<string name="DeviceTransferSetup__preparing_to_connect">Preparing to connect to old Android device</string>
<string name="DeviceTransferSetup__preparing_to_connect">Besig om voor te berei om aan ou Android-toestel te verbind</string>
<string name="DeviceTransferSetup__take_a_moment_should_be_ready_soon">This might take a moment. Should be ready soon.</string>
<string name="DeviceTransferSetup__waiting_for_old_device">Waiting for your old device to connect…</string>
<string name="DeviceTransferSetup__verify_numbers_match">Verify the numbers match on both devices</string>
<string name="DeviceTransferSetup__numbers_match">Yes, the numbers match</string>
<string name="DeviceTransferSetup__numbers_do_not_match">The numbers do not match</string>
<string name="DeviceTransferSetup__numbers_do_not_match">Die nommers stem nie ooreen nie</string>
<string name="DeviceTransferSetup__waiting_for_other_to_verify">Waiting for your old device to verify…</string>
<string name="DeviceTransferSetup__location_permission_required">Signal needs the location permission to discover and connect with your old device.</string>
<string name="DeviceTransferSetup__grant_location_permission">Grant permission</string>
<string name="DeviceTransferSetup__location_services_required">Signal needs location services enabled to discover and connect with your old device.</string>
<string name="DeviceTransferSetup__turn_on_location_services">Turn on location services</string>
<string name="DeviceTransferSetup__turn_on_location_services">Skakel liggingsdienste aan</string>
<string name="DeviceTransferSetup__wifi_required">Signal needs Wi-Fi turned on to discover and connect with your old device.</string>
<string name="DeviceTransferSetup__turn_on_wifi">Turn on Wi-Fi</string>
<string name="DeviceTransferSetup__turn_on_wifi">Skakel Wi-Fi aan</string>
<string name="DeviceTransferSetup__wifi_direct_unavailable">Sorry, it appears your device does not support Wi-Fi Direct.</string>
<string name="DeviceTransferSetup__restore_a_backup">Restore a backup instead</string>
<string name="DeviceTransferSetup__unexpected_error_connecting">An unexpected error occurred while attempting to connect to your old device.</string>
<string name="DeviceTransferSetup__retry">Retry</string>
<string name="DeviceTransferSetup__retry">Probeer weer</string>
<string name="DeviceTransferSetup__unable_to_discover_old_device">Unable to discover your old device</string>
<string name="DeviceTransferSetup__troubleshooting_tips">• Make sure location permissions are granted.\n• Make sure Wi-Fi is on and no Wi-Fi Direct groups are remembered.\n• Try turning Wi-Fi off and on on both devices.\n• Make sure both devices are in transfer mode.</string>
<string name="DeviceTransferSetup__try_again">Try again</string>
<string name="DeviceTransferSetup__the_numbers_do_not_match">The numbers do not match</string>
<string name="DeviceTransferSetup__try_again">Probeer weer</string>
<string name="DeviceTransferSetup__the_numbers_do_not_match">Die nommers stem nie ooreen nie</string>
<string name="DeviceTransferSetup__if_numbers_dont_match_wrong_device">If the numbers on your devices do not match, it\'s possible you connected to the wrong device.</string>
<string name="DeviceTransferSetup__stop_transfer">Stop transfer</string>
<string name="DeviceTransferSetup__stop_transfer">Stop oordrag</string>
<!-- Device transfer: Progress screen -->
<string name="DeviceTransferProgress__transferring_data">Transferring data</string>
<string name="DeviceTransferProgress__d_messages_so_far">%1$d messages so far</string>
<string name="DeviceTransferProgress__unable_to_transfer">Unable to transfer</string>
<string name="DeviceTransferProgress__transferring_data">Besig om data oor te dra</string>
<string name="DeviceTransferProgress__d_messages_so_far">%1$d boodskappe tot dusver</string>
<string name="DeviceTransferProgress__unable_to_transfer">Kan nie oordra nie</string>
<string name="DeviceTransferProgress__cannot_transfer_from_newer_signal">Cannot transfer from a newer version of Signal.</string>
<string name="DeviceTransferProgress__failure_foreign_key">Some data could not be transferred due to a database constraint.</string>
<string name="DeviceTransferProgress__transfer_failed">The transfer failed. Please try again.</string>
<string name="DeviceTransferProgress__try_again">Try again</string>
<string name="DeviceTransferProgress__cancel">Cancel</string>
<string name="DeviceTransferProgress__stop_transfer">Stop transfer?</string>
<string name="DeviceTransferProgress__all_transfer_progress_will_be_lost">All transfer progress will be lost.</string>
<string name="DeviceTransferProgress__try_again">Probeer weer</string>
<string name="DeviceTransferProgress__cancel">Kanselleer</string>
<string name="DeviceTransferProgress__stop_transfer">Stop oordrag?</string>
<string name="DeviceTransferProgress__all_transfer_progress_will_be_lost">Alle vordering met oordrag sal verlore gaan.</string>
<!-- Device transfer: Complete screen -->
<string name="DeviceTransferComplete__transfer_complete">Transfer complete</string>
<string name="DeviceTransferComplete__transfer_complete">Oordrag voltooi</string>
<string name="DeviceTransferComplete__your_account_is_now_on_this_device">Your account is now on this device.</string>
<string name="DeviceTransferComplete__continue_registration">Continue</string>
<string name="DeviceTransferComplete__continue_registration">Gaan voort</string>
<!-- Create profile screen -->
<!-- Title displayed at the top of the create-profile screen during registration. -->
<string name="CreateProfileScreen__set_up_your_profile">Set up your profile</string>
<string name="CreateProfileScreen__set_up_your_profile">Stel jou profiel op</string>
<!-- Subtitle on create-profile screen explaining that the profile is end-to-end encrypted and visible to recipients. -->
<string name="CreateProfileScreen__your_profile_is_end_to_end_encrypted">Your profile and changes to it will be visible to people you message, contacts, and groups.</string>
<string name="CreateProfileScreen__your_profile_is_end_to_end_encrypted">Jou profiel en veranderinge sal sigbaar wees vir mense aan wie jy boodskappe stuur, vir jou kontakte en vir groepe.</string>
<!-- Label/hint for the first-name field, indicating it is required. -->
<string name="CreateProfileScreen__first_name_required">First name (required)</string>
<string name="CreateProfileScreen__first_name_required">Voornaam (vereis)</string>
<!-- Label/hint for the last-name field, indicating it is optional. -->
<string name="CreateProfileScreen__last_name_optional">Last name (optional)</string>
<string name="CreateProfileScreen__last_name_optional">Van (opsioneel)</string>
<!-- Action button text to advance from create-profile screen. -->
<string name="CreateProfileScreen__next">Next</string>
<string name="CreateProfileScreen__next">Volgende</string>
<!-- Content description for the avatar selection control. -->
<string name="CreateProfileScreen__set_avatar_description">Set avatar</string>
<string name="CreateProfileScreen__set_avatar_description">Stel foto op</string>
<!-- Phone number discoverability picker -->
<!-- Title row label shown on the create-profile screen pointing at the discoverability picker. -->
<string name="WhoCanSeeMyPhoneNumberFragment__who_can_find_me_by_number">Who can find me by number?</string>
<string name="WhoCanSeeMyPhoneNumberFragment__who_can_find_me_by_number">Wie kan my volgens my nommer vind?</string>
<!-- Description shown on the picker when "Everyone" is selected. -->
<string name="WhoCanSeeMyPhoneNumberFragment__anyone_who_has_your">Anyone who has your phone number will see you\'re on Signal and can start chats with you.</string>
<string name="WhoCanSeeMyPhoneNumberFragment__anyone_who_has_your">Enigiemand wat jou telefoonnommer het, sal sien jy is op Signal en kan met jou begin klets.</string>
<!-- Description shown on the picker when "Nobody" is selected. -->
<string name="WhoCanSeeMyPhoneNumberFragment__nobody_will_be_able">Nobody will be able to see you\'re on Signal unless you message them or have an existing chat with them.</string>
<string name="WhoCanSeeMyPhoneNumberFragment__nobody_will_be_able">Niemand sal kan sien jy is op Signal nie, tensy jy vir hulle \'n boodskap stuur of \'n bestaande klets met hulle het.</string>
<!-- Radio option label for "Everyone can find me by number". -->
<string name="PhoneNumberPrivacy_everyone">Everyone</string>
<string name="PhoneNumberPrivacy_everyone">Enigiemand</string>
<!-- Radio option label for "Nobody can find me by number". -->
<string name="PhoneNumberPrivacy_nobody">Nobody</string>
<string name="PhoneNumberPrivacy_nobody">Niemand</string>
<!-- Title for the confirmation dialog shown when the user selects "Nobody". -->
<string name="PhoneNumberPrivacySettingsFragment__nobody_can_find_me_warning_title">Are you sure?</string>
<string name="PhoneNumberPrivacySettingsFragment__nobody_can_find_me_warning_title">Is jy seker?</string>
<!-- Body for the confirmation dialog shown when the user selects "Nobody". -->
<string name="PhoneNumberPrivacySettingsFragment__nobody_can_find_me_warning_message">Setting \"Who can find me by number\" to \"Nobody\" will make it harder for people to find you on Signal.</string>
<string name="PhoneNumberPrivacySettingsFragment__nobody_can_find_me_warning_message">Deur \"Wie kan my volgens my nommer vind\" op \"Niemand\" te stel, sal dit vir mense moeiliker maak om jou op Signal te vind.</string>
<!-- Cancel button on the "Nobody" confirmation dialog. -->
<string name="PhoneNumberPrivacySettingsFragment__cancel">Cancel</string>
<string name="PhoneNumberPrivacySettingsFragment__cancel">Kanselleer</string>
<!-- Save button on the discoverability picker. -->
<string name="PhoneNumberDiscoverabilityScreen__save">Save</string>
<string name="PhoneNumberDiscoverabilityScreen__save">Stoor</string>
<!-- Content description for the back arrow on the discoverability picker. -->
<string name="PhoneNumberDiscoverabilityScreen__back">Back</string>
<string name="PhoneNumberDiscoverabilityScreen__back">Terug</string>
</resources>
@@ -410,83 +410,83 @@
<!-- Device transfer: Instructions screen -->
<string name="DeviceTransferInstructions__transfer_your_account">Transfer your account</string>
<string name="DeviceTransferInstructions__to_transfer_open_signal_on_your_old_android_device">To transfer your account, open Signal on your old Android device and select Transfer Account.</string>
<string name="DeviceTransferInstructions__continue">Continue</string>
<string name="DeviceTransferInstructions__continue">متابعة</string>
<!-- Device transfer: Setup screen -->
<string name="DeviceTransferSetup__preparing_to_connect">Preparing to connect to old Android device</string>
<string name="DeviceTransferSetup__preparing_to_connect">جارٍ إعداد الاتصال بجهاز أندرويد الجديد لديك</string>
<string name="DeviceTransferSetup__take_a_moment_should_be_ready_soon">This might take a moment. Should be ready soon.</string>
<string name="DeviceTransferSetup__waiting_for_old_device">Waiting for your old device to connect…</string>
<string name="DeviceTransferSetup__verify_numbers_match">Verify the numbers match on both devices</string>
<string name="DeviceTransferSetup__numbers_match">Yes, the numbers match</string>
<string name="DeviceTransferSetup__numbers_do_not_match">The numbers do not match</string>
<string name="DeviceTransferSetup__numbers_do_not_match">الأعداد غير متطابقة</string>
<string name="DeviceTransferSetup__waiting_for_other_to_verify">Waiting for your old device to verify…</string>
<string name="DeviceTransferSetup__location_permission_required">Signal needs the location permission to discover and connect with your old device.</string>
<string name="DeviceTransferSetup__grant_location_permission">Grant permission</string>
<string name="DeviceTransferSetup__location_services_required">Signal needs location services enabled to discover and connect with your old device.</string>
<string name="DeviceTransferSetup__turn_on_location_services">Turn on location services</string>
<string name="DeviceTransferSetup__turn_on_location_services">تشغيل خدمات الموقع</string>
<string name="DeviceTransferSetup__wifi_required">Signal needs Wi-Fi turned on to discover and connect with your old device.</string>
<string name="DeviceTransferSetup__turn_on_wifi">Turn on Wi-Fi</string>
<string name="DeviceTransferSetup__turn_on_wifi">تشغيل الواي فاي</string>
<string name="DeviceTransferSetup__wifi_direct_unavailable">Sorry, it appears your device does not support Wi-Fi Direct.</string>
<string name="DeviceTransferSetup__restore_a_backup">Restore a backup instead</string>
<string name="DeviceTransferSetup__unexpected_error_connecting">An unexpected error occurred while attempting to connect to your old device.</string>
<string name="DeviceTransferSetup__retry">Retry</string>
<string name="DeviceTransferSetup__retry">إعادة المُحاولة</string>
<string name="DeviceTransferSetup__unable_to_discover_old_device">Unable to discover your old device</string>
<string name="DeviceTransferSetup__troubleshooting_tips">• Make sure location permissions are granted.\n• Make sure Wi-Fi is on and no Wi-Fi Direct groups are remembered.\n• Try turning Wi-Fi off and on on both devices.\n• Make sure both devices are in transfer mode.</string>
<string name="DeviceTransferSetup__try_again">Try again</string>
<string name="DeviceTransferSetup__the_numbers_do_not_match">The numbers do not match</string>
<string name="DeviceTransferSetup__try_again">حاوِل مُجدَّدًا</string>
<string name="DeviceTransferSetup__the_numbers_do_not_match">الأعداد غير متطابقة</string>
<string name="DeviceTransferSetup__if_numbers_dont_match_wrong_device">If the numbers on your devices do not match, it\'s possible you connected to the wrong device.</string>
<string name="DeviceTransferSetup__stop_transfer">Stop transfer</string>
<string name="DeviceTransferSetup__stop_transfer">إيقاف النقل</string>
<!-- Device transfer: Progress screen -->
<string name="DeviceTransferProgress__transferring_data">Transferring data</string>
<string name="DeviceTransferProgress__d_messages_so_far">%1$d messages so far</string>
<string name="DeviceTransferProgress__unable_to_transfer">Unable to transfer</string>
<string name="DeviceTransferProgress__transferring_data">جارٍ نقل البيانات</string>
<string name="DeviceTransferProgress__d_messages_so_far">%1$d رسالة حتى الآن</string>
<string name="DeviceTransferProgress__unable_to_transfer">تعذَّر النقل</string>
<string name="DeviceTransferProgress__cannot_transfer_from_newer_signal">Cannot transfer from a newer version of Signal.</string>
<string name="DeviceTransferProgress__failure_foreign_key">Some data could not be transferred due to a database constraint.</string>
<string name="DeviceTransferProgress__transfer_failed">The transfer failed. Please try again.</string>
<string name="DeviceTransferProgress__try_again">Try again</string>
<string name="DeviceTransferProgress__cancel">Cancel</string>
<string name="DeviceTransferProgress__stop_transfer">Stop transfer?</string>
<string name="DeviceTransferProgress__all_transfer_progress_will_be_lost">All transfer progress will be lost.</string>
<string name="DeviceTransferProgress__try_again">حاوِل مُجدَّدًا</string>
<string name="DeviceTransferProgress__cancel">إلغاء</string>
<string name="DeviceTransferProgress__stop_transfer">إيقاف النقل ؟</string>
<string name="DeviceTransferProgress__all_transfer_progress_will_be_lost">سوف يضيع كل التقدُّم الذي تمَّ تحقيقه.</string>
<!-- Device transfer: Complete screen -->
<string name="DeviceTransferComplete__transfer_complete">Transfer complete</string>
<string name="DeviceTransferComplete__transfer_complete">اكتمَلَ النقل</string>
<string name="DeviceTransferComplete__your_account_is_now_on_this_device">Your account is now on this device.</string>
<string name="DeviceTransferComplete__continue_registration">Continue</string>
<string name="DeviceTransferComplete__continue_registration">متابعة</string>
<!-- Create profile screen -->
<!-- Title displayed at the top of the create-profile screen during registration. -->
<string name="CreateProfileScreen__set_up_your_profile">Set up your profile</string>
<string name="CreateProfileScreen__set_up_your_profile">إعداد الحساب الشخصي</string>
<!-- Subtitle on create-profile screen explaining that the profile is end-to-end encrypted and visible to recipients. -->
<string name="CreateProfileScreen__your_profile_is_end_to_end_encrypted">Your profile and changes to it will be visible to people you message, contacts, and groups.</string>
<string name="CreateProfileScreen__your_profile_is_end_to_end_encrypted">سيَظهر حسابك الشخصي والتغييرات التي طرأت عليه للأشخاص الذين تُراسلهم وجهات الاتصال والمجموعات لديك.</string>
<!-- Label/hint for the first-name field, indicating it is required. -->
<string name="CreateProfileScreen__first_name_required">First name (required)</string>
<string name="CreateProfileScreen__first_name_required">الاسم الأول (مطلوب)</string>
<!-- Label/hint for the last-name field, indicating it is optional. -->
<string name="CreateProfileScreen__last_name_optional">Last name (optional)</string>
<string name="CreateProfileScreen__last_name_optional">اسم العائلة (اختياري)</string>
<!-- Action button text to advance from create-profile screen. -->
<string name="CreateProfileScreen__next">Next</string>
<string name="CreateProfileScreen__next">التالي</string>
<!-- Content description for the avatar selection control. -->
<string name="CreateProfileScreen__set_avatar_description">Set avatar</string>
<string name="CreateProfileScreen__set_avatar_description">تعيين صورة رمزية</string>
<!-- Phone number discoverability picker -->
<!-- Title row label shown on the create-profile screen pointing at the discoverability picker. -->
<string name="WhoCanSeeMyPhoneNumberFragment__who_can_find_me_by_number">Who can find me by number?</string>
<string name="WhoCanSeeMyPhoneNumberFragment__who_can_find_me_by_number">مَن يُمكنه إيجادي من خلال رقمي؟</string>
<!-- Description shown on the picker when "Everyone" is selected. -->
<string name="WhoCanSeeMyPhoneNumberFragment__anyone_who_has_your">Anyone who has your phone number will see you\'re on Signal and can start chats with you.</string>
<string name="WhoCanSeeMyPhoneNumberFragment__anyone_who_has_your">أي شخص لديه رقم هاتفك سَيرى أنك متواجد على سيجنال وسَيتمكن من بدء دردشاتٍ معك.</string>
<!-- Description shown on the picker when "Nobody" is selected. -->
<string name="WhoCanSeeMyPhoneNumberFragment__nobody_will_be_able">Nobody will be able to see you\'re on Signal unless you message them or have an existing chat with them.</string>
<string name="WhoCanSeeMyPhoneNumberFragment__nobody_will_be_able">لن يتمكّن أي أحد من رؤيتك على سيجنال إلّا إذا راسلته أو كانت لديك دردشة موجودة معه.</string>
<!-- Radio option label for "Everyone can find me by number". -->
<string name="PhoneNumberPrivacy_everyone">Everyone</string>
<string name="PhoneNumberPrivacy_everyone">الجميع</string>
<!-- Radio option label for "Nobody can find me by number". -->
<string name="PhoneNumberPrivacy_nobody">Nobody</string>
<string name="PhoneNumberPrivacy_nobody">لا أحد</string>
<!-- Title for the confirmation dialog shown when the user selects "Nobody". -->
<string name="PhoneNumberPrivacySettingsFragment__nobody_can_find_me_warning_title">Are you sure?</string>
<string name="PhoneNumberPrivacySettingsFragment__nobody_can_find_me_warning_title">هل أنت متأكد؟</string>
<!-- Body for the confirmation dialog shown when the user selects "Nobody". -->
<string name="PhoneNumberPrivacySettingsFragment__nobody_can_find_me_warning_message">Setting \"Who can find me by number\" to \"Nobody\" will make it harder for people to find you on Signal.</string>
<string name="PhoneNumberPrivacySettingsFragment__nobody_can_find_me_warning_message">يمكن أن يُصعِّب اختيار \"لا أحد\" في إعداد \"مَن يُمكنه إيجادي من خلال رقمي\" على الناس إيجادك على سيجنال.</string>
<!-- Cancel button on the "Nobody" confirmation dialog. -->
<string name="PhoneNumberPrivacySettingsFragment__cancel">Cancel</string>
<string name="PhoneNumberPrivacySettingsFragment__cancel">إلغاء</string>
<!-- Save button on the discoverability picker. -->
<string name="PhoneNumberDiscoverabilityScreen__save">Save</string>
<string name="PhoneNumberDiscoverabilityScreen__save">حفظ</string>
<!-- Content description for the back arrow on the discoverability picker. -->
<string name="PhoneNumberDiscoverabilityScreen__back">Back</string>
<string name="PhoneNumberDiscoverabilityScreen__back">الرجوع</string>
</resources>
@@ -402,83 +402,83 @@
<!-- Device transfer: Instructions screen -->
<string name="DeviceTransferInstructions__transfer_your_account">Transfer your account</string>
<string name="DeviceTransferInstructions__to_transfer_open_signal_on_your_old_android_device">To transfer your account, open Signal on your old Android device and select Transfer Account.</string>
<string name="DeviceTransferInstructions__continue">Continue</string>
<string name="DeviceTransferInstructions__continue">Davam et</string>
<!-- Device transfer: Setup screen -->
<string name="DeviceTransferSetup__preparing_to_connect">Preparing to connect to old Android device</string>
<string name="DeviceTransferSetup__preparing_to_connect">Köhnə Android cihazınızla bağlantı qurmaq üçün hazırlanır</string>
<string name="DeviceTransferSetup__take_a_moment_should_be_ready_soon">This might take a moment. Should be ready soon.</string>
<string name="DeviceTransferSetup__waiting_for_old_device">Waiting for your old device to connect…</string>
<string name="DeviceTransferSetup__verify_numbers_match">Verify the numbers match on both devices</string>
<string name="DeviceTransferSetup__numbers_match">Yes, the numbers match</string>
<string name="DeviceTransferSetup__numbers_do_not_match">The numbers do not match</string>
<string name="DeviceTransferSetup__numbers_do_not_match">Nömrələr uyğunlaşmır</string>
<string name="DeviceTransferSetup__waiting_for_other_to_verify">Waiting for your old device to verify…</string>
<string name="DeviceTransferSetup__location_permission_required">Signal needs the location permission to discover and connect with your old device.</string>
<string name="DeviceTransferSetup__grant_location_permission">Grant permission</string>
<string name="DeviceTransferSetup__location_services_required">Signal needs location services enabled to discover and connect with your old device.</string>
<string name="DeviceTransferSetup__turn_on_location_services">Turn on location services</string>
<string name="DeviceTransferSetup__turn_on_location_services">Yerləşmə xidmətlərini işə sal</string>
<string name="DeviceTransferSetup__wifi_required">Signal needs Wi-Fi turned on to discover and connect with your old device.</string>
<string name="DeviceTransferSetup__turn_on_wifi">Turn on Wi-Fi</string>
<string name="DeviceTransferSetup__turn_on_wifi">\"Wi-Fi\"ı açın</string>
<string name="DeviceTransferSetup__wifi_direct_unavailable">Sorry, it appears your device does not support Wi-Fi Direct.</string>
<string name="DeviceTransferSetup__restore_a_backup">Restore a backup instead</string>
<string name="DeviceTransferSetup__unexpected_error_connecting">An unexpected error occurred while attempting to connect to your old device.</string>
<string name="DeviceTransferSetup__retry">Retry</string>
<string name="DeviceTransferSetup__retry">Yenidən sına</string>
<string name="DeviceTransferSetup__unable_to_discover_old_device">Unable to discover your old device</string>
<string name="DeviceTransferSetup__troubleshooting_tips">• Make sure location permissions are granted.\n• Make sure Wi-Fi is on and no Wi-Fi Direct groups are remembered.\n• Try turning Wi-Fi off and on on both devices.\n• Make sure both devices are in transfer mode.</string>
<string name="DeviceTransferSetup__try_again">Try again</string>
<string name="DeviceTransferSetup__the_numbers_do_not_match">The numbers do not match</string>
<string name="DeviceTransferSetup__try_again">Yenidən sına</string>
<string name="DeviceTransferSetup__the_numbers_do_not_match">Nömrələr uyğunlaşmır</string>
<string name="DeviceTransferSetup__if_numbers_dont_match_wrong_device">If the numbers on your devices do not match, it\'s possible you connected to the wrong device.</string>
<string name="DeviceTransferSetup__stop_transfer">Stop transfer</string>
<string name="DeviceTransferSetup__stop_transfer">Köçürməni dayandır</string>
<!-- Device transfer: Progress screen -->
<string name="DeviceTransferProgress__transferring_data">Transferring data</string>
<string name="DeviceTransferProgress__d_messages_so_far">%1$d messages so far</string>
<string name="DeviceTransferProgress__unable_to_transfer">Unable to transfer</string>
<string name="DeviceTransferProgress__transferring_data">Verilənlər köçürülür</string>
<string name="DeviceTransferProgress__d_messages_so_far">İndiyə qədər %1$d mesaj</string>
<string name="DeviceTransferProgress__unable_to_transfer">Köçürülə bilmir</string>
<string name="DeviceTransferProgress__cannot_transfer_from_newer_signal">Cannot transfer from a newer version of Signal.</string>
<string name="DeviceTransferProgress__failure_foreign_key">Some data could not be transferred due to a database constraint.</string>
<string name="DeviceTransferProgress__transfer_failed">The transfer failed. Please try again.</string>
<string name="DeviceTransferProgress__try_again">Try again</string>
<string name="DeviceTransferProgress__cancel">Cancel</string>
<string name="DeviceTransferProgress__stop_transfer">Stop transfer?</string>
<string name="DeviceTransferProgress__all_transfer_progress_will_be_lost">All transfer progress will be lost.</string>
<string name="DeviceTransferProgress__try_again">Yenidən cəhd edin</string>
<string name="DeviceTransferProgress__cancel">Ləğv et</string>
<string name="DeviceTransferProgress__stop_transfer">Köçürmə dayandırılsın?</string>
<string name="DeviceTransferProgress__all_transfer_progress_will_be_lost">Bütün köçürmə irəliləyişi itəcək.</string>
<!-- Device transfer: Complete screen -->
<string name="DeviceTransferComplete__transfer_complete">Transfer complete</string>
<string name="DeviceTransferComplete__transfer_complete">Köçürmə tamamlandı</string>
<string name="DeviceTransferComplete__your_account_is_now_on_this_device">Your account is now on this device.</string>
<string name="DeviceTransferComplete__continue_registration">Continue</string>
<string name="DeviceTransferComplete__continue_registration">Davam et</string>
<!-- Create profile screen -->
<!-- Title displayed at the top of the create-profile screen during registration. -->
<string name="CreateProfileScreen__set_up_your_profile">Set up your profile</string>
<string name="CreateProfileScreen__set_up_your_profile">Profilinizi quraşdırın</string>
<!-- Subtitle on create-profile screen explaining that the profile is end-to-end encrypted and visible to recipients. -->
<string name="CreateProfileScreen__your_profile_is_end_to_end_encrypted">Your profile and changes to it will be visible to people you message, contacts, and groups.</string>
<string name="CreateProfileScreen__your_profile_is_end_to_end_encrypted">Mesajlaşdığınız şəxslər, kontaktlarınız və qruplarınız profiliniz və orada etdiyiniz dəyişiklikləri görə biləcək.</string>
<!-- Label/hint for the first-name field, indicating it is required. -->
<string name="CreateProfileScreen__first_name_required">First name (required)</string>
<string name="CreateProfileScreen__first_name_required">Ad (tələb olunur)</string>
<!-- Label/hint for the last-name field, indicating it is optional. -->
<string name="CreateProfileScreen__last_name_optional">Last name (optional)</string>
<string name="CreateProfileScreen__last_name_optional">Soyad (ixtiyari)</string>
<!-- Action button text to advance from create-profile screen. -->
<string name="CreateProfileScreen__next">Next</string>
<string name="CreateProfileScreen__next">Növbəti</string>
<!-- Content description for the avatar selection control. -->
<string name="CreateProfileScreen__set_avatar_description">Set avatar</string>
<string name="CreateProfileScreen__set_avatar_description">Avatar tənzimlə</string>
<!-- Phone number discoverability picker -->
<!-- Title row label shown on the create-profile screen pointing at the discoverability picker. -->
<string name="WhoCanSeeMyPhoneNumberFragment__who_can_find_me_by_number">Who can find me by number?</string>
<string name="WhoCanSeeMyPhoneNumberFragment__who_can_find_me_by_number">Məni nömrəmlə kim tapa bilər?</string>
<!-- Description shown on the picker when "Everyone" is selected. -->
<string name="WhoCanSeeMyPhoneNumberFragment__anyone_who_has_your">Anyone who has your phone number will see you\'re on Signal and can start chats with you.</string>
<string name="WhoCanSeeMyPhoneNumberFragment__anyone_who_has_your">Telefon nömrənizin olduğu istənilən şəxs Signal-da olduğunuz zaman sizi görə və çata başlaya bilər.</string>
<!-- Description shown on the picker when "Nobody" is selected. -->
<string name="WhoCanSeeMyPhoneNumberFragment__nobody_will_be_able">Nobody will be able to see you\'re on Signal unless you message them or have an existing chat with them.</string>
<string name="WhoCanSeeMyPhoneNumberFragment__nobody_will_be_able">Mesaj göndərənə və ya ortaq çata daxil olmayana qədər heç kim Signal-da olduğunuzu görə bilməyəcək.</string>
<!-- Radio option label for "Everyone can find me by number". -->
<string name="PhoneNumberPrivacy_everyone">Everyone</string>
<string name="PhoneNumberPrivacy_everyone">Hər kəs</string>
<!-- Radio option label for "Nobody can find me by number". -->
<string name="PhoneNumberPrivacy_nobody">Nobody</string>
<string name="PhoneNumberPrivacy_nobody">Heç kim</string>
<!-- Title for the confirmation dialog shown when the user selects "Nobody". -->
<string name="PhoneNumberPrivacySettingsFragment__nobody_can_find_me_warning_title">Are you sure?</string>
<string name="PhoneNumberPrivacySettingsFragment__nobody_can_find_me_warning_title">Əminsiniz?</string>
<!-- Body for the confirmation dialog shown when the user selects "Nobody". -->
<string name="PhoneNumberPrivacySettingsFragment__nobody_can_find_me_warning_message">Setting \"Who can find me by number\" to \"Nobody\" will make it harder for people to find you on Signal.</string>
<string name="PhoneNumberPrivacySettingsFragment__nobody_can_find_me_warning_message">\"Məni nömrəmlə kim tapa bilər\" funksiyasını \"Heç kim\" olaraq seçsəniz insanların sizi Signal-da tapması çətinləşəcək.</string>
<!-- Cancel button on the "Nobody" confirmation dialog. -->
<string name="PhoneNumberPrivacySettingsFragment__cancel">Cancel</string>
<string name="PhoneNumberPrivacySettingsFragment__cancel">Ləğv et</string>
<!-- Save button on the discoverability picker. -->
<string name="PhoneNumberDiscoverabilityScreen__save">Save</string>
<string name="PhoneNumberDiscoverabilityScreen__save">Saxla</string>
<!-- Content description for the back arrow on the discoverability picker. -->
<string name="PhoneNumberDiscoverabilityScreen__back">Back</string>
<string name="PhoneNumberDiscoverabilityScreen__back">Geri</string>
</resources>
@@ -406,83 +406,83 @@
<!-- Device transfer: Instructions screen -->
<string name="DeviceTransferInstructions__transfer_your_account">Transfer your account</string>
<string name="DeviceTransferInstructions__to_transfer_open_signal_on_your_old_android_device">To transfer your account, open Signal on your old Android device and select Transfer Account.</string>
<string name="DeviceTransferInstructions__continue">Continue</string>
<string name="DeviceTransferInstructions__continue">Працягнуць</string>
<!-- Device transfer: Setup screen -->
<string name="DeviceTransferSetup__preparing_to_connect">Preparing to connect to old Android device</string>
<string name="DeviceTransferSetup__preparing_to_connect">Падрыхтоўка да падключэння да старой прылады Android…</string>
<string name="DeviceTransferSetup__take_a_moment_should_be_ready_soon">This might take a moment. Should be ready soon.</string>
<string name="DeviceTransferSetup__waiting_for_old_device">Waiting for your old device to connect…</string>
<string name="DeviceTransferSetup__verify_numbers_match">Verify the numbers match on both devices</string>
<string name="DeviceTransferSetup__numbers_match">Yes, the numbers match</string>
<string name="DeviceTransferSetup__numbers_do_not_match">The numbers do not match</string>
<string name="DeviceTransferSetup__numbers_do_not_match">Лічбы не супадаюць</string>
<string name="DeviceTransferSetup__waiting_for_other_to_verify">Waiting for your old device to verify…</string>
<string name="DeviceTransferSetup__location_permission_required">Signal needs the location permission to discover and connect with your old device.</string>
<string name="DeviceTransferSetup__grant_location_permission">Grant permission</string>
<string name="DeviceTransferSetup__location_services_required">Signal needs location services enabled to discover and connect with your old device.</string>
<string name="DeviceTransferSetup__turn_on_location_services">Turn on location services</string>
<string name="DeviceTransferSetup__turn_on_location_services">Уключыць сэрвіс для вызначэння месцазнаходжання</string>
<string name="DeviceTransferSetup__wifi_required">Signal needs Wi-Fi turned on to discover and connect with your old device.</string>
<string name="DeviceTransferSetup__turn_on_wifi">Turn on Wi-Fi</string>
<string name="DeviceTransferSetup__turn_on_wifi">Уключыць Wi-Fi</string>
<string name="DeviceTransferSetup__wifi_direct_unavailable">Sorry, it appears your device does not support Wi-Fi Direct.</string>
<string name="DeviceTransferSetup__restore_a_backup">Restore a backup instead</string>
<string name="DeviceTransferSetup__unexpected_error_connecting">An unexpected error occurred while attempting to connect to your old device.</string>
<string name="DeviceTransferSetup__retry">Retry</string>
<string name="DeviceTransferSetup__retry">Паспрабаваць зноў</string>
<string name="DeviceTransferSetup__unable_to_discover_old_device">Unable to discover your old device</string>
<string name="DeviceTransferSetup__troubleshooting_tips">• Make sure location permissions are granted.\n• Make sure Wi-Fi is on and no Wi-Fi Direct groups are remembered.\n• Try turning Wi-Fi off and on on both devices.\n• Make sure both devices are in transfer mode.</string>
<string name="DeviceTransferSetup__try_again">Try again</string>
<string name="DeviceTransferSetup__the_numbers_do_not_match">The numbers do not match</string>
<string name="DeviceTransferSetup__if_numbers_dont_match_wrong_device">If the numbers on your devices do not match, it\'s possible you connected to the wrong device.</string>
<string name="DeviceTransferSetup__stop_transfer">Stop transfer</string>
<string name="DeviceTransferSetup__try_again">Паўтарыце спробу</string>
<string name="DeviceTransferSetup__the_numbers_do_not_match">Лічбы не супадаюць</string>
<string name="DeviceTransferSetup__if_numbers_dont_match_wrong_device">Калі лічбы на вашых прыладах не супадаюць, магчыма, вы падключыліся не да той прылады.</string>
<string name="DeviceTransferSetup__stop_transfer">Спыніць перанос</string>
<!-- Device transfer: Progress screen -->
<string name="DeviceTransferProgress__transferring_data">Transferring data</string>
<string name="DeviceTransferProgress__transferring_data">Перанос даных</string>
<string name="DeviceTransferProgress__d_messages_so_far">%1$d messages so far</string>
<string name="DeviceTransferProgress__unable_to_transfer">Unable to transfer</string>
<string name="DeviceTransferProgress__unable_to_transfer">Немагчыма зрабіць перанос</string>
<string name="DeviceTransferProgress__cannot_transfer_from_newer_signal">Cannot transfer from a newer version of Signal.</string>
<string name="DeviceTransferProgress__failure_foreign_key">Some data could not be transferred due to a database constraint.</string>
<string name="DeviceTransferProgress__transfer_failed">The transfer failed. Please try again.</string>
<string name="DeviceTransferProgress__try_again">Try again</string>
<string name="DeviceTransferProgress__cancel">Cancel</string>
<string name="DeviceTransferProgress__stop_transfer">Stop transfer?</string>
<string name="DeviceTransferProgress__all_transfer_progress_will_be_lost">All transfer progress will be lost.</string>
<string name="DeviceTransferProgress__try_again">Паўтарыць спробу</string>
<string name="DeviceTransferProgress__cancel">Скасаваць</string>
<string name="DeviceTransferProgress__stop_transfer">Спыніць перанос?</string>
<string name="DeviceTransferProgress__all_transfer_progress_will_be_lost">Усё выкананне пераносу будзе страчана.</string>
<!-- Device transfer: Complete screen -->
<string name="DeviceTransferComplete__transfer_complete">Transfer complete</string>
<string name="DeviceTransferComplete__transfer_complete">Перанос завершаны</string>
<string name="DeviceTransferComplete__your_account_is_now_on_this_device">Your account is now on this device.</string>
<string name="DeviceTransferComplete__continue_registration">Continue</string>
<string name="DeviceTransferComplete__continue_registration">Працягнуць</string>
<!-- Create profile screen -->
<!-- Title displayed at the top of the create-profile screen during registration. -->
<string name="CreateProfileScreen__set_up_your_profile">Set up your profile</string>
<string name="CreateProfileScreen__set_up_your_profile">Наладзьце свой профіль</string>
<!-- Subtitle on create-profile screen explaining that the profile is end-to-end encrypted and visible to recipients. -->
<string name="CreateProfileScreen__your_profile_is_end_to_end_encrypted">Your profile and changes to it will be visible to people you message, contacts, and groups.</string>
<string name="CreateProfileScreen__your_profile_is_end_to_end_encrypted">Ваш профіль і змяненні ў ім будуць бачныя людзям, якім вы адпраўляеце паведамленні, вашым кантактам і групам.</string>
<!-- Label/hint for the first-name field, indicating it is required. -->
<string name="CreateProfileScreen__first_name_required">First name (required)</string>
<string name="CreateProfileScreen__first_name_required">Імя (абавязкова)</string>
<!-- Label/hint for the last-name field, indicating it is optional. -->
<string name="CreateProfileScreen__last_name_optional">Last name (optional)</string>
<string name="CreateProfileScreen__last_name_optional">Прозвішча (неабавязкова)</string>
<!-- Action button text to advance from create-profile screen. -->
<string name="CreateProfileScreen__next">Next</string>
<string name="CreateProfileScreen__next">Далей</string>
<!-- Content description for the avatar selection control. -->
<string name="CreateProfileScreen__set_avatar_description">Set avatar</string>
<string name="CreateProfileScreen__set_avatar_description">Усталяваць аватар</string>
<!-- Phone number discoverability picker -->
<!-- Title row label shown on the create-profile screen pointing at the discoverability picker. -->
<string name="WhoCanSeeMyPhoneNumberFragment__who_can_find_me_by_number">Who can find me by number?</string>
<string name="WhoCanSeeMyPhoneNumberFragment__who_can_find_me_by_number">Хто можа знайсці мяне па нумары?</string>
<!-- Description shown on the picker when "Everyone" is selected. -->
<string name="WhoCanSeeMyPhoneNumberFragment__anyone_who_has_your">Anyone who has your phone number will see you\'re on Signal and can start chats with you.</string>
<string name="WhoCanSeeMyPhoneNumberFragment__anyone_who_has_your">Усякі, хто мае ваш нумар тэлефона, убачыць, што вы ў Signal, і зможа распачаць з вамі чат.</string>
<!-- Description shown on the picker when "Nobody" is selected. -->
<string name="WhoCanSeeMyPhoneNumberFragment__nobody_will_be_able">Nobody will be able to see you\'re on Signal unless you message them or have an existing chat with them.</string>
<string name="WhoCanSeeMyPhoneNumberFragment__nobody_will_be_able">Ніхто не ўбачыць, што вы ў Signal, пакуль вы не адправіце яму паведамленне або не распачняце з ім чат.</string>
<!-- Radio option label for "Everyone can find me by number". -->
<string name="PhoneNumberPrivacy_everyone">Everyone</string>
<string name="PhoneNumberPrivacy_everyone">Усе</string>
<!-- Radio option label for "Nobody can find me by number". -->
<string name="PhoneNumberPrivacy_nobody">Nobody</string>
<string name="PhoneNumberPrivacy_nobody">Ніхто</string>
<!-- Title for the confirmation dialog shown when the user selects "Nobody". -->
<string name="PhoneNumberPrivacySettingsFragment__nobody_can_find_me_warning_title">Are you sure?</string>
<string name="PhoneNumberPrivacySettingsFragment__nobody_can_find_me_warning_title">Вы ўпэўнены?</string>
<!-- Body for the confirmation dialog shown when the user selects "Nobody". -->
<string name="PhoneNumberPrivacySettingsFragment__nobody_can_find_me_warning_message">Setting \"Who can find me by number\" to \"Nobody\" will make it harder for people to find you on Signal.</string>
<string name="PhoneNumberPrivacySettingsFragment__nobody_can_find_me_warning_message">Калі вы ўсталюеце для параметра «Хто можа знайсці мяне па нумары» значэнне «Ніхто», знайсці вас у Signal будзе складаней.</string>
<!-- Cancel button on the "Nobody" confirmation dialog. -->
<string name="PhoneNumberPrivacySettingsFragment__cancel">Cancel</string>
<string name="PhoneNumberPrivacySettingsFragment__cancel">Скасаваць</string>
<!-- Save button on the discoverability picker. -->
<string name="PhoneNumberDiscoverabilityScreen__save">Save</string>
<string name="PhoneNumberDiscoverabilityScreen__save">Захаваць</string>
<!-- Content description for the back arrow on the discoverability picker. -->
<string name="PhoneNumberDiscoverabilityScreen__back">Back</string>
<string name="PhoneNumberDiscoverabilityScreen__back">Назад</string>
</resources>
@@ -402,83 +402,83 @@
<!-- Device transfer: Instructions screen -->
<string name="DeviceTransferInstructions__transfer_your_account">Transfer your account</string>
<string name="DeviceTransferInstructions__to_transfer_open_signal_on_your_old_android_device">To transfer your account, open Signal on your old Android device and select Transfer Account.</string>
<string name="DeviceTransferInstructions__continue">Continue</string>
<string name="DeviceTransferInstructions__continue">Продължаване</string>
<!-- Device transfer: Setup screen -->
<string name="DeviceTransferSetup__preparing_to_connect">Preparing to connect to old Android device</string>
<string name="DeviceTransferSetup__preparing_to_connect">Приготвяме се за свързване със старото Android устройство</string>
<string name="DeviceTransferSetup__take_a_moment_should_be_ready_soon">This might take a moment. Should be ready soon.</string>
<string name="DeviceTransferSetup__waiting_for_old_device">Waiting for your old device to connect…</string>
<string name="DeviceTransferSetup__verify_numbers_match">Verify the numbers match on both devices</string>
<string name="DeviceTransferSetup__numbers_match">Yes, the numbers match</string>
<string name="DeviceTransferSetup__numbers_do_not_match">The numbers do not match</string>
<string name="DeviceTransferSetup__numbers_do_not_match">Числата не съвпадат</string>
<string name="DeviceTransferSetup__waiting_for_other_to_verify">Waiting for your old device to verify…</string>
<string name="DeviceTransferSetup__location_permission_required">Signal needs the location permission to discover and connect with your old device.</string>
<string name="DeviceTransferSetup__grant_location_permission">Grant permission</string>
<string name="DeviceTransferSetup__location_services_required">Signal needs location services enabled to discover and connect with your old device.</string>
<string name="DeviceTransferSetup__turn_on_location_services">Turn on location services</string>
<string name="DeviceTransferSetup__turn_on_location_services">Включи услуга за местоположение</string>
<string name="DeviceTransferSetup__wifi_required">Signal needs Wi-Fi turned on to discover and connect with your old device.</string>
<string name="DeviceTransferSetup__turn_on_wifi">Turn on Wi-Fi</string>
<string name="DeviceTransferSetup__turn_on_wifi">Включи Wi-Fi</string>
<string name="DeviceTransferSetup__wifi_direct_unavailable">Sorry, it appears your device does not support Wi-Fi Direct.</string>
<string name="DeviceTransferSetup__restore_a_backup">Restore a backup instead</string>
<string name="DeviceTransferSetup__unexpected_error_connecting">An unexpected error occurred while attempting to connect to your old device.</string>
<string name="DeviceTransferSetup__retry">Retry</string>
<string name="DeviceTransferSetup__retry">Опитай Отново</string>
<string name="DeviceTransferSetup__unable_to_discover_old_device">Unable to discover your old device</string>
<string name="DeviceTransferSetup__troubleshooting_tips">• Make sure location permissions are granted.\n• Make sure Wi-Fi is on and no Wi-Fi Direct groups are remembered.\n• Try turning Wi-Fi off and on on both devices.\n• Make sure both devices are in transfer mode.</string>
<string name="DeviceTransferSetup__try_again">Try again</string>
<string name="DeviceTransferSetup__the_numbers_do_not_match">The numbers do not match</string>
<string name="DeviceTransferSetup__try_again">Опитай отново</string>
<string name="DeviceTransferSetup__the_numbers_do_not_match">Числата не съвпадат</string>
<string name="DeviceTransferSetup__if_numbers_dont_match_wrong_device">If the numbers on your devices do not match, it\'s possible you connected to the wrong device.</string>
<string name="DeviceTransferSetup__stop_transfer">Stop transfer</string>
<string name="DeviceTransferSetup__stop_transfer">Прекрати прехвърляне</string>
<!-- Device transfer: Progress screen -->
<string name="DeviceTransferProgress__transferring_data">Transferring data</string>
<string name="DeviceTransferProgress__d_messages_so_far">%1$d messages so far</string>
<string name="DeviceTransferProgress__unable_to_transfer">Unable to transfer</string>
<string name="DeviceTransferProgress__transferring_data">Прехвърляне на данни</string>
<string name="DeviceTransferProgress__d_messages_so_far">%1$d съобщения до тук</string>
<string name="DeviceTransferProgress__unable_to_transfer">Не можахме да прехвърлим</string>
<string name="DeviceTransferProgress__cannot_transfer_from_newer_signal">Cannot transfer from a newer version of Signal.</string>
<string name="DeviceTransferProgress__failure_foreign_key">Some data could not be transferred due to a database constraint.</string>
<string name="DeviceTransferProgress__transfer_failed">The transfer failed. Please try again.</string>
<string name="DeviceTransferProgress__try_again">Try again</string>
<string name="DeviceTransferProgress__cancel">Cancel</string>
<string name="DeviceTransferProgress__stop_transfer">Stop transfer?</string>
<string name="DeviceTransferProgress__all_transfer_progress_will_be_lost">All transfer progress will be lost.</string>
<string name="DeviceTransferProgress__try_again">Опитайте отново</string>
<string name="DeviceTransferProgress__cancel">Отказ</string>
<string name="DeviceTransferProgress__stop_transfer">Прекрати прехвърляне?</string>
<string name="DeviceTransferProgress__all_transfer_progress_will_be_lost">Целият прогрес по прехвърлянето ще бъде загубен.</string>
<!-- Device transfer: Complete screen -->
<string name="DeviceTransferComplete__transfer_complete">Transfer complete</string>
<string name="DeviceTransferComplete__transfer_complete">Прехвърлянето приключи</string>
<string name="DeviceTransferComplete__your_account_is_now_on_this_device">Your account is now on this device.</string>
<string name="DeviceTransferComplete__continue_registration">Continue</string>
<string name="DeviceTransferComplete__continue_registration">Продължаване</string>
<!-- Create profile screen -->
<!-- Title displayed at the top of the create-profile screen during registration. -->
<string name="CreateProfileScreen__set_up_your_profile">Set up your profile</string>
<string name="CreateProfileScreen__set_up_your_profile">Настройте профила си</string>
<!-- Subtitle on create-profile screen explaining that the profile is end-to-end encrypted and visible to recipients. -->
<string name="CreateProfileScreen__your_profile_is_end_to_end_encrypted">Your profile and changes to it will be visible to people you message, contacts, and groups.</string>
<string name="CreateProfileScreen__your_profile_is_end_to_end_encrypted">Вашият профил и промените в него ще бъдат видими за хора, с които чатите, контакти и групи.</string>
<!-- Label/hint for the first-name field, indicating it is required. -->
<string name="CreateProfileScreen__first_name_required">First name (required)</string>
<string name="CreateProfileScreen__first_name_required">Собствено име (задължително)</string>
<!-- Label/hint for the last-name field, indicating it is optional. -->
<string name="CreateProfileScreen__last_name_optional">Last name (optional)</string>
<string name="CreateProfileScreen__last_name_optional">Фамилия (по избор)</string>
<!-- Action button text to advance from create-profile screen. -->
<string name="CreateProfileScreen__next">Next</string>
<string name="CreateProfileScreen__next">Напред</string>
<!-- Content description for the avatar selection control. -->
<string name="CreateProfileScreen__set_avatar_description">Set avatar</string>
<string name="CreateProfileScreen__set_avatar_description">Слагане на аватар</string>
<!-- Phone number discoverability picker -->
<!-- Title row label shown on the create-profile screen pointing at the discoverability picker. -->
<string name="WhoCanSeeMyPhoneNumberFragment__who_can_find_me_by_number">Who can find me by number?</string>
<string name="WhoCanSeeMyPhoneNumberFragment__who_can_find_me_by_number">Кой може да ме намери с телефонен номер?</string>
<!-- Description shown on the picker when "Everyone" is selected. -->
<string name="WhoCanSeeMyPhoneNumberFragment__anyone_who_has_your">Anyone who has your phone number will see you\'re on Signal and can start chats with you.</string>
<string name="WhoCanSeeMyPhoneNumberFragment__anyone_who_has_your">Всеки, който има телефонния ви номер, ще вижда, че сте в Signal и ще може да започне чат с вас.</string>
<!-- Description shown on the picker when "Nobody" is selected. -->
<string name="WhoCanSeeMyPhoneNumberFragment__nobody_will_be_able">Nobody will be able to see you\'re on Signal unless you message them or have an existing chat with them.</string>
<string name="WhoCanSeeMyPhoneNumberFragment__nobody_will_be_able">Никой няма да може да види, че сте в Signal, освен ако не му изпратите съобщение или вече нямате съществуващ чат с него.</string>
<!-- Radio option label for "Everyone can find me by number". -->
<string name="PhoneNumberPrivacy_everyone">Everyone</string>
<string name="PhoneNumberPrivacy_everyone">Всички</string>
<!-- Radio option label for "Nobody can find me by number". -->
<string name="PhoneNumberPrivacy_nobody">Nobody</string>
<string name="PhoneNumberPrivacy_nobody">Никой</string>
<!-- Title for the confirmation dialog shown when the user selects "Nobody". -->
<string name="PhoneNumberPrivacySettingsFragment__nobody_can_find_me_warning_title">Are you sure?</string>
<string name="PhoneNumberPrivacySettingsFragment__nobody_can_find_me_warning_title">Сигурни ли сте?</string>
<!-- Body for the confirmation dialog shown when the user selects "Nobody". -->
<string name="PhoneNumberPrivacySettingsFragment__nobody_can_find_me_warning_message">Setting \"Who can find me by number\" to \"Nobody\" will make it harder for people to find you on Signal.</string>
<string name="PhoneNumberPrivacySettingsFragment__nobody_can_find_me_warning_message">Задаването на „Кой може да ме намери по номер“ на „Никой“ ще затрудни хората да ви намират в Signal.</string>
<!-- Cancel button on the "Nobody" confirmation dialog. -->
<string name="PhoneNumberPrivacySettingsFragment__cancel">Cancel</string>
<string name="PhoneNumberPrivacySettingsFragment__cancel">Отказ</string>
<!-- Save button on the discoverability picker. -->
<string name="PhoneNumberDiscoverabilityScreen__save">Save</string>
<string name="PhoneNumberDiscoverabilityScreen__save">Запазване</string>
<!-- Content description for the back arrow on the discoverability picker. -->
<string name="PhoneNumberDiscoverabilityScreen__back">Back</string>
<string name="PhoneNumberDiscoverabilityScreen__back">Обратно</string>
</resources>
@@ -402,83 +402,83 @@
<!-- Device transfer: Instructions screen -->
<string name="DeviceTransferInstructions__transfer_your_account">Transfer your account</string>
<string name="DeviceTransferInstructions__to_transfer_open_signal_on_your_old_android_device">To transfer your account, open Signal on your old Android device and select Transfer Account.</string>
<string name="DeviceTransferInstructions__continue">Continue</string>
<string name="DeviceTransferInstructions__continue">চলতে থাকুন</string>
<!-- Device transfer: Setup screen -->
<string name="DeviceTransferSetup__preparing_to_connect">Preparing to connect to old Android device</string>
<string name="DeviceTransferSetup__preparing_to_connect">পুরনো Android ডিভাইসের সাথে সংযোগের প্রস্তুতি নিচ্ছে</string>
<string name="DeviceTransferSetup__take_a_moment_should_be_ready_soon">This might take a moment. Should be ready soon.</string>
<string name="DeviceTransferSetup__waiting_for_old_device">Waiting for your old device to connect…</string>
<string name="DeviceTransferSetup__verify_numbers_match">Verify the numbers match on both devices</string>
<string name="DeviceTransferSetup__numbers_match">Yes, the numbers match</string>
<string name="DeviceTransferSetup__numbers_do_not_match">The numbers do not match</string>
<string name="DeviceTransferSetup__numbers_do_not_match">সংখ্যা মিলছে না</string>
<string name="DeviceTransferSetup__waiting_for_other_to_verify">Waiting for your old device to verify…</string>
<string name="DeviceTransferSetup__location_permission_required">Signal needs the location permission to discover and connect with your old device.</string>
<string name="DeviceTransferSetup__grant_location_permission">Grant permission</string>
<string name="DeviceTransferSetup__location_services_required">Signal needs location services enabled to discover and connect with your old device.</string>
<string name="DeviceTransferSetup__turn_on_location_services">Turn on location services</string>
<string name="DeviceTransferSetup__turn_on_location_services">লোকেশন পরিষেবা চালু করুন</string>
<string name="DeviceTransferSetup__wifi_required">Signal needs Wi-Fi turned on to discover and connect with your old device.</string>
<string name="DeviceTransferSetup__turn_on_wifi">Turn on Wi-Fi</string>
<string name="DeviceTransferSetup__turn_on_wifi">ওয়াই-ফাই চালু করুন</string>
<string name="DeviceTransferSetup__wifi_direct_unavailable">Sorry, it appears your device does not support Wi-Fi Direct.</string>
<string name="DeviceTransferSetup__restore_a_backup">Restore a backup instead</string>
<string name="DeviceTransferSetup__unexpected_error_connecting">An unexpected error occurred while attempting to connect to your old device.</string>
<string name="DeviceTransferSetup__retry">Retry</string>
<string name="DeviceTransferSetup__retry">পুনরায় চেষ্টা করুন</string>
<string name="DeviceTransferSetup__unable_to_discover_old_device">Unable to discover your old device</string>
<string name="DeviceTransferSetup__troubleshooting_tips">• Make sure location permissions are granted.\n• Make sure Wi-Fi is on and no Wi-Fi Direct groups are remembered.\n• Try turning Wi-Fi off and on on both devices.\n• Make sure both devices are in transfer mode.</string>
<string name="DeviceTransferSetup__try_again">Try again</string>
<string name="DeviceTransferSetup__the_numbers_do_not_match">The numbers do not match</string>
<string name="DeviceTransferSetup__try_again">আবারো চেষ্টা করুন</string>
<string name="DeviceTransferSetup__the_numbers_do_not_match">সংখ্যা মিলছে না</string>
<string name="DeviceTransferSetup__if_numbers_dont_match_wrong_device">If the numbers on your devices do not match, it\'s possible you connected to the wrong device.</string>
<string name="DeviceTransferSetup__stop_transfer">Stop transfer</string>
<string name="DeviceTransferSetup__stop_transfer">স্থানান্তর বন্ধ করুন</string>
<!-- Device transfer: Progress screen -->
<string name="DeviceTransferProgress__transferring_data">Transferring data</string>
<string name="DeviceTransferProgress__d_messages_so_far">%1$d messages so far</string>
<string name="DeviceTransferProgress__unable_to_transfer">Unable to transfer</string>
<string name="DeviceTransferProgress__transferring_data">তথ্য স্থানান্তর করা হচ্ছে</string>
<string name="DeviceTransferProgress__d_messages_so_far">এযাবৎ %1$d টি বার্তা</string>
<string name="DeviceTransferProgress__unable_to_transfer">স্থানান্তর করতে অক্ষম</string>
<string name="DeviceTransferProgress__cannot_transfer_from_newer_signal">Cannot transfer from a newer version of Signal.</string>
<string name="DeviceTransferProgress__failure_foreign_key">Some data could not be transferred due to a database constraint.</string>
<string name="DeviceTransferProgress__transfer_failed">The transfer failed. Please try again.</string>
<string name="DeviceTransferProgress__try_again">Try again</string>
<string name="DeviceTransferProgress__cancel">Cancel</string>
<string name="DeviceTransferProgress__stop_transfer">Stop transfer?</string>
<string name="DeviceTransferProgress__all_transfer_progress_will_be_lost">All transfer progress will be lost.</string>
<string name="DeviceTransferProgress__try_again">আবার চেষ্টা করুন</string>
<string name="DeviceTransferProgress__cancel">বাতিল করুন</string>
<string name="DeviceTransferProgress__stop_transfer">স্থানান্তর বন্ধ করবেন?</string>
<string name="DeviceTransferProgress__all_transfer_progress_will_be_lost">সমস্ত স্থানান্তর অগ্রগতি নষ্ট হবে।</string>
<!-- Device transfer: Complete screen -->
<string name="DeviceTransferComplete__transfer_complete">Transfer complete</string>
<string name="DeviceTransferComplete__transfer_complete">স্থানান্তর সম্পূর্ণ</string>
<string name="DeviceTransferComplete__your_account_is_now_on_this_device">Your account is now on this device.</string>
<string name="DeviceTransferComplete__continue_registration">Continue</string>
<string name="DeviceTransferComplete__continue_registration">চলতে থাকুন</string>
<!-- Create profile screen -->
<!-- Title displayed at the top of the create-profile screen during registration. -->
<string name="CreateProfileScreen__set_up_your_profile">Set up your profile</string>
<string name="CreateProfileScreen__set_up_your_profile">আপনার প্রোফাইল সেট করুন</string>
<!-- Subtitle on create-profile screen explaining that the profile is end-to-end encrypted and visible to recipients. -->
<string name="CreateProfileScreen__your_profile_is_end_to_end_encrypted">Your profile and changes to it will be visible to people you message, contacts, and groups.</string>
<string name="CreateProfileScreen__your_profile_is_end_to_end_encrypted">আপনার প্রোফাইল এবং এতে করা পরিবর্তনগুলো আপনার ম্যাসেজ, কন্টাক্ট, এবং গ্ৰুপগুলোর কাছে দৃশ্যমান হবে৷</string>
<!-- Label/hint for the first-name field, indicating it is required. -->
<string name="CreateProfileScreen__first_name_required">First name (required)</string>
<string name="CreateProfileScreen__first_name_required">নামের প্রথম অংশ (প্রয়োজনীয়)</string>
<!-- Label/hint for the last-name field, indicating it is optional. -->
<string name="CreateProfileScreen__last_name_optional">Last name (optional)</string>
<string name="CreateProfileScreen__last_name_optional">নামের শেষ অংশ (ঐচ্ছিক)</string>
<!-- Action button text to advance from create-profile screen. -->
<string name="CreateProfileScreen__next">Next</string>
<string name="CreateProfileScreen__next">পরবর্তী</string>
<!-- Content description for the avatar selection control. -->
<string name="CreateProfileScreen__set_avatar_description">Set avatar</string>
<string name="CreateProfileScreen__set_avatar_description">প্রোফাইলের ছবি সেট করুন</string>
<!-- Phone number discoverability picker -->
<!-- Title row label shown on the create-profile screen pointing at the discoverability picker. -->
<string name="WhoCanSeeMyPhoneNumberFragment__who_can_find_me_by_number">Who can find me by number?</string>
<string name="WhoCanSeeMyPhoneNumberFragment__who_can_find_me_by_number">নম্বরের মাধ্যমে কারা আমাকে খুঁজে পাবেন?</string>
<!-- Description shown on the picker when "Everyone" is selected. -->
<string name="WhoCanSeeMyPhoneNumberFragment__anyone_who_has_your">Anyone who has your phone number will see you\'re on Signal and can start chats with you.</string>
<string name="WhoCanSeeMyPhoneNumberFragment__anyone_who_has_your">যাদের কাছে আপনার ফোন নম্বর আছে তারা দেখতে পাবেন আপনি Signal-এ আছেন এবং আপনার সাথে চ্যাট শুরু করতে পারবেন।</string>
<!-- Description shown on the picker when "Nobody" is selected. -->
<string name="WhoCanSeeMyPhoneNumberFragment__nobody_will_be_able">Nobody will be able to see you\'re on Signal unless you message them or have an existing chat with them.</string>
<string name="WhoCanSeeMyPhoneNumberFragment__nobody_will_be_able">আপনি Signal-এ আছেন তা কেউ দেখতে পাবেন না যদি না আপনি তাদের মেসেজ পাঠান বা তাদের সাথে কোনো চ্যাট বিদ্যমান থাকে।</string>
<!-- Radio option label for "Everyone can find me by number". -->
<string name="PhoneNumberPrivacy_everyone">Everyone</string>
<string name="PhoneNumberPrivacy_everyone">সকলে</string>
<!-- Radio option label for "Nobody can find me by number". -->
<string name="PhoneNumberPrivacy_nobody">Nobody</string>
<string name="PhoneNumberPrivacy_nobody">কেউ না</string>
<!-- Title for the confirmation dialog shown when the user selects "Nobody". -->
<string name="PhoneNumberPrivacySettingsFragment__nobody_can_find_me_warning_title">Are you sure?</string>
<string name="PhoneNumberPrivacySettingsFragment__nobody_can_find_me_warning_title">আপনি কি নিশ্চিত?</string>
<!-- Body for the confirmation dialog shown when the user selects "Nobody". -->
<string name="PhoneNumberPrivacySettingsFragment__nobody_can_find_me_warning_message">Setting \"Who can find me by number\" to \"Nobody\" will make it harder for people to find you on Signal.</string>
<string name="PhoneNumberPrivacySettingsFragment__nobody_can_find_me_warning_message">\"কারা আমাকে নম্বরের মাধ্যমে খুঁজে পেতে পারেন\"-এ \"কেউ নয়\" সেট করা হলে তা আপনাকে Signal-এ খুঁজে পাওয়া অন্যদের কাছে কঠিন করে তুলবে।</string>
<!-- Cancel button on the "Nobody" confirmation dialog. -->
<string name="PhoneNumberPrivacySettingsFragment__cancel">Cancel</string>
<string name="PhoneNumberPrivacySettingsFragment__cancel">বাতিল করুন</string>
<!-- Save button on the discoverability picker. -->
<string name="PhoneNumberDiscoverabilityScreen__save">Save</string>
<string name="PhoneNumberDiscoverabilityScreen__save">সেভ করুন</string>
<!-- Content description for the back arrow on the discoverability picker. -->
<string name="PhoneNumberDiscoverabilityScreen__back">Back</string>
<string name="PhoneNumberDiscoverabilityScreen__back">ফিরে যান</string>
</resources>

Some files were not shown because too many files have changed in this diff Show More