mirror of
https://github.com/signalapp/Signal-Android.git
synced 2026-06-19 05:35:45 +01:00
Compare commits
8 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| c8d2a06676 | |||
| 42d114e75b | |||
| c2abe2fc33 | |||
| fb1c7c346e | |||
| 0b196db4b6 | |||
| bdd1858602 | |||
| 915181fbb7 | |||
| 5f375dc9a6 |
@@ -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 = 1708
|
||||
val canonicalVersionName = "8.16.0"
|
||||
val canonicalVersionCode = 1709
|
||||
val canonicalVersionName = "8.16.1"
|
||||
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
+24
-21
@@ -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
|
||||
)
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1074,7 +1074,7 @@ public final class ConversationItem extends RelativeLayout implements BindableCo
|
||||
* Whether interactions like swipe-to-reply and direct media opening should be suppressed.
|
||||
*/
|
||||
private boolean isSuppressedInteractionMode() {
|
||||
return isCondensedMode() || displayMode instanceof ConversationItemDisplayMode.Starred;
|
||||
return isCondensedMode() || displayMode instanceof ConversationItemDisplayMode.Starred || displayMode == ConversationItemDisplayMode.Detailed.INSTANCE;
|
||||
}
|
||||
|
||||
private boolean isStoryReaction(MessageRecord messageRecord) {
|
||||
@@ -1154,10 +1154,23 @@ public final class ConversationItem extends RelativeLayout implements BindableCo
|
||||
boolean messageRequestAccepted,
|
||||
boolean hasWallpaper)
|
||||
{
|
||||
bodyText.setClickable(false);
|
||||
bodyText.setFocusable(false);
|
||||
boolean isMessageDetails = displayMode == ConversationItemDisplayMode.Detailed.INSTANCE;
|
||||
|
||||
bodyText.setTextSize(TypedValue.COMPLEX_UNIT_SP, SignalStore.settings().getMessageFontSize());
|
||||
bodyText.setMovementMethod(LongClickMovementMethod.getInstance(getContext()));
|
||||
|
||||
bodyText.setTextIsSelectable(isMessageDetails);
|
||||
if (isMessageDetails) {
|
||||
bodyText.setOnTouchListener(null);
|
||||
bodyText.setOnLongClickListener(null);
|
||||
bodyText.setOnClickListener(null);
|
||||
} else {
|
||||
bodyText.setClickable(false);
|
||||
bodyText.setFocusable(false);
|
||||
bodyText.setOnTouchListener(doubleTapEditTouchListener);
|
||||
bodyText.setOnLongClickListener(passthroughClickListener);
|
||||
bodyText.setOnClickListener(passthroughClickListener);
|
||||
bodyText.setMovementMethod(LongClickMovementMethod.getInstance(getContext()));
|
||||
}
|
||||
|
||||
bodyText.setOverflowText(null);
|
||||
bodyText.setMaxLength(-1);
|
||||
|
||||
@@ -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)) {
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
package org.thoughtcrime.securesms.messages
|
||||
|
||||
import android.app.Application
|
||||
import android.app.Notification
|
||||
import android.app.Service
|
||||
import android.content.Context
|
||||
import android.content.Intent
|
||||
@@ -26,12 +27,9 @@ import org.thoughtcrime.securesms.groups.v2.processing.GroupsV2StateProcessor
|
||||
import org.thoughtcrime.securesms.jobmanager.Job
|
||||
import org.thoughtcrime.securesms.jobmanager.impl.BackoffUtil
|
||||
import org.thoughtcrime.securesms.jobmanager.impl.NetworkConstraint
|
||||
import org.thoughtcrime.securesms.jobs.ForegroundServiceUtil
|
||||
import org.thoughtcrime.securesms.jobs.ForegroundServiceUtil.startWhenCapable
|
||||
import org.thoughtcrime.securesms.jobs.PushProcessMessageErrorJob
|
||||
import org.thoughtcrime.securesms.jobs.PushProcessMessageJob
|
||||
import org.thoughtcrime.securesms.jobs.RequestGroupV2InfoJob
|
||||
import org.thoughtcrime.securesms.jobs.UnableToStartException
|
||||
import org.thoughtcrime.securesms.keyvalue.SignalStore
|
||||
import org.thoughtcrime.securesms.keyvalue.isDecisionPending
|
||||
import org.thoughtcrime.securesms.messages.MessageDecryptor.FollowUpOperation
|
||||
@@ -39,6 +37,7 @@ import org.thoughtcrime.securesms.messages.protocol.BufferedProtocolStore
|
||||
import org.thoughtcrime.securesms.notifications.NotificationChannels
|
||||
import org.thoughtcrime.securesms.push.SignalServiceNetworkAccess.Companion.toApplicableSystemHttpProxy
|
||||
import org.thoughtcrime.securesms.recipients.RecipientId
|
||||
import org.thoughtcrime.securesms.service.SafeForegroundService
|
||||
import org.thoughtcrime.securesms.util.AlarmSleepTimer
|
||||
import org.thoughtcrime.securesms.util.Environment
|
||||
import org.thoughtcrime.securesms.util.SignalLocalMetrics
|
||||
@@ -99,7 +98,7 @@ class IncomingMessageObserver(
|
||||
*/
|
||||
@JvmStatic
|
||||
fun stopForegroundService(context: Context) {
|
||||
context.stopService(Intent(context, ForegroundService::class.java))
|
||||
SafeForegroundService.stop(context, ForegroundService::class.java)
|
||||
}
|
||||
}
|
||||
|
||||
@@ -157,16 +156,9 @@ class IncomingMessageObserver(
|
||||
|
||||
val registered = SignalStore.account.isRegistered && !TextSecurePreferences.isUnauthorizedReceived(context)
|
||||
if (registered && (!SignalStore.account.fcmEnabled || SignalStore.settings.forceWebsocketMode.isEnabled)) {
|
||||
try {
|
||||
ForegroundServiceUtil.start(context, Intent(context, ForegroundService::class.java))
|
||||
} catch (_: UnableToStartException) {
|
||||
Log.w(TAG, "Unable to start foreground service for websocket. Deferring to background to try with blocking")
|
||||
SignalExecutors.UNBOUNDED.execute {
|
||||
try {
|
||||
startWhenCapable(context, Intent(context, ForegroundService::class.java))
|
||||
} catch (e: UnableToStartException) {
|
||||
Log.w(TAG, "Unable to start foreground service for websocket!", e)
|
||||
}
|
||||
SignalExecutors.UNBOUNDED.execute {
|
||||
if (!SafeForegroundService.start(context, ForegroundService::class.java)) {
|
||||
Log.w(TAG, "Unable to start foreground service for websocket!")
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -268,9 +260,6 @@ class IncomingMessageObserver(
|
||||
TAG,
|
||||
"[$needsConnectionString] Network: $hasNetwork, Foreground: $appVisibleSnapshot, Time Since Last Interaction: $lastInteractionString, FCM: $fcmEnabled, WS Open or Keep-alives: $websocketAlreadyOpen, Registered: $registered, Unauthorized: $unauthorizedReceived, Proxy: $hasProxy, Force websocket: $forceWebsocket"
|
||||
)
|
||||
if (!registered || unauthorizedReceived) {
|
||||
stopForegroundService(context)
|
||||
}
|
||||
|
||||
return conclusion
|
||||
}
|
||||
@@ -664,42 +653,21 @@ class IncomingMessageObserver(
|
||||
}
|
||||
}
|
||||
|
||||
class ForegroundService : Service() {
|
||||
override fun onBind(intent: Intent?): IBinder? {
|
||||
return null
|
||||
}
|
||||
/**
|
||||
* Keeps the process alive for websocket users.
|
||||
*/
|
||||
class ForegroundService : SafeForegroundService() {
|
||||
override val tag: String = TAG
|
||||
override val notificationId: Int = FOREGROUND_ID
|
||||
|
||||
override fun onCreate() {
|
||||
postForegroundNotification()
|
||||
}
|
||||
|
||||
override fun onStartCommand(intent: Intent?, flags: Int, startId: Int): Int {
|
||||
super.onStartCommand(intent, flags, startId)
|
||||
|
||||
return if (postForegroundNotification()) {
|
||||
START_STICKY
|
||||
} else {
|
||||
START_NOT_STICKY
|
||||
}
|
||||
}
|
||||
|
||||
private fun postForegroundNotification(): Boolean {
|
||||
if (!SignalStore.account.isRegistered || TextSecurePreferences.isUnauthorizedReceived(applicationContext)) {
|
||||
Log.i(TAG, "Stopping websocket foreground service because the user is unregistered or unauthorized.")
|
||||
stopSelf()
|
||||
return false
|
||||
}
|
||||
|
||||
val notification = NotificationCompat.Builder(applicationContext, NotificationChannels.getInstance().BACKGROUND)
|
||||
override fun getForegroundNotification(intent: Intent): Notification {
|
||||
return NotificationCompat.Builder(applicationContext, NotificationChannels.getInstance().BACKGROUND)
|
||||
.setContentTitle(applicationContext.getString(R.string.MessageRetrievalService_signal))
|
||||
.setContentText(applicationContext.getString(R.string.MessageRetrievalService_background_connection_enabled))
|
||||
.setPriority(NotificationCompat.PRIORITY_MIN)
|
||||
.setWhen(0)
|
||||
.setSmallIcon(R.drawable.ic_signal_background_connection)
|
||||
.build()
|
||||
|
||||
startForeground(FOREGROUND_ID, notification)
|
||||
return true
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -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,
|
||||
|
||||
@@ -9944,7 +9944,7 @@
|
||||
<!-- Button opening a help article with more information about recovery key safety -->
|
||||
<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>
|
||||
<string name="RecoveryKeyWarningSheetContent__learn_more_period">Vind meer uit.</string>
|
||||
<!-- Button declining to paste/share the recovery key, dismissing the warning sheet -->
|
||||
<string name="RecoveryKeyWarningSheetContent__do_not_share_key">Moenie sleutel deel nie</string>
|
||||
<!-- Button indicating the user wants to proceed with sharing/pasting the recovery key, which shows a final confirmation -->
|
||||
|
||||
@@ -10756,7 +10756,7 @@
|
||||
<!-- Button opening a help article with more information about recovery key safety -->
|
||||
<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>
|
||||
<string name="RecoveryKeyWarningSheetContent__learn_more_period">اعرف المزيد</string>
|
||||
<!-- Button declining to paste/share the recovery key, dismissing the warning sheet -->
|
||||
<string name="RecoveryKeyWarningSheetContent__do_not_share_key">لا تشارِك المفتاح</string>
|
||||
<!-- Button indicating the user wants to proceed with sharing/pasting the recovery key, which shows a final confirmation -->
|
||||
|
||||
@@ -9944,7 +9944,7 @@
|
||||
<!-- Button opening a help article with more information about recovery key safety -->
|
||||
<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>
|
||||
<string name="RecoveryKeyWarningSheetContent__learn_more_period">Daha ətraflı.</string>
|
||||
<!-- Button declining to paste/share the recovery key, dismissing the warning sheet -->
|
||||
<string name="RecoveryKeyWarningSheetContent__do_not_share_key">Şifrəni paylaşma</string>
|
||||
<!-- Button indicating the user wants to proceed with sharing/pasting the recovery key, which shows a final confirmation -->
|
||||
|
||||
@@ -10350,7 +10350,7 @@
|
||||
<!-- Button opening a help article with more information about recovery key safety -->
|
||||
<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>
|
||||
<string name="RecoveryKeyWarningSheetContent__learn_more_period">Даведацца больш.</string>
|
||||
<!-- Button declining to paste/share the recovery key, dismissing the warning sheet -->
|
||||
<string name="RecoveryKeyWarningSheetContent__do_not_share_key">Не паказваць код для аднаўлення</string>
|
||||
<!-- Button indicating the user wants to proceed with sharing/pasting the recovery key, which shows a final confirmation -->
|
||||
|
||||
@@ -9944,7 +9944,7 @@
|
||||
<!-- Button opening a help article with more information about recovery key safety -->
|
||||
<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>
|
||||
<string name="RecoveryKeyWarningSheetContent__learn_more_period">Научете повече.</string>
|
||||
<!-- Button declining to paste/share the recovery key, dismissing the warning sheet -->
|
||||
<string name="RecoveryKeyWarningSheetContent__do_not_share_key">Не споделяйте ключа</string>
|
||||
<!-- Button indicating the user wants to proceed with sharing/pasting the recovery key, which shows a final confirmation -->
|
||||
|
||||
@@ -9944,7 +9944,7 @@
|
||||
<!-- Button opening a help article with more information about recovery key safety -->
|
||||
<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>
|
||||
<string name="RecoveryKeyWarningSheetContent__learn_more_period">আরও জানুন।</string>
|
||||
<!-- Button declining to paste/share the recovery key, dismissing the warning sheet -->
|
||||
<string name="RecoveryKeyWarningSheetContent__do_not_share_key">\'কি\' শেয়ার করবেন না</string>
|
||||
<!-- Button indicating the user wants to proceed with sharing/pasting the recovery key, which shows a final confirmation -->
|
||||
|
||||
@@ -10350,7 +10350,7 @@
|
||||
<!-- Button opening a help article with more information about recovery key safety -->
|
||||
<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>
|
||||
<string name="RecoveryKeyWarningSheetContent__learn_more_period">Saznajte više</string>
|
||||
<!-- Button declining to paste/share the recovery key, dismissing the warning sheet -->
|
||||
<string name="RecoveryKeyWarningSheetContent__do_not_share_key">Ne dijelite ključ</string>
|
||||
<!-- Button indicating the user wants to proceed with sharing/pasting the recovery key, which shows a final confirmation -->
|
||||
|
||||
@@ -9944,7 +9944,7 @@
|
||||
<!-- Button opening a help article with more information about recovery key safety -->
|
||||
<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>
|
||||
<string name="RecoveryKeyWarningSheetContent__learn_more_period">Més informació</string>
|
||||
<!-- Button declining to paste/share the recovery key, dismissing the warning sheet -->
|
||||
<string name="RecoveryKeyWarningSheetContent__do_not_share_key">No compartir la clau</string>
|
||||
<!-- Button indicating the user wants to proceed with sharing/pasting the recovery key, which shows a final confirmation -->
|
||||
|
||||
@@ -10350,7 +10350,7 @@
|
||||
<!-- Button opening a help article with more information about recovery key safety -->
|
||||
<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>
|
||||
<string name="RecoveryKeyWarningSheetContent__learn_more_period">Zjistit více.</string>
|
||||
<!-- Button declining to paste/share the recovery key, dismissing the warning sheet -->
|
||||
<string name="RecoveryKeyWarningSheetContent__do_not_share_key">Nesdílet klíč</string>
|
||||
<!-- Button indicating the user wants to proceed with sharing/pasting the recovery key, which shows a final confirmation -->
|
||||
|
||||
@@ -9944,7 +9944,7 @@
|
||||
<!-- Button opening a help article with more information about recovery key safety -->
|
||||
<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>
|
||||
<string name="RecoveryKeyWarningSheetContent__learn_more_period">Læs mere</string>
|
||||
<!-- Button declining to paste/share the recovery key, dismissing the warning sheet -->
|
||||
<string name="RecoveryKeyWarningSheetContent__do_not_share_key">Del ikke nøgle</string>
|
||||
<!-- Button indicating the user wants to proceed with sharing/pasting the recovery key, which shows a final confirmation -->
|
||||
|
||||
@@ -9944,7 +9944,7 @@
|
||||
<!-- Button opening a help article with more information about recovery key safety -->
|
||||
<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>
|
||||
<string name="RecoveryKeyWarningSheetContent__learn_more_period">Mehr erfahren.</string>
|
||||
<!-- Button declining to paste/share the recovery key, dismissing the warning sheet -->
|
||||
<string name="RecoveryKeyWarningSheetContent__do_not_share_key">Schlüssel nicht weitergeben</string>
|
||||
<!-- Button indicating the user wants to proceed with sharing/pasting the recovery key, which shows a final confirmation -->
|
||||
|
||||
@@ -9944,7 +9944,7 @@
|
||||
<!-- Button opening a help article with more information about recovery key safety -->
|
||||
<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>
|
||||
<string name="RecoveryKeyWarningSheetContent__learn_more_period">Μάθε περισσότερα.</string>
|
||||
<!-- Button declining to paste/share the recovery key, dismissing the warning sheet -->
|
||||
<string name="RecoveryKeyWarningSheetContent__do_not_share_key">Μην κοινοποιήσεις το κλειδί</string>
|
||||
<!-- Button indicating the user wants to proceed with sharing/pasting the recovery key, which shows a final confirmation -->
|
||||
|
||||
@@ -9944,7 +9944,7 @@
|
||||
<!-- Button opening a help article with more information about recovery key safety -->
|
||||
<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>
|
||||
<string name="RecoveryKeyWarningSheetContent__learn_more_period">Más información.</string>
|
||||
<!-- Button declining to paste/share the recovery key, dismissing the warning sheet -->
|
||||
<string name="RecoveryKeyWarningSheetContent__do_not_share_key">No compartir clave</string>
|
||||
<!-- Button indicating the user wants to proceed with sharing/pasting the recovery key, which shows a final confirmation -->
|
||||
|
||||
@@ -9944,7 +9944,7 @@
|
||||
<!-- Button opening a help article with more information about recovery key safety -->
|
||||
<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>
|
||||
<string name="RecoveryKeyWarningSheetContent__learn_more_period">Rohkem infot</string>
|
||||
<!-- Button declining to paste/share the recovery key, dismissing the warning sheet -->
|
||||
<string name="RecoveryKeyWarningSheetContent__do_not_share_key">Ära jaga võtit</string>
|
||||
<!-- Button indicating the user wants to proceed with sharing/pasting the recovery key, which shows a final confirmation -->
|
||||
|
||||
@@ -9944,7 +9944,7 @@
|
||||
<!-- Button opening a help article with more information about recovery key safety -->
|
||||
<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>
|
||||
<string name="RecoveryKeyWarningSheetContent__learn_more_period">Gehiago jakin</string>
|
||||
<!-- Button declining to paste/share the recovery key, dismissing the warning sheet -->
|
||||
<string name="RecoveryKeyWarningSheetContent__do_not_share_key">Ez partekatu gakoa</string>
|
||||
<!-- Button indicating the user wants to proceed with sharing/pasting the recovery key, which shows a final confirmation -->
|
||||
|
||||
@@ -9944,7 +9944,7 @@
|
||||
<!-- Button opening a help article with more information about recovery key safety -->
|
||||
<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>
|
||||
<string name="RecoveryKeyWarningSheetContent__learn_more_period">اطلاعات بیشتر.</string>
|
||||
<!-- Button declining to paste/share the recovery key, dismissing the warning sheet -->
|
||||
<string name="RecoveryKeyWarningSheetContent__do_not_share_key">رمز را به اشتراک نگذارید</string>
|
||||
<!-- Button indicating the user wants to proceed with sharing/pasting the recovery key, which shows a final confirmation -->
|
||||
|
||||
@@ -9944,7 +9944,7 @@
|
||||
<!-- Button opening a help article with more information about recovery key safety -->
|
||||
<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>
|
||||
<string name="RecoveryKeyWarningSheetContent__learn_more_period">Lue lisää</string>
|
||||
<!-- Button declining to paste/share the recovery key, dismissing the warning sheet -->
|
||||
<string name="RecoveryKeyWarningSheetContent__do_not_share_key">Älä jaa avainta</string>
|
||||
<!-- Button indicating the user wants to proceed with sharing/pasting the recovery key, which shows a final confirmation -->
|
||||
|
||||
@@ -9944,7 +9944,7 @@
|
||||
<!-- Button opening a help article with more information about recovery key safety -->
|
||||
<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>
|
||||
<string name="RecoveryKeyWarningSheetContent__learn_more_period">En savoir plus.</string>
|
||||
<!-- Button declining to paste/share the recovery key, dismissing the warning sheet -->
|
||||
<string name="RecoveryKeyWarningSheetContent__do_not_share_key">Ne pas partager la clé</string>
|
||||
<!-- Button indicating the user wants to proceed with sharing/pasting the recovery key, which shows a final confirmation -->
|
||||
|
||||
@@ -9944,7 +9944,7 @@
|
||||
<!-- Button opening a help article with more information about recovery key safety -->
|
||||
<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>
|
||||
<string name="RecoveryKeyWarningSheetContent__learn_more_period">Saber máis.</string>
|
||||
<!-- Button declining to paste/share the recovery key, dismissing the warning sheet -->
|
||||
<string name="RecoveryKeyWarningSheetContent__do_not_share_key">Non compartir clave</string>
|
||||
<!-- Button indicating the user wants to proceed with sharing/pasting the recovery key, which shows a final confirmation -->
|
||||
|
||||
@@ -9944,7 +9944,7 @@
|
||||
<!-- Button opening a help article with more information about recovery key safety -->
|
||||
<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>
|
||||
<string name="RecoveryKeyWarningSheetContent__learn_more_period">વધુ શીખો.</string>
|
||||
<!-- Button declining to paste/share the recovery key, dismissing the warning sheet -->
|
||||
<string name="RecoveryKeyWarningSheetContent__do_not_share_key">કી શેર કરશો નહીં</string>
|
||||
<!-- Button indicating the user wants to proceed with sharing/pasting the recovery key, which shows a final confirmation -->
|
||||
|
||||
@@ -9944,7 +9944,7 @@
|
||||
<!-- Button opening a help article with more information about recovery key safety -->
|
||||
<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>
|
||||
<string name="RecoveryKeyWarningSheetContent__learn_more_period">और जानें।</string>
|
||||
<!-- Button declining to paste/share the recovery key, dismissing the warning sheet -->
|
||||
<string name="RecoveryKeyWarningSheetContent__do_not_share_key">\'की\' किसी को न बताएं</string>
|
||||
<!-- Button indicating the user wants to proceed with sharing/pasting the recovery key, which shows a final confirmation -->
|
||||
|
||||
@@ -10350,7 +10350,7 @@
|
||||
<!-- Button opening a help article with more information about recovery key safety -->
|
||||
<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>
|
||||
<string name="RecoveryKeyWarningSheetContent__learn_more_period">Saznaj više.</string>
|
||||
<!-- Button declining to paste/share the recovery key, dismissing the warning sheet -->
|
||||
<string name="RecoveryKeyWarningSheetContent__do_not_share_key">Ne dijeli ključ</string>
|
||||
<!-- Button indicating the user wants to proceed with sharing/pasting the recovery key, which shows a final confirmation -->
|
||||
|
||||
@@ -9944,7 +9944,7 @@
|
||||
<!-- Button opening a help article with more information about recovery key safety -->
|
||||
<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>
|
||||
<string name="RecoveryKeyWarningSheetContent__learn_more_period">Tudj meg többet!</string>
|
||||
<!-- Button declining to paste/share the recovery key, dismissing the warning sheet -->
|
||||
<string name="RecoveryKeyWarningSheetContent__do_not_share_key">Ne oszd meg a kulcsot</string>
|
||||
<!-- Button indicating the user wants to proceed with sharing/pasting the recovery key, which shows a final confirmation -->
|
||||
|
||||
@@ -9741,7 +9741,7 @@
|
||||
<!-- Button opening a help article with more information about recovery key safety -->
|
||||
<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>
|
||||
<string name="RecoveryKeyWarningSheetContent__learn_more_period">Pelajari selengkapnya.</string>
|
||||
<!-- Button declining to paste/share the recovery key, dismissing the warning sheet -->
|
||||
<string name="RecoveryKeyWarningSheetContent__do_not_share_key">Jangan bagikan kunci</string>
|
||||
<!-- Button indicating the user wants to proceed with sharing/pasting the recovery key, which shows a final confirmation -->
|
||||
|
||||
@@ -9944,7 +9944,7 @@
|
||||
<!-- Button opening a help article with more information about recovery key safety -->
|
||||
<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>
|
||||
<string name="RecoveryKeyWarningSheetContent__learn_more_period">Scopri di più.</string>
|
||||
<!-- Button declining to paste/share the recovery key, dismissing the warning sheet -->
|
||||
<string name="RecoveryKeyWarningSheetContent__do_not_share_key">Non condividere la chiave</string>
|
||||
<!-- Button indicating the user wants to proceed with sharing/pasting the recovery key, which shows a final confirmation -->
|
||||
|
||||
@@ -10350,7 +10350,7 @@
|
||||
<!-- Button opening a help article with more information about recovery key safety -->
|
||||
<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>
|
||||
<string name="RecoveryKeyWarningSheetContent__learn_more_period">למד עוד.</string>
|
||||
<!-- Button declining to paste/share the recovery key, dismissing the warning sheet -->
|
||||
<string name="RecoveryKeyWarningSheetContent__do_not_share_key">לא לשתף מפתח</string>
|
||||
<!-- Button indicating the user wants to proceed with sharing/pasting the recovery key, which shows a final confirmation -->
|
||||
|
||||
@@ -9741,7 +9741,7 @@
|
||||
<!-- Button opening a help article with more information about recovery key safety -->
|
||||
<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>
|
||||
<string name="RecoveryKeyWarningSheetContent__learn_more_period">さらに詳しく</string>
|
||||
<!-- Button declining to paste/share the recovery key, dismissing the warning sheet -->
|
||||
<string name="RecoveryKeyWarningSheetContent__do_not_share_key">やめる</string>
|
||||
<!-- Button indicating the user wants to proceed with sharing/pasting the recovery key, which shows a final confirmation -->
|
||||
|
||||
@@ -9944,7 +9944,7 @@
|
||||
<!-- Button opening a help article with more information about recovery key safety -->
|
||||
<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>
|
||||
<string name="RecoveryKeyWarningSheetContent__learn_more_period">გაიგე მეტი.</string>
|
||||
<!-- Button declining to paste/share the recovery key, dismissing the warning sheet -->
|
||||
<string name="RecoveryKeyWarningSheetContent__do_not_share_key">არ გააზიარო გასაღები</string>
|
||||
<!-- Button indicating the user wants to proceed with sharing/pasting the recovery key, which shows a final confirmation -->
|
||||
|
||||
@@ -9944,7 +9944,7 @@
|
||||
<!-- Button opening a help article with more information about recovery key safety -->
|
||||
<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>
|
||||
<string name="RecoveryKeyWarningSheetContent__learn_more_period">Толық ақпарат.</string>
|
||||
<!-- Button declining to paste/share the recovery key, dismissing the warning sheet -->
|
||||
<string name="RecoveryKeyWarningSheetContent__do_not_share_key">Кілтті ешкіммен бөліспеу</string>
|
||||
<!-- Button indicating the user wants to proceed with sharing/pasting the recovery key, which shows a final confirmation -->
|
||||
|
||||
@@ -9741,7 +9741,7 @@
|
||||
<!-- Button opening a help article with more information about recovery key safety -->
|
||||
<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>
|
||||
<string name="RecoveryKeyWarningSheetContent__learn_more_period">ស្វែងយល់បន្ថែម។</string>
|
||||
<!-- Button declining to paste/share the recovery key, dismissing the warning sheet -->
|
||||
<string name="RecoveryKeyWarningSheetContent__do_not_share_key">កុំចែករំលែកសោស្តារ</string>
|
||||
<!-- Button indicating the user wants to proceed with sharing/pasting the recovery key, which shows a final confirmation -->
|
||||
|
||||
@@ -9944,7 +9944,7 @@
|
||||
<!-- Button opening a help article with more information about recovery key safety -->
|
||||
<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>
|
||||
<string name="RecoveryKeyWarningSheetContent__learn_more_period">ಇನ್ನಷ್ಟು ತಿಳಿಯಿರಿ.</string>
|
||||
<!-- Button declining to paste/share the recovery key, dismissing the warning sheet -->
|
||||
<string name="RecoveryKeyWarningSheetContent__do_not_share_key">ಕೀ ಅನ್ನು ಹಂಚಿಕೊಳ್ಳಬೇಡಿ</string>
|
||||
<!-- Button indicating the user wants to proceed with sharing/pasting the recovery key, which shows a final confirmation -->
|
||||
|
||||
@@ -4961,7 +4961,7 @@
|
||||
<!-- Description text explaining how to unlock Signal -->
|
||||
<string name="prompt_passphrase_activity__use_your_android_device">Signal을 잠금 해제하려면 Android 기기 잠금 설정을 사용하세요.</string>
|
||||
<!-- Text shown in a dialog that further explains how to unlock Signal by using the same unlocking methods that are used to unlock their own device -->
|
||||
<string name="prompt_passphrase_activity__screen_lock_is_on">화면 잠금이 켜져 있으며 Signal이 기기 잠금 설정으로 안전하게 보호되고 있습니다. Signal을 얼굴 잠금 해제, 지문 잠금 해제, PIN, 암호, 패턴 등 평소 휴대폰을 잠금 해제하는 것과 같은 방식으로 잠금 해제하세요.</string>
|
||||
<string name="prompt_passphrase_activity__screen_lock_is_on">화면 잠금이 켜져 있으며 Signal이 기기 잠금 설정으로 안전하게 보호되고 있습니다. 얼굴 잠금 해제, 지문 잠금 해제, PIN, 비밀번호, 패턴 등 평소 휴대폰을 잠금 해제하는 것과 같은 방식으로 Signal을 잠금 해제하세요.</string>
|
||||
<!-- Button in a dialog that will contact Signal support if pressed -->
|
||||
<string name="prompt_passphrase_activity__contact_support">지원팀에 문의</string>
|
||||
<!-- Button text to try again after unlocking has previously failed -->
|
||||
@@ -9741,7 +9741,7 @@
|
||||
<!-- Button opening a help article with more information about recovery key safety -->
|
||||
<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>
|
||||
<string name="RecoveryKeyWarningSheetContent__learn_more_period">더 알아보세요.</string>
|
||||
<!-- Button declining to paste/share the recovery key, dismissing the warning sheet -->
|
||||
<string name="RecoveryKeyWarningSheetContent__do_not_share_key">복구 키 공유하지 않기</string>
|
||||
<!-- Button indicating the user wants to proceed with sharing/pasting the recovery key, which shows a final confirmation -->
|
||||
|
||||
@@ -9944,7 +9944,7 @@
|
||||
<!-- Button opening a help article with more information about recovery key safety -->
|
||||
<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>
|
||||
<string name="RecoveryKeyWarningSheetContent__learn_more_period">Кененирээк маалымат.</string>
|
||||
<!-- Button declining to paste/share the recovery key, dismissing the warning sheet -->
|
||||
<string name="RecoveryKeyWarningSheetContent__do_not_share_key">Ачкычты бөлүшпөйм</string>
|
||||
<!-- Button indicating the user wants to proceed with sharing/pasting the recovery key, which shows a final confirmation -->
|
||||
|
||||
@@ -10350,7 +10350,7 @@
|
||||
<!-- Button opening a help article with more information about recovery key safety -->
|
||||
<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>
|
||||
<string name="RecoveryKeyWarningSheetContent__learn_more_period">Sužinokite daugiau.</string>
|
||||
<!-- Button declining to paste/share the recovery key, dismissing the warning sheet -->
|
||||
<string name="RecoveryKeyWarningSheetContent__do_not_share_key">Nesidalinkite raktu</string>
|
||||
<!-- Button indicating the user wants to proceed with sharing/pasting the recovery key, which shows a final confirmation -->
|
||||
|
||||
@@ -10147,7 +10147,7 @@
|
||||
<!-- Button opening a help article with more information about recovery key safety -->
|
||||
<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>
|
||||
<string name="RecoveryKeyWarningSheetContent__learn_more_period">Uzziniet vairāk.</string>
|
||||
<!-- Button declining to paste/share the recovery key, dismissing the warning sheet -->
|
||||
<string name="RecoveryKeyWarningSheetContent__do_not_share_key">Nenorādīt atslēgu</string>
|
||||
<!-- Button indicating the user wants to proceed with sharing/pasting the recovery key, which shows a final confirmation -->
|
||||
|
||||
@@ -9944,7 +9944,7 @@
|
||||
<!-- Button opening a help article with more information about recovery key safety -->
|
||||
<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>
|
||||
<string name="RecoveryKeyWarningSheetContent__learn_more_period">Дознај повеќе.</string>
|
||||
<!-- Button declining to paste/share the recovery key, dismissing the warning sheet -->
|
||||
<string name="RecoveryKeyWarningSheetContent__do_not_share_key">Не го споделувај клучот</string>
|
||||
<!-- Button indicating the user wants to proceed with sharing/pasting the recovery key, which shows a final confirmation -->
|
||||
|
||||
@@ -9944,7 +9944,7 @@
|
||||
<!-- Button opening a help article with more information about recovery key safety -->
|
||||
<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>
|
||||
<string name="RecoveryKeyWarningSheetContent__learn_more_period">കൂടുതൽ അറിയുക.</string>
|
||||
<!-- Button declining to paste/share the recovery key, dismissing the warning sheet -->
|
||||
<string name="RecoveryKeyWarningSheetContent__do_not_share_key">കീ പങ്കിടരുത്</string>
|
||||
<!-- Button indicating the user wants to proceed with sharing/pasting the recovery key, which shows a final confirmation -->
|
||||
|
||||
@@ -9944,7 +9944,7 @@
|
||||
<!-- Button opening a help article with more information about recovery key safety -->
|
||||
<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>
|
||||
<string name="RecoveryKeyWarningSheetContent__learn_more_period">अधिक जाणा.</string>
|
||||
<!-- Button declining to paste/share the recovery key, dismissing the warning sheet -->
|
||||
<string name="RecoveryKeyWarningSheetContent__do_not_share_key">की देऊ नका</string>
|
||||
<!-- Button indicating the user wants to proceed with sharing/pasting the recovery key, which shows a final confirmation -->
|
||||
|
||||
@@ -9741,7 +9741,7 @@
|
||||
<!-- Button opening a help article with more information about recovery key safety -->
|
||||
<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>
|
||||
<string name="RecoveryKeyWarningSheetContent__learn_more_period">Ketahui lebih lanjut.</string>
|
||||
<!-- Button declining to paste/share the recovery key, dismissing the warning sheet -->
|
||||
<string name="RecoveryKeyWarningSheetContent__do_not_share_key">Jangan kongsi kunci</string>
|
||||
<!-- Button indicating the user wants to proceed with sharing/pasting the recovery key, which shows a final confirmation -->
|
||||
|
||||
@@ -9741,7 +9741,7 @@
|
||||
<!-- Button opening a help article with more information about recovery key safety -->
|
||||
<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>
|
||||
<string name="RecoveryKeyWarningSheetContent__learn_more_period">ပိုမိုလေ့လာရန်။</string>
|
||||
<!-- Button declining to paste/share the recovery key, dismissing the warning sheet -->
|
||||
<string name="RecoveryKeyWarningSheetContent__do_not_share_key">ကီးကို မျှဝေခြင်းမပြုပါနှင့်</string>
|
||||
<!-- Button indicating the user wants to proceed with sharing/pasting the recovery key, which shows a final confirmation -->
|
||||
|
||||
@@ -9944,7 +9944,7 @@
|
||||
<!-- Button opening a help article with more information about recovery key safety -->
|
||||
<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>
|
||||
<string name="RecoveryKeyWarningSheetContent__learn_more_period">Lær mer.</string>
|
||||
<!-- Button declining to paste/share the recovery key, dismissing the warning sheet -->
|
||||
<string name="RecoveryKeyWarningSheetContent__do_not_share_key">Ikke del koden</string>
|
||||
<!-- Button indicating the user wants to proceed with sharing/pasting the recovery key, which shows a final confirmation -->
|
||||
|
||||
@@ -9944,7 +9944,7 @@
|
||||
<!-- Button opening a help article with more information about recovery key safety -->
|
||||
<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>
|
||||
<string name="RecoveryKeyWarningSheetContent__learn_more_period">Meer lezen.</string>
|
||||
<!-- Button declining to paste/share the recovery key, dismissing the warning sheet -->
|
||||
<string name="RecoveryKeyWarningSheetContent__do_not_share_key">Sleutel niet delen</string>
|
||||
<!-- Button indicating the user wants to proceed with sharing/pasting the recovery key, which shows a final confirmation -->
|
||||
|
||||
@@ -9944,7 +9944,7 @@
|
||||
<!-- Button opening a help article with more information about recovery key safety -->
|
||||
<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>
|
||||
<string name="RecoveryKeyWarningSheetContent__learn_more_period">ਹੋਰ ਜਾਣੋ।</string>
|
||||
<!-- Button declining to paste/share the recovery key, dismissing the warning sheet -->
|
||||
<string name="RecoveryKeyWarningSheetContent__do_not_share_key">ਕੁੰਜੀ ਨੂੰ ਸਾਂਝਾ ਨਾ ਕਰੋ</string>
|
||||
<!-- Button indicating the user wants to proceed with sharing/pasting the recovery key, which shows a final confirmation -->
|
||||
|
||||
@@ -10350,7 +10350,7 @@
|
||||
<!-- Button opening a help article with more information about recovery key safety -->
|
||||
<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>
|
||||
<string name="RecoveryKeyWarningSheetContent__learn_more_period">Dowiedz się więcej.</string>
|
||||
<!-- Button declining to paste/share the recovery key, dismissing the warning sheet -->
|
||||
<string name="RecoveryKeyWarningSheetContent__do_not_share_key">Nie udostępniaj kodu</string>
|
||||
<!-- Button indicating the user wants to proceed with sharing/pasting the recovery key, which shows a final confirmation -->
|
||||
|
||||
@@ -9944,7 +9944,7 @@
|
||||
<!-- Button opening a help article with more information about recovery key safety -->
|
||||
<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>
|
||||
<string name="RecoveryKeyWarningSheetContent__learn_more_period">Saiba mais.</string>
|
||||
<!-- Button declining to paste/share the recovery key, dismissing the warning sheet -->
|
||||
<string name="RecoveryKeyWarningSheetContent__do_not_share_key">Não compartilhar chave</string>
|
||||
<!-- Button indicating the user wants to proceed with sharing/pasting the recovery key, which shows a final confirmation -->
|
||||
|
||||
@@ -9944,7 +9944,7 @@
|
||||
<!-- Button opening a help article with more information about recovery key safety -->
|
||||
<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>
|
||||
<string name="RecoveryKeyWarningSheetContent__learn_more_period">Saber mais</string>
|
||||
<!-- Button declining to paste/share the recovery key, dismissing the warning sheet -->
|
||||
<string name="RecoveryKeyWarningSheetContent__do_not_share_key">Não partilhar chave</string>
|
||||
<!-- Button indicating the user wants to proceed with sharing/pasting the recovery key, which shows a final confirmation -->
|
||||
|
||||
@@ -10147,7 +10147,7 @@
|
||||
<!-- Button opening a help article with more information about recovery key safety -->
|
||||
<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>
|
||||
<string name="RecoveryKeyWarningSheetContent__learn_more_period">Află mai multe.</string>
|
||||
<!-- Button declining to paste/share the recovery key, dismissing the warning sheet -->
|
||||
<string name="RecoveryKeyWarningSheetContent__do_not_share_key">Nu transmite codul de recuperare</string>
|
||||
<!-- Button indicating the user wants to proceed with sharing/pasting the recovery key, which shows a final confirmation -->
|
||||
|
||||
@@ -10350,7 +10350,7 @@
|
||||
<!-- Button opening a help article with more information about recovery key safety -->
|
||||
<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>
|
||||
<string name="RecoveryKeyWarningSheetContent__learn_more_period">Узнать больше.</string>
|
||||
<!-- Button declining to paste/share the recovery key, dismissing the warning sheet -->
|
||||
<string name="RecoveryKeyWarningSheetContent__do_not_share_key">Не делиться ключом</string>
|
||||
<!-- Button indicating the user wants to proceed with sharing/pasting the recovery key, which shows a final confirmation -->
|
||||
|
||||
@@ -10350,7 +10350,7 @@
|
||||
<!-- Button opening a help article with more information about recovery key safety -->
|
||||
<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>
|
||||
<string name="RecoveryKeyWarningSheetContent__learn_more_period">Dozvedieť sa viac.</string>
|
||||
<!-- Button declining to paste/share the recovery key, dismissing the warning sheet -->
|
||||
<string name="RecoveryKeyWarningSheetContent__do_not_share_key">Nezdieľať kľúč</string>
|
||||
<!-- Button indicating the user wants to proceed with sharing/pasting the recovery key, which shows a final confirmation -->
|
||||
|
||||
@@ -10350,7 +10350,7 @@
|
||||
<!-- Button opening a help article with more information about recovery key safety -->
|
||||
<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>
|
||||
<string name="RecoveryKeyWarningSheetContent__learn_more_period">Izvedite več.</string>
|
||||
<!-- Button declining to paste/share the recovery key, dismissing the warning sheet -->
|
||||
<string name="RecoveryKeyWarningSheetContent__do_not_share_key">Ne deli ključa</string>
|
||||
<!-- Button indicating the user wants to proceed with sharing/pasting the recovery key, which shows a final confirmation -->
|
||||
|
||||
@@ -9944,7 +9944,7 @@
|
||||
<!-- Button opening a help article with more information about recovery key safety -->
|
||||
<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>
|
||||
<string name="RecoveryKeyWarningSheetContent__learn_more_period">Mësoni më tepër.</string>
|
||||
<!-- Button declining to paste/share the recovery key, dismissing the warning sheet -->
|
||||
<string name="RecoveryKeyWarningSheetContent__do_not_share_key">Mos e ndaj kodin</string>
|
||||
<!-- Button indicating the user wants to proceed with sharing/pasting the recovery key, which shows a final confirmation -->
|
||||
|
||||
@@ -9944,7 +9944,7 @@
|
||||
<!-- Button opening a help article with more information about recovery key safety -->
|
||||
<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>
|
||||
<string name="RecoveryKeyWarningSheetContent__learn_more_period">Сазнајте више.</string>
|
||||
<!-- Button declining to paste/share the recovery key, dismissing the warning sheet -->
|
||||
<string name="RecoveryKeyWarningSheetContent__do_not_share_key">Не дели кључ</string>
|
||||
<!-- Button indicating the user wants to proceed with sharing/pasting the recovery key, which shows a final confirmation -->
|
||||
|
||||
@@ -9944,7 +9944,7 @@
|
||||
<!-- Button opening a help article with more information about recovery key safety -->
|
||||
<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>
|
||||
<string name="RecoveryKeyWarningSheetContent__learn_more_period">Läs mer.</string>
|
||||
<!-- Button declining to paste/share the recovery key, dismissing the warning sheet -->
|
||||
<string name="RecoveryKeyWarningSheetContent__do_not_share_key">Dela inte nyckel</string>
|
||||
<!-- Button indicating the user wants to proceed with sharing/pasting the recovery key, which shows a final confirmation -->
|
||||
|
||||
@@ -9944,7 +9944,7 @@
|
||||
<!-- Button opening a help article with more information about recovery key safety -->
|
||||
<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>
|
||||
<string name="RecoveryKeyWarningSheetContent__learn_more_period">Pata maelezo zaidi.</string>
|
||||
<!-- Button declining to paste/share the recovery key, dismissing the warning sheet -->
|
||||
<string name="RecoveryKeyWarningSheetContent__do_not_share_key">Usishiriki ufunguo wa kurejesha akaunti</string>
|
||||
<!-- Button indicating the user wants to proceed with sharing/pasting the recovery key, which shows a final confirmation -->
|
||||
|
||||
@@ -9944,7 +9944,7 @@
|
||||
<!-- Button opening a help article with more information about recovery key safety -->
|
||||
<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>
|
||||
<string name="RecoveryKeyWarningSheetContent__learn_more_period">மேலும் அறிக.</string>
|
||||
<!-- Button declining to paste/share the recovery key, dismissing the warning sheet -->
|
||||
<string name="RecoveryKeyWarningSheetContent__do_not_share_key">குறியீட்டைப் பகிராதீர்கள்</string>
|
||||
<!-- Button indicating the user wants to proceed with sharing/pasting the recovery key, which shows a final confirmation -->
|
||||
|
||||
@@ -9944,7 +9944,7 @@
|
||||
<!-- Button opening a help article with more information about recovery key safety -->
|
||||
<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>
|
||||
<string name="RecoveryKeyWarningSheetContent__learn_more_period">ఇంకా నేర్చుకో.</string>
|
||||
<!-- Button declining to paste/share the recovery key, dismissing the warning sheet -->
|
||||
<string name="RecoveryKeyWarningSheetContent__do_not_share_key">\'కీ\'ని పంచుకోవద్దు</string>
|
||||
<!-- Button indicating the user wants to proceed with sharing/pasting the recovery key, which shows a final confirmation -->
|
||||
|
||||
@@ -9741,7 +9741,7 @@
|
||||
<!-- Button opening a help article with more information about recovery key safety -->
|
||||
<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>
|
||||
<string name="RecoveryKeyWarningSheetContent__learn_more_period">เรียนรู้เพิ่มเติม</string>
|
||||
<!-- Button declining to paste/share the recovery key, dismissing the warning sheet -->
|
||||
<string name="RecoveryKeyWarningSheetContent__do_not_share_key">ไม่แชร์กุญแจ</string>
|
||||
<!-- Button indicating the user wants to proceed with sharing/pasting the recovery key, which shows a final confirmation -->
|
||||
|
||||
@@ -9944,7 +9944,7 @@
|
||||
<!-- Button opening a help article with more information about recovery key safety -->
|
||||
<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>
|
||||
<string name="RecoveryKeyWarningSheetContent__learn_more_period">Matuto pa.</string>
|
||||
<!-- Button declining to paste/share the recovery key, dismissing the warning sheet -->
|
||||
<string name="RecoveryKeyWarningSheetContent__do_not_share_key">Huwag i-share ang key</string>
|
||||
<!-- Button indicating the user wants to proceed with sharing/pasting the recovery key, which shows a final confirmation -->
|
||||
|
||||
@@ -9944,7 +9944,7 @@
|
||||
<!-- Button opening a help article with more information about recovery key safety -->
|
||||
<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>
|
||||
<string name="RecoveryKeyWarningSheetContent__learn_more_period">Dahasını öğrenin.</string>
|
||||
<!-- Button declining to paste/share the recovery key, dismissing the warning sheet -->
|
||||
<string name="RecoveryKeyWarningSheetContent__do_not_share_key">Anahtarı paylaşma</string>
|
||||
<!-- Button indicating the user wants to proceed with sharing/pasting the recovery key, which shows a final confirmation -->
|
||||
|
||||
@@ -9741,7 +9741,7 @@
|
||||
<!-- Button opening a help article with more information about recovery key safety -->
|
||||
<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>
|
||||
<string name="RecoveryKeyWarningSheetContent__learn_more_period">تېخىمۇ كۆپ بىلدۈرگۈ</string>
|
||||
<!-- Button declining to paste/share the recovery key, dismissing the warning sheet -->
|
||||
<string name="RecoveryKeyWarningSheetContent__do_not_share_key">ئاچقۇچنى ئورتاقلاشماڭ</string>
|
||||
<!-- Button indicating the user wants to proceed with sharing/pasting the recovery key, which shows a final confirmation -->
|
||||
|
||||
@@ -10350,7 +10350,7 @@
|
||||
<!-- Button opening a help article with more information about recovery key safety -->
|
||||
<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>
|
||||
<string name="RecoveryKeyWarningSheetContent__learn_more_period">Докладніше.</string>
|
||||
<!-- Button declining to paste/share the recovery key, dismissing the warning sheet -->
|
||||
<string name="RecoveryKeyWarningSheetContent__do_not_share_key">Не ділитися ключем</string>
|
||||
<!-- Button indicating the user wants to proceed with sharing/pasting the recovery key, which shows a final confirmation -->
|
||||
|
||||
@@ -9944,7 +9944,7 @@
|
||||
<!-- Button opening a help article with more information about recovery key safety -->
|
||||
<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>
|
||||
<string name="RecoveryKeyWarningSheetContent__learn_more_period">اورجانیے.</string>
|
||||
<!-- Button declining to paste/share the recovery key, dismissing the warning sheet -->
|
||||
<string name="RecoveryKeyWarningSheetContent__do_not_share_key">کیی شیئر مت کریں</string>
|
||||
<!-- Button indicating the user wants to proceed with sharing/pasting the recovery key, which shows a final confirmation -->
|
||||
|
||||
@@ -9741,7 +9741,7 @@
|
||||
<!-- Button opening a help article with more information about recovery key safety -->
|
||||
<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>
|
||||
<string name="RecoveryKeyWarningSheetContent__learn_more_period">Tìm hiểu thêm.</string>
|
||||
<!-- Button declining to paste/share the recovery key, dismissing the warning sheet -->
|
||||
<string name="RecoveryKeyWarningSheetContent__do_not_share_key">Không chia sẻ mã khóa</string>
|
||||
<!-- Button indicating the user wants to proceed with sharing/pasting the recovery key, which shows a final confirmation -->
|
||||
|
||||
@@ -9741,7 +9741,7 @@
|
||||
<!-- Button opening a help article with more information about recovery key safety -->
|
||||
<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>
|
||||
<string name="RecoveryKeyWarningSheetContent__learn_more_period">了解詳情。</string>
|
||||
<!-- Button declining to paste/share the recovery key, dismissing the warning sheet -->
|
||||
<string name="RecoveryKeyWarningSheetContent__do_not_share_key">唔好將金鑰講俾人知</string>
|
||||
<!-- Button indicating the user wants to proceed with sharing/pasting the recovery key, which shows a final confirmation -->
|
||||
|
||||
@@ -9741,7 +9741,7 @@
|
||||
<!-- Button opening a help article with more information about recovery key safety -->
|
||||
<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>
|
||||
<string name="RecoveryKeyWarningSheetContent__learn_more_period">了解更多。</string>
|
||||
<!-- Button declining to paste/share the recovery key, dismissing the warning sheet -->
|
||||
<string name="RecoveryKeyWarningSheetContent__do_not_share_key">请勿分享密钥</string>
|
||||
<!-- Button indicating the user wants to proceed with sharing/pasting the recovery key, which shows a final confirmation -->
|
||||
|
||||
@@ -9741,7 +9741,7 @@
|
||||
<!-- Button opening a help article with more information about recovery key safety -->
|
||||
<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>
|
||||
<string name="RecoveryKeyWarningSheetContent__learn_more_period">學習更多。</string>
|
||||
<!-- Button declining to paste/share the recovery key, dismissing the warning sheet -->
|
||||
<string name="RecoveryKeyWarningSheetContent__do_not_share_key">切勿分享金鑰</string>
|
||||
<!-- Button indicating the user wants to proceed with sharing/pasting the recovery key, which shows a final confirmation -->
|
||||
|
||||
@@ -9741,7 +9741,7 @@
|
||||
<!-- Button opening a help article with more information about recovery key safety -->
|
||||
<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>
|
||||
<string name="RecoveryKeyWarningSheetContent__learn_more_period">學習更多。</string>
|
||||
<!-- Button declining to paste/share the recovery key, dismissing the warning sheet -->
|
||||
<string name="RecoveryKeyWarningSheetContent__do_not_share_key">切勿分享金鑰</string>
|
||||
<!-- Button indicating the user wants to proceed with sharing/pasting the recovery key, which shows a final confirmation -->
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
service_ips=new String[]{"13.248.212.111","76.223.92.165"}
|
||||
storage_ips=new String[]{"142.251.45.211"}
|
||||
storage_ips=new String[]{"142.250.188.19"}
|
||||
cdn_ips=new String[]{"18.161.21.122","18.161.21.4","18.161.21.66","18.161.21.70"}
|
||||
cdn2_ips=new String[]{"104.18.10.47","104.18.11.47"}
|
||||
cdn3_ips=new String[]{"104.18.10.47","104.18.11.47"}
|
||||
|
||||
@@ -7,11 +7,11 @@
|
||||
<!-- Confirmation button that discards the user\'s image edits. -->
|
||||
<string name="MediaSendDialogs__discard">Wys af</string>
|
||||
<!-- Accessibility label for the row that lets the user add a text message to accompany the media being sent. -->
|
||||
<string name="AddAMessageRow__add_a_message">Add a message</string>
|
||||
<string name="AddAMessageRow__add_a_message">Voeg ’n boodskap toe</string>
|
||||
<!-- Accessibility description for the button that opens the emoji keyboard. -->
|
||||
<string name="AddAMessageRow__open_emoji_keyboard">Open emoji keyboard</string>
|
||||
<!-- Placeholder text shown in the add-a-message row before the user has entered any message text. -->
|
||||
<string name="AddAMessageRow__message">Message</string>
|
||||
<string name="AddAMessageRow__message">Boodskap</string>
|
||||
<!-- Accessibility description for the button that advances to the next step in the media send flow. -->
|
||||
<string name="AddAMessageRow__next">Next</string>
|
||||
<string name="AddAMessageRow__next">Volgende</string>
|
||||
</resources>
|
||||
|
||||
@@ -7,11 +7,11 @@
|
||||
<!-- Confirmation button that discards the user\'s image edits. -->
|
||||
<string name="MediaSendDialogs__discard">تجاهل</string>
|
||||
<!-- Accessibility label for the row that lets the user add a text message to accompany the media being sent. -->
|
||||
<string name="AddAMessageRow__add_a_message">Add a message</string>
|
||||
<string name="AddAMessageRow__add_a_message">إضافة رسالة</string>
|
||||
<!-- Accessibility description for the button that opens the emoji keyboard. -->
|
||||
<string name="AddAMessageRow__open_emoji_keyboard">Open emoji keyboard</string>
|
||||
<!-- Placeholder text shown in the add-a-message row before the user has entered any message text. -->
|
||||
<string name="AddAMessageRow__message">Message</string>
|
||||
<string name="AddAMessageRow__message">رسالة</string>
|
||||
<!-- Accessibility description for the button that advances to the next step in the media send flow. -->
|
||||
<string name="AddAMessageRow__next">Next</string>
|
||||
<string name="AddAMessageRow__next">التالي</string>
|
||||
</resources>
|
||||
|
||||
@@ -7,11 +7,11 @@
|
||||
<!-- Confirmation button that discards the user\'s image edits. -->
|
||||
<string name="MediaSendDialogs__discard">Sil</string>
|
||||
<!-- Accessibility label for the row that lets the user add a text message to accompany the media being sent. -->
|
||||
<string name="AddAMessageRow__add_a_message">Add a message</string>
|
||||
<string name="AddAMessageRow__add_a_message">Bir mesaj əlavə et</string>
|
||||
<!-- Accessibility description for the button that opens the emoji keyboard. -->
|
||||
<string name="AddAMessageRow__open_emoji_keyboard">Open emoji keyboard</string>
|
||||
<!-- Placeholder text shown in the add-a-message row before the user has entered any message text. -->
|
||||
<string name="AddAMessageRow__message">Message</string>
|
||||
<string name="AddAMessageRow__message">Mesaj</string>
|
||||
<!-- Accessibility description for the button that advances to the next step in the media send flow. -->
|
||||
<string name="AddAMessageRow__next">Next</string>
|
||||
<string name="AddAMessageRow__next">Növbəti</string>
|
||||
</resources>
|
||||
|
||||
@@ -7,11 +7,11 @@
|
||||
<!-- Confirmation button that discards the user\'s image edits. -->
|
||||
<string name="MediaSendDialogs__discard">Скінуць</string>
|
||||
<!-- Accessibility label for the row that lets the user add a text message to accompany the media being sent. -->
|
||||
<string name="AddAMessageRow__add_a_message">Add a message</string>
|
||||
<string name="AddAMessageRow__add_a_message">Дадаць паведамленне</string>
|
||||
<!-- Accessibility description for the button that opens the emoji keyboard. -->
|
||||
<string name="AddAMessageRow__open_emoji_keyboard">Open emoji keyboard</string>
|
||||
<!-- Placeholder text shown in the add-a-message row before the user has entered any message text. -->
|
||||
<string name="AddAMessageRow__message">Message</string>
|
||||
<string name="AddAMessageRow__message">Паведамленне</string>
|
||||
<!-- Accessibility description for the button that advances to the next step in the media send flow. -->
|
||||
<string name="AddAMessageRow__next">Next</string>
|
||||
<string name="AddAMessageRow__next">Далей</string>
|
||||
</resources>
|
||||
|
||||
@@ -7,11 +7,11 @@
|
||||
<!-- Confirmation button that discards the user\'s image edits. -->
|
||||
<string name="MediaSendDialogs__discard">Отхвърляне</string>
|
||||
<!-- Accessibility label for the row that lets the user add a text message to accompany the media being sent. -->
|
||||
<string name="AddAMessageRow__add_a_message">Add a message</string>
|
||||
<string name="AddAMessageRow__add_a_message">Добави съобщение</string>
|
||||
<!-- Accessibility description for the button that opens the emoji keyboard. -->
|
||||
<string name="AddAMessageRow__open_emoji_keyboard">Open emoji keyboard</string>
|
||||
<!-- Placeholder text shown in the add-a-message row before the user has entered any message text. -->
|
||||
<string name="AddAMessageRow__message">Message</string>
|
||||
<string name="AddAMessageRow__message">Съобщение</string>
|
||||
<!-- Accessibility description for the button that advances to the next step in the media send flow. -->
|
||||
<string name="AddAMessageRow__next">Next</string>
|
||||
<string name="AddAMessageRow__next">Напред</string>
|
||||
</resources>
|
||||
|
||||
@@ -7,11 +7,11 @@
|
||||
<!-- Confirmation button that discards the user\'s image edits. -->
|
||||
<string name="MediaSendDialogs__discard">বাতিল করুন</string>
|
||||
<!-- Accessibility label for the row that lets the user add a text message to accompany the media being sent. -->
|
||||
<string name="AddAMessageRow__add_a_message">Add a message</string>
|
||||
<string name="AddAMessageRow__add_a_message">একটি বার্তা যোগ করুন</string>
|
||||
<!-- Accessibility description for the button that opens the emoji keyboard. -->
|
||||
<string name="AddAMessageRow__open_emoji_keyboard">Open emoji keyboard</string>
|
||||
<!-- Placeholder text shown in the add-a-message row before the user has entered any message text. -->
|
||||
<string name="AddAMessageRow__message">Message</string>
|
||||
<string name="AddAMessageRow__message">বার্তা</string>
|
||||
<!-- Accessibility description for the button that advances to the next step in the media send flow. -->
|
||||
<string name="AddAMessageRow__next">Next</string>
|
||||
<string name="AddAMessageRow__next">পরবর্তী</string>
|
||||
</resources>
|
||||
|
||||
@@ -7,11 +7,11 @@
|
||||
<!-- Confirmation button that discards the user\'s image edits. -->
|
||||
<string name="MediaSendDialogs__discard">Poništi</string>
|
||||
<!-- Accessibility label for the row that lets the user add a text message to accompany the media being sent. -->
|
||||
<string name="AddAMessageRow__add_a_message">Add a message</string>
|
||||
<string name="AddAMessageRow__add_a_message">Napiši poruku</string>
|
||||
<!-- Accessibility description for the button that opens the emoji keyboard. -->
|
||||
<string name="AddAMessageRow__open_emoji_keyboard">Open emoji keyboard</string>
|
||||
<!-- Placeholder text shown in the add-a-message row before the user has entered any message text. -->
|
||||
<string name="AddAMessageRow__message">Message</string>
|
||||
<string name="AddAMessageRow__message">Poruka</string>
|
||||
<!-- Accessibility description for the button that advances to the next step in the media send flow. -->
|
||||
<string name="AddAMessageRow__next">Next</string>
|
||||
<string name="AddAMessageRow__next">Dalje</string>
|
||||
</resources>
|
||||
|
||||
@@ -7,11 +7,11 @@
|
||||
<!-- Confirmation button that discards the user\'s image edits. -->
|
||||
<string name="MediaSendDialogs__discard">Descarta</string>
|
||||
<!-- Accessibility label for the row that lets the user add a text message to accompany the media being sent. -->
|
||||
<string name="AddAMessageRow__add_a_message">Add a message</string>
|
||||
<string name="AddAMessageRow__add_a_message">Afegiu-hi un missatge</string>
|
||||
<!-- Accessibility description for the button that opens the emoji keyboard. -->
|
||||
<string name="AddAMessageRow__open_emoji_keyboard">Open emoji keyboard</string>
|
||||
<!-- Placeholder text shown in the add-a-message row before the user has entered any message text. -->
|
||||
<string name="AddAMessageRow__message">Message</string>
|
||||
<string name="AddAMessageRow__message">Missatge</string>
|
||||
<!-- Accessibility description for the button that advances to the next step in the media send flow. -->
|
||||
<string name="AddAMessageRow__next">Next</string>
|
||||
<string name="AddAMessageRow__next">Següent</string>
|
||||
</resources>
|
||||
|
||||
@@ -7,11 +7,11 @@
|
||||
<!-- Confirmation button that discards the user\'s image edits. -->
|
||||
<string name="MediaSendDialogs__discard">Zahodit</string>
|
||||
<!-- Accessibility label for the row that lets the user add a text message to accompany the media being sent. -->
|
||||
<string name="AddAMessageRow__add_a_message">Add a message</string>
|
||||
<string name="AddAMessageRow__add_a_message">Přidat zprávu</string>
|
||||
<!-- Accessibility description for the button that opens the emoji keyboard. -->
|
||||
<string name="AddAMessageRow__open_emoji_keyboard">Open emoji keyboard</string>
|
||||
<!-- Placeholder text shown in the add-a-message row before the user has entered any message text. -->
|
||||
<string name="AddAMessageRow__message">Message</string>
|
||||
<string name="AddAMessageRow__message">Zpráva</string>
|
||||
<!-- Accessibility description for the button that advances to the next step in the media send flow. -->
|
||||
<string name="AddAMessageRow__next">Next</string>
|
||||
<string name="AddAMessageRow__next">Další</string>
|
||||
</resources>
|
||||
|
||||
@@ -7,11 +7,11 @@
|
||||
<!-- Confirmation button that discards the user\'s image edits. -->
|
||||
<string name="MediaSendDialogs__discard">Kassér</string>
|
||||
<!-- Accessibility label for the row that lets the user add a text message to accompany the media being sent. -->
|
||||
<string name="AddAMessageRow__add_a_message">Add a message</string>
|
||||
<string name="AddAMessageRow__add_a_message">Tilføj en besked</string>
|
||||
<!-- Accessibility description for the button that opens the emoji keyboard. -->
|
||||
<string name="AddAMessageRow__open_emoji_keyboard">Open emoji keyboard</string>
|
||||
<!-- Placeholder text shown in the add-a-message row before the user has entered any message text. -->
|
||||
<string name="AddAMessageRow__message">Message</string>
|
||||
<string name="AddAMessageRow__message">Besked</string>
|
||||
<!-- Accessibility description for the button that advances to the next step in the media send flow. -->
|
||||
<string name="AddAMessageRow__next">Next</string>
|
||||
<string name="AddAMessageRow__next">Næste</string>
|
||||
</resources>
|
||||
|
||||
@@ -7,11 +7,11 @@
|
||||
<!-- Confirmation button that discards the user\'s image edits. -->
|
||||
<string name="MediaSendDialogs__discard">Verwerfen</string>
|
||||
<!-- Accessibility label for the row that lets the user add a text message to accompany the media being sent. -->
|
||||
<string name="AddAMessageRow__add_a_message">Add a message</string>
|
||||
<string name="AddAMessageRow__add_a_message">Nachricht hinzufügen</string>
|
||||
<!-- Accessibility description for the button that opens the emoji keyboard. -->
|
||||
<string name="AddAMessageRow__open_emoji_keyboard">Open emoji keyboard</string>
|
||||
<!-- Placeholder text shown in the add-a-message row before the user has entered any message text. -->
|
||||
<string name="AddAMessageRow__message">Message</string>
|
||||
<string name="AddAMessageRow__message">Nachricht</string>
|
||||
<!-- Accessibility description for the button that advances to the next step in the media send flow. -->
|
||||
<string name="AddAMessageRow__next">Next</string>
|
||||
<string name="AddAMessageRow__next">Weiter</string>
|
||||
</resources>
|
||||
|
||||
@@ -7,11 +7,11 @@
|
||||
<!-- Confirmation button that discards the user\'s image edits. -->
|
||||
<string name="MediaSendDialogs__discard">Απόρριψη</string>
|
||||
<!-- Accessibility label for the row that lets the user add a text message to accompany the media being sent. -->
|
||||
<string name="AddAMessageRow__add_a_message">Add a message</string>
|
||||
<string name="AddAMessageRow__add_a_message">Προσθήκη μηνύματος</string>
|
||||
<!-- Accessibility description for the button that opens the emoji keyboard. -->
|
||||
<string name="AddAMessageRow__open_emoji_keyboard">Open emoji keyboard</string>
|
||||
<!-- Placeholder text shown in the add-a-message row before the user has entered any message text. -->
|
||||
<string name="AddAMessageRow__message">Message</string>
|
||||
<string name="AddAMessageRow__message">Μήνυμα</string>
|
||||
<!-- Accessibility description for the button that advances to the next step in the media send flow. -->
|
||||
<string name="AddAMessageRow__next">Next</string>
|
||||
<string name="AddAMessageRow__next">Επόμενο</string>
|
||||
</resources>
|
||||
|
||||
@@ -7,11 +7,11 @@
|
||||
<!-- Confirmation button that discards the user\'s image edits. -->
|
||||
<string name="MediaSendDialogs__discard">Descartar</string>
|
||||
<!-- Accessibility label for the row that lets the user add a text message to accompany the media being sent. -->
|
||||
<string name="AddAMessageRow__add_a_message">Add a message</string>
|
||||
<string name="AddAMessageRow__add_a_message">Añadir un mensaje</string>
|
||||
<!-- Accessibility description for the button that opens the emoji keyboard. -->
|
||||
<string name="AddAMessageRow__open_emoji_keyboard">Open emoji keyboard</string>
|
||||
<!-- Placeholder text shown in the add-a-message row before the user has entered any message text. -->
|
||||
<string name="AddAMessageRow__message">Message</string>
|
||||
<string name="AddAMessageRow__message">Enviar mensaje</string>
|
||||
<!-- Accessibility description for the button that advances to the next step in the media send flow. -->
|
||||
<string name="AddAMessageRow__next">Next</string>
|
||||
<string name="AddAMessageRow__next">Siguiente</string>
|
||||
</resources>
|
||||
|
||||
@@ -7,11 +7,11 @@
|
||||
<!-- Confirmation button that discards the user\'s image edits. -->
|
||||
<string name="MediaSendDialogs__discard">Loobu</string>
|
||||
<!-- Accessibility label for the row that lets the user add a text message to accompany the media being sent. -->
|
||||
<string name="AddAMessageRow__add_a_message">Add a message</string>
|
||||
<string name="AddAMessageRow__add_a_message">Lisa sõnum</string>
|
||||
<!-- Accessibility description for the button that opens the emoji keyboard. -->
|
||||
<string name="AddAMessageRow__open_emoji_keyboard">Open emoji keyboard</string>
|
||||
<!-- Placeholder text shown in the add-a-message row before the user has entered any message text. -->
|
||||
<string name="AddAMessageRow__message">Message</string>
|
||||
<string name="AddAMessageRow__message">Sõnum</string>
|
||||
<!-- Accessibility description for the button that advances to the next step in the media send flow. -->
|
||||
<string name="AddAMessageRow__next">Next</string>
|
||||
<string name="AddAMessageRow__next">Edasi</string>
|
||||
</resources>
|
||||
|
||||
@@ -7,11 +7,11 @@
|
||||
<!-- Confirmation button that discards the user\'s image edits. -->
|
||||
<string name="MediaSendDialogs__discard">Baztertu</string>
|
||||
<!-- Accessibility label for the row that lets the user add a text message to accompany the media being sent. -->
|
||||
<string name="AddAMessageRow__add_a_message">Add a message</string>
|
||||
<string name="AddAMessageRow__add_a_message">Gehitu mezu bat</string>
|
||||
<!-- Accessibility description for the button that opens the emoji keyboard. -->
|
||||
<string name="AddAMessageRow__open_emoji_keyboard">Open emoji keyboard</string>
|
||||
<!-- Placeholder text shown in the add-a-message row before the user has entered any message text. -->
|
||||
<string name="AddAMessageRow__message">Message</string>
|
||||
<string name="AddAMessageRow__message">Mezua</string>
|
||||
<!-- Accessibility description for the button that advances to the next step in the media send flow. -->
|
||||
<string name="AddAMessageRow__next">Next</string>
|
||||
<string name="AddAMessageRow__next">Hurrengoa</string>
|
||||
</resources>
|
||||
|
||||
@@ -7,11 +7,11 @@
|
||||
<!-- Confirmation button that discards the user\'s image edits. -->
|
||||
<string name="MediaSendDialogs__discard">دور انداختن</string>
|
||||
<!-- Accessibility label for the row that lets the user add a text message to accompany the media being sent. -->
|
||||
<string name="AddAMessageRow__add_a_message">Add a message</string>
|
||||
<string name="AddAMessageRow__add_a_message">افزودن یک پیام</string>
|
||||
<!-- Accessibility description for the button that opens the emoji keyboard. -->
|
||||
<string name="AddAMessageRow__open_emoji_keyboard">Open emoji keyboard</string>
|
||||
<!-- Placeholder text shown in the add-a-message row before the user has entered any message text. -->
|
||||
<string name="AddAMessageRow__message">Message</string>
|
||||
<string name="AddAMessageRow__message">پیام</string>
|
||||
<!-- Accessibility description for the button that advances to the next step in the media send flow. -->
|
||||
<string name="AddAMessageRow__next">Next</string>
|
||||
<string name="AddAMessageRow__next">بعدی</string>
|
||||
</resources>
|
||||
|
||||
@@ -7,11 +7,11 @@
|
||||
<!-- Confirmation button that discards the user\'s image edits. -->
|
||||
<string name="MediaSendDialogs__discard">Hylkää</string>
|
||||
<!-- Accessibility label for the row that lets the user add a text message to accompany the media being sent. -->
|
||||
<string name="AddAMessageRow__add_a_message">Add a message</string>
|
||||
<string name="AddAMessageRow__add_a_message">Lisää viesti</string>
|
||||
<!-- Accessibility description for the button that opens the emoji keyboard. -->
|
||||
<string name="AddAMessageRow__open_emoji_keyboard">Open emoji keyboard</string>
|
||||
<!-- Placeholder text shown in the add-a-message row before the user has entered any message text. -->
|
||||
<string name="AddAMessageRow__message">Message</string>
|
||||
<string name="AddAMessageRow__message">Viesti</string>
|
||||
<!-- Accessibility description for the button that advances to the next step in the media send flow. -->
|
||||
<string name="AddAMessageRow__next">Next</string>
|
||||
<string name="AddAMessageRow__next">Seuraava</string>
|
||||
</resources>
|
||||
|
||||
@@ -7,11 +7,11 @@
|
||||
<!-- Confirmation button that discards the user\'s image edits. -->
|
||||
<string name="MediaSendDialogs__discard">Supprimer</string>
|
||||
<!-- Accessibility label for the row that lets the user add a text message to accompany the media being sent. -->
|
||||
<string name="AddAMessageRow__add_a_message">Add a message</string>
|
||||
<string name="AddAMessageRow__add_a_message">Ajouter un message</string>
|
||||
<!-- Accessibility description for the button that opens the emoji keyboard. -->
|
||||
<string name="AddAMessageRow__open_emoji_keyboard">Open emoji keyboard</string>
|
||||
<!-- Placeholder text shown in the add-a-message row before the user has entered any message text. -->
|
||||
<string name="AddAMessageRow__message">Message</string>
|
||||
<!-- Accessibility description for the button that advances to the next step in the media send flow. -->
|
||||
<string name="AddAMessageRow__next">Next</string>
|
||||
<string name="AddAMessageRow__next">Suivant</string>
|
||||
</resources>
|
||||
|
||||
@@ -7,11 +7,11 @@
|
||||
<!-- Confirmation button that discards the user\'s image edits. -->
|
||||
<string name="MediaSendDialogs__discard">Cuileáil</string>
|
||||
<!-- Accessibility label for the row that lets the user add a text message to accompany the media being sent. -->
|
||||
<string name="AddAMessageRow__add_a_message">Add a message</string>
|
||||
<string name="AddAMessageRow__add_a_message">Cuir teachtaireacht leis</string>
|
||||
<!-- Accessibility description for the button that opens the emoji keyboard. -->
|
||||
<string name="AddAMessageRow__open_emoji_keyboard">Open emoji keyboard</string>
|
||||
<!-- Placeholder text shown in the add-a-message row before the user has entered any message text. -->
|
||||
<string name="AddAMessageRow__message">Message</string>
|
||||
<string name="AddAMessageRow__message">Teachtaireacht</string>
|
||||
<!-- Accessibility description for the button that advances to the next step in the media send flow. -->
|
||||
<string name="AddAMessageRow__next">Next</string>
|
||||
<string name="AddAMessageRow__next">Ar aghaidh</string>
|
||||
</resources>
|
||||
|
||||
@@ -7,11 +7,11 @@
|
||||
<!-- Confirmation button that discards the user\'s image edits. -->
|
||||
<string name="MediaSendDialogs__discard">Descartar</string>
|
||||
<!-- Accessibility label for the row that lets the user add a text message to accompany the media being sent. -->
|
||||
<string name="AddAMessageRow__add_a_message">Add a message</string>
|
||||
<string name="AddAMessageRow__add_a_message">Engadir mensaxe</string>
|
||||
<!-- Accessibility description for the button that opens the emoji keyboard. -->
|
||||
<string name="AddAMessageRow__open_emoji_keyboard">Open emoji keyboard</string>
|
||||
<!-- Placeholder text shown in the add-a-message row before the user has entered any message text. -->
|
||||
<string name="AddAMessageRow__message">Message</string>
|
||||
<string name="AddAMessageRow__message">Mensaxe</string>
|
||||
<!-- Accessibility description for the button that advances to the next step in the media send flow. -->
|
||||
<string name="AddAMessageRow__next">Next</string>
|
||||
<string name="AddAMessageRow__next">Seguinte</string>
|
||||
</resources>
|
||||
|
||||
@@ -7,11 +7,11 @@
|
||||
<!-- Confirmation button that discards the user\'s image edits. -->
|
||||
<string name="MediaSendDialogs__discard">કાઢી નાખો</string>
|
||||
<!-- Accessibility label for the row that lets the user add a text message to accompany the media being sent. -->
|
||||
<string name="AddAMessageRow__add_a_message">Add a message</string>
|
||||
<string name="AddAMessageRow__add_a_message">મેસેજ ઉમેરો</string>
|
||||
<!-- Accessibility description for the button that opens the emoji keyboard. -->
|
||||
<string name="AddAMessageRow__open_emoji_keyboard">Open emoji keyboard</string>
|
||||
<!-- Placeholder text shown in the add-a-message row before the user has entered any message text. -->
|
||||
<string name="AddAMessageRow__message">Message</string>
|
||||
<string name="AddAMessageRow__message">મેસેજ</string>
|
||||
<!-- Accessibility description for the button that advances to the next step in the media send flow. -->
|
||||
<string name="AddAMessageRow__next">Next</string>
|
||||
<string name="AddAMessageRow__next">આગળ</string>
|
||||
</resources>
|
||||
|
||||
@@ -7,11 +7,11 @@
|
||||
<!-- Confirmation button that discards the user\'s image edits. -->
|
||||
<string name="MediaSendDialogs__discard">रद्द करें</string>
|
||||
<!-- Accessibility label for the row that lets the user add a text message to accompany the media being sent. -->
|
||||
<string name="AddAMessageRow__add_a_message">Add a message</string>
|
||||
<string name="AddAMessageRow__add_a_message">कोई मैसेज जोड़ें</string>
|
||||
<!-- Accessibility description for the button that opens the emoji keyboard. -->
|
||||
<string name="AddAMessageRow__open_emoji_keyboard">Open emoji keyboard</string>
|
||||
<!-- Placeholder text shown in the add-a-message row before the user has entered any message text. -->
|
||||
<string name="AddAMessageRow__message">Message</string>
|
||||
<string name="AddAMessageRow__message">मैसेज</string>
|
||||
<!-- Accessibility description for the button that advances to the next step in the media send flow. -->
|
||||
<string name="AddAMessageRow__next">Next</string>
|
||||
<string name="AddAMessageRow__next">अगला</string>
|
||||
</resources>
|
||||
|
||||
@@ -7,11 +7,11 @@
|
||||
<!-- Confirmation button that discards the user\'s image edits. -->
|
||||
<string name="MediaSendDialogs__discard">Odbaci</string>
|
||||
<!-- Accessibility label for the row that lets the user add a text message to accompany the media being sent. -->
|
||||
<string name="AddAMessageRow__add_a_message">Add a message</string>
|
||||
<string name="AddAMessageRow__add_a_message">Dodaj poruku</string>
|
||||
<!-- Accessibility description for the button that opens the emoji keyboard. -->
|
||||
<string name="AddAMessageRow__open_emoji_keyboard">Open emoji keyboard</string>
|
||||
<!-- Placeholder text shown in the add-a-message row before the user has entered any message text. -->
|
||||
<string name="AddAMessageRow__message">Message</string>
|
||||
<string name="AddAMessageRow__message">Poruka</string>
|
||||
<!-- Accessibility description for the button that advances to the next step in the media send flow. -->
|
||||
<string name="AddAMessageRow__next">Next</string>
|
||||
<string name="AddAMessageRow__next">Sljedeće</string>
|
||||
</resources>
|
||||
|
||||
@@ -7,11 +7,11 @@
|
||||
<!-- Confirmation button that discards the user\'s image edits. -->
|
||||
<string name="MediaSendDialogs__discard">Elvetés</string>
|
||||
<!-- Accessibility label for the row that lets the user add a text message to accompany the media being sent. -->
|
||||
<string name="AddAMessageRow__add_a_message">Add a message</string>
|
||||
<string name="AddAMessageRow__add_a_message">Szöveg hozzáadása</string>
|
||||
<!-- Accessibility description for the button that opens the emoji keyboard. -->
|
||||
<string name="AddAMessageRow__open_emoji_keyboard">Open emoji keyboard</string>
|
||||
<!-- Placeholder text shown in the add-a-message row before the user has entered any message text. -->
|
||||
<string name="AddAMessageRow__message">Message</string>
|
||||
<string name="AddAMessageRow__message">Üzenetek</string>
|
||||
<!-- Accessibility description for the button that advances to the next step in the media send flow. -->
|
||||
<string name="AddAMessageRow__next">Next</string>
|
||||
<string name="AddAMessageRow__next">Tovább</string>
|
||||
</resources>
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user