mirror of
https://github.com/signalapp/Signal-Android.git
synced 2026-06-10 01:06:06 +01:00
Compare commits
9 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 2adf84a895 | |||
| 30ed0aa11a | |||
| ec9ae9e3b1 | |||
| 6a23896077 | |||
| f5a1d79eb5 | |||
| 4f0f0938d8 | |||
| 0136971963 | |||
| f810d731dd | |||
| 7c7c364fef |
@@ -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 = 1701
|
||||
val canonicalVersionName = "8.14.1"
|
||||
val canonicalVersionCode = 1703
|
||||
val canonicalVersionName = "8.14.3"
|
||||
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
@@ -4,8 +4,6 @@ import android.content.Context;
|
||||
import android.content.res.TypedArray;
|
||||
import android.graphics.Canvas;
|
||||
import android.graphics.Color;
|
||||
import android.os.Bundle;
|
||||
import android.os.Parcelable;
|
||||
import android.util.AttributeSet;
|
||||
import android.view.View;
|
||||
import android.view.ViewGroup;
|
||||
@@ -43,9 +41,6 @@ import okhttp3.HttpUrl;
|
||||
*/
|
||||
public class LinkPreviewView extends FrameLayout {
|
||||
|
||||
private static final String STATE_ROOT = "linkPreviewView.state.root";
|
||||
private static final String STATE_STATE = "linkPreviewView.state.state";
|
||||
|
||||
private static final int TYPE_CONVERSATION = 0;
|
||||
private static final int TYPE_COMPOSE = 1;
|
||||
|
||||
@@ -114,30 +109,6 @@ public class LinkPreviewView extends FrameLayout {
|
||||
setWillNotDraw(false);
|
||||
}
|
||||
|
||||
@Override
|
||||
protected @NonNull Parcelable onSaveInstanceState() {
|
||||
Parcelable root = super.onSaveInstanceState();
|
||||
Bundle bundle = new Bundle();
|
||||
|
||||
bundle.putParcelable(STATE_ROOT, root);
|
||||
bundle.putParcelable(STATE_STATE, thumbnailState);
|
||||
|
||||
return bundle;
|
||||
}
|
||||
|
||||
@Override
|
||||
protected void onRestoreInstanceState(Parcelable state) {
|
||||
if (state instanceof Bundle) {
|
||||
Parcelable root = ((Bundle) state).getParcelable(STATE_ROOT);
|
||||
thumbnailState = ((Bundle) state).getParcelable(STATE_STATE);
|
||||
|
||||
thumbnailState.applyState(thumbnail);
|
||||
super.onRestoreInstanceState(root);
|
||||
} else {
|
||||
super.onRestoreInstanceState(state);
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
protected void dispatchDraw(Canvas canvas) {
|
||||
super.dispatchDraw(canvas);
|
||||
@@ -251,7 +222,7 @@ public class LinkPreviewView extends FrameLayout {
|
||||
thumbnailState.applyState(thumbnail);
|
||||
} else {
|
||||
cornerMask.setRadii(topStart, topEnd, 0, 0);
|
||||
thumbnailState.copy(
|
||||
thumbnailState = thumbnailState.copy(
|
||||
topStart,
|
||||
defaultRadius,
|
||||
defaultRadius,
|
||||
|
||||
+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
|
||||
)
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -82,7 +82,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)) {
|
||||
|
||||
@@ -14,6 +14,7 @@ import org.thoughtcrime.securesms.jobmanager.impl.NetworkConstraint
|
||||
import org.thoughtcrime.securesms.keyvalue.SignalStore
|
||||
import org.thoughtcrime.securesms.pin.Svr3Migration
|
||||
import org.thoughtcrime.securesms.pin.SvrRepository
|
||||
import org.thoughtcrime.securesms.util.TextSecurePreferences
|
||||
import org.whispersystems.signalservice.api.svr.SecureValueRecovery.BackupResponse
|
||||
import org.whispersystems.signalservice.api.svr.SecureValueRecovery.PinChangeSession
|
||||
import org.whispersystems.signalservice.api.svr.SecureValueRecoveryV2
|
||||
@@ -55,8 +56,18 @@ class Svr2MirrorJob private constructor(parameters: Parameters, private var seri
|
||||
override fun getFactoryKey(): String = KEY
|
||||
|
||||
override fun run(): Result {
|
||||
if (!SignalStore.account.isRegistered) {
|
||||
Log.w(TAG, "Not registered. Skipping.")
|
||||
return Result.success()
|
||||
}
|
||||
|
||||
if (TextSecurePreferences.isUnauthorizedReceived(context)) {
|
||||
Log.w(TAG, "Not authorized. Skipping.")
|
||||
return Result.success()
|
||||
}
|
||||
|
||||
if (SignalStore.account.isLinkedDevice) {
|
||||
Log.i(TAG, "Not primary device, skipping mirror")
|
||||
Log.i(TAG, "Not primary device. Skipping.")
|
||||
return Result.success()
|
||||
}
|
||||
|
||||
@@ -128,7 +139,7 @@ class Svr2MirrorJob private constructor(parameters: Parameters, private var seri
|
||||
}
|
||||
|
||||
private fun Throwable.isUnauthorized(): Boolean {
|
||||
return this is NonSuccessfulResponseCodeException && this.code == 401
|
||||
return this is NonSuccessfulResponseCodeException && (this.code == 401 || this.code == 403)
|
||||
}
|
||||
|
||||
override fun onFailure() = Unit
|
||||
|
||||
+1
-1
@@ -171,7 +171,7 @@ private fun Attachment.toQuoteAttachmentProto(): Either<DataMessageError, DataMe
|
||||
DataMessage.Quote.QuotedAttachment(
|
||||
contentType = quoteTargetContentType ?: MediaUtil.IMAGE_JPEG,
|
||||
fileName = fileName,
|
||||
thumbnail = toAttachmentPointerProto().bind()
|
||||
thumbnail = toAttachmentPointerProto().getOrNull()
|
||||
)
|
||||
}
|
||||
|
||||
|
||||
@@ -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,
|
||||
|
||||
@@ -8941,7 +8941,7 @@
|
||||
<!-- Notice that there is not enough free space to continue restore. Placeholder is required space, for example 1.6GB -->
|
||||
<string name="BackupStatusRow__not_enough_space">Недастаткова месца для пампавання вашай рэзервовай копіі. Каб працягнуць, вызваліце %1$s.</string>
|
||||
<!-- Text row label to skip download -->
|
||||
<string name="BackupStatusRow__skip_download">Прапусціць пампаванне</string>
|
||||
<string name="BackupStatusRow__skip_download">Прапусціць спампаванне</string>
|
||||
<!-- Text displayed when a backup could not be completed -->
|
||||
<string name="BackupStatusRow__your_last_backup">Не атрымалася выканаць апошняе рэзервовае капіраванне. Праверце, што ваш тэлефон падключаны да Wi-Fi, і націсніце «Пачаць рэзервовае капіраванне», каб паўтарыць спробу.</string>
|
||||
<!-- Text displayed when a backup could not be completed and to check that they are on the latest version of Signal -->
|
||||
@@ -9311,7 +9311,7 @@
|
||||
<item quantity="other">Калі вы прапусціце спампаванне, медыяфайлы і далучэнні, што засталіся ў вашай рэзервовай копіі, будуць выдалены праз %1$d дзён.</item>
|
||||
</plurals>
|
||||
<!-- Dialog body for skipping download of backed up media during deletion -->
|
||||
<string name="RemoteBackupsSettingsFragment__if_you_skip_downloading_the_remaining">Калі вы прапусціце пампаванне, медыяфайлы і далучэнні, што засталіся ў вашай рэзервовай копіі, будуць выдалены назаўсёды. Гэтыя даныя ўжо не атрымаецца аднавіць.</string>
|
||||
<string name="RemoteBackupsSettingsFragment__if_you_skip_downloading_the_remaining">Калі вы прапусціце спампаванне, медыяфайлы і далучэнні, што засталіся ў вашай рэзервовай копіі, будуць выдалены назаўсёды. Гэтыя даныя ўжо не атрымаецца аднавіць.</string>
|
||||
<!-- Dialog title for skipping download of in progress initial restore of backed up media -->
|
||||
<string name="RemoteBackupsSettingsFragment__skip_restore_question">Прапусціць аднаўленне?</string>
|
||||
<!-- Dialog message for skipping download of in progress initial restore of backed up media -->
|
||||
|
||||
@@ -2258,7 +2258,7 @@
|
||||
<string name="MessageRequestBottomView_unblock">Freigeben</string>
|
||||
<!-- Text explaining a message request from someone you\'ve removed before -->
|
||||
<string name="MessageRequestBottomView_do_you_want_to_let_s_message_you_you_removed_them_before">Darf dir %1$s Nachrichten schreiben und deinen Namen und dein Foto sehen? Diese Person wurde bereits entfernt.</string>
|
||||
<string name="MessageRequestBottomView_do_you_want_to_let_s_message_you_they_wont_know_youve_seen_their_messages_until_you_accept">Darf diese Person dir eine Nachricht schicken und ihren Namen und ihr Profilbild mit dir teilen? Sie erfährt erst, dass du ihre Nachricht gesehen hast, wenn du sie annimmst.</string>
|
||||
<string name="MessageRequestBottomView_do_you_want_to_let_s_message_you_they_wont_know_youve_seen_their_messages_until_you_accept">Darf diese Person dir eine Nachricht schicken und deinen Namen und dein Profilbild sehen? Sie erfährt erst, dass du ihre Nachricht gesehen hast, wenn du sie annimmst.</string>
|
||||
<!-- Shown in message request flow. Describes what will happen if you unblock a Signal user -->
|
||||
<string name="MessageRequestBottomView_do_you_want_to_let_s_message_you_wont_receive_any_messages_until_you_unblock_them">Darf %1$s dir Nachrichten schreiben und deinen Namen und dein Foto sehen? Du wirst keine Nachrichten erhalten, es sei denn, du erteilst eine Freigabe.</string>
|
||||
<!-- Shown in message request flow. Describes what will happen if you unblock an SMS user -->
|
||||
|
||||
@@ -947,7 +947,7 @@
|
||||
|
||||
<!-- CreateBackupBottomSheet -->
|
||||
<!-- Bottom sheet title -->
|
||||
<string name="CreateBackupBottomSheet__you_are_all_set">À vos marques… Prêts ? Lancez votre sauvegarde.</string>
|
||||
<string name="CreateBackupBottomSheet__you_are_all_set">À vos marques… Prêts ? Sauvegardez.</string>
|
||||
<!-- Bottom sheet paid message -->
|
||||
<string name="CreateBackupBottomSheet__depending_on_the_size">Selon la taille de la sauvegarde, l\'opération peut prendre un certain temps. Vous pouvez continuer d\'utiliser votre téléphone pendant que nous sauvegardons vos données.</string>
|
||||
<!-- Bottom sheet free message -->
|
||||
@@ -8245,11 +8245,11 @@
|
||||
<string name="BackupUpsellBottomSheet__no_thanks">Non merci</string>
|
||||
|
||||
<!-- Title of the backup setup complete bottom sheet -->
|
||||
<string name="BackupSetupCompleteBottomSheet__title">À vos marques… Prêts ? Lancez votre sauvegarde.</string>
|
||||
<string name="BackupSetupCompleteBottomSheet__title">À vos marques… Prêts ? Sauvegardez.</string>
|
||||
<!-- Body of the backup setup complete bottom sheet -->
|
||||
<string name="BackupSetupCompleteBottomSheet__body">Cela peut prendre un certain temps. Vous pouvez continuer d\'utiliser Signal pendant que nous sauvegardons vos données.</string>
|
||||
<!-- Label for the optimize storage toggle -->
|
||||
<string name="BackupSetupCompleteBottomSheet__optimize_storage">Optimiser l\'espace de stockage</string>
|
||||
<string name="BackupSetupCompleteBottomSheet__optimize_storage">Optimiser le stockage Signal</string>
|
||||
<!-- Subtitle for the optimize storage toggle -->
|
||||
<string name="BackupSetupCompleteBottomSheet__optimize_subtitle">Les médias les plus anciens sont déplacés vers la sauvegarde et supprimés de votre appareil, mais vous pouvez les télécharger depuis votre sauvegarde à tout moment.</string>
|
||||
<!-- Primary button on the setup complete bottom sheet -->
|
||||
|
||||
@@ -2431,10 +2431,10 @@
|
||||
</plurals>
|
||||
<!-- Describe the total number of groups, besides two groups, that you and a person have in common. Nested inside MessageRequestProfileView_member_of_many_groups -->
|
||||
<plurals name="MessageRequestProfileView_member_of_d_additional_groups">
|
||||
<item quantity="one">ещё %1$d группы</item>
|
||||
<item quantity="few">ещё %1$d групп</item>
|
||||
<item quantity="many">ещё %1$d групп</item>
|
||||
<item quantity="other">ещё %1$d групп</item>
|
||||
<item quantity="one">ещё в %1$d группе</item>
|
||||
<item quantity="few">ещё в %1$d группах</item>
|
||||
<item quantity="many">ещё в %1$d группах</item>
|
||||
<item quantity="other">ещё в %1$d группах</item>
|
||||
</plurals>
|
||||
<!-- Describes the names of members in a group. MessageRequestProfileView_group_members_* is nested in the first parentheses. MessageRequestProfileView_invited is nested in the second -->
|
||||
<string name="MessageRequestProfileView_member_names_and_invited">%1$s (%2$s)</string>
|
||||
|
||||
@@ -2408,7 +2408,7 @@
|
||||
<string name="MessageRequestProfileView_view">Показати</string>
|
||||
<string name="MessageRequestProfileView_member_of_one_group">Учасник «%1$s»</string>
|
||||
<string name="MessageRequestProfileView_member_of_two_groups">Учасник «%1$s» і «%2$s»</string>
|
||||
<string name="MessageRequestProfileView_member_of_many_groups">Учасник «%1$s», «%2$s» і «%3$s»</string>
|
||||
<string name="MessageRequestProfileView_member_of_many_groups">Учасник «%1$s», «%2$s» і %3$s</string>
|
||||
<plurals name="MessageRequestProfileView_members">
|
||||
<item quantity="one">%1$d учасник</item>
|
||||
<item quantity="few">%1$d учасники</item>
|
||||
@@ -2431,10 +2431,10 @@
|
||||
</plurals>
|
||||
<!-- Describe the total number of groups, besides two groups, that you and a person have in common. Nested inside MessageRequestProfileView_member_of_many_groups -->
|
||||
<plurals name="MessageRequestProfileView_member_of_d_additional_groups">
|
||||
<item quantity="one">%1$d додаткова група</item>
|
||||
<item quantity="few">%1$d додаткові групи</item>
|
||||
<item quantity="many">%1$d додаткові групи</item>
|
||||
<item quantity="other">%1$d додаткової групи</item>
|
||||
<item quantity="one">ще %1$d групи</item>
|
||||
<item quantity="few">ще %1$d груп</item>
|
||||
<item quantity="many">ще %1$d груп</item>
|
||||
<item quantity="other">ще %1$d групи</item>
|
||||
</plurals>
|
||||
<!-- Describes the names of members in a group. MessageRequestProfileView_group_members_* is nested in the first parentheses. MessageRequestProfileView_invited is nested in the second -->
|
||||
<string name="MessageRequestProfileView_member_names_and_invited">%1$s (%2$s)</string>
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
service_ips=new String[]{"13.248.212.111","76.223.92.165"}
|
||||
storage_ips=new String[]{"142.250.69.115"}
|
||||
cdn_ips=new String[]{"13.225.196.60","13.225.196.76","13.225.196.77","13.225.196.9"}
|
||||
storage_ips=new String[]{"142.250.190.243"}
|
||||
cdn_ips=new String[]{"18.238.49.106","18.238.49.6","18.238.49.66","18.238.49.90"}
|
||||
cdn2_ips=new String[]{"104.18.10.47","104.18.11.47"}
|
||||
cdn3_ips=new String[]{"104.18.10.47","104.18.11.47"}
|
||||
sfu_ips=new String[]{"34.117.136.13"}
|
||||
content_proxy_ips=new String[]{"107.178.250.75"}
|
||||
svr2_ips=new String[]{"20.104.52.125"}
|
||||
svr2_ips=new String[]{"20.119.62.85"}
|
||||
cdsi_ips=new String[]{"40.122.45.194"}
|
||||
|
||||
@@ -314,9 +314,9 @@
|
||||
<!-- PIN creation screen title. -->
|
||||
<string name="PinCreationScreen__create_your_pin">Skep jou PIN</string>
|
||||
<!-- PIN creation screen title when confirming the new Signal PIN. -->
|
||||
<string name="PinCreationScreen__confirm_your_pin">Confirm your PIN</string>
|
||||
<string name="PinCreationScreen__confirm_your_pin">Bevestig jou PIN</string>
|
||||
<!-- Describes how to confirm the new Signal PIN. -->
|
||||
<string name="PinCreationScreen__reenter_pin_description">Re-enter the PIN you just created</string>
|
||||
<string name="PinCreationScreen__reenter_pin_description">Voer weer die PIN in wat jy pas geskep het</string>
|
||||
<!-- Describes the purpose of creating a Signal PIN. -->
|
||||
<string name="PinCreationScreen__pins_can_help">PIN\'s kan jou help om jou rekening te herstel indien jy jou telefoon verloor. </string>
|
||||
<!-- Labels the button to learn more about Signal PINs. -->
|
||||
@@ -328,11 +328,11 @@
|
||||
<!-- Labels the button to submit a new Signal PIN. -->
|
||||
<string name="PinCreationScreen__next">Volgende</string>
|
||||
<!-- Hint shown below the create PIN field when numeric keyboard is active. -->
|
||||
<string name="PinCreationScreen__pin_at_least_4_digits">PIN must be at least 4 digits</string>
|
||||
<string name="PinCreationScreen__pin_at_least_4_digits">PIN moet minstens 4 syfers wees</string>
|
||||
<!-- Hint shown below the create PIN field when alphanumeric keyboard is active. -->
|
||||
<string name="PinCreationScreen__pin_at_least_4_characters">PIN must be at least 4 characters</string>
|
||||
<string name="PinCreationScreen__pin_at_least_4_characters">PIN moet minstens 4 karakters wees</string>
|
||||
<!-- Hint shown below the create PIN field when the user is confirming their new Signal PIN. -->
|
||||
<string name="PinCreationScreen__reenter_pin">Re-enter PIN</string>
|
||||
<string name="PinCreationScreen__reenter_pin">Voer weer PIN in</string>
|
||||
|
||||
<!-- PIN entry screen title when registration lock is active. -->
|
||||
<string name="PinEntryScreen__registration_lock">Registrasieslot</string>
|
||||
@@ -355,9 +355,9 @@
|
||||
<string name="PinEntryScreen__continue">Gaan voort</string>
|
||||
|
||||
<!-- Title for the screen asking the user to grant the notification permission -->
|
||||
<string name="AllowNotificationsScreen__allow_notifications">Allow Notifications</string>
|
||||
<string name="AllowNotificationsScreen__allow_notifications">Laat kennisgewings toe</string>
|
||||
<!-- Description for the screen asking the user to grant the notification permission -->
|
||||
<string name="AllowNotificationsScreen__signal_would_like_to_request_the_notification_permission">Signal would like to request the notification permission. This allows your device to display alerts when new messages arrive.</string>
|
||||
<string name="AllowNotificationsScreen__signal_would_like_to_request_the_notification_permission">Signal versoek toestemming om kennisgewings te mag stuur. Dit laat jou toestel toe om waarskuwings te vertoon wanneer nuwe boodskappe inkom.</string>
|
||||
<!-- Button label that dismisses the notification permission request without granting it -->
|
||||
<string name="AllowNotificationsScreen__not_now">Nie nou nie</string>
|
||||
<!-- Button label that proceeds with the notification permission request -->
|
||||
@@ -366,36 +366,36 @@
|
||||
<!-- Title shown while messages are syncing from the primary device -->
|
||||
<string name="MessageSyncScreen__syncing_messages">Besig om boodskappe te sinchroniseer</string>
|
||||
<!-- Subtitle shown while messages are syncing from the primary device, indicating it may take a while -->
|
||||
<string name="MessageSyncScreen__this_may_take_a_few_minutes">This may take a few minutes…</string>
|
||||
<string name="MessageSyncScreen__this_may_take_a_few_minutes">Dit kan \'n paar minute neem…</string>
|
||||
<!-- Progress label shown under the sync progress bar. %1$s is the amount downloaded so far (e.g. "1 MB"), %2$s is the total size to download (e.g. "3.2 MB") -->
|
||||
<string name="MessageSyncScreen__downloading_s_of_s">Besig om %1$s van %2$s af te laai</string>
|
||||
<!-- Informational notice in the sync screen footer, indicating the sync is end-to-end encrypted. Precedes a separate "Learn more" link. -->
|
||||
<string name="MessageSyncScreen__messages_and_chat_info_are_protected_by_e2ee">Messages and chat info are protected by end-to-end encryption, including the syncing process.</string>
|
||||
<string name="MessageSyncScreen__messages_and_chat_info_are_protected_by_e2ee">Boodskappe en kletsinligting word deur end-tot-end-enkriptering beskerm, wat die sinchroniseringsproses insluit.</string>
|
||||
<!-- Inline link in the sync screen footer that opens documentation about end-to-end encryption during sync -->
|
||||
<string name="MessageSyncScreen__learn_more">Vind meer uit</string>
|
||||
<!-- Button label that cancels the in-progress message sync -->
|
||||
<string name="MessageSyncScreen__cancel">Kanselleer</string>
|
||||
|
||||
<!-- Title for the screen that shows a QR code the user scans with their existing primary device to link this device as a secondary -->
|
||||
<string name="LinkAccountScreen__scan_this_code_to_link_your_account">Scan this code to link your account</string>
|
||||
<string name="LinkAccountScreen__scan_this_code_to_link_your_account">Skandeer hierdie kode om jou rekening te koppel</string>
|
||||
<!-- Step in the link-account instructions: open Signal on the user\'s existing phone -->
|
||||
<string name="LinkAccountScreen__open_signal_on_your_phone">Maak Signal op jou foon oop</string>
|
||||
<!-- Step in the link-account instructions: tap profile picture to open Signal Settings -->
|
||||
<string name="LinkAccountScreen__tap_your_profile_picture_to_open_signal_settings">Tap your profile picture to open Signal Settings</string>
|
||||
<string name="LinkAccountScreen__tap_your_profile_picture_to_open_signal_settings">Tik op jou profielfoto om Signal-instellings oop te maak</string>
|
||||
<!-- Step in the link-account instructions: navigate to the Linked devices section and tap Link new device. The quoted strings should match the button/menu labels in the primary device\'s settings. -->
|
||||
<string name="LinkAccountScreen__tap_linked_devices_and_link_new_device">Tap \"Linked devices\" and \"Link new device\"</string>
|
||||
<string name="LinkAccountScreen__tap_linked_devices_and_link_new_device">Tik op \"Gekoppelde toestelle\" en op \"Koppel nuwe toestel\"</string>
|
||||
<!-- Step in the link-account instructions: aim the primary device\'s camera at the QR code displayed on this screen -->
|
||||
<string name="LinkAccountScreen__position_the_camera_over_this_qr_code">Position the camera over this qr code</string>
|
||||
<string name="LinkAccountScreen__position_the_camera_over_this_qr_code">Posisioneer die kamera oor QR-kode</string>
|
||||
<!-- Button label opening help content for users who can\'t complete the link-account steps -->
|
||||
<string name="LinkAccountScreen__get_help_with_these_steps">Get help with these steps</string>
|
||||
<string name="LinkAccountScreen__get_help_with_these_steps">Kry hulp met hierdie stappe</string>
|
||||
<!-- Accessibility content description for the button that enlarges the QR code to full screen -->
|
||||
<string name="LinkAccountScreen__maximize_qr_code">Maximize QR Code</string>
|
||||
<string name="LinkAccountScreen__maximize_qr_code">Maksimeer QR-kode</string>
|
||||
<!-- Label shown in place of the QR code after the primary device has successfully scanned it -->
|
||||
<string name="LinkAccountScreen__scanned">Scanned</string>
|
||||
<string name="LinkAccountScreen__scanned">Geskandeer</string>
|
||||
<!-- Error label shown in place of the QR code if it could not be generated -->
|
||||
<string name="LinkAccountScreen__failed_to_generate_code">Failed to generate code</string>
|
||||
<string name="LinkAccountScreen__failed_to_generate_code">Generering van kode het misluk</string>
|
||||
<!-- Footer prompt asking the user if they have another device with Signal. Precedes a separate "Create account" link. -->
|
||||
<string name="LinkAccountScreen__dont_have_signal_on_another_device">Don\'t have Signal on another device?</string>
|
||||
<string name="LinkAccountScreen__dont_have_signal_on_another_device">Jy het nie Signal op ’n ander toestel nie?</string>
|
||||
<!-- Inline link in the link-account screen footer that takes the user to the new-account creation flow instead of linking -->
|
||||
<string name="LinkAccountScreen__create_account">Skep rekening</string>
|
||||
</resources>
|
||||
|
||||
@@ -318,9 +318,9 @@
|
||||
<!-- PIN creation screen title. -->
|
||||
<string name="PinCreationScreen__create_your_pin">أنشِئ رقم الـ PIN</string>
|
||||
<!-- PIN creation screen title when confirming the new Signal PIN. -->
|
||||
<string name="PinCreationScreen__confirm_your_pin">تأكيد رقم PIN</string>
|
||||
<string name="PinCreationScreen__confirm_your_pin">قُم بتأكيد رقم الـ PIN</string>
|
||||
<!-- Describes how to confirm the new Signal PIN. -->
|
||||
<string name="PinCreationScreen__reenter_pin_description">Re-enter the PIN you just created</string>
|
||||
<string name="PinCreationScreen__reenter_pin_description">أعِد إدخال رقم التعريف الشخصي (PIN) الذي أنشأته للتو</string>
|
||||
<!-- Describes the purpose of creating a Signal PIN. -->
|
||||
<string name="PinCreationScreen__pins_can_help">يمكن أن تساعدك أرقام التعريف الشخصية (PIN) على استعادة حسابك في حال فقدت هاتفك. </string>
|
||||
<!-- Labels the button to learn more about Signal PINs. -->
|
||||
@@ -332,11 +332,11 @@
|
||||
<!-- Labels the button to submit a new Signal PIN. -->
|
||||
<string name="PinCreationScreen__next">التالي</string>
|
||||
<!-- Hint shown below the create PIN field when numeric keyboard is active. -->
|
||||
<string name="PinCreationScreen__pin_at_least_4_digits">رقم التعريف الشخصي (PIN) يجب أن يحوي أربعة ارقام على الأقل.</string>
|
||||
<string name="PinCreationScreen__pin_at_least_4_digits">رقم التعريف الشخصي (PIN) يجب أن يحوي أربعة أرقام على الأقل.</string>
|
||||
<!-- Hint shown below the create PIN field when alphanumeric keyboard is active. -->
|
||||
<string name="PinCreationScreen__pin_at_least_4_characters">رقم التعريف الشخصي (PIN) يجب أن يحوي أربعة رموز على الأقل.</string>
|
||||
<!-- Hint shown below the create PIN field when the user is confirming their new Signal PIN. -->
|
||||
<string name="PinCreationScreen__reenter_pin">أعِد إدخال رقم التعريف الشخصي (PIN)</string>
|
||||
<string name="PinCreationScreen__reenter_pin">أعِد إدخال رقم الـ PIN</string>
|
||||
|
||||
<!-- PIN entry screen title when registration lock is active. -->
|
||||
<string name="PinEntryScreen__registration_lock">قفل التسجيل</string>
|
||||
@@ -346,12 +346,12 @@
|
||||
<string name="PinEntryScreen__enter_the_pin_you_created">أدخِل رقم التعريف الشخصي (PIN) الذي أنشأته عند تثبيت سيجنال لأول مرّة.</string>
|
||||
<!-- Error shown when an incorrect PIN is entered. %1$d is the number of attempts remaining. -->
|
||||
<plurals name="PinEntryScreen__incorrect_pin">
|
||||
<item quantity="zero">رقم التعريف الشخصي (PIN) غير صحيح. %1$d محاولات متبقية.</item>
|
||||
<item quantity="one">رقم التعريف الشخصي (PIN) غير صحيح. %1$d محاولة متبقية.</item>
|
||||
<item quantity="two">رقم التعريف الشخصي (PIN) غير صحيح. %1$d محاولة متبقية.</item>
|
||||
<item quantity="few">رقم التعريف الشخصي (PIN) غير صحيح. %1$d محاولات متبقية.</item>
|
||||
<item quantity="many">رقم التعريف الشخصي (PIN) غير صحيح. %1$d محاولة متبقية.</item>
|
||||
<item quantity="other">رقم التعريف الشخصي (PIN) غير صحيح. %1$d محاولة متبقية.</item>
|
||||
<item quantity="zero">رقم التعريف الشخصي (PIN) غير صحيح. تبقى لديك %1$d محاولات.</item>
|
||||
<item quantity="one">رقم التعريف الشخصي (PIN) غير صحيح. تبقى لديك %1$d محاولة.</item>
|
||||
<item quantity="two">رقم التعريف الشخصي (PIN) غير صحيح. تبقى لديك %1$d محاولتين.</item>
|
||||
<item quantity="few">رقم التعريف الشخصي (PIN) غير صحيح. تبقى لديك %1$d محاولات.</item>
|
||||
<item quantity="many">رقم التعريف الشخصي (PIN) غير صحيح. تبقى لديك %1$d محاولة.</item>
|
||||
<item quantity="other">رقم التعريف الشخصي (PIN) غير صحيح. تبقى لديك %1$d محاولة.</item>
|
||||
</plurals>
|
||||
<!-- Labels the button to get help with PIN entry. -->
|
||||
<string name="PinEntryScreen__need_help">هل تحتاج لمُساعدة؟</string>
|
||||
@@ -365,7 +365,7 @@
|
||||
<!-- Title for the screen asking the user to grant the notification permission -->
|
||||
<string name="AllowNotificationsScreen__allow_notifications">السماح بالإشعارات</string>
|
||||
<!-- Description for the screen asking the user to grant the notification permission -->
|
||||
<string name="AllowNotificationsScreen__signal_would_like_to_request_the_notification_permission">Signal would like to request the notification permission. This allows your device to display alerts when new messages arrive.</string>
|
||||
<string name="AllowNotificationsScreen__signal_would_like_to_request_the_notification_permission">يرغب سيجنال في الحصول على إذن لإرسال الإشعارات. يسمح هذا لجهازك بعرض التنبيهات عند وصول رسائل جديدة.</string>
|
||||
<!-- Button label that dismisses the notification permission request without granting it -->
|
||||
<string name="AllowNotificationsScreen__not_now">ليس الآن</string>
|
||||
<!-- Button label that proceeds with the notification permission request -->
|
||||
@@ -374,36 +374,36 @@
|
||||
<!-- Title shown while messages are syncing from the primary device -->
|
||||
<string name="MessageSyncScreen__syncing_messages">جارٍ مزامنة الرسائل</string>
|
||||
<!-- Subtitle shown while messages are syncing from the primary device, indicating it may take a while -->
|
||||
<string name="MessageSyncScreen__this_may_take_a_few_minutes">This may take a few minutes…</string>
|
||||
<string name="MessageSyncScreen__this_may_take_a_few_minutes">قد يَستغرق هذا بعض الدقائق…</string>
|
||||
<!-- Progress label shown under the sync progress bar. %1$s is the amount downloaded so far (e.g. "1 MB"), %2$s is the total size to download (e.g. "3.2 MB") -->
|
||||
<string name="MessageSyncScreen__downloading_s_of_s">جارٍ تنزيل %1$s من أصل %2$s</string>
|
||||
<!-- Informational notice in the sync screen footer, indicating the sync is end-to-end encrypted. Precedes a separate "Learn more" link. -->
|
||||
<string name="MessageSyncScreen__messages_and_chat_info_are_protected_by_e2ee">Messages and chat info are protected by end-to-end encryption, including the syncing process.</string>
|
||||
<string name="MessageSyncScreen__messages_and_chat_info_are_protected_by_e2ee">معلومات الرسائل والدردشات محمية من خلال التشفير من طرف لِطرف، بما في ذلك عملية المزامنة.</string>
|
||||
<!-- Inline link in the sync screen footer that opens documentation about end-to-end encryption during sync -->
|
||||
<string name="MessageSyncScreen__learn_more">اعرف المزيد</string>
|
||||
<!-- Button label that cancels the in-progress message sync -->
|
||||
<string name="MessageSyncScreen__cancel">إلغاء</string>
|
||||
|
||||
<!-- Title for the screen that shows a QR code the user scans with their existing primary device to link this device as a secondary -->
|
||||
<string name="LinkAccountScreen__scan_this_code_to_link_your_account">Scan this code to link your account</string>
|
||||
<string name="LinkAccountScreen__scan_this_code_to_link_your_account">امسح هذا الكود ضوئيًا لربط حسابك</string>
|
||||
<!-- Step in the link-account instructions: open Signal on the user\'s existing phone -->
|
||||
<string name="LinkAccountScreen__open_signal_on_your_phone">افتح تطبيق سيجنال على هاتفك</string>
|
||||
<!-- Step in the link-account instructions: tap profile picture to open Signal Settings -->
|
||||
<string name="LinkAccountScreen__tap_your_profile_picture_to_open_signal_settings">Tap your profile picture to open Signal Settings</string>
|
||||
<string name="LinkAccountScreen__tap_your_profile_picture_to_open_signal_settings">انقر على صورة حسابك الشخصي لفتح إعدادات سيجنال</string>
|
||||
<!-- Step in the link-account instructions: navigate to the Linked devices section and tap Link new device. The quoted strings should match the button/menu labels in the primary device\'s settings. -->
|
||||
<string name="LinkAccountScreen__tap_linked_devices_and_link_new_device">Tap \"Linked devices\" and \"Link new device\"</string>
|
||||
<string name="LinkAccountScreen__tap_linked_devices_and_link_new_device">انقر على \"الأجهزة المُرتبِطة\" ثم \"ربط جهاز جديد\"</string>
|
||||
<!-- Step in the link-account instructions: aim the primary device\'s camera at the QR code displayed on this screen -->
|
||||
<string name="LinkAccountScreen__position_the_camera_over_this_qr_code">Position the camera over this qr code</string>
|
||||
<string name="LinkAccountScreen__position_the_camera_over_this_qr_code">ضع كود الـ QR داخل إطار الكاميرا</string>
|
||||
<!-- Button label opening help content for users who can\'t complete the link-account steps -->
|
||||
<string name="LinkAccountScreen__get_help_with_these_steps">Get help with these steps</string>
|
||||
<string name="LinkAccountScreen__get_help_with_these_steps">الحصول على مساعدة بشأن هذه الخطوات</string>
|
||||
<!-- Accessibility content description for the button that enlarges the QR code to full screen -->
|
||||
<string name="LinkAccountScreen__maximize_qr_code">Maximize QR Code</string>
|
||||
<string name="LinkAccountScreen__maximize_qr_code">تكبير كود الـ QR</string>
|
||||
<!-- Label shown in place of the QR code after the primary device has successfully scanned it -->
|
||||
<string name="LinkAccountScreen__scanned">Scanned</string>
|
||||
<string name="LinkAccountScreen__scanned">تمَّ المسح ضوئيًا</string>
|
||||
<!-- Error label shown in place of the QR code if it could not be generated -->
|
||||
<string name="LinkAccountScreen__failed_to_generate_code">Failed to generate code</string>
|
||||
<string name="LinkAccountScreen__failed_to_generate_code">تعذَّر إنشاء الكود</string>
|
||||
<!-- Footer prompt asking the user if they have another device with Signal. Precedes a separate "Create account" link. -->
|
||||
<string name="LinkAccountScreen__dont_have_signal_on_another_device">Don\'t have Signal on another device?</string>
|
||||
<string name="LinkAccountScreen__dont_have_signal_on_another_device">ليس لديك سيجنال على جهازٍ آخر؟</string>
|
||||
<!-- Inline link in the link-account screen footer that takes the user to the new-account creation flow instead of linking -->
|
||||
<string name="LinkAccountScreen__create_account">أنشِئ حسابًا</string>
|
||||
</resources>
|
||||
|
||||
@@ -314,9 +314,9 @@
|
||||
<!-- PIN creation screen title. -->
|
||||
<string name="PinCreationScreen__create_your_pin">PIN yaradın</string>
|
||||
<!-- PIN creation screen title when confirming the new Signal PIN. -->
|
||||
<string name="PinCreationScreen__confirm_your_pin">Confirm your PIN</string>
|
||||
<string name="PinCreationScreen__confirm_your_pin">PIN-inizi təsdiqləyin</string>
|
||||
<!-- Describes how to confirm the new Signal PIN. -->
|
||||
<string name="PinCreationScreen__reenter_pin_description">Re-enter the PIN you just created</string>
|
||||
<string name="PinCreationScreen__reenter_pin_description">İndicə yaratdığınız PIN kodu yenidən daxil edin</string>
|
||||
<!-- Describes the purpose of creating a Signal PIN. -->
|
||||
<string name="PinCreationScreen__pins_can_help">Telefonunuzu itirdikdə PIN kodlar hesabınızın bərpasına kömək edə bilər. </string>
|
||||
<!-- Labels the button to learn more about Signal PINs. -->
|
||||
@@ -328,11 +328,11 @@
|
||||
<!-- Labels the button to submit a new Signal PIN. -->
|
||||
<string name="PinCreationScreen__next">Növbəti</string>
|
||||
<!-- Hint shown below the create PIN field when numeric keyboard is active. -->
|
||||
<string name="PinCreationScreen__pin_at_least_4_digits">PIN must be at least 4 digits</string>
|
||||
<string name="PinCreationScreen__pin_at_least_4_digits">PIN ən azı 4 rəqəmli olmalıdır</string>
|
||||
<!-- Hint shown below the create PIN field when alphanumeric keyboard is active. -->
|
||||
<string name="PinCreationScreen__pin_at_least_4_characters">PIN must be at least 4 characters</string>
|
||||
<string name="PinCreationScreen__pin_at_least_4_characters">PIN ən azı 4 simvoldan ibarət olmalıdır</string>
|
||||
<!-- Hint shown below the create PIN field when the user is confirming their new Signal PIN. -->
|
||||
<string name="PinCreationScreen__reenter_pin">Re-enter PIN</string>
|
||||
<string name="PinCreationScreen__reenter_pin">PIN kodu yenidən daxil edin</string>
|
||||
|
||||
<!-- PIN entry screen title when registration lock is active. -->
|
||||
<string name="PinEntryScreen__registration_lock">Qeydiyyat Kilidi</string>
|
||||
@@ -355,9 +355,9 @@
|
||||
<string name="PinEntryScreen__continue">Davam et</string>
|
||||
|
||||
<!-- Title for the screen asking the user to grant the notification permission -->
|
||||
<string name="AllowNotificationsScreen__allow_notifications">Allow Notifications</string>
|
||||
<string name="AllowNotificationsScreen__allow_notifications">Bildirişlərə icazə verin</string>
|
||||
<!-- Description for the screen asking the user to grant the notification permission -->
|
||||
<string name="AllowNotificationsScreen__signal_would_like_to_request_the_notification_permission">Signal would like to request the notification permission. This allows your device to display alerts when new messages arrive.</string>
|
||||
<string name="AllowNotificationsScreen__signal_would_like_to_request_the_notification_permission">Signal bildiriş icazəsi sorğulamaq istərdi. Bu, yeni mesajlar gəldikdə, cihazın xəbərdarlıqları göstərməsinə imkan verir.</string>
|
||||
<!-- Button label that dismisses the notification permission request without granting it -->
|
||||
<string name="AllowNotificationsScreen__not_now">İndi yox</string>
|
||||
<!-- Button label that proceeds with the notification permission request -->
|
||||
@@ -366,36 +366,36 @@
|
||||
<!-- Title shown while messages are syncing from the primary device -->
|
||||
<string name="MessageSyncScreen__syncing_messages">Mesajlar sinxronlaşdırılır</string>
|
||||
<!-- Subtitle shown while messages are syncing from the primary device, indicating it may take a while -->
|
||||
<string name="MessageSyncScreen__this_may_take_a_few_minutes">This may take a few minutes…</string>
|
||||
<string name="MessageSyncScreen__this_may_take_a_few_minutes">Bu, bir neçə dəqiqə çəkə bilər…</string>
|
||||
<!-- Progress label shown under the sync progress bar. %1$s is the amount downloaded so far (e.g. "1 MB"), %2$s is the total size to download (e.g. "3.2 MB") -->
|
||||
<string name="MessageSyncScreen__downloading_s_of_s">%1$s/%2$s endirilir</string>
|
||||
<!-- Informational notice in the sync screen footer, indicating the sync is end-to-end encrypted. Precedes a separate "Learn more" link. -->
|
||||
<string name="MessageSyncScreen__messages_and_chat_info_are_protected_by_e2ee">Messages and chat info are protected by end-to-end encryption, including the syncing process.</string>
|
||||
<string name="MessageSyncScreen__messages_and_chat_info_are_protected_by_e2ee">Mesajlar və çat məlumatı sinxronlaşdırma prosesi daxil, tam şifrələmə ilə qorunur.</string>
|
||||
<!-- Inline link in the sync screen footer that opens documentation about end-to-end encryption during sync -->
|
||||
<string name="MessageSyncScreen__learn_more">Daha ətraflı</string>
|
||||
<!-- Button label that cancels the in-progress message sync -->
|
||||
<string name="MessageSyncScreen__cancel">Ləğv et</string>
|
||||
|
||||
<!-- Title for the screen that shows a QR code the user scans with their existing primary device to link this device as a secondary -->
|
||||
<string name="LinkAccountScreen__scan_this_code_to_link_your_account">Scan this code to link your account</string>
|
||||
<string name="LinkAccountScreen__scan_this_code_to_link_your_account">Hesabınızı əlaqələndirmək üçün bu kodu skan edin</string>
|
||||
<!-- Step in the link-account instructions: open Signal on the user\'s existing phone -->
|
||||
<string name="LinkAccountScreen__open_signal_on_your_phone">Signal-ı telefonunuzda açın</string>
|
||||
<!-- Step in the link-account instructions: tap profile picture to open Signal Settings -->
|
||||
<string name="LinkAccountScreen__tap_your_profile_picture_to_open_signal_settings">Tap your profile picture to open Signal Settings</string>
|
||||
<string name="LinkAccountScreen__tap_your_profile_picture_to_open_signal_settings">Signal parametrlərini açmaq üçün profil şəklinizə toxunun</string>
|
||||
<!-- Step in the link-account instructions: navigate to the Linked devices section and tap Link new device. The quoted strings should match the button/menu labels in the primary device\'s settings. -->
|
||||
<string name="LinkAccountScreen__tap_linked_devices_and_link_new_device">Tap \"Linked devices\" and \"Link new device\"</string>
|
||||
<string name="LinkAccountScreen__tap_linked_devices_and_link_new_device">\"Əlaqələndirilmiş cihazlar\" və \"Yeni cihazı əlaqələndir\" seçiminə toxunun</string>
|
||||
<!-- Step in the link-account instructions: aim the primary device\'s camera at the QR code displayed on this screen -->
|
||||
<string name="LinkAccountScreen__position_the_camera_over_this_qr_code">Position the camera over this qr code</string>
|
||||
<string name="LinkAccountScreen__position_the_camera_over_this_qr_code">Kameranı bu QR kodunun üzərinə tutun</string>
|
||||
<!-- Button label opening help content for users who can\'t complete the link-account steps -->
|
||||
<string name="LinkAccountScreen__get_help_with_these_steps">Get help with these steps</string>
|
||||
<string name="LinkAccountScreen__get_help_with_these_steps">Bu addımlarla kömək alın</string>
|
||||
<!-- Accessibility content description for the button that enlarges the QR code to full screen -->
|
||||
<string name="LinkAccountScreen__maximize_qr_code">Maximize QR Code</string>
|
||||
<string name="LinkAccountScreen__maximize_qr_code">QR kodunu maksimum effektiv səviyyəyə çatdırın</string>
|
||||
<!-- Label shown in place of the QR code after the primary device has successfully scanned it -->
|
||||
<string name="LinkAccountScreen__scanned">Scanned</string>
|
||||
<string name="LinkAccountScreen__scanned">Skan edildi</string>
|
||||
<!-- Error label shown in place of the QR code if it could not be generated -->
|
||||
<string name="LinkAccountScreen__failed_to_generate_code">Failed to generate code</string>
|
||||
<string name="LinkAccountScreen__failed_to_generate_code">Kod yaradılmadı</string>
|
||||
<!-- Footer prompt asking the user if they have another device with Signal. Precedes a separate "Create account" link. -->
|
||||
<string name="LinkAccountScreen__dont_have_signal_on_another_device">Don\'t have Signal on another device?</string>
|
||||
<string name="LinkAccountScreen__dont_have_signal_on_another_device">Digər cihazda Signal tətbiqi yoxdur?</string>
|
||||
<!-- Inline link in the link-account screen footer that takes the user to the new-account creation flow instead of linking -->
|
||||
<string name="LinkAccountScreen__create_account">Hesab yaradın</string>
|
||||
</resources>
|
||||
|
||||
@@ -318,7 +318,7 @@
|
||||
<!-- PIN creation screen title when confirming the new Signal PIN. -->
|
||||
<string name="PinCreationScreen__confirm_your_pin">Пацвердзіце свой PIN-код</string>
|
||||
<!-- Describes how to confirm the new Signal PIN. -->
|
||||
<string name="PinCreationScreen__reenter_pin_description">Re-enter the PIN you just created</string>
|
||||
<string name="PinCreationScreen__reenter_pin_description">Паўторна ўвядзіце толькі што створаны вамі PIN-код</string>
|
||||
<!-- Describes the purpose of creating a Signal PIN. -->
|
||||
<string name="PinCreationScreen__pins_can_help">PIN-коды могуць дапамагчы вам аднавіць свой уліковы запіс, калі вы згубіце свой тэлефон. </string>
|
||||
<!-- Labels the button to learn more about Signal PINs. -->
|
||||
@@ -334,7 +334,7 @@
|
||||
<!-- Hint shown below the create PIN field when alphanumeric keyboard is active. -->
|
||||
<string name="PinCreationScreen__pin_at_least_4_characters">PIN-код мусіць быць не меншы за 4 сімвалы</string>
|
||||
<!-- Hint shown below the create PIN field when the user is confirming their new Signal PIN. -->
|
||||
<string name="PinCreationScreen__reenter_pin">Увядзіце паўторна PIN-код</string>
|
||||
<string name="PinCreationScreen__reenter_pin">Увесці паўторна PIN-код</string>
|
||||
|
||||
<!-- PIN entry screen title when registration lock is active. -->
|
||||
<string name="PinEntryScreen__registration_lock">Блакіроўка рэгістрацыі</string>
|
||||
@@ -361,7 +361,7 @@
|
||||
<!-- Title for the screen asking the user to grant the notification permission -->
|
||||
<string name="AllowNotificationsScreen__allow_notifications">Дазволіць апавяшчэнні</string>
|
||||
<!-- Description for the screen asking the user to grant the notification permission -->
|
||||
<string name="AllowNotificationsScreen__signal_would_like_to_request_the_notification_permission">Signal would like to request the notification permission. This allows your device to display alerts when new messages arrive.</string>
|
||||
<string name="AllowNotificationsScreen__signal_would_like_to_request_the_notification_permission">Signal жадае запытаць дазвол на апавяшчэнні. Дзякуючы гэтаму ваша прылада паказвае апавяшчэнні аб новых паведамленнях.</string>
|
||||
<!-- Button label that dismisses the notification permission request without granting it -->
|
||||
<string name="AllowNotificationsScreen__not_now">Не зараз</string>
|
||||
<!-- Button label that proceeds with the notification permission request -->
|
||||
@@ -370,36 +370,36 @@
|
||||
<!-- Title shown while messages are syncing from the primary device -->
|
||||
<string name="MessageSyncScreen__syncing_messages">Сінхранізуем паведамленні</string>
|
||||
<!-- Subtitle shown while messages are syncing from the primary device, indicating it may take a while -->
|
||||
<string name="MessageSyncScreen__this_may_take_a_few_minutes">This may take a few minutes…</string>
|
||||
<string name="MessageSyncScreen__this_may_take_a_few_minutes">Гэта займае некалькі хвілін…</string>
|
||||
<!-- Progress label shown under the sync progress bar. %1$s is the amount downloaded so far (e.g. "1 MB"), %2$s is the total size to download (e.g. "3.2 MB") -->
|
||||
<string name="MessageSyncScreen__downloading_s_of_s">Downloading %1$s of %2$s</string>
|
||||
<string name="MessageSyncScreen__downloading_s_of_s">Пампуецца: %1$s з %2$s</string>
|
||||
<!-- Informational notice in the sync screen footer, indicating the sync is end-to-end encrypted. Precedes a separate "Learn more" link. -->
|
||||
<string name="MessageSyncScreen__messages_and_chat_info_are_protected_by_e2ee">Messages and chat info are protected by end-to-end encryption, including the syncing process.</string>
|
||||
<string name="MessageSyncScreen__messages_and_chat_info_are_protected_by_e2ee">Паведамленні і змесціва чатаў абаронены скразным шыфраваннем, як і сам працэс сінхранізацыі.</string>
|
||||
<!-- Inline link in the sync screen footer that opens documentation about end-to-end encryption during sync -->
|
||||
<string name="MessageSyncScreen__learn_more">Даведацца больш</string>
|
||||
<!-- Button label that cancels the in-progress message sync -->
|
||||
<string name="MessageSyncScreen__cancel">Скасаваць</string>
|
||||
|
||||
<!-- Title for the screen that shows a QR code the user scans with their existing primary device to link this device as a secondary -->
|
||||
<string name="LinkAccountScreen__scan_this_code_to_link_your_account">Scan this code to link your account</string>
|
||||
<string name="LinkAccountScreen__scan_this_code_to_link_your_account">Праскануйце гэты код, каб звязаць свой уліковы запіс</string>
|
||||
<!-- Step in the link-account instructions: open Signal on the user\'s existing phone -->
|
||||
<string name="LinkAccountScreen__open_signal_on_your_phone">Адкрыць Signal на сваім тэлефоне</string>
|
||||
<!-- Step in the link-account instructions: tap profile picture to open Signal Settings -->
|
||||
<string name="LinkAccountScreen__tap_your_profile_picture_to_open_signal_settings">Tap your profile picture to open Signal Settings</string>
|
||||
<string name="LinkAccountScreen__tap_your_profile_picture_to_open_signal_settings">Націсніце на сваё фота профілю, каб адкрыць налады Signal</string>
|
||||
<!-- Step in the link-account instructions: navigate to the Linked devices section and tap Link new device. The quoted strings should match the button/menu labels in the primary device\'s settings. -->
|
||||
<string name="LinkAccountScreen__tap_linked_devices_and_link_new_device">Tap \"Linked devices\" and \"Link new device\"</string>
|
||||
<string name="LinkAccountScreen__tap_linked_devices_and_link_new_device">Націсніце на «Звязаныя прылады» і «Звязаць новую прыладу»</string>
|
||||
<!-- Step in the link-account instructions: aim the primary device\'s camera at the QR code displayed on this screen -->
|
||||
<string name="LinkAccountScreen__position_the_camera_over_this_qr_code">Position the camera over this qr code</string>
|
||||
<string name="LinkAccountScreen__position_the_camera_over_this_qr_code">Навядзіце камеру на гэты QR-код</string>
|
||||
<!-- Button label opening help content for users who can\'t complete the link-account steps -->
|
||||
<string name="LinkAccountScreen__get_help_with_these_steps">Get help with these steps</string>
|
||||
<string name="LinkAccountScreen__get_help_with_these_steps">Дапамога па гэтых кроках</string>
|
||||
<!-- Accessibility content description for the button that enlarges the QR code to full screen -->
|
||||
<string name="LinkAccountScreen__maximize_qr_code">Maximize QR Code</string>
|
||||
<string name="LinkAccountScreen__maximize_qr_code">Максімальна павялічце QR-код</string>
|
||||
<!-- Label shown in place of the QR code after the primary device has successfully scanned it -->
|
||||
<string name="LinkAccountScreen__scanned">Scanned</string>
|
||||
<string name="LinkAccountScreen__scanned">Прасканавана</string>
|
||||
<!-- Error label shown in place of the QR code if it could not be generated -->
|
||||
<string name="LinkAccountScreen__failed_to_generate_code">Failed to generate code</string>
|
||||
<string name="LinkAccountScreen__failed_to_generate_code">Не атрымалася згенераваць код</string>
|
||||
<!-- Footer prompt asking the user if they have another device with Signal. Precedes a separate "Create account" link. -->
|
||||
<string name="LinkAccountScreen__dont_have_signal_on_another_device">Don\'t have Signal on another device?</string>
|
||||
<string name="LinkAccountScreen__dont_have_signal_on_another_device">Не маеце Signal на іншай прыладзе?</string>
|
||||
<!-- Inline link in the link-account screen footer that takes the user to the new-account creation flow instead of linking -->
|
||||
<string name="LinkAccountScreen__create_account">Стварыць уліковы запіс</string>
|
||||
</resources>
|
||||
|
||||
@@ -316,7 +316,7 @@
|
||||
<!-- PIN creation screen title when confirming the new Signal PIN. -->
|
||||
<string name="PinCreationScreen__confirm_your_pin">Потвърдете своя ПИН</string>
|
||||
<!-- Describes how to confirm the new Signal PIN. -->
|
||||
<string name="PinCreationScreen__reenter_pin_description">Re-enter the PIN you just created</string>
|
||||
<string name="PinCreationScreen__reenter_pin_description">Въведете отново току-що създадения ПИН</string>
|
||||
<!-- Describes the purpose of creating a Signal PIN. -->
|
||||
<string name="PinCreationScreen__pins_can_help">ПИН кодовете могат да ви помогнат да възстановите вашия акаунт, ако загубите телефона си. </string>
|
||||
<!-- Labels the button to learn more about Signal PINs. -->
|
||||
@@ -355,9 +355,9 @@
|
||||
<string name="PinEntryScreen__continue">Продължаване</string>
|
||||
|
||||
<!-- Title for the screen asking the user to grant the notification permission -->
|
||||
<string name="AllowNotificationsScreen__allow_notifications">Allow Notifications</string>
|
||||
<string name="AllowNotificationsScreen__allow_notifications">Разрешете известията</string>
|
||||
<!-- Description for the screen asking the user to grant the notification permission -->
|
||||
<string name="AllowNotificationsScreen__signal_would_like_to_request_the_notification_permission">Signal would like to request the notification permission. This allows your device to display alerts when new messages arrive.</string>
|
||||
<string name="AllowNotificationsScreen__signal_would_like_to_request_the_notification_permission">Signal иска разрешението за известия. Това позволява на вашето устройство да се показват предупреждения, когато пристигат нови съобщения.</string>
|
||||
<!-- Button label that dismisses the notification permission request without granting it -->
|
||||
<string name="AllowNotificationsScreen__not_now">Не сега</string>
|
||||
<!-- Button label that proceeds with the notification permission request -->
|
||||
@@ -366,36 +366,36 @@
|
||||
<!-- Title shown while messages are syncing from the primary device -->
|
||||
<string name="MessageSyncScreen__syncing_messages">Синхронизиране на съобщения</string>
|
||||
<!-- Subtitle shown while messages are syncing from the primary device, indicating it may take a while -->
|
||||
<string name="MessageSyncScreen__this_may_take_a_few_minutes">This may take a few minutes…</string>
|
||||
<string name="MessageSyncScreen__this_may_take_a_few_minutes">Това може да отнеме няколко минути…</string>
|
||||
<!-- Progress label shown under the sync progress bar. %1$s is the amount downloaded so far (e.g. "1 MB"), %2$s is the total size to download (e.g. "3.2 MB") -->
|
||||
<string name="MessageSyncScreen__downloading_s_of_s">Изтегляне на %1$s от %2$s</string>
|
||||
<!-- Informational notice in the sync screen footer, indicating the sync is end-to-end encrypted. Precedes a separate "Learn more" link. -->
|
||||
<string name="MessageSyncScreen__messages_and_chat_info_are_protected_by_e2ee">Messages and chat info are protected by end-to-end encryption, including the syncing process.</string>
|
||||
<string name="MessageSyncScreen__messages_and_chat_info_are_protected_by_e2ee">Съобщенията и информацията за чатовете са защитени чрез криптиране от край до край, включително и процеса за синхронизиране.</string>
|
||||
<!-- Inline link in the sync screen footer that opens documentation about end-to-end encryption during sync -->
|
||||
<string name="MessageSyncScreen__learn_more">Научете повече</string>
|
||||
<!-- Button label that cancels the in-progress message sync -->
|
||||
<string name="MessageSyncScreen__cancel">Отказ</string>
|
||||
|
||||
<!-- Title for the screen that shows a QR code the user scans with their existing primary device to link this device as a secondary -->
|
||||
<string name="LinkAccountScreen__scan_this_code_to_link_your_account">Scan this code to link your account</string>
|
||||
<string name="LinkAccountScreen__scan_this_code_to_link_your_account">Сканирайте този код, за да свържете акаунта си</string>
|
||||
<!-- Step in the link-account instructions: open Signal on the user\'s existing phone -->
|
||||
<string name="LinkAccountScreen__open_signal_on_your_phone">Отворете Signal на телефона си</string>
|
||||
<!-- Step in the link-account instructions: tap profile picture to open Signal Settings -->
|
||||
<string name="LinkAccountScreen__tap_your_profile_picture_to_open_signal_settings">Tap your profile picture to open Signal Settings</string>
|
||||
<string name="LinkAccountScreen__tap_your_profile_picture_to_open_signal_settings">Докоснете профилната си снимка, за да отворите настройките на Signal</string>
|
||||
<!-- Step in the link-account instructions: navigate to the Linked devices section and tap Link new device. The quoted strings should match the button/menu labels in the primary device\'s settings. -->
|
||||
<string name="LinkAccountScreen__tap_linked_devices_and_link_new_device">Tap \"Linked devices\" and \"Link new device\"</string>
|
||||
<string name="LinkAccountScreen__tap_linked_devices_and_link_new_device">Докоснете „Свързани устройства“ и „Свързване на ново устройство“</string>
|
||||
<!-- Step in the link-account instructions: aim the primary device\'s camera at the QR code displayed on this screen -->
|
||||
<string name="LinkAccountScreen__position_the_camera_over_this_qr_code">Position the camera over this qr code</string>
|
||||
<string name="LinkAccountScreen__position_the_camera_over_this_qr_code">Поставете камерата над този QR код</string>
|
||||
<!-- Button label opening help content for users who can\'t complete the link-account steps -->
|
||||
<string name="LinkAccountScreen__get_help_with_these_steps">Get help with these steps</string>
|
||||
<string name="LinkAccountScreen__get_help_with_these_steps">Помощ за тези стъпки</string>
|
||||
<!-- Accessibility content description for the button that enlarges the QR code to full screen -->
|
||||
<string name="LinkAccountScreen__maximize_qr_code">Maximize QR Code</string>
|
||||
<string name="LinkAccountScreen__maximize_qr_code">Увеличаване на QR кода</string>
|
||||
<!-- Label shown in place of the QR code after the primary device has successfully scanned it -->
|
||||
<string name="LinkAccountScreen__scanned">Scanned</string>
|
||||
<string name="LinkAccountScreen__scanned">Сканиран</string>
|
||||
<!-- Error label shown in place of the QR code if it could not be generated -->
|
||||
<string name="LinkAccountScreen__failed_to_generate_code">Failed to generate code</string>
|
||||
<string name="LinkAccountScreen__failed_to_generate_code">Неуспешно генериране на код</string>
|
||||
<!-- Footer prompt asking the user if they have another device with Signal. Precedes a separate "Create account" link. -->
|
||||
<string name="LinkAccountScreen__dont_have_signal_on_another_device">Don\'t have Signal on another device?</string>
|
||||
<string name="LinkAccountScreen__dont_have_signal_on_another_device">Нямате Signal на друго устройство?</string>
|
||||
<!-- Inline link in the link-account screen footer that takes the user to the new-account creation flow instead of linking -->
|
||||
<string name="LinkAccountScreen__create_account">Създаване на акаунт</string>
|
||||
</resources>
|
||||
|
||||
@@ -316,7 +316,7 @@
|
||||
<!-- PIN creation screen title when confirming the new Signal PIN. -->
|
||||
<string name="PinCreationScreen__confirm_your_pin">আপনার পিনটি নিশ্চিত করুন</string>
|
||||
<!-- Describes how to confirm the new Signal PIN. -->
|
||||
<string name="PinCreationScreen__reenter_pin_description">Re-enter the PIN you just created</string>
|
||||
<string name="PinCreationScreen__reenter_pin_description">এই মাত্র তৈরি করা পিনটি আবারো লিখুন</string>
|
||||
<!-- Describes the purpose of creating a Signal PIN. -->
|
||||
<string name="PinCreationScreen__pins_can_help">আপনার ফোন হারিয়ে গেলে পিন আপনাকে অ্যাকাউন্ট পুনরুদ্ধার করতে সাহায্য করতে পারে। </string>
|
||||
<!-- Labels the button to learn more about Signal PINs. -->
|
||||
@@ -357,7 +357,7 @@
|
||||
<!-- Title for the screen asking the user to grant the notification permission -->
|
||||
<string name="AllowNotificationsScreen__allow_notifications">নোটিফিকেশন অনুমোদন করুন</string>
|
||||
<!-- Description for the screen asking the user to grant the notification permission -->
|
||||
<string name="AllowNotificationsScreen__signal_would_like_to_request_the_notification_permission">Signal would like to request the notification permission. This allows your device to display alerts when new messages arrive.</string>
|
||||
<string name="AllowNotificationsScreen__signal_would_like_to_request_the_notification_permission">Signal নোটিফিকেশন চালু করার অনুমতি চাইছে।এর মাধ্যমে নতুন মেসেজ এলে আপনার ডিভাইস অ্যালার্ট দেখাতে পারবে।</string>
|
||||
<!-- Button label that dismisses the notification permission request without granting it -->
|
||||
<string name="AllowNotificationsScreen__not_now">এখন না</string>
|
||||
<!-- Button label that proceeds with the notification permission request -->
|
||||
@@ -366,36 +366,36 @@
|
||||
<!-- Title shown while messages are syncing from the primary device -->
|
||||
<string name="MessageSyncScreen__syncing_messages">মেসেজ সিঙ্ক করা হচ্ছে</string>
|
||||
<!-- Subtitle shown while messages are syncing from the primary device, indicating it may take a while -->
|
||||
<string name="MessageSyncScreen__this_may_take_a_few_minutes">This may take a few minutes…</string>
|
||||
<string name="MessageSyncScreen__this_may_take_a_few_minutes">এতে কয়েক মিনিট সময় লাগতে পারে…</string>
|
||||
<!-- Progress label shown under the sync progress bar. %1$s is the amount downloaded so far (e.g. "1 MB"), %2$s is the total size to download (e.g. "3.2 MB") -->
|
||||
<string name="MessageSyncScreen__downloading_s_of_s">%2$s-এর মধ্যে %1$s ডাউনলোড হচ্ছে</string>
|
||||
<!-- Informational notice in the sync screen footer, indicating the sync is end-to-end encrypted. Precedes a separate "Learn more" link. -->
|
||||
<string name="MessageSyncScreen__messages_and_chat_info_are_protected_by_e2ee">Messages and chat info are protected by end-to-end encryption, including the syncing process.</string>
|
||||
<string name="MessageSyncScreen__messages_and_chat_info_are_protected_by_e2ee">সিঙ্কিং প্রক্রিয়া সহ মেসেজ এবং চ্যাটের তথ্য এন্ড-টু-এন্ড এনক্রিপশন দ্বারা সুরক্ষিত।</string>
|
||||
<!-- Inline link in the sync screen footer that opens documentation about end-to-end encryption during sync -->
|
||||
<string name="MessageSyncScreen__learn_more">আরো জানুন</string>
|
||||
<!-- Button label that cancels the in-progress message sync -->
|
||||
<string name="MessageSyncScreen__cancel">বাতিল করুন</string>
|
||||
|
||||
<!-- Title for the screen that shows a QR code the user scans with their existing primary device to link this device as a secondary -->
|
||||
<string name="LinkAccountScreen__scan_this_code_to_link_your_account">Scan this code to link your account</string>
|
||||
<string name="LinkAccountScreen__scan_this_code_to_link_your_account">আপনার অ্যাকাউন্ট লিংক করতে এই কোডটি স্ক্যান করুন</string>
|
||||
<!-- Step in the link-account instructions: open Signal on the user\'s existing phone -->
|
||||
<string name="LinkAccountScreen__open_signal_on_your_phone">আপনার ফোনে সিগন্যাল খুলুন</string>
|
||||
<!-- Step in the link-account instructions: tap profile picture to open Signal Settings -->
|
||||
<string name="LinkAccountScreen__tap_your_profile_picture_to_open_signal_settings">Tap your profile picture to open Signal Settings</string>
|
||||
<string name="LinkAccountScreen__tap_your_profile_picture_to_open_signal_settings">Signal সেটিংস খুলতে আপনার প্রোফাইল ছবিতে ট্যাপ করুন</string>
|
||||
<!-- Step in the link-account instructions: navigate to the Linked devices section and tap Link new device. The quoted strings should match the button/menu labels in the primary device\'s settings. -->
|
||||
<string name="LinkAccountScreen__tap_linked_devices_and_link_new_device">Tap \"Linked devices\" and \"Link new device\"</string>
|
||||
<string name="LinkAccountScreen__tap_linked_devices_and_link_new_device">\"লিংককৃত ডিভাইস\" এবং \"নতুন ডিভাইস লিংক করুন\"-এ ট্যাপ করুন</string>
|
||||
<!-- Step in the link-account instructions: aim the primary device\'s camera at the QR code displayed on this screen -->
|
||||
<string name="LinkAccountScreen__position_the_camera_over_this_qr_code">Position the camera over this qr code</string>
|
||||
<string name="LinkAccountScreen__position_the_camera_over_this_qr_code">এই QR কোডের উপর ক্যামেরা ধরুন</string>
|
||||
<!-- Button label opening help content for users who can\'t complete the link-account steps -->
|
||||
<string name="LinkAccountScreen__get_help_with_these_steps">Get help with these steps</string>
|
||||
<string name="LinkAccountScreen__get_help_with_these_steps">এই ধাপগুলোতে সাহায্য নিন</string>
|
||||
<!-- Accessibility content description for the button that enlarges the QR code to full screen -->
|
||||
<string name="LinkAccountScreen__maximize_qr_code">Maximize QR Code</string>
|
||||
<string name="LinkAccountScreen__maximize_qr_code">QR কোডটি বড় করুন</string>
|
||||
<!-- Label shown in place of the QR code after the primary device has successfully scanned it -->
|
||||
<string name="LinkAccountScreen__scanned">Scanned</string>
|
||||
<string name="LinkAccountScreen__scanned">স্ক্যান করা হয়েছে</string>
|
||||
<!-- Error label shown in place of the QR code if it could not be generated -->
|
||||
<string name="LinkAccountScreen__failed_to_generate_code">Failed to generate code</string>
|
||||
<string name="LinkAccountScreen__failed_to_generate_code">কোড তৈরি করা সফল হয়নি</string>
|
||||
<!-- Footer prompt asking the user if they have another device with Signal. Precedes a separate "Create account" link. -->
|
||||
<string name="LinkAccountScreen__dont_have_signal_on_another_device">Don\'t have Signal on another device?</string>
|
||||
<string name="LinkAccountScreen__dont_have_signal_on_another_device">অন্য কোনো ডিভাইসে Signal নেই?</string>
|
||||
<!-- Inline link in the link-account screen footer that takes the user to the new-account creation flow instead of linking -->
|
||||
<string name="LinkAccountScreen__create_account">অ্যাকাউন্ট তৈরি করুন</string>
|
||||
</resources>
|
||||
|
||||
@@ -316,9 +316,9 @@
|
||||
<!-- PIN creation screen title. -->
|
||||
<string name="PinCreationScreen__create_your_pin">Kreirajte svoj PIN</string>
|
||||
<!-- PIN creation screen title when confirming the new Signal PIN. -->
|
||||
<string name="PinCreationScreen__confirm_your_pin">Confirm your PIN</string>
|
||||
<string name="PinCreationScreen__confirm_your_pin">Potvrdite svoj PIN</string>
|
||||
<!-- Describes how to confirm the new Signal PIN. -->
|
||||
<string name="PinCreationScreen__reenter_pin_description">Re-enter the PIN you just created</string>
|
||||
<string name="PinCreationScreen__reenter_pin_description">Ponovo unesite PIN koji ste upravo kreirali</string>
|
||||
<!-- Describes the purpose of creating a Signal PIN. -->
|
||||
<string name="PinCreationScreen__pins_can_help">PIN-ovi mogu olakšati vraćanje vašeg računa ako izgubite telefon. </string>
|
||||
<!-- Labels the button to learn more about Signal PINs. -->
|
||||
@@ -330,11 +330,11 @@
|
||||
<!-- Labels the button to submit a new Signal PIN. -->
|
||||
<string name="PinCreationScreen__next">Dalje</string>
|
||||
<!-- Hint shown below the create PIN field when numeric keyboard is active. -->
|
||||
<string name="PinCreationScreen__pin_at_least_4_digits">PIN must be at least 4 digits</string>
|
||||
<string name="PinCreationScreen__pin_at_least_4_digits">PIN mora sadržavati najmanje 4 brojke</string>
|
||||
<!-- Hint shown below the create PIN field when alphanumeric keyboard is active. -->
|
||||
<string name="PinCreationScreen__pin_at_least_4_characters">PIN must be at least 4 characters</string>
|
||||
<string name="PinCreationScreen__pin_at_least_4_characters">PIN mora sadržavati najmanje 4 znaka</string>
|
||||
<!-- Hint shown below the create PIN field when the user is confirming their new Signal PIN. -->
|
||||
<string name="PinCreationScreen__reenter_pin">Re-enter PIN</string>
|
||||
<string name="PinCreationScreen__reenter_pin">Ponovo unesite PIN</string>
|
||||
|
||||
<!-- PIN entry screen title when registration lock is active. -->
|
||||
<string name="PinEntryScreen__registration_lock">Zaključavanje registracije</string>
|
||||
@@ -359,9 +359,9 @@
|
||||
<string name="PinEntryScreen__continue">Nastavi</string>
|
||||
|
||||
<!-- Title for the screen asking the user to grant the notification permission -->
|
||||
<string name="AllowNotificationsScreen__allow_notifications">Allow Notifications</string>
|
||||
<string name="AllowNotificationsScreen__allow_notifications">Dopusti obavještenja</string>
|
||||
<!-- Description for the screen asking the user to grant the notification permission -->
|
||||
<string name="AllowNotificationsScreen__signal_would_like_to_request_the_notification_permission">Signal would like to request the notification permission. This allows your device to display alerts when new messages arrive.</string>
|
||||
<string name="AllowNotificationsScreen__signal_would_like_to_request_the_notification_permission">Signal želi zatražiti dozvolu za slanje obavještenja. Ovo omogućava uređaju da prikazuje upozorenja kada stignu nove poruke.</string>
|
||||
<!-- Button label that dismisses the notification permission request without granting it -->
|
||||
<string name="AllowNotificationsScreen__not_now">Ne sada</string>
|
||||
<!-- Button label that proceeds with the notification permission request -->
|
||||
@@ -370,36 +370,36 @@
|
||||
<!-- Title shown while messages are syncing from the primary device -->
|
||||
<string name="MessageSyncScreen__syncing_messages">Sinhroniziranje poruka</string>
|
||||
<!-- Subtitle shown while messages are syncing from the primary device, indicating it may take a while -->
|
||||
<string name="MessageSyncScreen__this_may_take_a_few_minutes">This may take a few minutes…</string>
|
||||
<string name="MessageSyncScreen__this_may_take_a_few_minutes">Ovo može potrajati nekoliko minuta…</string>
|
||||
<!-- Progress label shown under the sync progress bar. %1$s is the amount downloaded so far (e.g. "1 MB"), %2$s is the total size to download (e.g. "3.2 MB") -->
|
||||
<string name="MessageSyncScreen__downloading_s_of_s">Preuzimanje %1$s od %2$s</string>
|
||||
<!-- Informational notice in the sync screen footer, indicating the sync is end-to-end encrypted. Precedes a separate "Learn more" link. -->
|
||||
<string name="MessageSyncScreen__messages_and_chat_info_are_protected_by_e2ee">Messages and chat info are protected by end-to-end encryption, including the syncing process.</string>
|
||||
<string name="MessageSyncScreen__messages_and_chat_info_are_protected_by_e2ee">Poruke i informacije o chatu zaštićene su sveobuhvatnim šifriranjem, uključujući postupak sinhronizacije.</string>
|
||||
<!-- Inline link in the sync screen footer that opens documentation about end-to-end encryption during sync -->
|
||||
<string name="MessageSyncScreen__learn_more">Saznaj više</string>
|
||||
<!-- Button label that cancels the in-progress message sync -->
|
||||
<string name="MessageSyncScreen__cancel">Otkaži</string>
|
||||
|
||||
<!-- Title for the screen that shows a QR code the user scans with their existing primary device to link this device as a secondary -->
|
||||
<string name="LinkAccountScreen__scan_this_code_to_link_your_account">Scan this code to link your account</string>
|
||||
<string name="LinkAccountScreen__scan_this_code_to_link_your_account">Skenirajte ovaj kod da povežete račun</string>
|
||||
<!-- Step in the link-account instructions: open Signal on the user\'s existing phone -->
|
||||
<string name="LinkAccountScreen__open_signal_on_your_phone">Otvorite Signal na telefonu</string>
|
||||
<!-- Step in the link-account instructions: tap profile picture to open Signal Settings -->
|
||||
<string name="LinkAccountScreen__tap_your_profile_picture_to_open_signal_settings">Tap your profile picture to open Signal Settings</string>
|
||||
<string name="LinkAccountScreen__tap_your_profile_picture_to_open_signal_settings">Dodirnite profilnu sliku da otvorite Postavke Signala</string>
|
||||
<!-- Step in the link-account instructions: navigate to the Linked devices section and tap Link new device. The quoted strings should match the button/menu labels in the primary device\'s settings. -->
|
||||
<string name="LinkAccountScreen__tap_linked_devices_and_link_new_device">Tap \"Linked devices\" and \"Link new device\"</string>
|
||||
<string name="LinkAccountScreen__tap_linked_devices_and_link_new_device">Dodirnite \"Povezani uređaji\", a zatim \"Poveži novi uređaj\"</string>
|
||||
<!-- Step in the link-account instructions: aim the primary device\'s camera at the QR code displayed on this screen -->
|
||||
<string name="LinkAccountScreen__position_the_camera_over_this_qr_code">Position the camera over this qr code</string>
|
||||
<string name="LinkAccountScreen__position_the_camera_over_this_qr_code">Postavite kameru iznad ovog QR koda</string>
|
||||
<!-- Button label opening help content for users who can\'t complete the link-account steps -->
|
||||
<string name="LinkAccountScreen__get_help_with_these_steps">Get help with these steps</string>
|
||||
<string name="LinkAccountScreen__get_help_with_these_steps">Zatražite pomoć za ove korake</string>
|
||||
<!-- Accessibility content description for the button that enlarges the QR code to full screen -->
|
||||
<string name="LinkAccountScreen__maximize_qr_code">Maximize QR Code</string>
|
||||
<string name="LinkAccountScreen__maximize_qr_code">Maksimizirajte QR kod</string>
|
||||
<!-- Label shown in place of the QR code after the primary device has successfully scanned it -->
|
||||
<string name="LinkAccountScreen__scanned">Scanned</string>
|
||||
<string name="LinkAccountScreen__scanned">Skenirano</string>
|
||||
<!-- Error label shown in place of the QR code if it could not be generated -->
|
||||
<string name="LinkAccountScreen__failed_to_generate_code">Failed to generate code</string>
|
||||
<string name="LinkAccountScreen__failed_to_generate_code">Generiranje koda nije uspjelo</string>
|
||||
<!-- Footer prompt asking the user if they have another device with Signal. Precedes a separate "Create account" link. -->
|
||||
<string name="LinkAccountScreen__dont_have_signal_on_another_device">Don\'t have Signal on another device?</string>
|
||||
<string name="LinkAccountScreen__dont_have_signal_on_another_device">Nemate Signal na drugom uređaju?</string>
|
||||
<!-- Inline link in the link-account screen footer that takes the user to the new-account creation flow instead of linking -->
|
||||
<string name="LinkAccountScreen__create_account">Kreirajte račun</string>
|
||||
</resources>
|
||||
|
||||
@@ -316,7 +316,7 @@
|
||||
<!-- PIN creation screen title when confirming the new Signal PIN. -->
|
||||
<string name="PinCreationScreen__confirm_your_pin">Confirma el teu PIN</string>
|
||||
<!-- Describes how to confirm the new Signal PIN. -->
|
||||
<string name="PinCreationScreen__reenter_pin_description">Re-enter the PIN you just created</string>
|
||||
<string name="PinCreationScreen__reenter_pin_description">Torna a introduir el PIN que acabes de crear</string>
|
||||
<!-- Describes the purpose of creating a Signal PIN. -->
|
||||
<string name="PinCreationScreen__pins_can_help">Els PINs et poden ajudar a restaurar el teu compte si perds el teu telèfon. </string>
|
||||
<!-- Labels the button to learn more about Signal PINs. -->
|
||||
@@ -357,7 +357,7 @@
|
||||
<!-- Title for the screen asking the user to grant the notification permission -->
|
||||
<string name="AllowNotificationsScreen__allow_notifications">Permetre notificacions</string>
|
||||
<!-- Description for the screen asking the user to grant the notification permission -->
|
||||
<string name="AllowNotificationsScreen__signal_would_like_to_request_the_notification_permission">Signal would like to request the notification permission. This allows your device to display alerts when new messages arrive.</string>
|
||||
<string name="AllowNotificationsScreen__signal_would_like_to_request_the_notification_permission">Signal vol sol·licitar permisos de notificacions. Això et permet rebre alertes al teu dispositiu quan t\'arribin nous missatges.</string>
|
||||
<!-- Button label that dismisses the notification permission request without granting it -->
|
||||
<string name="AllowNotificationsScreen__not_now">Ara no</string>
|
||||
<!-- Button label that proceeds with the notification permission request -->
|
||||
@@ -366,36 +366,36 @@
|
||||
<!-- Title shown while messages are syncing from the primary device -->
|
||||
<string name="MessageSyncScreen__syncing_messages">Sincronitzant missatges</string>
|
||||
<!-- Subtitle shown while messages are syncing from the primary device, indicating it may take a while -->
|
||||
<string name="MessageSyncScreen__this_may_take_a_few_minutes">This may take a few minutes…</string>
|
||||
<string name="MessageSyncScreen__this_may_take_a_few_minutes">Això pot trigar uns minuts…</string>
|
||||
<!-- Progress label shown under the sync progress bar. %1$s is the amount downloaded so far (e.g. "1 MB"), %2$s is the total size to download (e.g. "3.2 MB") -->
|
||||
<string name="MessageSyncScreen__downloading_s_of_s">Descarregant: %1$s de %2$s</string>
|
||||
<!-- Informational notice in the sync screen footer, indicating the sync is end-to-end encrypted. Precedes a separate "Learn more" link. -->
|
||||
<string name="MessageSyncScreen__messages_and_chat_info_are_protected_by_e2ee">Messages and chat info are protected by end-to-end encryption, including the syncing process.</string>
|
||||
<string name="MessageSyncScreen__messages_and_chat_info_are_protected_by_e2ee">Els missatges i la informació del xat estan protegits mitjançant una codificació d\'extrem a extrem, inclòs el procés de sincronització.</string>
|
||||
<!-- Inline link in the sync screen footer that opens documentation about end-to-end encryption during sync -->
|
||||
<string name="MessageSyncScreen__learn_more">Més informació</string>
|
||||
<!-- Button label that cancels the in-progress message sync -->
|
||||
<string name="MessageSyncScreen__cancel">Cancel·lar</string>
|
||||
|
||||
<!-- Title for the screen that shows a QR code the user scans with their existing primary device to link this device as a secondary -->
|
||||
<string name="LinkAccountScreen__scan_this_code_to_link_your_account">Scan this code to link your account</string>
|
||||
<string name="LinkAccountScreen__scan_this_code_to_link_your_account">Escaneja aquest codi per vincular el teu compte</string>
|
||||
<!-- Step in the link-account instructions: open Signal on the user\'s existing phone -->
|
||||
<string name="LinkAccountScreen__open_signal_on_your_phone">Obre Signal al telèfon.</string>
|
||||
<!-- Step in the link-account instructions: tap profile picture to open Signal Settings -->
|
||||
<string name="LinkAccountScreen__tap_your_profile_picture_to_open_signal_settings">Tap your profile picture to open Signal Settings</string>
|
||||
<string name="LinkAccountScreen__tap_your_profile_picture_to_open_signal_settings">Toca la teva foto de perfil per obrir els Ajustos de Signal</string>
|
||||
<!-- Step in the link-account instructions: navigate to the Linked devices section and tap Link new device. The quoted strings should match the button/menu labels in the primary device\'s settings. -->
|
||||
<string name="LinkAccountScreen__tap_linked_devices_and_link_new_device">Tap \"Linked devices\" and \"Link new device\"</string>
|
||||
<string name="LinkAccountScreen__tap_linked_devices_and_link_new_device">Toca \"Dispositius vinculats\" i \"Vincular nou dispositiu\"</string>
|
||||
<!-- Step in the link-account instructions: aim the primary device\'s camera at the QR code displayed on this screen -->
|
||||
<string name="LinkAccountScreen__position_the_camera_over_this_qr_code">Position the camera over this qr code</string>
|
||||
<string name="LinkAccountScreen__position_the_camera_over_this_qr_code">Col·loca la càmera sobre el codi QR</string>
|
||||
<!-- Button label opening help content for users who can\'t complete the link-account steps -->
|
||||
<string name="LinkAccountScreen__get_help_with_these_steps">Get help with these steps</string>
|
||||
<string name="LinkAccountScreen__get_help_with_these_steps">Rebre ajuda amb aquests passos</string>
|
||||
<!-- Accessibility content description for the button that enlarges the QR code to full screen -->
|
||||
<string name="LinkAccountScreen__maximize_qr_code">Maximize QR Code</string>
|
||||
<string name="LinkAccountScreen__maximize_qr_code">Ampliar codi QR</string>
|
||||
<!-- Label shown in place of the QR code after the primary device has successfully scanned it -->
|
||||
<string name="LinkAccountScreen__scanned">Scanned</string>
|
||||
<string name="LinkAccountScreen__scanned">Escanejat</string>
|
||||
<!-- Error label shown in place of the QR code if it could not be generated -->
|
||||
<string name="LinkAccountScreen__failed_to_generate_code">Failed to generate code</string>
|
||||
<string name="LinkAccountScreen__failed_to_generate_code">No s\'ha pogut generar un codi</string>
|
||||
<!-- Footer prompt asking the user if they have another device with Signal. Precedes a separate "Create account" link. -->
|
||||
<string name="LinkAccountScreen__dont_have_signal_on_another_device">Don\'t have Signal on another device?</string>
|
||||
<string name="LinkAccountScreen__dont_have_signal_on_another_device">No tens Signal en un altre dispositiu?</string>
|
||||
<!-- Inline link in the link-account screen footer that takes the user to the new-account creation flow instead of linking -->
|
||||
<string name="LinkAccountScreen__create_account">Crea\'n un ara</string>
|
||||
</resources>
|
||||
|
||||
@@ -316,9 +316,9 @@
|
||||
<!-- PIN creation screen title. -->
|
||||
<string name="PinCreationScreen__create_your_pin">Vytvořte si svůj PIN</string>
|
||||
<!-- PIN creation screen title when confirming the new Signal PIN. -->
|
||||
<string name="PinCreationScreen__confirm_your_pin">Potvrďte váš PIN</string>
|
||||
<string name="PinCreationScreen__confirm_your_pin">Potvrďte svůj PIN</string>
|
||||
<!-- Describes how to confirm the new Signal PIN. -->
|
||||
<string name="PinCreationScreen__reenter_pin_description">Re-enter the PIN you just created</string>
|
||||
<string name="PinCreationScreen__reenter_pin_description">Zadejte znovu PIN, který jste právě vytvořili</string>
|
||||
<!-- Describes the purpose of creating a Signal PIN. -->
|
||||
<string name="PinCreationScreen__pins_can_help">PIN vám pomůže obnovit účet v případě ztráty telefonu. </string>
|
||||
<!-- Labels the button to learn more about Signal PINs. -->
|
||||
@@ -361,7 +361,7 @@
|
||||
<!-- Title for the screen asking the user to grant the notification permission -->
|
||||
<string name="AllowNotificationsScreen__allow_notifications">Povolit oznámení</string>
|
||||
<!-- Description for the screen asking the user to grant the notification permission -->
|
||||
<string name="AllowNotificationsScreen__signal_would_like_to_request_the_notification_permission">Signal would like to request the notification permission. This allows your device to display alerts when new messages arrive.</string>
|
||||
<string name="AllowNotificationsScreen__signal_would_like_to_request_the_notification_permission">Aplikace Signal žádá o povolení k zasílání oznámení. Ve vašem zařízení tak bude možné zobrazit upozornění, když přijde nová zpráva.</string>
|
||||
<!-- Button label that dismisses the notification permission request without granting it -->
|
||||
<string name="AllowNotificationsScreen__not_now">Nyní ne</string>
|
||||
<!-- Button label that proceeds with the notification permission request -->
|
||||
@@ -370,36 +370,36 @@
|
||||
<!-- Title shown while messages are syncing from the primary device -->
|
||||
<string name="MessageSyncScreen__syncing_messages">Synchronizace zpráv</string>
|
||||
<!-- Subtitle shown while messages are syncing from the primary device, indicating it may take a while -->
|
||||
<string name="MessageSyncScreen__this_may_take_a_few_minutes">This may take a few minutes…</string>
|
||||
<string name="MessageSyncScreen__this_may_take_a_few_minutes">To může trvat několik minut…</string>
|
||||
<!-- Progress label shown under the sync progress bar. %1$s is the amount downloaded so far (e.g. "1 MB"), %2$s is the total size to download (e.g. "3.2 MB") -->
|
||||
<string name="MessageSyncScreen__downloading_s_of_s">Staženo %1$s z %2$s</string>
|
||||
<!-- Informational notice in the sync screen footer, indicating the sync is end-to-end encrypted. Precedes a separate "Learn more" link. -->
|
||||
<string name="MessageSyncScreen__messages_and_chat_info_are_protected_by_e2ee">Messages and chat info are protected by end-to-end encryption, including the syncing process.</string>
|
||||
<string name="MessageSyncScreen__messages_and_chat_info_are_protected_by_e2ee">Zprávy a informace o chatech jsou chráněny koncovým šifrováním, včetně procesu synchronizace.</string>
|
||||
<!-- Inline link in the sync screen footer that opens documentation about end-to-end encryption during sync -->
|
||||
<string name="MessageSyncScreen__learn_more">Zjistit více</string>
|
||||
<!-- Button label that cancels the in-progress message sync -->
|
||||
<string name="MessageSyncScreen__cancel">Zrušit</string>
|
||||
|
||||
<!-- Title for the screen that shows a QR code the user scans with their existing primary device to link this device as a secondary -->
|
||||
<string name="LinkAccountScreen__scan_this_code_to_link_your_account">Scan this code to link your account</string>
|
||||
<string name="LinkAccountScreen__scan_this_code_to_link_your_account">Naskenováním tohoto kódu propojíte svůj účet</string>
|
||||
<!-- Step in the link-account instructions: open Signal on the user\'s existing phone -->
|
||||
<string name="LinkAccountScreen__open_signal_on_your_phone">Otevřete Signal ve svém telefonu</string>
|
||||
<!-- Step in the link-account instructions: tap profile picture to open Signal Settings -->
|
||||
<string name="LinkAccountScreen__tap_your_profile_picture_to_open_signal_settings">Tap your profile picture to open Signal Settings</string>
|
||||
<string name="LinkAccountScreen__tap_your_profile_picture_to_open_signal_settings">Klepnutím na svou profilovou fotografii otevřete Signal nastavení</string>
|
||||
<!-- Step in the link-account instructions: navigate to the Linked devices section and tap Link new device. The quoted strings should match the button/menu labels in the primary device\'s settings. -->
|
||||
<string name="LinkAccountScreen__tap_linked_devices_and_link_new_device">Tap \"Linked devices\" and \"Link new device\"</string>
|
||||
<string name="LinkAccountScreen__tap_linked_devices_and_link_new_device">Klepněte na Propojená zařízení a na Propojit nové zařízení</string>
|
||||
<!-- Step in the link-account instructions: aim the primary device\'s camera at the QR code displayed on this screen -->
|
||||
<string name="LinkAccountScreen__position_the_camera_over_this_qr_code">Position the camera over this qr code</string>
|
||||
<string name="LinkAccountScreen__position_the_camera_over_this_qr_code">Namiřte fotoaparát na tento QR kód</string>
|
||||
<!-- Button label opening help content for users who can\'t complete the link-account steps -->
|
||||
<string name="LinkAccountScreen__get_help_with_these_steps">Get help with these steps</string>
|
||||
<string name="LinkAccountScreen__get_help_with_these_steps">Nápověda k těmto krokům</string>
|
||||
<!-- Accessibility content description for the button that enlarges the QR code to full screen -->
|
||||
<string name="LinkAccountScreen__maximize_qr_code">Maximize QR Code</string>
|
||||
<string name="LinkAccountScreen__maximize_qr_code">Zvětšit QR kód</string>
|
||||
<!-- Label shown in place of the QR code after the primary device has successfully scanned it -->
|
||||
<string name="LinkAccountScreen__scanned">Scanned</string>
|
||||
<string name="LinkAccountScreen__scanned">Naskenováno</string>
|
||||
<!-- Error label shown in place of the QR code if it could not be generated -->
|
||||
<string name="LinkAccountScreen__failed_to_generate_code">Failed to generate code</string>
|
||||
<string name="LinkAccountScreen__failed_to_generate_code">Kód se nepodařilo vygenerovat</string>
|
||||
<!-- Footer prompt asking the user if they have another device with Signal. Precedes a separate "Create account" link. -->
|
||||
<string name="LinkAccountScreen__dont_have_signal_on_another_device">Don\'t have Signal on another device?</string>
|
||||
<string name="LinkAccountScreen__dont_have_signal_on_another_device">Nemáte Signal na jiném zařízení?</string>
|
||||
<!-- Inline link in the link-account screen footer that takes the user to the new-account creation flow instead of linking -->
|
||||
<string name="LinkAccountScreen__create_account">Vytvořit účet</string>
|
||||
</resources>
|
||||
|
||||
@@ -316,7 +316,7 @@
|
||||
<!-- PIN creation screen title when confirming the new Signal PIN. -->
|
||||
<string name="PinCreationScreen__confirm_your_pin">Bekræft din pinkode</string>
|
||||
<!-- Describes how to confirm the new Signal PIN. -->
|
||||
<string name="PinCreationScreen__reenter_pin_description">Re-enter the PIN you just created</string>
|
||||
<string name="PinCreationScreen__reenter_pin_description">Angiv den pinkode, du lige har oprettet</string>
|
||||
<!-- Describes the purpose of creating a Signal PIN. -->
|
||||
<string name="PinCreationScreen__pins_can_help">Pinkoder kan hjælpe dig med at gendanne din konto, hvis du mister din telefon. </string>
|
||||
<!-- Labels the button to learn more about Signal PINs. -->
|
||||
@@ -357,7 +357,7 @@
|
||||
<!-- Title for the screen asking the user to grant the notification permission -->
|
||||
<string name="AllowNotificationsScreen__allow_notifications">Tillad notifikationer</string>
|
||||
<!-- Description for the screen asking the user to grant the notification permission -->
|
||||
<string name="AllowNotificationsScreen__signal_would_like_to_request_the_notification_permission">Signal would like to request the notification permission. This allows your device to display alerts when new messages arrive.</string>
|
||||
<string name="AllowNotificationsScreen__signal_would_like_to_request_the_notification_permission">Signal vil gerne have tilladelse til at sende notifikationer. Dette gør det muligt for din enhed at vise notifikationer, når der kommer nye beskeder.</string>
|
||||
<!-- Button label that dismisses the notification permission request without granting it -->
|
||||
<string name="AllowNotificationsScreen__not_now">Ikke nu</string>
|
||||
<!-- Button label that proceeds with the notification permission request -->
|
||||
@@ -366,36 +366,36 @@
|
||||
<!-- Title shown while messages are syncing from the primary device -->
|
||||
<string name="MessageSyncScreen__syncing_messages">Synkroniserer beskeder</string>
|
||||
<!-- Subtitle shown while messages are syncing from the primary device, indicating it may take a while -->
|
||||
<string name="MessageSyncScreen__this_may_take_a_few_minutes">This may take a few minutes…</string>
|
||||
<string name="MessageSyncScreen__this_may_take_a_few_minutes">Det kan tage et par minutter…</string>
|
||||
<!-- Progress label shown under the sync progress bar. %1$s is the amount downloaded so far (e.g. "1 MB"), %2$s is the total size to download (e.g. "3.2 MB") -->
|
||||
<string name="MessageSyncScreen__downloading_s_of_s">Downloader %1$s af %2$s</string>
|
||||
<!-- Informational notice in the sync screen footer, indicating the sync is end-to-end encrypted. Precedes a separate "Learn more" link. -->
|
||||
<string name="MessageSyncScreen__messages_and_chat_info_are_protected_by_e2ee">Messages and chat info are protected by end-to-end encryption, including the syncing process.</string>
|
||||
<string name="MessageSyncScreen__messages_and_chat_info_are_protected_by_e2ee">Beskeder og chatoplysninger er beskyttede af end-to-end-kryptering, herunder også under synkroniseringen.</string>
|
||||
<!-- Inline link in the sync screen footer that opens documentation about end-to-end encryption during sync -->
|
||||
<string name="MessageSyncScreen__learn_more">Få mere at vide</string>
|
||||
<!-- Button label that cancels the in-progress message sync -->
|
||||
<string name="MessageSyncScreen__cancel">Annuller</string>
|
||||
|
||||
<!-- Title for the screen that shows a QR code the user scans with their existing primary device to link this device as a secondary -->
|
||||
<string name="LinkAccountScreen__scan_this_code_to_link_your_account">Scan this code to link your account</string>
|
||||
<string name="LinkAccountScreen__scan_this_code_to_link_your_account">Scan denne kode for at forbinde din konto</string>
|
||||
<!-- Step in the link-account instructions: open Signal on the user\'s existing phone -->
|
||||
<string name="LinkAccountScreen__open_signal_on_your_phone">Åbn Signal på din telefon</string>
|
||||
<!-- Step in the link-account instructions: tap profile picture to open Signal Settings -->
|
||||
<string name="LinkAccountScreen__tap_your_profile_picture_to_open_signal_settings">Tap your profile picture to open Signal Settings</string>
|
||||
<string name="LinkAccountScreen__tap_your_profile_picture_to_open_signal_settings">Tryk på dit profilbillede for at åbne Signal-indstillinger</string>
|
||||
<!-- Step in the link-account instructions: navigate to the Linked devices section and tap Link new device. The quoted strings should match the button/menu labels in the primary device\'s settings. -->
|
||||
<string name="LinkAccountScreen__tap_linked_devices_and_link_new_device">Tap \"Linked devices\" and \"Link new device\"</string>
|
||||
<string name="LinkAccountScreen__tap_linked_devices_and_link_new_device">Tryk på \"Forbundne enheder\" og derefter \"Forbind ny enhed\"</string>
|
||||
<!-- Step in the link-account instructions: aim the primary device\'s camera at the QR code displayed on this screen -->
|
||||
<string name="LinkAccountScreen__position_the_camera_over_this_qr_code">Position the camera over this qr code</string>
|
||||
<string name="LinkAccountScreen__position_the_camera_over_this_qr_code">Hold kameraet over QR-koden</string>
|
||||
<!-- Button label opening help content for users who can\'t complete the link-account steps -->
|
||||
<string name="LinkAccountScreen__get_help_with_these_steps">Get help with these steps</string>
|
||||
<string name="LinkAccountScreen__get_help_with_these_steps">Få hjælp til disse trin</string>
|
||||
<!-- Accessibility content description for the button that enlarges the QR code to full screen -->
|
||||
<string name="LinkAccountScreen__maximize_qr_code">Maximize QR Code</string>
|
||||
<string name="LinkAccountScreen__maximize_qr_code">Forstør QR-koden</string>
|
||||
<!-- Label shown in place of the QR code after the primary device has successfully scanned it -->
|
||||
<string name="LinkAccountScreen__scanned">Scanned</string>
|
||||
<string name="LinkAccountScreen__scanned">Scannet</string>
|
||||
<!-- Error label shown in place of the QR code if it could not be generated -->
|
||||
<string name="LinkAccountScreen__failed_to_generate_code">Failed to generate code</string>
|
||||
<string name="LinkAccountScreen__failed_to_generate_code">Kunne ikke generere kode</string>
|
||||
<!-- Footer prompt asking the user if they have another device with Signal. Precedes a separate "Create account" link. -->
|
||||
<string name="LinkAccountScreen__dont_have_signal_on_another_device">Don\'t have Signal on another device?</string>
|
||||
<string name="LinkAccountScreen__dont_have_signal_on_another_device">Har du ikke Signal på en anden enhed?</string>
|
||||
<!-- Inline link in the link-account screen footer that takes the user to the new-account creation flow instead of linking -->
|
||||
<string name="LinkAccountScreen__create_account">Opret konto</string>
|
||||
</resources>
|
||||
|
||||
@@ -316,7 +316,7 @@
|
||||
<!-- PIN creation screen title when confirming the new Signal PIN. -->
|
||||
<string name="PinCreationScreen__confirm_your_pin">Bestätige deine PIN</string>
|
||||
<!-- Describes how to confirm the new Signal PIN. -->
|
||||
<string name="PinCreationScreen__reenter_pin_description">Re-enter the PIN you just created</string>
|
||||
<string name="PinCreationScreen__reenter_pin_description">Gib die gerade von dir erstellte PIN erneut ein</string>
|
||||
<!-- Describes the purpose of creating a Signal PIN. -->
|
||||
<string name="PinCreationScreen__pins_can_help">PINs können dir helfen, dein Konto wiederherzustellen, wenn du dein Telefon verlierst. </string>
|
||||
<!-- Labels the button to learn more about Signal PINs. -->
|
||||
@@ -355,9 +355,9 @@
|
||||
<string name="PinEntryScreen__continue">Weiter</string>
|
||||
|
||||
<!-- Title for the screen asking the user to grant the notification permission -->
|
||||
<string name="AllowNotificationsScreen__allow_notifications">Mitteilungen zulassen</string>
|
||||
<string name="AllowNotificationsScreen__allow_notifications">Benachrichtigungen zulassen</string>
|
||||
<!-- Description for the screen asking the user to grant the notification permission -->
|
||||
<string name="AllowNotificationsScreen__signal_would_like_to_request_the_notification_permission">Signal would like to request the notification permission. This allows your device to display alerts when new messages arrive.</string>
|
||||
<string name="AllowNotificationsScreen__signal_would_like_to_request_the_notification_permission">Signal möchte die Berechtigung für Benachrichtigungen anfragen. Dadurch kann dein Gerät Hinweise anzeigen, sobald neue Nachrichten eingehen.</string>
|
||||
<!-- Button label that dismisses the notification permission request without granting it -->
|
||||
<string name="AllowNotificationsScreen__not_now">Jetzt nicht</string>
|
||||
<!-- Button label that proceeds with the notification permission request -->
|
||||
@@ -366,36 +366,36 @@
|
||||
<!-- Title shown while messages are syncing from the primary device -->
|
||||
<string name="MessageSyncScreen__syncing_messages">Nachrichten synchronisieren</string>
|
||||
<!-- Subtitle shown while messages are syncing from the primary device, indicating it may take a while -->
|
||||
<string name="MessageSyncScreen__this_may_take_a_few_minutes">This may take a few minutes…</string>
|
||||
<string name="MessageSyncScreen__this_may_take_a_few_minutes">Dies kann einige Minuten dauern…</string>
|
||||
<!-- Progress label shown under the sync progress bar. %1$s is the amount downloaded so far (e.g. "1 MB"), %2$s is the total size to download (e.g. "3.2 MB") -->
|
||||
<string name="MessageSyncScreen__downloading_s_of_s">%1$s von %2$s werden heruntergeladen</string>
|
||||
<!-- Informational notice in the sync screen footer, indicating the sync is end-to-end encrypted. Precedes a separate "Learn more" link. -->
|
||||
<string name="MessageSyncScreen__messages_and_chat_info_are_protected_by_e2ee">Messages and chat info are protected by end-to-end encryption, including the syncing process.</string>
|
||||
<string name="MessageSyncScreen__messages_and_chat_info_are_protected_by_e2ee">Nachrichten und Chat-Infos sowie der Synchronisierungsvorgang sind durch eine Ende-zu-Ende-Verschlüsselung geschützt.</string>
|
||||
<!-- Inline link in the sync screen footer that opens documentation about end-to-end encryption during sync -->
|
||||
<string name="MessageSyncScreen__learn_more">Mehr erfahren</string>
|
||||
<!-- Button label that cancels the in-progress message sync -->
|
||||
<string name="MessageSyncScreen__cancel">Abbrechen</string>
|
||||
|
||||
<!-- Title for the screen that shows a QR code the user scans with their existing primary device to link this device as a secondary -->
|
||||
<string name="LinkAccountScreen__scan_this_code_to_link_your_account">Scan this code to link your account</string>
|
||||
<string name="LinkAccountScreen__scan_this_code_to_link_your_account">Scanne diesen Code, um dein Konto zu koppeln</string>
|
||||
<!-- Step in the link-account instructions: open Signal on the user\'s existing phone -->
|
||||
<string name="LinkAccountScreen__open_signal_on_your_phone">Öffne Signal auf deinem Telefon</string>
|
||||
<!-- Step in the link-account instructions: tap profile picture to open Signal Settings -->
|
||||
<string name="LinkAccountScreen__tap_your_profile_picture_to_open_signal_settings">Tap your profile picture to open Signal Settings</string>
|
||||
<string name="LinkAccountScreen__tap_your_profile_picture_to_open_signal_settings">Tippe auf dein Profilbild, um die Signal-Einstellungen zu öffnen</string>
|
||||
<!-- Step in the link-account instructions: navigate to the Linked devices section and tap Link new device. The quoted strings should match the button/menu labels in the primary device\'s settings. -->
|
||||
<string name="LinkAccountScreen__tap_linked_devices_and_link_new_device">Tap \"Linked devices\" and \"Link new device\"</string>
|
||||
<string name="LinkAccountScreen__tap_linked_devices_and_link_new_device">Tippe auf »Gekoppelte Geräte« und »Neues Gerät koppeln«</string>
|
||||
<!-- Step in the link-account instructions: aim the primary device\'s camera at the QR code displayed on this screen -->
|
||||
<string name="LinkAccountScreen__position_the_camera_over_this_qr_code">Position the camera over this qr code</string>
|
||||
<string name="LinkAccountScreen__position_the_camera_over_this_qr_code">Halte die Kamera auf diesen QR-Code</string>
|
||||
<!-- Button label opening help content for users who can\'t complete the link-account steps -->
|
||||
<string name="LinkAccountScreen__get_help_with_these_steps">Get help with these steps</string>
|
||||
<string name="LinkAccountScreen__get_help_with_these_steps">Hilfe bei diesen Schritten</string>
|
||||
<!-- Accessibility content description for the button that enlarges the QR code to full screen -->
|
||||
<string name="LinkAccountScreen__maximize_qr_code">Maximize QR Code</string>
|
||||
<string name="LinkAccountScreen__maximize_qr_code">QR-Code vergrößern</string>
|
||||
<!-- Label shown in place of the QR code after the primary device has successfully scanned it -->
|
||||
<string name="LinkAccountScreen__scanned">Scanned</string>
|
||||
<string name="LinkAccountScreen__scanned">Gescannt</string>
|
||||
<!-- Error label shown in place of the QR code if it could not be generated -->
|
||||
<string name="LinkAccountScreen__failed_to_generate_code">Failed to generate code</string>
|
||||
<string name="LinkAccountScreen__failed_to_generate_code">Code konnte nicht erstellt werden</string>
|
||||
<!-- Footer prompt asking the user if they have another device with Signal. Precedes a separate "Create account" link. -->
|
||||
<string name="LinkAccountScreen__dont_have_signal_on_another_device">Don\'t have Signal on another device?</string>
|
||||
<string name="LinkAccountScreen__dont_have_signal_on_another_device">Du hast Signal noch nicht auf einem anderen Gerät installiert?</string>
|
||||
<!-- Inline link in the link-account screen footer that takes the user to the new-account creation flow instead of linking -->
|
||||
<string name="LinkAccountScreen__create_account">Erstelle ein Konto</string>
|
||||
</resources>
|
||||
|
||||
@@ -316,7 +316,7 @@
|
||||
<!-- PIN creation screen title when confirming the new Signal PIN. -->
|
||||
<string name="PinCreationScreen__confirm_your_pin">Επαλήθευσε το PIN σου</string>
|
||||
<!-- Describes how to confirm the new Signal PIN. -->
|
||||
<string name="PinCreationScreen__reenter_pin_description">Re-enter the PIN you just created</string>
|
||||
<string name="PinCreationScreen__reenter_pin_description">Γράψε ξανά το PIN που μόλις δημιούργησες</string>
|
||||
<!-- Describes the purpose of creating a Signal PIN. -->
|
||||
<string name="PinCreationScreen__pins_can_help">Τα PIN μπορούν να σε βοηθήσουν να επαναφέρεις τον λογαριασμό σου εάν χάσεις το κινητό σου. </string>
|
||||
<!-- Labels the button to learn more about Signal PINs. -->
|
||||
@@ -357,7 +357,7 @@
|
||||
<!-- Title for the screen asking the user to grant the notification permission -->
|
||||
<string name="AllowNotificationsScreen__allow_notifications">Να επιτρέπονται οι ειδοποιήσεις</string>
|
||||
<!-- Description for the screen asking the user to grant the notification permission -->
|
||||
<string name="AllowNotificationsScreen__signal_would_like_to_request_the_notification_permission">Signal would like to request the notification permission. This allows your device to display alerts when new messages arrive.</string>
|
||||
<string name="AllowNotificationsScreen__signal_would_like_to_request_the_notification_permission">Το Signal θέλει να ζητήσει την άδεια ειδοποιήσεων. Αυτό επιτρέπει στη συσκευή σου να εμφανίζει ειδοποιήσεις όταν λαμβάνεις νέα μηνύματα.</string>
|
||||
<!-- Button label that dismisses the notification permission request without granting it -->
|
||||
<string name="AllowNotificationsScreen__not_now">Όχι τώρα</string>
|
||||
<!-- Button label that proceeds with the notification permission request -->
|
||||
@@ -366,36 +366,36 @@
|
||||
<!-- Title shown while messages are syncing from the primary device -->
|
||||
<string name="MessageSyncScreen__syncing_messages">Συγχρονισμός μηνυμάτων</string>
|
||||
<!-- Subtitle shown while messages are syncing from the primary device, indicating it may take a while -->
|
||||
<string name="MessageSyncScreen__this_may_take_a_few_minutes">This may take a few minutes…</string>
|
||||
<string name="MessageSyncScreen__this_may_take_a_few_minutes">Αυτό μπορεί να πάρει μερικά λεπτά…</string>
|
||||
<!-- Progress label shown under the sync progress bar. %1$s is the amount downloaded so far (e.g. "1 MB"), %2$s is the total size to download (e.g. "3.2 MB") -->
|
||||
<string name="MessageSyncScreen__downloading_s_of_s">Λήψη %1$s από %2$s</string>
|
||||
<!-- Informational notice in the sync screen footer, indicating the sync is end-to-end encrypted. Precedes a separate "Learn more" link. -->
|
||||
<string name="MessageSyncScreen__messages_and_chat_info_are_protected_by_e2ee">Messages and chat info are protected by end-to-end encryption, including the syncing process.</string>
|
||||
<string name="MessageSyncScreen__messages_and_chat_info_are_protected_by_e2ee">Τα μηνύματα και οι πληροφορίες συνομιλίας προστατεύονται με κρυπτογράφηση από άκρο σε άκρο, συμπεριλαμβανομένης της διαδικασίας συγχρονισμού.</string>
|
||||
<!-- Inline link in the sync screen footer that opens documentation about end-to-end encryption during sync -->
|
||||
<string name="MessageSyncScreen__learn_more">Μάθε περισσότερα</string>
|
||||
<!-- Button label that cancels the in-progress message sync -->
|
||||
<string name="MessageSyncScreen__cancel">Ακύρωση</string>
|
||||
|
||||
<!-- Title for the screen that shows a QR code the user scans with their existing primary device to link this device as a secondary -->
|
||||
<string name="LinkAccountScreen__scan_this_code_to_link_your_account">Scan this code to link your account</string>
|
||||
<string name="LinkAccountScreen__scan_this_code_to_link_your_account">Σάρωσε αυτόν τον κωδικό για να συνδέσεις τον λογαριασμό σου</string>
|
||||
<!-- Step in the link-account instructions: open Signal on the user\'s existing phone -->
|
||||
<string name="LinkAccountScreen__open_signal_on_your_phone">Άνοιξε το Signal στο κινητό σου</string>
|
||||
<!-- Step in the link-account instructions: tap profile picture to open Signal Settings -->
|
||||
<string name="LinkAccountScreen__tap_your_profile_picture_to_open_signal_settings">Tap your profile picture to open Signal Settings</string>
|
||||
<string name="LinkAccountScreen__tap_your_profile_picture_to_open_signal_settings">Πάτα στη φωτογραφία προφίλ για να ανοίξεις τις Ρυθμίσεις Signal</string>
|
||||
<!-- Step in the link-account instructions: navigate to the Linked devices section and tap Link new device. The quoted strings should match the button/menu labels in the primary device\'s settings. -->
|
||||
<string name="LinkAccountScreen__tap_linked_devices_and_link_new_device">Tap \"Linked devices\" and \"Link new device\"</string>
|
||||
<string name="LinkAccountScreen__tap_linked_devices_and_link_new_device">Πάτα «Συνδεδεμένες συσκευές» και «Σύνδεση νέας συσκευής»</string>
|
||||
<!-- Step in the link-account instructions: aim the primary device\'s camera at the QR code displayed on this screen -->
|
||||
<string name="LinkAccountScreen__position_the_camera_over_this_qr_code">Position the camera over this qr code</string>
|
||||
<string name="LinkAccountScreen__position_the_camera_over_this_qr_code">Τοποθέτησε την κάμερα πάνω από αυτόν τον κωδικό QR</string>
|
||||
<!-- Button label opening help content for users who can\'t complete the link-account steps -->
|
||||
<string name="LinkAccountScreen__get_help_with_these_steps">Get help with these steps</string>
|
||||
<string name="LinkAccountScreen__get_help_with_these_steps">Λάβε βοήθεια σχετικά με αυτά τα βήματα</string>
|
||||
<!-- Accessibility content description for the button that enlarges the QR code to full screen -->
|
||||
<string name="LinkAccountScreen__maximize_qr_code">Maximize QR Code</string>
|
||||
<string name="LinkAccountScreen__maximize_qr_code">Μεγιστοποίηση κωδικού QR</string>
|
||||
<!-- Label shown in place of the QR code after the primary device has successfully scanned it -->
|
||||
<string name="LinkAccountScreen__scanned">Scanned</string>
|
||||
<string name="LinkAccountScreen__scanned">Έγινε σάρωση</string>
|
||||
<!-- Error label shown in place of the QR code if it could not be generated -->
|
||||
<string name="LinkAccountScreen__failed_to_generate_code">Failed to generate code</string>
|
||||
<string name="LinkAccountScreen__failed_to_generate_code">Αποτυχία δημιουργίας κωδικού</string>
|
||||
<!-- Footer prompt asking the user if they have another device with Signal. Precedes a separate "Create account" link. -->
|
||||
<string name="LinkAccountScreen__dont_have_signal_on_another_device">Don\'t have Signal on another device?</string>
|
||||
<string name="LinkAccountScreen__dont_have_signal_on_another_device">Δεν έχεις το Signal σε άλλη συσκευή;</string>
|
||||
<!-- Inline link in the link-account screen footer that takes the user to the new-account creation flow instead of linking -->
|
||||
<string name="LinkAccountScreen__create_account">Δημιουργία λογαριασμού</string>
|
||||
</resources>
|
||||
|
||||
@@ -316,7 +316,7 @@
|
||||
<!-- PIN creation screen title when confirming the new Signal PIN. -->
|
||||
<string name="PinCreationScreen__confirm_your_pin">Confirma tu PIN</string>
|
||||
<!-- Describes how to confirm the new Signal PIN. -->
|
||||
<string name="PinCreationScreen__reenter_pin_description">Re-enter the PIN you just created</string>
|
||||
<string name="PinCreationScreen__reenter_pin_description">Vuelve a introducir el PIN que acabas de crear</string>
|
||||
<!-- Describes the purpose of creating a Signal PIN. -->
|
||||
<string name="PinCreationScreen__pins_can_help">El PIN puede ayudarte a restaurar tu cuenta si pierdes tu teléfono. </string>
|
||||
<!-- Labels the button to learn more about Signal PINs. -->
|
||||
@@ -328,9 +328,9 @@
|
||||
<!-- Labels the button to submit a new Signal PIN. -->
|
||||
<string name="PinCreationScreen__next">Siguiente</string>
|
||||
<!-- Hint shown below the create PIN field when numeric keyboard is active. -->
|
||||
<string name="PinCreationScreen__pin_at_least_4_digits">El PIN debe contener al menos 4 dígitos</string>
|
||||
<string name="PinCreationScreen__pin_at_least_4_digits">El PIN debe contener al menos 4 dígitos</string>
|
||||
<!-- Hint shown below the create PIN field when alphanumeric keyboard is active. -->
|
||||
<string name="PinCreationScreen__pin_at_least_4_characters">El PIN debe contener al menos 4 caracteres</string>
|
||||
<string name="PinCreationScreen__pin_at_least_4_characters">El PIN debe contener al menos 4 caracteres</string>
|
||||
<!-- Hint shown below the create PIN field when the user is confirming their new Signal PIN. -->
|
||||
<string name="PinCreationScreen__reenter_pin">Vuelve a introducir el PIN</string>
|
||||
|
||||
@@ -342,8 +342,8 @@
|
||||
<string name="PinEntryScreen__enter_the_pin_you_created">Introduce el PIN que creaste cuando instalaste Signal por primera vez.</string>
|
||||
<!-- Error shown when an incorrect PIN is entered. %1$d is the number of attempts remaining. -->
|
||||
<plurals name="PinEntryScreen__incorrect_pin">
|
||||
<item quantity="one">PIN incorrecto. Te queda %1$d intento.</item>
|
||||
<item quantity="other">PIN incorrecto. Te quedan %1$d intentos.</item>
|
||||
<item quantity="one">PIN incorrecto. Te queda %1$d intento.</item>
|
||||
<item quantity="other">PIN incorrecto. Te quedan %1$d intentos.</item>
|
||||
</plurals>
|
||||
<!-- Labels the button to get help with PIN entry. -->
|
||||
<string name="PinEntryScreen__need_help">¿Necesitas ayuda?</string>
|
||||
@@ -357,7 +357,7 @@
|
||||
<!-- Title for the screen asking the user to grant the notification permission -->
|
||||
<string name="AllowNotificationsScreen__allow_notifications">Permitir notificaciones</string>
|
||||
<!-- Description for the screen asking the user to grant the notification permission -->
|
||||
<string name="AllowNotificationsScreen__signal_would_like_to_request_the_notification_permission">Signal would like to request the notification permission. This allows your device to display alerts when new messages arrive.</string>
|
||||
<string name="AllowNotificationsScreen__signal_would_like_to_request_the_notification_permission">Signal necesita permiso para mostrarte notificaciones. Así podrás recibir alertas en tu dispositivo cuando te lleguen mensajes nuevos.</string>
|
||||
<!-- Button label that dismisses the notification permission request without granting it -->
|
||||
<string name="AllowNotificationsScreen__not_now">Ahora no</string>
|
||||
<!-- Button label that proceeds with the notification permission request -->
|
||||
@@ -366,36 +366,36 @@
|
||||
<!-- Title shown while messages are syncing from the primary device -->
|
||||
<string name="MessageSyncScreen__syncing_messages">Sincronizando mensajes</string>
|
||||
<!-- Subtitle shown while messages are syncing from the primary device, indicating it may take a while -->
|
||||
<string name="MessageSyncScreen__this_may_take_a_few_minutes">This may take a few minutes…</string>
|
||||
<string name="MessageSyncScreen__this_may_take_a_few_minutes">Este proceso puede llevar unos minutos…</string>
|
||||
<!-- Progress label shown under the sync progress bar. %1$s is the amount downloaded so far (e.g. "1 MB"), %2$s is the total size to download (e.g. "3.2 MB") -->
|
||||
<string name="MessageSyncScreen__downloading_s_of_s">Descargando: %1$s de %2$s</string>
|
||||
<!-- Informational notice in the sync screen footer, indicating the sync is end-to-end encrypted. Precedes a separate "Learn more" link. -->
|
||||
<string name="MessageSyncScreen__messages_and_chat_info_are_protected_by_e2ee">Messages and chat info are protected by end-to-end encryption, including the syncing process.</string>
|
||||
<string name="MessageSyncScreen__messages_and_chat_info_are_protected_by_e2ee">Los mensajes y chats, al igual que el proceso de sincronización, están protegidos con cifrado de extremo a extremo.</string>
|
||||
<!-- Inline link in the sync screen footer that opens documentation about end-to-end encryption during sync -->
|
||||
<string name="MessageSyncScreen__learn_more">Más información</string>
|
||||
<!-- Button label that cancels the in-progress message sync -->
|
||||
<string name="MessageSyncScreen__cancel">Cancelar</string>
|
||||
|
||||
<!-- Title for the screen that shows a QR code the user scans with their existing primary device to link this device as a secondary -->
|
||||
<string name="LinkAccountScreen__scan_this_code_to_link_your_account">Scan this code to link your account</string>
|
||||
<string name="LinkAccountScreen__scan_this_code_to_link_your_account">Escanea este código para vincular tu cuenta</string>
|
||||
<!-- Step in the link-account instructions: open Signal on the user\'s existing phone -->
|
||||
<string name="LinkAccountScreen__open_signal_on_your_phone">Abre Signal en tu teléfono</string>
|
||||
<!-- Step in the link-account instructions: tap profile picture to open Signal Settings -->
|
||||
<string name="LinkAccountScreen__tap_your_profile_picture_to_open_signal_settings">Tap your profile picture to open Signal Settings</string>
|
||||
<string name="LinkAccountScreen__tap_your_profile_picture_to_open_signal_settings">Toca tu foto de perfil para abrir los Ajustes de Signal</string>
|
||||
<!-- Step in the link-account instructions: navigate to the Linked devices section and tap Link new device. The quoted strings should match the button/menu labels in the primary device\'s settings. -->
|
||||
<string name="LinkAccountScreen__tap_linked_devices_and_link_new_device">Tap \"Linked devices\" and \"Link new device\"</string>
|
||||
<string name="LinkAccountScreen__tap_linked_devices_and_link_new_device">Toca \"Dispositivos vinculados\" > \"Vincular nuevo dispositivo\"</string>
|
||||
<!-- Step in the link-account instructions: aim the primary device\'s camera at the QR code displayed on this screen -->
|
||||
<string name="LinkAccountScreen__position_the_camera_over_this_qr_code">Position the camera over this qr code</string>
|
||||
<string name="LinkAccountScreen__position_the_camera_over_this_qr_code">Coloca la cámara sobre este código QR</string>
|
||||
<!-- Button label opening help content for users who can\'t complete the link-account steps -->
|
||||
<string name="LinkAccountScreen__get_help_with_these_steps">Get help with these steps</string>
|
||||
<string name="LinkAccountScreen__get_help_with_these_steps">¿Necesitas ayuda con estos pasos?</string>
|
||||
<!-- Accessibility content description for the button that enlarges the QR code to full screen -->
|
||||
<string name="LinkAccountScreen__maximize_qr_code">Maximize QR Code</string>
|
||||
<string name="LinkAccountScreen__maximize_qr_code">Ampliar código QR</string>
|
||||
<!-- Label shown in place of the QR code after the primary device has successfully scanned it -->
|
||||
<string name="LinkAccountScreen__scanned">Scanned</string>
|
||||
<string name="LinkAccountScreen__scanned">Escaneado</string>
|
||||
<!-- Error label shown in place of the QR code if it could not be generated -->
|
||||
<string name="LinkAccountScreen__failed_to_generate_code">Failed to generate code</string>
|
||||
<string name="LinkAccountScreen__failed_to_generate_code">No se ha podido generar el código</string>
|
||||
<!-- Footer prompt asking the user if they have another device with Signal. Precedes a separate "Create account" link. -->
|
||||
<string name="LinkAccountScreen__dont_have_signal_on_another_device">Don\'t have Signal on another device?</string>
|
||||
<string name="LinkAccountScreen__dont_have_signal_on_another_device">¿No tienes Signal en otro dispositivo?</string>
|
||||
<!-- Inline link in the link-account screen footer that takes the user to the new-account creation flow instead of linking -->
|
||||
<string name="LinkAccountScreen__create_account">Crear una cuenta</string>
|
||||
</resources>
|
||||
|
||||
@@ -314,9 +314,9 @@
|
||||
<!-- PIN creation screen title. -->
|
||||
<string name="PinCreationScreen__create_your_pin">Loo enda PIN-kood</string>
|
||||
<!-- PIN creation screen title when confirming the new Signal PIN. -->
|
||||
<string name="PinCreationScreen__confirm_your_pin">Confirm your PIN</string>
|
||||
<string name="PinCreationScreen__confirm_your_pin">Kinnita enda PIN-kood</string>
|
||||
<!-- Describes how to confirm the new Signal PIN. -->
|
||||
<string name="PinCreationScreen__reenter_pin_description">Re-enter the PIN you just created</string>
|
||||
<string name="PinCreationScreen__reenter_pin_description">Sisesta just loodud PIN-kood uuesti</string>
|
||||
<!-- Describes the purpose of creating a Signal PIN. -->
|
||||
<string name="PinCreationScreen__pins_can_help">PIN-kood võimaldab sul konto taastada, kui sa oma telefoni ära kaotad. </string>
|
||||
<!-- Labels the button to learn more about Signal PINs. -->
|
||||
@@ -328,11 +328,11 @@
|
||||
<!-- Labels the button to submit a new Signal PIN. -->
|
||||
<string name="PinCreationScreen__next">Edasi</string>
|
||||
<!-- Hint shown below the create PIN field when numeric keyboard is active. -->
|
||||
<string name="PinCreationScreen__pin_at_least_4_digits">PIN must be at least 4 digits</string>
|
||||
<string name="PinCreationScreen__pin_at_least_4_digits">PIN-kood peab olema vähemalt 4 numbrit pikk</string>
|
||||
<!-- Hint shown below the create PIN field when alphanumeric keyboard is active. -->
|
||||
<string name="PinCreationScreen__pin_at_least_4_characters">PIN must be at least 4 characters</string>
|
||||
<string name="PinCreationScreen__pin_at_least_4_characters">PIN-kood peab olema vähemalt 4 tähemärki pikk</string>
|
||||
<!-- Hint shown below the create PIN field when the user is confirming their new Signal PIN. -->
|
||||
<string name="PinCreationScreen__reenter_pin">Re-enter PIN</string>
|
||||
<string name="PinCreationScreen__reenter_pin">Sisesta PIN-kood uuesti</string>
|
||||
|
||||
<!-- PIN entry screen title when registration lock is active. -->
|
||||
<string name="PinEntryScreen__registration_lock">Registreerimislukk</string>
|
||||
@@ -342,8 +342,8 @@
|
||||
<string name="PinEntryScreen__enter_the_pin_you_created">Sisesta PIN-kood, mille sa Signalit esmakordselt paigaldades lõid</string>
|
||||
<!-- Error shown when an incorrect PIN is entered. %1$d is the number of attempts remaining. -->
|
||||
<plurals name="PinEntryScreen__incorrect_pin">
|
||||
<item quantity="one">Lubamatu PIN-kood. %1$d katse jäänud.</item>
|
||||
<item quantity="other">Lubamatu PIN-kood. %1$d katse jäänud.</item>
|
||||
<item quantity="one">Vale PIN-kood. %1$d katse jäänud.</item>
|
||||
<item quantity="other">Vale PIN-kood. %1$d katset jäänud.</item>
|
||||
</plurals>
|
||||
<!-- Labels the button to get help with PIN entry. -->
|
||||
<string name="PinEntryScreen__need_help">Kas vajad abi?</string>
|
||||
@@ -355,9 +355,9 @@
|
||||
<string name="PinEntryScreen__continue">Jätka</string>
|
||||
|
||||
<!-- Title for the screen asking the user to grant the notification permission -->
|
||||
<string name="AllowNotificationsScreen__allow_notifications">Allow Notifications</string>
|
||||
<string name="AllowNotificationsScreen__allow_notifications">Luba teavitused</string>
|
||||
<!-- Description for the screen asking the user to grant the notification permission -->
|
||||
<string name="AllowNotificationsScreen__signal_would_like_to_request_the_notification_permission">Signal would like to request the notification permission. This allows your device to display alerts when new messages arrive.</string>
|
||||
<string name="AllowNotificationsScreen__signal_would_like_to_request_the_notification_permission">Signal soovib luba teavituste saatmiseks. Nii saab su seade sind teavitada, kui uued sõnumid saabuvad.</string>
|
||||
<!-- Button label that dismisses the notification permission request without granting it -->
|
||||
<string name="AllowNotificationsScreen__not_now">Mitte praegu</string>
|
||||
<!-- Button label that proceeds with the notification permission request -->
|
||||
@@ -366,36 +366,36 @@
|
||||
<!-- Title shown while messages are syncing from the primary device -->
|
||||
<string name="MessageSyncScreen__syncing_messages">Sõnumite sünkroniseerimine</string>
|
||||
<!-- Subtitle shown while messages are syncing from the primary device, indicating it may take a while -->
|
||||
<string name="MessageSyncScreen__this_may_take_a_few_minutes">This may take a few minutes…</string>
|
||||
<string name="MessageSyncScreen__this_may_take_a_few_minutes">Selleks võib kuluda mõni minut …</string>
|
||||
<!-- Progress label shown under the sync progress bar. %1$s is the amount downloaded so far (e.g. "1 MB"), %2$s is the total size to download (e.g. "3.2 MB") -->
|
||||
<string name="MessageSyncScreen__downloading_s_of_s">Allalaadimine: %1$s kogumahust %2$s</string>
|
||||
<!-- Informational notice in the sync screen footer, indicating the sync is end-to-end encrypted. Precedes a separate "Learn more" link. -->
|
||||
<string name="MessageSyncScreen__messages_and_chat_info_are_protected_by_e2ee">Messages and chat info are protected by end-to-end encryption, including the syncing process.</string>
|
||||
<string name="MessageSyncScreen__messages_and_chat_info_are_protected_by_e2ee">Sõnumid ja vestluste info on kaitstud kõigis seadmetes otspunktkrüpteeringuga, sh sünkroniseerimisprotsess.</string>
|
||||
<!-- Inline link in the sync screen footer that opens documentation about end-to-end encryption during sync -->
|
||||
<string name="MessageSyncScreen__learn_more">Rohkem teavet</string>
|
||||
<!-- Button label that cancels the in-progress message sync -->
|
||||
<string name="MessageSyncScreen__cancel">Loobu</string>
|
||||
|
||||
<!-- Title for the screen that shows a QR code the user scans with their existing primary device to link this device as a secondary -->
|
||||
<string name="LinkAccountScreen__scan_this_code_to_link_your_account">Scan this code to link your account</string>
|
||||
<string name="LinkAccountScreen__scan_this_code_to_link_your_account">Skanni see kood oma konto linkimiseks</string>
|
||||
<!-- Step in the link-account instructions: open Signal on the user\'s existing phone -->
|
||||
<string name="LinkAccountScreen__open_signal_on_your_phone">Ava Signal enda telefonis</string>
|
||||
<!-- Step in the link-account instructions: tap profile picture to open Signal Settings -->
|
||||
<string name="LinkAccountScreen__tap_your_profile_picture_to_open_signal_settings">Tap your profile picture to open Signal Settings</string>
|
||||
<string name="LinkAccountScreen__tap_your_profile_picture_to_open_signal_settings">Toksa oma profiilipilti ja ava Signali sätted</string>
|
||||
<!-- Step in the link-account instructions: navigate to the Linked devices section and tap Link new device. The quoted strings should match the button/menu labels in the primary device\'s settings. -->
|
||||
<string name="LinkAccountScreen__tap_linked_devices_and_link_new_device">Tap \"Linked devices\" and \"Link new device\"</string>
|
||||
<string name="LinkAccountScreen__tap_linked_devices_and_link_new_device">Vali Lingitud seadmete alt Lingi uus seade</string>
|
||||
<!-- Step in the link-account instructions: aim the primary device\'s camera at the QR code displayed on this screen -->
|
||||
<string name="LinkAccountScreen__position_the_camera_over_this_qr_code">Position the camera over this qr code</string>
|
||||
<string name="LinkAccountScreen__position_the_camera_over_this_qr_code">Skanni kaameraga see QR-kood</string>
|
||||
<!-- Button label opening help content for users who can\'t complete the link-account steps -->
|
||||
<string name="LinkAccountScreen__get_help_with_these_steps">Get help with these steps</string>
|
||||
<string name="LinkAccountScreen__get_help_with_these_steps">Palu nende sammude teostamiseks abi</string>
|
||||
<!-- Accessibility content description for the button that enlarges the QR code to full screen -->
|
||||
<string name="LinkAccountScreen__maximize_qr_code">Maximize QR Code</string>
|
||||
<string name="LinkAccountScreen__maximize_qr_code">Suurenda QR-koodi</string>
|
||||
<!-- Label shown in place of the QR code after the primary device has successfully scanned it -->
|
||||
<string name="LinkAccountScreen__scanned">Scanned</string>
|
||||
<string name="LinkAccountScreen__scanned">Skannitud</string>
|
||||
<!-- Error label shown in place of the QR code if it could not be generated -->
|
||||
<string name="LinkAccountScreen__failed_to_generate_code">Failed to generate code</string>
|
||||
<string name="LinkAccountScreen__failed_to_generate_code">Koodi ei saanud luua</string>
|
||||
<!-- Footer prompt asking the user if they have another device with Signal. Precedes a separate "Create account" link. -->
|
||||
<string name="LinkAccountScreen__dont_have_signal_on_another_device">Don\'t have Signal on another device?</string>
|
||||
<string name="LinkAccountScreen__dont_have_signal_on_another_device">Kas sul ei ole teises seadmes Signalit?</string>
|
||||
<!-- Inline link in the link-account screen footer that takes the user to the new-account creation flow instead of linking -->
|
||||
<string name="LinkAccountScreen__create_account">Loo konto</string>
|
||||
</resources>
|
||||
|
||||
@@ -314,9 +314,9 @@
|
||||
<!-- PIN creation screen title. -->
|
||||
<string name="PinCreationScreen__create_your_pin">Sortu zure PINa</string>
|
||||
<!-- PIN creation screen title when confirming the new Signal PIN. -->
|
||||
<string name="PinCreationScreen__confirm_your_pin">Confirm your PIN</string>
|
||||
<string name="PinCreationScreen__confirm_your_pin">Baieztatu zure PINa</string>
|
||||
<!-- Describes how to confirm the new Signal PIN. -->
|
||||
<string name="PinCreationScreen__reenter_pin_description">Re-enter the PIN you just created</string>
|
||||
<string name="PinCreationScreen__reenter_pin_description">Idatzi berriro sortu berri duzun PINa</string>
|
||||
<!-- Describes the purpose of creating a Signal PIN. -->
|
||||
<string name="PinCreationScreen__pins_can_help">PINekin, kontua leheneratu ahalko duzu telefonoa galtzen baduzu. </string>
|
||||
<!-- Labels the button to learn more about Signal PINs. -->
|
||||
@@ -328,11 +328,11 @@
|
||||
<!-- Labels the button to submit a new Signal PIN. -->
|
||||
<string name="PinCreationScreen__next">Hurrengoa</string>
|
||||
<!-- Hint shown below the create PIN field when numeric keyboard is active. -->
|
||||
<string name="PinCreationScreen__pin_at_least_4_digits">PIN must be at least 4 digits</string>
|
||||
<string name="PinCreationScreen__pin_at_least_4_digits">PINak gutxienez 4 zenbaki izan behar ditu</string>
|
||||
<!-- Hint shown below the create PIN field when alphanumeric keyboard is active. -->
|
||||
<string name="PinCreationScreen__pin_at_least_4_characters">PIN must be at least 4 characters</string>
|
||||
<string name="PinCreationScreen__pin_at_least_4_characters">PINak gutxienez 4 karaktere izan behar ditu</string>
|
||||
<!-- Hint shown below the create PIN field when the user is confirming their new Signal PIN. -->
|
||||
<string name="PinCreationScreen__reenter_pin">Re-enter PIN</string>
|
||||
<string name="PinCreationScreen__reenter_pin">Idatzi berriro PINa</string>
|
||||
|
||||
<!-- PIN entry screen title when registration lock is active. -->
|
||||
<string name="PinEntryScreen__registration_lock">Erregistratze-blokeoa</string>
|
||||
@@ -355,9 +355,9 @@
|
||||
<string name="PinEntryScreen__continue">Jarraitu</string>
|
||||
|
||||
<!-- Title for the screen asking the user to grant the notification permission -->
|
||||
<string name="AllowNotificationsScreen__allow_notifications">Allow Notifications</string>
|
||||
<string name="AllowNotificationsScreen__allow_notifications">Baimendu jakinarazpenak</string>
|
||||
<!-- Description for the screen asking the user to grant the notification permission -->
|
||||
<string name="AllowNotificationsScreen__signal_would_like_to_request_the_notification_permission">Signal would like to request the notification permission. This allows your device to display alerts when new messages arrive.</string>
|
||||
<string name="AllowNotificationsScreen__signal_would_like_to_request_the_notification_permission">Signal-ek jakinarazpenak bidaltzeko baimena nahi du. Horri esker, zure gailuak alertak bistaratu ahal izango ditu mezu berriak iristen direnean.</string>
|
||||
<!-- Button label that dismisses the notification permission request without granting it -->
|
||||
<string name="AllowNotificationsScreen__not_now">Orain ez</string>
|
||||
<!-- Button label that proceeds with the notification permission request -->
|
||||
@@ -366,36 +366,36 @@
|
||||
<!-- Title shown while messages are syncing from the primary device -->
|
||||
<string name="MessageSyncScreen__syncing_messages">Mezuak sinkronizatzen</string>
|
||||
<!-- Subtitle shown while messages are syncing from the primary device, indicating it may take a while -->
|
||||
<string name="MessageSyncScreen__this_may_take_a_few_minutes">This may take a few minutes…</string>
|
||||
<string name="MessageSyncScreen__this_may_take_a_few_minutes">Baliteke minutu batzuk behar izatea…</string>
|
||||
<!-- Progress label shown under the sync progress bar. %1$s is the amount downloaded so far (e.g. "1 MB"), %2$s is the total size to download (e.g. "3.2 MB") -->
|
||||
<string name="MessageSyncScreen__downloading_s_of_s">%1$s / %2$s deskargatzen</string>
|
||||
<!-- Informational notice in the sync screen footer, indicating the sync is end-to-end encrypted. Precedes a separate "Learn more" link. -->
|
||||
<string name="MessageSyncScreen__messages_and_chat_info_are_protected_by_e2ee">Messages and chat info are protected by end-to-end encryption, including the syncing process.</string>
|
||||
<string name="MessageSyncScreen__messages_and_chat_info_are_protected_by_e2ee">Mezuak eta txatari buruzko informazioa muturretik muturrerako enkriptatzearen bidez daude babestuta (sinkronizazio-prozesua barne).</string>
|
||||
<!-- Inline link in the sync screen footer that opens documentation about end-to-end encryption during sync -->
|
||||
<string name="MessageSyncScreen__learn_more">Informazio gehiago</string>
|
||||
<!-- Button label that cancels the in-progress message sync -->
|
||||
<string name="MessageSyncScreen__cancel">Utzi</string>
|
||||
|
||||
<!-- Title for the screen that shows a QR code the user scans with their existing primary device to link this device as a secondary -->
|
||||
<string name="LinkAccountScreen__scan_this_code_to_link_your_account">Scan this code to link your account</string>
|
||||
<string name="LinkAccountScreen__scan_this_code_to_link_your_account">Eskaneatu kode hau kontua lotzeko</string>
|
||||
<!-- Step in the link-account instructions: open Signal on the user\'s existing phone -->
|
||||
<string name="LinkAccountScreen__open_signal_on_your_phone">Ireki Signal telefonoan</string>
|
||||
<!-- Step in the link-account instructions: tap profile picture to open Signal Settings -->
|
||||
<string name="LinkAccountScreen__tap_your_profile_picture_to_open_signal_settings">Tap your profile picture to open Signal Settings</string>
|
||||
<string name="LinkAccountScreen__tap_your_profile_picture_to_open_signal_settings">Sakatu profileko argazkia Signal-en ezarpenak irekitzeko</string>
|
||||
<!-- Step in the link-account instructions: navigate to the Linked devices section and tap Link new device. The quoted strings should match the button/menu labels in the primary device\'s settings. -->
|
||||
<string name="LinkAccountScreen__tap_linked_devices_and_link_new_device">Tap \"Linked devices\" and \"Link new device\"</string>
|
||||
<string name="LinkAccountScreen__tap_linked_devices_and_link_new_device">Sakatu \"Lotutako gailuak\" eta \"Lotu gailu berria\"</string>
|
||||
<!-- Step in the link-account instructions: aim the primary device\'s camera at the QR code displayed on this screen -->
|
||||
<string name="LinkAccountScreen__position_the_camera_over_this_qr_code">Position the camera over this qr code</string>
|
||||
<string name="LinkAccountScreen__position_the_camera_over_this_qr_code">Jarri kamera qr kode honen gainean</string>
|
||||
<!-- Button label opening help content for users who can\'t complete the link-account steps -->
|
||||
<string name="LinkAccountScreen__get_help_with_these_steps">Get help with these steps</string>
|
||||
<string name="LinkAccountScreen__get_help_with_these_steps">Lortu laguntza urrats hauekin</string>
|
||||
<!-- Accessibility content description for the button that enlarges the QR code to full screen -->
|
||||
<string name="LinkAccountScreen__maximize_qr_code">Maximize QR Code</string>
|
||||
<string name="LinkAccountScreen__maximize_qr_code">Maximizatu QR kodea</string>
|
||||
<!-- Label shown in place of the QR code after the primary device has successfully scanned it -->
|
||||
<string name="LinkAccountScreen__scanned">Scanned</string>
|
||||
<string name="LinkAccountScreen__scanned">Eskaneatuta</string>
|
||||
<!-- Error label shown in place of the QR code if it could not be generated -->
|
||||
<string name="LinkAccountScreen__failed_to_generate_code">Failed to generate code</string>
|
||||
<string name="LinkAccountScreen__failed_to_generate_code">Ezin iza da sortu kodea</string>
|
||||
<!-- Footer prompt asking the user if they have another device with Signal. Precedes a separate "Create account" link. -->
|
||||
<string name="LinkAccountScreen__dont_have_signal_on_another_device">Don\'t have Signal on another device?</string>
|
||||
<string name="LinkAccountScreen__dont_have_signal_on_another_device">Ez duzu Signal beste gailu batean?</string>
|
||||
<!-- Inline link in the link-account screen footer that takes the user to the new-account creation flow instead of linking -->
|
||||
<string name="LinkAccountScreen__create_account">Sortu kontu bat</string>
|
||||
</resources>
|
||||
|
||||
@@ -316,7 +316,7 @@
|
||||
<!-- PIN creation screen title when confirming the new Signal PIN. -->
|
||||
<string name="PinCreationScreen__confirm_your_pin">پین خود را تأیید کنید</string>
|
||||
<!-- Describes how to confirm the new Signal PIN. -->
|
||||
<string name="PinCreationScreen__reenter_pin_description">Re-enter the PIN you just created</string>
|
||||
<string name="PinCreationScreen__reenter_pin_description">پینی که ایجاد کردید را دوباره وارد کنید</string>
|
||||
<!-- Describes the purpose of creating a Signal PIN. -->
|
||||
<string name="PinCreationScreen__pins_can_help">پینها میتوانند کمک کنند در صورت گم کردن تلفنتان بتوانید حسابتان را بازیابی کنید. </string>
|
||||
<!-- Labels the button to learn more about Signal PINs. -->
|
||||
@@ -357,7 +357,7 @@
|
||||
<!-- Title for the screen asking the user to grant the notification permission -->
|
||||
<string name="AllowNotificationsScreen__allow_notifications">اعلانها مجاز شود</string>
|
||||
<!-- Description for the screen asking the user to grant the notification permission -->
|
||||
<string name="AllowNotificationsScreen__signal_would_like_to_request_the_notification_permission">Signal would like to request the notification permission. This allows your device to display alerts when new messages arrive.</string>
|
||||
<string name="AllowNotificationsScreen__signal_would_like_to_request_the_notification_permission">سیگنال میخواهد مجوز اعلان را درخواست کند. این باعث میشود دستگاه شما هنگام دریافت پیامهای جدید، هشدارهایی را نمایش دهد.</string>
|
||||
<!-- Button label that dismisses the notification permission request without granting it -->
|
||||
<string name="AllowNotificationsScreen__not_now">حالا نه</string>
|
||||
<!-- Button label that proceeds with the notification permission request -->
|
||||
@@ -366,36 +366,36 @@
|
||||
<!-- Title shown while messages are syncing from the primary device -->
|
||||
<string name="MessageSyncScreen__syncing_messages">در حال همگامسازی پیامها</string>
|
||||
<!-- Subtitle shown while messages are syncing from the primary device, indicating it may take a while -->
|
||||
<string name="MessageSyncScreen__this_may_take_a_few_minutes">This may take a few minutes…</string>
|
||||
<string name="MessageSyncScreen__this_may_take_a_few_minutes">ممکن است چند دقیقه زمان ببرد…</string>
|
||||
<!-- Progress label shown under the sync progress bar. %1$s is the amount downloaded so far (e.g. "1 MB"), %2$s is the total size to download (e.g. "3.2 MB") -->
|
||||
<string name="MessageSyncScreen__downloading_s_of_s">در حال دانلود %1$s از %2$s</string>
|
||||
<!-- Informational notice in the sync screen footer, indicating the sync is end-to-end encrypted. Precedes a separate "Learn more" link. -->
|
||||
<string name="MessageSyncScreen__messages_and_chat_info_are_protected_by_e2ee">Messages and chat info are protected by end-to-end encryption, including the syncing process.</string>
|
||||
<string name="MessageSyncScreen__messages_and_chat_info_are_protected_by_e2ee">پیامها و اطلاعات گفتگو با رمزگذاری سرتاسری، ازجمله فرایند همگامسازی، محافظت میشوند.</string>
|
||||
<!-- Inline link in the sync screen footer that opens documentation about end-to-end encryption during sync -->
|
||||
<string name="MessageSyncScreen__learn_more">اطلاعات بیشتر</string>
|
||||
<!-- Button label that cancels the in-progress message sync -->
|
||||
<string name="MessageSyncScreen__cancel">لغو</string>
|
||||
|
||||
<!-- Title for the screen that shows a QR code the user scans with their existing primary device to link this device as a secondary -->
|
||||
<string name="LinkAccountScreen__scan_this_code_to_link_your_account">Scan this code to link your account</string>
|
||||
<string name="LinkAccountScreen__scan_this_code_to_link_your_account">برای اتصال حساب خود، این کد را اسکن کنید</string>
|
||||
<!-- Step in the link-account instructions: open Signal on the user\'s existing phone -->
|
||||
<string name="LinkAccountScreen__open_signal_on_your_phone">باز کردن سیگنال روی گوشی</string>
|
||||
<!-- Step in the link-account instructions: tap profile picture to open Signal Settings -->
|
||||
<string name="LinkAccountScreen__tap_your_profile_picture_to_open_signal_settings">Tap your profile picture to open Signal Settings</string>
|
||||
<string name="LinkAccountScreen__tap_your_profile_picture_to_open_signal_settings">برای باز کردن «تنظیمات سیگنال»، روی تصویر نمایه خود ضربه بزنید</string>
|
||||
<!-- Step in the link-account instructions: navigate to the Linked devices section and tap Link new device. The quoted strings should match the button/menu labels in the primary device\'s settings. -->
|
||||
<string name="LinkAccountScreen__tap_linked_devices_and_link_new_device">Tap \"Linked devices\" and \"Link new device\"</string>
|
||||
<string name="LinkAccountScreen__tap_linked_devices_and_link_new_device">روی «دستگاههای متصلشده» و «اتصال دستگاه جدید» ضربه بزنید</string>
|
||||
<!-- Step in the link-account instructions: aim the primary device\'s camera at the QR code displayed on this screen -->
|
||||
<string name="LinkAccountScreen__position_the_camera_over_this_qr_code">Position the camera over this qr code</string>
|
||||
<string name="LinkAccountScreen__position_the_camera_over_this_qr_code">دوربین را مقابل این کد QR قرار دهید</string>
|
||||
<!-- Button label opening help content for users who can\'t complete the link-account steps -->
|
||||
<string name="LinkAccountScreen__get_help_with_these_steps">Get help with these steps</string>
|
||||
<string name="LinkAccountScreen__get_help_with_these_steps">دریافت کمک در این مراحل</string>
|
||||
<!-- Accessibility content description for the button that enlarges the QR code to full screen -->
|
||||
<string name="LinkAccountScreen__maximize_qr_code">Maximize QR Code</string>
|
||||
<string name="LinkAccountScreen__maximize_qr_code">بزرگ کردن کد QR</string>
|
||||
<!-- Label shown in place of the QR code after the primary device has successfully scanned it -->
|
||||
<string name="LinkAccountScreen__scanned">Scanned</string>
|
||||
<string name="LinkAccountScreen__scanned">اسکن شد</string>
|
||||
<!-- Error label shown in place of the QR code if it could not be generated -->
|
||||
<string name="LinkAccountScreen__failed_to_generate_code">Failed to generate code</string>
|
||||
<string name="LinkAccountScreen__failed_to_generate_code">کد تولید نشد</string>
|
||||
<!-- Footer prompt asking the user if they have another device with Signal. Precedes a separate "Create account" link. -->
|
||||
<string name="LinkAccountScreen__dont_have_signal_on_another_device">Don\'t have Signal on another device?</string>
|
||||
<string name="LinkAccountScreen__dont_have_signal_on_another_device">سیگنال را روی دستگاه دیگری ندارید؟</string>
|
||||
<!-- Inline link in the link-account screen footer that takes the user to the new-account creation flow instead of linking -->
|
||||
<string name="LinkAccountScreen__create_account">ایجاد حساب</string>
|
||||
</resources>
|
||||
|
||||
@@ -316,7 +316,7 @@
|
||||
<!-- PIN creation screen title when confirming the new Signal PIN. -->
|
||||
<string name="PinCreationScreen__confirm_your_pin">Vahvista PIN-koodi</string>
|
||||
<!-- Describes how to confirm the new Signal PIN. -->
|
||||
<string name="PinCreationScreen__reenter_pin_description">Re-enter the PIN you just created</string>
|
||||
<string name="PinCreationScreen__reenter_pin_description">Syötä juuri luomasi PIN-koodi uudelleen</string>
|
||||
<!-- Describes the purpose of creating a Signal PIN. -->
|
||||
<string name="PinCreationScreen__pins_can_help">PIN-koodien avulla voit palauttaa tilisi, jos kadotat puhelimesi. </string>
|
||||
<!-- Labels the button to learn more about Signal PINs. -->
|
||||
@@ -357,7 +357,7 @@
|
||||
<!-- Title for the screen asking the user to grant the notification permission -->
|
||||
<string name="AllowNotificationsScreen__allow_notifications">Ilmoitusten salliminen</string>
|
||||
<!-- Description for the screen asking the user to grant the notification permission -->
|
||||
<string name="AllowNotificationsScreen__signal_would_like_to_request_the_notification_permission">Signal would like to request the notification permission. This allows your device to display alerts when new messages arrive.</string>
|
||||
<string name="AllowNotificationsScreen__signal_would_like_to_request_the_notification_permission">Signal pyytää käyttöoikeutta ilmoitusten näyttämiseen. Näin laitteesi voi näyttää ilmoituksen uudesta viestistä.</string>
|
||||
<!-- Button label that dismisses the notification permission request without granting it -->
|
||||
<string name="AllowNotificationsScreen__not_now">Ei nyt</string>
|
||||
<!-- Button label that proceeds with the notification permission request -->
|
||||
@@ -366,36 +366,36 @@
|
||||
<!-- Title shown while messages are syncing from the primary device -->
|
||||
<string name="MessageSyncScreen__syncing_messages">Synkronoidaan viestejä</string>
|
||||
<!-- Subtitle shown while messages are syncing from the primary device, indicating it may take a while -->
|
||||
<string name="MessageSyncScreen__this_may_take_a_few_minutes">This may take a few minutes…</string>
|
||||
<string name="MessageSyncScreen__this_may_take_a_few_minutes">Tämä saattaa kestää muutaman minuutin…</string>
|
||||
<!-- Progress label shown under the sync progress bar. %1$s is the amount downloaded so far (e.g. "1 MB"), %2$s is the total size to download (e.g. "3.2 MB") -->
|
||||
<string name="MessageSyncScreen__downloading_s_of_s">Ladataan %1$s/%2$s</string>
|
||||
<!-- Informational notice in the sync screen footer, indicating the sync is end-to-end encrypted. Precedes a separate "Learn more" link. -->
|
||||
<string name="MessageSyncScreen__messages_and_chat_info_are_protected_by_e2ee">Messages and chat info are protected by end-to-end encryption, including the syncing process.</string>
|
||||
<string name="MessageSyncScreen__messages_and_chat_info_are_protected_by_e2ee">Viestit ja keskustelujen tiedot on suojattu päästä päähän -salauksella, myös synkronoinnin aikana.</string>
|
||||
<!-- Inline link in the sync screen footer that opens documentation about end-to-end encryption during sync -->
|
||||
<string name="MessageSyncScreen__learn_more">Lue lisää</string>
|
||||
<!-- Button label that cancels the in-progress message sync -->
|
||||
<string name="MessageSyncScreen__cancel">Peruuta</string>
|
||||
|
||||
<!-- Title for the screen that shows a QR code the user scans with their existing primary device to link this device as a secondary -->
|
||||
<string name="LinkAccountScreen__scan_this_code_to_link_your_account">Scan this code to link your account</string>
|
||||
<string name="LinkAccountScreen__scan_this_code_to_link_your_account">Yhdistä tili skannaamalla koodi</string>
|
||||
<!-- Step in the link-account instructions: open Signal on the user\'s existing phone -->
|
||||
<string name="LinkAccountScreen__open_signal_on_your_phone">Avaa Signal puhelimessa</string>
|
||||
<!-- Step in the link-account instructions: tap profile picture to open Signal Settings -->
|
||||
<string name="LinkAccountScreen__tap_your_profile_picture_to_open_signal_settings">Tap your profile picture to open Signal Settings</string>
|
||||
<string name="LinkAccountScreen__tap_your_profile_picture_to_open_signal_settings">Avaa Signal-asetukset napauttamalla profiilikuvaa</string>
|
||||
<!-- Step in the link-account instructions: navigate to the Linked devices section and tap Link new device. The quoted strings should match the button/menu labels in the primary device\'s settings. -->
|
||||
<string name="LinkAccountScreen__tap_linked_devices_and_link_new_device">Tap \"Linked devices\" and \"Link new device\"</string>
|
||||
<string name="LinkAccountScreen__tap_linked_devices_and_link_new_device">Napauta Yhdistetyt laitteet ja sen jälkeen Yhdistä uusi laite</string>
|
||||
<!-- Step in the link-account instructions: aim the primary device\'s camera at the QR code displayed on this screen -->
|
||||
<string name="LinkAccountScreen__position_the_camera_over_this_qr_code">Position the camera over this qr code</string>
|
||||
<string name="LinkAccountScreen__position_the_camera_over_this_qr_code">Kohdista kamera tähän QR-koodiin</string>
|
||||
<!-- Button label opening help content for users who can\'t complete the link-account steps -->
|
||||
<string name="LinkAccountScreen__get_help_with_these_steps">Get help with these steps</string>
|
||||
<string name="LinkAccountScreen__get_help_with_these_steps">Seuraa ohjeita saadaksesi apua</string>
|
||||
<!-- Accessibility content description for the button that enlarges the QR code to full screen -->
|
||||
<string name="LinkAccountScreen__maximize_qr_code">Maximize QR Code</string>
|
||||
<string name="LinkAccountScreen__maximize_qr_code">Suurenna QR-koodi</string>
|
||||
<!-- Label shown in place of the QR code after the primary device has successfully scanned it -->
|
||||
<string name="LinkAccountScreen__scanned">Scanned</string>
|
||||
<string name="LinkAccountScreen__scanned">Skannattu</string>
|
||||
<!-- Error label shown in place of the QR code if it could not be generated -->
|
||||
<string name="LinkAccountScreen__failed_to_generate_code">Failed to generate code</string>
|
||||
<string name="LinkAccountScreen__failed_to_generate_code">Koodin luominen epäonnistui</string>
|
||||
<!-- Footer prompt asking the user if they have another device with Signal. Precedes a separate "Create account" link. -->
|
||||
<string name="LinkAccountScreen__dont_have_signal_on_another_device">Don\'t have Signal on another device?</string>
|
||||
<string name="LinkAccountScreen__dont_have_signal_on_another_device">Eikö sinulla ole Signalia toisella laitteella?</string>
|
||||
<!-- Inline link in the link-account screen footer that takes the user to the new-account creation flow instead of linking -->
|
||||
<string name="LinkAccountScreen__create_account">Luo tili</string>
|
||||
</resources>
|
||||
|
||||
@@ -316,7 +316,7 @@
|
||||
<!-- PIN creation screen title when confirming the new Signal PIN. -->
|
||||
<string name="PinCreationScreen__confirm_your_pin">Confirmer le code PIN</string>
|
||||
<!-- Describes how to confirm the new Signal PIN. -->
|
||||
<string name="PinCreationScreen__reenter_pin_description">Re-enter the PIN you just created</string>
|
||||
<string name="PinCreationScreen__reenter_pin_description">Ressaisissez le code PIN que vous venez de créer</string>
|
||||
<!-- Describes the purpose of creating a Signal PIN. -->
|
||||
<string name="PinCreationScreen__pins_can_help">Avec un code PIN, vous pouvez restaurer votre compte si vous perdez votre téléphone. </string>
|
||||
<!-- Labels the button to learn more about Signal PINs. -->
|
||||
@@ -330,7 +330,7 @@
|
||||
<!-- Hint shown below the create PIN field when numeric keyboard is active. -->
|
||||
<string name="PinCreationScreen__pin_at_least_4_digits">Le code PIN doit comporter au moins quatre chiffres</string>
|
||||
<!-- Hint shown below the create PIN field when alphanumeric keyboard is active. -->
|
||||
<string name="PinCreationScreen__pin_at_least_4_characters">Le PIN doit comporter au moins quatre caractères</string>
|
||||
<string name="PinCreationScreen__pin_at_least_4_characters">Le code PIN doit comporter au moins quatre caractères</string>
|
||||
<!-- Hint shown below the create PIN field when the user is confirming their new Signal PIN. -->
|
||||
<string name="PinCreationScreen__reenter_pin">Ressaisissez le code PIN</string>
|
||||
|
||||
@@ -357,7 +357,7 @@
|
||||
<!-- Title for the screen asking the user to grant the notification permission -->
|
||||
<string name="AllowNotificationsScreen__allow_notifications">Autoriser les notifications</string>
|
||||
<!-- Description for the screen asking the user to grant the notification permission -->
|
||||
<string name="AllowNotificationsScreen__signal_would_like_to_request_the_notification_permission">Signal would like to request the notification permission. This allows your device to display alerts when new messages arrive.</string>
|
||||
<string name="AllowNotificationsScreen__signal_would_like_to_request_the_notification_permission">Autorisez les notifications pour être alerté lorsque vous recevez de nouveaux messages.</string>
|
||||
<!-- Button label that dismisses the notification permission request without granting it -->
|
||||
<string name="AllowNotificationsScreen__not_now">Plus tard</string>
|
||||
<!-- Button label that proceeds with the notification permission request -->
|
||||
@@ -366,36 +366,36 @@
|
||||
<!-- Title shown while messages are syncing from the primary device -->
|
||||
<string name="MessageSyncScreen__syncing_messages">Synchronisation des messages</string>
|
||||
<!-- Subtitle shown while messages are syncing from the primary device, indicating it may take a while -->
|
||||
<string name="MessageSyncScreen__this_may_take_a_few_minutes">This may take a few minutes…</string>
|
||||
<string name="MessageSyncScreen__this_may_take_a_few_minutes">Cela peut prendre quelques minutes…</string>
|
||||
<!-- Progress label shown under the sync progress bar. %1$s is the amount downloaded so far (e.g. "1 MB"), %2$s is the total size to download (e.g. "3.2 MB") -->
|
||||
<string name="MessageSyncScreen__downloading_s_of_s">Téléchargement en cours : %1$s sur %2$s</string>
|
||||
<!-- Informational notice in the sync screen footer, indicating the sync is end-to-end encrypted. Precedes a separate "Learn more" link. -->
|
||||
<string name="MessageSyncScreen__messages_and_chat_info_are_protected_by_e2ee">Messages and chat info are protected by end-to-end encryption, including the syncing process.</string>
|
||||
<string name="MessageSyncScreen__messages_and_chat_info_are_protected_by_e2ee">Avec son protocole de chiffrement de bout en bout, Signal protège systématiquement vos messages et vos conversations. Même pendant la synchronisation.</string>
|
||||
<!-- Inline link in the sync screen footer that opens documentation about end-to-end encryption during sync -->
|
||||
<string name="MessageSyncScreen__learn_more">En savoir plus</string>
|
||||
<!-- Button label that cancels the in-progress message sync -->
|
||||
<string name="MessageSyncScreen__cancel">Annuler</string>
|
||||
|
||||
<!-- Title for the screen that shows a QR code the user scans with their existing primary device to link this device as a secondary -->
|
||||
<string name="LinkAccountScreen__scan_this_code_to_link_your_account">Scan this code to link your account</string>
|
||||
<string name="LinkAccountScreen__scan_this_code_to_link_your_account">Scannez ce code pour associer votre compte</string>
|
||||
<!-- Step in the link-account instructions: open Signal on the user\'s existing phone -->
|
||||
<string name="LinkAccountScreen__open_signal_on_your_phone">Ouvrez Signal sur votre téléphone</string>
|
||||
<!-- Step in the link-account instructions: tap profile picture to open Signal Settings -->
|
||||
<string name="LinkAccountScreen__tap_your_profile_picture_to_open_signal_settings">Tap your profile picture to open Signal Settings</string>
|
||||
<string name="LinkAccountScreen__tap_your_profile_picture_to_open_signal_settings">Touchez votre photo de profil pour accéder aux paramètres Signal</string>
|
||||
<!-- Step in the link-account instructions: navigate to the Linked devices section and tap Link new device. The quoted strings should match the button/menu labels in the primary device\'s settings. -->
|
||||
<string name="LinkAccountScreen__tap_linked_devices_and_link_new_device">Tap \"Linked devices\" and \"Link new device\"</string>
|
||||
<string name="LinkAccountScreen__tap_linked_devices_and_link_new_device">Touchez \"Appareils associés\", puis \"Associer un nouvel appareil\"</string>
|
||||
<!-- Step in the link-account instructions: aim the primary device\'s camera at the QR code displayed on this screen -->
|
||||
<string name="LinkAccountScreen__position_the_camera_over_this_qr_code">Position the camera over this qr code</string>
|
||||
<string name="LinkAccountScreen__position_the_camera_over_this_qr_code">Pointez l\'appareil photo vers le code QR</string>
|
||||
<!-- Button label opening help content for users who can\'t complete the link-account steps -->
|
||||
<string name="LinkAccountScreen__get_help_with_these_steps">Get help with these steps</string>
|
||||
<string name="LinkAccountScreen__get_help_with_these_steps">Besoin d\'aide ?</string>
|
||||
<!-- Accessibility content description for the button that enlarges the QR code to full screen -->
|
||||
<string name="LinkAccountScreen__maximize_qr_code">Maximize QR Code</string>
|
||||
<string name="LinkAccountScreen__maximize_qr_code">Agrandir le code QR</string>
|
||||
<!-- Label shown in place of the QR code after the primary device has successfully scanned it -->
|
||||
<string name="LinkAccountScreen__scanned">Scanned</string>
|
||||
<string name="LinkAccountScreen__scanned">Scanné</string>
|
||||
<!-- Error label shown in place of the QR code if it could not be generated -->
|
||||
<string name="LinkAccountScreen__failed_to_generate_code">Failed to generate code</string>
|
||||
<string name="LinkAccountScreen__failed_to_generate_code">Impossible de générer le code</string>
|
||||
<!-- Footer prompt asking the user if they have another device with Signal. Precedes a separate "Create account" link. -->
|
||||
<string name="LinkAccountScreen__dont_have_signal_on_another_device">Don\'t have Signal on another device?</string>
|
||||
<string name="LinkAccountScreen__dont_have_signal_on_another_device">Signal n\'est installé sur aucun autre appareil ?</string>
|
||||
<!-- Inline link in the link-account screen footer that takes the user to the new-account creation flow instead of linking -->
|
||||
<string name="LinkAccountScreen__create_account">Créer un compte</string>
|
||||
</resources>
|
||||
|
||||
@@ -317,9 +317,9 @@
|
||||
<!-- PIN creation screen title. -->
|
||||
<string name="PinCreationScreen__create_your_pin">Cruthaigh do UAP</string>
|
||||
<!-- PIN creation screen title when confirming the new Signal PIN. -->
|
||||
<string name="PinCreationScreen__confirm_your_pin">Deimhnigh d\'UAP</string>
|
||||
<string name="PinCreationScreen__confirm_your_pin">Deimhnigh do UAP</string>
|
||||
<!-- Describes how to confirm the new Signal PIN. -->
|
||||
<string name="PinCreationScreen__reenter_pin_description">Re-enter the PIN you just created</string>
|
||||
<string name="PinCreationScreen__reenter_pin_description">Cuir isteach arís an UAP a chruthaigh tú díreach anois</string>
|
||||
<!-- Describes the purpose of creating a Signal PIN. -->
|
||||
<string name="PinCreationScreen__pins_can_help">Is féidir le UAPanna cabhrú leat do chuntas a aischur má chailleann tú do ghuthán. </string>
|
||||
<!-- Labels the button to learn more about Signal PINs. -->
|
||||
@@ -333,7 +333,7 @@
|
||||
<!-- Hint shown below the create PIN field when numeric keyboard is active. -->
|
||||
<string name="PinCreationScreen__pin_at_least_4_digits">Ní cheadaítear UAP atá níos giorra ná 4 dhigit</string>
|
||||
<!-- Hint shown below the create PIN field when alphanumeric keyboard is active. -->
|
||||
<string name="PinCreationScreen__pin_at_least_4_characters">Ní cheadaítear UAP níos giorra ná 4 charachtar</string>
|
||||
<string name="PinCreationScreen__pin_at_least_4_characters">Ní cheadaítear UAP atá níos giorra ná 4 charachtar</string>
|
||||
<!-- Hint shown below the create PIN field when the user is confirming their new Signal PIN. -->
|
||||
<string name="PinCreationScreen__reenter_pin">Cuir an UAP isteach arís</string>
|
||||
|
||||
@@ -345,11 +345,11 @@
|
||||
<string name="PinEntryScreen__enter_the_pin_you_created">Cuir isteach an UAP a chruthaigh tú nuair a shuiteáil tú Signal den chéad uair</string>
|
||||
<!-- Error shown when an incorrect PIN is entered. %1$d is the number of attempts remaining. -->
|
||||
<plurals name="PinEntryScreen__incorrect_pin">
|
||||
<item quantity="one">UAP mhícheart. %1$d iarracht fágtha.</item>
|
||||
<item quantity="two">UAP mhícheart. %1$d iarracht fágtha.</item>
|
||||
<item quantity="few">UAP mhícheart. %1$d iarracht fágtha.</item>
|
||||
<item quantity="many">UAP mhícheart. %1$d n-iarracht fágtha.</item>
|
||||
<item quantity="other">UAP mhícheart. %1$d iarracht fágtha.</item>
|
||||
<item quantity="one">UAP mícheart. %1$d iarracht fágtha.</item>
|
||||
<item quantity="two">UAP mícheart. %1$d iarracht fágtha.</item>
|
||||
<item quantity="few">UAP mícheart. %1$d iarracht fágtha.</item>
|
||||
<item quantity="many">UAP mícheart. %1$d n-iarracht fágtha.</item>
|
||||
<item quantity="other">UAP mícheart. %1$d iarracht fágtha.</item>
|
||||
</plurals>
|
||||
<!-- Labels the button to get help with PIN entry. -->
|
||||
<string name="PinEntryScreen__need_help">An bhfuil cabhair uait?</string>
|
||||
@@ -363,7 +363,7 @@
|
||||
<!-- Title for the screen asking the user to grant the notification permission -->
|
||||
<string name="AllowNotificationsScreen__allow_notifications">Ceadaigh Fógraí</string>
|
||||
<!-- Description for the screen asking the user to grant the notification permission -->
|
||||
<string name="AllowNotificationsScreen__signal_would_like_to_request_the_notification_permission">Signal would like to request the notification permission. This allows your device to display alerts when new messages arrive.</string>
|
||||
<string name="AllowNotificationsScreen__signal_would_like_to_request_the_notification_permission">Ba mhaith le Signal an cead fógraí a iarraidh. Ceadaíonn sé sin do do ghléas foláirimh a thaispeáint ar theacht teachtaireachtaí nua.</string>
|
||||
<!-- Button label that dismisses the notification permission request without granting it -->
|
||||
<string name="AllowNotificationsScreen__not_now">Ní anois</string>
|
||||
<!-- Button label that proceeds with the notification permission request -->
|
||||
@@ -372,36 +372,36 @@
|
||||
<!-- Title shown while messages are syncing from the primary device -->
|
||||
<string name="MessageSyncScreen__syncing_messages">Teachtaireachtaí á sioncronú</string>
|
||||
<!-- Subtitle shown while messages are syncing from the primary device, indicating it may take a while -->
|
||||
<string name="MessageSyncScreen__this_may_take_a_few_minutes">This may take a few minutes…</string>
|
||||
<string name="MessageSyncScreen__this_may_take_a_few_minutes">Seans go dtógfaidh sé seo cúpla nóiméad…</string>
|
||||
<!-- Progress label shown under the sync progress bar. %1$s is the amount downloaded so far (e.g. "1 MB"), %2$s is the total size to download (e.g. "3.2 MB") -->
|
||||
<string name="MessageSyncScreen__downloading_s_of_s">Íoslódáil ar bun: %1$s as %2$s</string>
|
||||
<!-- Informational notice in the sync screen footer, indicating the sync is end-to-end encrypted. Precedes a separate "Learn more" link. -->
|
||||
<string name="MessageSyncScreen__messages_and_chat_info_are_protected_by_e2ee">Messages and chat info are protected by end-to-end encryption, including the syncing process.</string>
|
||||
<string name="MessageSyncScreen__messages_and_chat_info_are_protected_by_e2ee">Déantar teachtaireachtaí agus faisnéis comhráite a chosaint le criptiú ó cheann ceann, an próiseas sioncronaithe san áireamh.</string>
|
||||
<!-- Inline link in the sync screen footer that opens documentation about end-to-end encryption during sync -->
|
||||
<string name="MessageSyncScreen__learn_more">Tuilleadh faisnéise</string>
|
||||
<!-- Button label that cancels the in-progress message sync -->
|
||||
<string name="MessageSyncScreen__cancel">Cuir ar ceal</string>
|
||||
|
||||
<!-- Title for the screen that shows a QR code the user scans with their existing primary device to link this device as a secondary -->
|
||||
<string name="LinkAccountScreen__scan_this_code_to_link_your_account">Scan this code to link your account</string>
|
||||
<string name="LinkAccountScreen__scan_this_code_to_link_your_account">Scan an cód seo le do chuntas a nascadh</string>
|
||||
<!-- Step in the link-account instructions: open Signal on the user\'s existing phone -->
|
||||
<string name="LinkAccountScreen__open_signal_on_your_phone">Oscail Signal ar do ghuthán</string>
|
||||
<!-- Step in the link-account instructions: tap profile picture to open Signal Settings -->
|
||||
<string name="LinkAccountScreen__tap_your_profile_picture_to_open_signal_settings">Tap your profile picture to open Signal Settings</string>
|
||||
<string name="LinkAccountScreen__tap_your_profile_picture_to_open_signal_settings">Tapáil do phictiúr próifíle le Socruithe Signal a oscailt</string>
|
||||
<!-- Step in the link-account instructions: navigate to the Linked devices section and tap Link new device. The quoted strings should match the button/menu labels in the primary device\'s settings. -->
|
||||
<string name="LinkAccountScreen__tap_linked_devices_and_link_new_device">Tap \"Linked devices\" and \"Link new device\"</string>
|
||||
<string name="LinkAccountScreen__tap_linked_devices_and_link_new_device">Tapáil \"Gléasanna nasctha\" agus \"Nasc gléas nua\"</string>
|
||||
<!-- Step in the link-account instructions: aim the primary device\'s camera at the QR code displayed on this screen -->
|
||||
<string name="LinkAccountScreen__position_the_camera_over_this_qr_code">Position the camera over this qr code</string>
|
||||
<string name="LinkAccountScreen__position_the_camera_over_this_qr_code">Suigh an ceamara os cionn an chóid QR seo</string>
|
||||
<!-- Button label opening help content for users who can\'t complete the link-account steps -->
|
||||
<string name="LinkAccountScreen__get_help_with_these_steps">Get help with these steps</string>
|
||||
<string name="LinkAccountScreen__get_help_with_these_steps">Faigh cabhair leis na céimeanna seo</string>
|
||||
<!-- Accessibility content description for the button that enlarges the QR code to full screen -->
|
||||
<string name="LinkAccountScreen__maximize_qr_code">Maximize QR Code</string>
|
||||
<string name="LinkAccountScreen__maximize_qr_code">Uasmhéadaigh an Cód QR</string>
|
||||
<!-- Label shown in place of the QR code after the primary device has successfully scanned it -->
|
||||
<string name="LinkAccountScreen__scanned">Scanned</string>
|
||||
<string name="LinkAccountScreen__scanned">Scanta</string>
|
||||
<!-- Error label shown in place of the QR code if it could not be generated -->
|
||||
<string name="LinkAccountScreen__failed_to_generate_code">Failed to generate code</string>
|
||||
<string name="LinkAccountScreen__failed_to_generate_code">Theip ar ghiniúint cóid</string>
|
||||
<!-- Footer prompt asking the user if they have another device with Signal. Precedes a separate "Create account" link. -->
|
||||
<string name="LinkAccountScreen__dont_have_signal_on_another_device">Don\'t have Signal on another device?</string>
|
||||
<string name="LinkAccountScreen__dont_have_signal_on_another_device">Nach bhfuil Signal agat ar ghléas eile?</string>
|
||||
<!-- Inline link in the link-account screen footer that takes the user to the new-account creation flow instead of linking -->
|
||||
<string name="LinkAccountScreen__create_account">Cruthaigh cuntas</string>
|
||||
</resources>
|
||||
|
||||
@@ -314,9 +314,9 @@
|
||||
<!-- PIN creation screen title. -->
|
||||
<string name="PinCreationScreen__create_your_pin">Crea o teu PIN</string>
|
||||
<!-- PIN creation screen title when confirming the new Signal PIN. -->
|
||||
<string name="PinCreationScreen__confirm_your_pin">Confirm your PIN</string>
|
||||
<string name="PinCreationScreen__confirm_your_pin">Confirma o teu PIN</string>
|
||||
<!-- Describes how to confirm the new Signal PIN. -->
|
||||
<string name="PinCreationScreen__reenter_pin_description">Re-enter the PIN you just created</string>
|
||||
<string name="PinCreationScreen__reenter_pin_description">Volve a escribir o PIN que creaches</string>
|
||||
<!-- Describes the purpose of creating a Signal PIN. -->
|
||||
<string name="PinCreationScreen__pins_can_help">Co número PIN podes restaurar a túa conta se perdes o teléfono. </string>
|
||||
<!-- Labels the button to learn more about Signal PINs. -->
|
||||
@@ -328,11 +328,11 @@
|
||||
<!-- Labels the button to submit a new Signal PIN. -->
|
||||
<string name="PinCreationScreen__next">Seguinte</string>
|
||||
<!-- Hint shown below the create PIN field when numeric keyboard is active. -->
|
||||
<string name="PinCreationScreen__pin_at_least_4_digits">PIN must be at least 4 digits</string>
|
||||
<string name="PinCreationScreen__pin_at_least_4_digits">O PIN debe ter 4 díxitos como mínimo</string>
|
||||
<!-- Hint shown below the create PIN field when alphanumeric keyboard is active. -->
|
||||
<string name="PinCreationScreen__pin_at_least_4_characters">PIN must be at least 4 characters</string>
|
||||
<string name="PinCreationScreen__pin_at_least_4_characters">O PIN debe ter 4 caracteres como mínimo</string>
|
||||
<!-- Hint shown below the create PIN field when the user is confirming their new Signal PIN. -->
|
||||
<string name="PinCreationScreen__reenter_pin">Re-enter PIN</string>
|
||||
<string name="PinCreationScreen__reenter_pin">Volve a escribir o PIN</string>
|
||||
|
||||
<!-- PIN entry screen title when registration lock is active. -->
|
||||
<string name="PinEntryScreen__registration_lock">Bloqueo do rexistro</string>
|
||||
@@ -355,9 +355,9 @@
|
||||
<string name="PinEntryScreen__continue">Continuar</string>
|
||||
|
||||
<!-- Title for the screen asking the user to grant the notification permission -->
|
||||
<string name="AllowNotificationsScreen__allow_notifications">Allow Notifications</string>
|
||||
<string name="AllowNotificationsScreen__allow_notifications">Permitir notificacións</string>
|
||||
<!-- Description for the screen asking the user to grant the notification permission -->
|
||||
<string name="AllowNotificationsScreen__signal_would_like_to_request_the_notification_permission">Signal would like to request the notification permission. This allows your device to display alerts when new messages arrive.</string>
|
||||
<string name="AllowNotificationsScreen__signal_would_like_to_request_the_notification_permission">Signal solicita permiso para enviar notificacións. Isto permite que o teu dispositivo amose notificacións cando cheguen novas mensaxes.</string>
|
||||
<!-- Button label that dismisses the notification permission request without granting it -->
|
||||
<string name="AllowNotificationsScreen__not_now">Agora non</string>
|
||||
<!-- Button label that proceeds with the notification permission request -->
|
||||
@@ -366,36 +366,36 @@
|
||||
<!-- Title shown while messages are syncing from the primary device -->
|
||||
<string name="MessageSyncScreen__syncing_messages">Sincronizando mensaxes</string>
|
||||
<!-- Subtitle shown while messages are syncing from the primary device, indicating it may take a while -->
|
||||
<string name="MessageSyncScreen__this_may_take_a_few_minutes">This may take a few minutes…</string>
|
||||
<string name="MessageSyncScreen__this_may_take_a_few_minutes">Isto pode tardar uns minutos…</string>
|
||||
<!-- Progress label shown under the sync progress bar. %1$s is the amount downloaded so far (e.g. "1 MB"), %2$s is the total size to download (e.g. "3.2 MB") -->
|
||||
<string name="MessageSyncScreen__downloading_s_of_s">Descargando %1$s de %2$s</string>
|
||||
<!-- Informational notice in the sync screen footer, indicating the sync is end-to-end encrypted. Precedes a separate "Learn more" link. -->
|
||||
<string name="MessageSyncScreen__messages_and_chat_info_are_protected_by_e2ee">Messages and chat info are protected by end-to-end encryption, including the syncing process.</string>
|
||||
<string name="MessageSyncScreen__messages_and_chat_info_are_protected_by_e2ee">As mensaxes e a información das conversas están protexidas por unha encriptación de extremo a extremo, incluído o proceso de sincronización.</string>
|
||||
<!-- Inline link in the sync screen footer that opens documentation about end-to-end encryption during sync -->
|
||||
<string name="MessageSyncScreen__learn_more">Máis información</string>
|
||||
<!-- Button label that cancels the in-progress message sync -->
|
||||
<string name="MessageSyncScreen__cancel">Cancelar</string>
|
||||
|
||||
<!-- Title for the screen that shows a QR code the user scans with their existing primary device to link this device as a secondary -->
|
||||
<string name="LinkAccountScreen__scan_this_code_to_link_your_account">Scan this code to link your account</string>
|
||||
<string name="LinkAccountScreen__scan_this_code_to_link_your_account">Escanea este código para vincular a túa conta</string>
|
||||
<!-- Step in the link-account instructions: open Signal on the user\'s existing phone -->
|
||||
<string name="LinkAccountScreen__open_signal_on_your_phone">Abre Signal no teu móbil</string>
|
||||
<!-- Step in the link-account instructions: tap profile picture to open Signal Settings -->
|
||||
<string name="LinkAccountScreen__tap_your_profile_picture_to_open_signal_settings">Tap your profile picture to open Signal Settings</string>
|
||||
<string name="LinkAccountScreen__tap_your_profile_picture_to_open_signal_settings">Preme na túa foto de perfil para abrir a Configuración de Signal</string>
|
||||
<!-- Step in the link-account instructions: navigate to the Linked devices section and tap Link new device. The quoted strings should match the button/menu labels in the primary device\'s settings. -->
|
||||
<string name="LinkAccountScreen__tap_linked_devices_and_link_new_device">Tap \"Linked devices\" and \"Link new device\"</string>
|
||||
<string name="LinkAccountScreen__tap_linked_devices_and_link_new_device">Selecciona «Dispositivos vinculados» e «Vincular novo dispositivo»</string>
|
||||
<!-- Step in the link-account instructions: aim the primary device\'s camera at the QR code displayed on this screen -->
|
||||
<string name="LinkAccountScreen__position_the_camera_over_this_qr_code">Position the camera over this qr code</string>
|
||||
<string name="LinkAccountScreen__position_the_camera_over_this_qr_code">Sitúa a cámara sobre este código QR</string>
|
||||
<!-- Button label opening help content for users who can\'t complete the link-account steps -->
|
||||
<string name="LinkAccountScreen__get_help_with_these_steps">Get help with these steps</string>
|
||||
<string name="LinkAccountScreen__get_help_with_these_steps">Obter axuda para completar o proceso</string>
|
||||
<!-- Accessibility content description for the button that enlarges the QR code to full screen -->
|
||||
<string name="LinkAccountScreen__maximize_qr_code">Maximize QR Code</string>
|
||||
<string name="LinkAccountScreen__maximize_qr_code">Agrandar código QR</string>
|
||||
<!-- Label shown in place of the QR code after the primary device has successfully scanned it -->
|
||||
<string name="LinkAccountScreen__scanned">Scanned</string>
|
||||
<string name="LinkAccountScreen__scanned">Escaneado</string>
|
||||
<!-- Error label shown in place of the QR code if it could not be generated -->
|
||||
<string name="LinkAccountScreen__failed_to_generate_code">Failed to generate code</string>
|
||||
<string name="LinkAccountScreen__failed_to_generate_code">Non se puido xerar o código</string>
|
||||
<!-- Footer prompt asking the user if they have another device with Signal. Precedes a separate "Create account" link. -->
|
||||
<string name="LinkAccountScreen__dont_have_signal_on_another_device">Don\'t have Signal on another device?</string>
|
||||
<string name="LinkAccountScreen__dont_have_signal_on_another_device">Non tes Signal noutro dispositivo?</string>
|
||||
<!-- Inline link in the link-account screen footer that takes the user to the new-account creation flow instead of linking -->
|
||||
<string name="LinkAccountScreen__create_account">Crear conta</string>
|
||||
</resources>
|
||||
|
||||
@@ -316,7 +316,7 @@
|
||||
<!-- PIN creation screen title when confirming the new Signal PIN. -->
|
||||
<string name="PinCreationScreen__confirm_your_pin">તમારો પિન કન્ફર્મ કરો</string>
|
||||
<!-- Describes how to confirm the new Signal PIN. -->
|
||||
<string name="PinCreationScreen__reenter_pin_description">Re-enter the PIN you just created</string>
|
||||
<string name="PinCreationScreen__reenter_pin_description">તમે હમણાં બનાવેલો પિન ફરીથી દાખલ કરો</string>
|
||||
<!-- Describes the purpose of creating a Signal PIN. -->
|
||||
<string name="PinCreationScreen__pins_can_help">જો તમે તમારો ફોન ગુમાવો, તો પિન તમને તમારું એકાઉન્ટ રિસ્ટોર કરવામાં મદદ કરી શકે છે. </string>
|
||||
<!-- Labels the button to learn more about Signal PINs. -->
|
||||
@@ -328,11 +328,11 @@
|
||||
<!-- Labels the button to submit a new Signal PIN. -->
|
||||
<string name="PinCreationScreen__next">આગળ</string>
|
||||
<!-- Hint shown below the create PIN field when numeric keyboard is active. -->
|
||||
<string name="PinCreationScreen__pin_at_least_4_digits">PIN ઓછામાં ઓછો 4 અંકનો હોવો જોઈએ</string>
|
||||
<string name="PinCreationScreen__pin_at_least_4_digits">પિન ઓછામાં ઓછો 4 અંકનો હોવો જોઈએ</string>
|
||||
<!-- Hint shown below the create PIN field when alphanumeric keyboard is active. -->
|
||||
<string name="PinCreationScreen__pin_at_least_4_characters">PIN ઓછામાં ઓછા 4 અક્ષરોનો હોવો જોઈએ</string>
|
||||
<string name="PinCreationScreen__pin_at_least_4_characters">પિન ઓછામાં ઓછા 4 અક્ષરોનો હોવો જોઈએ</string>
|
||||
<!-- Hint shown below the create PIN field when the user is confirming their new Signal PIN. -->
|
||||
<string name="PinCreationScreen__reenter_pin">PIN ફરીથી દાખલ કરો</string>
|
||||
<string name="PinCreationScreen__reenter_pin">પિન ફરીથી દાખલ કરો</string>
|
||||
|
||||
<!-- PIN entry screen title when registration lock is active. -->
|
||||
<string name="PinEntryScreen__registration_lock">રજીસ્ટ્રેશન લૉક</string>
|
||||
@@ -357,7 +357,7 @@
|
||||
<!-- Title for the screen asking the user to grant the notification permission -->
|
||||
<string name="AllowNotificationsScreen__allow_notifications">નોટિફિકેશનને પરવાનગી આપો</string>
|
||||
<!-- Description for the screen asking the user to grant the notification permission -->
|
||||
<string name="AllowNotificationsScreen__signal_would_like_to_request_the_notification_permission">Signal would like to request the notification permission. This allows your device to display alerts when new messages arrive.</string>
|
||||
<string name="AllowNotificationsScreen__signal_would_like_to_request_the_notification_permission">Signal નોટિફિકેશન પરવાનગીઓની વિનંતી કરવા માંગે છે. આ જ્યારે નવા મેસેજ આવે ત્યારે તમારા ડિવાઇસને એલર્ટ દર્શાવવાની મંજૂરી આપે છે.</string>
|
||||
<!-- Button label that dismisses the notification permission request without granting it -->
|
||||
<string name="AllowNotificationsScreen__not_now">અત્યારે નહીં</string>
|
||||
<!-- Button label that proceeds with the notification permission request -->
|
||||
@@ -366,36 +366,36 @@
|
||||
<!-- Title shown while messages are syncing from the primary device -->
|
||||
<string name="MessageSyncScreen__syncing_messages">મેસેજ સિંક થઈ રહ્યાં છે</string>
|
||||
<!-- Subtitle shown while messages are syncing from the primary device, indicating it may take a while -->
|
||||
<string name="MessageSyncScreen__this_may_take_a_few_minutes">This may take a few minutes…</string>
|
||||
<string name="MessageSyncScreen__this_may_take_a_few_minutes">આમાં થોડી મિનિટનો સમય લાગી શકે છે…</string>
|
||||
<!-- Progress label shown under the sync progress bar. %1$s is the amount downloaded so far (e.g. "1 MB"), %2$s is the total size to download (e.g. "3.2 MB") -->
|
||||
<string name="MessageSyncScreen__downloading_s_of_s">%2$s માંથી %1$s ડાઉનલોડ થઈ રહ્યું છે</string>
|
||||
<!-- Informational notice in the sync screen footer, indicating the sync is end-to-end encrypted. Precedes a separate "Learn more" link. -->
|
||||
<string name="MessageSyncScreen__messages_and_chat_info_are_protected_by_e2ee">Messages and chat info are protected by end-to-end encryption, including the syncing process.</string>
|
||||
<string name="MessageSyncScreen__messages_and_chat_info_are_protected_by_e2ee">મેસેજ અને ચેટની માહિતી સિંક પ્રક્રિયા સહિત એન્ડ-ટૂ-એન્ડ એન્ક્રિપ્શન દ્વારા સુરક્ષિત છે.</string>
|
||||
<!-- Inline link in the sync screen footer that opens documentation about end-to-end encryption during sync -->
|
||||
<string name="MessageSyncScreen__learn_more">વધુ જાણો</string>
|
||||
<!-- Button label that cancels the in-progress message sync -->
|
||||
<string name="MessageSyncScreen__cancel">રદ કરો</string>
|
||||
|
||||
<!-- Title for the screen that shows a QR code the user scans with their existing primary device to link this device as a secondary -->
|
||||
<string name="LinkAccountScreen__scan_this_code_to_link_your_account">Scan this code to link your account</string>
|
||||
<string name="LinkAccountScreen__scan_this_code_to_link_your_account">તમારા એકાઉન્ટને લિંક કરવા આ કોડ સ્કેન કરો</string>
|
||||
<!-- Step in the link-account instructions: open Signal on the user\'s existing phone -->
|
||||
<string name="LinkAccountScreen__open_signal_on_your_phone">તમારા ફોન પર Signal ખોલો</string>
|
||||
<!-- Step in the link-account instructions: tap profile picture to open Signal Settings -->
|
||||
<string name="LinkAccountScreen__tap_your_profile_picture_to_open_signal_settings">Tap your profile picture to open Signal Settings</string>
|
||||
<string name="LinkAccountScreen__tap_your_profile_picture_to_open_signal_settings">Signal સેટિંગ્સ ખોલવા માટે તમારી પ્રોફાઇલ પર ટેપ કરો</string>
|
||||
<!-- Step in the link-account instructions: navigate to the Linked devices section and tap Link new device. The quoted strings should match the button/menu labels in the primary device\'s settings. -->
|
||||
<string name="LinkAccountScreen__tap_linked_devices_and_link_new_device">Tap \"Linked devices\" and \"Link new device\"</string>
|
||||
<string name="LinkAccountScreen__tap_linked_devices_and_link_new_device">\"લિંક કરેલું ડિવાઇસ\" અને પછી \"નવું ડિવાઇસ લિંક કરો\" પર ટેપ કરો</string>
|
||||
<!-- Step in the link-account instructions: aim the primary device\'s camera at the QR code displayed on this screen -->
|
||||
<string name="LinkAccountScreen__position_the_camera_over_this_qr_code">Position the camera over this qr code</string>
|
||||
<string name="LinkAccountScreen__position_the_camera_over_this_qr_code">આ QR કોડ પર કૅમેરા રાખો</string>
|
||||
<!-- Button label opening help content for users who can\'t complete the link-account steps -->
|
||||
<string name="LinkAccountScreen__get_help_with_these_steps">Get help with these steps</string>
|
||||
<string name="LinkAccountScreen__get_help_with_these_steps">આ પગલાંમાં મદદ મેળવો</string>
|
||||
<!-- Accessibility content description for the button that enlarges the QR code to full screen -->
|
||||
<string name="LinkAccountScreen__maximize_qr_code">Maximize QR Code</string>
|
||||
<string name="LinkAccountScreen__maximize_qr_code">QR કોડ મોટો કરો</string>
|
||||
<!-- Label shown in place of the QR code after the primary device has successfully scanned it -->
|
||||
<string name="LinkAccountScreen__scanned">Scanned</string>
|
||||
<string name="LinkAccountScreen__scanned">સ્કેન કર્યું</string>
|
||||
<!-- Error label shown in place of the QR code if it could not be generated -->
|
||||
<string name="LinkAccountScreen__failed_to_generate_code">Failed to generate code</string>
|
||||
<string name="LinkAccountScreen__failed_to_generate_code">કોડ જનરેટ કરવાનું નિષ્ફળ થયું</string>
|
||||
<!-- Footer prompt asking the user if they have another device with Signal. Precedes a separate "Create account" link. -->
|
||||
<string name="LinkAccountScreen__dont_have_signal_on_another_device">Don\'t have Signal on another device?</string>
|
||||
<string name="LinkAccountScreen__dont_have_signal_on_another_device">અન્ય ડિવાઇસ પર Signal નથી?</string>
|
||||
<!-- Inline link in the link-account screen footer that takes the user to the new-account creation flow instead of linking -->
|
||||
<string name="LinkAccountScreen__create_account">એકાઉન્ટ બનાવો</string>
|
||||
</resources>
|
||||
|
||||
@@ -316,7 +316,7 @@
|
||||
<!-- PIN creation screen title when confirming the new Signal PIN. -->
|
||||
<string name="PinCreationScreen__confirm_your_pin">अपने पिन की पुष्टि करें</string>
|
||||
<!-- Describes how to confirm the new Signal PIN. -->
|
||||
<string name="PinCreationScreen__reenter_pin_description">Re-enter the PIN you just created</string>
|
||||
<string name="PinCreationScreen__reenter_pin_description">आपने हाल ही में जो पिन बनाया है, उसे दोबारा डालें</string>
|
||||
<!-- Describes the purpose of creating a Signal PIN. -->
|
||||
<string name="PinCreationScreen__pins_can_help">अगर आपका फ़ोन खो जाता है, तो पिन से आपको अपना अकाउंट रीस्टोर करने में मदद मिलती है। </string>
|
||||
<!-- Labels the button to learn more about Signal PINs. -->
|
||||
@@ -355,9 +355,9 @@
|
||||
<string name="PinEntryScreen__continue">जारी रखें</string>
|
||||
|
||||
<!-- Title for the screen asking the user to grant the notification permission -->
|
||||
<string name="AllowNotificationsScreen__allow_notifications">नोटिफ़िकेशन अनुमति दें</string>
|
||||
<string name="AllowNotificationsScreen__allow_notifications">नोटिफ़िकेशन की अनुमति दें</string>
|
||||
<!-- Description for the screen asking the user to grant the notification permission -->
|
||||
<string name="AllowNotificationsScreen__signal_would_like_to_request_the_notification_permission">Signal would like to request the notification permission. This allows your device to display alerts when new messages arrive.</string>
|
||||
<string name="AllowNotificationsScreen__signal_would_like_to_request_the_notification_permission">Signal को नोटिफ़िकेशन की अनुमति चाहिए। इससे नए मैसेज आने पर, आपको अपने डिवाइस में अलर्ट दिखाई देंगे।</string>
|
||||
<!-- Button label that dismisses the notification permission request without granting it -->
|
||||
<string name="AllowNotificationsScreen__not_now">अभी नहीं</string>
|
||||
<!-- Button label that proceeds with the notification permission request -->
|
||||
@@ -366,36 +366,36 @@
|
||||
<!-- Title shown while messages are syncing from the primary device -->
|
||||
<string name="MessageSyncScreen__syncing_messages">मैसेज सिंक हो रहे हैं</string>
|
||||
<!-- Subtitle shown while messages are syncing from the primary device, indicating it may take a while -->
|
||||
<string name="MessageSyncScreen__this_may_take_a_few_minutes">This may take a few minutes…</string>
|
||||
<string name="MessageSyncScreen__this_may_take_a_few_minutes">इसमें कुछ देर लग सकती है…</string>
|
||||
<!-- Progress label shown under the sync progress bar. %1$s is the amount downloaded so far (e.g. "1 MB"), %2$s is the total size to download (e.g. "3.2 MB") -->
|
||||
<string name="MessageSyncScreen__downloading_s_of_s">%2$s में से %1$s डाउनलोड हो रहा है</string>
|
||||
<!-- Informational notice in the sync screen footer, indicating the sync is end-to-end encrypted. Precedes a separate "Learn more" link. -->
|
||||
<string name="MessageSyncScreen__messages_and_chat_info_are_protected_by_e2ee">Messages and chat info are protected by end-to-end encryption, including the syncing process.</string>
|
||||
<string name="MessageSyncScreen__messages_and_chat_info_are_protected_by_e2ee">मैसेज और चैट का डेटा एंड-टू-एंड एनक्रिप्शन से सुरक्षित है। इसमें सिंक करने की प्रक्रिया भी शामिल है।</string>
|
||||
<!-- Inline link in the sync screen footer that opens documentation about end-to-end encryption during sync -->
|
||||
<string name="MessageSyncScreen__learn_more">और जानें</string>
|
||||
<!-- Button label that cancels the in-progress message sync -->
|
||||
<string name="MessageSyncScreen__cancel">कैंसिल करें</string>
|
||||
|
||||
<!-- Title for the screen that shows a QR code the user scans with their existing primary device to link this device as a secondary -->
|
||||
<string name="LinkAccountScreen__scan_this_code_to_link_your_account">Scan this code to link your account</string>
|
||||
<string name="LinkAccountScreen__scan_this_code_to_link_your_account">अपना अकाउंट लिंक करने के लिए इस कोड को स्कैन करें</string>
|
||||
<!-- Step in the link-account instructions: open Signal on the user\'s existing phone -->
|
||||
<string name="LinkAccountScreen__open_signal_on_your_phone">अपने फ़ोन पर Signal खोलें</string>
|
||||
<!-- Step in the link-account instructions: tap profile picture to open Signal Settings -->
|
||||
<string name="LinkAccountScreen__tap_your_profile_picture_to_open_signal_settings">Tap your profile picture to open Signal Settings</string>
|
||||
<string name="LinkAccountScreen__tap_your_profile_picture_to_open_signal_settings">Signal सेटिंग खोलने के लिए अपनी प्रोफ़ाइल पिक्चर पर टैप करें</string>
|
||||
<!-- Step in the link-account instructions: navigate to the Linked devices section and tap Link new device. The quoted strings should match the button/menu labels in the primary device\'s settings. -->
|
||||
<string name="LinkAccountScreen__tap_linked_devices_and_link_new_device">Tap \"Linked devices\" and \"Link new device\"</string>
|
||||
<string name="LinkAccountScreen__tap_linked_devices_and_link_new_device">\'लिंक किए गए डिवाइस\' और \'नया डिवाइस लिंक करें\' पर टैप करें</string>
|
||||
<!-- Step in the link-account instructions: aim the primary device\'s camera at the QR code displayed on this screen -->
|
||||
<string name="LinkAccountScreen__position_the_camera_over_this_qr_code">Position the camera over this qr code</string>
|
||||
<string name="LinkAccountScreen__position_the_camera_over_this_qr_code">कैमरे को इस QR कोड के ऊपर लाएं</string>
|
||||
<!-- Button label opening help content for users who can\'t complete the link-account steps -->
|
||||
<string name="LinkAccountScreen__get_help_with_these_steps">Get help with these steps</string>
|
||||
<string name="LinkAccountScreen__get_help_with_these_steps">मदद पाने के लिए इन चरणों का पालन करें</string>
|
||||
<!-- Accessibility content description for the button that enlarges the QR code to full screen -->
|
||||
<string name="LinkAccountScreen__maximize_qr_code">Maximize QR Code</string>
|
||||
<string name="LinkAccountScreen__maximize_qr_code">QR कोड को बड़ा करें</string>
|
||||
<!-- Label shown in place of the QR code after the primary device has successfully scanned it -->
|
||||
<string name="LinkAccountScreen__scanned">Scanned</string>
|
||||
<string name="LinkAccountScreen__scanned">स्कैन हो गया</string>
|
||||
<!-- Error label shown in place of the QR code if it could not be generated -->
|
||||
<string name="LinkAccountScreen__failed_to_generate_code">Failed to generate code</string>
|
||||
<string name="LinkAccountScreen__failed_to_generate_code">कोड जनरेट नहीं हो सका</string>
|
||||
<!-- Footer prompt asking the user if they have another device with Signal. Precedes a separate "Create account" link. -->
|
||||
<string name="LinkAccountScreen__dont_have_signal_on_another_device">Don\'t have Signal on another device?</string>
|
||||
<string name="LinkAccountScreen__dont_have_signal_on_another_device">क्या आपके किसी दूसरे डिवाइस पर Signal मौजूद नहीं है?</string>
|
||||
<!-- Inline link in the link-account screen footer that takes the user to the new-account creation flow instead of linking -->
|
||||
<string name="LinkAccountScreen__create_account">अकाउंट बनाएं</string>
|
||||
</resources>
|
||||
|
||||
@@ -318,7 +318,7 @@
|
||||
<!-- PIN creation screen title when confirming the new Signal PIN. -->
|
||||
<string name="PinCreationScreen__confirm_your_pin">Potvrdite svoj PIN</string>
|
||||
<!-- Describes how to confirm the new Signal PIN. -->
|
||||
<string name="PinCreationScreen__reenter_pin_description">Re-enter the PIN you just created</string>
|
||||
<string name="PinCreationScreen__reenter_pin_description">Ponovno unesite PIN koji ste upravo stvorili</string>
|
||||
<!-- Describes the purpose of creating a Signal PIN. -->
|
||||
<string name="PinCreationScreen__pins_can_help">PIN-ovi omogućuju oporavak vašeg računa u slučaju gubitka mobitela. </string>
|
||||
<!-- Labels the button to learn more about Signal PINs. -->
|
||||
@@ -359,9 +359,9 @@
|
||||
<string name="PinEntryScreen__continue">Nastavi</string>
|
||||
|
||||
<!-- Title for the screen asking the user to grant the notification permission -->
|
||||
<string name="AllowNotificationsScreen__allow_notifications">Dopusti obavijesti</string>
|
||||
<string name="AllowNotificationsScreen__allow_notifications">Dopustite obavijesti</string>
|
||||
<!-- Description for the screen asking the user to grant the notification permission -->
|
||||
<string name="AllowNotificationsScreen__signal_would_like_to_request_the_notification_permission">Signal would like to request the notification permission. This allows your device to display alerts when new messages arrive.</string>
|
||||
<string name="AllowNotificationsScreen__signal_would_like_to_request_the_notification_permission">Signal želi zatražiti dopuštenje za slanje obavijesti. Time omogućavate uređaju da prikazuje obavijesti o novim porukama.</string>
|
||||
<!-- Button label that dismisses the notification permission request without granting it -->
|
||||
<string name="AllowNotificationsScreen__not_now">Ne sada</string>
|
||||
<!-- Button label that proceeds with the notification permission request -->
|
||||
@@ -370,36 +370,36 @@
|
||||
<!-- Title shown while messages are syncing from the primary device -->
|
||||
<string name="MessageSyncScreen__syncing_messages">Sinkronizacija poruka u tijeku</string>
|
||||
<!-- Subtitle shown while messages are syncing from the primary device, indicating it may take a while -->
|
||||
<string name="MessageSyncScreen__this_may_take_a_few_minutes">This may take a few minutes…</string>
|
||||
<string name="MessageSyncScreen__this_may_take_a_few_minutes">Ovo bi moglo potrajati nekoliko minuta…</string>
|
||||
<!-- Progress label shown under the sync progress bar. %1$s is the amount downloaded so far (e.g. "1 MB"), %2$s is the total size to download (e.g. "3.2 MB") -->
|
||||
<string name="MessageSyncScreen__downloading_s_of_s">Preuzimanje: %1$s od %2$s</string>
|
||||
<!-- Informational notice in the sync screen footer, indicating the sync is end-to-end encrypted. Precedes a separate "Learn more" link. -->
|
||||
<string name="MessageSyncScreen__messages_and_chat_info_are_protected_by_e2ee">Messages and chat info are protected by end-to-end encryption, including the syncing process.</string>
|
||||
<string name="MessageSyncScreen__messages_and_chat_info_are_protected_by_e2ee">Poruke, podaci o razgovorima i cijeli proces sinkronizacije zaštićeni su sveobuhvatnim šifriranjem.</string>
|
||||
<!-- Inline link in the sync screen footer that opens documentation about end-to-end encryption during sync -->
|
||||
<string name="MessageSyncScreen__learn_more">Saznajte više</string>
|
||||
<!-- Button label that cancels the in-progress message sync -->
|
||||
<string name="MessageSyncScreen__cancel">Poništi</string>
|
||||
|
||||
<!-- Title for the screen that shows a QR code the user scans with their existing primary device to link this device as a secondary -->
|
||||
<string name="LinkAccountScreen__scan_this_code_to_link_your_account">Scan this code to link your account</string>
|
||||
<string name="LinkAccountScreen__scan_this_code_to_link_your_account">Skenirajte ovaj kôd za povezivanje računa</string>
|
||||
<!-- Step in the link-account instructions: open Signal on the user\'s existing phone -->
|
||||
<string name="LinkAccountScreen__open_signal_on_your_phone">Otvorite Signal na vašem telefonu</string>
|
||||
<!-- Step in the link-account instructions: tap profile picture to open Signal Settings -->
|
||||
<string name="LinkAccountScreen__tap_your_profile_picture_to_open_signal_settings">Tap your profile picture to open Signal Settings</string>
|
||||
<string name="LinkAccountScreen__tap_your_profile_picture_to_open_signal_settings">Dodirnite svoju sliku profila kako biste otvorili postavke Signala</string>
|
||||
<!-- Step in the link-account instructions: navigate to the Linked devices section and tap Link new device. The quoted strings should match the button/menu labels in the primary device\'s settings. -->
|
||||
<string name="LinkAccountScreen__tap_linked_devices_and_link_new_device">Tap \"Linked devices\" and \"Link new device\"</string>
|
||||
<string name="LinkAccountScreen__tap_linked_devices_and_link_new_device">Dodirnite „Povezani uređaji“, a zatim „Poveži novi uređaj“</string>
|
||||
<!-- Step in the link-account instructions: aim the primary device\'s camera at the QR code displayed on this screen -->
|
||||
<string name="LinkAccountScreen__position_the_camera_over_this_qr_code">Position the camera over this qr code</string>
|
||||
<string name="LinkAccountScreen__position_the_camera_over_this_qr_code">Skenirajte ovaj QR kôd pomoću kamere telefona</string>
|
||||
<!-- Button label opening help content for users who can\'t complete the link-account steps -->
|
||||
<string name="LinkAccountScreen__get_help_with_these_steps">Get help with these steps</string>
|
||||
<string name="LinkAccountScreen__get_help_with_these_steps">Zatražite dodatnu pomoć</string>
|
||||
<!-- Accessibility content description for the button that enlarges the QR code to full screen -->
|
||||
<string name="LinkAccountScreen__maximize_qr_code">Maximize QR Code</string>
|
||||
<string name="LinkAccountScreen__maximize_qr_code">Povećaj QR kôd</string>
|
||||
<!-- Label shown in place of the QR code after the primary device has successfully scanned it -->
|
||||
<string name="LinkAccountScreen__scanned">Scanned</string>
|
||||
<string name="LinkAccountScreen__scanned">Skenirano</string>
|
||||
<!-- Error label shown in place of the QR code if it could not be generated -->
|
||||
<string name="LinkAccountScreen__failed_to_generate_code">Failed to generate code</string>
|
||||
<string name="LinkAccountScreen__failed_to_generate_code">Generiranje QR kôda nije uspjelo</string>
|
||||
<!-- Footer prompt asking the user if they have another device with Signal. Precedes a separate "Create account" link. -->
|
||||
<string name="LinkAccountScreen__dont_have_signal_on_another_device">Don\'t have Signal on another device?</string>
|
||||
<string name="LinkAccountScreen__dont_have_signal_on_another_device">Nemate Signal na drugom uređaju?</string>
|
||||
<!-- Inline link in the link-account screen footer that takes the user to the new-account creation flow instead of linking -->
|
||||
<string name="LinkAccountScreen__create_account">Izradite račun</string>
|
||||
</resources>
|
||||
|
||||
@@ -316,7 +316,7 @@
|
||||
<!-- PIN creation screen title when confirming the new Signal PIN. -->
|
||||
<string name="PinCreationScreen__confirm_your_pin">PIN-kód megerősítése</string>
|
||||
<!-- Describes how to confirm the new Signal PIN. -->
|
||||
<string name="PinCreationScreen__reenter_pin_description">Re-enter the PIN you just created</string>
|
||||
<string name="PinCreationScreen__reenter_pin_description">Add meg újra az imént létrehozott PIN-kódot</string>
|
||||
<!-- Describes the purpose of creating a Signal PIN. -->
|
||||
<string name="PinCreationScreen__pins_can_help">A PIN-kódok segíthetnek a fiókod visszaállításában, ha elveszíted a telefonodat. </string>
|
||||
<!-- Labels the button to learn more about Signal PINs. -->
|
||||
@@ -357,7 +357,7 @@
|
||||
<!-- Title for the screen asking the user to grant the notification permission -->
|
||||
<string name="AllowNotificationsScreen__allow_notifications">Értesítések engedélyezése</string>
|
||||
<!-- Description for the screen asking the user to grant the notification permission -->
|
||||
<string name="AllowNotificationsScreen__signal_would_like_to_request_the_notification_permission">Signal would like to request the notification permission. This allows your device to display alerts when new messages arrive.</string>
|
||||
<string name="AllowNotificationsScreen__signal_would_like_to_request_the_notification_permission">A Signal szeretné kérni az értesítési engedélyt. Ez lehetővé teszi, hogy az eszközöd értesítéseket jelenítsen meg, amikor új üzenetek érkeznek.</string>
|
||||
<!-- Button label that dismisses the notification permission request without granting it -->
|
||||
<string name="AllowNotificationsScreen__not_now">Később</string>
|
||||
<!-- Button label that proceeds with the notification permission request -->
|
||||
@@ -366,36 +366,36 @@
|
||||
<!-- Title shown while messages are syncing from the primary device -->
|
||||
<string name="MessageSyncScreen__syncing_messages">Üzenetek szinkronizálása</string>
|
||||
<!-- Subtitle shown while messages are syncing from the primary device, indicating it may take a while -->
|
||||
<string name="MessageSyncScreen__this_may_take_a_few_minutes">This may take a few minutes…</string>
|
||||
<string name="MessageSyncScreen__this_may_take_a_few_minutes">Ez eltarthat néhány percig…</string>
|
||||
<!-- Progress label shown under the sync progress bar. %1$s is the amount downloaded so far (e.g. "1 MB"), %2$s is the total size to download (e.g. "3.2 MB") -->
|
||||
<string name="MessageSyncScreen__downloading_s_of_s">%1$s/%2$s letöltése</string>
|
||||
<!-- Informational notice in the sync screen footer, indicating the sync is end-to-end encrypted. Precedes a separate "Learn more" link. -->
|
||||
<string name="MessageSyncScreen__messages_and_chat_info_are_protected_by_e2ee">Messages and chat info are protected by end-to-end encryption, including the syncing process.</string>
|
||||
<string name="MessageSyncScreen__messages_and_chat_info_are_protected_by_e2ee">Az üzeneteket és a csevegési információkat végpontok közötti titkosítás védi, beleértve a szinkronizálási folyamatot is.</string>
|
||||
<!-- Inline link in the sync screen footer that opens documentation about end-to-end encryption during sync -->
|
||||
<string name="MessageSyncScreen__learn_more">Tudj meg többet</string>
|
||||
<!-- Button label that cancels the in-progress message sync -->
|
||||
<string name="MessageSyncScreen__cancel">Mégse</string>
|
||||
|
||||
<!-- Title for the screen that shows a QR code the user scans with their existing primary device to link this device as a secondary -->
|
||||
<string name="LinkAccountScreen__scan_this_code_to_link_your_account">Scan this code to link your account</string>
|
||||
<string name="LinkAccountScreen__scan_this_code_to_link_your_account">A fiókod összekapcsolásához olvasd be ezt a kódot</string>
|
||||
<!-- Step in the link-account instructions: open Signal on the user\'s existing phone -->
|
||||
<string name="LinkAccountScreen__open_signal_on_your_phone">Nyisd meg a Signalt a telefonodon!</string>
|
||||
<!-- Step in the link-account instructions: tap profile picture to open Signal Settings -->
|
||||
<string name="LinkAccountScreen__tap_your_profile_picture_to_open_signal_settings">Tap your profile picture to open Signal Settings</string>
|
||||
<string name="LinkAccountScreen__tap_your_profile_picture_to_open_signal_settings">A Signal beállításainak megnyitásához koppints a profilképedre</string>
|
||||
<!-- Step in the link-account instructions: navigate to the Linked devices section and tap Link new device. The quoted strings should match the button/menu labels in the primary device\'s settings. -->
|
||||
<string name="LinkAccountScreen__tap_linked_devices_and_link_new_device">Tap \"Linked devices\" and \"Link new device\"</string>
|
||||
<string name="LinkAccountScreen__tap_linked_devices_and_link_new_device">Koppints a „Kapcsolódó eszközök” és az „Új eszköz csatolása” lehetőségre</string>
|
||||
<!-- Step in the link-account instructions: aim the primary device\'s camera at the QR code displayed on this screen -->
|
||||
<string name="LinkAccountScreen__position_the_camera_over_this_qr_code">Position the camera over this qr code</string>
|
||||
<string name="LinkAccountScreen__position_the_camera_over_this_qr_code">Irányítsd a kamerát erre a QR-kódra</string>
|
||||
<!-- Button label opening help content for users who can\'t complete the link-account steps -->
|
||||
<string name="LinkAccountScreen__get_help_with_these_steps">Get help with these steps</string>
|
||||
<string name="LinkAccountScreen__get_help_with_these_steps">Kérj segítséget ezekkel a lépésekkel kapcsolatban</string>
|
||||
<!-- Accessibility content description for the button that enlarges the QR code to full screen -->
|
||||
<string name="LinkAccountScreen__maximize_qr_code">Maximize QR Code</string>
|
||||
<string name="LinkAccountScreen__maximize_qr_code">QR-kód maximalizálása</string>
|
||||
<!-- Label shown in place of the QR code after the primary device has successfully scanned it -->
|
||||
<string name="LinkAccountScreen__scanned">Scanned</string>
|
||||
<string name="LinkAccountScreen__scanned">Beolvasva</string>
|
||||
<!-- Error label shown in place of the QR code if it could not be generated -->
|
||||
<string name="LinkAccountScreen__failed_to_generate_code">Failed to generate code</string>
|
||||
<string name="LinkAccountScreen__failed_to_generate_code">A kód generálása sikertelen</string>
|
||||
<!-- Footer prompt asking the user if they have another device with Signal. Precedes a separate "Create account" link. -->
|
||||
<string name="LinkAccountScreen__dont_have_signal_on_another_device">Don\'t have Signal on another device?</string>
|
||||
<string name="LinkAccountScreen__dont_have_signal_on_another_device">Nincs letöltve a Signal másik eszközre?</string>
|
||||
<!-- Inline link in the link-account screen footer that takes the user to the new-account creation flow instead of linking -->
|
||||
<string name="LinkAccountScreen__create_account">Fiók létrehozása</string>
|
||||
</resources>
|
||||
|
||||
@@ -315,7 +315,7 @@
|
||||
<!-- PIN creation screen title when confirming the new Signal PIN. -->
|
||||
<string name="PinCreationScreen__confirm_your_pin">Konfirmasi PIN Anda</string>
|
||||
<!-- Describes how to confirm the new Signal PIN. -->
|
||||
<string name="PinCreationScreen__reenter_pin_description">Re-enter the PIN you just created</string>
|
||||
<string name="PinCreationScreen__reenter_pin_description">Masukkan lagi PIN yang baru saja dibuat</string>
|
||||
<!-- Describes the purpose of creating a Signal PIN. -->
|
||||
<string name="PinCreationScreen__pins_can_help">PIN dapat membantu memulihkan akun jika ponsel Anda hilang. </string>
|
||||
<!-- Labels the button to learn more about Signal PINs. -->
|
||||
@@ -327,7 +327,7 @@
|
||||
<!-- Labels the button to submit a new Signal PIN. -->
|
||||
<string name="PinCreationScreen__next">Berikutnya</string>
|
||||
<!-- Hint shown below the create PIN field when numeric keyboard is active. -->
|
||||
<string name="PinCreationScreen__pin_at_least_4_digits">PIN minimal harus 4 karakter</string>
|
||||
<string name="PinCreationScreen__pin_at_least_4_digits">PIN minimal harus 4 digit</string>
|
||||
<!-- Hint shown below the create PIN field when alphanumeric keyboard is active. -->
|
||||
<string name="PinCreationScreen__pin_at_least_4_characters">PIN minimal harus 4 karakter</string>
|
||||
<!-- Hint shown below the create PIN field when the user is confirming their new Signal PIN. -->
|
||||
@@ -341,7 +341,7 @@
|
||||
<string name="PinEntryScreen__enter_the_pin_you_created">Masukkan PIN yang Anda buat saat pertama kali menginstal Signal</string>
|
||||
<!-- Error shown when an incorrect PIN is entered. %1$d is the number of attempts remaining. -->
|
||||
<plurals name="PinEntryScreen__incorrect_pin">
|
||||
<item quantity="other">PIN salah. %1$d percobaan tersisa.</item>
|
||||
<item quantity="other">PIN salah. Sisa %1$d kali percobaan.</item>
|
||||
</plurals>
|
||||
<!-- Labels the button to get help with PIN entry. -->
|
||||
<string name="PinEntryScreen__need_help">Butuh bantuan?</string>
|
||||
@@ -355,7 +355,7 @@
|
||||
<!-- Title for the screen asking the user to grant the notification permission -->
|
||||
<string name="AllowNotificationsScreen__allow_notifications">Izinkan Notifikasi</string>
|
||||
<!-- Description for the screen asking the user to grant the notification permission -->
|
||||
<string name="AllowNotificationsScreen__signal_would_like_to_request_the_notification_permission">Signal would like to request the notification permission. This allows your device to display alerts when new messages arrive.</string>
|
||||
<string name="AllowNotificationsScreen__signal_would_like_to_request_the_notification_permission">Signal ingin meminta izin notifikasi. Izin ini memungkinkan perangkat Anda menampilkan peringatan saat ada pesan baru yang masuk.</string>
|
||||
<!-- Button label that dismisses the notification permission request without granting it -->
|
||||
<string name="AllowNotificationsScreen__not_now">Tidak sekarang</string>
|
||||
<!-- Button label that proceeds with the notification permission request -->
|
||||
@@ -364,36 +364,36 @@
|
||||
<!-- Title shown while messages are syncing from the primary device -->
|
||||
<string name="MessageSyncScreen__syncing_messages">Menyinkronkan pesan</string>
|
||||
<!-- Subtitle shown while messages are syncing from the primary device, indicating it may take a while -->
|
||||
<string name="MessageSyncScreen__this_may_take_a_few_minutes">This may take a few minutes…</string>
|
||||
<string name="MessageSyncScreen__this_may_take_a_few_minutes">Mungkin perlu waktu beberapa menit…</string>
|
||||
<!-- Progress label shown under the sync progress bar. %1$s is the amount downloaded so far (e.g. "1 MB"), %2$s is the total size to download (e.g. "3.2 MB") -->
|
||||
<string name="MessageSyncScreen__downloading_s_of_s">Mengunduh %1$s dari %2$s</string>
|
||||
<!-- Informational notice in the sync screen footer, indicating the sync is end-to-end encrypted. Precedes a separate "Learn more" link. -->
|
||||
<string name="MessageSyncScreen__messages_and_chat_info_are_protected_by_e2ee">Messages and chat info are protected by end-to-end encryption, including the syncing process.</string>
|
||||
<string name="MessageSyncScreen__messages_and_chat_info_are_protected_by_e2ee">Info chat dan pesan dilindungi enkripsi E2E, termasuk proses sinkronisasi.</string>
|
||||
<!-- Inline link in the sync screen footer that opens documentation about end-to-end encryption during sync -->
|
||||
<string name="MessageSyncScreen__learn_more">Pelajari selengkapnya</string>
|
||||
<!-- Button label that cancels the in-progress message sync -->
|
||||
<string name="MessageSyncScreen__cancel">Batal</string>
|
||||
|
||||
<!-- Title for the screen that shows a QR code the user scans with their existing primary device to link this device as a secondary -->
|
||||
<string name="LinkAccountScreen__scan_this_code_to_link_your_account">Scan this code to link your account</string>
|
||||
<string name="LinkAccountScreen__scan_this_code_to_link_your_account">Pindai kode ini untuk menghubungkan akun Anda</string>
|
||||
<!-- Step in the link-account instructions: open Signal on the user\'s existing phone -->
|
||||
<string name="LinkAccountScreen__open_signal_on_your_phone">Buka Signal di ponsel Anda</string>
|
||||
<!-- Step in the link-account instructions: tap profile picture to open Signal Settings -->
|
||||
<string name="LinkAccountScreen__tap_your_profile_picture_to_open_signal_settings">Tap your profile picture to open Signal Settings</string>
|
||||
<string name="LinkAccountScreen__tap_your_profile_picture_to_open_signal_settings">Ketuk foto profil untuk membuka Pengaturan Signal</string>
|
||||
<!-- Step in the link-account instructions: navigate to the Linked devices section and tap Link new device. The quoted strings should match the button/menu labels in the primary device\'s settings. -->
|
||||
<string name="LinkAccountScreen__tap_linked_devices_and_link_new_device">Tap \"Linked devices\" and \"Link new device\"</string>
|
||||
<string name="LinkAccountScreen__tap_linked_devices_and_link_new_device">Ketuk \"Perangkat terhubung\" dan \"Hubungkan perangkat baru\"</string>
|
||||
<!-- Step in the link-account instructions: aim the primary device\'s camera at the QR code displayed on this screen -->
|
||||
<string name="LinkAccountScreen__position_the_camera_over_this_qr_code">Position the camera over this qr code</string>
|
||||
<string name="LinkAccountScreen__position_the_camera_over_this_qr_code">Arahkan kamera ke kode QR ini</string>
|
||||
<!-- Button label opening help content for users who can\'t complete the link-account steps -->
|
||||
<string name="LinkAccountScreen__get_help_with_these_steps">Get help with these steps</string>
|
||||
<string name="LinkAccountScreen__get_help_with_these_steps">Dapatkan bantuan untuk langkah ini</string>
|
||||
<!-- Accessibility content description for the button that enlarges the QR code to full screen -->
|
||||
<string name="LinkAccountScreen__maximize_qr_code">Maximize QR Code</string>
|
||||
<string name="LinkAccountScreen__maximize_qr_code">Maksimalkan Kode QR</string>
|
||||
<!-- Label shown in place of the QR code after the primary device has successfully scanned it -->
|
||||
<string name="LinkAccountScreen__scanned">Scanned</string>
|
||||
<string name="LinkAccountScreen__scanned">Dipindai</string>
|
||||
<!-- Error label shown in place of the QR code if it could not be generated -->
|
||||
<string name="LinkAccountScreen__failed_to_generate_code">Failed to generate code</string>
|
||||
<string name="LinkAccountScreen__failed_to_generate_code">Gagal membuat kode</string>
|
||||
<!-- Footer prompt asking the user if they have another device with Signal. Precedes a separate "Create account" link. -->
|
||||
<string name="LinkAccountScreen__dont_have_signal_on_another_device">Don\'t have Signal on another device?</string>
|
||||
<string name="LinkAccountScreen__dont_have_signal_on_another_device">Tidak punya Signal di perangkat lain?</string>
|
||||
<!-- Inline link in the link-account screen footer that takes the user to the new-account creation flow instead of linking -->
|
||||
<string name="LinkAccountScreen__create_account">Buat akun</string>
|
||||
</resources>
|
||||
|
||||
@@ -316,7 +316,7 @@
|
||||
<!-- PIN creation screen title when confirming the new Signal PIN. -->
|
||||
<string name="PinCreationScreen__confirm_your_pin">Conferma il tuo PIN</string>
|
||||
<!-- Describes how to confirm the new Signal PIN. -->
|
||||
<string name="PinCreationScreen__reenter_pin_description">Re-enter the PIN you just created</string>
|
||||
<string name="PinCreationScreen__reenter_pin_description">Reinserisci il PIN appena creato</string>
|
||||
<!-- Describes the purpose of creating a Signal PIN. -->
|
||||
<string name="PinCreationScreen__pins_can_help">I PIN possono aiutarti a recuperare il tuo account in caso di smarrimento del telefono. </string>
|
||||
<!-- Labels the button to learn more about Signal PINs. -->
|
||||
@@ -328,9 +328,9 @@
|
||||
<!-- Labels the button to submit a new Signal PIN. -->
|
||||
<string name="PinCreationScreen__next">Avanti</string>
|
||||
<!-- Hint shown below the create PIN field when numeric keyboard is active. -->
|
||||
<string name="PinCreationScreen__pin_at_least_4_digits">Il PIN deve essere almeno di 4 cifre</string>
|
||||
<string name="PinCreationScreen__pin_at_least_4_digits">Il PIN deve essere composto da almeno 4 cifre</string>
|
||||
<!-- Hint shown below the create PIN field when alphanumeric keyboard is active. -->
|
||||
<string name="PinCreationScreen__pin_at_least_4_characters">Il PIN deve essere almeno di 4 caratteri</string>
|
||||
<string name="PinCreationScreen__pin_at_least_4_characters">Il PIN deve essere composto da almeno 4 caratteri</string>
|
||||
<!-- Hint shown below the create PIN field when the user is confirming their new Signal PIN. -->
|
||||
<string name="PinCreationScreen__reenter_pin">Reinserisci PIN</string>
|
||||
|
||||
@@ -357,7 +357,7 @@
|
||||
<!-- Title for the screen asking the user to grant the notification permission -->
|
||||
<string name="AllowNotificationsScreen__allow_notifications">Consenti notifiche</string>
|
||||
<!-- Description for the screen asking the user to grant the notification permission -->
|
||||
<string name="AllowNotificationsScreen__signal_would_like_to_request_the_notification_permission">Signal would like to request the notification permission. This allows your device to display alerts when new messages arrive.</string>
|
||||
<string name="AllowNotificationsScreen__signal_would_like_to_request_the_notification_permission">Signal ha bisogno dell\'autorizzazione per inviarti le notifiche. Se acconsenti, potrai vedere gli avvisi sullo schermo ogni volta che ricevi nuovi messaggi.</string>
|
||||
<!-- Button label that dismisses the notification permission request without granting it -->
|
||||
<string name="AllowNotificationsScreen__not_now">Non ora</string>
|
||||
<!-- Button label that proceeds with the notification permission request -->
|
||||
@@ -366,36 +366,36 @@
|
||||
<!-- Title shown while messages are syncing from the primary device -->
|
||||
<string name="MessageSyncScreen__syncing_messages">Sincronizzazione messaggi</string>
|
||||
<!-- Subtitle shown while messages are syncing from the primary device, indicating it may take a while -->
|
||||
<string name="MessageSyncScreen__this_may_take_a_few_minutes">This may take a few minutes…</string>
|
||||
<string name="MessageSyncScreen__this_may_take_a_few_minutes">Ci vorrà qualche minuto…</string>
|
||||
<!-- Progress label shown under the sync progress bar. %1$s is the amount downloaded so far (e.g. "1 MB"), %2$s is the total size to download (e.g. "3.2 MB") -->
|
||||
<string name="MessageSyncScreen__downloading_s_of_s">Download in corso: %1$s su %2$s</string>
|
||||
<!-- Informational notice in the sync screen footer, indicating the sync is end-to-end encrypted. Precedes a separate "Learn more" link. -->
|
||||
<string name="MessageSyncScreen__messages_and_chat_info_are_protected_by_e2ee">Messages and chat info are protected by end-to-end encryption, including the syncing process.</string>
|
||||
<string name="MessageSyncScreen__messages_and_chat_info_are_protected_by_e2ee">I messaggi e le informazioni delle chat sono protetti da una crittografia end-to-end (incluso il processo di sincronizzazione).</string>
|
||||
<!-- Inline link in the sync screen footer that opens documentation about end-to-end encryption during sync -->
|
||||
<string name="MessageSyncScreen__learn_more">Scopri di più</string>
|
||||
<!-- Button label that cancels the in-progress message sync -->
|
||||
<string name="MessageSyncScreen__cancel">Annulla</string>
|
||||
|
||||
<!-- Title for the screen that shows a QR code the user scans with their existing primary device to link this device as a secondary -->
|
||||
<string name="LinkAccountScreen__scan_this_code_to_link_your_account">Scan this code to link your account</string>
|
||||
<string name="LinkAccountScreen__scan_this_code_to_link_your_account">Scansiona questo codice per collegare il tuo account</string>
|
||||
<!-- Step in the link-account instructions: open Signal on the user\'s existing phone -->
|
||||
<string name="LinkAccountScreen__open_signal_on_your_phone">Apri Signal sul tuo telefono</string>
|
||||
<!-- Step in the link-account instructions: tap profile picture to open Signal Settings -->
|
||||
<string name="LinkAccountScreen__tap_your_profile_picture_to_open_signal_settings">Tap your profile picture to open Signal Settings</string>
|
||||
<string name="LinkAccountScreen__tap_your_profile_picture_to_open_signal_settings">Tocca l\'immagine del tuo profilo per aprire le Impostazioni di Signal</string>
|
||||
<!-- Step in the link-account instructions: navigate to the Linked devices section and tap Link new device. The quoted strings should match the button/menu labels in the primary device\'s settings. -->
|
||||
<string name="LinkAccountScreen__tap_linked_devices_and_link_new_device">Tap \"Linked devices\" and \"Link new device\"</string>
|
||||
<string name="LinkAccountScreen__tap_linked_devices_and_link_new_device">Tocca su \"Dispositivi collegati\" e \"Collega un nuovo dispositivo\"</string>
|
||||
<!-- Step in the link-account instructions: aim the primary device\'s camera at the QR code displayed on this screen -->
|
||||
<string name="LinkAccountScreen__position_the_camera_over_this_qr_code">Position the camera over this qr code</string>
|
||||
<string name="LinkAccountScreen__position_the_camera_over_this_qr_code">Posiziona la fotocamera in modo da inquadrare questo codice QR</string>
|
||||
<!-- Button label opening help content for users who can\'t complete the link-account steps -->
|
||||
<string name="LinkAccountScreen__get_help_with_these_steps">Get help with these steps</string>
|
||||
<string name="LinkAccountScreen__get_help_with_these_steps">Ricevi assistenza seguendo questi passaggi</string>
|
||||
<!-- Accessibility content description for the button that enlarges the QR code to full screen -->
|
||||
<string name="LinkAccountScreen__maximize_qr_code">Maximize QR Code</string>
|
||||
<string name="LinkAccountScreen__maximize_qr_code">Ingrandisci codice QR</string>
|
||||
<!-- Label shown in place of the QR code after the primary device has successfully scanned it -->
|
||||
<string name="LinkAccountScreen__scanned">Scanned</string>
|
||||
<string name="LinkAccountScreen__scanned">Scansionato</string>
|
||||
<!-- Error label shown in place of the QR code if it could not be generated -->
|
||||
<string name="LinkAccountScreen__failed_to_generate_code">Failed to generate code</string>
|
||||
<string name="LinkAccountScreen__failed_to_generate_code">Impossibile generare il codice</string>
|
||||
<!-- Footer prompt asking the user if they have another device with Signal. Precedes a separate "Create account" link. -->
|
||||
<string name="LinkAccountScreen__dont_have_signal_on_another_device">Don\'t have Signal on another device?</string>
|
||||
<string name="LinkAccountScreen__dont_have_signal_on_another_device">Non hai Signal su un altro dispositivo?</string>
|
||||
<!-- Inline link in the link-account screen footer that takes the user to the new-account creation flow instead of linking -->
|
||||
<string name="LinkAccountScreen__create_account">Crea un account</string>
|
||||
</resources>
|
||||
|
||||
@@ -318,7 +318,7 @@
|
||||
<!-- PIN creation screen title when confirming the new Signal PIN. -->
|
||||
<string name="PinCreationScreen__confirm_your_pin">אישור ה–PIN שלך</string>
|
||||
<!-- Describes how to confirm the new Signal PIN. -->
|
||||
<string name="PinCreationScreen__reenter_pin_description">Re-enter the PIN you just created</string>
|
||||
<string name="PinCreationScreen__reenter_pin_description">יש להזין שוב את ה–PIN שעכשיו יצרת</string>
|
||||
<!-- Describes the purpose of creating a Signal PIN. -->
|
||||
<string name="PinCreationScreen__pins_can_help">קודי PIN יכולים לעזור לך לשחזר את החשבון שלך אם איבדת את הטלפון. </string>
|
||||
<!-- Labels the button to learn more about Signal PINs. -->
|
||||
@@ -361,7 +361,7 @@
|
||||
<!-- Title for the screen asking the user to grant the notification permission -->
|
||||
<string name="AllowNotificationsScreen__allow_notifications">הפעלת התראות</string>
|
||||
<!-- Description for the screen asking the user to grant the notification permission -->
|
||||
<string name="AllowNotificationsScreen__signal_would_like_to_request_the_notification_permission">Signal would like to request the notification permission. This allows your device to display alerts when new messages arrive.</string>
|
||||
<string name="AllowNotificationsScreen__signal_would_like_to_request_the_notification_permission">Signal רוצה לבקש הרשאת התראות. זה מאפשר למכשיר שלך להציג התראות כשמגיעות הודעות חדשות.</string>
|
||||
<!-- Button label that dismisses the notification permission request without granting it -->
|
||||
<string name="AllowNotificationsScreen__not_now">לא עכשיו</string>
|
||||
<!-- Button label that proceeds with the notification permission request -->
|
||||
@@ -370,36 +370,36 @@
|
||||
<!-- Title shown while messages are syncing from the primary device -->
|
||||
<string name="MessageSyncScreen__syncing_messages">מסנכרנים הודעות</string>
|
||||
<!-- Subtitle shown while messages are syncing from the primary device, indicating it may take a while -->
|
||||
<string name="MessageSyncScreen__this_may_take_a_few_minutes">This may take a few minutes…</string>
|
||||
<string name="MessageSyncScreen__this_may_take_a_few_minutes">זה עשוי לקחת כמה דקות…</string>
|
||||
<!-- Progress label shown under the sync progress bar. %1$s is the amount downloaded so far (e.g. "1 MB"), %2$s is the total size to download (e.g. "3.2 MB") -->
|
||||
<string name="MessageSyncScreen__downloading_s_of_s">בהורדה: %1$s מתוך %2$s</string>
|
||||
<!-- Informational notice in the sync screen footer, indicating the sync is end-to-end encrypted. Precedes a separate "Learn more" link. -->
|
||||
<string name="MessageSyncScreen__messages_and_chat_info_are_protected_by_e2ee">Messages and chat info are protected by end-to-end encryption, including the syncing process.</string>
|
||||
<string name="MessageSyncScreen__messages_and_chat_info_are_protected_by_e2ee">הודעות ופרטי צ׳אט מוגנים באמצעות הצפנה מקצה לקצה, כולל תהליך הסנכרון.</string>
|
||||
<!-- Inline link in the sync screen footer that opens documentation about end-to-end encryption during sync -->
|
||||
<string name="MessageSyncScreen__learn_more">למידע נוסף</string>
|
||||
<!-- Button label that cancels the in-progress message sync -->
|
||||
<string name="MessageSyncScreen__cancel">ביטול</string>
|
||||
|
||||
<!-- Title for the screen that shows a QR code the user scans with their existing primary device to link this device as a secondary -->
|
||||
<string name="LinkAccountScreen__scan_this_code_to_link_your_account">Scan this code to link your account</string>
|
||||
<string name="LinkAccountScreen__scan_this_code_to_link_your_account">יש לסרוק את הקוד הזה כדי לקשר את החשבון שלך</string>
|
||||
<!-- Step in the link-account instructions: open Signal on the user\'s existing phone -->
|
||||
<string name="LinkAccountScreen__open_signal_on_your_phone">פתח את Signal בטלפון שלך</string>
|
||||
<!-- Step in the link-account instructions: tap profile picture to open Signal Settings -->
|
||||
<string name="LinkAccountScreen__tap_your_profile_picture_to_open_signal_settings">Tap your profile picture to open Signal Settings</string>
|
||||
<string name="LinkAccountScreen__tap_your_profile_picture_to_open_signal_settings">ללחוץ על תמונת הפרופיל כדי לפתוח את הגדרות Signal</string>
|
||||
<!-- Step in the link-account instructions: navigate to the Linked devices section and tap Link new device. The quoted strings should match the button/menu labels in the primary device\'s settings. -->
|
||||
<string name="LinkAccountScreen__tap_linked_devices_and_link_new_device">Tap \"Linked devices\" and \"Link new device\"</string>
|
||||
<string name="LinkAccountScreen__tap_linked_devices_and_link_new_device">ללחוץ על ״מכשירים מקושרים״ ו״קישור מכשיר חדש״</string>
|
||||
<!-- Step in the link-account instructions: aim the primary device\'s camera at the QR code displayed on this screen -->
|
||||
<string name="LinkAccountScreen__position_the_camera_over_this_qr_code">Position the camera over this qr code</string>
|
||||
<string name="LinkAccountScreen__position_the_camera_over_this_qr_code">למקם את המצלמה מול קוד ה–QR הזה</string>
|
||||
<!-- Button label opening help content for users who can\'t complete the link-account steps -->
|
||||
<string name="LinkAccountScreen__get_help_with_these_steps">Get help with these steps</string>
|
||||
<string name="LinkAccountScreen__get_help_with_these_steps">לקבלת עזרה לגבי השלבים האלה</string>
|
||||
<!-- Accessibility content description for the button that enlarges the QR code to full screen -->
|
||||
<string name="LinkAccountScreen__maximize_qr_code">Maximize QR Code</string>
|
||||
<string name="LinkAccountScreen__maximize_qr_code">הגדלת קוד QR</string>
|
||||
<!-- Label shown in place of the QR code after the primary device has successfully scanned it -->
|
||||
<string name="LinkAccountScreen__scanned">Scanned</string>
|
||||
<string name="LinkAccountScreen__scanned">נסרק</string>
|
||||
<!-- Error label shown in place of the QR code if it could not be generated -->
|
||||
<string name="LinkAccountScreen__failed_to_generate_code">Failed to generate code</string>
|
||||
<string name="LinkAccountScreen__failed_to_generate_code">יצירת קוד נכשלה</string>
|
||||
<!-- Footer prompt asking the user if they have another device with Signal. Precedes a separate "Create account" link. -->
|
||||
<string name="LinkAccountScreen__dont_have_signal_on_another_device">Don\'t have Signal on another device?</string>
|
||||
<string name="LinkAccountScreen__dont_have_signal_on_another_device">אין לך את Signal במכשיר אחר?</string>
|
||||
<!-- Inline link in the link-account screen footer that takes the user to the new-account creation flow instead of linking -->
|
||||
<string name="LinkAccountScreen__create_account">יצירת חשבון</string>
|
||||
</resources>
|
||||
|
||||
@@ -315,7 +315,7 @@
|
||||
<!-- PIN creation screen title when confirming the new Signal PIN. -->
|
||||
<string name="PinCreationScreen__confirm_your_pin">PINの確認</string>
|
||||
<!-- Describes how to confirm the new Signal PIN. -->
|
||||
<string name="PinCreationScreen__reenter_pin_description">Re-enter the PIN you just created</string>
|
||||
<string name="PinCreationScreen__reenter_pin_description">先ほど作成したPINを再入力してください</string>
|
||||
<!-- Describes the purpose of creating a Signal PIN. -->
|
||||
<string name="PinCreationScreen__pins_can_help">PINを作成しておけば、スマートフォンを無くしてもアカウントを復元できます。 </string>
|
||||
<!-- Labels the button to learn more about Signal PINs. -->
|
||||
@@ -353,9 +353,9 @@
|
||||
<string name="PinEntryScreen__continue">続行</string>
|
||||
|
||||
<!-- Title for the screen asking the user to grant the notification permission -->
|
||||
<string name="AllowNotificationsScreen__allow_notifications">通知許可</string>
|
||||
<string name="AllowNotificationsScreen__allow_notifications">通知を許可してください</string>
|
||||
<!-- Description for the screen asking the user to grant the notification permission -->
|
||||
<string name="AllowNotificationsScreen__signal_would_like_to_request_the_notification_permission">Signal would like to request the notification permission. This allows your device to display alerts when new messages arrive.</string>
|
||||
<string name="AllowNotificationsScreen__signal_would_like_to_request_the_notification_permission">Signalは通知権限をリクエストします。権限を有効にすると、新しいメッセージが届いたときに端末に通知が表示されるようになります。</string>
|
||||
<!-- Button label that dismisses the notification permission request without granting it -->
|
||||
<string name="AllowNotificationsScreen__not_now">今はしない</string>
|
||||
<!-- Button label that proceeds with the notification permission request -->
|
||||
@@ -364,36 +364,36 @@
|
||||
<!-- Title shown while messages are syncing from the primary device -->
|
||||
<string name="MessageSyncScreen__syncing_messages">メッセージを同期しています</string>
|
||||
<!-- Subtitle shown while messages are syncing from the primary device, indicating it may take a while -->
|
||||
<string name="MessageSyncScreen__this_may_take_a_few_minutes">This may take a few minutes…</string>
|
||||
<string name="MessageSyncScreen__this_may_take_a_few_minutes">数分かかる場合があります…</string>
|
||||
<!-- Progress label shown under the sync progress bar. %1$s is the amount downloaded so far (e.g. "1 MB"), %2$s is the total size to download (e.g. "3.2 MB") -->
|
||||
<string name="MessageSyncScreen__downloading_s_of_s">%2$s のうち %1$s をダウンロード中</string>
|
||||
<!-- Informational notice in the sync screen footer, indicating the sync is end-to-end encrypted. Precedes a separate "Learn more" link. -->
|
||||
<string name="MessageSyncScreen__messages_and_chat_info_are_protected_by_e2ee">Messages and chat info are protected by end-to-end encryption, including the syncing process.</string>
|
||||
<string name="MessageSyncScreen__messages_and_chat_info_are_protected_by_e2ee">同期のプロセスも含め、メッセージ情報とチャット情報はエンドツーエンドの暗号化で保護されています。</string>
|
||||
<!-- Inline link in the sync screen footer that opens documentation about end-to-end encryption during sync -->
|
||||
<string name="MessageSyncScreen__learn_more">詳しく見る</string>
|
||||
<!-- Button label that cancels the in-progress message sync -->
|
||||
<string name="MessageSyncScreen__cancel">キャンセル</string>
|
||||
|
||||
<!-- Title for the screen that shows a QR code the user scans with their existing primary device to link this device as a secondary -->
|
||||
<string name="LinkAccountScreen__scan_this_code_to_link_your_account">Scan this code to link your account</string>
|
||||
<string name="LinkAccountScreen__scan_this_code_to_link_your_account">このコードをスキャンするとアカウントがリンクします</string>
|
||||
<!-- Step in the link-account instructions: open Signal on the user\'s existing phone -->
|
||||
<string name="LinkAccountScreen__open_signal_on_your_phone">ご利用のスマートフォンでSignalを開いてください</string>
|
||||
<!-- Step in the link-account instructions: tap profile picture to open Signal Settings -->
|
||||
<string name="LinkAccountScreen__tap_your_profile_picture_to_open_signal_settings">Tap your profile picture to open Signal Settings</string>
|
||||
<string name="LinkAccountScreen__tap_your_profile_picture_to_open_signal_settings">プロフィール画像をタップしてSignalの設定を開きます</string>
|
||||
<!-- Step in the link-account instructions: navigate to the Linked devices section and tap Link new device. The quoted strings should match the button/menu labels in the primary device\'s settings. -->
|
||||
<string name="LinkAccountScreen__tap_linked_devices_and_link_new_device">Tap \"Linked devices\" and \"Link new device\"</string>
|
||||
<string name="LinkAccountScreen__tap_linked_devices_and_link_new_device">「リンク済み端末」をタップし、次画面の「新しい端末をリンク」をタップします</string>
|
||||
<!-- Step in the link-account instructions: aim the primary device\'s camera at the QR code displayed on this screen -->
|
||||
<string name="LinkAccountScreen__position_the_camera_over_this_qr_code">Position the camera over this qr code</string>
|
||||
<string name="LinkAccountScreen__position_the_camera_over_this_qr_code">カメラをこのQRコードにかざしてください</string>
|
||||
<!-- Button label opening help content for users who can\'t complete the link-account steps -->
|
||||
<string name="LinkAccountScreen__get_help_with_these_steps">Get help with these steps</string>
|
||||
<string name="LinkAccountScreen__get_help_with_these_steps">手順に関するヘルプを見る</string>
|
||||
<!-- Accessibility content description for the button that enlarges the QR code to full screen -->
|
||||
<string name="LinkAccountScreen__maximize_qr_code">Maximize QR Code</string>
|
||||
<string name="LinkAccountScreen__maximize_qr_code">QRコードを拡大する</string>
|
||||
<!-- Label shown in place of the QR code after the primary device has successfully scanned it -->
|
||||
<string name="LinkAccountScreen__scanned">Scanned</string>
|
||||
<string name="LinkAccountScreen__scanned">スキャン完了</string>
|
||||
<!-- Error label shown in place of the QR code if it could not be generated -->
|
||||
<string name="LinkAccountScreen__failed_to_generate_code">Failed to generate code</string>
|
||||
<string name="LinkAccountScreen__failed_to_generate_code">コードを生成できませんでした</string>
|
||||
<!-- Footer prompt asking the user if they have another device with Signal. Precedes a separate "Create account" link. -->
|
||||
<string name="LinkAccountScreen__dont_have_signal_on_another_device">Don\'t have Signal on another device?</string>
|
||||
<string name="LinkAccountScreen__dont_have_signal_on_another_device">他の端末にはSignalをインストールしていませんか?</string>
|
||||
<!-- Inline link in the link-account screen footer that takes the user to the new-account creation flow instead of linking -->
|
||||
<string name="LinkAccountScreen__create_account">アカウントを作成</string>
|
||||
</resources>
|
||||
|
||||
@@ -314,9 +314,9 @@
|
||||
<!-- PIN creation screen title. -->
|
||||
<string name="PinCreationScreen__create_your_pin">შექმენი შენი პინ-კოდი</string>
|
||||
<!-- PIN creation screen title when confirming the new Signal PIN. -->
|
||||
<string name="PinCreationScreen__confirm_your_pin">Confirm your PIN</string>
|
||||
<string name="PinCreationScreen__confirm_your_pin">დაადასტურე შენი პინ-კოდი</string>
|
||||
<!-- Describes how to confirm the new Signal PIN. -->
|
||||
<string name="PinCreationScreen__reenter_pin_description">Re-enter the PIN you just created</string>
|
||||
<string name="PinCreationScreen__reenter_pin_description">თავიდან ჩაწერე პინ-კოდი, რომელიც ახლახან შექმენი</string>
|
||||
<!-- Describes the purpose of creating a Signal PIN. -->
|
||||
<string name="PinCreationScreen__pins_can_help">პინ-კოდს შეუძლია შენი ანგარიშის აღდგენაში დაგეხმაროს, თუ მობილურს დაკარგავ. </string>
|
||||
<!-- Labels the button to learn more about Signal PINs. -->
|
||||
@@ -328,11 +328,11 @@
|
||||
<!-- Labels the button to submit a new Signal PIN. -->
|
||||
<string name="PinCreationScreen__next">შემდეგი</string>
|
||||
<!-- Hint shown below the create PIN field when numeric keyboard is active. -->
|
||||
<string name="PinCreationScreen__pin_at_least_4_digits">PIN must be at least 4 digits</string>
|
||||
<string name="PinCreationScreen__pin_at_least_4_digits">პინ-კოდი მინიმუმ 4 ციფრისგან უნდა შედგებოდეს</string>
|
||||
<!-- Hint shown below the create PIN field when alphanumeric keyboard is active. -->
|
||||
<string name="PinCreationScreen__pin_at_least_4_characters">PIN must be at least 4 characters</string>
|
||||
<string name="PinCreationScreen__pin_at_least_4_characters">პინ-კოდი მინიმუმ 4 სიმბოლოსგან უნდა შედგებოდეს</string>
|
||||
<!-- Hint shown below the create PIN field when the user is confirming their new Signal PIN. -->
|
||||
<string name="PinCreationScreen__reenter_pin">Re-enter PIN</string>
|
||||
<string name="PinCreationScreen__reenter_pin">თავიდან შეიყვანე პინ-კოდი</string>
|
||||
|
||||
<!-- PIN entry screen title when registration lock is active. -->
|
||||
<string name="PinEntryScreen__registration_lock">რეგისტრაციის დაბლოკვა</string>
|
||||
@@ -355,9 +355,9 @@
|
||||
<string name="PinEntryScreen__continue">გაგრძელება</string>
|
||||
|
||||
<!-- Title for the screen asking the user to grant the notification permission -->
|
||||
<string name="AllowNotificationsScreen__allow_notifications">Allow Notifications</string>
|
||||
<string name="AllowNotificationsScreen__allow_notifications">დაშვებული შეტყობინებები</string>
|
||||
<!-- Description for the screen asking the user to grant the notification permission -->
|
||||
<string name="AllowNotificationsScreen__signal_would_like_to_request_the_notification_permission">Signal would like to request the notification permission. This allows your device to display alerts when new messages arrive.</string>
|
||||
<string name="AllowNotificationsScreen__signal_would_like_to_request_the_notification_permission">Signal-ს შეტყობინებების ნებართვის მოთხოვნა სურს. ეს შენს მოწყობილობას საშუალებას აძლევს გაგაფრთხილოს, როცა ახალ წერილებს მიიღებ.</string>
|
||||
<!-- Button label that dismisses the notification permission request without granting it -->
|
||||
<string name="AllowNotificationsScreen__not_now">ახლა არა</string>
|
||||
<!-- Button label that proceeds with the notification permission request -->
|
||||
@@ -366,36 +366,36 @@
|
||||
<!-- Title shown while messages are syncing from the primary device -->
|
||||
<string name="MessageSyncScreen__syncing_messages">მიმდინარეობს წერილების სინქრონიზება</string>
|
||||
<!-- Subtitle shown while messages are syncing from the primary device, indicating it may take a while -->
|
||||
<string name="MessageSyncScreen__this_may_take_a_few_minutes">This may take a few minutes…</string>
|
||||
<string name="MessageSyncScreen__this_may_take_a_few_minutes">შეიძლება, ამას რამდენიმე წუთი დასჭირდეს…</string>
|
||||
<!-- Progress label shown under the sync progress bar. %1$s is the amount downloaded so far (e.g. "1 MB"), %2$s is the total size to download (e.g. "3.2 MB") -->
|
||||
<string name="MessageSyncScreen__downloading_s_of_s">მიმდინარეობს %2$s-დან %1$s-ის ჩამოტვირთვა</string>
|
||||
<!-- Informational notice in the sync screen footer, indicating the sync is end-to-end encrypted. Precedes a separate "Learn more" link. -->
|
||||
<string name="MessageSyncScreen__messages_and_chat_info_are_protected_by_e2ee">Messages and chat info are protected by end-to-end encryption, including the syncing process.</string>
|
||||
<string name="MessageSyncScreen__messages_and_chat_info_are_protected_by_e2ee">შეტყობინებები და ჩატის ინფორმაცია, სინქრონიზაციის პროცესის ჩათვლით, ბოლომდეა დაშიფრული.</string>
|
||||
<!-- Inline link in the sync screen footer that opens documentation about end-to-end encryption during sync -->
|
||||
<string name="MessageSyncScreen__learn_more">გაიგე მეტი</string>
|
||||
<!-- Button label that cancels the in-progress message sync -->
|
||||
<string name="MessageSyncScreen__cancel">გაუქმება</string>
|
||||
|
||||
<!-- Title for the screen that shows a QR code the user scans with their existing primary device to link this device as a secondary -->
|
||||
<string name="LinkAccountScreen__scan_this_code_to_link_your_account">Scan this code to link your account</string>
|
||||
<string name="LinkAccountScreen__scan_this_code_to_link_your_account">დაასკანირე ეს კოდი, რომ შენი ანგარიში მიაბა</string>
|
||||
<!-- Step in the link-account instructions: open Signal on the user\'s existing phone -->
|
||||
<string name="LinkAccountScreen__open_signal_on_your_phone">გახსენი Signal-ი შენს ტელეფონში</string>
|
||||
<!-- Step in the link-account instructions: tap profile picture to open Signal Settings -->
|
||||
<string name="LinkAccountScreen__tap_your_profile_picture_to_open_signal_settings">Tap your profile picture to open Signal Settings</string>
|
||||
<string name="LinkAccountScreen__tap_your_profile_picture_to_open_signal_settings">Signal-ის პარამეტრებში შესასვლელად შენი პროფილის სურათს დააჭირე</string>
|
||||
<!-- Step in the link-account instructions: navigate to the Linked devices section and tap Link new device. The quoted strings should match the button/menu labels in the primary device\'s settings. -->
|
||||
<string name="LinkAccountScreen__tap_linked_devices_and_link_new_device">Tap \"Linked devices\" and \"Link new device\"</string>
|
||||
<string name="LinkAccountScreen__tap_linked_devices_and_link_new_device">აირჩიე \"მიბმული მოწყობილობები\" და \"ახალი მოწყობილობის მიბმა\"</string>
|
||||
<!-- Step in the link-account instructions: aim the primary device\'s camera at the QR code displayed on this screen -->
|
||||
<string name="LinkAccountScreen__position_the_camera_over_this_qr_code">Position the camera over this qr code</string>
|
||||
<string name="LinkAccountScreen__position_the_camera_over_this_qr_code">გაასწორე კამერა ამ QR კოდზე</string>
|
||||
<!-- Button label opening help content for users who can\'t complete the link-account steps -->
|
||||
<string name="LinkAccountScreen__get_help_with_these_steps">Get help with these steps</string>
|
||||
<string name="LinkAccountScreen__get_help_with_these_steps">მიიღე დახმარება ამ ნაბიჯებით</string>
|
||||
<!-- Accessibility content description for the button that enlarges the QR code to full screen -->
|
||||
<string name="LinkAccountScreen__maximize_qr_code">Maximize QR Code</string>
|
||||
<string name="LinkAccountScreen__maximize_qr_code">QR კოდის გადიდება</string>
|
||||
<!-- Label shown in place of the QR code after the primary device has successfully scanned it -->
|
||||
<string name="LinkAccountScreen__scanned">Scanned</string>
|
||||
<string name="LinkAccountScreen__scanned">დასკანირებული</string>
|
||||
<!-- Error label shown in place of the QR code if it could not be generated -->
|
||||
<string name="LinkAccountScreen__failed_to_generate_code">Failed to generate code</string>
|
||||
<string name="LinkAccountScreen__failed_to_generate_code">კოდის გენერირება ვერ მოხერხდა</string>
|
||||
<!-- Footer prompt asking the user if they have another device with Signal. Precedes a separate "Create account" link. -->
|
||||
<string name="LinkAccountScreen__dont_have_signal_on_another_device">Don\'t have Signal on another device?</string>
|
||||
<string name="LinkAccountScreen__dont_have_signal_on_another_device">არ გაქვს Signal სხვა მოწყობილობაზე?</string>
|
||||
<!-- Inline link in the link-account screen footer that takes the user to the new-account creation flow instead of linking -->
|
||||
<string name="LinkAccountScreen__create_account">შექმენი ანგარიში</string>
|
||||
</resources>
|
||||
|
||||
@@ -314,9 +314,9 @@
|
||||
<!-- PIN creation screen title. -->
|
||||
<string name="PinCreationScreen__create_your_pin">PIN код жасау</string>
|
||||
<!-- PIN creation screen title when confirming the new Signal PIN. -->
|
||||
<string name="PinCreationScreen__confirm_your_pin">Confirm your PIN</string>
|
||||
<string name="PinCreationScreen__confirm_your_pin">PIN кодыңызды растаңыз</string>
|
||||
<!-- Describes how to confirm the new Signal PIN. -->
|
||||
<string name="PinCreationScreen__reenter_pin_description">Re-enter the PIN you just created</string>
|
||||
<string name="PinCreationScreen__reenter_pin_description">Жаңа ғана жасаған PIN кодыңызды қайта енгізіңіз</string>
|
||||
<!-- Describes the purpose of creating a Signal PIN. -->
|
||||
<string name="PinCreationScreen__pins_can_help">Телефоныңызды жоғалтып алсаңыз, PIN кодтары аккаунтыңызды қалпына келтіруге көмектеседі. </string>
|
||||
<!-- Labels the button to learn more about Signal PINs. -->
|
||||
@@ -328,11 +328,11 @@
|
||||
<!-- Labels the button to submit a new Signal PIN. -->
|
||||
<string name="PinCreationScreen__next">Келесі</string>
|
||||
<!-- Hint shown below the create PIN field when numeric keyboard is active. -->
|
||||
<string name="PinCreationScreen__pin_at_least_4_digits">PIN must be at least 4 digits</string>
|
||||
<string name="PinCreationScreen__pin_at_least_4_digits">PIN коды кемінде 4 цифрдан тұруы керек</string>
|
||||
<!-- Hint shown below the create PIN field when alphanumeric keyboard is active. -->
|
||||
<string name="PinCreationScreen__pin_at_least_4_characters">PIN must be at least 4 characters</string>
|
||||
<string name="PinCreationScreen__pin_at_least_4_characters">PIN коды кемінде 4 таңбадан тұруы керек</string>
|
||||
<!-- Hint shown below the create PIN field when the user is confirming their new Signal PIN. -->
|
||||
<string name="PinCreationScreen__reenter_pin">Re-enter PIN</string>
|
||||
<string name="PinCreationScreen__reenter_pin">PIN кодын қайта енгізіңіз</string>
|
||||
|
||||
<!-- PIN entry screen title when registration lock is active. -->
|
||||
<string name="PinEntryScreen__registration_lock">Тіркеуді құлыптау</string>
|
||||
@@ -355,9 +355,9 @@
|
||||
<string name="PinEntryScreen__continue">Жалғастыру</string>
|
||||
|
||||
<!-- Title for the screen asking the user to grant the notification permission -->
|
||||
<string name="AllowNotificationsScreen__allow_notifications">Allow Notifications</string>
|
||||
<string name="AllowNotificationsScreen__allow_notifications">Хабарландыруларға рұқсат ету</string>
|
||||
<!-- Description for the screen asking the user to grant the notification permission -->
|
||||
<string name="AllowNotificationsScreen__signal_would_like_to_request_the_notification_permission">Signal would like to request the notification permission. This allows your device to display alerts when new messages arrive.</string>
|
||||
<string name="AllowNotificationsScreen__signal_would_like_to_request_the_notification_permission">Signal қолданбасы хабарландыру рұқсатын сұрайды. Бұл жаңа хабарлар келгенде құрылғыңызға ескертулерді көрсетуге мүмкіндік береді.</string>
|
||||
<!-- Button label that dismisses the notification permission request without granting it -->
|
||||
<string name="AllowNotificationsScreen__not_now">Кейін</string>
|
||||
<!-- Button label that proceeds with the notification permission request -->
|
||||
@@ -366,36 +366,36 @@
|
||||
<!-- Title shown while messages are syncing from the primary device -->
|
||||
<string name="MessageSyncScreen__syncing_messages">Хабарлар синхрондалып жатыр</string>
|
||||
<!-- Subtitle shown while messages are syncing from the primary device, indicating it may take a while -->
|
||||
<string name="MessageSyncScreen__this_may_take_a_few_minutes">This may take a few minutes…</string>
|
||||
<string name="MessageSyncScreen__this_may_take_a_few_minutes">Оған бірнеше минут кетуі мүмкін…</string>
|
||||
<!-- Progress label shown under the sync progress bar. %1$s is the amount downloaded so far (e.g. "1 MB"), %2$s is the total size to download (e.g. "3.2 MB") -->
|
||||
<string name="MessageSyncScreen__downloading_s_of_s">%1$s/%2$s жүктеп алынды</string>
|
||||
<!-- Informational notice in the sync screen footer, indicating the sync is end-to-end encrypted. Precedes a separate "Learn more" link. -->
|
||||
<string name="MessageSyncScreen__messages_and_chat_info_are_protected_by_e2ee">Messages and chat info are protected by end-to-end encryption, including the syncing process.</string>
|
||||
<string name="MessageSyncScreen__messages_and_chat_info_are_protected_by_e2ee">Хабарлар мен чат туралы ақпарат тура шифрлау әдісімен, соның ішінде синхрондау процесімен қорғалған.</string>
|
||||
<!-- Inline link in the sync screen footer that opens documentation about end-to-end encryption during sync -->
|
||||
<string name="MessageSyncScreen__learn_more">Толық ақпарат</string>
|
||||
<!-- Button label that cancels the in-progress message sync -->
|
||||
<string name="MessageSyncScreen__cancel">Бас тарту</string>
|
||||
|
||||
<!-- Title for the screen that shows a QR code the user scans with their existing primary device to link this device as a secondary -->
|
||||
<string name="LinkAccountScreen__scan_this_code_to_link_your_account">Scan this code to link your account</string>
|
||||
<string name="LinkAccountScreen__scan_this_code_to_link_your_account">Аккаунтыңызды байланыстыру үшін осы кодты сканерлеңіз</string>
|
||||
<!-- Step in the link-account instructions: open Signal on the user\'s existing phone -->
|
||||
<string name="LinkAccountScreen__open_signal_on_your_phone">Телефоныңызда Signal қолданбасын ашыңыз</string>
|
||||
<!-- Step in the link-account instructions: tap profile picture to open Signal Settings -->
|
||||
<string name="LinkAccountScreen__tap_your_profile_picture_to_open_signal_settings">Tap your profile picture to open Signal Settings</string>
|
||||
<string name="LinkAccountScreen__tap_your_profile_picture_to_open_signal_settings">Signal параметрлерін ашу үшін профиль суретін түртіңіз</string>
|
||||
<!-- Step in the link-account instructions: navigate to the Linked devices section and tap Link new device. The quoted strings should match the button/menu labels in the primary device\'s settings. -->
|
||||
<string name="LinkAccountScreen__tap_linked_devices_and_link_new_device">Tap \"Linked devices\" and \"Link new device\"</string>
|
||||
<string name="LinkAccountScreen__tap_linked_devices_and_link_new_device">\"Байланыстырылған құрылғылар\" және \"Жаңа құрылғыны байланыстыру\" түймесін түртіңіз</string>
|
||||
<!-- Step in the link-account instructions: aim the primary device\'s camera at the QR code displayed on this screen -->
|
||||
<string name="LinkAccountScreen__position_the_camera_over_this_qr_code">Position the camera over this qr code</string>
|
||||
<string name="LinkAccountScreen__position_the_camera_over_this_qr_code">Камераны осы QR кодына бағыттаңыз</string>
|
||||
<!-- Button label opening help content for users who can\'t complete the link-account steps -->
|
||||
<string name="LinkAccountScreen__get_help_with_these_steps">Get help with these steps</string>
|
||||
<string name="LinkAccountScreen__get_help_with_these_steps">Осы қадамдарға қатысты көмек алыңыз</string>
|
||||
<!-- Accessibility content description for the button that enlarges the QR code to full screen -->
|
||||
<string name="LinkAccountScreen__maximize_qr_code">Maximize QR Code</string>
|
||||
<string name="LinkAccountScreen__maximize_qr_code">QR кодын ұлғайту</string>
|
||||
<!-- Label shown in place of the QR code after the primary device has successfully scanned it -->
|
||||
<string name="LinkAccountScreen__scanned">Scanned</string>
|
||||
<string name="LinkAccountScreen__scanned">Сканерленді</string>
|
||||
<!-- Error label shown in place of the QR code if it could not be generated -->
|
||||
<string name="LinkAccountScreen__failed_to_generate_code">Failed to generate code</string>
|
||||
<string name="LinkAccountScreen__failed_to_generate_code">Код жасалмады</string>
|
||||
<!-- Footer prompt asking the user if they have another device with Signal. Precedes a separate "Create account" link. -->
|
||||
<string name="LinkAccountScreen__dont_have_signal_on_another_device">Don\'t have Signal on another device?</string>
|
||||
<string name="LinkAccountScreen__dont_have_signal_on_another_device">Екінші құрылғыда Signal қолданбасы орнатылмаған ба?</string>
|
||||
<!-- Inline link in the link-account screen footer that takes the user to the new-account creation flow instead of linking -->
|
||||
<string name="LinkAccountScreen__create_account">Аккаунт жасау</string>
|
||||
</resources>
|
||||
|
||||
@@ -313,9 +313,9 @@
|
||||
<!-- PIN creation screen title. -->
|
||||
<string name="PinCreationScreen__create_your_pin">បង្កើតលេខកូដសម្ងាត់របស់អ្នក</string>
|
||||
<!-- PIN creation screen title when confirming the new Signal PIN. -->
|
||||
<string name="PinCreationScreen__confirm_your_pin">Confirm your PIN</string>
|
||||
<string name="PinCreationScreen__confirm_your_pin">បញ្ជាក់លេខកូដសម្ងាត់របស់អ្នក</string>
|
||||
<!-- Describes how to confirm the new Signal PIN. -->
|
||||
<string name="PinCreationScreen__reenter_pin_description">Re-enter the PIN you just created</string>
|
||||
<string name="PinCreationScreen__reenter_pin_description">បញ្ចូលឡើងវិញនូវលេខកូដសម្ងាត់ដែលអ្នកទើបតែបង្កើត</string>
|
||||
<!-- Describes the purpose of creating a Signal PIN. -->
|
||||
<string name="PinCreationScreen__pins_can_help">លេខកូដសម្ងាត់អាចជួយអ្នកស្ដារគណនីរបស់អ្នកមកវិញ ប្រសិនបើអ្នកបាត់ទូរសព្ទ។ </string>
|
||||
<!-- Labels the button to learn more about Signal PINs. -->
|
||||
@@ -327,11 +327,11 @@
|
||||
<!-- Labels the button to submit a new Signal PIN. -->
|
||||
<string name="PinCreationScreen__next">បន្ទាប់</string>
|
||||
<!-- Hint shown below the create PIN field when numeric keyboard is active. -->
|
||||
<string name="PinCreationScreen__pin_at_least_4_digits">PIN must be at least 4 digits</string>
|
||||
<string name="PinCreationScreen__pin_at_least_4_digits">លេខកូដសម្ងាត់ត្រូវតែមានយ៉ាងហោចណាស់ 4 ខ្ទង់</string>
|
||||
<!-- Hint shown below the create PIN field when alphanumeric keyboard is active. -->
|
||||
<string name="PinCreationScreen__pin_at_least_4_characters">PIN must be at least 4 characters</string>
|
||||
<string name="PinCreationScreen__pin_at_least_4_characters">លេខកូដសម្ងាត់ត្រូវតែមានយ៉ាងហោចណាស់ 4 តួអក្សរ</string>
|
||||
<!-- Hint shown below the create PIN field when the user is confirming their new Signal PIN. -->
|
||||
<string name="PinCreationScreen__reenter_pin">Re-enter PIN</string>
|
||||
<string name="PinCreationScreen__reenter_pin">បញ្ចូលលេខកូដសម្ងាត់ឡើងវិញ</string>
|
||||
|
||||
<!-- PIN entry screen title when registration lock is active. -->
|
||||
<string name="PinEntryScreen__registration_lock">ការចាក់សោការចុះឈ្មោះ</string>
|
||||
@@ -341,7 +341,7 @@
|
||||
<string name="PinEntryScreen__enter_the_pin_you_created">បញ្ចូលលេខកូដសម្ងាត់ដែលអ្នកបានបង្កើតនៅពេលអ្នកដំឡើង Signal ដំបូង</string>
|
||||
<!-- Error shown when an incorrect PIN is entered. %1$d is the number of attempts remaining. -->
|
||||
<plurals name="PinEntryScreen__incorrect_pin">
|
||||
<item quantity="other">លេខកូដ PIN មិនត្រឹមត្រូវ។ ការព្យាយាមនៅសល់ %1$d ។</item>
|
||||
<item quantity="other">លេខកូដសម្ងាត់មិនត្រឹមត្រូវ។ អាចព្យាយាមបាន %1$d ដងទៀត។</item>
|
||||
</plurals>
|
||||
<!-- Labels the button to get help with PIN entry. -->
|
||||
<string name="PinEntryScreen__need_help">ត្រូវការជំនួយ?</string>
|
||||
@@ -353,9 +353,9 @@
|
||||
<string name="PinEntryScreen__continue">បន្ត</string>
|
||||
|
||||
<!-- Title for the screen asking the user to grant the notification permission -->
|
||||
<string name="AllowNotificationsScreen__allow_notifications">Allow Notifications</string>
|
||||
<string name="AllowNotificationsScreen__allow_notifications">អនុញ្ញាតការជូនដំណឹង</string>
|
||||
<!-- Description for the screen asking the user to grant the notification permission -->
|
||||
<string name="AllowNotificationsScreen__signal_would_like_to_request_the_notification_permission">Signal would like to request the notification permission. This allows your device to display alerts when new messages arrive.</string>
|
||||
<string name="AllowNotificationsScreen__signal_would_like_to_request_the_notification_permission">Signal ចង់ស្នើសុំការអនុញ្ញាតផ្តល់ការជូនដំណឹង។ ការធ្វើបែបនេះអនុញ្ញាតឱ្យឧបករណ៍របស់អ្នកបង្ហាញការជូនដំណឹងនៅពេលដែលសារថ្មីមកដល់។</string>
|
||||
<!-- Button label that dismisses the notification permission request without granting it -->
|
||||
<string name="AllowNotificationsScreen__not_now">ឥឡូវកុំទាន់</string>
|
||||
<!-- Button label that proceeds with the notification permission request -->
|
||||
@@ -364,36 +364,36 @@
|
||||
<!-- Title shown while messages are syncing from the primary device -->
|
||||
<string name="MessageSyncScreen__syncing_messages">ធ្វើសមកាលកម្មសារ</string>
|
||||
<!-- Subtitle shown while messages are syncing from the primary device, indicating it may take a while -->
|
||||
<string name="MessageSyncScreen__this_may_take_a_few_minutes">This may take a few minutes…</string>
|
||||
<string name="MessageSyncScreen__this_may_take_a_few_minutes">វាអាចនឹងចំណាយពេលពីរបីនាទី…</string>
|
||||
<!-- Progress label shown under the sync progress bar. %1$s is the amount downloaded so far (e.g. "1 MB"), %2$s is the total size to download (e.g. "3.2 MB") -->
|
||||
<string name="MessageSyncScreen__downloading_s_of_s">កំពុងទាញយក %1$s លើ %2$s</string>
|
||||
<!-- Informational notice in the sync screen footer, indicating the sync is end-to-end encrypted. Precedes a separate "Learn more" link. -->
|
||||
<string name="MessageSyncScreen__messages_and_chat_info_are_protected_by_e2ee">Messages and chat info are protected by end-to-end encryption, including the syncing process.</string>
|
||||
<string name="MessageSyncScreen__messages_and_chat_info_are_protected_by_e2ee">សារ និងព័ត៌មានជជែកត្រូវបានការពារដោយការអ៊ីនគ្រីបទាំងសងខាង រាប់បញ្ចូលទាំងដំណើរការធ្វើសមកាលកម្មផងដែរ។</string>
|
||||
<!-- Inline link in the sync screen footer that opens documentation about end-to-end encryption during sync -->
|
||||
<string name="MessageSyncScreen__learn_more">ស្វែងយល់បន្ថែម</string>
|
||||
<!-- Button label that cancels the in-progress message sync -->
|
||||
<string name="MessageSyncScreen__cancel">បោះបង់</string>
|
||||
|
||||
<!-- Title for the screen that shows a QR code the user scans with their existing primary device to link this device as a secondary -->
|
||||
<string name="LinkAccountScreen__scan_this_code_to_link_your_account">Scan this code to link your account</string>
|
||||
<string name="LinkAccountScreen__scan_this_code_to_link_your_account">ស្គែនកូដនេះដើម្បីភ្ជាប់គណនីរបស់អ្នក</string>
|
||||
<!-- Step in the link-account instructions: open Signal on the user\'s existing phone -->
|
||||
<string name="LinkAccountScreen__open_signal_on_your_phone">បើក Signal នៅលើទូរសព្ទរបស់អ្នក</string>
|
||||
<!-- Step in the link-account instructions: tap profile picture to open Signal Settings -->
|
||||
<string name="LinkAccountScreen__tap_your_profile_picture_to_open_signal_settings">Tap your profile picture to open Signal Settings</string>
|
||||
<string name="LinkAccountScreen__tap_your_profile_picture_to_open_signal_settings">ចុចលើរូបភាពប្រូហ្វាល់របស់អ្នកដើម្បីបើកការកំណត់ Signal</string>
|
||||
<!-- Step in the link-account instructions: navigate to the Linked devices section and tap Link new device. The quoted strings should match the button/menu labels in the primary device\'s settings. -->
|
||||
<string name="LinkAccountScreen__tap_linked_devices_and_link_new_device">Tap \"Linked devices\" and \"Link new device\"</string>
|
||||
<string name="LinkAccountScreen__tap_linked_devices_and_link_new_device">ចុចលើ \"ឧបករណ៍ដែលបានភ្ជាប់\" និង \"ភ្ជាប់ឧបករណ៍ថ្មី\"</string>
|
||||
<!-- Step in the link-account instructions: aim the primary device\'s camera at the QR code displayed on this screen -->
|
||||
<string name="LinkAccountScreen__position_the_camera_over_this_qr_code">Position the camera over this qr code</string>
|
||||
<string name="LinkAccountScreen__position_the_camera_over_this_qr_code">ដាក់កាមេរ៉ាពីលើកូដ QR នេះ</string>
|
||||
<!-- Button label opening help content for users who can\'t complete the link-account steps -->
|
||||
<string name="LinkAccountScreen__get_help_with_these_steps">Get help with these steps</string>
|
||||
<string name="LinkAccountScreen__get_help_with_these_steps">ទទួលបានជំនួយតាមជំហានទាំងនេះ</string>
|
||||
<!-- Accessibility content description for the button that enlarges the QR code to full screen -->
|
||||
<string name="LinkAccountScreen__maximize_qr_code">Maximize QR Code</string>
|
||||
<string name="LinkAccountScreen__maximize_qr_code">បង្កើនប្រសិទ្ធភាពកូដ QR</string>
|
||||
<!-- Label shown in place of the QR code after the primary device has successfully scanned it -->
|
||||
<string name="LinkAccountScreen__scanned">Scanned</string>
|
||||
<string name="LinkAccountScreen__scanned">ស្គែនរួច</string>
|
||||
<!-- Error label shown in place of the QR code if it could not be generated -->
|
||||
<string name="LinkAccountScreen__failed_to_generate_code">Failed to generate code</string>
|
||||
<string name="LinkAccountScreen__failed_to_generate_code">មិនអាចបង្កើតកូដបានទេ</string>
|
||||
<!-- Footer prompt asking the user if they have another device with Signal. Precedes a separate "Create account" link. -->
|
||||
<string name="LinkAccountScreen__dont_have_signal_on_another_device">Don\'t have Signal on another device?</string>
|
||||
<string name="LinkAccountScreen__dont_have_signal_on_another_device">មិនមាន Signal នៅលើឧបករណ៍ផ្សេងទៀតទេ?</string>
|
||||
<!-- Inline link in the link-account screen footer that takes the user to the new-account creation flow instead of linking -->
|
||||
<string name="LinkAccountScreen__create_account">បង្កើតគណនី</string>
|
||||
</resources>
|
||||
|
||||
@@ -314,9 +314,9 @@
|
||||
<!-- PIN creation screen title. -->
|
||||
<string name="PinCreationScreen__create_your_pin">ನಿಮ್ಮ ಪಿನ್ ರಚಿಸಿ</string>
|
||||
<!-- PIN creation screen title when confirming the new Signal PIN. -->
|
||||
<string name="PinCreationScreen__confirm_your_pin">Confirm your PIN</string>
|
||||
<string name="PinCreationScreen__confirm_your_pin">ನಿಮ್ಮ PIN ಅನ್ನು ದೃಢಪಡಿಸಿ</string>
|
||||
<!-- Describes how to confirm the new Signal PIN. -->
|
||||
<string name="PinCreationScreen__reenter_pin_description">Re-enter the PIN you just created</string>
|
||||
<string name="PinCreationScreen__reenter_pin_description">ನೀವು ಈಗಷ್ಟೇ ರಚಿಸಿದ PIN ಅನ್ನು ಮರುನಮೂದಿಸಿ</string>
|
||||
<!-- Describes the purpose of creating a Signal PIN. -->
|
||||
<string name="PinCreationScreen__pins_can_help">ನಿಮ್ಮ ಫೋನ್ ಅನ್ನು ನೀವು ಕಳೆದುಕೊಂಡರೆ ನಿಮ್ಮ ಖಾತೆಯನ್ನು ರಿಸ್ಟೋರ್ ಮಾಡಲು PIN ಗಳು ನಿಮಗೆ ಸಹಾಯ ಮಾಡಬಹುದು. </string>
|
||||
<!-- Labels the button to learn more about Signal PINs. -->
|
||||
@@ -328,11 +328,11 @@
|
||||
<!-- Labels the button to submit a new Signal PIN. -->
|
||||
<string name="PinCreationScreen__next">ಮುಂದೆ</string>
|
||||
<!-- Hint shown below the create PIN field when numeric keyboard is active. -->
|
||||
<string name="PinCreationScreen__pin_at_least_4_digits">PIN must be at least 4 digits</string>
|
||||
<string name="PinCreationScreen__pin_at_least_4_digits">PIN ಕನಿಷ್ಠ 4 ಅಂಕಿಗಳನ್ನು ಹೊಂದಿರಬೇಕು</string>
|
||||
<!-- Hint shown below the create PIN field when alphanumeric keyboard is active. -->
|
||||
<string name="PinCreationScreen__pin_at_least_4_characters">PIN must be at least 4 characters</string>
|
||||
<string name="PinCreationScreen__pin_at_least_4_characters">PIN ಕನಿಷ್ಠ 4 ಅಕ್ಷರಗಳನ್ನು ಹೊಂದಿರಬೇಕು</string>
|
||||
<!-- Hint shown below the create PIN field when the user is confirming their new Signal PIN. -->
|
||||
<string name="PinCreationScreen__reenter_pin">Re-enter PIN</string>
|
||||
<string name="PinCreationScreen__reenter_pin">PIN ಅನ್ನು ಮರುನಮೂದಿಸಿ</string>
|
||||
|
||||
<!-- PIN entry screen title when registration lock is active. -->
|
||||
<string name="PinEntryScreen__registration_lock">ನೋಂದಣಿ ಲಾಕ್</string>
|
||||
@@ -355,9 +355,9 @@
|
||||
<string name="PinEntryScreen__continue">ಮುಂದುವರಿಸಿ</string>
|
||||
|
||||
<!-- Title for the screen asking the user to grant the notification permission -->
|
||||
<string name="AllowNotificationsScreen__allow_notifications">Allow Notifications</string>
|
||||
<string name="AllowNotificationsScreen__allow_notifications">ಅಧಿಸೂಚನೆಗಳನ್ನು ಅನುಮತಿಸಿ</string>
|
||||
<!-- Description for the screen asking the user to grant the notification permission -->
|
||||
<string name="AllowNotificationsScreen__signal_would_like_to_request_the_notification_permission">Signal would like to request the notification permission. This allows your device to display alerts when new messages arrive.</string>
|
||||
<string name="AllowNotificationsScreen__signal_would_like_to_request_the_notification_permission">ಅಧಿಸೂಚನೆ ಅನುಮತಿಯನ್ನು ವಿನಂತಿಸಲು Signal ಬಯಸುತ್ತದೆ. ಹೊಸ ಮೆಸೇಜ್ಗಳು ಬಂದಾಗ ನಿಮ್ಮ ಸಾಧನದಲ್ಲಿ ಅಲರ್ಟ್ಗಳನ್ನು ಪ್ರದರ್ಶಿಸಲು ಇದು ಅನುಮತಿಸುತ್ತದೆ.</string>
|
||||
<!-- Button label that dismisses the notification permission request without granting it -->
|
||||
<string name="AllowNotificationsScreen__not_now">ಈಗಲ್ಲ</string>
|
||||
<!-- Button label that proceeds with the notification permission request -->
|
||||
@@ -366,36 +366,36 @@
|
||||
<!-- Title shown while messages are syncing from the primary device -->
|
||||
<string name="MessageSyncScreen__syncing_messages">ಮೆಸೇಜ್ಗಳನ್ನು ಸಿಂಕ್ ಮಾಡಲಾಗುತ್ತಿದೆ</string>
|
||||
<!-- Subtitle shown while messages are syncing from the primary device, indicating it may take a while -->
|
||||
<string name="MessageSyncScreen__this_may_take_a_few_minutes">This may take a few minutes…</string>
|
||||
<string name="MessageSyncScreen__this_may_take_a_few_minutes">ಇದು ಕೆಲವು ನಿಮಿಷಗಳನ್ನು ತೆಗೆದುಕೊಳ್ಳಬಹುದು…</string>
|
||||
<!-- Progress label shown under the sync progress bar. %1$s is the amount downloaded so far (e.g. "1 MB"), %2$s is the total size to download (e.g. "3.2 MB") -->
|
||||
<string name="MessageSyncScreen__downloading_s_of_s">%2$sರಲ್ಲಿ %1$s ಡೌನ್ಲೋಡ್ ಮಾಡಲಾಗುತ್ತಿದೆ</string>
|
||||
<!-- Informational notice in the sync screen footer, indicating the sync is end-to-end encrypted. Precedes a separate "Learn more" link. -->
|
||||
<string name="MessageSyncScreen__messages_and_chat_info_are_protected_by_e2ee">Messages and chat info are protected by end-to-end encryption, including the syncing process.</string>
|
||||
<string name="MessageSyncScreen__messages_and_chat_info_are_protected_by_e2ee">ಸಿಂಕ್ ಮಾಡುವ ಪ್ರಕ್ರಿಯೆಯೂ ಸೇರಿದಂತೆ, ಮೆಸೇಜ್ಗಳು ಮತ್ತು ಚಾಟ್ ಮಾಹಿತಿಯನ್ನು ಎಂಡ್-ಟು-ಎಂಡ್ ಎನ್ಕ್ರಿಪ್ಶನ್ ಮೂಲಕ ರಕ್ಷಿಸಲಾಗಿದೆ.</string>
|
||||
<!-- Inline link in the sync screen footer that opens documentation about end-to-end encryption during sync -->
|
||||
<string name="MessageSyncScreen__learn_more">ಇನ್ನಷ್ಟು ತಿಳಿಯಿರಿ</string>
|
||||
<!-- Button label that cancels the in-progress message sync -->
|
||||
<string name="MessageSyncScreen__cancel">ರದ್ದುಮಾಡಿ</string>
|
||||
|
||||
<!-- Title for the screen that shows a QR code the user scans with their existing primary device to link this device as a secondary -->
|
||||
<string name="LinkAccountScreen__scan_this_code_to_link_your_account">Scan this code to link your account</string>
|
||||
<string name="LinkAccountScreen__scan_this_code_to_link_your_account">ನಿಮ್ಮ ಖಾತೆಯನ್ನು ಲಿಂಕ್ ಮಾಡಲು ಈ ಕೋಡ್ ಸ್ಕ್ಯಾನ್ ಮಾಡಿ</string>
|
||||
<!-- Step in the link-account instructions: open Signal on the user\'s existing phone -->
|
||||
<string name="LinkAccountScreen__open_signal_on_your_phone">ನಿಮ್ಮ ಫೋನ್ನಲ್ಲಿ Signal ತೆರೆಯಿರಿ</string>
|
||||
<!-- Step in the link-account instructions: tap profile picture to open Signal Settings -->
|
||||
<string name="LinkAccountScreen__tap_your_profile_picture_to_open_signal_settings">Tap your profile picture to open Signal Settings</string>
|
||||
<string name="LinkAccountScreen__tap_your_profile_picture_to_open_signal_settings">Signal ಸೆಟ್ಟಿಂಗ್ಗಳನ್ನು ತೆರೆಯಲು ನಿಮ್ಮ ಪ್ರೊಫೈಲ್ ಚಿತ್ರವನ್ನು ಟ್ಯಾಪ್ ಮಾಡಿ</string>
|
||||
<!-- Step in the link-account instructions: navigate to the Linked devices section and tap Link new device. The quoted strings should match the button/menu labels in the primary device\'s settings. -->
|
||||
<string name="LinkAccountScreen__tap_linked_devices_and_link_new_device">Tap \"Linked devices\" and \"Link new device\"</string>
|
||||
<string name="LinkAccountScreen__tap_linked_devices_and_link_new_device">\"ಲಿಂಕ್ ಮಾಡಲಾದ ಸಾಧನಗಳು\" ಮತ್ತು \"ಹೊಸ ಸಾಧನವನ್ನು ಲಿಂಕ್ ಮಾಡಿ\" ಎಂಬುದನ್ನು ಟ್ಯಾಪ್ ಮಾಡಿ</string>
|
||||
<!-- Step in the link-account instructions: aim the primary device\'s camera at the QR code displayed on this screen -->
|
||||
<string name="LinkAccountScreen__position_the_camera_over_this_qr_code">Position the camera over this qr code</string>
|
||||
<string name="LinkAccountScreen__position_the_camera_over_this_qr_code">ಈ qr ಕೋಡ್ ಮೇಲೆ ಕ್ಯಾಮರಾ ಇರಿಸಿ</string>
|
||||
<!-- Button label opening help content for users who can\'t complete the link-account steps -->
|
||||
<string name="LinkAccountScreen__get_help_with_these_steps">Get help with these steps</string>
|
||||
<string name="LinkAccountScreen__get_help_with_these_steps">ಈ ಹಂತಗಳಿಗೆ ಸಂಬಂಧಿಸಿದಂತೆ ಸಹಾಯ ಪಡೆಯಿರಿ</string>
|
||||
<!-- Accessibility content description for the button that enlarges the QR code to full screen -->
|
||||
<string name="LinkAccountScreen__maximize_qr_code">Maximize QR Code</string>
|
||||
<string name="LinkAccountScreen__maximize_qr_code">QR ಕೋಡ್ ಹಿಗ್ಗಿಸಿ</string>
|
||||
<!-- Label shown in place of the QR code after the primary device has successfully scanned it -->
|
||||
<string name="LinkAccountScreen__scanned">Scanned</string>
|
||||
<string name="LinkAccountScreen__scanned">ಸ್ಕ್ಯಾನ್ ಮಾಡಲಾಗಿದೆ</string>
|
||||
<!-- Error label shown in place of the QR code if it could not be generated -->
|
||||
<string name="LinkAccountScreen__failed_to_generate_code">Failed to generate code</string>
|
||||
<string name="LinkAccountScreen__failed_to_generate_code">ಕೋಡ್ ಜನರೇಟ್ ಮಾಡಲು ವಿಫಲವಾಗಿದೆ</string>
|
||||
<!-- Footer prompt asking the user if they have another device with Signal. Precedes a separate "Create account" link. -->
|
||||
<string name="LinkAccountScreen__dont_have_signal_on_another_device">Don\'t have Signal on another device?</string>
|
||||
<string name="LinkAccountScreen__dont_have_signal_on_another_device">ಬೇರೆ ಸಾಧನದಲ್ಲಿ Signal ಅನ್ನು ಹೊಂದಿಲ್ಲವೇ?</string>
|
||||
<!-- Inline link in the link-account screen footer that takes the user to the new-account creation flow instead of linking -->
|
||||
<string name="LinkAccountScreen__create_account">ಖಾತೆಯನ್ನು ರಚಿಸಿ</string>
|
||||
</resources>
|
||||
|
||||
@@ -315,7 +315,7 @@
|
||||
<!-- PIN creation screen title when confirming the new Signal PIN. -->
|
||||
<string name="PinCreationScreen__confirm_your_pin">PIN 확인</string>
|
||||
<!-- Describes how to confirm the new Signal PIN. -->
|
||||
<string name="PinCreationScreen__reenter_pin_description">Re-enter the PIN you just created</string>
|
||||
<string name="PinCreationScreen__reenter_pin_description">방금 생성한 PIN을 다시 입력하세요.</string>
|
||||
<!-- Describes the purpose of creating a Signal PIN. -->
|
||||
<string name="PinCreationScreen__pins_can_help">PIN을 설정해 두면 휴대폰을 분실했을 때 계정을 복구할 수 있습니다. </string>
|
||||
<!-- Labels the button to learn more about Signal PINs. -->
|
||||
@@ -355,7 +355,7 @@
|
||||
<!-- Title for the screen asking the user to grant the notification permission -->
|
||||
<string name="AllowNotificationsScreen__allow_notifications">알림 허용</string>
|
||||
<!-- Description for the screen asking the user to grant the notification permission -->
|
||||
<string name="AllowNotificationsScreen__signal_would_like_to_request_the_notification_permission">Signal would like to request the notification permission. This allows your device to display alerts when new messages arrive.</string>
|
||||
<string name="AllowNotificationsScreen__signal_would_like_to_request_the_notification_permission">Signal에서 알림 사용 권한을 요청합니다. 이 권한을 허용하면 새 메시지를 수신할 때 기기에서 알림을 표시할 수 있습니다.</string>
|
||||
<!-- Button label that dismisses the notification permission request without granting it -->
|
||||
<string name="AllowNotificationsScreen__not_now">나중에</string>
|
||||
<!-- Button label that proceeds with the notification permission request -->
|
||||
@@ -364,36 +364,36 @@
|
||||
<!-- Title shown while messages are syncing from the primary device -->
|
||||
<string name="MessageSyncScreen__syncing_messages">메시지를 동기화하는 중</string>
|
||||
<!-- Subtitle shown while messages are syncing from the primary device, indicating it may take a while -->
|
||||
<string name="MessageSyncScreen__this_may_take_a_few_minutes">This may take a few minutes…</string>
|
||||
<string name="MessageSyncScreen__this_may_take_a_few_minutes">몇 분 정도 소요될 수 있습니다.</string>
|
||||
<!-- Progress label shown under the sync progress bar. %1$s is the amount downloaded so far (e.g. "1 MB"), %2$s is the total size to download (e.g. "3.2 MB") -->
|
||||
<string name="MessageSyncScreen__downloading_s_of_s">%1$s/%2$s 다운로드 중</string>
|
||||
<!-- Informational notice in the sync screen footer, indicating the sync is end-to-end encrypted. Precedes a separate "Learn more" link. -->
|
||||
<string name="MessageSyncScreen__messages_and_chat_info_are_protected_by_e2ee">Messages and chat info are protected by end-to-end encryption, including the syncing process.</string>
|
||||
<string name="MessageSyncScreen__messages_and_chat_info_are_protected_by_e2ee">동기화 프로세스를 비롯하여 메시지와 대화 정보는 종단간 암호화로 보호됩니다.</string>
|
||||
<!-- Inline link in the sync screen footer that opens documentation about end-to-end encryption during sync -->
|
||||
<string name="MessageSyncScreen__learn_more">자세히 알아보기</string>
|
||||
<!-- Button label that cancels the in-progress message sync -->
|
||||
<string name="MessageSyncScreen__cancel">취소</string>
|
||||
|
||||
<!-- Title for the screen that shows a QR code the user scans with their existing primary device to link this device as a secondary -->
|
||||
<string name="LinkAccountScreen__scan_this_code_to_link_your_account">Scan this code to link your account</string>
|
||||
<string name="LinkAccountScreen__scan_this_code_to_link_your_account">이 코드를 스캔하여 계정을 연결하세요</string>
|
||||
<!-- Step in the link-account instructions: open Signal on the user\'s existing phone -->
|
||||
<string name="LinkAccountScreen__open_signal_on_your_phone">휴대전화에서 Signal을 열어주세요</string>
|
||||
<string name="LinkAccountScreen__open_signal_on_your_phone">휴대전화에서 Signal을 엽니다.</string>
|
||||
<!-- Step in the link-account instructions: tap profile picture to open Signal Settings -->
|
||||
<string name="LinkAccountScreen__tap_your_profile_picture_to_open_signal_settings">Tap your profile picture to open Signal Settings</string>
|
||||
<string name="LinkAccountScreen__tap_your_profile_picture_to_open_signal_settings">프로필 사진을 탭하여 Signal 설정을 엽니다.</string>
|
||||
<!-- Step in the link-account instructions: navigate to the Linked devices section and tap Link new device. The quoted strings should match the button/menu labels in the primary device\'s settings. -->
|
||||
<string name="LinkAccountScreen__tap_linked_devices_and_link_new_device">Tap \"Linked devices\" and \"Link new device\"</string>
|
||||
<string name="LinkAccountScreen__tap_linked_devices_and_link_new_device">\'연결된 기기\'와 \'새 기기 연결\'을 차례로 탭합니다.</string>
|
||||
<!-- Step in the link-account instructions: aim the primary device\'s camera at the QR code displayed on this screen -->
|
||||
<string name="LinkAccountScreen__position_the_camera_over_this_qr_code">Position the camera over this qr code</string>
|
||||
<string name="LinkAccountScreen__position_the_camera_over_this_qr_code">카메라로 이 QR 코드를 스캔합니다.</string>
|
||||
<!-- Button label opening help content for users who can\'t complete the link-account steps -->
|
||||
<string name="LinkAccountScreen__get_help_with_these_steps">Get help with these steps</string>
|
||||
<string name="LinkAccountScreen__get_help_with_these_steps">도움이 필요하신가요?</string>
|
||||
<!-- Accessibility content description for the button that enlarges the QR code to full screen -->
|
||||
<string name="LinkAccountScreen__maximize_qr_code">Maximize QR Code</string>
|
||||
<string name="LinkAccountScreen__maximize_qr_code">QR 코드 크게 보기</string>
|
||||
<!-- Label shown in place of the QR code after the primary device has successfully scanned it -->
|
||||
<string name="LinkAccountScreen__scanned">Scanned</string>
|
||||
<string name="LinkAccountScreen__scanned">스캔 완료</string>
|
||||
<!-- Error label shown in place of the QR code if it could not be generated -->
|
||||
<string name="LinkAccountScreen__failed_to_generate_code">Failed to generate code</string>
|
||||
<string name="LinkAccountScreen__failed_to_generate_code">코드 생성 실패</string>
|
||||
<!-- Footer prompt asking the user if they have another device with Signal. Precedes a separate "Create account" link. -->
|
||||
<string name="LinkAccountScreen__dont_have_signal_on_another_device">Don\'t have Signal on another device?</string>
|
||||
<string name="LinkAccountScreen__dont_have_signal_on_another_device">다른 기기에 Signal이 설치되어 있지 않나요?</string>
|
||||
<!-- Inline link in the link-account screen footer that takes the user to the new-account creation flow instead of linking -->
|
||||
<string name="LinkAccountScreen__create_account">여기서 계정을 생성하세요</string>
|
||||
</resources>
|
||||
|
||||
@@ -314,9 +314,9 @@
|
||||
<!-- PIN creation screen title. -->
|
||||
<string name="PinCreationScreen__create_your_pin">PIN код түзүңүз</string>
|
||||
<!-- PIN creation screen title when confirming the new Signal PIN. -->
|
||||
<string name="PinCreationScreen__confirm_your_pin">Confirm your PIN</string>
|
||||
<string name="PinCreationScreen__confirm_your_pin">PIN кодуңузду ырастаңыз</string>
|
||||
<!-- Describes how to confirm the new Signal PIN. -->
|
||||
<string name="PinCreationScreen__reenter_pin_description">Re-enter the PIN you just created</string>
|
||||
<string name="PinCreationScreen__reenter_pin_description">Жаңы түзүлгөн PIN кодду кайра киргизиңиз</string>
|
||||
<!-- Describes the purpose of creating a Signal PIN. -->
|
||||
<string name="PinCreationScreen__pins_can_help">Телефонуңузду жоготуп алсаңыз, PIN коддор менен аккаунтуңузду калыбына келтире аласыз. </string>
|
||||
<!-- Labels the button to learn more about Signal PINs. -->
|
||||
@@ -328,11 +328,11 @@
|
||||
<!-- Labels the button to submit a new Signal PIN. -->
|
||||
<string name="PinCreationScreen__next">Кийинки</string>
|
||||
<!-- Hint shown below the create PIN field when numeric keyboard is active. -->
|
||||
<string name="PinCreationScreen__pin_at_least_4_digits">PIN must be at least 4 digits</string>
|
||||
<string name="PinCreationScreen__pin_at_least_4_digits">PIN код кеминде 4 сандан турушу керек</string>
|
||||
<!-- Hint shown below the create PIN field when alphanumeric keyboard is active. -->
|
||||
<string name="PinCreationScreen__pin_at_least_4_characters">PIN must be at least 4 characters</string>
|
||||
<string name="PinCreationScreen__pin_at_least_4_characters">PIN код кеминде 4 белгиден турушу керек</string>
|
||||
<!-- Hint shown below the create PIN field when the user is confirming their new Signal PIN. -->
|
||||
<string name="PinCreationScreen__reenter_pin">Re-enter PIN</string>
|
||||
<string name="PinCreationScreen__reenter_pin">PIN кодду кайра киргизүү</string>
|
||||
|
||||
<!-- PIN entry screen title when registration lock is active. -->
|
||||
<string name="PinEntryScreen__registration_lock">Катталууну Кулпулоо</string>
|
||||
@@ -342,8 +342,8 @@
|
||||
<string name="PinEntryScreen__enter_the_pin_you_created">Signal\'ды орноткондон кийин өзүңүз түзгөн PIN кодду киргизиңиз</string>
|
||||
<!-- Error shown when an incorrect PIN is entered. %1$d is the number of attempts remaining. -->
|
||||
<plurals name="PinEntryScreen__incorrect_pin">
|
||||
<item quantity="one">Incorrect PIN. %1$d attempt remaining.</item>
|
||||
<item quantity="other">Incorrect PIN. %1$d attempts remaining.</item>
|
||||
<item quantity="one">Туура эмес PIN-код. %1$d аракет калды.</item>
|
||||
<item quantity="other">Туура эмес PIN-код. %1$d аракет калды.</item>
|
||||
</plurals>
|
||||
<!-- Labels the button to get help with PIN entry. -->
|
||||
<string name="PinEntryScreen__need_help">Жардам керекпи?</string>
|
||||
@@ -355,9 +355,9 @@
|
||||
<string name="PinEntryScreen__continue">Улантуу</string>
|
||||
|
||||
<!-- Title for the screen asking the user to grant the notification permission -->
|
||||
<string name="AllowNotificationsScreen__allow_notifications">Allow Notifications</string>
|
||||
<string name="AllowNotificationsScreen__allow_notifications">Билдирмелерге уруксат бериңиз</string>
|
||||
<!-- Description for the screen asking the user to grant the notification permission -->
|
||||
<string name="AllowNotificationsScreen__signal_would_like_to_request_the_notification_permission">Signal would like to request the notification permission. This allows your device to display alerts when new messages arrive.</string>
|
||||
<string name="AllowNotificationsScreen__signal_would_like_to_request_the_notification_permission">Signal билдирмелерди көрсөтүп турганга уруксат сурап жатат. Уруксат берсеңиз, түзмөгүңүз жаңы билдирүүлөр келген сайын сизге кабарлап турат.</string>
|
||||
<!-- Button label that dismisses the notification permission request without granting it -->
|
||||
<string name="AllowNotificationsScreen__not_now">Азыр эмес</string>
|
||||
<!-- Button label that proceeds with the notification permission request -->
|
||||
@@ -366,36 +366,36 @@
|
||||
<!-- Title shown while messages are syncing from the primary device -->
|
||||
<string name="MessageSyncScreen__syncing_messages">Билдирүүлөр шайкештирилүүдө</string>
|
||||
<!-- Subtitle shown while messages are syncing from the primary device, indicating it may take a while -->
|
||||
<string name="MessageSyncScreen__this_may_take_a_few_minutes">This may take a few minutes…</string>
|
||||
<string name="MessageSyncScreen__this_may_take_a_few_minutes">Бир аз убакыт кетиши мүмкүн…</string>
|
||||
<!-- Progress label shown under the sync progress bar. %1$s is the amount downloaded so far (e.g. "1 MB"), %2$s is the total size to download (e.g. "3.2 MB") -->
|
||||
<string name="MessageSyncScreen__downloading_s_of_s">%2$s ичинен %1$s жүктөлүүдө</string>
|
||||
<!-- Informational notice in the sync screen footer, indicating the sync is end-to-end encrypted. Precedes a separate "Learn more" link. -->
|
||||
<string name="MessageSyncScreen__messages_and_chat_info_are_protected_by_e2ee">Messages and chat info are protected by end-to-end encryption, including the syncing process.</string>
|
||||
<string name="MessageSyncScreen__messages_and_chat_info_are_protected_by_e2ee">Билдирүүлөр жана маектеги нерселер, ошондой эле шайкештирүү процесси баштан аяк шифрленип корголот.</string>
|
||||
<!-- Inline link in the sync screen footer that opens documentation about end-to-end encryption during sync -->
|
||||
<string name="MessageSyncScreen__learn_more">Кененирээк маалымат</string>
|
||||
<!-- Button label that cancels the in-progress message sync -->
|
||||
<string name="MessageSyncScreen__cancel">Жок</string>
|
||||
|
||||
<!-- Title for the screen that shows a QR code the user scans with their existing primary device to link this device as a secondary -->
|
||||
<string name="LinkAccountScreen__scan_this_code_to_link_your_account">Scan this code to link your account</string>
|
||||
<string name="LinkAccountScreen__scan_this_code_to_link_your_account">Аккаунтуңузду байлоо үчүн ушул кодду скандаңыз</string>
|
||||
<!-- Step in the link-account instructions: open Signal on the user\'s existing phone -->
|
||||
<string name="LinkAccountScreen__open_signal_on_your_phone">Телефонуңузда Signal\'ды ачыңыз</string>
|
||||
<!-- Step in the link-account instructions: tap profile picture to open Signal Settings -->
|
||||
<string name="LinkAccountScreen__tap_your_profile_picture_to_open_signal_settings">Tap your profile picture to open Signal Settings</string>
|
||||
<string name="LinkAccountScreen__tap_your_profile_picture_to_open_signal_settings">Signal параметрлерин ачуу үчүн профилиңиздин сүрөтүн басыңыз</string>
|
||||
<!-- Step in the link-account instructions: navigate to the Linked devices section and tap Link new device. The quoted strings should match the button/menu labels in the primary device\'s settings. -->
|
||||
<string name="LinkAccountScreen__tap_linked_devices_and_link_new_device">Tap \"Linked devices\" and \"Link new device\"</string>
|
||||
<string name="LinkAccountScreen__tap_linked_devices_and_link_new_device">\"Байланышкан түзмөктөр\" жана \"Жаңы түзмөктү байланыштыруу\" дегенди басыңыз</string>
|
||||
<!-- Step in the link-account instructions: aim the primary device\'s camera at the QR code displayed on this screen -->
|
||||
<string name="LinkAccountScreen__position_the_camera_over_this_qr_code">Position the camera over this qr code</string>
|
||||
<string name="LinkAccountScreen__position_the_camera_over_this_qr_code">Камераны QR кодго алып келиңиз</string>
|
||||
<!-- Button label opening help content for users who can\'t complete the link-account steps -->
|
||||
<string name="LinkAccountScreen__get_help_with_these_steps">Get help with these steps</string>
|
||||
<string name="LinkAccountScreen__get_help_with_these_steps">Ушул кадамдар аркылуу жардам алыңыз</string>
|
||||
<!-- Accessibility content description for the button that enlarges the QR code to full screen -->
|
||||
<string name="LinkAccountScreen__maximize_qr_code">Maximize QR Code</string>
|
||||
<string name="LinkAccountScreen__maximize_qr_code">QR кодду чоңойтуу</string>
|
||||
<!-- Label shown in place of the QR code after the primary device has successfully scanned it -->
|
||||
<string name="LinkAccountScreen__scanned">Scanned</string>
|
||||
<string name="LinkAccountScreen__scanned">Скандалды</string>
|
||||
<!-- Error label shown in place of the QR code if it could not be generated -->
|
||||
<string name="LinkAccountScreen__failed_to_generate_code">Failed to generate code</string>
|
||||
<string name="LinkAccountScreen__failed_to_generate_code">Код түзүлбөй калды</string>
|
||||
<!-- Footer prompt asking the user if they have another device with Signal. Precedes a separate "Create account" link. -->
|
||||
<string name="LinkAccountScreen__dont_have_signal_on_another_device">Don\'t have Signal on another device?</string>
|
||||
<string name="LinkAccountScreen__dont_have_signal_on_another_device">Башка түзмөгүңүздө Signal жокпу?</string>
|
||||
<!-- Inline link in the link-account screen footer that takes the user to the new-account creation flow instead of linking -->
|
||||
<string name="LinkAccountScreen__create_account">Аккаунт түзүү</string>
|
||||
</resources>
|
||||
|
||||
@@ -318,7 +318,7 @@
|
||||
<!-- PIN creation screen title when confirming the new Signal PIN. -->
|
||||
<string name="PinCreationScreen__confirm_your_pin">Patvirtinkite savo PIN kodą</string>
|
||||
<!-- Describes how to confirm the new Signal PIN. -->
|
||||
<string name="PinCreationScreen__reenter_pin_description">Re-enter the PIN you just created</string>
|
||||
<string name="PinCreationScreen__reenter_pin_description">Dar kartą įveskite savo sukurtą PIN kodą</string>
|
||||
<!-- Describes the purpose of creating a Signal PIN. -->
|
||||
<string name="PinCreationScreen__pins_can_help">PIN kodai gali padėti atkurti paskyrą pametus telefoną. </string>
|
||||
<!-- Labels the button to learn more about Signal PINs. -->
|
||||
@@ -359,9 +359,9 @@
|
||||
<string name="PinEntryScreen__continue">Tęsti</string>
|
||||
|
||||
<!-- Title for the screen asking the user to grant the notification permission -->
|
||||
<string name="AllowNotificationsScreen__allow_notifications">Allow Notifications</string>
|
||||
<string name="AllowNotificationsScreen__allow_notifications">Leisti pranešimus</string>
|
||||
<!-- Description for the screen asking the user to grant the notification permission -->
|
||||
<string name="AllowNotificationsScreen__signal_would_like_to_request_the_notification_permission">Signal would like to request the notification permission. This allows your device to display alerts when new messages arrive.</string>
|
||||
<string name="AllowNotificationsScreen__signal_would_like_to_request_the_notification_permission">„Signal“ prašo suteikti leidimą siųsti pranešimus. Tai leis jūsų įrenginiui parodyti įspėjimus atėjus naujoms žinutėms.</string>
|
||||
<!-- Button label that dismisses the notification permission request without granting it -->
|
||||
<string name="AllowNotificationsScreen__not_now">Ne dabar</string>
|
||||
<!-- Button label that proceeds with the notification permission request -->
|
||||
@@ -370,36 +370,36 @@
|
||||
<!-- Title shown while messages are syncing from the primary device -->
|
||||
<string name="MessageSyncScreen__syncing_messages">Sinchronizuojamos žinutės</string>
|
||||
<!-- Subtitle shown while messages are syncing from the primary device, indicating it may take a while -->
|
||||
<string name="MessageSyncScreen__this_may_take_a_few_minutes">This may take a few minutes…</string>
|
||||
<string name="MessageSyncScreen__this_may_take_a_few_minutes">Tai gali šiek tiek užtrukti…</string>
|
||||
<!-- Progress label shown under the sync progress bar. %1$s is the amount downloaded so far (e.g. "1 MB"), %2$s is the total size to download (e.g. "3.2 MB") -->
|
||||
<string name="MessageSyncScreen__downloading_s_of_s">Atsisiunčiama %1$s iš %2$s</string>
|
||||
<!-- Informational notice in the sync screen footer, indicating the sync is end-to-end encrypted. Precedes a separate "Learn more" link. -->
|
||||
<string name="MessageSyncScreen__messages_and_chat_info_are_protected_by_e2ee">Messages and chat info are protected by end-to-end encryption, including the syncing process.</string>
|
||||
<string name="MessageSyncScreen__messages_and_chat_info_are_protected_by_e2ee">Žinutės ir pokalbių informacija yra visiškai užšifruoti, įskaitant ir sinchronizavimo procesą.</string>
|
||||
<!-- Inline link in the sync screen footer that opens documentation about end-to-end encryption during sync -->
|
||||
<string name="MessageSyncScreen__learn_more">Sužinoti daugiau</string>
|
||||
<!-- Button label that cancels the in-progress message sync -->
|
||||
<string name="MessageSyncScreen__cancel">Atšaukti</string>
|
||||
|
||||
<!-- Title for the screen that shows a QR code the user scans with their existing primary device to link this device as a secondary -->
|
||||
<string name="LinkAccountScreen__scan_this_code_to_link_your_account">Scan this code to link your account</string>
|
||||
<string name="LinkAccountScreen__scan_this_code_to_link_your_account">Nuskaityti šį kodą, kad susietumėte paskyrą</string>
|
||||
<!-- Step in the link-account instructions: open Signal on the user\'s existing phone -->
|
||||
<string name="LinkAccountScreen__open_signal_on_your_phone">Atverkite savo telefone Signal programėlę</string>
|
||||
<!-- Step in the link-account instructions: tap profile picture to open Signal Settings -->
|
||||
<string name="LinkAccountScreen__tap_your_profile_picture_to_open_signal_settings">Tap your profile picture to open Signal Settings</string>
|
||||
<string name="LinkAccountScreen__tap_your_profile_picture_to_open_signal_settings">Bakstelėkite savo profilio nuotrauką, kad atvertumėte „Signal“ nustatymus.</string>
|
||||
<!-- Step in the link-account instructions: navigate to the Linked devices section and tap Link new device. The quoted strings should match the button/menu labels in the primary device\'s settings. -->
|
||||
<string name="LinkAccountScreen__tap_linked_devices_and_link_new_device">Tap \"Linked devices\" and \"Link new device\"</string>
|
||||
<string name="LinkAccountScreen__tap_linked_devices_and_link_new_device">Bakstelėkite „Susieti įrenginiai“ ir „Susieti naują įrenginį“.</string>
|
||||
<!-- Step in the link-account instructions: aim the primary device\'s camera at the QR code displayed on this screen -->
|
||||
<string name="LinkAccountScreen__position_the_camera_over_this_qr_code">Position the camera over this qr code</string>
|
||||
<string name="LinkAccountScreen__position_the_camera_over_this_qr_code">Nukreipkite kamerą į šį QR kodą.</string>
|
||||
<!-- Button label opening help content for users who can\'t complete the link-account steps -->
|
||||
<string name="LinkAccountScreen__get_help_with_these_steps">Get help with these steps</string>
|
||||
<string name="LinkAccountScreen__get_help_with_these_steps">Gauti pagalbos dėl šių veiksmų</string>
|
||||
<!-- Accessibility content description for the button that enlarges the QR code to full screen -->
|
||||
<string name="LinkAccountScreen__maximize_qr_code">Maximize QR Code</string>
|
||||
<string name="LinkAccountScreen__maximize_qr_code">Padidinkite QR kodą</string>
|
||||
<!-- Label shown in place of the QR code after the primary device has successfully scanned it -->
|
||||
<string name="LinkAccountScreen__scanned">Scanned</string>
|
||||
<string name="LinkAccountScreen__scanned">Nuskaityta</string>
|
||||
<!-- Error label shown in place of the QR code if it could not be generated -->
|
||||
<string name="LinkAccountScreen__failed_to_generate_code">Failed to generate code</string>
|
||||
<string name="LinkAccountScreen__failed_to_generate_code">Nepavyko sugeneruoti kodo</string>
|
||||
<!-- Footer prompt asking the user if they have another device with Signal. Precedes a separate "Create account" link. -->
|
||||
<string name="LinkAccountScreen__dont_have_signal_on_another_device">Don\'t have Signal on another device?</string>
|
||||
<string name="LinkAccountScreen__dont_have_signal_on_another_device">Neturite „Signal“ kitame įrenginyje?</string>
|
||||
<!-- Inline link in the link-account screen footer that takes the user to the new-account creation flow instead of linking -->
|
||||
<string name="LinkAccountScreen__create_account">Susikurkite paskyrą</string>
|
||||
</resources>
|
||||
|
||||
@@ -315,9 +315,9 @@
|
||||
<!-- PIN creation screen title. -->
|
||||
<string name="PinCreationScreen__create_your_pin">Izveido savu PIN</string>
|
||||
<!-- PIN creation screen title when confirming the new Signal PIN. -->
|
||||
<string name="PinCreationScreen__confirm_your_pin">Confirm your PIN</string>
|
||||
<string name="PinCreationScreen__confirm_your_pin">Apstiprināt PIN</string>
|
||||
<!-- Describes how to confirm the new Signal PIN. -->
|
||||
<string name="PinCreationScreen__reenter_pin_description">Re-enter the PIN you just created</string>
|
||||
<string name="PinCreationScreen__reenter_pin_description">Ievadiet tikko izveidoto PIN vēlreiz</string>
|
||||
<!-- Describes the purpose of creating a Signal PIN. -->
|
||||
<string name="PinCreationScreen__pins_can_help">PIN tālruņa pazaudēšanas gadījumā var palīdzēt atjaunot kontu. </string>
|
||||
<!-- Labels the button to learn more about Signal PINs. -->
|
||||
@@ -329,11 +329,11 @@
|
||||
<!-- Labels the button to submit a new Signal PIN. -->
|
||||
<string name="PinCreationScreen__next">Tālāk</string>
|
||||
<!-- Hint shown below the create PIN field when numeric keyboard is active. -->
|
||||
<string name="PinCreationScreen__pin_at_least_4_digits">PIN must be at least 4 digits</string>
|
||||
<string name="PinCreationScreen__pin_at_least_4_digits">PIN jābūt vismaz 4 cipariem</string>
|
||||
<!-- Hint shown below the create PIN field when alphanumeric keyboard is active. -->
|
||||
<string name="PinCreationScreen__pin_at_least_4_characters">PIN must be at least 4 characters</string>
|
||||
<string name="PinCreationScreen__pin_at_least_4_characters">PIN jābūt vismaz 4 rakstzīmēm</string>
|
||||
<!-- Hint shown below the create PIN field when the user is confirming their new Signal PIN. -->
|
||||
<string name="PinCreationScreen__reenter_pin">Re-enter PIN</string>
|
||||
<string name="PinCreationScreen__reenter_pin">Atkārtoti ievadiet PIN</string>
|
||||
|
||||
<!-- PIN entry screen title when registration lock is active. -->
|
||||
<string name="PinEntryScreen__registration_lock">Reģistrācijas bloķēšana</string>
|
||||
@@ -357,9 +357,9 @@
|
||||
<string name="PinEntryScreen__continue">Turpināt</string>
|
||||
|
||||
<!-- Title for the screen asking the user to grant the notification permission -->
|
||||
<string name="AllowNotificationsScreen__allow_notifications">Allow Notifications</string>
|
||||
<string name="AllowNotificationsScreen__allow_notifications">Atļaut paziņojumus</string>
|
||||
<!-- Description for the screen asking the user to grant the notification permission -->
|
||||
<string name="AllowNotificationsScreen__signal_would_like_to_request_the_notification_permission">Signal would like to request the notification permission. This allows your device to display alerts when new messages arrive.</string>
|
||||
<string name="AllowNotificationsScreen__signal_would_like_to_request_the_notification_permission">Signal ir nepieciešama paziņojumu atļauja. Tas ļauj ierīcei rādīt jaunu ziņu paziņojumus.</string>
|
||||
<!-- Button label that dismisses the notification permission request without granting it -->
|
||||
<string name="AllowNotificationsScreen__not_now">Ne tagad</string>
|
||||
<!-- Button label that proceeds with the notification permission request -->
|
||||
@@ -368,36 +368,36 @@
|
||||
<!-- Title shown while messages are syncing from the primary device -->
|
||||
<string name="MessageSyncScreen__syncing_messages">Notiek ziņu sinhronizēšana</string>
|
||||
<!-- Subtitle shown while messages are syncing from the primary device, indicating it may take a while -->
|
||||
<string name="MessageSyncScreen__this_may_take_a_few_minutes">This may take a few minutes…</string>
|
||||
<string name="MessageSyncScreen__this_may_take_a_few_minutes">Process var ilgt dažas minūtes…</string>
|
||||
<!-- Progress label shown under the sync progress bar. %1$s is the amount downloaded so far (e.g. "1 MB"), %2$s is the total size to download (e.g. "3.2 MB") -->
|
||||
<string name="MessageSyncScreen__downloading_s_of_s">Lejupielādē: %1$s no %2$s</string>
|
||||
<!-- Informational notice in the sync screen footer, indicating the sync is end-to-end encrypted. Precedes a separate "Learn more" link. -->
|
||||
<string name="MessageSyncScreen__messages_and_chat_info_are_protected_by_e2ee">Messages and chat info are protected by end-to-end encryption, including the syncing process.</string>
|
||||
<string name="MessageSyncScreen__messages_and_chat_info_are_protected_by_e2ee">Ziņas un sarunu informāciju aizsargā pilnīga šifrēšana, tostarp sinhronizēšanas process.</string>
|
||||
<!-- Inline link in the sync screen footer that opens documentation about end-to-end encryption during sync -->
|
||||
<string name="MessageSyncScreen__learn_more">Uzzināt vairāk</string>
|
||||
<!-- Button label that cancels the in-progress message sync -->
|
||||
<string name="MessageSyncScreen__cancel">Atcelt</string>
|
||||
|
||||
<!-- Title for the screen that shows a QR code the user scans with their existing primary device to link this device as a secondary -->
|
||||
<string name="LinkAccountScreen__scan_this_code_to_link_your_account">Scan this code to link your account</string>
|
||||
<string name="LinkAccountScreen__scan_this_code_to_link_your_account">Skenējiet šo kodu, lai piesaistītu jūsu kontu</string>
|
||||
<!-- Step in the link-account instructions: open Signal on the user\'s existing phone -->
|
||||
<string name="LinkAccountScreen__open_signal_on_your_phone">Atveriet Signal tālrunī</string>
|
||||
<!-- Step in the link-account instructions: tap profile picture to open Signal Settings -->
|
||||
<string name="LinkAccountScreen__tap_your_profile_picture_to_open_signal_settings">Tap your profile picture to open Signal Settings</string>
|
||||
<string name="LinkAccountScreen__tap_your_profile_picture_to_open_signal_settings">Lai atvērtu Signal iestatījumus, pieskarieties sava profila fotoattēlam</string>
|
||||
<!-- Step in the link-account instructions: navigate to the Linked devices section and tap Link new device. The quoted strings should match the button/menu labels in the primary device\'s settings. -->
|
||||
<string name="LinkAccountScreen__tap_linked_devices_and_link_new_device">Tap \"Linked devices\" and \"Link new device\"</string>
|
||||
<string name="LinkAccountScreen__tap_linked_devices_and_link_new_device">Pieskarieties \"Saistītās ierīces\" un tad \"Piesaistīt jaunu ierīci\"</string>
|
||||
<!-- Step in the link-account instructions: aim the primary device\'s camera at the QR code displayed on this screen -->
|
||||
<string name="LinkAccountScreen__position_the_camera_over_this_qr_code">Position the camera over this qr code</string>
|
||||
<string name="LinkAccountScreen__position_the_camera_over_this_qr_code">Pavērsiet kameru pret šo kvadrātkodu</string>
|
||||
<!-- Button label opening help content for users who can\'t complete the link-account steps -->
|
||||
<string name="LinkAccountScreen__get_help_with_these_steps">Get help with these steps</string>
|
||||
<string name="LinkAccountScreen__get_help_with_these_steps">Saņemt palīdzību šo darbību veikšanai</string>
|
||||
<!-- Accessibility content description for the button that enlarges the QR code to full screen -->
|
||||
<string name="LinkAccountScreen__maximize_qr_code">Maximize QR Code</string>
|
||||
<string name="LinkAccountScreen__maximize_qr_code">Palielināt kvadrātkodu</string>
|
||||
<!-- Label shown in place of the QR code after the primary device has successfully scanned it -->
|
||||
<string name="LinkAccountScreen__scanned">Scanned</string>
|
||||
<string name="LinkAccountScreen__scanned">Noskenēts</string>
|
||||
<!-- Error label shown in place of the QR code if it could not be generated -->
|
||||
<string name="LinkAccountScreen__failed_to_generate_code">Failed to generate code</string>
|
||||
<string name="LinkAccountScreen__failed_to_generate_code">Neizdevās ģenerēt kodu</string>
|
||||
<!-- Footer prompt asking the user if they have another device with Signal. Precedes a separate "Create account" link. -->
|
||||
<string name="LinkAccountScreen__dont_have_signal_on_another_device">Don\'t have Signal on another device?</string>
|
||||
<string name="LinkAccountScreen__dont_have_signal_on_another_device">Signal nav pieejams citā ierīcē?</string>
|
||||
<!-- Inline link in the link-account screen footer that takes the user to the new-account creation flow instead of linking -->
|
||||
<string name="LinkAccountScreen__create_account">Izveidot kontu</string>
|
||||
</resources>
|
||||
|
||||
@@ -314,9 +314,9 @@
|
||||
<!-- PIN creation screen title. -->
|
||||
<string name="PinCreationScreen__create_your_pin">Создајте го Вашиот PIN</string>
|
||||
<!-- PIN creation screen title when confirming the new Signal PIN. -->
|
||||
<string name="PinCreationScreen__confirm_your_pin">Confirm your PIN</string>
|
||||
<string name="PinCreationScreen__confirm_your_pin">Потврдете го вашиот PIN</string>
|
||||
<!-- Describes how to confirm the new Signal PIN. -->
|
||||
<string name="PinCreationScreen__reenter_pin_description">Re-enter the PIN you just created</string>
|
||||
<string name="PinCreationScreen__reenter_pin_description">Одново внесете го PIN-от што го создадовте</string>
|
||||
<!-- Describes the purpose of creating a Signal PIN. -->
|
||||
<string name="PinCreationScreen__pins_can_help">Со помош на PIN-от ќе можете ја вратите вашата корисничка сметка ако го изгубите телефонот. </string>
|
||||
<!-- Labels the button to learn more about Signal PINs. -->
|
||||
@@ -328,11 +328,11 @@
|
||||
<!-- Labels the button to submit a new Signal PIN. -->
|
||||
<string name="PinCreationScreen__next">Следно</string>
|
||||
<!-- Hint shown below the create PIN field when numeric keyboard is active. -->
|
||||
<string name="PinCreationScreen__pin_at_least_4_digits">PIN must be at least 4 digits</string>
|
||||
<string name="PinCreationScreen__pin_at_least_4_digits">PIN-от мора да се состои од најмалку 4 бројки</string>
|
||||
<!-- Hint shown below the create PIN field when alphanumeric keyboard is active. -->
|
||||
<string name="PinCreationScreen__pin_at_least_4_characters">PIN must be at least 4 characters</string>
|
||||
<string name="PinCreationScreen__pin_at_least_4_characters">PIN-от мора да се состои од најмалку 4 знаци</string>
|
||||
<!-- Hint shown below the create PIN field when the user is confirming their new Signal PIN. -->
|
||||
<string name="PinCreationScreen__reenter_pin">Re-enter PIN</string>
|
||||
<string name="PinCreationScreen__reenter_pin">Одново внесете го PIN-от</string>
|
||||
|
||||
<!-- PIN entry screen title when registration lock is active. -->
|
||||
<string name="PinEntryScreen__registration_lock">Заклучување на регистрација</string>
|
||||
@@ -355,9 +355,9 @@
|
||||
<string name="PinEntryScreen__continue">Продолжи</string>
|
||||
|
||||
<!-- Title for the screen asking the user to grant the notification permission -->
|
||||
<string name="AllowNotificationsScreen__allow_notifications">Allow Notifications</string>
|
||||
<string name="AllowNotificationsScreen__allow_notifications">Дозволете известувања</string>
|
||||
<!-- Description for the screen asking the user to grant the notification permission -->
|
||||
<string name="AllowNotificationsScreen__signal_would_like_to_request_the_notification_permission">Signal would like to request the notification permission. This allows your device to display alerts when new messages arrive.</string>
|
||||
<string name="AllowNotificationsScreen__signal_would_like_to_request_the_notification_permission">Signal сака да побара дозвола за известување. Ова овозможува вашиот уред да прикажува известувања кога пристигнуваат нови пораки.</string>
|
||||
<!-- Button label that dismisses the notification permission request without granting it -->
|
||||
<string name="AllowNotificationsScreen__not_now">Не сега</string>
|
||||
<!-- Button label that proceeds with the notification permission request -->
|
||||
@@ -366,36 +366,36 @@
|
||||
<!-- Title shown while messages are syncing from the primary device -->
|
||||
<string name="MessageSyncScreen__syncing_messages">Пораките се синхронизираат</string>
|
||||
<!-- Subtitle shown while messages are syncing from the primary device, indicating it may take a while -->
|
||||
<string name="MessageSyncScreen__this_may_take_a_few_minutes">This may take a few minutes…</string>
|
||||
<string name="MessageSyncScreen__this_may_take_a_few_minutes">Ова може да потрае неколку минути…</string>
|
||||
<!-- Progress label shown under the sync progress bar. %1$s is the amount downloaded so far (e.g. "1 MB"), %2$s is the total size to download (e.g. "3.2 MB") -->
|
||||
<string name="MessageSyncScreen__downloading_s_of_s">Се презема(ат) %1$s од %2$s</string>
|
||||
<!-- Informational notice in the sync screen footer, indicating the sync is end-to-end encrypted. Precedes a separate "Learn more" link. -->
|
||||
<string name="MessageSyncScreen__messages_and_chat_info_are_protected_by_e2ee">Messages and chat info are protected by end-to-end encryption, including the syncing process.</string>
|
||||
<string name="MessageSyncScreen__messages_and_chat_info_are_protected_by_e2ee">Пораките и информациите за разговорите се заштитени со целосно шифрирање, вклучувајќи го и процесот на синхронизација.</string>
|
||||
<!-- Inline link in the sync screen footer that opens documentation about end-to-end encryption during sync -->
|
||||
<string name="MessageSyncScreen__learn_more">Дознајте повеќе</string>
|
||||
<!-- Button label that cancels the in-progress message sync -->
|
||||
<string name="MessageSyncScreen__cancel">Откажи</string>
|
||||
|
||||
<!-- Title for the screen that shows a QR code the user scans with their existing primary device to link this device as a secondary -->
|
||||
<string name="LinkAccountScreen__scan_this_code_to_link_your_account">Scan this code to link your account</string>
|
||||
<string name="LinkAccountScreen__scan_this_code_to_link_your_account">Скенирајте го овој код за да ја поврзете вашата корисничка сметка</string>
|
||||
<!-- Step in the link-account instructions: open Signal on the user\'s existing phone -->
|
||||
<string name="LinkAccountScreen__open_signal_on_your_phone">Отворете Signal на вашиот телефон</string>
|
||||
<!-- Step in the link-account instructions: tap profile picture to open Signal Settings -->
|
||||
<string name="LinkAccountScreen__tap_your_profile_picture_to_open_signal_settings">Tap your profile picture to open Signal Settings</string>
|
||||
<string name="LinkAccountScreen__tap_your_profile_picture_to_open_signal_settings">Допрете ја вашата профилна слика за да ги отворите поставувањата на Signal</string>
|
||||
<!-- Step in the link-account instructions: navigate to the Linked devices section and tap Link new device. The quoted strings should match the button/menu labels in the primary device\'s settings. -->
|
||||
<string name="LinkAccountScreen__tap_linked_devices_and_link_new_device">Tap \"Linked devices\" and \"Link new device\"</string>
|
||||
<string name="LinkAccountScreen__tap_linked_devices_and_link_new_device">Допрете на „Поврзани уреди“ и „Поврзете нов уред“</string>
|
||||
<!-- Step in the link-account instructions: aim the primary device\'s camera at the QR code displayed on this screen -->
|
||||
<string name="LinkAccountScreen__position_the_camera_over_this_qr_code">Position the camera over this qr code</string>
|
||||
<string name="LinkAccountScreen__position_the_camera_over_this_qr_code">Поставете ја камерата врз овој QR-код</string>
|
||||
<!-- Button label opening help content for users who can\'t complete the link-account steps -->
|
||||
<string name="LinkAccountScreen__get_help_with_these_steps">Get help with these steps</string>
|
||||
<string name="LinkAccountScreen__get_help_with_these_steps">Добијте помош со овие чекори</string>
|
||||
<!-- Accessibility content description for the button that enlarges the QR code to full screen -->
|
||||
<string name="LinkAccountScreen__maximize_qr_code">Maximize QR Code</string>
|
||||
<string name="LinkAccountScreen__maximize_qr_code">Зголемете го QR-кодот</string>
|
||||
<!-- Label shown in place of the QR code after the primary device has successfully scanned it -->
|
||||
<string name="LinkAccountScreen__scanned">Scanned</string>
|
||||
<string name="LinkAccountScreen__scanned">Скенирано</string>
|
||||
<!-- Error label shown in place of the QR code if it could not be generated -->
|
||||
<string name="LinkAccountScreen__failed_to_generate_code">Failed to generate code</string>
|
||||
<string name="LinkAccountScreen__failed_to_generate_code">Не успеа да се генерира кодот</string>
|
||||
<!-- Footer prompt asking the user if they have another device with Signal. Precedes a separate "Create account" link. -->
|
||||
<string name="LinkAccountScreen__dont_have_signal_on_another_device">Don\'t have Signal on another device?</string>
|
||||
<string name="LinkAccountScreen__dont_have_signal_on_another_device">Немате Signal на друг уред?</string>
|
||||
<!-- Inline link in the link-account screen footer that takes the user to the new-account creation flow instead of linking -->
|
||||
<string name="LinkAccountScreen__create_account">Направете корисничка сметка</string>
|
||||
</resources>
|
||||
|
||||
@@ -314,9 +314,9 @@
|
||||
<!-- PIN creation screen title. -->
|
||||
<string name="PinCreationScreen__create_your_pin">നിങ്ങളുടെ PIN സൃഷ്ടിക്കുക</string>
|
||||
<!-- PIN creation screen title when confirming the new Signal PIN. -->
|
||||
<string name="PinCreationScreen__confirm_your_pin">Confirm your PIN</string>
|
||||
<string name="PinCreationScreen__confirm_your_pin">നിങ്ങളുടെ PIN സ്ഥിരീകരിക്കുക</string>
|
||||
<!-- Describes how to confirm the new Signal PIN. -->
|
||||
<string name="PinCreationScreen__reenter_pin_description">Re-enter the PIN you just created</string>
|
||||
<string name="PinCreationScreen__reenter_pin_description">നിങ്ങൾ സൃഷ്ടിച്ച PIN വീണ്ടും നൽകുക</string>
|
||||
<!-- Describes the purpose of creating a Signal PIN. -->
|
||||
<string name="PinCreationScreen__pins_can_help">നിങ്ങളുടെ ഫോൺ നഷ്ടപ്പെടുകയാണെങ്കിൽ അക്കൗണ്ട് വീണ്ടെടുക്കാൻ PIN സഹായിക്കും. </string>
|
||||
<!-- Labels the button to learn more about Signal PINs. -->
|
||||
@@ -328,11 +328,11 @@
|
||||
<!-- Labels the button to submit a new Signal PIN. -->
|
||||
<string name="PinCreationScreen__next">അടുത്തത്</string>
|
||||
<!-- Hint shown below the create PIN field when numeric keyboard is active. -->
|
||||
<string name="PinCreationScreen__pin_at_least_4_digits">PIN must be at least 4 digits</string>
|
||||
<string name="PinCreationScreen__pin_at_least_4_digits">PIN കുറഞ്ഞത് 4 അക്കങ്ങളെങ്കിലും ആയിരിക്കണം</string>
|
||||
<!-- Hint shown below the create PIN field when alphanumeric keyboard is active. -->
|
||||
<string name="PinCreationScreen__pin_at_least_4_characters">PIN must be at least 4 characters</string>
|
||||
<string name="PinCreationScreen__pin_at_least_4_characters">PIN കുറഞ്ഞത് 4 പ്രതീകങ്ങളെങ്കിലും ആയിരിക്കണം</string>
|
||||
<!-- Hint shown below the create PIN field when the user is confirming their new Signal PIN. -->
|
||||
<string name="PinCreationScreen__reenter_pin">Re-enter PIN</string>
|
||||
<string name="PinCreationScreen__reenter_pin">PIN വീണ്ടും നൽകുക</string>
|
||||
|
||||
<!-- PIN entry screen title when registration lock is active. -->
|
||||
<string name="PinEntryScreen__registration_lock">രജിസ്ട്രേഷൻ ലോക്ക്</string>
|
||||
@@ -355,9 +355,9 @@
|
||||
<string name="PinEntryScreen__continue">തുടരുക</string>
|
||||
|
||||
<!-- Title for the screen asking the user to grant the notification permission -->
|
||||
<string name="AllowNotificationsScreen__allow_notifications">Allow Notifications</string>
|
||||
<string name="AllowNotificationsScreen__allow_notifications">അറിയിപ്പുകൾ അനുവദിക്കുക</string>
|
||||
<!-- Description for the screen asking the user to grant the notification permission -->
|
||||
<string name="AllowNotificationsScreen__signal_would_like_to_request_the_notification_permission">Signal would like to request the notification permission. This allows your device to display alerts when new messages arrive.</string>
|
||||
<string name="AllowNotificationsScreen__signal_would_like_to_request_the_notification_permission">അറിയിപ്പ് അനുമതികൾ അഭ്യർത്ഥിക്കാൻ Signal ആഗ്രഹിക്കുന്നു. പുതിയ സന്ദേശങ്ങൾ വരുമ്പോൾ അലേർട്ടുകൾ കാണിക്കാൻ ഇത് നിങ്ങളുടെ ഉപകരണത്തെ അനുവദിക്കുന്നു.</string>
|
||||
<!-- Button label that dismisses the notification permission request without granting it -->
|
||||
<string name="AllowNotificationsScreen__not_now">ഇപ്പോൾ വേണ്ട</string>
|
||||
<!-- Button label that proceeds with the notification permission request -->
|
||||
@@ -366,36 +366,36 @@
|
||||
<!-- Title shown while messages are syncing from the primary device -->
|
||||
<string name="MessageSyncScreen__syncing_messages">സന്ദേശങ്ങൾ സമന്വയിപ്പിക്കുന്നു</string>
|
||||
<!-- Subtitle shown while messages are syncing from the primary device, indicating it may take a while -->
|
||||
<string name="MessageSyncScreen__this_may_take_a_few_minutes">This may take a few minutes…</string>
|
||||
<string name="MessageSyncScreen__this_may_take_a_few_minutes">ഇതിന് കുറച്ച് മിനിറ്റുകൾ എടുത്തേക്കാം…</string>
|
||||
<!-- Progress label shown under the sync progress bar. %1$s is the amount downloaded so far (e.g. "1 MB"), %2$s is the total size to download (e.g. "3.2 MB") -->
|
||||
<string name="MessageSyncScreen__downloading_s_of_s">%2$s-ൽ %1$s ഡൗൺലോഡ് ചെയ്യുന്നു</string>
|
||||
<!-- Informational notice in the sync screen footer, indicating the sync is end-to-end encrypted. Precedes a separate "Learn more" link. -->
|
||||
<string name="MessageSyncScreen__messages_and_chat_info_are_protected_by_e2ee">Messages and chat info are protected by end-to-end encryption, including the syncing process.</string>
|
||||
<string name="MessageSyncScreen__messages_and_chat_info_are_protected_by_e2ee">സമന്വയ പ്രക്രിയ ഉൾപ്പെടെ, സന്ദേശങ്ങളും ചാറ്റ് വിവരങ്ങളും എൻഡ്-ടു-എൻഡ് എൻക്രിപ്ഷൻ വഴി പരിരക്ഷിച്ചിരിക്കുന്നു.</string>
|
||||
<!-- Inline link in the sync screen footer that opens documentation about end-to-end encryption during sync -->
|
||||
<string name="MessageSyncScreen__learn_more">കൂടുതലറിയുക</string>
|
||||
<!-- Button label that cancels the in-progress message sync -->
|
||||
<string name="MessageSyncScreen__cancel">റദ്ദാക്കുക</string>
|
||||
|
||||
<!-- Title for the screen that shows a QR code the user scans with their existing primary device to link this device as a secondary -->
|
||||
<string name="LinkAccountScreen__scan_this_code_to_link_your_account">Scan this code to link your account</string>
|
||||
<string name="LinkAccountScreen__scan_this_code_to_link_your_account">നിങ്ങളുടെ അക്കൗണ്ട് ലിങ്ക് ചെയ്യാൻ ഈ കോഡ് സ്കാൻ ചെയ്യുക</string>
|
||||
<!-- Step in the link-account instructions: open Signal on the user\'s existing phone -->
|
||||
<string name="LinkAccountScreen__open_signal_on_your_phone">നിങ്ങളുടെ ഫോണിൽ Signal തുറക്കുക</string>
|
||||
<!-- Step in the link-account instructions: tap profile picture to open Signal Settings -->
|
||||
<string name="LinkAccountScreen__tap_your_profile_picture_to_open_signal_settings">Tap your profile picture to open Signal Settings</string>
|
||||
<string name="LinkAccountScreen__tap_your_profile_picture_to_open_signal_settings">Signal ക്രമീകരണം തുറക്കാൻ നിങ്ങളുടെ പ്രൊഫൈൽ ചിത്രത്തിൽ ടാപ്പ് ചെയ്യുക</string>
|
||||
<!-- Step in the link-account instructions: navigate to the Linked devices section and tap Link new device. The quoted strings should match the button/menu labels in the primary device\'s settings. -->
|
||||
<string name="LinkAccountScreen__tap_linked_devices_and_link_new_device">Tap \"Linked devices\" and \"Link new device\"</string>
|
||||
<string name="LinkAccountScreen__tap_linked_devices_and_link_new_device">\"ലിങ്ക് ചെയ്ത ഉപകരണങ്ങൾ\", \"പുതിയ ഉപകരണം ലിങ്ക് ചെയ്യുക\" എന്നിവയിൽ ടാപ്പ് ചെയ്യുക</string>
|
||||
<!-- Step in the link-account instructions: aim the primary device\'s camera at the QR code displayed on this screen -->
|
||||
<string name="LinkAccountScreen__position_the_camera_over_this_qr_code">Position the camera over this qr code</string>
|
||||
<string name="LinkAccountScreen__position_the_camera_over_this_qr_code">ഈ QR കോഡിന് മുകളിലായി ക്യാമറ വയ്ക്കുക</string>
|
||||
<!-- Button label opening help content for users who can\'t complete the link-account steps -->
|
||||
<string name="LinkAccountScreen__get_help_with_these_steps">Get help with these steps</string>
|
||||
<string name="LinkAccountScreen__get_help_with_these_steps">ഈ ഘട്ടങ്ങൾക്കായി സഹായം നേടുക</string>
|
||||
<!-- Accessibility content description for the button that enlarges the QR code to full screen -->
|
||||
<string name="LinkAccountScreen__maximize_qr_code">Maximize QR Code</string>
|
||||
<string name="LinkAccountScreen__maximize_qr_code">QR കോഡ് വലുതാക്കുക</string>
|
||||
<!-- Label shown in place of the QR code after the primary device has successfully scanned it -->
|
||||
<string name="LinkAccountScreen__scanned">Scanned</string>
|
||||
<string name="LinkAccountScreen__scanned">സ്കാൻ ചെയ്തു</string>
|
||||
<!-- Error label shown in place of the QR code if it could not be generated -->
|
||||
<string name="LinkAccountScreen__failed_to_generate_code">Failed to generate code</string>
|
||||
<string name="LinkAccountScreen__failed_to_generate_code">കോഡ് സൃഷ്ടിക്കുന്നതിൽ പരാജയപ്പെട്ടു</string>
|
||||
<!-- Footer prompt asking the user if they have another device with Signal. Precedes a separate "Create account" link. -->
|
||||
<string name="LinkAccountScreen__dont_have_signal_on_another_device">Don\'t have Signal on another device?</string>
|
||||
<string name="LinkAccountScreen__dont_have_signal_on_another_device">മറ്റൊരു ഉപകരണത്തിൽ Signal ലഭ്യമല്ലേ?</string>
|
||||
<!-- Inline link in the link-account screen footer that takes the user to the new-account creation flow instead of linking -->
|
||||
<string name="LinkAccountScreen__create_account">അക്കൗണ്ട് സൃഷ്ടിക്കുക</string>
|
||||
</resources>
|
||||
|
||||
@@ -316,7 +316,7 @@
|
||||
<!-- PIN creation screen title when confirming the new Signal PIN. -->
|
||||
<string name="PinCreationScreen__confirm_your_pin">आपल्या पिनची पुष्टी करा</string>
|
||||
<!-- Describes how to confirm the new Signal PIN. -->
|
||||
<string name="PinCreationScreen__reenter_pin_description">Re-enter the PIN you just created</string>
|
||||
<string name="PinCreationScreen__reenter_pin_description">तुम्ही आत्ताच तयार केलेला पिन पुन्हा-प्रविष्ट करा</string>
|
||||
<!-- Describes the purpose of creating a Signal PIN. -->
|
||||
<string name="PinCreationScreen__pins_can_help">तुमचा फोन हरवला तर तुमचे खाते परत मिळवण्यासाठी पिन मदत करू शकतात. </string>
|
||||
<!-- Labels the button to learn more about Signal PINs. -->
|
||||
@@ -357,7 +357,7 @@
|
||||
<!-- Title for the screen asking the user to grant the notification permission -->
|
||||
<string name="AllowNotificationsScreen__allow_notifications">अधिसूचनांना अनुमती द्या</string>
|
||||
<!-- Description for the screen asking the user to grant the notification permission -->
|
||||
<string name="AllowNotificationsScreen__signal_would_like_to_request_the_notification_permission">Signal would like to request the notification permission. This allows your device to display alerts when new messages arrive.</string>
|
||||
<string name="AllowNotificationsScreen__signal_would_like_to_request_the_notification_permission">Signal खालील अधिसूचनेसाठी विनंती करू इच्छित आहे. यामुळे तुमच्या डिव्हाईसला नवीन संदेश आल्यावर इशारा दाखवू शकते.</string>
|
||||
<!-- Button label that dismisses the notification permission request without granting it -->
|
||||
<string name="AllowNotificationsScreen__not_now">आता नाही</string>
|
||||
<!-- Button label that proceeds with the notification permission request -->
|
||||
@@ -366,36 +366,36 @@
|
||||
<!-- Title shown while messages are syncing from the primary device -->
|
||||
<string name="MessageSyncScreen__syncing_messages">संदेश समक्रमित करत आहे</string>
|
||||
<!-- Subtitle shown while messages are syncing from the primary device, indicating it may take a while -->
|
||||
<string name="MessageSyncScreen__this_may_take_a_few_minutes">This may take a few minutes…</string>
|
||||
<string name="MessageSyncScreen__this_may_take_a_few_minutes">ह्याला काही मिनिटे लागू शकतात…</string>
|
||||
<!-- Progress label shown under the sync progress bar. %1$s is the amount downloaded so far (e.g. "1 MB"), %2$s is the total size to download (e.g. "3.2 MB") -->
|
||||
<string name="MessageSyncScreen__downloading_s_of_s">%2$s पैकी %1$s डाऊनलोड करत आहोत</string>
|
||||
<!-- Informational notice in the sync screen footer, indicating the sync is end-to-end encrypted. Precedes a separate "Learn more" link. -->
|
||||
<string name="MessageSyncScreen__messages_and_chat_info_are_protected_by_e2ee">Messages and chat info are protected by end-to-end encryption, including the syncing process.</string>
|
||||
<string name="MessageSyncScreen__messages_and_chat_info_are_protected_by_e2ee">संदेशाची आणि चॅटची माहिती एन्ड-टू-एन्ड एन्क्रिप्शनने संरक्षित आहे, अगदी सिंकिंगची प्रक्रियासुद्धा.</string>
|
||||
<!-- Inline link in the sync screen footer that opens documentation about end-to-end encryption during sync -->
|
||||
<string name="MessageSyncScreen__learn_more">अधिक जाणून घ्या</string>
|
||||
<!-- Button label that cancels the in-progress message sync -->
|
||||
<string name="MessageSyncScreen__cancel">रद्द करा</string>
|
||||
|
||||
<!-- Title for the screen that shows a QR code the user scans with their existing primary device to link this device as a secondary -->
|
||||
<string name="LinkAccountScreen__scan_this_code_to_link_your_account">Scan this code to link your account</string>
|
||||
<string name="LinkAccountScreen__scan_this_code_to_link_your_account">तुमचे खाते लिंक करण्यासाठी हा कोड स्कॅन करा</string>
|
||||
<!-- Step in the link-account instructions: open Signal on the user\'s existing phone -->
|
||||
<string name="LinkAccountScreen__open_signal_on_your_phone">आपल्या फोनवर Signal उघडा</string>
|
||||
<!-- Step in the link-account instructions: tap profile picture to open Signal Settings -->
|
||||
<string name="LinkAccountScreen__tap_your_profile_picture_to_open_signal_settings">Tap your profile picture to open Signal Settings</string>
|
||||
<string name="LinkAccountScreen__tap_your_profile_picture_to_open_signal_settings">Signal सेटिंग्ज उघडण्यासाठी तुमच्या प्रोफाईल प्रतिमेवर टॅप करा</string>
|
||||
<!-- Step in the link-account instructions: navigate to the Linked devices section and tap Link new device. The quoted strings should match the button/menu labels in the primary device\'s settings. -->
|
||||
<string name="LinkAccountScreen__tap_linked_devices_and_link_new_device">Tap \"Linked devices\" and \"Link new device\"</string>
|
||||
<string name="LinkAccountScreen__tap_linked_devices_and_link_new_device">\"लिंंक केलेली डिव्हाइसेस\" आणि \"नवीन डिव्हाईस लिंक करा\" यांवर टॅप करा</string>
|
||||
<!-- Step in the link-account instructions: aim the primary device\'s camera at the QR code displayed on this screen -->
|
||||
<string name="LinkAccountScreen__position_the_camera_over_this_qr_code">Position the camera over this qr code</string>
|
||||
<string name="LinkAccountScreen__position_the_camera_over_this_qr_code">कॅमेरा या QR कोडवर धरा</string>
|
||||
<!-- Button label opening help content for users who can\'t complete the link-account steps -->
|
||||
<string name="LinkAccountScreen__get_help_with_these_steps">Get help with these steps</string>
|
||||
<string name="LinkAccountScreen__get_help_with_these_steps">या पायऱ्यांनी मदत मिळवा</string>
|
||||
<!-- Accessibility content description for the button that enlarges the QR code to full screen -->
|
||||
<string name="LinkAccountScreen__maximize_qr_code">Maximize QR Code</string>
|
||||
<string name="LinkAccountScreen__maximize_qr_code">QR कोड मोठा करा</string>
|
||||
<!-- Label shown in place of the QR code after the primary device has successfully scanned it -->
|
||||
<string name="LinkAccountScreen__scanned">Scanned</string>
|
||||
<string name="LinkAccountScreen__scanned">स्कॅन केले</string>
|
||||
<!-- Error label shown in place of the QR code if it could not be generated -->
|
||||
<string name="LinkAccountScreen__failed_to_generate_code">Failed to generate code</string>
|
||||
<string name="LinkAccountScreen__failed_to_generate_code">कोड तयार करता आला नाही</string>
|
||||
<!-- Footer prompt asking the user if they have another device with Signal. Precedes a separate "Create account" link. -->
|
||||
<string name="LinkAccountScreen__dont_have_signal_on_another_device">Don\'t have Signal on another device?</string>
|
||||
<string name="LinkAccountScreen__dont_have_signal_on_another_device">दुसऱ्या डिव्हाईसवर Signal नाही?</string>
|
||||
<!-- Inline link in the link-account screen footer that takes the user to the new-account creation flow instead of linking -->
|
||||
<string name="LinkAccountScreen__create_account">खाते तयार करा</string>
|
||||
</resources>
|
||||
|
||||
@@ -315,7 +315,7 @@
|
||||
<!-- PIN creation screen title when confirming the new Signal PIN. -->
|
||||
<string name="PinCreationScreen__confirm_your_pin">Sahkan PIN anda</string>
|
||||
<!-- Describes how to confirm the new Signal PIN. -->
|
||||
<string name="PinCreationScreen__reenter_pin_description">Re-enter the PIN you just created</string>
|
||||
<string name="PinCreationScreen__reenter_pin_description">Masukkan semula PIN yang anda telah cipta</string>
|
||||
<!-- Describes the purpose of creating a Signal PIN. -->
|
||||
<string name="PinCreationScreen__pins_can_help">PIN boleh membantu anda memulihkan akaun anda jika anda kehilangan telefon anda. </string>
|
||||
<!-- Labels the button to learn more about Signal PINs. -->
|
||||
@@ -355,7 +355,7 @@
|
||||
<!-- Title for the screen asking the user to grant the notification permission -->
|
||||
<string name="AllowNotificationsScreen__allow_notifications">Benarkan Pemberitahuan</string>
|
||||
<!-- Description for the screen asking the user to grant the notification permission -->
|
||||
<string name="AllowNotificationsScreen__signal_would_like_to_request_the_notification_permission">Signal would like to request the notification permission. This allows your device to display alerts when new messages arrive.</string>
|
||||
<string name="AllowNotificationsScreen__signal_would_like_to_request_the_notification_permission">Signal ingin meminta kebenaran pemberitahuan. Ini membenarkan peranti anda untuk memaparkan makluman apabila mesej baharu tiba.</string>
|
||||
<!-- Button label that dismisses the notification permission request without granting it -->
|
||||
<string name="AllowNotificationsScreen__not_now">Bukan sekarang</string>
|
||||
<!-- Button label that proceeds with the notification permission request -->
|
||||
@@ -364,36 +364,36 @@
|
||||
<!-- Title shown while messages are syncing from the primary device -->
|
||||
<string name="MessageSyncScreen__syncing_messages">Menyegerakkan mesej</string>
|
||||
<!-- Subtitle shown while messages are syncing from the primary device, indicating it may take a while -->
|
||||
<string name="MessageSyncScreen__this_may_take_a_few_minutes">This may take a few minutes…</string>
|
||||
<string name="MessageSyncScreen__this_may_take_a_few_minutes">Ini mungkin mengambil masa beberapa minit…</string>
|
||||
<!-- Progress label shown under the sync progress bar. %1$s is the amount downloaded so far (e.g. "1 MB"), %2$s is the total size to download (e.g. "3.2 MB") -->
|
||||
<string name="MessageSyncScreen__downloading_s_of_s">Memuat turun %1$s daripada %2$s</string>
|
||||
<!-- Informational notice in the sync screen footer, indicating the sync is end-to-end encrypted. Precedes a separate "Learn more" link. -->
|
||||
<string name="MessageSyncScreen__messages_and_chat_info_are_protected_by_e2ee">Messages and chat info are protected by end-to-end encryption, including the syncing process.</string>
|
||||
<string name="MessageSyncScreen__messages_and_chat_info_are_protected_by_e2ee">Mesej dan maklumat sembang dilindungi oleh penyulitan hujung ke hujung termasuk proses penyegerakan.</string>
|
||||
<!-- Inline link in the sync screen footer that opens documentation about end-to-end encryption during sync -->
|
||||
<string name="MessageSyncScreen__learn_more">Ketahui lebih lanjut</string>
|
||||
<!-- Button label that cancels the in-progress message sync -->
|
||||
<string name="MessageSyncScreen__cancel">Batal</string>
|
||||
|
||||
<!-- Title for the screen that shows a QR code the user scans with their existing primary device to link this device as a secondary -->
|
||||
<string name="LinkAccountScreen__scan_this_code_to_link_your_account">Scan this code to link your account</string>
|
||||
<string name="LinkAccountScreen__scan_this_code_to_link_your_account">Imbas kod ini untuk memautkan akaun anda</string>
|
||||
<!-- Step in the link-account instructions: open Signal on the user\'s existing phone -->
|
||||
<string name="LinkAccountScreen__open_signal_on_your_phone">Buka Signal di telefon anda</string>
|
||||
<!-- Step in the link-account instructions: tap profile picture to open Signal Settings -->
|
||||
<string name="LinkAccountScreen__tap_your_profile_picture_to_open_signal_settings">Tap your profile picture to open Signal Settings</string>
|
||||
<string name="LinkAccountScreen__tap_your_profile_picture_to_open_signal_settings">Ketik gambar profil anda untuk membuka Tetapan Signal</string>
|
||||
<!-- Step in the link-account instructions: navigate to the Linked devices section and tap Link new device. The quoted strings should match the button/menu labels in the primary device\'s settings. -->
|
||||
<string name="LinkAccountScreen__tap_linked_devices_and_link_new_device">Tap \"Linked devices\" and \"Link new device\"</string>
|
||||
<string name="LinkAccountScreen__tap_linked_devices_and_link_new_device">Ketik \"Peranti dipautkan\" dan\"Pautkan peranti baharu\"</string>
|
||||
<!-- Step in the link-account instructions: aim the primary device\'s camera at the QR code displayed on this screen -->
|
||||
<string name="LinkAccountScreen__position_the_camera_over_this_qr_code">Position the camera over this qr code</string>
|
||||
<string name="LinkAccountScreen__position_the_camera_over_this_qr_code">Halakan kamera ke atas kod qr ini</string>
|
||||
<!-- Button label opening help content for users who can\'t complete the link-account steps -->
|
||||
<string name="LinkAccountScreen__get_help_with_these_steps">Get help with these steps</string>
|
||||
<string name="LinkAccountScreen__get_help_with_these_steps">Dapatkan bantuan dengan langkah-langkah ini</string>
|
||||
<!-- Accessibility content description for the button that enlarges the QR code to full screen -->
|
||||
<string name="LinkAccountScreen__maximize_qr_code">Maximize QR Code</string>
|
||||
<string name="LinkAccountScreen__maximize_qr_code">Besarkan Kod QR</string>
|
||||
<!-- Label shown in place of the QR code after the primary device has successfully scanned it -->
|
||||
<string name="LinkAccountScreen__scanned">Scanned</string>
|
||||
<string name="LinkAccountScreen__scanned">Diimbas</string>
|
||||
<!-- Error label shown in place of the QR code if it could not be generated -->
|
||||
<string name="LinkAccountScreen__failed_to_generate_code">Failed to generate code</string>
|
||||
<string name="LinkAccountScreen__failed_to_generate_code">Gagal menjana kod</string>
|
||||
<!-- Footer prompt asking the user if they have another device with Signal. Precedes a separate "Create account" link. -->
|
||||
<string name="LinkAccountScreen__dont_have_signal_on_another_device">Don\'t have Signal on another device?</string>
|
||||
<string name="LinkAccountScreen__dont_have_signal_on_another_device">Tidak mempunyai Signal pada peranti lain?</string>
|
||||
<!-- Inline link in the link-account screen footer that takes the user to the new-account creation flow instead of linking -->
|
||||
<string name="LinkAccountScreen__create_account">Cipta akaun</string>
|
||||
</resources>
|
||||
|
||||
@@ -313,9 +313,9 @@
|
||||
<!-- PIN creation screen title. -->
|
||||
<string name="PinCreationScreen__create_your_pin">သင်၏ PIN နံပါတ်ကို ဖန်တီးပါ</string>
|
||||
<!-- PIN creation screen title when confirming the new Signal PIN. -->
|
||||
<string name="PinCreationScreen__confirm_your_pin">Confirm your PIN</string>
|
||||
<string name="PinCreationScreen__confirm_your_pin">သင့် PIN ကို အတည်ပြုရန်</string>
|
||||
<!-- Describes how to confirm the new Signal PIN. -->
|
||||
<string name="PinCreationScreen__reenter_pin_description">Re-enter the PIN you just created</string>
|
||||
<string name="PinCreationScreen__reenter_pin_description">သင်ဖန်တီးလိုက်သော PIN ကို ပြန်ရိုက်ထည့်ပါ</string>
|
||||
<!-- Describes the purpose of creating a Signal PIN. -->
|
||||
<string name="PinCreationScreen__pins_can_help">သင့်ဖုန်းပျောက်သွားပါက PIN သည် သင့်အကောင့်ကို ပြန်လည်ရယူရန် ကူညီပေးနိုင်ပါသည်။ </string>
|
||||
<!-- Labels the button to learn more about Signal PINs. -->
|
||||
@@ -327,11 +327,11 @@
|
||||
<!-- Labels the button to submit a new Signal PIN. -->
|
||||
<string name="PinCreationScreen__next">ဆက်သွားမည်</string>
|
||||
<!-- Hint shown below the create PIN field when numeric keyboard is active. -->
|
||||
<string name="PinCreationScreen__pin_at_least_4_digits">PIN must be at least 4 digits</string>
|
||||
<string name="PinCreationScreen__pin_at_least_4_digits">PIN သည် အနည်းဆုံး ဂဏန်း ၄ လုံးရှိရပါမည်</string>
|
||||
<!-- Hint shown below the create PIN field when alphanumeric keyboard is active. -->
|
||||
<string name="PinCreationScreen__pin_at_least_4_characters">PIN must be at least 4 characters</string>
|
||||
<string name="PinCreationScreen__pin_at_least_4_characters">PIN သည် အနည်းဆုံး အက္ခရာ ၄ လုံးရှိရပါမည်</string>
|
||||
<!-- Hint shown below the create PIN field when the user is confirming their new Signal PIN. -->
|
||||
<string name="PinCreationScreen__reenter_pin">Re-enter PIN</string>
|
||||
<string name="PinCreationScreen__reenter_pin">PIN ကို ပြန်ရိုက်ထည့်ပါ</string>
|
||||
|
||||
<!-- PIN entry screen title when registration lock is active. -->
|
||||
<string name="PinEntryScreen__registration_lock">မှတ်ပုံတင်မှု ပိတ်ထားခြင်း</string>
|
||||
@@ -341,7 +341,7 @@
|
||||
<string name="PinEntryScreen__enter_the_pin_you_created">Signal ကို ပထမဆုံးထည့်သွင်းစဥ်က ဖန်တီးခဲ့သည့် PIN ကို ရိုက်ထည့်ပါ။</string>
|
||||
<!-- Error shown when an incorrect PIN is entered. %1$d is the number of attempts remaining. -->
|
||||
<plurals name="PinEntryScreen__incorrect_pin">
|
||||
<item quantity="other">ပင်နံပါတ် မမှန်ကန်ပါ။ ကြိုးစားရန် %1$d ကြိမ် ကျန်ရှိပါသည်။</item>
|
||||
<item quantity="other">PIN မမှန်ကန်ပါ။ ကြိုးစားရန် %1$d ကြိမ် ကျန်ရှိပါသည်။</item>
|
||||
</plurals>
|
||||
<!-- Labels the button to get help with PIN entry. -->
|
||||
<string name="PinEntryScreen__need_help">အကူအညီ လိုအပ်ပါသလား?</string>
|
||||
@@ -353,9 +353,9 @@
|
||||
<string name="PinEntryScreen__continue">ရှေ့ဆက်ပါ</string>
|
||||
|
||||
<!-- Title for the screen asking the user to grant the notification permission -->
|
||||
<string name="AllowNotificationsScreen__allow_notifications">Allow Notifications</string>
|
||||
<string name="AllowNotificationsScreen__allow_notifications">အသိပေးချက်များကို ခွင့်ပြုရန်</string>
|
||||
<!-- Description for the screen asking the user to grant the notification permission -->
|
||||
<string name="AllowNotificationsScreen__signal_would_like_to_request_the_notification_permission">Signal would like to request the notification permission. This allows your device to display alerts when new messages arrive.</string>
|
||||
<string name="AllowNotificationsScreen__signal_would_like_to_request_the_notification_permission">Signal မှ အသိပေးချက်များအား ခွင့်ပြုချက် တောင်းခံလိုပါသည်။ ၎င်းသည် မက်ဆေ့ချ်အသစ်များ ရောက်ရှိသည့်အခါ သင့်စက်ပေါ်တွင် အသိပေးချက်များကို ပြသနိုင်စေပါသည်။</string>
|
||||
<!-- Button label that dismisses the notification permission request without granting it -->
|
||||
<string name="AllowNotificationsScreen__not_now">ယခု မလုပ်သေးပါ</string>
|
||||
<!-- Button label that proceeds with the notification permission request -->
|
||||
@@ -364,36 +364,36 @@
|
||||
<!-- Title shown while messages are syncing from the primary device -->
|
||||
<string name="MessageSyncScreen__syncing_messages">မက်ဆေ့ချ်များကို တူအောင်ညှိနေသည်</string>
|
||||
<!-- Subtitle shown while messages are syncing from the primary device, indicating it may take a while -->
|
||||
<string name="MessageSyncScreen__this_may_take_a_few_minutes">This may take a few minutes…</string>
|
||||
<string name="MessageSyncScreen__this_may_take_a_few_minutes">မိနစ်အနည်းငယ် ကြာနိုင်ပါသည်…</string>
|
||||
<!-- Progress label shown under the sync progress bar. %1$s is the amount downloaded so far (e.g. "1 MB"), %2$s is the total size to download (e.g. "3.2 MB") -->
|
||||
<string name="MessageSyncScreen__downloading_s_of_s">%2$s မှ %1$s ကို ဒေါင်းလုဒ်လုပ်နေသည်</string>
|
||||
<!-- Informational notice in the sync screen footer, indicating the sync is end-to-end encrypted. Precedes a separate "Learn more" link. -->
|
||||
<string name="MessageSyncScreen__messages_and_chat_info_are_protected_by_e2ee">Messages and chat info are protected by end-to-end encryption, including the syncing process.</string>
|
||||
<string name="MessageSyncScreen__messages_and_chat_info_are_protected_by_e2ee">ချိန်ကိုက်မှု လုပ်ငန်းစဉ်အပါအဝင် မက်ဆေ့ချ်များနှင့် ချက်(တ်)အချက်အလက်ကို ဟိုဘက်သည်ဘက် ကုဒ်ပြောင်းဝှက်ခြင်းဖြင့် ကာကွယ်ထားသည်။</string>
|
||||
<!-- Inline link in the sync screen footer that opens documentation about end-to-end encryption during sync -->
|
||||
<string name="MessageSyncScreen__learn_more">ပိုမိုလေ့လာရန်</string>
|
||||
<!-- Button label that cancels the in-progress message sync -->
|
||||
<string name="MessageSyncScreen__cancel">မလုပ်တော့ပါ</string>
|
||||
|
||||
<!-- Title for the screen that shows a QR code the user scans with their existing primary device to link this device as a secondary -->
|
||||
<string name="LinkAccountScreen__scan_this_code_to_link_your_account">Scan this code to link your account</string>
|
||||
<string name="LinkAccountScreen__scan_this_code_to_link_your_account">သင့်အကောင့်ကို ချိတ်ဆက်ရန် ဤကုဒ်ကို စကင်န်ဖတ်ပါ</string>
|
||||
<!-- Step in the link-account instructions: open Signal on the user\'s existing phone -->
|
||||
<string name="LinkAccountScreen__open_signal_on_your_phone">သင့်ဖုန်းတွင် Signal ကို ဖွင့်ရန်</string>
|
||||
<!-- Step in the link-account instructions: tap profile picture to open Signal Settings -->
|
||||
<string name="LinkAccountScreen__tap_your_profile_picture_to_open_signal_settings">Tap your profile picture to open Signal Settings</string>
|
||||
<string name="LinkAccountScreen__tap_your_profile_picture_to_open_signal_settings">Signal ဆက်တင်ကိုဖွင့်ရန် သင့်ပရိုဖိုင်ပုံကို နှိပ်ပါ</string>
|
||||
<!-- Step in the link-account instructions: navigate to the Linked devices section and tap Link new device. The quoted strings should match the button/menu labels in the primary device\'s settings. -->
|
||||
<string name="LinkAccountScreen__tap_linked_devices_and_link_new_device">Tap \"Linked devices\" and \"Link new device\"</string>
|
||||
<string name="LinkAccountScreen__tap_linked_devices_and_link_new_device">\"ချိတ်ထားသည့် စက်များ\" နှင့် \"စက်အသစ် ချိတ်ဆက်ရန်\" ကို နှိပ်ပါ</string>
|
||||
<!-- Step in the link-account instructions: aim the primary device\'s camera at the QR code displayed on this screen -->
|
||||
<string name="LinkAccountScreen__position_the_camera_over_this_qr_code">Position the camera over this qr code</string>
|
||||
<string name="LinkAccountScreen__position_the_camera_over_this_qr_code">ကင်မရာကို ဤ QR ကုဒ်ပေါ်တွင် ထားပါ</string>
|
||||
<!-- Button label opening help content for users who can\'t complete the link-account steps -->
|
||||
<string name="LinkAccountScreen__get_help_with_these_steps">Get help with these steps</string>
|
||||
<string name="LinkAccountScreen__get_help_with_these_steps">ဤအဆင့်များအတိုင်း အကူအညီရယူပါ</string>
|
||||
<!-- Accessibility content description for the button that enlarges the QR code to full screen -->
|
||||
<string name="LinkAccountScreen__maximize_qr_code">Maximize QR Code</string>
|
||||
<string name="LinkAccountScreen__maximize_qr_code">QR ကုဒ်ကို ချဲ့ပါ</string>
|
||||
<!-- Label shown in place of the QR code after the primary device has successfully scanned it -->
|
||||
<string name="LinkAccountScreen__scanned">Scanned</string>
|
||||
<string name="LinkAccountScreen__scanned">စကင်န်ဖတ်ပြီးပါပြီ</string>
|
||||
<!-- Error label shown in place of the QR code if it could not be generated -->
|
||||
<string name="LinkAccountScreen__failed_to_generate_code">Failed to generate code</string>
|
||||
<string name="LinkAccountScreen__failed_to_generate_code">ကုဒ်ထုတ်ပေးခြင်း မအောင်မြင်ပါ</string>
|
||||
<!-- Footer prompt asking the user if they have another device with Signal. Precedes a separate "Create account" link. -->
|
||||
<string name="LinkAccountScreen__dont_have_signal_on_another_device">Don\'t have Signal on another device?</string>
|
||||
<string name="LinkAccountScreen__dont_have_signal_on_another_device">အခြားစက်တွင် Signal မရှိဘူးလား။</string>
|
||||
<!-- Inline link in the link-account screen footer that takes the user to the new-account creation flow instead of linking -->
|
||||
<string name="LinkAccountScreen__create_account">အကောင့် ဖန်တီးရန်</string>
|
||||
</resources>
|
||||
|
||||
@@ -316,7 +316,7 @@
|
||||
<!-- PIN creation screen title when confirming the new Signal PIN. -->
|
||||
<string name="PinCreationScreen__confirm_your_pin">Bekreft PIN-koden</string>
|
||||
<!-- Describes how to confirm the new Signal PIN. -->
|
||||
<string name="PinCreationScreen__reenter_pin_description">Re-enter the PIN you just created</string>
|
||||
<string name="PinCreationScreen__reenter_pin_description">Skriv inn PIN-koden du akkurat opprettet</string>
|
||||
<!-- Describes the purpose of creating a Signal PIN. -->
|
||||
<string name="PinCreationScreen__pins_can_help">PIN-koden hjelper deg med å gjenopprette kontoen hvis du mister telefonen. </string>
|
||||
<!-- Labels the button to learn more about Signal PINs. -->
|
||||
@@ -328,7 +328,7 @@
|
||||
<!-- Labels the button to submit a new Signal PIN. -->
|
||||
<string name="PinCreationScreen__next">Neste</string>
|
||||
<!-- Hint shown below the create PIN field when numeric keyboard is active. -->
|
||||
<string name="PinCreationScreen__pin_at_least_4_digits">PIN-koden må være minst 4 sifre.</string>
|
||||
<string name="PinCreationScreen__pin_at_least_4_digits">PIN-koden må være minst 4 sifre</string>
|
||||
<!-- Hint shown below the create PIN field when alphanumeric keyboard is active. -->
|
||||
<string name="PinCreationScreen__pin_at_least_4_characters">PIN-koden må være minst 4 tegn</string>
|
||||
<!-- Hint shown below the create PIN field when the user is confirming their new Signal PIN. -->
|
||||
@@ -357,7 +357,7 @@
|
||||
<!-- Title for the screen asking the user to grant the notification permission -->
|
||||
<string name="AllowNotificationsScreen__allow_notifications">Tillat varsler</string>
|
||||
<!-- Description for the screen asking the user to grant the notification permission -->
|
||||
<string name="AllowNotificationsScreen__signal_would_like_to_request_the_notification_permission">Signal would like to request the notification permission. This allows your device to display alerts when new messages arrive.</string>
|
||||
<string name="AllowNotificationsScreen__signal_would_like_to_request_the_notification_permission">Signal ønsker tillatelse til å sende deg varsler. Dette lar enheten gi deg beskjed når du får nye meldinger.</string>
|
||||
<!-- Button label that dismisses the notification permission request without granting it -->
|
||||
<string name="AllowNotificationsScreen__not_now">Ikke nå</string>
|
||||
<!-- Button label that proceeds with the notification permission request -->
|
||||
@@ -366,36 +366,36 @@
|
||||
<!-- Title shown while messages are syncing from the primary device -->
|
||||
<string name="MessageSyncScreen__syncing_messages">Synkroniserer meldinger</string>
|
||||
<!-- Subtitle shown while messages are syncing from the primary device, indicating it may take a while -->
|
||||
<string name="MessageSyncScreen__this_may_take_a_few_minutes">This may take a few minutes…</string>
|
||||
<string name="MessageSyncScreen__this_may_take_a_few_minutes">Dette kan ta noen minutter …</string>
|
||||
<!-- Progress label shown under the sync progress bar. %1$s is the amount downloaded so far (e.g. "1 MB"), %2$s is the total size to download (e.g. "3.2 MB") -->
|
||||
<string name="MessageSyncScreen__downloading_s_of_s">Laster ned %1$s av %2$s</string>
|
||||
<!-- Informational notice in the sync screen footer, indicating the sync is end-to-end encrypted. Precedes a separate "Learn more" link. -->
|
||||
<string name="MessageSyncScreen__messages_and_chat_info_are_protected_by_e2ee">Messages and chat info are protected by end-to-end encryption, including the syncing process.</string>
|
||||
<string name="MessageSyncScreen__messages_and_chat_info_are_protected_by_e2ee">Meldinger og samtaleinnhold beskyttes av ende-til-ende-kryptering. Dette inkluderer også synkroniseringen.</string>
|
||||
<!-- Inline link in the sync screen footer that opens documentation about end-to-end encryption during sync -->
|
||||
<string name="MessageSyncScreen__learn_more">Les mer</string>
|
||||
<!-- Button label that cancels the in-progress message sync -->
|
||||
<string name="MessageSyncScreen__cancel">Avbryt</string>
|
||||
|
||||
<!-- Title for the screen that shows a QR code the user scans with their existing primary device to link this device as a secondary -->
|
||||
<string name="LinkAccountScreen__scan_this_code_to_link_your_account">Scan this code to link your account</string>
|
||||
<string name="LinkAccountScreen__scan_this_code_to_link_your_account">Skann denne koden for å koble til kontoen din</string>
|
||||
<!-- Step in the link-account instructions: open Signal on the user\'s existing phone -->
|
||||
<string name="LinkAccountScreen__open_signal_on_your_phone">Åpne Signal på telefonen</string>
|
||||
<!-- Step in the link-account instructions: tap profile picture to open Signal Settings -->
|
||||
<string name="LinkAccountScreen__tap_your_profile_picture_to_open_signal_settings">Tap your profile picture to open Signal Settings</string>
|
||||
<string name="LinkAccountScreen__tap_your_profile_picture_to_open_signal_settings">Trykk på profilbildet ditt for å åpne Signal-innstillingene</string>
|
||||
<!-- Step in the link-account instructions: navigate to the Linked devices section and tap Link new device. The quoted strings should match the button/menu labels in the primary device\'s settings. -->
|
||||
<string name="LinkAccountScreen__tap_linked_devices_and_link_new_device">Tap \"Linked devices\" and \"Link new device\"</string>
|
||||
<string name="LinkAccountScreen__tap_linked_devices_and_link_new_device">Trykk på «Tilkoblede enheter» og «Koble til ny enhet»</string>
|
||||
<!-- Step in the link-account instructions: aim the primary device\'s camera at the QR code displayed on this screen -->
|
||||
<string name="LinkAccountScreen__position_the_camera_over_this_qr_code">Position the camera over this qr code</string>
|
||||
<string name="LinkAccountScreen__position_the_camera_over_this_qr_code">Hold kameraet over denne QR-koden</string>
|
||||
<!-- Button label opening help content for users who can\'t complete the link-account steps -->
|
||||
<string name="LinkAccountScreen__get_help_with_these_steps">Get help with these steps</string>
|
||||
<string name="LinkAccountScreen__get_help_with_these_steps">Få hjelp med dette</string>
|
||||
<!-- Accessibility content description for the button that enlarges the QR code to full screen -->
|
||||
<string name="LinkAccountScreen__maximize_qr_code">Maximize QR Code</string>
|
||||
<string name="LinkAccountScreen__maximize_qr_code">Se QR-koden i fullskjerm</string>
|
||||
<!-- Label shown in place of the QR code after the primary device has successfully scanned it -->
|
||||
<string name="LinkAccountScreen__scanned">Scanned</string>
|
||||
<string name="LinkAccountScreen__scanned">Skannet</string>
|
||||
<!-- Error label shown in place of the QR code if it could not be generated -->
|
||||
<string name="LinkAccountScreen__failed_to_generate_code">Failed to generate code</string>
|
||||
<string name="LinkAccountScreen__failed_to_generate_code">Koden kunne ikke genereres</string>
|
||||
<!-- Footer prompt asking the user if they have another device with Signal. Precedes a separate "Create account" link. -->
|
||||
<string name="LinkAccountScreen__dont_have_signal_on_another_device">Don\'t have Signal on another device?</string>
|
||||
<string name="LinkAccountScreen__dont_have_signal_on_another_device">Har du ikke Signal på en annen enhet?</string>
|
||||
<!-- Inline link in the link-account screen footer that takes the user to the new-account creation flow instead of linking -->
|
||||
<string name="LinkAccountScreen__create_account">Opprett en konto</string>
|
||||
</resources>
|
||||
|
||||
@@ -225,7 +225,7 @@
|
||||
<!-- Prompt shown to users who don\'t have a Signal account yet -->
|
||||
<string name="WelcomeScreen__not_on_signal_yet">Nog niet op Signal?</string>
|
||||
<!-- Button to create a new Signal account -->
|
||||
<string name="WelcomeScreen__create_account">Account aanmaken</string>
|
||||
<string name="WelcomeScreen__create_account">Maak een account aan</string>
|
||||
|
||||
<!-- RemoteRestoreScreen -->
|
||||
<!-- Title for the remote backup restore screen -->
|
||||
@@ -316,7 +316,7 @@
|
||||
<!-- PIN creation screen title when confirming the new Signal PIN. -->
|
||||
<string name="PinCreationScreen__confirm_your_pin">Bevestig je pincode</string>
|
||||
<!-- Describes how to confirm the new Signal PIN. -->
|
||||
<string name="PinCreationScreen__reenter_pin_description">Re-enter the PIN you just created</string>
|
||||
<string name="PinCreationScreen__reenter_pin_description">Voer de zojuist aangemaakte pincode opnieuw in</string>
|
||||
<!-- Describes the purpose of creating a Signal PIN. -->
|
||||
<string name="PinCreationScreen__pins_can_help">Pincodes kunnen je helpen je account te herstellen als je je telefoon bent kwijtgeraakt. </string>
|
||||
<!-- Labels the button to learn more about Signal PINs. -->
|
||||
@@ -357,7 +357,7 @@
|
||||
<!-- Title for the screen asking the user to grant the notification permission -->
|
||||
<string name="AllowNotificationsScreen__allow_notifications">Meldingen toestaan</string>
|
||||
<!-- Description for the screen asking the user to grant the notification permission -->
|
||||
<string name="AllowNotificationsScreen__signal_would_like_to_request_the_notification_permission">Signal would like to request the notification permission. This allows your device to display alerts when new messages arrive.</string>
|
||||
<string name="AllowNotificationsScreen__signal_would_like_to_request_the_notification_permission">Signal wil graag de machtiging voor meldingen vragen. Hiermee kunnen meldingen voor nieuwe berichten op je apparaat worden weergegeven.</string>
|
||||
<!-- Button label that dismisses the notification permission request without granting it -->
|
||||
<string name="AllowNotificationsScreen__not_now">Niet nu</string>
|
||||
<!-- Button label that proceeds with the notification permission request -->
|
||||
@@ -366,36 +366,36 @@
|
||||
<!-- Title shown while messages are syncing from the primary device -->
|
||||
<string name="MessageSyncScreen__syncing_messages">Berichten synchroniseren</string>
|
||||
<!-- Subtitle shown while messages are syncing from the primary device, indicating it may take a while -->
|
||||
<string name="MessageSyncScreen__this_may_take_a_few_minutes">This may take a few minutes…</string>
|
||||
<string name="MessageSyncScreen__this_may_take_a_few_minutes">Dit kan enkele minuten duren…</string>
|
||||
<!-- Progress label shown under the sync progress bar. %1$s is the amount downloaded so far (e.g. "1 MB"), %2$s is the total size to download (e.g. "3.2 MB") -->
|
||||
<string name="MessageSyncScreen__downloading_s_of_s">%1$s van %2$s aan het downloaden</string>
|
||||
<!-- Informational notice in the sync screen footer, indicating the sync is end-to-end encrypted. Precedes a separate "Learn more" link. -->
|
||||
<string name="MessageSyncScreen__messages_and_chat_info_are_protected_by_e2ee">Messages and chat info are protected by end-to-end encryption, including the syncing process.</string>
|
||||
<string name="MessageSyncScreen__messages_and_chat_info_are_protected_by_e2ee">Berichten en chatgegevens worden beschermd door end-to-end-versleuteling, ook tijdens het synchronisatieproces.</string>
|
||||
<!-- Inline link in the sync screen footer that opens documentation about end-to-end encryption during sync -->
|
||||
<string name="MessageSyncScreen__learn_more">Meer lezen</string>
|
||||
<!-- Button label that cancels the in-progress message sync -->
|
||||
<string name="MessageSyncScreen__cancel">Annuleren</string>
|
||||
|
||||
<!-- Title for the screen that shows a QR code the user scans with their existing primary device to link this device as a secondary -->
|
||||
<string name="LinkAccountScreen__scan_this_code_to_link_your_account">Scan this code to link your account</string>
|
||||
<string name="LinkAccountScreen__scan_this_code_to_link_your_account">Scan deze code om je account te koppelen</string>
|
||||
<!-- Step in the link-account instructions: open Signal on the user\'s existing phone -->
|
||||
<string name="LinkAccountScreen__open_signal_on_your_phone">Open Signal op je telefoon</string>
|
||||
<!-- Step in the link-account instructions: tap profile picture to open Signal Settings -->
|
||||
<string name="LinkAccountScreen__tap_your_profile_picture_to_open_signal_settings">Tap your profile picture to open Signal Settings</string>
|
||||
<string name="LinkAccountScreen__tap_your_profile_picture_to_open_signal_settings">Tik op je profielfoto om Signal-instellingen te openen</string>
|
||||
<!-- Step in the link-account instructions: navigate to the Linked devices section and tap Link new device. The quoted strings should match the button/menu labels in the primary device\'s settings. -->
|
||||
<string name="LinkAccountScreen__tap_linked_devices_and_link_new_device">Tap \"Linked devices\" and \"Link new device\"</string>
|
||||
<string name="LinkAccountScreen__tap_linked_devices_and_link_new_device">Tip op ‘Gekoppelde apparaten’ en ‘Nieuw apparaat koppelen’</string>
|
||||
<!-- Step in the link-account instructions: aim the primary device\'s camera at the QR code displayed on this screen -->
|
||||
<string name="LinkAccountScreen__position_the_camera_over_this_qr_code">Position the camera over this qr code</string>
|
||||
<string name="LinkAccountScreen__position_the_camera_over_this_qr_code">Richt de camera op deze QR-code</string>
|
||||
<!-- Button label opening help content for users who can\'t complete the link-account steps -->
|
||||
<string name="LinkAccountScreen__get_help_with_these_steps">Get help with these steps</string>
|
||||
<string name="LinkAccountScreen__get_help_with_these_steps">Hulp bij deze stappen</string>
|
||||
<!-- Accessibility content description for the button that enlarges the QR code to full screen -->
|
||||
<string name="LinkAccountScreen__maximize_qr_code">Maximize QR Code</string>
|
||||
<string name="LinkAccountScreen__maximize_qr_code">QR-code vergroten</string>
|
||||
<!-- Label shown in place of the QR code after the primary device has successfully scanned it -->
|
||||
<string name="LinkAccountScreen__scanned">Scanned</string>
|
||||
<string name="LinkAccountScreen__scanned">Gescand</string>
|
||||
<!-- Error label shown in place of the QR code if it could not be generated -->
|
||||
<string name="LinkAccountScreen__failed_to_generate_code">Failed to generate code</string>
|
||||
<string name="LinkAccountScreen__failed_to_generate_code">Code genereren is mislukt</string>
|
||||
<!-- Footer prompt asking the user if they have another device with Signal. Precedes a separate "Create account" link. -->
|
||||
<string name="LinkAccountScreen__dont_have_signal_on_another_device">Don\'t have Signal on another device?</string>
|
||||
<string name="LinkAccountScreen__dont_have_signal_on_another_device">Heb je Signal niet op een ander apparaat?</string>
|
||||
<!-- Inline link in the link-account screen footer that takes the user to the new-account creation flow instead of linking -->
|
||||
<string name="LinkAccountScreen__create_account">Account aanmaken</string>
|
||||
<string name="LinkAccountScreen__create_account">Maak een account aan</string>
|
||||
</resources>
|
||||
|
||||
@@ -314,9 +314,9 @@
|
||||
<!-- PIN creation screen title. -->
|
||||
<string name="PinCreationScreen__create_your_pin">ਆਪਣਾ PIN ਬਣਾਓ</string>
|
||||
<!-- PIN creation screen title when confirming the new Signal PIN. -->
|
||||
<string name="PinCreationScreen__confirm_your_pin">Confirm your PIN</string>
|
||||
<string name="PinCreationScreen__confirm_your_pin">ਆਪਣੇ PIN ਦੀ ਪੁਸ਼ਟੀ ਕਰੋ</string>
|
||||
<!-- Describes how to confirm the new Signal PIN. -->
|
||||
<string name="PinCreationScreen__reenter_pin_description">Re-enter the PIN you just created</string>
|
||||
<string name="PinCreationScreen__reenter_pin_description">ਤੁਹਾਡੇ ਵੱਲੋਂ ਹੁਣੇ ਬਣਾਇਆ ਗਿਆ PIN ਦੁਬਾਰਾ ਦਰਜ ਕਰੋ</string>
|
||||
<!-- Describes the purpose of creating a Signal PIN. -->
|
||||
<string name="PinCreationScreen__pins_can_help">ਜੇਕਰ ਤੁਹਾਡਾ ਫ਼ੋਨ ਗੁਆਚ ਜਾਂਦਾ ਹੈ ਤਾਂ PIN ਦੀ ਮਦਦ ਨਾਲ ਤੁਸੀਂ ਆਪਣੇ ਖਾਤੇ ਨੂੰ ਰੀਸਟੋਰ ਕਰ ਸਕਦੇ ਹੋ। </string>
|
||||
<!-- Labels the button to learn more about Signal PINs. -->
|
||||
@@ -328,11 +328,11 @@
|
||||
<!-- Labels the button to submit a new Signal PIN. -->
|
||||
<string name="PinCreationScreen__next">ਅੱਗੇ</string>
|
||||
<!-- Hint shown below the create PIN field when numeric keyboard is active. -->
|
||||
<string name="PinCreationScreen__pin_at_least_4_digits">PIN must be at least 4 digits</string>
|
||||
<string name="PinCreationScreen__pin_at_least_4_digits">PIN ਵਿੱਚ ਘੱਟੋ-ਘੱਟ 4 ਅੰਕ ਹੋਣੇ ਲਾਜ਼ਮੀ ਹਨ</string>
|
||||
<!-- Hint shown below the create PIN field when alphanumeric keyboard is active. -->
|
||||
<string name="PinCreationScreen__pin_at_least_4_characters">PIN must be at least 4 characters</string>
|
||||
<string name="PinCreationScreen__pin_at_least_4_characters">PIN ਵਿੱਚ ਘੱਟੋ-ਘੱਟ 4 ਅੱਖਰ ਹੋਣੇ ਲਾਜ਼ਮੀ ਹਨ</string>
|
||||
<!-- Hint shown below the create PIN field when the user is confirming their new Signal PIN. -->
|
||||
<string name="PinCreationScreen__reenter_pin">Re-enter PIN</string>
|
||||
<string name="PinCreationScreen__reenter_pin">PIN ਦੁਬਾਰਾ ਦਰਜ ਕਰੋ</string>
|
||||
|
||||
<!-- PIN entry screen title when registration lock is active. -->
|
||||
<string name="PinEntryScreen__registration_lock">ਰਜਿਸਟਰੇਸ਼ਨ ਲੌਕ</string>
|
||||
@@ -355,9 +355,9 @@
|
||||
<string name="PinEntryScreen__continue">ਜਾਰੀ ਰੱਖੋ</string>
|
||||
|
||||
<!-- Title for the screen asking the user to grant the notification permission -->
|
||||
<string name="AllowNotificationsScreen__allow_notifications">Allow Notifications</string>
|
||||
<string name="AllowNotificationsScreen__allow_notifications">ਸੂਚਨਾਵਾਂ ਦੀ ਇਜਾਜ਼ਤ ਦਿਓ</string>
|
||||
<!-- Description for the screen asking the user to grant the notification permission -->
|
||||
<string name="AllowNotificationsScreen__signal_would_like_to_request_the_notification_permission">Signal would like to request the notification permission. This allows your device to display alerts when new messages arrive.</string>
|
||||
<string name="AllowNotificationsScreen__signal_would_like_to_request_the_notification_permission">Signal ਨੂੰ ਸੂਚਨਾ ਭੇਜਣ ਦੀ ਇਜਾਜ਼ਤ ਚਾਹੀਦੀ ਹੈ। ਇਸ ਨਾਲ ਤੁਹਾਡੇ ਡਿਵਾਈਸ \'ਤੇ ਨਵੇਂ ਸੁਨੇਹੇ ਆਉਣ \'ਤੇ ਸੂਚਨਾ ਦਿਖਾਉਣ ਦੀ ਸਹੂਲਤ ਮਿਲਦੀ ਹੈ।</string>
|
||||
<!-- Button label that dismisses the notification permission request without granting it -->
|
||||
<string name="AllowNotificationsScreen__not_now">ਹਾਲੇ ਨਹੀਂ</string>
|
||||
<!-- Button label that proceeds with the notification permission request -->
|
||||
@@ -366,36 +366,36 @@
|
||||
<!-- Title shown while messages are syncing from the primary device -->
|
||||
<string name="MessageSyncScreen__syncing_messages">ਸੁਨੇਹਿਆਂ ਨੂੰ ਸਿੰਕ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ</string>
|
||||
<!-- Subtitle shown while messages are syncing from the primary device, indicating it may take a while -->
|
||||
<string name="MessageSyncScreen__this_may_take_a_few_minutes">This may take a few minutes…</string>
|
||||
<string name="MessageSyncScreen__this_may_take_a_few_minutes">ਇਸ ਵਿੱਚ ਕੁਝ ਮਿੰਟ ਲੱਗ ਸਕਦੇ ਹਨ…</string>
|
||||
<!-- Progress label shown under the sync progress bar. %1$s is the amount downloaded so far (e.g. "1 MB"), %2$s is the total size to download (e.g. "3.2 MB") -->
|
||||
<string name="MessageSyncScreen__downloading_s_of_s">%2$s ਵਿੱਚੋਂ %1$s ਨੂੰ ਡਾਊਨਲੋਡ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ</string>
|
||||
<!-- Informational notice in the sync screen footer, indicating the sync is end-to-end encrypted. Precedes a separate "Learn more" link. -->
|
||||
<string name="MessageSyncScreen__messages_and_chat_info_are_protected_by_e2ee">Messages and chat info are protected by end-to-end encryption, including the syncing process.</string>
|
||||
<string name="MessageSyncScreen__messages_and_chat_info_are_protected_by_e2ee">ਸਿੰਕ ਕਰਨ ਦੀ ਪ੍ਰਕਿਰਿਆ ਸਮੇਤ, ਸੁਨੇਹੇ ਅਤੇ ਚੈਟ ਦੀ ਜਾਣਕਾਰੀ ਸਿਰੇ-ਤੋਂ-ਸਿਰੇ ਤੱਕ ਇਨਕ੍ਰਿਪਸ਼ਨ ਨਾਲ ਸੁਰੱਖਿਅਤ ਹੁੰਦੀ ਹੈ।</string>
|
||||
<!-- Inline link in the sync screen footer that opens documentation about end-to-end encryption during sync -->
|
||||
<string name="MessageSyncScreen__learn_more">ਹੋਰ ਜਾਣੋ</string>
|
||||
<!-- Button label that cancels the in-progress message sync -->
|
||||
<string name="MessageSyncScreen__cancel">ਰੱਦ ਕਰੋ</string>
|
||||
|
||||
<!-- Title for the screen that shows a QR code the user scans with their existing primary device to link this device as a secondary -->
|
||||
<string name="LinkAccountScreen__scan_this_code_to_link_your_account">Scan this code to link your account</string>
|
||||
<string name="LinkAccountScreen__scan_this_code_to_link_your_account">ਆਪਣੇ ਖਾਤੇ ਨੂੰ ਲਿੰਕ ਕਰਨ ਲਈ ਇਸ ਕੋਡ ਨੂੰ ਸਕੈਨ ਕਰੋ</string>
|
||||
<!-- Step in the link-account instructions: open Signal on the user\'s existing phone -->
|
||||
<string name="LinkAccountScreen__open_signal_on_your_phone">ਆਪਣੇ ਫ਼ੋਨ ਉੱਤੇ Signal ਖੋਲ੍ਹੋ</string>
|
||||
<!-- Step in the link-account instructions: tap profile picture to open Signal Settings -->
|
||||
<string name="LinkAccountScreen__tap_your_profile_picture_to_open_signal_settings">Tap your profile picture to open Signal Settings</string>
|
||||
<string name="LinkAccountScreen__tap_your_profile_picture_to_open_signal_settings">Signal ਸੈਟਿੰਗਾਂ ਖੋਲ੍ਹਣ ਲਈ ਆਪਣੀ ਪ੍ਰੋਫ਼ਾਈਲ ਫ਼ੋਟੋ \'ਤੇ ਟੈਪ ਕਰੋ</string>
|
||||
<!-- Step in the link-account instructions: navigate to the Linked devices section and tap Link new device. The quoted strings should match the button/menu labels in the primary device\'s settings. -->
|
||||
<string name="LinkAccountScreen__tap_linked_devices_and_link_new_device">Tap \"Linked devices\" and \"Link new device\"</string>
|
||||
<string name="LinkAccountScreen__tap_linked_devices_and_link_new_device">\"ਲਿੰਕ ਕੀਤੇ ਡਿਵਾਈਸ\" ਅਤੇ \"ਨਵਾਂ ਡਿਵਾਈਸ ਲਿੰਕ ਕਰੋ\" ਉੱਤੇ ਟੈਪ ਕਰੋ</string>
|
||||
<!-- Step in the link-account instructions: aim the primary device\'s camera at the QR code displayed on this screen -->
|
||||
<string name="LinkAccountScreen__position_the_camera_over_this_qr_code">Position the camera over this qr code</string>
|
||||
<string name="LinkAccountScreen__position_the_camera_over_this_qr_code">ਕੈਮਰੇ ਨੂੰ ਇਸ QR ਕੋਡ ਉੱਤੇ ਰੱਖੋ</string>
|
||||
<!-- Button label opening help content for users who can\'t complete the link-account steps -->
|
||||
<string name="LinkAccountScreen__get_help_with_these_steps">Get help with these steps</string>
|
||||
<string name="LinkAccountScreen__get_help_with_these_steps">ਇਹਨਾਂ ਕਦਮਾਂ ਨਾਲ ਮਦਦ ਪ੍ਰਾਪਤ ਕਰੋ</string>
|
||||
<!-- Accessibility content description for the button that enlarges the QR code to full screen -->
|
||||
<string name="LinkAccountScreen__maximize_qr_code">Maximize QR Code</string>
|
||||
<string name="LinkAccountScreen__maximize_qr_code">QR ਕੋਡ ਨੂੰ ਵੱਡਾ ਕਰੋ</string>
|
||||
<!-- Label shown in place of the QR code after the primary device has successfully scanned it -->
|
||||
<string name="LinkAccountScreen__scanned">Scanned</string>
|
||||
<string name="LinkAccountScreen__scanned">ਸਕੈਨ ਕੀਤਾ ਗਿਆ</string>
|
||||
<!-- Error label shown in place of the QR code if it could not be generated -->
|
||||
<string name="LinkAccountScreen__failed_to_generate_code">Failed to generate code</string>
|
||||
<string name="LinkAccountScreen__failed_to_generate_code">ਕੋਡ ਬਣਾਉਣ ਵਿੱਚ ਅਸਫਲ ਰਹੇ</string>
|
||||
<!-- Footer prompt asking the user if they have another device with Signal. Precedes a separate "Create account" link. -->
|
||||
<string name="LinkAccountScreen__dont_have_signal_on_another_device">Don\'t have Signal on another device?</string>
|
||||
<string name="LinkAccountScreen__dont_have_signal_on_another_device">ਕੀ ਤੁਹਾਡੇ ਕਿਸੇ ਹੋਰ ਡਿਵਾਈਸ \'ਤੇ Signal ਨਹੀਂ ਹੈ?</string>
|
||||
<!-- Inline link in the link-account screen footer that takes the user to the new-account creation flow instead of linking -->
|
||||
<string name="LinkAccountScreen__create_account">ਖਾਤਾ ਬਣਾਓ</string>
|
||||
</resources>
|
||||
|
||||
@@ -318,7 +318,7 @@
|
||||
<!-- PIN creation screen title when confirming the new Signal PIN. -->
|
||||
<string name="PinCreationScreen__confirm_your_pin">Potwierdź PIN</string>
|
||||
<!-- Describes how to confirm the new Signal PIN. -->
|
||||
<string name="PinCreationScreen__reenter_pin_description">Re-enter the PIN you just created</string>
|
||||
<string name="PinCreationScreen__reenter_pin_description">Wpisz ponownie utworzony właśnie PIN</string>
|
||||
<!-- Describes the purpose of creating a Signal PIN. -->
|
||||
<string name="PinCreationScreen__pins_can_help">PIN służy do przywracania konta, gdy stracisz swój telefon. </string>
|
||||
<!-- Labels the button to learn more about Signal PINs. -->
|
||||
@@ -361,7 +361,7 @@
|
||||
<!-- Title for the screen asking the user to grant the notification permission -->
|
||||
<string name="AllowNotificationsScreen__allow_notifications">Zezwól na powiadomienia</string>
|
||||
<!-- Description for the screen asking the user to grant the notification permission -->
|
||||
<string name="AllowNotificationsScreen__signal_would_like_to_request_the_notification_permission">Signal would like to request the notification permission. This allows your device to display alerts when new messages arrive.</string>
|
||||
<string name="AllowNotificationsScreen__signal_would_like_to_request_the_notification_permission">Signal prosi Cię o zgodę na wysyłanie powiadomień. Dzięki temu będziesz otrzymywać powiadomienia o nowych wiadomościach.</string>
|
||||
<!-- Button label that dismisses the notification permission request without granting it -->
|
||||
<string name="AllowNotificationsScreen__not_now">Nie teraz</string>
|
||||
<!-- Button label that proceeds with the notification permission request -->
|
||||
@@ -370,36 +370,36 @@
|
||||
<!-- Title shown while messages are syncing from the primary device -->
|
||||
<string name="MessageSyncScreen__syncing_messages">Synchronizowanie wiadomości</string>
|
||||
<!-- Subtitle shown while messages are syncing from the primary device, indicating it may take a while -->
|
||||
<string name="MessageSyncScreen__this_may_take_a_few_minutes">This may take a few minutes…</string>
|
||||
<string name="MessageSyncScreen__this_may_take_a_few_minutes">Może to potrwać kilka minut…</string>
|
||||
<!-- Progress label shown under the sync progress bar. %1$s is the amount downloaded so far (e.g. "1 MB"), %2$s is the total size to download (e.g. "3.2 MB") -->
|
||||
<string name="MessageSyncScreen__downloading_s_of_s">Pobieranie %1$s z %2$s</string>
|
||||
<!-- Informational notice in the sync screen footer, indicating the sync is end-to-end encrypted. Precedes a separate "Learn more" link. -->
|
||||
<string name="MessageSyncScreen__messages_and_chat_info_are_protected_by_e2ee">Messages and chat info are protected by end-to-end encryption, including the syncing process.</string>
|
||||
<string name="MessageSyncScreen__messages_and_chat_info_are_protected_by_e2ee">Wiadomości i informacje o czacie są szyfrowane metodą end-to-end. Dotyczy to także procesu synchronizacji.</string>
|
||||
<!-- Inline link in the sync screen footer that opens documentation about end-to-end encryption during sync -->
|
||||
<string name="MessageSyncScreen__learn_more">Dowiedz się więcej</string>
|
||||
<!-- Button label that cancels the in-progress message sync -->
|
||||
<string name="MessageSyncScreen__cancel">Anuluj</string>
|
||||
|
||||
<!-- Title for the screen that shows a QR code the user scans with their existing primary device to link this device as a secondary -->
|
||||
<string name="LinkAccountScreen__scan_this_code_to_link_your_account">Scan this code to link your account</string>
|
||||
<string name="LinkAccountScreen__scan_this_code_to_link_your_account">Zeskanuj ten kod, aby połączyć nowe urządzenie</string>
|
||||
<!-- Step in the link-account instructions: open Signal on the user\'s existing phone -->
|
||||
<string name="LinkAccountScreen__open_signal_on_your_phone">Otwórz Signal na telefonie</string>
|
||||
<!-- Step in the link-account instructions: tap profile picture to open Signal Settings -->
|
||||
<string name="LinkAccountScreen__tap_your_profile_picture_to_open_signal_settings">Tap your profile picture to open Signal Settings</string>
|
||||
<string name="LinkAccountScreen__tap_your_profile_picture_to_open_signal_settings">Dotknij ikony profilu, aby wyświetlić ustawienia aplikacji Signal</string>
|
||||
<!-- Step in the link-account instructions: navigate to the Linked devices section and tap Link new device. The quoted strings should match the button/menu labels in the primary device\'s settings. -->
|
||||
<string name="LinkAccountScreen__tap_linked_devices_and_link_new_device">Tap \"Linked devices\" and \"Link new device\"</string>
|
||||
<string name="LinkAccountScreen__tap_linked_devices_and_link_new_device">Dotknij opcji „Połączone urządzenia”, a następnie „Połącz nowe urządzenie”</string>
|
||||
<!-- Step in the link-account instructions: aim the primary device\'s camera at the QR code displayed on this screen -->
|
||||
<string name="LinkAccountScreen__position_the_camera_over_this_qr_code">Position the camera over this qr code</string>
|
||||
<string name="LinkAccountScreen__position_the_camera_over_this_qr_code">Skieruj aparat na ten kod QR</string>
|
||||
<!-- Button label opening help content for users who can\'t complete the link-account steps -->
|
||||
<string name="LinkAccountScreen__get_help_with_these_steps">Get help with these steps</string>
|
||||
<string name="LinkAccountScreen__get_help_with_these_steps">Uzyskaj więcej wskazówek</string>
|
||||
<!-- Accessibility content description for the button that enlarges the QR code to full screen -->
|
||||
<string name="LinkAccountScreen__maximize_qr_code">Maximize QR Code</string>
|
||||
<string name="LinkAccountScreen__maximize_qr_code">Powiększ kod QR</string>
|
||||
<!-- Label shown in place of the QR code after the primary device has successfully scanned it -->
|
||||
<string name="LinkAccountScreen__scanned">Scanned</string>
|
||||
<string name="LinkAccountScreen__scanned">Zeskanowano</string>
|
||||
<!-- Error label shown in place of the QR code if it could not be generated -->
|
||||
<string name="LinkAccountScreen__failed_to_generate_code">Failed to generate code</string>
|
||||
<string name="LinkAccountScreen__failed_to_generate_code">Nie udało się wygenerować kodu</string>
|
||||
<!-- Footer prompt asking the user if they have another device with Signal. Precedes a separate "Create account" link. -->
|
||||
<string name="LinkAccountScreen__dont_have_signal_on_another_device">Don\'t have Signal on another device?</string>
|
||||
<string name="LinkAccountScreen__dont_have_signal_on_another_device">Nie masz aplikacji Signal na innym urządzeniu?</string>
|
||||
<!-- Inline link in the link-account screen footer that takes the user to the new-account creation flow instead of linking -->
|
||||
<string name="LinkAccountScreen__create_account">Utwórz konto</string>
|
||||
</resources>
|
||||
|
||||
@@ -316,7 +316,7 @@
|
||||
<!-- PIN creation screen title when confirming the new Signal PIN. -->
|
||||
<string name="PinCreationScreen__confirm_your_pin">Confirme o seu PIN</string>
|
||||
<!-- Describes how to confirm the new Signal PIN. -->
|
||||
<string name="PinCreationScreen__reenter_pin_description">Re-enter the PIN you just created</string>
|
||||
<string name="PinCreationScreen__reenter_pin_description">Digite novamente o PIN que você acabou de criar</string>
|
||||
<!-- Describes the purpose of creating a Signal PIN. -->
|
||||
<string name="PinCreationScreen__pins_can_help">Os PINs ajudam você a restaurar sua conta caso perca o telefone. </string>
|
||||
<!-- Labels the button to learn more about Signal PINs. -->
|
||||
@@ -357,7 +357,7 @@
|
||||
<!-- Title for the screen asking the user to grant the notification permission -->
|
||||
<string name="AllowNotificationsScreen__allow_notifications">Permitir notificações</string>
|
||||
<!-- Description for the screen asking the user to grant the notification permission -->
|
||||
<string name="AllowNotificationsScreen__signal_would_like_to_request_the_notification_permission">Signal would like to request the notification permission. This allows your device to display alerts when new messages arrive.</string>
|
||||
<string name="AllowNotificationsScreen__signal_would_like_to_request_the_notification_permission">O Signal gostaria de solicitar a permissão para enviar notificações. Isso permite que seu dispositivo exiba alertas quando novas mensagens chegarem. </string>
|
||||
<!-- Button label that dismisses the notification permission request without granting it -->
|
||||
<string name="AllowNotificationsScreen__not_now">Agora não</string>
|
||||
<!-- Button label that proceeds with the notification permission request -->
|
||||
@@ -366,36 +366,36 @@
|
||||
<!-- Title shown while messages are syncing from the primary device -->
|
||||
<string name="MessageSyncScreen__syncing_messages">Sincronizando mensagens</string>
|
||||
<!-- Subtitle shown while messages are syncing from the primary device, indicating it may take a while -->
|
||||
<string name="MessageSyncScreen__this_may_take_a_few_minutes">This may take a few minutes…</string>
|
||||
<string name="MessageSyncScreen__this_may_take_a_few_minutes">Isso pode levar alguns minutos…</string>
|
||||
<!-- Progress label shown under the sync progress bar. %1$s is the amount downloaded so far (e.g. "1 MB"), %2$s is the total size to download (e.g. "3.2 MB") -->
|
||||
<string name="MessageSyncScreen__downloading_s_of_s">Baixando %1$s de %2$s</string>
|
||||
<!-- Informational notice in the sync screen footer, indicating the sync is end-to-end encrypted. Precedes a separate "Learn more" link. -->
|
||||
<string name="MessageSyncScreen__messages_and_chat_info_are_protected_by_e2ee">Messages and chat info are protected by end-to-end encryption, including the syncing process.</string>
|
||||
<string name="MessageSyncScreen__messages_and_chat_info_are_protected_by_e2ee">As mensagens e as informações das conversas são protegidas por criptografia de ponta a ponta, inclusive durante o processo de sincronização. </string>
|
||||
<!-- Inline link in the sync screen footer that opens documentation about end-to-end encryption during sync -->
|
||||
<string name="MessageSyncScreen__learn_more">Saiba mais</string>
|
||||
<!-- Button label that cancels the in-progress message sync -->
|
||||
<string name="MessageSyncScreen__cancel">Cancelar</string>
|
||||
|
||||
<!-- Title for the screen that shows a QR code the user scans with their existing primary device to link this device as a secondary -->
|
||||
<string name="LinkAccountScreen__scan_this_code_to_link_your_account">Scan this code to link your account</string>
|
||||
<string name="LinkAccountScreen__scan_this_code_to_link_your_account">Escaneie este código para vincular sua conta</string>
|
||||
<!-- Step in the link-account instructions: open Signal on the user\'s existing phone -->
|
||||
<string name="LinkAccountScreen__open_signal_on_your_phone">Abra o Signal no seu celular</string>
|
||||
<!-- Step in the link-account instructions: tap profile picture to open Signal Settings -->
|
||||
<string name="LinkAccountScreen__tap_your_profile_picture_to_open_signal_settings">Tap your profile picture to open Signal Settings</string>
|
||||
<string name="LinkAccountScreen__tap_your_profile_picture_to_open_signal_settings">Toque na sua foto de perfil para abrir as configurações do Signal</string>
|
||||
<!-- Step in the link-account instructions: navigate to the Linked devices section and tap Link new device. The quoted strings should match the button/menu labels in the primary device\'s settings. -->
|
||||
<string name="LinkAccountScreen__tap_linked_devices_and_link_new_device">Tap \"Linked devices\" and \"Link new device\"</string>
|
||||
<string name="LinkAccountScreen__tap_linked_devices_and_link_new_device">Toque em \"Dispositivos vinculados\" e em \"Vincular novo dispositivo\"</string>
|
||||
<!-- Step in the link-account instructions: aim the primary device\'s camera at the QR code displayed on this screen -->
|
||||
<string name="LinkAccountScreen__position_the_camera_over_this_qr_code">Position the camera over this qr code</string>
|
||||
<string name="LinkAccountScreen__position_the_camera_over_this_qr_code">Posicione a câmera sobre este QR code</string>
|
||||
<!-- Button label opening help content for users who can\'t complete the link-account steps -->
|
||||
<string name="LinkAccountScreen__get_help_with_these_steps">Get help with these steps</string>
|
||||
<string name="LinkAccountScreen__get_help_with_these_steps">Receba ajuda com essas etapas</string>
|
||||
<!-- Accessibility content description for the button that enlarges the QR code to full screen -->
|
||||
<string name="LinkAccountScreen__maximize_qr_code">Maximize QR Code</string>
|
||||
<string name="LinkAccountScreen__maximize_qr_code">Maximize o QR code</string>
|
||||
<!-- Label shown in place of the QR code after the primary device has successfully scanned it -->
|
||||
<string name="LinkAccountScreen__scanned">Scanned</string>
|
||||
<string name="LinkAccountScreen__scanned">Escaneado</string>
|
||||
<!-- Error label shown in place of the QR code if it could not be generated -->
|
||||
<string name="LinkAccountScreen__failed_to_generate_code">Failed to generate code</string>
|
||||
<string name="LinkAccountScreen__failed_to_generate_code">Falha ao gerar QR code</string>
|
||||
<!-- Footer prompt asking the user if they have another device with Signal. Precedes a separate "Create account" link. -->
|
||||
<string name="LinkAccountScreen__dont_have_signal_on_another_device">Don\'t have Signal on another device?</string>
|
||||
<string name="LinkAccountScreen__dont_have_signal_on_another_device">Não tem o Signal em outro dispositivo?</string>
|
||||
<!-- Inline link in the link-account screen footer that takes the user to the new-account creation flow instead of linking -->
|
||||
<string name="LinkAccountScreen__create_account">Criar conta</string>
|
||||
</resources>
|
||||
|
||||
@@ -316,7 +316,7 @@
|
||||
<!-- PIN creation screen title when confirming the new Signal PIN. -->
|
||||
<string name="PinCreationScreen__confirm_your_pin">Confirme o seu PIN</string>
|
||||
<!-- Describes how to confirm the new Signal PIN. -->
|
||||
<string name="PinCreationScreen__reenter_pin_description">Re-enter the PIN you just created</string>
|
||||
<string name="PinCreationScreen__reenter_pin_description">Reintroduza o PIN que acabou de criar</string>
|
||||
<!-- Describes the purpose of creating a Signal PIN. -->
|
||||
<string name="PinCreationScreen__pins_can_help">Os PINs podem ajudar a restaurar a conta se perder o telemóvel. </string>
|
||||
<!-- Labels the button to learn more about Signal PINs. -->
|
||||
@@ -357,7 +357,7 @@
|
||||
<!-- Title for the screen asking the user to grant the notification permission -->
|
||||
<string name="AllowNotificationsScreen__allow_notifications">Permitir notificações</string>
|
||||
<!-- Description for the screen asking the user to grant the notification permission -->
|
||||
<string name="AllowNotificationsScreen__signal_would_like_to_request_the_notification_permission">Signal would like to request the notification permission. This allows your device to display alerts when new messages arrive.</string>
|
||||
<string name="AllowNotificationsScreen__signal_would_like_to_request_the_notification_permission">O Signal gostaria de pedir a autorização de notificações. Isto permite ao seu dispositivo mostrar alertas quando chegam mensagens novas.</string>
|
||||
<!-- Button label that dismisses the notification permission request without granting it -->
|
||||
<string name="AllowNotificationsScreen__not_now">Agora não</string>
|
||||
<!-- Button label that proceeds with the notification permission request -->
|
||||
@@ -366,36 +366,36 @@
|
||||
<!-- Title shown while messages are syncing from the primary device -->
|
||||
<string name="MessageSyncScreen__syncing_messages">A sincronizar mensagens</string>
|
||||
<!-- Subtitle shown while messages are syncing from the primary device, indicating it may take a while -->
|
||||
<string name="MessageSyncScreen__this_may_take_a_few_minutes">This may take a few minutes…</string>
|
||||
<string name="MessageSyncScreen__this_may_take_a_few_minutes">Isto pode demorar alguns minutos…</string>
|
||||
<!-- Progress label shown under the sync progress bar. %1$s is the amount downloaded so far (e.g. "1 MB"), %2$s is the total size to download (e.g. "3.2 MB") -->
|
||||
<string name="MessageSyncScreen__downloading_s_of_s">A transferir %1$s de %2$s</string>
|
||||
<!-- Informational notice in the sync screen footer, indicating the sync is end-to-end encrypted. Precedes a separate "Learn more" link. -->
|
||||
<string name="MessageSyncScreen__messages_and_chat_info_are_protected_by_e2ee">Messages and chat info are protected by end-to-end encryption, including the syncing process.</string>
|
||||
<string name="MessageSyncScreen__messages_and_chat_info_are_protected_by_e2ee">As informações das mensagens e chats são protegidas por encriptação de ponta a ponta, incluindo o processo de sincronização.</string>
|
||||
<!-- Inline link in the sync screen footer that opens documentation about end-to-end encryption during sync -->
|
||||
<string name="MessageSyncScreen__learn_more">Saber mais</string>
|
||||
<!-- Button label that cancels the in-progress message sync -->
|
||||
<string name="MessageSyncScreen__cancel">Cancelar</string>
|
||||
|
||||
<!-- Title for the screen that shows a QR code the user scans with their existing primary device to link this device as a secondary -->
|
||||
<string name="LinkAccountScreen__scan_this_code_to_link_your_account">Scan this code to link your account</string>
|
||||
<string name="LinkAccountScreen__scan_this_code_to_link_your_account">Leia este código para vincular a sua conta</string>
|
||||
<!-- Step in the link-account instructions: open Signal on the user\'s existing phone -->
|
||||
<string name="LinkAccountScreen__open_signal_on_your_phone">Abra o Signal no seu telemóvel</string>
|
||||
<!-- Step in the link-account instructions: tap profile picture to open Signal Settings -->
|
||||
<string name="LinkAccountScreen__tap_your_profile_picture_to_open_signal_settings">Tap your profile picture to open Signal Settings</string>
|
||||
<string name="LinkAccountScreen__tap_your_profile_picture_to_open_signal_settings">Toque na sua foto de perfil e abra as definições do Signal</string>
|
||||
<!-- Step in the link-account instructions: navigate to the Linked devices section and tap Link new device. The quoted strings should match the button/menu labels in the primary device\'s settings. -->
|
||||
<string name="LinkAccountScreen__tap_linked_devices_and_link_new_device">Tap \"Linked devices\" and \"Link new device\"</string>
|
||||
<string name="LinkAccountScreen__tap_linked_devices_and_link_new_device">Toque em \"Dispositivos vinculados\" e \"Vincular novo dispositivo\"</string>
|
||||
<!-- Step in the link-account instructions: aim the primary device\'s camera at the QR code displayed on this screen -->
|
||||
<string name="LinkAccountScreen__position_the_camera_over_this_qr_code">Position the camera over this qr code</string>
|
||||
<string name="LinkAccountScreen__position_the_camera_over_this_qr_code">Posicione a câmara por cima deste código QR</string>
|
||||
<!-- Button label opening help content for users who can\'t complete the link-account steps -->
|
||||
<string name="LinkAccountScreen__get_help_with_these_steps">Get help with these steps</string>
|
||||
<string name="LinkAccountScreen__get_help_with_these_steps">Pedir ajuda para estes passos</string>
|
||||
<!-- Accessibility content description for the button that enlarges the QR code to full screen -->
|
||||
<string name="LinkAccountScreen__maximize_qr_code">Maximize QR Code</string>
|
||||
<string name="LinkAccountScreen__maximize_qr_code">Maximizar código QR</string>
|
||||
<!-- Label shown in place of the QR code after the primary device has successfully scanned it -->
|
||||
<string name="LinkAccountScreen__scanned">Scanned</string>
|
||||
<string name="LinkAccountScreen__scanned">Lido</string>
|
||||
<!-- Error label shown in place of the QR code if it could not be generated -->
|
||||
<string name="LinkAccountScreen__failed_to_generate_code">Failed to generate code</string>
|
||||
<string name="LinkAccountScreen__failed_to_generate_code">Falha ao gerar o código</string>
|
||||
<!-- Footer prompt asking the user if they have another device with Signal. Precedes a separate "Create account" link. -->
|
||||
<string name="LinkAccountScreen__dont_have_signal_on_another_device">Don\'t have Signal on another device?</string>
|
||||
<string name="LinkAccountScreen__dont_have_signal_on_another_device">Não tem o Signal noutro dispositivo?</string>
|
||||
<!-- Inline link in the link-account screen footer that takes the user to the new-account creation flow instead of linking -->
|
||||
<string name="LinkAccountScreen__create_account">Criar conta</string>
|
||||
</resources>
|
||||
|
||||
@@ -317,7 +317,7 @@
|
||||
<!-- PIN creation screen title when confirming the new Signal PIN. -->
|
||||
<string name="PinCreationScreen__confirm_your_pin">Confirmă PIN-ul</string>
|
||||
<!-- Describes how to confirm the new Signal PIN. -->
|
||||
<string name="PinCreationScreen__reenter_pin_description">Re-enter the PIN you just created</string>
|
||||
<string name="PinCreationScreen__reenter_pin_description">Re-introdu PIN-ul pe care tocmai l-ai creat</string>
|
||||
<!-- Describes the purpose of creating a Signal PIN. -->
|
||||
<string name="PinCreationScreen__pins_can_help">PIN-urile te pot ajuta să îți restaurezi contul dacă îți pierzi telefonul. </string>
|
||||
<!-- Labels the button to learn more about Signal PINs. -->
|
||||
@@ -359,7 +359,7 @@
|
||||
<!-- Title for the screen asking the user to grant the notification permission -->
|
||||
<string name="AllowNotificationsScreen__allow_notifications">Permite notificările</string>
|
||||
<!-- Description for the screen asking the user to grant the notification permission -->
|
||||
<string name="AllowNotificationsScreen__signal_would_like_to_request_the_notification_permission">Signal would like to request the notification permission. This allows your device to display alerts when new messages arrive.</string>
|
||||
<string name="AllowNotificationsScreen__signal_would_like_to_request_the_notification_permission">Signal ar vrea să ceară permisiunea pentru notificări. Asta permite dispozitivului să afișeze alerte când sosesc noile mesaje.</string>
|
||||
<!-- Button label that dismisses the notification permission request without granting it -->
|
||||
<string name="AllowNotificationsScreen__not_now">Nu acum</string>
|
||||
<!-- Button label that proceeds with the notification permission request -->
|
||||
@@ -368,36 +368,36 @@
|
||||
<!-- Title shown while messages are syncing from the primary device -->
|
||||
<string name="MessageSyncScreen__syncing_messages">Se sincronizează mesajele</string>
|
||||
<!-- Subtitle shown while messages are syncing from the primary device, indicating it may take a while -->
|
||||
<string name="MessageSyncScreen__this_may_take_a_few_minutes">This may take a few minutes…</string>
|
||||
<string name="MessageSyncScreen__this_may_take_a_few_minutes">Această operațiune poate dura câteva minute…</string>
|
||||
<!-- Progress label shown under the sync progress bar. %1$s is the amount downloaded so far (e.g. "1 MB"), %2$s is the total size to download (e.g. "3.2 MB") -->
|
||||
<string name="MessageSyncScreen__downloading_s_of_s">Se descarcă %1$s din %2$s</string>
|
||||
<!-- Informational notice in the sync screen footer, indicating the sync is end-to-end encrypted. Precedes a separate "Learn more" link. -->
|
||||
<string name="MessageSyncScreen__messages_and_chat_info_are_protected_by_e2ee">Messages and chat info are protected by end-to-end encryption, including the syncing process.</string>
|
||||
<string name="MessageSyncScreen__messages_and_chat_info_are_protected_by_e2ee">Mesajele și informațiile legate de conversații sunt protejate prin criptare end-to-end, inclusiv prin procesul de sincronizare.</string>
|
||||
<!-- Inline link in the sync screen footer that opens documentation about end-to-end encryption during sync -->
|
||||
<string name="MessageSyncScreen__learn_more">Află mai multe</string>
|
||||
<!-- Button label that cancels the in-progress message sync -->
|
||||
<string name="MessageSyncScreen__cancel">Anulează</string>
|
||||
|
||||
<!-- Title for the screen that shows a QR code the user scans with their existing primary device to link this device as a secondary -->
|
||||
<string name="LinkAccountScreen__scan_this_code_to_link_your_account">Scan this code to link your account</string>
|
||||
<string name="LinkAccountScreen__scan_this_code_to_link_your_account">Scanează acest cod pentru a-ți conecta contul</string>
|
||||
<!-- Step in the link-account instructions: open Signal on the user\'s existing phone -->
|
||||
<string name="LinkAccountScreen__open_signal_on_your_phone">Deschide Signal pe telefonul tău</string>
|
||||
<!-- Step in the link-account instructions: tap profile picture to open Signal Settings -->
|
||||
<string name="LinkAccountScreen__tap_your_profile_picture_to_open_signal_settings">Tap your profile picture to open Signal Settings</string>
|
||||
<string name="LinkAccountScreen__tap_your_profile_picture_to_open_signal_settings">Atinge imaginea de profil ca să deschizi Setări Signal</string>
|
||||
<!-- Step in the link-account instructions: navigate to the Linked devices section and tap Link new device. The quoted strings should match the button/menu labels in the primary device\'s settings. -->
|
||||
<string name="LinkAccountScreen__tap_linked_devices_and_link_new_device">Tap \"Linked devices\" and \"Link new device\"</string>
|
||||
<string name="LinkAccountScreen__tap_linked_devices_and_link_new_device">Atinge Dispozitive asociate și Asociază un nou dispozitiv</string>
|
||||
<!-- Step in the link-account instructions: aim the primary device\'s camera at the QR code displayed on this screen -->
|
||||
<string name="LinkAccountScreen__position_the_camera_over_this_qr_code">Position the camera over this qr code</string>
|
||||
<string name="LinkAccountScreen__position_the_camera_over_this_qr_code">Poziționează camera peste acest cod qr</string>
|
||||
<!-- Button label opening help content for users who can\'t complete the link-account steps -->
|
||||
<string name="LinkAccountScreen__get_help_with_these_steps">Get help with these steps</string>
|
||||
<string name="LinkAccountScreen__get_help_with_these_steps">Cere ajutor pentru acești pași</string>
|
||||
<!-- Accessibility content description for the button that enlarges the QR code to full screen -->
|
||||
<string name="LinkAccountScreen__maximize_qr_code">Maximize QR Code</string>
|
||||
<string name="LinkAccountScreen__maximize_qr_code">Maximizează Codul QR</string>
|
||||
<!-- Label shown in place of the QR code after the primary device has successfully scanned it -->
|
||||
<string name="LinkAccountScreen__scanned">Scanned</string>
|
||||
<string name="LinkAccountScreen__scanned">Scanat</string>
|
||||
<!-- Error label shown in place of the QR code if it could not be generated -->
|
||||
<string name="LinkAccountScreen__failed_to_generate_code">Failed to generate code</string>
|
||||
<string name="LinkAccountScreen__failed_to_generate_code">Nu s-a putut genera codul</string>
|
||||
<!-- Footer prompt asking the user if they have another device with Signal. Precedes a separate "Create account" link. -->
|
||||
<string name="LinkAccountScreen__dont_have_signal_on_another_device">Don\'t have Signal on another device?</string>
|
||||
<string name="LinkAccountScreen__dont_have_signal_on_another_device">Nu ai Signal pe alt dispozitiv?</string>
|
||||
<!-- Inline link in the link-account screen footer that takes the user to the new-account creation flow instead of linking -->
|
||||
<string name="LinkAccountScreen__create_account">Creează cont</string>
|
||||
</resources>
|
||||
|
||||
@@ -318,7 +318,7 @@
|
||||
<!-- PIN creation screen title when confirming the new Signal PIN. -->
|
||||
<string name="PinCreationScreen__confirm_your_pin">Подтвердите свой Пин-код</string>
|
||||
<!-- Describes how to confirm the new Signal PIN. -->
|
||||
<string name="PinCreationScreen__reenter_pin_description">Re-enter the PIN you just created</string>
|
||||
<string name="PinCreationScreen__reenter_pin_description">Повторно введите Пин-код, который вы только что создали</string>
|
||||
<!-- Describes the purpose of creating a Signal PIN. -->
|
||||
<string name="PinCreationScreen__pins_can_help">Пин-коды помогут восстановить учётную запись, если вы потеряете телефон. </string>
|
||||
<!-- Labels the button to learn more about Signal PINs. -->
|
||||
@@ -330,11 +330,11 @@
|
||||
<!-- Labels the button to submit a new Signal PIN. -->
|
||||
<string name="PinCreationScreen__next">Далее</string>
|
||||
<!-- Hint shown below the create PIN field when numeric keyboard is active. -->
|
||||
<string name="PinCreationScreen__pin_at_least_4_digits">PIN must be at least 4 digits</string>
|
||||
<string name="PinCreationScreen__pin_at_least_4_digits">Пин-код должен быть не короче 4 цифр</string>
|
||||
<!-- Hint shown below the create PIN field when alphanumeric keyboard is active. -->
|
||||
<string name="PinCreationScreen__pin_at_least_4_characters">PIN must be at least 4 characters</string>
|
||||
<string name="PinCreationScreen__pin_at_least_4_characters">Пин-код должен быть не короче 4 символов</string>
|
||||
<!-- Hint shown below the create PIN field when the user is confirming their new Signal PIN. -->
|
||||
<string name="PinCreationScreen__reenter_pin">Re-enter PIN</string>
|
||||
<string name="PinCreationScreen__reenter_pin">Введите Пин-код ещё раз</string>
|
||||
|
||||
<!-- PIN entry screen title when registration lock is active. -->
|
||||
<string name="PinEntryScreen__registration_lock">Блокировка регистрации</string>
|
||||
@@ -361,7 +361,7 @@
|
||||
<!-- Title for the screen asking the user to grant the notification permission -->
|
||||
<string name="AllowNotificationsScreen__allow_notifications">Разрешить уведомления</string>
|
||||
<!-- Description for the screen asking the user to grant the notification permission -->
|
||||
<string name="AllowNotificationsScreen__signal_would_like_to_request_the_notification_permission">Signal would like to request the notification permission. This allows your device to display alerts when new messages arrive.</string>
|
||||
<string name="AllowNotificationsScreen__signal_would_like_to_request_the_notification_permission">Signal хотел бы запросить разрешение на уведомления. Это позволяет вашему устройству отображать предупреждения о поступлении новых сообщений.</string>
|
||||
<!-- Button label that dismisses the notification permission request without granting it -->
|
||||
<string name="AllowNotificationsScreen__not_now">Не сейчас</string>
|
||||
<!-- Button label that proceeds with the notification permission request -->
|
||||
@@ -370,36 +370,36 @@
|
||||
<!-- Title shown while messages are syncing from the primary device -->
|
||||
<string name="MessageSyncScreen__syncing_messages">Синхронизация сообщений</string>
|
||||
<!-- Subtitle shown while messages are syncing from the primary device, indicating it may take a while -->
|
||||
<string name="MessageSyncScreen__this_may_take_a_few_minutes">This may take a few minutes…</string>
|
||||
<string name="MessageSyncScreen__this_may_take_a_few_minutes">Это может занять несколько минут…</string>
|
||||
<!-- Progress label shown under the sync progress bar. %1$s is the amount downloaded so far (e.g. "1 MB"), %2$s is the total size to download (e.g. "3.2 MB") -->
|
||||
<string name="MessageSyncScreen__downloading_s_of_s">Загрузка %1$s из %2$s</string>
|
||||
<!-- Informational notice in the sync screen footer, indicating the sync is end-to-end encrypted. Precedes a separate "Learn more" link. -->
|
||||
<string name="MessageSyncScreen__messages_and_chat_info_are_protected_by_e2ee">Messages and chat info are protected by end-to-end encryption, including the syncing process.</string>
|
||||
<string name="MessageSyncScreen__messages_and_chat_info_are_protected_by_e2ee">Сообщения и информация о чате защищены сквозным шифрованием, включая процесс синхронизации.</string>
|
||||
<!-- Inline link in the sync screen footer that opens documentation about end-to-end encryption during sync -->
|
||||
<string name="MessageSyncScreen__learn_more">Узнать больше</string>
|
||||
<!-- Button label that cancels the in-progress message sync -->
|
||||
<string name="MessageSyncScreen__cancel">Отменить</string>
|
||||
|
||||
<!-- Title for the screen that shows a QR code the user scans with their existing primary device to link this device as a secondary -->
|
||||
<string name="LinkAccountScreen__scan_this_code_to_link_your_account">Scan this code to link your account</string>
|
||||
<string name="LinkAccountScreen__scan_this_code_to_link_your_account">Отсканируйте этот код, чтобы привязать свою учётную запись</string>
|
||||
<!-- Step in the link-account instructions: open Signal on the user\'s existing phone -->
|
||||
<string name="LinkAccountScreen__open_signal_on_your_phone">Откройте Signal на своем телефоне</string>
|
||||
<!-- Step in the link-account instructions: tap profile picture to open Signal Settings -->
|
||||
<string name="LinkAccountScreen__tap_your_profile_picture_to_open_signal_settings">Tap your profile picture to open Signal Settings</string>
|
||||
<string name="LinkAccountScreen__tap_your_profile_picture_to_open_signal_settings">Нажмите на своё фото профиля, чтобы открыть Настройки Signal</string>
|
||||
<!-- Step in the link-account instructions: navigate to the Linked devices section and tap Link new device. The quoted strings should match the button/menu labels in the primary device\'s settings. -->
|
||||
<string name="LinkAccountScreen__tap_linked_devices_and_link_new_device">Tap \"Linked devices\" and \"Link new device\"</string>
|
||||
<string name="LinkAccountScreen__tap_linked_devices_and_link_new_device">Нажмите «Связанные устройства» и «Привязать новое устройство»</string>
|
||||
<!-- Step in the link-account instructions: aim the primary device\'s camera at the QR code displayed on this screen -->
|
||||
<string name="LinkAccountScreen__position_the_camera_over_this_qr_code">Position the camera over this qr code</string>
|
||||
<string name="LinkAccountScreen__position_the_camera_over_this_qr_code">Наведите камеру на этот QR-код</string>
|
||||
<!-- Button label opening help content for users who can\'t complete the link-account steps -->
|
||||
<string name="LinkAccountScreen__get_help_with_these_steps">Get help with these steps</string>
|
||||
<string name="LinkAccountScreen__get_help_with_these_steps">Получить помощь в выполнении этих шагов</string>
|
||||
<!-- Accessibility content description for the button that enlarges the QR code to full screen -->
|
||||
<string name="LinkAccountScreen__maximize_qr_code">Maximize QR Code</string>
|
||||
<string name="LinkAccountScreen__maximize_qr_code">Увеличить QR-код</string>
|
||||
<!-- Label shown in place of the QR code after the primary device has successfully scanned it -->
|
||||
<string name="LinkAccountScreen__scanned">Scanned</string>
|
||||
<string name="LinkAccountScreen__scanned">Отсканировано</string>
|
||||
<!-- Error label shown in place of the QR code if it could not be generated -->
|
||||
<string name="LinkAccountScreen__failed_to_generate_code">Failed to generate code</string>
|
||||
<string name="LinkAccountScreen__failed_to_generate_code">Не удалось сгенерировать код</string>
|
||||
<!-- Footer prompt asking the user if they have another device with Signal. Precedes a separate "Create account" link. -->
|
||||
<string name="LinkAccountScreen__dont_have_signal_on_another_device">Don\'t have Signal on another device?</string>
|
||||
<string name="LinkAccountScreen__dont_have_signal_on_another_device">Нет Signal на другом устройстве?</string>
|
||||
<!-- Inline link in the link-account screen footer that takes the user to the new-account creation flow instead of linking -->
|
||||
<string name="LinkAccountScreen__create_account">Создайте учётную запись</string>
|
||||
</resources>
|
||||
|
||||
@@ -318,7 +318,7 @@
|
||||
<!-- PIN creation screen title when confirming the new Signal PIN. -->
|
||||
<string name="PinCreationScreen__confirm_your_pin">Potvrďte svoj PIN kód</string>
|
||||
<!-- Describes how to confirm the new Signal PIN. -->
|
||||
<string name="PinCreationScreen__reenter_pin_description">Re-enter the PIN you just created</string>
|
||||
<string name="PinCreationScreen__reenter_pin_description">Znovu zadajte PIN kód, ktorý ste práve vytvorili</string>
|
||||
<!-- Describes the purpose of creating a Signal PIN. -->
|
||||
<string name="PinCreationScreen__pins_can_help">PIN kódy vám pomôžu obnoviť váš účet v prípade straty telefónu. </string>
|
||||
<!-- Labels the button to learn more about Signal PINs. -->
|
||||
@@ -345,7 +345,7 @@
|
||||
<!-- Error shown when an incorrect PIN is entered. %1$d is the number of attempts remaining. -->
|
||||
<plurals name="PinEntryScreen__incorrect_pin">
|
||||
<item quantity="one">Nesprávny PIN kód. Zostáva %1$d pokus.</item>
|
||||
<item quantity="few">Nesprávny PIN kód. Zostáva %1$d pokusov.</item>
|
||||
<item quantity="few">Nesprávny PIN kód. Zostávajú %1$d pokusy.</item>
|
||||
<item quantity="many">Nesprávny PIN kód. Zostáva %1$d pokusov.</item>
|
||||
<item quantity="other">Nesprávny PIN kód. Zostáva %1$d pokusov.</item>
|
||||
</plurals>
|
||||
@@ -359,9 +359,9 @@
|
||||
<string name="PinEntryScreen__continue">Pokračovať</string>
|
||||
|
||||
<!-- Title for the screen asking the user to grant the notification permission -->
|
||||
<string name="AllowNotificationsScreen__allow_notifications">Povoliť upozornenia</string>
|
||||
<string name="AllowNotificationsScreen__allow_notifications">Povoľte upozornenia</string>
|
||||
<!-- Description for the screen asking the user to grant the notification permission -->
|
||||
<string name="AllowNotificationsScreen__signal_would_like_to_request_the_notification_permission">Signal would like to request the notification permission. This allows your device to display alerts when new messages arrive.</string>
|
||||
<string name="AllowNotificationsScreen__signal_would_like_to_request_the_notification_permission">Signal žiada o povolenie na odosielanie upozornení. Vďaka tomu môže vaše zariadenie zobrazovať upozornenia, keď vám prídu nové správy.</string>
|
||||
<!-- Button label that dismisses the notification permission request without granting it -->
|
||||
<string name="AllowNotificationsScreen__not_now">Teraz nie</string>
|
||||
<!-- Button label that proceeds with the notification permission request -->
|
||||
@@ -370,36 +370,36 @@
|
||||
<!-- Title shown while messages are syncing from the primary device -->
|
||||
<string name="MessageSyncScreen__syncing_messages">Synchronizujú sa správy</string>
|
||||
<!-- Subtitle shown while messages are syncing from the primary device, indicating it may take a while -->
|
||||
<string name="MessageSyncScreen__this_may_take_a_few_minutes">This may take a few minutes…</string>
|
||||
<string name="MessageSyncScreen__this_may_take_a_few_minutes">Môže to trvať pár minút…</string>
|
||||
<!-- Progress label shown under the sync progress bar. %1$s is the amount downloaded so far (e.g. "1 MB"), %2$s is the total size to download (e.g. "3.2 MB") -->
|
||||
<string name="MessageSyncScreen__downloading_s_of_s">Sťahuje sa %1$s z %2$s</string>
|
||||
<!-- Informational notice in the sync screen footer, indicating the sync is end-to-end encrypted. Precedes a separate "Learn more" link. -->
|
||||
<string name="MessageSyncScreen__messages_and_chat_info_are_protected_by_e2ee">Messages and chat info are protected by end-to-end encryption, including the syncing process.</string>
|
||||
<string name="MessageSyncScreen__messages_and_chat_info_are_protected_by_e2ee">Správy a informácie o četoch sú chránené end-to-end šifrovaním vrátane procesu synchronizácie.</string>
|
||||
<!-- Inline link in the sync screen footer that opens documentation about end-to-end encryption during sync -->
|
||||
<string name="MessageSyncScreen__learn_more">Zistiť viac</string>
|
||||
<!-- Button label that cancels the in-progress message sync -->
|
||||
<string name="MessageSyncScreen__cancel">Zrušiť</string>
|
||||
|
||||
<!-- Title for the screen that shows a QR code the user scans with their existing primary device to link this device as a secondary -->
|
||||
<string name="LinkAccountScreen__scan_this_code_to_link_your_account">Scan this code to link your account</string>
|
||||
<string name="LinkAccountScreen__scan_this_code_to_link_your_account">Naskenujte tento kód a prepojte svoj účet</string>
|
||||
<!-- Step in the link-account instructions: open Signal on the user\'s existing phone -->
|
||||
<string name="LinkAccountScreen__open_signal_on_your_phone">Otvorte Signal na svojom telefóne</string>
|
||||
<!-- Step in the link-account instructions: tap profile picture to open Signal Settings -->
|
||||
<string name="LinkAccountScreen__tap_your_profile_picture_to_open_signal_settings">Tap your profile picture to open Signal Settings</string>
|
||||
<string name="LinkAccountScreen__tap_your_profile_picture_to_open_signal_settings">Ťuknutím na svoju profilovú fotku otvoríte Signal nastavenia</string>
|
||||
<!-- Step in the link-account instructions: navigate to the Linked devices section and tap Link new device. The quoted strings should match the button/menu labels in the primary device\'s settings. -->
|
||||
<string name="LinkAccountScreen__tap_linked_devices_and_link_new_device">Tap \"Linked devices\" and \"Link new device\"</string>
|
||||
<string name="LinkAccountScreen__tap_linked_devices_and_link_new_device">Ťuknite na „Prepojené zariadenia“ a „Prepojiť nové zariadenie“</string>
|
||||
<!-- Step in the link-account instructions: aim the primary device\'s camera at the QR code displayed on this screen -->
|
||||
<string name="LinkAccountScreen__position_the_camera_over_this_qr_code">Position the camera over this qr code</string>
|
||||
<string name="LinkAccountScreen__position_the_camera_over_this_qr_code">Umiestnite fotoaparát nad tento QR kód</string>
|
||||
<!-- Button label opening help content for users who can\'t complete the link-account steps -->
|
||||
<string name="LinkAccountScreen__get_help_with_these_steps">Get help with these steps</string>
|
||||
<string name="LinkAccountScreen__get_help_with_these_steps">Získať pomoc s týmito krokmi</string>
|
||||
<!-- Accessibility content description for the button that enlarges the QR code to full screen -->
|
||||
<string name="LinkAccountScreen__maximize_qr_code">Maximize QR Code</string>
|
||||
<string name="LinkAccountScreen__maximize_qr_code">Maximalizovať QR kód</string>
|
||||
<!-- Label shown in place of the QR code after the primary device has successfully scanned it -->
|
||||
<string name="LinkAccountScreen__scanned">Scanned</string>
|
||||
<string name="LinkAccountScreen__scanned">Naskenované</string>
|
||||
<!-- Error label shown in place of the QR code if it could not be generated -->
|
||||
<string name="LinkAccountScreen__failed_to_generate_code">Failed to generate code</string>
|
||||
<string name="LinkAccountScreen__failed_to_generate_code">Nepodarilo sa vygenerovať kód</string>
|
||||
<!-- Footer prompt asking the user if they have another device with Signal. Precedes a separate "Create account" link. -->
|
||||
<string name="LinkAccountScreen__dont_have_signal_on_another_device">Don\'t have Signal on another device?</string>
|
||||
<string name="LinkAccountScreen__dont_have_signal_on_another_device">Nemáte Signal na inom zariadení?</string>
|
||||
<!-- Inline link in the link-account screen footer that takes the user to the new-account creation flow instead of linking -->
|
||||
<string name="LinkAccountScreen__create_account">Vytvorte si účet</string>
|
||||
</resources>
|
||||
|
||||
@@ -316,9 +316,9 @@
|
||||
<!-- PIN creation screen title. -->
|
||||
<string name="PinCreationScreen__create_your_pin">Ustvarite svoj PIN</string>
|
||||
<!-- PIN creation screen title when confirming the new Signal PIN. -->
|
||||
<string name="PinCreationScreen__confirm_your_pin">Confirm your PIN</string>
|
||||
<string name="PinCreationScreen__confirm_your_pin">Potrdite svoj PIN</string>
|
||||
<!-- Describes how to confirm the new Signal PIN. -->
|
||||
<string name="PinCreationScreen__reenter_pin_description">Re-enter the PIN you just created</string>
|
||||
<string name="PinCreationScreen__reenter_pin_description">Ponovno vnesite PIN, ki ste ga pravkar določili</string>
|
||||
<!-- Describes the purpose of creating a Signal PIN. -->
|
||||
<string name="PinCreationScreen__pins_can_help">PIN vam lahko pomaga obnoviti račun, če izgubite telefon. </string>
|
||||
<!-- Labels the button to learn more about Signal PINs. -->
|
||||
@@ -330,11 +330,11 @@
|
||||
<!-- Labels the button to submit a new Signal PIN. -->
|
||||
<string name="PinCreationScreen__next">Naprej</string>
|
||||
<!-- Hint shown below the create PIN field when numeric keyboard is active. -->
|
||||
<string name="PinCreationScreen__pin_at_least_4_digits">PIN must be at least 4 digits</string>
|
||||
<string name="PinCreationScreen__pin_at_least_4_digits">PIN mora vsebovati vsaj 4 številke</string>
|
||||
<!-- Hint shown below the create PIN field when alphanumeric keyboard is active. -->
|
||||
<string name="PinCreationScreen__pin_at_least_4_characters">PIN must be at least 4 characters</string>
|
||||
<string name="PinCreationScreen__pin_at_least_4_characters">PIN mora vsebovati vsaj 4 znake</string>
|
||||
<!-- Hint shown below the create PIN field when the user is confirming their new Signal PIN. -->
|
||||
<string name="PinCreationScreen__reenter_pin">Re-enter PIN</string>
|
||||
<string name="PinCreationScreen__reenter_pin">Ponovno vnesite PIN</string>
|
||||
|
||||
<!-- PIN entry screen title when registration lock is active. -->
|
||||
<string name="PinEntryScreen__registration_lock">Zaklep registracije</string>
|
||||
@@ -359,9 +359,9 @@
|
||||
<string name="PinEntryScreen__continue">Nadaljuj</string>
|
||||
|
||||
<!-- Title for the screen asking the user to grant the notification permission -->
|
||||
<string name="AllowNotificationsScreen__allow_notifications">Allow Notifications</string>
|
||||
<string name="AllowNotificationsScreen__allow_notifications">Dovolite obvestila</string>
|
||||
<!-- Description for the screen asking the user to grant the notification permission -->
|
||||
<string name="AllowNotificationsScreen__signal_would_like_to_request_the_notification_permission">Signal would like to request the notification permission. This allows your device to display alerts when new messages arrive.</string>
|
||||
<string name="AllowNotificationsScreen__signal_would_like_to_request_the_notification_permission">Signal želi pridobiti dovoljenje za pošiljanje obvestil. To omogoča, da vaša naprava prikaže obvestila, ko prejmete nova sporočila.</string>
|
||||
<!-- Button label that dismisses the notification permission request without granting it -->
|
||||
<string name="AllowNotificationsScreen__not_now">Ne zdaj</string>
|
||||
<!-- Button label that proceeds with the notification permission request -->
|
||||
@@ -370,36 +370,36 @@
|
||||
<!-- Title shown while messages are syncing from the primary device -->
|
||||
<string name="MessageSyncScreen__syncing_messages">Sinhronizacija sporočil</string>
|
||||
<!-- Subtitle shown while messages are syncing from the primary device, indicating it may take a while -->
|
||||
<string name="MessageSyncScreen__this_may_take_a_few_minutes">This may take a few minutes…</string>
|
||||
<string name="MessageSyncScreen__this_may_take_a_few_minutes">To lahko traja nekaj minut …</string>
|
||||
<!-- Progress label shown under the sync progress bar. %1$s is the amount downloaded so far (e.g. "1 MB"), %2$s is the total size to download (e.g. "3.2 MB") -->
|
||||
<string name="MessageSyncScreen__downloading_s_of_s">Prenos %1$s od %2$s</string>
|
||||
<!-- Informational notice in the sync screen footer, indicating the sync is end-to-end encrypted. Precedes a separate "Learn more" link. -->
|
||||
<string name="MessageSyncScreen__messages_and_chat_info_are_protected_by_e2ee">Messages and chat info are protected by end-to-end encryption, including the syncing process.</string>
|
||||
<string name="MessageSyncScreen__messages_and_chat_info_are_protected_by_e2ee">Sporočila in informacije o klepetu so zaščitene s celovitim šifriranjem, vključno s postopkom sinhronizacije.</string>
|
||||
<!-- Inline link in the sync screen footer that opens documentation about end-to-end encryption during sync -->
|
||||
<string name="MessageSyncScreen__learn_more">Več o tem</string>
|
||||
<!-- Button label that cancels the in-progress message sync -->
|
||||
<string name="MessageSyncScreen__cancel">Prekliči</string>
|
||||
|
||||
<!-- Title for the screen that shows a QR code the user scans with their existing primary device to link this device as a secondary -->
|
||||
<string name="LinkAccountScreen__scan_this_code_to_link_your_account">Scan this code to link your account</string>
|
||||
<string name="LinkAccountScreen__scan_this_code_to_link_your_account">Skenirajte to kodo, da povežete svoj račun</string>
|
||||
<!-- Step in the link-account instructions: open Signal on the user\'s existing phone -->
|
||||
<string name="LinkAccountScreen__open_signal_on_your_phone">Odprite Signal v svoji napravi</string>
|
||||
<!-- Step in the link-account instructions: tap profile picture to open Signal Settings -->
|
||||
<string name="LinkAccountScreen__tap_your_profile_picture_to_open_signal_settings">Tap your profile picture to open Signal Settings</string>
|
||||
<string name="LinkAccountScreen__tap_your_profile_picture_to_open_signal_settings">Tapnite svojo profilno sliko, da odprete nastavitve Signala</string>
|
||||
<!-- Step in the link-account instructions: navigate to the Linked devices section and tap Link new device. The quoted strings should match the button/menu labels in the primary device\'s settings. -->
|
||||
<string name="LinkAccountScreen__tap_linked_devices_and_link_new_device">Tap \"Linked devices\" and \"Link new device\"</string>
|
||||
<string name="LinkAccountScreen__tap_linked_devices_and_link_new_device">Tapnite »Povezane naprave« in »Poveži nove naprave«</string>
|
||||
<!-- Step in the link-account instructions: aim the primary device\'s camera at the QR code displayed on this screen -->
|
||||
<string name="LinkAccountScreen__position_the_camera_over_this_qr_code">Position the camera over this qr code</string>
|
||||
<string name="LinkAccountScreen__position_the_camera_over_this_qr_code">Usmerite kamero nad to kodo QR</string>
|
||||
<!-- Button label opening help content for users who can\'t complete the link-account steps -->
|
||||
<string name="LinkAccountScreen__get_help_with_these_steps">Get help with these steps</string>
|
||||
<string name="LinkAccountScreen__get_help_with_these_steps">Pridobite pomoč za te korake</string>
|
||||
<!-- Accessibility content description for the button that enlarges the QR code to full screen -->
|
||||
<string name="LinkAccountScreen__maximize_qr_code">Maximize QR Code</string>
|
||||
<string name="LinkAccountScreen__maximize_qr_code">Povečajte kodo QR</string>
|
||||
<!-- Label shown in place of the QR code after the primary device has successfully scanned it -->
|
||||
<string name="LinkAccountScreen__scanned">Scanned</string>
|
||||
<string name="LinkAccountScreen__scanned">Skenirano</string>
|
||||
<!-- Error label shown in place of the QR code if it could not be generated -->
|
||||
<string name="LinkAccountScreen__failed_to_generate_code">Failed to generate code</string>
|
||||
<string name="LinkAccountScreen__failed_to_generate_code">Ni bilo mogoče ustvariti kode QR</string>
|
||||
<!-- Footer prompt asking the user if they have another device with Signal. Precedes a separate "Create account" link. -->
|
||||
<string name="LinkAccountScreen__dont_have_signal_on_another_device">Don\'t have Signal on another device?</string>
|
||||
<string name="LinkAccountScreen__dont_have_signal_on_another_device">Nimate Signala na drugi napravi?</string>
|
||||
<!-- Inline link in the link-account screen footer that takes the user to the new-account creation flow instead of linking -->
|
||||
<string name="LinkAccountScreen__create_account">Ustvari račun</string>
|
||||
</resources>
|
||||
|
||||
@@ -314,9 +314,9 @@
|
||||
<!-- PIN creation screen title. -->
|
||||
<string name="PinCreationScreen__create_your_pin">Krijoni PIN-in tuaj</string>
|
||||
<!-- PIN creation screen title when confirming the new Signal PIN. -->
|
||||
<string name="PinCreationScreen__confirm_your_pin">Confirm your PIN</string>
|
||||
<string name="PinCreationScreen__confirm_your_pin">Konfirmo PIN-in</string>
|
||||
<!-- Describes how to confirm the new Signal PIN. -->
|
||||
<string name="PinCreationScreen__reenter_pin_description">Re-enter the PIN you just created</string>
|
||||
<string name="PinCreationScreen__reenter_pin_description">Rifut kodin PIN që sapo krijove</string>
|
||||
<!-- Describes the purpose of creating a Signal PIN. -->
|
||||
<string name="PinCreationScreen__pins_can_help">PIN-i mund të ndihmojë të rikthesh llogarinë nëse humb telefonin. </string>
|
||||
<!-- Labels the button to learn more about Signal PINs. -->
|
||||
@@ -328,11 +328,11 @@
|
||||
<!-- Labels the button to submit a new Signal PIN. -->
|
||||
<string name="PinCreationScreen__next">Tjetër</string>
|
||||
<!-- Hint shown below the create PIN field when numeric keyboard is active. -->
|
||||
<string name="PinCreationScreen__pin_at_least_4_digits">PIN must be at least 4 digits</string>
|
||||
<string name="PinCreationScreen__pin_at_least_4_digits">PIN-i duhet të jetë të paktën 4 shifra</string>
|
||||
<!-- Hint shown below the create PIN field when alphanumeric keyboard is active. -->
|
||||
<string name="PinCreationScreen__pin_at_least_4_characters">PIN must be at least 4 characters</string>
|
||||
<string name="PinCreationScreen__pin_at_least_4_characters">PIN-i duhet të jetë të paktën 4 karaktere</string>
|
||||
<!-- Hint shown below the create PIN field when the user is confirming their new Signal PIN. -->
|
||||
<string name="PinCreationScreen__reenter_pin">Re-enter PIN</string>
|
||||
<string name="PinCreationScreen__reenter_pin">Rifut PIN-in</string>
|
||||
|
||||
<!-- PIN entry screen title when registration lock is active. -->
|
||||
<string name="PinEntryScreen__registration_lock">Kyçje Regjistrimi</string>
|
||||
@@ -355,9 +355,9 @@
|
||||
<string name="PinEntryScreen__continue">Vazhdo</string>
|
||||
|
||||
<!-- Title for the screen asking the user to grant the notification permission -->
|
||||
<string name="AllowNotificationsScreen__allow_notifications">Allow Notifications</string>
|
||||
<string name="AllowNotificationsScreen__allow_notifications">Lejo njoftimet</string>
|
||||
<!-- Description for the screen asking the user to grant the notification permission -->
|
||||
<string name="AllowNotificationsScreen__signal_would_like_to_request_the_notification_permission">Signal would like to request the notification permission. This allows your device to display alerts when new messages arrive.</string>
|
||||
<string name="AllowNotificationsScreen__signal_would_like_to_request_the_notification_permission">Signal dëshiron të kërkojë leje për njoftimet. Kjo lejon pajisjen që të shfaqë njoftime kur vijnë mesazhe të reja.</string>
|
||||
<!-- Button label that dismisses the notification permission request without granting it -->
|
||||
<string name="AllowNotificationsScreen__not_now">Jo tani</string>
|
||||
<!-- Button label that proceeds with the notification permission request -->
|
||||
@@ -366,36 +366,36 @@
|
||||
<!-- Title shown while messages are syncing from the primary device -->
|
||||
<string name="MessageSyncScreen__syncing_messages">Po sinkronizohen mesazhet</string>
|
||||
<!-- Subtitle shown while messages are syncing from the primary device, indicating it may take a while -->
|
||||
<string name="MessageSyncScreen__this_may_take_a_few_minutes">This may take a few minutes…</string>
|
||||
<string name="MessageSyncScreen__this_may_take_a_few_minutes">Kjo mund të zgjasë disa minuta…</string>
|
||||
<!-- Progress label shown under the sync progress bar. %1$s is the amount downloaded so far (e.g. "1 MB"), %2$s is the total size to download (e.g. "3.2 MB") -->
|
||||
<string name="MessageSyncScreen__downloading_s_of_s">Po shkarkohet %1$s nga %2$s</string>
|
||||
<!-- Informational notice in the sync screen footer, indicating the sync is end-to-end encrypted. Precedes a separate "Learn more" link. -->
|
||||
<string name="MessageSyncScreen__messages_and_chat_info_are_protected_by_e2ee">Messages and chat info are protected by end-to-end encryption, including the syncing process.</string>
|
||||
<string name="MessageSyncScreen__messages_and_chat_info_are_protected_by_e2ee">Mesazhet dhe informacionet e bisedës mbrohen nga kodimi skaji në skaj, duke përfshirë procesin e sinkronizimit.</string>
|
||||
<!-- Inline link in the sync screen footer that opens documentation about end-to-end encryption during sync -->
|
||||
<string name="MessageSyncScreen__learn_more">Mëso më shumë</string>
|
||||
<!-- Button label that cancels the in-progress message sync -->
|
||||
<string name="MessageSyncScreen__cancel">Anulo</string>
|
||||
|
||||
<!-- Title for the screen that shows a QR code the user scans with their existing primary device to link this device as a secondary -->
|
||||
<string name="LinkAccountScreen__scan_this_code_to_link_your_account">Scan this code to link your account</string>
|
||||
<string name="LinkAccountScreen__scan_this_code_to_link_your_account">Skano këtë kod për të lidhur llogarinë</string>
|
||||
<!-- Step in the link-account instructions: open Signal on the user\'s existing phone -->
|
||||
<string name="LinkAccountScreen__open_signal_on_your_phone">Hap Signal në telefonin tënd</string>
|
||||
<!-- Step in the link-account instructions: tap profile picture to open Signal Settings -->
|
||||
<string name="LinkAccountScreen__tap_your_profile_picture_to_open_signal_settings">Tap your profile picture to open Signal Settings</string>
|
||||
<string name="LinkAccountScreen__tap_your_profile_picture_to_open_signal_settings">Prek foton e profilit për të hapur cilësimet e Signal</string>
|
||||
<!-- Step in the link-account instructions: navigate to the Linked devices section and tap Link new device. The quoted strings should match the button/menu labels in the primary device\'s settings. -->
|
||||
<string name="LinkAccountScreen__tap_linked_devices_and_link_new_device">Tap \"Linked devices\" and \"Link new device\"</string>
|
||||
<string name="LinkAccountScreen__tap_linked_devices_and_link_new_device">Prek \"Pajisjet e lidhura\" dhe \"Lidh pajisje të re\"</string>
|
||||
<!-- Step in the link-account instructions: aim the primary device\'s camera at the QR code displayed on this screen -->
|
||||
<string name="LinkAccountScreen__position_the_camera_over_this_qr_code">Position the camera over this qr code</string>
|
||||
<string name="LinkAccountScreen__position_the_camera_over_this_qr_code">Poziciono kamerën sipër këtij kodi QR</string>
|
||||
<!-- Button label opening help content for users who can\'t complete the link-account steps -->
|
||||
<string name="LinkAccountScreen__get_help_with_these_steps">Get help with these steps</string>
|
||||
<string name="LinkAccountScreen__get_help_with_these_steps">Merr ndihmë me këto hapa</string>
|
||||
<!-- Accessibility content description for the button that enlarges the QR code to full screen -->
|
||||
<string name="LinkAccountScreen__maximize_qr_code">Maximize QR Code</string>
|
||||
<string name="LinkAccountScreen__maximize_qr_code">Zmadho kodin QR</string>
|
||||
<!-- Label shown in place of the QR code after the primary device has successfully scanned it -->
|
||||
<string name="LinkAccountScreen__scanned">Scanned</string>
|
||||
<string name="LinkAccountScreen__scanned">Skanuar</string>
|
||||
<!-- Error label shown in place of the QR code if it could not be generated -->
|
||||
<string name="LinkAccountScreen__failed_to_generate_code">Failed to generate code</string>
|
||||
<string name="LinkAccountScreen__failed_to_generate_code">Nuk mund të gjenerohet kodi</string>
|
||||
<!-- Footer prompt asking the user if they have another device with Signal. Precedes a separate "Create account" link. -->
|
||||
<string name="LinkAccountScreen__dont_have_signal_on_another_device">Don\'t have Signal on another device?</string>
|
||||
<string name="LinkAccountScreen__dont_have_signal_on_another_device">A nuk e ke Signal në një pajisje tjetër?</string>
|
||||
<!-- Inline link in the link-account screen footer that takes the user to the new-account creation flow instead of linking -->
|
||||
<string name="LinkAccountScreen__create_account">Krijo llogari</string>
|
||||
</resources>
|
||||
|
||||
@@ -316,7 +316,7 @@
|
||||
<!-- PIN creation screen title when confirming the new Signal PIN. -->
|
||||
<string name="PinCreationScreen__confirm_your_pin">Потврдите PIN</string>
|
||||
<!-- Describes how to confirm the new Signal PIN. -->
|
||||
<string name="PinCreationScreen__reenter_pin_description">Re-enter the PIN you just created</string>
|
||||
<string name="PinCreationScreen__reenter_pin_description">Поново унесите PIN који сте управо креирали</string>
|
||||
<!-- Describes the purpose of creating a Signal PIN. -->
|
||||
<string name="PinCreationScreen__pins_can_help">PIN-ови вам омогућавају да вратите налог ако изгубите телефон. </string>
|
||||
<!-- Labels the button to learn more about Signal PINs. -->
|
||||
@@ -357,7 +357,7 @@
|
||||
<!-- Title for the screen asking the user to grant the notification permission -->
|
||||
<string name="AllowNotificationsScreen__allow_notifications">Активирај обавештења</string>
|
||||
<!-- Description for the screen asking the user to grant the notification permission -->
|
||||
<string name="AllowNotificationsScreen__signal_would_like_to_request_the_notification_permission">Signal would like to request the notification permission. This allows your device to display alerts when new messages arrive.</string>
|
||||
<string name="AllowNotificationsScreen__signal_would_like_to_request_the_notification_permission">Signal жели да затражи дозволу за обавештења. Тиме омогућавате уређају да приказује обавештења када вам стигну нове поруке.</string>
|
||||
<!-- Button label that dismisses the notification permission request without granting it -->
|
||||
<string name="AllowNotificationsScreen__not_now">Не сада</string>
|
||||
<!-- Button label that proceeds with the notification permission request -->
|
||||
@@ -366,36 +366,36 @@
|
||||
<!-- Title shown while messages are syncing from the primary device -->
|
||||
<string name="MessageSyncScreen__syncing_messages">Синхронизовање порука</string>
|
||||
<!-- Subtitle shown while messages are syncing from the primary device, indicating it may take a while -->
|
||||
<string name="MessageSyncScreen__this_may_take_a_few_minutes">This may take a few minutes…</string>
|
||||
<string name="MessageSyncScreen__this_may_take_a_few_minutes">Може потрајати пар минута…</string>
|
||||
<!-- Progress label shown under the sync progress bar. %1$s is the amount downloaded so far (e.g. "1 MB"), %2$s is the total size to download (e.g. "3.2 MB") -->
|
||||
<string name="MessageSyncScreen__downloading_s_of_s">Преузима се %1$s од %2$s</string>
|
||||
<!-- Informational notice in the sync screen footer, indicating the sync is end-to-end encrypted. Precedes a separate "Learn more" link. -->
|
||||
<string name="MessageSyncScreen__messages_and_chat_info_are_protected_by_e2ee">Messages and chat info are protected by end-to-end encryption, including the syncing process.</string>
|
||||
<string name="MessageSyncScreen__messages_and_chat_info_are_protected_by_e2ee">Поруке и информације о ћаскањима заштићене су потпуним шифровањем, укључујући процес синхронизације.</string>
|
||||
<!-- Inline link in the sync screen footer that opens documentation about end-to-end encryption during sync -->
|
||||
<string name="MessageSyncScreen__learn_more">Сазнајте више</string>
|
||||
<!-- Button label that cancels the in-progress message sync -->
|
||||
<string name="MessageSyncScreen__cancel">Откажи</string>
|
||||
|
||||
<!-- Title for the screen that shows a QR code the user scans with their existing primary device to link this device as a secondary -->
|
||||
<string name="LinkAccountScreen__scan_this_code_to_link_your_account">Scan this code to link your account</string>
|
||||
<string name="LinkAccountScreen__scan_this_code_to_link_your_account">За повезивање налога скенирајте овај код</string>
|
||||
<!-- Step in the link-account instructions: open Signal on the user\'s existing phone -->
|
||||
<string name="LinkAccountScreen__open_signal_on_your_phone">Отворите Signal на телефону</string>
|
||||
<!-- Step in the link-account instructions: tap profile picture to open Signal Settings -->
|
||||
<string name="LinkAccountScreen__tap_your_profile_picture_to_open_signal_settings">Tap your profile picture to open Signal Settings</string>
|
||||
<string name="LinkAccountScreen__tap_your_profile_picture_to_open_signal_settings">Додирните своју профилну фотографију да отворите подешавања Signal-а</string>
|
||||
<!-- Step in the link-account instructions: navigate to the Linked devices section and tap Link new device. The quoted strings should match the button/menu labels in the primary device\'s settings. -->
|
||||
<string name="LinkAccountScreen__tap_linked_devices_and_link_new_device">Tap \"Linked devices\" and \"Link new device\"</string>
|
||||
<string name="LinkAccountScreen__tap_linked_devices_and_link_new_device">Додирните „Повезани уређаји“ и „Повежи нови уређај“</string>
|
||||
<!-- Step in the link-account instructions: aim the primary device\'s camera at the QR code displayed on this screen -->
|
||||
<string name="LinkAccountScreen__position_the_camera_over_this_qr_code">Position the camera over this qr code</string>
|
||||
<string name="LinkAccountScreen__position_the_camera_over_this_qr_code">Позиционирајте камеру испред овог QR кода</string>
|
||||
<!-- Button label opening help content for users who can\'t complete the link-account steps -->
|
||||
<string name="LinkAccountScreen__get_help_with_these_steps">Get help with these steps</string>
|
||||
<string name="LinkAccountScreen__get_help_with_these_steps">Да ли вам је потребна помоћ са овим корацима?</string>
|
||||
<!-- Accessibility content description for the button that enlarges the QR code to full screen -->
|
||||
<string name="LinkAccountScreen__maximize_qr_code">Maximize QR Code</string>
|
||||
<string name="LinkAccountScreen__maximize_qr_code">Увеличај QR код</string>
|
||||
<!-- Label shown in place of the QR code after the primary device has successfully scanned it -->
|
||||
<string name="LinkAccountScreen__scanned">Scanned</string>
|
||||
<string name="LinkAccountScreen__scanned">Скенирано</string>
|
||||
<!-- Error label shown in place of the QR code if it could not be generated -->
|
||||
<string name="LinkAccountScreen__failed_to_generate_code">Failed to generate code</string>
|
||||
<string name="LinkAccountScreen__failed_to_generate_code">Генерисање кода није успело</string>
|
||||
<!-- Footer prompt asking the user if they have another device with Signal. Precedes a separate "Create account" link. -->
|
||||
<string name="LinkAccountScreen__dont_have_signal_on_another_device">Don\'t have Signal on another device?</string>
|
||||
<string name="LinkAccountScreen__dont_have_signal_on_another_device">Немате Signal на другом уређају?</string>
|
||||
<!-- Inline link in the link-account screen footer that takes the user to the new-account creation flow instead of linking -->
|
||||
<string name="LinkAccountScreen__create_account">Креирајте налог</string>
|
||||
</resources>
|
||||
|
||||
@@ -316,7 +316,7 @@
|
||||
<!-- PIN creation screen title when confirming the new Signal PIN. -->
|
||||
<string name="PinCreationScreen__confirm_your_pin">Bekräfta din pinkod</string>
|
||||
<!-- Describes how to confirm the new Signal PIN. -->
|
||||
<string name="PinCreationScreen__reenter_pin_description">Re-enter the PIN you just created</string>
|
||||
<string name="PinCreationScreen__reenter_pin_description">Ange den pinkod du just skapat igen</string>
|
||||
<!-- Describes the purpose of creating a Signal PIN. -->
|
||||
<string name="PinCreationScreen__pins_can_help">Pinkoder kan hjälpa dig att återställa ditt konto om du tappar bort din telefon. </string>
|
||||
<!-- Labels the button to learn more about Signal PINs. -->
|
||||
@@ -357,7 +357,7 @@
|
||||
<!-- Title for the screen asking the user to grant the notification permission -->
|
||||
<string name="AllowNotificationsScreen__allow_notifications">Tillåt aviseringar</string>
|
||||
<!-- Description for the screen asking the user to grant the notification permission -->
|
||||
<string name="AllowNotificationsScreen__signal_would_like_to_request_the_notification_permission">Signal would like to request the notification permission. This allows your device to display alerts when new messages arrive.</string>
|
||||
<string name="AllowNotificationsScreen__signal_would_like_to_request_the_notification_permission">Signal vill begära behörighet att skicka aviseringar. Det gör att enheten kan visa aviseringar när nya meddelanden kommer in.</string>
|
||||
<!-- Button label that dismisses the notification permission request without granting it -->
|
||||
<string name="AllowNotificationsScreen__not_now">Inte nu</string>
|
||||
<!-- Button label that proceeds with the notification permission request -->
|
||||
@@ -366,36 +366,36 @@
|
||||
<!-- Title shown while messages are syncing from the primary device -->
|
||||
<string name="MessageSyncScreen__syncing_messages">Synkronisera meddelanden</string>
|
||||
<!-- Subtitle shown while messages are syncing from the primary device, indicating it may take a while -->
|
||||
<string name="MessageSyncScreen__this_may_take_a_few_minutes">This may take a few minutes…</string>
|
||||
<string name="MessageSyncScreen__this_may_take_a_few_minutes">Detta kan ta några minuter …</string>
|
||||
<!-- Progress label shown under the sync progress bar. %1$s is the amount downloaded so far (e.g. "1 MB"), %2$s is the total size to download (e.g. "3.2 MB") -->
|
||||
<string name="MessageSyncScreen__downloading_s_of_s">Laddar ned %1$s av %2$s</string>
|
||||
<!-- Informational notice in the sync screen footer, indicating the sync is end-to-end encrypted. Precedes a separate "Learn more" link. -->
|
||||
<string name="MessageSyncScreen__messages_and_chat_info_are_protected_by_e2ee">Messages and chat info are protected by end-to-end encryption, including the syncing process.</string>
|
||||
<string name="MessageSyncScreen__messages_and_chat_info_are_protected_by_e2ee">Meddelanden och chattinformation skyddas av totalstreckskryptering, inklusive synkroniseringsprocessen.</string>
|
||||
<!-- Inline link in the sync screen footer that opens documentation about end-to-end encryption during sync -->
|
||||
<string name="MessageSyncScreen__learn_more">Läs mer</string>
|
||||
<!-- Button label that cancels the in-progress message sync -->
|
||||
<string name="MessageSyncScreen__cancel">Avbryt</string>
|
||||
|
||||
<!-- Title for the screen that shows a QR code the user scans with their existing primary device to link this device as a secondary -->
|
||||
<string name="LinkAccountScreen__scan_this_code_to_link_your_account">Scan this code to link your account</string>
|
||||
<string name="LinkAccountScreen__scan_this_code_to_link_your_account">Skanna den här koden för att länka ditt konto</string>
|
||||
<!-- Step in the link-account instructions: open Signal on the user\'s existing phone -->
|
||||
<string name="LinkAccountScreen__open_signal_on_your_phone">Öppna Signal på din telefon</string>
|
||||
<!-- Step in the link-account instructions: tap profile picture to open Signal Settings -->
|
||||
<string name="LinkAccountScreen__tap_your_profile_picture_to_open_signal_settings">Tap your profile picture to open Signal Settings</string>
|
||||
<string name="LinkAccountScreen__tap_your_profile_picture_to_open_signal_settings">Tryck på din profilbild för att öppna Signal-inställningar</string>
|
||||
<!-- Step in the link-account instructions: navigate to the Linked devices section and tap Link new device. The quoted strings should match the button/menu labels in the primary device\'s settings. -->
|
||||
<string name="LinkAccountScreen__tap_linked_devices_and_link_new_device">Tap \"Linked devices\" and \"Link new device\"</string>
|
||||
<string name="LinkAccountScreen__tap_linked_devices_and_link_new_device">Tryck på \"Länkade enheter\" och \"Länka ny enhet\"</string>
|
||||
<!-- Step in the link-account instructions: aim the primary device\'s camera at the QR code displayed on this screen -->
|
||||
<string name="LinkAccountScreen__position_the_camera_over_this_qr_code">Position the camera over this qr code</string>
|
||||
<string name="LinkAccountScreen__position_the_camera_over_this_qr_code">Rikta kameran mot den här QR-koden</string>
|
||||
<!-- Button label opening help content for users who can\'t complete the link-account steps -->
|
||||
<string name="LinkAccountScreen__get_help_with_these_steps">Get help with these steps</string>
|
||||
<string name="LinkAccountScreen__get_help_with_these_steps">Få hjälp med dessa steg</string>
|
||||
<!-- Accessibility content description for the button that enlarges the QR code to full screen -->
|
||||
<string name="LinkAccountScreen__maximize_qr_code">Maximize QR Code</string>
|
||||
<string name="LinkAccountScreen__maximize_qr_code">Maximera QR-kod</string>
|
||||
<!-- Label shown in place of the QR code after the primary device has successfully scanned it -->
|
||||
<string name="LinkAccountScreen__scanned">Scanned</string>
|
||||
<string name="LinkAccountScreen__scanned">Skannad</string>
|
||||
<!-- Error label shown in place of the QR code if it could not be generated -->
|
||||
<string name="LinkAccountScreen__failed_to_generate_code">Failed to generate code</string>
|
||||
<string name="LinkAccountScreen__failed_to_generate_code">Det gick inte att generera kod</string>
|
||||
<!-- Footer prompt asking the user if they have another device with Signal. Precedes a separate "Create account" link. -->
|
||||
<string name="LinkAccountScreen__dont_have_signal_on_another_device">Don\'t have Signal on another device?</string>
|
||||
<string name="LinkAccountScreen__dont_have_signal_on_another_device">Har du inte Signal på en annan enhet?</string>
|
||||
<!-- Inline link in the link-account screen footer that takes the user to the new-account creation flow instead of linking -->
|
||||
<string name="LinkAccountScreen__create_account">Skapa konto</string>
|
||||
</resources>
|
||||
|
||||
@@ -314,9 +314,9 @@
|
||||
<!-- PIN creation screen title. -->
|
||||
<string name="PinCreationScreen__create_your_pin">Unda Nenosiri lako</string>
|
||||
<!-- PIN creation screen title when confirming the new Signal PIN. -->
|
||||
<string name="PinCreationScreen__confirm_your_pin">Confirm your PIN</string>
|
||||
<string name="PinCreationScreen__confirm_your_pin">Thibitisha PIN yako.</string>
|
||||
<!-- Describes how to confirm the new Signal PIN. -->
|
||||
<string name="PinCreationScreen__reenter_pin_description">Re-enter the PIN you just created</string>
|
||||
<string name="PinCreationScreen__reenter_pin_description">Weka tena PIN uliyotoka kuunda</string>
|
||||
<!-- Describes the purpose of creating a Signal PIN. -->
|
||||
<string name="PinCreationScreen__pins_can_help">PIN zinaweza kusaidia kurejesha akaunti yako ikiwa utapoteza simu yako. </string>
|
||||
<!-- Labels the button to learn more about Signal PINs. -->
|
||||
@@ -328,11 +328,11 @@
|
||||
<!-- Labels the button to submit a new Signal PIN. -->
|
||||
<string name="PinCreationScreen__next">Ifuatayo</string>
|
||||
<!-- Hint shown below the create PIN field when numeric keyboard is active. -->
|
||||
<string name="PinCreationScreen__pin_at_least_4_digits">PIN must be at least 4 digits</string>
|
||||
<string name="PinCreationScreen__pin_at_least_4_digits">PIN lazima iwe na angalau namba 4</string>
|
||||
<!-- Hint shown below the create PIN field when alphanumeric keyboard is active. -->
|
||||
<string name="PinCreationScreen__pin_at_least_4_characters">PIN must be at least 4 characters</string>
|
||||
<string name="PinCreationScreen__pin_at_least_4_characters">PIN lazima iwe na angalau herufi 4</string>
|
||||
<!-- Hint shown below the create PIN field when the user is confirming their new Signal PIN. -->
|
||||
<string name="PinCreationScreen__reenter_pin">Re-enter PIN</string>
|
||||
<string name="PinCreationScreen__reenter_pin">Weka tena PIN</string>
|
||||
|
||||
<!-- PIN entry screen title when registration lock is active. -->
|
||||
<string name="PinEntryScreen__registration_lock">Lock ya usajili</string>
|
||||
@@ -355,9 +355,9 @@
|
||||
<string name="PinEntryScreen__continue">Endelea</string>
|
||||
|
||||
<!-- Title for the screen asking the user to grant the notification permission -->
|
||||
<string name="AllowNotificationsScreen__allow_notifications">Allow Notifications</string>
|
||||
<string name="AllowNotificationsScreen__allow_notifications">Ruhusu Arifa</string>
|
||||
<!-- Description for the screen asking the user to grant the notification permission -->
|
||||
<string name="AllowNotificationsScreen__signal_would_like_to_request_the_notification_permission">Signal would like to request the notification permission. This allows your device to display alerts when new messages arrive.</string>
|
||||
<string name="AllowNotificationsScreen__signal_would_like_to_request_the_notification_permission">Signal ingependa kuomba ruhusa ya arifa. Hii inaruhusu kifaa chako kuonyesha arifa za jumbe mpya zikiingia.</string>
|
||||
<!-- Button label that dismisses the notification permission request without granting it -->
|
||||
<string name="AllowNotificationsScreen__not_now">Sio sasa</string>
|
||||
<!-- Button label that proceeds with the notification permission request -->
|
||||
@@ -366,36 +366,36 @@
|
||||
<!-- Title shown while messages are syncing from the primary device -->
|
||||
<string name="MessageSyncScreen__syncing_messages">Sawazisha jumbe</string>
|
||||
<!-- Subtitle shown while messages are syncing from the primary device, indicating it may take a while -->
|
||||
<string name="MessageSyncScreen__this_may_take_a_few_minutes">This may take a few minutes…</string>
|
||||
<string name="MessageSyncScreen__this_may_take_a_few_minutes">Huenda hatua hii ikachukua dakika kadhaa…</string>
|
||||
<!-- Progress label shown under the sync progress bar. %1$s is the amount downloaded so far (e.g. "1 MB"), %2$s is the total size to download (e.g. "3.2 MB") -->
|
||||
<string name="MessageSyncScreen__downloading_s_of_s">Inapakua %1$s ya %2$s</string>
|
||||
<!-- Informational notice in the sync screen footer, indicating the sync is end-to-end encrypted. Precedes a separate "Learn more" link. -->
|
||||
<string name="MessageSyncScreen__messages_and_chat_info_are_protected_by_e2ee">Messages and chat info are protected by end-to-end encryption, including the syncing process.</string>
|
||||
<string name="MessageSyncScreen__messages_and_chat_info_are_protected_by_e2ee">Maelezo ya ujumbe na gumzo yanalindwa na kusimbwa fiche, ikiwemo mchakato wa kusawazisha.</string>
|
||||
<!-- Inline link in the sync screen footer that opens documentation about end-to-end encryption during sync -->
|
||||
<string name="MessageSyncScreen__learn_more">Jifunze zaidi</string>
|
||||
<!-- Button label that cancels the in-progress message sync -->
|
||||
<string name="MessageSyncScreen__cancel">Ghairi</string>
|
||||
|
||||
<!-- Title for the screen that shows a QR code the user scans with their existing primary device to link this device as a secondary -->
|
||||
<string name="LinkAccountScreen__scan_this_code_to_link_your_account">Scan this code to link your account</string>
|
||||
<string name="LinkAccountScreen__scan_this_code_to_link_your_account">Changanua code hii ili uunganishe akaunti yako</string>
|
||||
<!-- Step in the link-account instructions: open Signal on the user\'s existing phone -->
|
||||
<string name="LinkAccountScreen__open_signal_on_your_phone">Fungua Signal kwenye simu yako</string>
|
||||
<!-- Step in the link-account instructions: tap profile picture to open Signal Settings -->
|
||||
<string name="LinkAccountScreen__tap_your_profile_picture_to_open_signal_settings">Tap your profile picture to open Signal Settings</string>
|
||||
<string name="LinkAccountScreen__tap_your_profile_picture_to_open_signal_settings">Gusa picha ya wasifu wako ili ufungue Mipangilio ya Signal</string>
|
||||
<!-- Step in the link-account instructions: navigate to the Linked devices section and tap Link new device. The quoted strings should match the button/menu labels in the primary device\'s settings. -->
|
||||
<string name="LinkAccountScreen__tap_linked_devices_and_link_new_device">Tap \"Linked devices\" and \"Link new device\"</string>
|
||||
<string name="LinkAccountScreen__tap_linked_devices_and_link_new_device">Gusa \"Vifaa vilivyounganishwa\" na \"Unganisha kifaa kipya\"</string>
|
||||
<!-- Step in the link-account instructions: aim the primary device\'s camera at the QR code displayed on this screen -->
|
||||
<string name="LinkAccountScreen__position_the_camera_over_this_qr_code">Position the camera over this qr code</string>
|
||||
<string name="LinkAccountScreen__position_the_camera_over_this_qr_code">Lengesha kamera juu ya code ya qr</string>
|
||||
<!-- Button label opening help content for users who can\'t complete the link-account steps -->
|
||||
<string name="LinkAccountScreen__get_help_with_these_steps">Get help with these steps</string>
|
||||
<string name="LinkAccountScreen__get_help_with_these_steps">Pata usaidizi wa hatua hizi</string>
|
||||
<!-- Accessibility content description for the button that enlarges the QR code to full screen -->
|
||||
<string name="LinkAccountScreen__maximize_qr_code">Maximize QR Code</string>
|
||||
<string name="LinkAccountScreen__maximize_qr_code">Boresha code ya QR</string>
|
||||
<!-- Label shown in place of the QR code after the primary device has successfully scanned it -->
|
||||
<string name="LinkAccountScreen__scanned">Scanned</string>
|
||||
<string name="LinkAccountScreen__scanned">Imechanganuliwa</string>
|
||||
<!-- Error label shown in place of the QR code if it could not be generated -->
|
||||
<string name="LinkAccountScreen__failed_to_generate_code">Failed to generate code</string>
|
||||
<string name="LinkAccountScreen__failed_to_generate_code">Imeshindwa kutayarisha code</string>
|
||||
<!-- Footer prompt asking the user if they have another device with Signal. Precedes a separate "Create account" link. -->
|
||||
<string name="LinkAccountScreen__dont_have_signal_on_another_device">Don\'t have Signal on another device?</string>
|
||||
<string name="LinkAccountScreen__dont_have_signal_on_another_device">Hauna Signal kwenye kifaa kingine?</string>
|
||||
<!-- Inline link in the link-account screen footer that takes the user to the new-account creation flow instead of linking -->
|
||||
<string name="LinkAccountScreen__create_account">Fungua akaunti</string>
|
||||
</resources>
|
||||
|
||||
@@ -314,9 +314,9 @@
|
||||
<!-- PIN creation screen title. -->
|
||||
<string name="PinCreationScreen__create_your_pin">உங்கள் பின்னை உருவாக்கவும்</string>
|
||||
<!-- PIN creation screen title when confirming the new Signal PIN. -->
|
||||
<string name="PinCreationScreen__confirm_your_pin">Confirm your PIN</string>
|
||||
<string name="PinCreationScreen__confirm_your_pin">உங்கள் பின்னை உறுதிப்படுத்துக</string>
|
||||
<!-- Describes how to confirm the new Signal PIN. -->
|
||||
<string name="PinCreationScreen__reenter_pin_description">Re-enter the PIN you just created</string>
|
||||
<string name="PinCreationScreen__reenter_pin_description">நீங்கள் தற்போது உருவாக்கிய பின்னை மீண்டும் உள்ளிடுக</string>
|
||||
<!-- Describes the purpose of creating a Signal PIN. -->
|
||||
<string name="PinCreationScreen__pins_can_help">நீங்கள் உங்கள் பேசியைத் தொலைத்துவிட்டால் உங்கள் கணக்கை மீட்டெடுக்க பின்கள் உதவும். </string>
|
||||
<!-- Labels the button to learn more about Signal PINs. -->
|
||||
@@ -328,11 +328,11 @@
|
||||
<!-- Labels the button to submit a new Signal PIN. -->
|
||||
<string name="PinCreationScreen__next">அடுத்தது</string>
|
||||
<!-- Hint shown below the create PIN field when numeric keyboard is active. -->
|
||||
<string name="PinCreationScreen__pin_at_least_4_digits">PIN must be at least 4 digits</string>
|
||||
<string name="PinCreationScreen__pin_at_least_4_digits">பின் குறைந்தது 4 இலக்கங்களில் இருக்க வேண்டும்</string>
|
||||
<!-- Hint shown below the create PIN field when alphanumeric keyboard is active. -->
|
||||
<string name="PinCreationScreen__pin_at_least_4_characters">PIN must be at least 4 characters</string>
|
||||
<string name="PinCreationScreen__pin_at_least_4_characters">பின் குறைந்தது 4 எழுத்துக்களில் இருக்க வேண்டும்</string>
|
||||
<!-- Hint shown below the create PIN field when the user is confirming their new Signal PIN. -->
|
||||
<string name="PinCreationScreen__reenter_pin">Re-enter PIN</string>
|
||||
<string name="PinCreationScreen__reenter_pin">பின்னை மீண்டும் உள்ளிடுக</string>
|
||||
|
||||
<!-- PIN entry screen title when registration lock is active. -->
|
||||
<string name="PinEntryScreen__registration_lock">பதிவு பூட்டு</string>
|
||||
@@ -355,9 +355,9 @@
|
||||
<string name="PinEntryScreen__continue">தொடர்</string>
|
||||
|
||||
<!-- Title for the screen asking the user to grant the notification permission -->
|
||||
<string name="AllowNotificationsScreen__allow_notifications">Allow Notifications</string>
|
||||
<string name="AllowNotificationsScreen__allow_notifications">அறிவிப்புகளுக்கான அனுமதி</string>
|
||||
<!-- Description for the screen asking the user to grant the notification permission -->
|
||||
<string name="AllowNotificationsScreen__signal_would_like_to_request_the_notification_permission">Signal would like to request the notification permission. This allows your device to display alerts when new messages arrive.</string>
|
||||
<string name="AllowNotificationsScreen__signal_would_like_to_request_the_notification_permission">சிக்னல் அறிவிப்பு அனுமதியைக் கோர விரும்புகிறது. புதிய செய்திகள் வரும்போது அறிவிப்புகளைக் காட்ட இது உங்கள் சாதனத்தை அனுமதிக்கிறது.</string>
|
||||
<!-- Button label that dismisses the notification permission request without granting it -->
|
||||
<string name="AllowNotificationsScreen__not_now">இப்போது வேண்டாம்</string>
|
||||
<!-- Button label that proceeds with the notification permission request -->
|
||||
@@ -366,36 +366,36 @@
|
||||
<!-- Title shown while messages are syncing from the primary device -->
|
||||
<string name="MessageSyncScreen__syncing_messages">மெசேஜ்களை ஒத்திசைக்கிறது</string>
|
||||
<!-- Subtitle shown while messages are syncing from the primary device, indicating it may take a while -->
|
||||
<string name="MessageSyncScreen__this_may_take_a_few_minutes">This may take a few minutes…</string>
|
||||
<string name="MessageSyncScreen__this_may_take_a_few_minutes">இதற்குச் சில நிமிடங்கள் எடுக்கலாம்…</string>
|
||||
<!-- Progress label shown under the sync progress bar. %1$s is the amount downloaded so far (e.g. "1 MB"), %2$s is the total size to download (e.g. "3.2 MB") -->
|
||||
<string name="MessageSyncScreen__downloading_s_of_s">%2$s இல் %1$s ஐப் பதிவிறக்குகிறது</string>
|
||||
<!-- Informational notice in the sync screen footer, indicating the sync is end-to-end encrypted. Precedes a separate "Learn more" link. -->
|
||||
<string name="MessageSyncScreen__messages_and_chat_info_are_protected_by_e2ee">Messages and chat info are protected by end-to-end encryption, including the syncing process.</string>
|
||||
<string name="MessageSyncScreen__messages_and_chat_info_are_protected_by_e2ee">ஒத்திசைவுச் செயல்முறை உட்பட, செய்திகள் மற்றும் சாட் தகவல் ஆகியவை எண்டு-டு-எண்டு குறியாக்கத்தால் பாதுகாக்கப்படுகின்றன.</string>
|
||||
<!-- Inline link in the sync screen footer that opens documentation about end-to-end encryption during sync -->
|
||||
<string name="MessageSyncScreen__learn_more">மேலும் அறிக</string>
|
||||
<!-- Button label that cancels the in-progress message sync -->
|
||||
<string name="MessageSyncScreen__cancel">ரத்துசெய்</string>
|
||||
|
||||
<!-- Title for the screen that shows a QR code the user scans with their existing primary device to link this device as a secondary -->
|
||||
<string name="LinkAccountScreen__scan_this_code_to_link_your_account">Scan this code to link your account</string>
|
||||
<string name="LinkAccountScreen__scan_this_code_to_link_your_account">உங்கள் கணக்கை இணைக்க இந்தக் குறியீட்டை ஸ்கேன் செய்யுங்கள்</string>
|
||||
<!-- Step in the link-account instructions: open Signal on the user\'s existing phone -->
|
||||
<string name="LinkAccountScreen__open_signal_on_your_phone">உங்கள் மொபைலில் சிக்னல்-ஐத் திறக்கவும்</string>
|
||||
<!-- Step in the link-account instructions: tap profile picture to open Signal Settings -->
|
||||
<string name="LinkAccountScreen__tap_your_profile_picture_to_open_signal_settings">Tap your profile picture to open Signal Settings</string>
|
||||
<string name="LinkAccountScreen__tap_your_profile_picture_to_open_signal_settings">சிக்னல் அமைப்புகளைத் திறக்க உங்கள் சுயவிவரப் படத்தைத் தட்டுங்கள்</string>
|
||||
<!-- Step in the link-account instructions: navigate to the Linked devices section and tap Link new device. The quoted strings should match the button/menu labels in the primary device\'s settings. -->
|
||||
<string name="LinkAccountScreen__tap_linked_devices_and_link_new_device">Tap \"Linked devices\" and \"Link new device\"</string>
|
||||
<string name="LinkAccountScreen__tap_linked_devices_and_link_new_device">\"இணைக்கப்பட்ட சாதனங்கள்\" மற்றும் \"புதிய சாதனத்தை இணை\" என்பதைத் தட்டுங்கள்</string>
|
||||
<!-- Step in the link-account instructions: aim the primary device\'s camera at the QR code displayed on this screen -->
|
||||
<string name="LinkAccountScreen__position_the_camera_over_this_qr_code">Position the camera over this qr code</string>
|
||||
<string name="LinkAccountScreen__position_the_camera_over_this_qr_code">இந்த QR குறியீட்டின் மேல் கேமராவை வைக்கவும்</string>
|
||||
<!-- Button label opening help content for users who can\'t complete the link-account steps -->
|
||||
<string name="LinkAccountScreen__get_help_with_these_steps">Get help with these steps</string>
|
||||
<string name="LinkAccountScreen__get_help_with_these_steps">இந்தப் படிகளில் உதவி பெறவும்</string>
|
||||
<!-- Accessibility content description for the button that enlarges the QR code to full screen -->
|
||||
<string name="LinkAccountScreen__maximize_qr_code">Maximize QR Code</string>
|
||||
<string name="LinkAccountScreen__maximize_qr_code">QR குறியீட்டைப் பெரிதாக்குக</string>
|
||||
<!-- Label shown in place of the QR code after the primary device has successfully scanned it -->
|
||||
<string name="LinkAccountScreen__scanned">Scanned</string>
|
||||
<string name="LinkAccountScreen__scanned">ஸ்கேன் செய்யப்பட்டது</string>
|
||||
<!-- Error label shown in place of the QR code if it could not be generated -->
|
||||
<string name="LinkAccountScreen__failed_to_generate_code">Failed to generate code</string>
|
||||
<string name="LinkAccountScreen__failed_to_generate_code">குறியீட்டை உருவாக்க முடியவில்லை</string>
|
||||
<!-- Footer prompt asking the user if they have another device with Signal. Precedes a separate "Create account" link. -->
|
||||
<string name="LinkAccountScreen__dont_have_signal_on_another_device">Don\'t have Signal on another device?</string>
|
||||
<string name="LinkAccountScreen__dont_have_signal_on_another_device">மற்றொரு சாதனத்தில் சிக்னல் செயலி இல்லையா?</string>
|
||||
<!-- Inline link in the link-account screen footer that takes the user to the new-account creation flow instead of linking -->
|
||||
<string name="LinkAccountScreen__create_account">கணக்கை உருவாக்கவும்</string>
|
||||
</resources>
|
||||
|
||||
@@ -314,9 +314,9 @@
|
||||
<!-- PIN creation screen title. -->
|
||||
<string name="PinCreationScreen__create_your_pin">మీ పిన్ను సృష్టించండి</string>
|
||||
<!-- PIN creation screen title when confirming the new Signal PIN. -->
|
||||
<string name="PinCreationScreen__confirm_your_pin">Confirm your PIN</string>
|
||||
<string name="PinCreationScreen__confirm_your_pin">మీ PIN ను నిర్ధారించండి</string>
|
||||
<!-- Describes how to confirm the new Signal PIN. -->
|
||||
<string name="PinCreationScreen__reenter_pin_description">Re-enter the PIN you just created</string>
|
||||
<string name="PinCreationScreen__reenter_pin_description">మీరు ఇప్పుడే సృష్టించిన PIN ను తిరిగి ఎంటర్ చేయండి</string>
|
||||
<!-- Describes the purpose of creating a Signal PIN. -->
|
||||
<string name="PinCreationScreen__pins_can_help">ఒకవేళ మీరు మీ ఫోన్ను పోగొట్టుకున్నట్లయితే, మీ ఖాతాను తిరిగి పొందడానికి PIN లు మీకు సహాయపడతాయి. </string>
|
||||
<!-- Labels the button to learn more about Signal PINs. -->
|
||||
@@ -328,11 +328,11 @@
|
||||
<!-- Labels the button to submit a new Signal PIN. -->
|
||||
<string name="PinCreationScreen__next">తరువాత</string>
|
||||
<!-- Hint shown below the create PIN field when numeric keyboard is active. -->
|
||||
<string name="PinCreationScreen__pin_at_least_4_digits">PIN must be at least 4 digits</string>
|
||||
<string name="PinCreationScreen__pin_at_least_4_digits">PIN కనీసం 4 అంకెలు ఉండాలి</string>
|
||||
<!-- Hint shown below the create PIN field when alphanumeric keyboard is active. -->
|
||||
<string name="PinCreationScreen__pin_at_least_4_characters">PIN must be at least 4 characters</string>
|
||||
<string name="PinCreationScreen__pin_at_least_4_characters">PIN కనీసం 4 అక్షరాలు ఉండాలి</string>
|
||||
<!-- Hint shown below the create PIN field when the user is confirming their new Signal PIN. -->
|
||||
<string name="PinCreationScreen__reenter_pin">Re-enter PIN</string>
|
||||
<string name="PinCreationScreen__reenter_pin">PIN ను తిరిగి ఎంటర్ చేయండి</string>
|
||||
|
||||
<!-- PIN entry screen title when registration lock is active. -->
|
||||
<string name="PinEntryScreen__registration_lock">నమోదు లాక్</string>
|
||||
@@ -355,9 +355,9 @@
|
||||
<string name="PinEntryScreen__continue">కొనసాగించు</string>
|
||||
|
||||
<!-- Title for the screen asking the user to grant the notification permission -->
|
||||
<string name="AllowNotificationsScreen__allow_notifications">Allow Notifications</string>
|
||||
<string name="AllowNotificationsScreen__allow_notifications">నోటిఫికేషన్లను అనుమతించండి</string>
|
||||
<!-- Description for the screen asking the user to grant the notification permission -->
|
||||
<string name="AllowNotificationsScreen__signal_would_like_to_request_the_notification_permission">Signal would like to request the notification permission. This allows your device to display alerts when new messages arrive.</string>
|
||||
<string name="AllowNotificationsScreen__signal_would_like_to_request_the_notification_permission">Signal నోటిఫికేషన్ అనుమతిని కోరాలనుకుంటోంది. కొత్త సందేశాలు వచ్చినప్పుడు మీ పరికరం హెచ్చరికలను ప్రదర్శించడానికి ఇది అనుమతిస్తుంది.</string>
|
||||
<!-- Button label that dismisses the notification permission request without granting it -->
|
||||
<string name="AllowNotificationsScreen__not_now">ఇప్పుడు కాదు</string>
|
||||
<!-- Button label that proceeds with the notification permission request -->
|
||||
@@ -366,36 +366,36 @@
|
||||
<!-- Title shown while messages are syncing from the primary device -->
|
||||
<string name="MessageSyncScreen__syncing_messages">సందేశాలను సమకాలీకరిస్తోంది</string>
|
||||
<!-- Subtitle shown while messages are syncing from the primary device, indicating it may take a while -->
|
||||
<string name="MessageSyncScreen__this_may_take_a_few_minutes">This may take a few minutes…</string>
|
||||
<string name="MessageSyncScreen__this_may_take_a_few_minutes">దీనికి కొన్ని నిమిషాలు పట్టవచ్చు…</string>
|
||||
<!-- Progress label shown under the sync progress bar. %1$s is the amount downloaded so far (e.g. "1 MB"), %2$s is the total size to download (e.g. "3.2 MB") -->
|
||||
<string name="MessageSyncScreen__downloading_s_of_s">%2$s యొక్క %1$s డౌన్లోడ్ చేస్తోంది</string>
|
||||
<!-- Informational notice in the sync screen footer, indicating the sync is end-to-end encrypted. Precedes a separate "Learn more" link. -->
|
||||
<string name="MessageSyncScreen__messages_and_chat_info_are_protected_by_e2ee">Messages and chat info are protected by end-to-end encryption, including the syncing process.</string>
|
||||
<string name="MessageSyncScreen__messages_and_chat_info_are_protected_by_e2ee">సమకాలీకరణ ప్రక్రియతో సహా ఎండ్-టు-ఎండ్ గుప్తీకరణ ద్వారా సందేశాలు మరియు చాట్ సమాచారం సంరక్షించబడతాయి.</string>
|
||||
<!-- Inline link in the sync screen footer that opens documentation about end-to-end encryption during sync -->
|
||||
<string name="MessageSyncScreen__learn_more">మరింత తెలుసుకోండి</string>
|
||||
<!-- Button label that cancels the in-progress message sync -->
|
||||
<string name="MessageSyncScreen__cancel">రద్దు చేయండి</string>
|
||||
|
||||
<!-- Title for the screen that shows a QR code the user scans with their existing primary device to link this device as a secondary -->
|
||||
<string name="LinkAccountScreen__scan_this_code_to_link_your_account">Scan this code to link your account</string>
|
||||
<string name="LinkAccountScreen__scan_this_code_to_link_your_account">మీ ఖాతాను అనుసంధానించడానికి ఈ కోడ్ను స్కాన్ చేయండి</string>
|
||||
<!-- Step in the link-account instructions: open Signal on the user\'s existing phone -->
|
||||
<string name="LinkAccountScreen__open_signal_on_your_phone">మీ ఫోన్పై Signal ని ఓపెన్ చేయండి</string>
|
||||
<!-- Step in the link-account instructions: tap profile picture to open Signal Settings -->
|
||||
<string name="LinkAccountScreen__tap_your_profile_picture_to_open_signal_settings">Tap your profile picture to open Signal Settings</string>
|
||||
<string name="LinkAccountScreen__tap_your_profile_picture_to_open_signal_settings">Signal సెట్టింగ్లను తెరవడానికి మీ ప్రొఫైల్ చిత్రాన్ని తట్టండి</string>
|
||||
<!-- Step in the link-account instructions: navigate to the Linked devices section and tap Link new device. The quoted strings should match the button/menu labels in the primary device\'s settings. -->
|
||||
<string name="LinkAccountScreen__tap_linked_devices_and_link_new_device">Tap \"Linked devices\" and \"Link new device\"</string>
|
||||
<string name="LinkAccountScreen__tap_linked_devices_and_link_new_device">\"లింక్ చేయబడిన పరికరాలు\" మరియు \"కొత్త పరికరాన్ని లింక్ చేయండి\" తట్టిండి</string>
|
||||
<!-- Step in the link-account instructions: aim the primary device\'s camera at the QR code displayed on this screen -->
|
||||
<string name="LinkAccountScreen__position_the_camera_over_this_qr_code">Position the camera over this qr code</string>
|
||||
<string name="LinkAccountScreen__position_the_camera_over_this_qr_code">ఈ QR కోడ్ పైన కెమెరాను ఉంచండి</string>
|
||||
<!-- Button label opening help content for users who can\'t complete the link-account steps -->
|
||||
<string name="LinkAccountScreen__get_help_with_these_steps">Get help with these steps</string>
|
||||
<string name="LinkAccountScreen__get_help_with_these_steps">ఈ దశలకు సంబంధించి సహాయం పొందండి</string>
|
||||
<!-- Accessibility content description for the button that enlarges the QR code to full screen -->
|
||||
<string name="LinkAccountScreen__maximize_qr_code">Maximize QR Code</string>
|
||||
<string name="LinkAccountScreen__maximize_qr_code">QR కోడ్ను గరిష్ఠం చేయండి</string>
|
||||
<!-- Label shown in place of the QR code after the primary device has successfully scanned it -->
|
||||
<string name="LinkAccountScreen__scanned">Scanned</string>
|
||||
<string name="LinkAccountScreen__scanned">స్కాన్ చేయబడింది</string>
|
||||
<!-- Error label shown in place of the QR code if it could not be generated -->
|
||||
<string name="LinkAccountScreen__failed_to_generate_code">Failed to generate code</string>
|
||||
<string name="LinkAccountScreen__failed_to_generate_code">కోడ్ను రూపొందించడంలో విఫలమైంది</string>
|
||||
<!-- Footer prompt asking the user if they have another device with Signal. Precedes a separate "Create account" link. -->
|
||||
<string name="LinkAccountScreen__dont_have_signal_on_another_device">Don\'t have Signal on another device?</string>
|
||||
<string name="LinkAccountScreen__dont_have_signal_on_another_device">మరొక పరికరంలో Signal లేదా?</string>
|
||||
<!-- Inline link in the link-account screen footer that takes the user to the new-account creation flow instead of linking -->
|
||||
<string name="LinkAccountScreen__create_account">ఖాతాను సృష్టించండి</string>
|
||||
</resources>
|
||||
|
||||
@@ -315,7 +315,7 @@
|
||||
<!-- PIN creation screen title when confirming the new Signal PIN. -->
|
||||
<string name="PinCreationScreen__confirm_your_pin">ยืนยัน PIN ของคุณ</string>
|
||||
<!-- Describes how to confirm the new Signal PIN. -->
|
||||
<string name="PinCreationScreen__reenter_pin_description">Re-enter the PIN you just created</string>
|
||||
<string name="PinCreationScreen__reenter_pin_description">ใส่ PIN ที่คุณเพิ่งสร้างอีกครั้ง</string>
|
||||
<!-- Describes the purpose of creating a Signal PIN. -->
|
||||
<string name="PinCreationScreen__pins_can_help">PIN ช่วยให้คุณสามารถกู้คืนบัญชีในกรณีที่ทำโทรศัพท์หาย </string>
|
||||
<!-- Labels the button to learn more about Signal PINs. -->
|
||||
@@ -355,7 +355,7 @@
|
||||
<!-- Title for the screen asking the user to grant the notification permission -->
|
||||
<string name="AllowNotificationsScreen__allow_notifications">อนุญาตการแจ้งเตือน</string>
|
||||
<!-- Description for the screen asking the user to grant the notification permission -->
|
||||
<string name="AllowNotificationsScreen__signal_would_like_to_request_the_notification_permission">Signal would like to request the notification permission. This allows your device to display alerts when new messages arrive.</string>
|
||||
<string name="AllowNotificationsScreen__signal_would_like_to_request_the_notification_permission">Signal ต้องการขออนุญาตสิทธิ์ในการแจ้งเตือน นี่จะทำให้อุปกรณ์ของคุณสามารถแสดงการแจ้งเตือนเมื่อได้รับข้อความใหม่</string>
|
||||
<!-- Button label that dismisses the notification permission request without granting it -->
|
||||
<string name="AllowNotificationsScreen__not_now">ไว้ทีหลัง</string>
|
||||
<!-- Button label that proceeds with the notification permission request -->
|
||||
@@ -364,36 +364,36 @@
|
||||
<!-- Title shown while messages are syncing from the primary device -->
|
||||
<string name="MessageSyncScreen__syncing_messages">กำลังซิงค์ข้อความ</string>
|
||||
<!-- Subtitle shown while messages are syncing from the primary device, indicating it may take a while -->
|
||||
<string name="MessageSyncScreen__this_may_take_a_few_minutes">This may take a few minutes…</string>
|
||||
<string name="MessageSyncScreen__this_may_take_a_few_minutes">ขั้นตอนนี้อาจใช้เวลาสักครู่…</string>
|
||||
<!-- Progress label shown under the sync progress bar. %1$s is the amount downloaded so far (e.g. "1 MB"), %2$s is the total size to download (e.g. "3.2 MB") -->
|
||||
<string name="MessageSyncScreen__downloading_s_of_s">กำลังดาวน์โหลด %1$s จาก %2$s</string>
|
||||
<!-- Informational notice in the sync screen footer, indicating the sync is end-to-end encrypted. Precedes a separate "Learn more" link. -->
|
||||
<string name="MessageSyncScreen__messages_and_chat_info_are_protected_by_e2ee">Messages and chat info are protected by end-to-end encryption, including the syncing process.</string>
|
||||
<string name="MessageSyncScreen__messages_and_chat_info_are_protected_by_e2ee">ปกป้องข้อความและข้อมูลการแชทด้วยการเข้ารหัสตั้งแต่ต้นทางถึงปลายทาง รวมถึงในขั้นตอนการซิงค์</string>
|
||||
<!-- Inline link in the sync screen footer that opens documentation about end-to-end encryption during sync -->
|
||||
<string name="MessageSyncScreen__learn_more">เรียนรู้เพิ่มเติม</string>
|
||||
<!-- Button label that cancels the in-progress message sync -->
|
||||
<string name="MessageSyncScreen__cancel">ยกเลิก</string>
|
||||
|
||||
<!-- Title for the screen that shows a QR code the user scans with their existing primary device to link this device as a secondary -->
|
||||
<string name="LinkAccountScreen__scan_this_code_to_link_your_account">Scan this code to link your account</string>
|
||||
<string name="LinkAccountScreen__scan_this_code_to_link_your_account">สแกนคิวอาร์โค้ดนี้เพื่อเชื่อมโยงบัญชีของคุณ</string>
|
||||
<!-- Step in the link-account instructions: open Signal on the user\'s existing phone -->
|
||||
<string name="LinkAccountScreen__open_signal_on_your_phone">เปิด Signal บนโทรศัพท์ของคุณ</string>
|
||||
<!-- Step in the link-account instructions: tap profile picture to open Signal Settings -->
|
||||
<string name="LinkAccountScreen__tap_your_profile_picture_to_open_signal_settings">Tap your profile picture to open Signal Settings</string>
|
||||
<string name="LinkAccountScreen__tap_your_profile_picture_to_open_signal_settings">แตะที่รูปโปรไฟล์ของคุณเพื่อเปิดการตั้งค่า Signal</string>
|
||||
<!-- Step in the link-account instructions: navigate to the Linked devices section and tap Link new device. The quoted strings should match the button/menu labels in the primary device\'s settings. -->
|
||||
<string name="LinkAccountScreen__tap_linked_devices_and_link_new_device">Tap \"Linked devices\" and \"Link new device\"</string>
|
||||
<string name="LinkAccountScreen__tap_linked_devices_and_link_new_device">แตะ \"อุปกรณ์ที่เชื่อมโยงอยู่\" และ \"เชื่อมโยงอุปกรณ์ใหม่\"</string>
|
||||
<!-- Step in the link-account instructions: aim the primary device\'s camera at the QR code displayed on this screen -->
|
||||
<string name="LinkAccountScreen__position_the_camera_over_this_qr_code">Position the camera over this qr code</string>
|
||||
<string name="LinkAccountScreen__position_the_camera_over_this_qr_code">ถือกล้องไว้เหนือคิวอาร์โค้ดนี้</string>
|
||||
<!-- Button label opening help content for users who can\'t complete the link-account steps -->
|
||||
<string name="LinkAccountScreen__get_help_with_these_steps">Get help with these steps</string>
|
||||
<string name="LinkAccountScreen__get_help_with_these_steps">ความช่วยเหลือเพิ่มเติมเกี่ยวกับขั้นตอนนี้</string>
|
||||
<!-- Accessibility content description for the button that enlarges the QR code to full screen -->
|
||||
<string name="LinkAccountScreen__maximize_qr_code">Maximize QR Code</string>
|
||||
<string name="LinkAccountScreen__maximize_qr_code">ขยายคิวอาร์โค้ด</string>
|
||||
<!-- Label shown in place of the QR code after the primary device has successfully scanned it -->
|
||||
<string name="LinkAccountScreen__scanned">Scanned</string>
|
||||
<string name="LinkAccountScreen__scanned">สแกนแล้ว</string>
|
||||
<!-- Error label shown in place of the QR code if it could not be generated -->
|
||||
<string name="LinkAccountScreen__failed_to_generate_code">Failed to generate code</string>
|
||||
<string name="LinkAccountScreen__failed_to_generate_code">สร้างคิวอาร์โค้ดไม่สำเร็จ</string>
|
||||
<!-- Footer prompt asking the user if they have another device with Signal. Precedes a separate "Create account" link. -->
|
||||
<string name="LinkAccountScreen__dont_have_signal_on_another_device">Don\'t have Signal on another device?</string>
|
||||
<string name="LinkAccountScreen__dont_have_signal_on_another_device">หากอุปกรณ์อีกเครื่องยังไม่มีแอป Signal</string>
|
||||
<!-- Inline link in the link-account screen footer that takes the user to the new-account creation flow instead of linking -->
|
||||
<string name="LinkAccountScreen__create_account">สร้างบัญชีใหม่</string>
|
||||
</resources>
|
||||
|
||||
@@ -314,9 +314,9 @@
|
||||
<!-- PIN creation screen title. -->
|
||||
<string name="PinCreationScreen__create_your_pin">Likhain ang iyong PIN</string>
|
||||
<!-- PIN creation screen title when confirming the new Signal PIN. -->
|
||||
<string name="PinCreationScreen__confirm_your_pin">Confirm your PIN</string>
|
||||
<string name="PinCreationScreen__confirm_your_pin">Kumpirmahin ang PIN mo</string>
|
||||
<!-- Describes how to confirm the new Signal PIN. -->
|
||||
<string name="PinCreationScreen__reenter_pin_description">Re-enter the PIN you just created</string>
|
||||
<string name="PinCreationScreen__reenter_pin_description">Ilagay ulit ang PIN na ginawa mo</string>
|
||||
<!-- Describes the purpose of creating a Signal PIN. -->
|
||||
<string name="PinCreationScreen__pins_can_help">Nakatutulong ang PINs sa pag-restore ng account mo kapag mawala ang phone mo. </string>
|
||||
<!-- Labels the button to learn more about Signal PINs. -->
|
||||
@@ -328,11 +328,11 @@
|
||||
<!-- Labels the button to submit a new Signal PIN. -->
|
||||
<string name="PinCreationScreen__next">Susunod</string>
|
||||
<!-- Hint shown below the create PIN field when numeric keyboard is active. -->
|
||||
<string name="PinCreationScreen__pin_at_least_4_digits">PIN must be at least 4 digits</string>
|
||||
<string name="PinCreationScreen__pin_at_least_4_digits">Ang PIN ay dapat 4 digits pataas</string>
|
||||
<!-- Hint shown below the create PIN field when alphanumeric keyboard is active. -->
|
||||
<string name="PinCreationScreen__pin_at_least_4_characters">PIN must be at least 4 characters</string>
|
||||
<string name="PinCreationScreen__pin_at_least_4_characters">Ang PIN ay dapat 4 characters pataas</string>
|
||||
<!-- Hint shown below the create PIN field when the user is confirming their new Signal PIN. -->
|
||||
<string name="PinCreationScreen__reenter_pin">Re-enter PIN</string>
|
||||
<string name="PinCreationScreen__reenter_pin">Ilagay ulit ang PIN</string>
|
||||
|
||||
<!-- PIN entry screen title when registration lock is active. -->
|
||||
<string name="PinEntryScreen__registration_lock">Lock sa Pagpaparehistro</string>
|
||||
@@ -355,9 +355,9 @@
|
||||
<string name="PinEntryScreen__continue">Magpatuloy</string>
|
||||
|
||||
<!-- Title for the screen asking the user to grant the notification permission -->
|
||||
<string name="AllowNotificationsScreen__allow_notifications">Allow Notifications</string>
|
||||
<string name="AllowNotificationsScreen__allow_notifications">Payagan ang notifications</string>
|
||||
<!-- Description for the screen asking the user to grant the notification permission -->
|
||||
<string name="AllowNotificationsScreen__signal_would_like_to_request_the_notification_permission">Signal would like to request the notification permission. This allows your device to display alerts when new messages arrive.</string>
|
||||
<string name="AllowNotificationsScreen__signal_would_like_to_request_the_notification_permission">Humihingi ng notification permission ang Signal. Papayagan nito ang device mong magpakita ng alerts kapag may dumating na bagong messages.</string>
|
||||
<!-- Button label that dismisses the notification permission request without granting it -->
|
||||
<string name="AllowNotificationsScreen__not_now">Hindi na muna</string>
|
||||
<!-- Button label that proceeds with the notification permission request -->
|
||||
@@ -366,36 +366,36 @@
|
||||
<!-- Title shown while messages are syncing from the primary device -->
|
||||
<string name="MessageSyncScreen__syncing_messages">Sini-sync ang messages</string>
|
||||
<!-- Subtitle shown while messages are syncing from the primary device, indicating it may take a while -->
|
||||
<string name="MessageSyncScreen__this_may_take_a_few_minutes">This may take a few minutes…</string>
|
||||
<string name="MessageSyncScreen__this_may_take_a_few_minutes">Maaari itong tumagal nang ilang minuto…</string>
|
||||
<!-- Progress label shown under the sync progress bar. %1$s is the amount downloaded so far (e.g. "1 MB"), %2$s is the total size to download (e.g. "3.2 MB") -->
|
||||
<string name="MessageSyncScreen__downloading_s_of_s">Dina-download ang %1$s ng %2$s</string>
|
||||
<!-- Informational notice in the sync screen footer, indicating the sync is end-to-end encrypted. Precedes a separate "Learn more" link. -->
|
||||
<string name="MessageSyncScreen__messages_and_chat_info_are_protected_by_e2ee">Messages and chat info are protected by end-to-end encryption, including the syncing process.</string>
|
||||
<string name="MessageSyncScreen__messages_and_chat_info_are_protected_by_e2ee">Protektado ng end-to-end encryption ang messages at chat info, kasama ang proseso ng pag-sync.</string>
|
||||
<!-- Inline link in the sync screen footer that opens documentation about end-to-end encryption during sync -->
|
||||
<string name="MessageSyncScreen__learn_more">Matuto pa</string>
|
||||
<!-- Button label that cancels the in-progress message sync -->
|
||||
<string name="MessageSyncScreen__cancel">I-cancel</string>
|
||||
|
||||
<!-- Title for the screen that shows a QR code the user scans with their existing primary device to link this device as a secondary -->
|
||||
<string name="LinkAccountScreen__scan_this_code_to_link_your_account">Scan this code to link your account</string>
|
||||
<string name="LinkAccountScreen__scan_this_code_to_link_your_account">I-scan ang code na ito para i-link ang account mo</string>
|
||||
<!-- Step in the link-account instructions: open Signal on the user\'s existing phone -->
|
||||
<string name="LinkAccountScreen__open_signal_on_your_phone">I-open ang Signal sa iyong phone</string>
|
||||
<!-- Step in the link-account instructions: tap profile picture to open Signal Settings -->
|
||||
<string name="LinkAccountScreen__tap_your_profile_picture_to_open_signal_settings">Tap your profile picture to open Signal Settings</string>
|
||||
<string name="LinkAccountScreen__tap_your_profile_picture_to_open_signal_settings">I-tap ang profile picture mo para buksan ang Signal Settings</string>
|
||||
<!-- Step in the link-account instructions: navigate to the Linked devices section and tap Link new device. The quoted strings should match the button/menu labels in the primary device\'s settings. -->
|
||||
<string name="LinkAccountScreen__tap_linked_devices_and_link_new_device">Tap \"Linked devices\" and \"Link new device\"</string>
|
||||
<string name="LinkAccountScreen__tap_linked_devices_and_link_new_device">I-tap ang \"Linked devices\" at \"Mag-link ng bagong device\"</string>
|
||||
<!-- Step in the link-account instructions: aim the primary device\'s camera at the QR code displayed on this screen -->
|
||||
<string name="LinkAccountScreen__position_the_camera_over_this_qr_code">Position the camera over this qr code</string>
|
||||
<string name="LinkAccountScreen__position_the_camera_over_this_qr_code">Itapat ang camera sa QR code na ito</string>
|
||||
<!-- Button label opening help content for users who can\'t complete the link-account steps -->
|
||||
<string name="LinkAccountScreen__get_help_with_these_steps">Get help with these steps</string>
|
||||
<string name="LinkAccountScreen__get_help_with_these_steps">Makakuha ng tulong gamit ang mga hakbang na ito</string>
|
||||
<!-- Accessibility content description for the button that enlarges the QR code to full screen -->
|
||||
<string name="LinkAccountScreen__maximize_qr_code">Maximize QR Code</string>
|
||||
<string name="LinkAccountScreen__maximize_qr_code">Palakihin ang QR Code</string>
|
||||
<!-- Label shown in place of the QR code after the primary device has successfully scanned it -->
|
||||
<string name="LinkAccountScreen__scanned">Scanned</string>
|
||||
<string name="LinkAccountScreen__scanned">Na-scan na</string>
|
||||
<!-- Error label shown in place of the QR code if it could not be generated -->
|
||||
<string name="LinkAccountScreen__failed_to_generate_code">Failed to generate code</string>
|
||||
<string name="LinkAccountScreen__failed_to_generate_code">Hindi ma-generate ang code</string>
|
||||
<!-- Footer prompt asking the user if they have another device with Signal. Precedes a separate "Create account" link. -->
|
||||
<string name="LinkAccountScreen__dont_have_signal_on_another_device">Don\'t have Signal on another device?</string>
|
||||
<string name="LinkAccountScreen__dont_have_signal_on_another_device">Walang Signal sa ibang device?</string>
|
||||
<!-- Inline link in the link-account screen footer that takes the user to the new-account creation flow instead of linking -->
|
||||
<string name="LinkAccountScreen__create_account">Gumawa ng account</string>
|
||||
</resources>
|
||||
|
||||
@@ -316,7 +316,7 @@
|
||||
<!-- PIN creation screen title when confirming the new Signal PIN. -->
|
||||
<string name="PinCreationScreen__confirm_your_pin">PIN\'ini onayla</string>
|
||||
<!-- Describes how to confirm the new Signal PIN. -->
|
||||
<string name="PinCreationScreen__reenter_pin_description">Re-enter the PIN you just created</string>
|
||||
<string name="PinCreationScreen__reenter_pin_description">Az önce oluşturduğun PIN\'i tekrar gir</string>
|
||||
<!-- Describes the purpose of creating a Signal PIN. -->
|
||||
<string name="PinCreationScreen__pins_can_help">PIN\'ler, telefonunu kaybedersen hesabını geri yüklemene yardımcı olabilir. </string>
|
||||
<!-- Labels the button to learn more about Signal PINs. -->
|
||||
@@ -332,7 +332,7 @@
|
||||
<!-- Hint shown below the create PIN field when alphanumeric keyboard is active. -->
|
||||
<string name="PinCreationScreen__pin_at_least_4_characters">PIN en az 4 karakterli olmalı</string>
|
||||
<!-- Hint shown below the create PIN field when the user is confirming their new Signal PIN. -->
|
||||
<string name="PinCreationScreen__reenter_pin">PIN\'i tekrar girin</string>
|
||||
<string name="PinCreationScreen__reenter_pin">PIN\'i tekrar gir</string>
|
||||
|
||||
<!-- PIN entry screen title when registration lock is active. -->
|
||||
<string name="PinEntryScreen__registration_lock">Kaydolma Kilidi</string>
|
||||
@@ -342,8 +342,8 @@
|
||||
<string name="PinEntryScreen__enter_the_pin_you_created">Signal\'ı ilk kez yüklediğinde oluşturduğun PIN\'i gir</string>
|
||||
<!-- Error shown when an incorrect PIN is entered. %1$d is the number of attempts remaining. -->
|
||||
<plurals name="PinEntryScreen__incorrect_pin">
|
||||
<item quantity="one">Yanlış PIN. %1$d deneme hakkınız kaldı.</item>
|
||||
<item quantity="other">Yanlış PIN. %1$d deneme hakkınız kaldı.</item>
|
||||
<item quantity="one">Yanlış PIN. %1$d deneme hakkın kaldı.</item>
|
||||
<item quantity="other">Yanlış PIN. %1$d deneme hakkın kaldı.</item>
|
||||
</plurals>
|
||||
<!-- Labels the button to get help with PIN entry. -->
|
||||
<string name="PinEntryScreen__need_help">Yardıma mı ihtiyacın var?</string>
|
||||
@@ -357,7 +357,7 @@
|
||||
<!-- Title for the screen asking the user to grant the notification permission -->
|
||||
<string name="AllowNotificationsScreen__allow_notifications">Bildirimlere izin ver</string>
|
||||
<!-- Description for the screen asking the user to grant the notification permission -->
|
||||
<string name="AllowNotificationsScreen__signal_would_like_to_request_the_notification_permission">Signal would like to request the notification permission. This allows your device to display alerts when new messages arrive.</string>
|
||||
<string name="AllowNotificationsScreen__signal_would_like_to_request_the_notification_permission">Signal bildirim izni talep etmektedir. Bu, yeni mesajlar geldiğinde cihazının uyarı görüntülemesini sağlar.</string>
|
||||
<!-- Button label that dismisses the notification permission request without granting it -->
|
||||
<string name="AllowNotificationsScreen__not_now">Şimdi değil</string>
|
||||
<!-- Button label that proceeds with the notification permission request -->
|
||||
@@ -366,36 +366,36 @@
|
||||
<!-- Title shown while messages are syncing from the primary device -->
|
||||
<string name="MessageSyncScreen__syncing_messages">Mesajlar senkronize ediliyor</string>
|
||||
<!-- Subtitle shown while messages are syncing from the primary device, indicating it may take a while -->
|
||||
<string name="MessageSyncScreen__this_may_take_a_few_minutes">This may take a few minutes…</string>
|
||||
<string name="MessageSyncScreen__this_may_take_a_few_minutes">Bu işlem birkaç dakika sürebilir…</string>
|
||||
<!-- Progress label shown under the sync progress bar. %1$s is the amount downloaded so far (e.g. "1 MB"), %2$s is the total size to download (e.g. "3.2 MB") -->
|
||||
<string name="MessageSyncScreen__downloading_s_of_s">%1$s / %2$s indiriliyor</string>
|
||||
<!-- Informational notice in the sync screen footer, indicating the sync is end-to-end encrypted. Precedes a separate "Learn more" link. -->
|
||||
<string name="MessageSyncScreen__messages_and_chat_info_are_protected_by_e2ee">Messages and chat info are protected by end-to-end encryption, including the syncing process.</string>
|
||||
<string name="MessageSyncScreen__messages_and_chat_info_are_protected_by_e2ee">Mesajlar ve sohbet bilgileri, senkronizasyon süreci de dahil olmak üzere uçtan uca şifreleme ile korunmaktadır.</string>
|
||||
<!-- Inline link in the sync screen footer that opens documentation about end-to-end encryption during sync -->
|
||||
<string name="MessageSyncScreen__learn_more">Daha fazlasını öğren</string>
|
||||
<!-- Button label that cancels the in-progress message sync -->
|
||||
<string name="MessageSyncScreen__cancel">İptal</string>
|
||||
|
||||
<!-- Title for the screen that shows a QR code the user scans with their existing primary device to link this device as a secondary -->
|
||||
<string name="LinkAccountScreen__scan_this_code_to_link_your_account">Scan this code to link your account</string>
|
||||
<string name="LinkAccountScreen__scan_this_code_to_link_your_account">Hesabını bağlamak için bu kodu tara</string>
|
||||
<!-- Step in the link-account instructions: open Signal on the user\'s existing phone -->
|
||||
<string name="LinkAccountScreen__open_signal_on_your_phone">Signal\'ı telefonunda aç</string>
|
||||
<!-- Step in the link-account instructions: tap profile picture to open Signal Settings -->
|
||||
<string name="LinkAccountScreen__tap_your_profile_picture_to_open_signal_settings">Tap your profile picture to open Signal Settings</string>
|
||||
<string name="LinkAccountScreen__tap_your_profile_picture_to_open_signal_settings">Signal Ayarları\'nı açmak için profil resmine dokun</string>
|
||||
<!-- Step in the link-account instructions: navigate to the Linked devices section and tap Link new device. The quoted strings should match the button/menu labels in the primary device\'s settings. -->
|
||||
<string name="LinkAccountScreen__tap_linked_devices_and_link_new_device">Tap \"Linked devices\" and \"Link new device\"</string>
|
||||
<string name="LinkAccountScreen__tap_linked_devices_and_link_new_device">\"Bağlı cihazlar\" ve \"Yeni cihaz bağla\"ya dokun</string>
|
||||
<!-- Step in the link-account instructions: aim the primary device\'s camera at the QR code displayed on this screen -->
|
||||
<string name="LinkAccountScreen__position_the_camera_over_this_qr_code">Position the camera over this qr code</string>
|
||||
<string name="LinkAccountScreen__position_the_camera_over_this_qr_code">Kamerayı bu karekodun üzerine getir</string>
|
||||
<!-- Button label opening help content for users who can\'t complete the link-account steps -->
|
||||
<string name="LinkAccountScreen__get_help_with_these_steps">Get help with these steps</string>
|
||||
<string name="LinkAccountScreen__get_help_with_these_steps">Bu adımlar için yardım al</string>
|
||||
<!-- Accessibility content description for the button that enlarges the QR code to full screen -->
|
||||
<string name="LinkAccountScreen__maximize_qr_code">Maximize QR Code</string>
|
||||
<string name="LinkAccountScreen__maximize_qr_code">Karekodu Büyüt</string>
|
||||
<!-- Label shown in place of the QR code after the primary device has successfully scanned it -->
|
||||
<string name="LinkAccountScreen__scanned">Scanned</string>
|
||||
<string name="LinkAccountScreen__scanned">Tarandı</string>
|
||||
<!-- Error label shown in place of the QR code if it could not be generated -->
|
||||
<string name="LinkAccountScreen__failed_to_generate_code">Failed to generate code</string>
|
||||
<string name="LinkAccountScreen__failed_to_generate_code">Kod üretilemedi</string>
|
||||
<!-- Footer prompt asking the user if they have another device with Signal. Precedes a separate "Create account" link. -->
|
||||
<string name="LinkAccountScreen__dont_have_signal_on_another_device">Don\'t have Signal on another device?</string>
|
||||
<string name="LinkAccountScreen__dont_have_signal_on_another_device">Başka bir cihazda Signal\'ın yok mu?</string>
|
||||
<!-- Inline link in the link-account screen footer that takes the user to the new-account creation flow instead of linking -->
|
||||
<string name="LinkAccountScreen__create_account">Hesap oluştur</string>
|
||||
</resources>
|
||||
|
||||
@@ -315,7 +315,7 @@
|
||||
<!-- PIN creation screen title when confirming the new Signal PIN. -->
|
||||
<string name="PinCreationScreen__confirm_your_pin">PIN نى جەزملەشتۈرۈڭ</string>
|
||||
<!-- Describes how to confirm the new Signal PIN. -->
|
||||
<string name="PinCreationScreen__reenter_pin_description">Re-enter the PIN you just created</string>
|
||||
<string name="PinCreationScreen__reenter_pin_description">يېڭى قۇرغان PIN نومۇرىنى قايتا كىرگۈزۈڭ</string>
|
||||
<!-- Describes the purpose of creating a Signal PIN. -->
|
||||
<string name="PinCreationScreen__pins_can_help">ئەگەر تېلېفونىڭىزنى يۈتتۈرۈپ قويسىڭىز PIN نۇمۇرلىرى ياردەملىشىپ ھېساباتىڭىزنى ئەسلىگە كەلتۈرەلەيدۇ. </string>
|
||||
<!-- Labels the button to learn more about Signal PINs. -->
|
||||
@@ -355,7 +355,7 @@
|
||||
<!-- Title for the screen asking the user to grant the notification permission -->
|
||||
<string name="AllowNotificationsScreen__allow_notifications">ئۇقتۇرۇشقا رۇخسەت</string>
|
||||
<!-- Description for the screen asking the user to grant the notification permission -->
|
||||
<string name="AllowNotificationsScreen__signal_would_like_to_request_the_notification_permission">Signal would like to request the notification permission. This allows your device to display alerts when new messages arrive.</string>
|
||||
<string name="AllowNotificationsScreen__signal_would_like_to_request_the_notification_permission">Signal، ئۇقتۇرۇش ئىجازىتىنى تەلەپ قىلىدۇ. بۇ، ئۈسكۈنىڭىزگە يېڭى ئۇچۇرلار كەلگەندە ئۇقتۇرۇشلارنى كۆرسىتىپ ئاگاھلاندۇرۇشقا ئىمكان بېرىدۇ.</string>
|
||||
<!-- Button label that dismisses the notification permission request without granting it -->
|
||||
<string name="AllowNotificationsScreen__not_now">ھازىر ئەمەس</string>
|
||||
<!-- Button label that proceeds with the notification permission request -->
|
||||
@@ -364,36 +364,36 @@
|
||||
<!-- Title shown while messages are syncing from the primary device -->
|
||||
<string name="MessageSyncScreen__syncing_messages">ئۇچۇرلارنى ماسقەدەملەش</string>
|
||||
<!-- Subtitle shown while messages are syncing from the primary device, indicating it may take a while -->
|
||||
<string name="MessageSyncScreen__this_may_take_a_few_minutes">This may take a few minutes…</string>
|
||||
<string name="MessageSyncScreen__this_may_take_a_few_minutes">بۇنىڭغا بىر قانچە مىنۇت كېتىشى مۇمكىن…</string>
|
||||
<!-- Progress label shown under the sync progress bar. %1$s is the amount downloaded so far (e.g. "1 MB"), %2$s is the total size to download (e.g. "3.2 MB") -->
|
||||
<string name="MessageSyncScreen__downloading_s_of_s">%2$s نىڭ %1$s تى چۈشۈۋاتىدۇ</string>
|
||||
<!-- Informational notice in the sync screen footer, indicating the sync is end-to-end encrypted. Precedes a separate "Learn more" link. -->
|
||||
<string name="MessageSyncScreen__messages_and_chat_info_are_protected_by_e2ee">Messages and chat info are protected by end-to-end encryption, including the syncing process.</string>
|
||||
<string name="MessageSyncScreen__messages_and_chat_info_are_protected_by_e2ee">ئۇچۇرلار ۋە پاراڭ مەزمۇنلىرى، ماس قەدەملىك جەرياننى ئۆز ئىچىگە ئالغان ئاخىرىغىچە شىفىرلىق مەخپىيلەشتۈرۈش ئارقىلىق قوغدىلىدۇ.</string>
|
||||
<!-- Inline link in the sync screen footer that opens documentation about end-to-end encryption during sync -->
|
||||
<string name="MessageSyncScreen__learn_more">تەپسىلاتى</string>
|
||||
<!-- Button label that cancels the in-progress message sync -->
|
||||
<string name="MessageSyncScreen__cancel">بىكار قىلىش</string>
|
||||
|
||||
<!-- Title for the screen that shows a QR code the user scans with their existing primary device to link this device as a secondary -->
|
||||
<string name="LinkAccountScreen__scan_this_code_to_link_your_account">Scan this code to link your account</string>
|
||||
<string name="LinkAccountScreen__scan_this_code_to_link_your_account">بۇ كودنى سكاننېرلاپ ھېساباتىڭىزنى ئۇلاڭ</string>
|
||||
<!-- Step in the link-account instructions: open Signal on the user\'s existing phone -->
|
||||
<string name="LinkAccountScreen__open_signal_on_your_phone">تېلېفونىڭىزدا Signal نى ئېچىڭ</string>
|
||||
<!-- Step in the link-account instructions: tap profile picture to open Signal Settings -->
|
||||
<string name="LinkAccountScreen__tap_your_profile_picture_to_open_signal_settings">Tap your profile picture to open Signal Settings</string>
|
||||
<string name="LinkAccountScreen__tap_your_profile_picture_to_open_signal_settings">باش رەسىمىڭىزنى چېكىپ Signal تەڭشەكلىرىنى ئېچىڭ</string>
|
||||
<!-- Step in the link-account instructions: navigate to the Linked devices section and tap Link new device. The quoted strings should match the button/menu labels in the primary device\'s settings. -->
|
||||
<string name="LinkAccountScreen__tap_linked_devices_and_link_new_device">Tap \"Linked devices\" and \"Link new device\"</string>
|
||||
<string name="LinkAccountScreen__tap_linked_devices_and_link_new_device">«ئۇلانغان ئۈسكۈنىلەر» ۋە «يېڭى ئۈسكۈنىنى ئۇلاش» نى چېكىڭ</string>
|
||||
<!-- Step in the link-account instructions: aim the primary device\'s camera at the QR code displayed on this screen -->
|
||||
<string name="LinkAccountScreen__position_the_camera_over_this_qr_code">Position the camera over this qr code</string>
|
||||
<string name="LinkAccountScreen__position_the_camera_over_this_qr_code">كامېرنى بۇ QR كودىغا قارىتىپ توغىرلاڭ</string>
|
||||
<!-- Button label opening help content for users who can\'t complete the link-account steps -->
|
||||
<string name="LinkAccountScreen__get_help_with_these_steps">Get help with these steps</string>
|
||||
<string name="LinkAccountScreen__get_help_with_these_steps">بۇ قەدەم-باسقۇچلار ئارقىلىق ياردەمگە ئېرىشىڭ</string>
|
||||
<!-- Accessibility content description for the button that enlarges the QR code to full screen -->
|
||||
<string name="LinkAccountScreen__maximize_qr_code">Maximize QR Code</string>
|
||||
<string name="LinkAccountScreen__maximize_qr_code">QR كودىنى چوڭايتىش</string>
|
||||
<!-- Label shown in place of the QR code after the primary device has successfully scanned it -->
|
||||
<string name="LinkAccountScreen__scanned">Scanned</string>
|
||||
<string name="LinkAccountScreen__scanned">سېكاننېرلاندى</string>
|
||||
<!-- Error label shown in place of the QR code if it could not be generated -->
|
||||
<string name="LinkAccountScreen__failed_to_generate_code">Failed to generate code</string>
|
||||
<string name="LinkAccountScreen__failed_to_generate_code">كودنى ھاسىل قىلالمىدى</string>
|
||||
<!-- Footer prompt asking the user if they have another device with Signal. Precedes a separate "Create account" link. -->
|
||||
<string name="LinkAccountScreen__dont_have_signal_on_another_device">Don\'t have Signal on another device?</string>
|
||||
<string name="LinkAccountScreen__dont_have_signal_on_another_device">باشقا ئۈسكۈنىڭىزدە Signal يوقمۇ؟</string>
|
||||
<!-- Inline link in the link-account screen footer that takes the user to the new-account creation flow instead of linking -->
|
||||
<string name="LinkAccountScreen__create_account">ھېسابات قۇرۇش</string>
|
||||
</resources>
|
||||
|
||||
@@ -318,7 +318,7 @@
|
||||
<!-- PIN creation screen title when confirming the new Signal PIN. -->
|
||||
<string name="PinCreationScreen__confirm_your_pin">Підтвердьте PIN-код</string>
|
||||
<!-- Describes how to confirm the new Signal PIN. -->
|
||||
<string name="PinCreationScreen__reenter_pin_description">Re-enter the PIN you just created</string>
|
||||
<string name="PinCreationScreen__reenter_pin_description">Введіть створений PIN-код ще раз</string>
|
||||
<!-- Describes the purpose of creating a Signal PIN. -->
|
||||
<string name="PinCreationScreen__pins_can_help">PIN-код потрібен для відновлення акаунту, якщо ви загубите телефон. </string>
|
||||
<!-- Labels the button to learn more about Signal PINs. -->
|
||||
@@ -361,7 +361,7 @@
|
||||
<!-- Title for the screen asking the user to grant the notification permission -->
|
||||
<string name="AllowNotificationsScreen__allow_notifications">Дозвольте сповіщення</string>
|
||||
<!-- Description for the screen asking the user to grant the notification permission -->
|
||||
<string name="AllowNotificationsScreen__signal_would_like_to_request_the_notification_permission">Signal would like to request the notification permission. This allows your device to display alerts when new messages arrive.</string>
|
||||
<string name="AllowNotificationsScreen__signal_would_like_to_request_the_notification_permission">Signal просить дозвіл на надсилання сповіщень. Так застосунок зможе показувати на вашому пристрої оповістки про нові повідомлення.</string>
|
||||
<!-- Button label that dismisses the notification permission request without granting it -->
|
||||
<string name="AllowNotificationsScreen__not_now">Не зараз</string>
|
||||
<!-- Button label that proceeds with the notification permission request -->
|
||||
@@ -370,36 +370,36 @@
|
||||
<!-- Title shown while messages are syncing from the primary device -->
|
||||
<string name="MessageSyncScreen__syncing_messages">Синхронізація повідомлень</string>
|
||||
<!-- Subtitle shown while messages are syncing from the primary device, indicating it may take a while -->
|
||||
<string name="MessageSyncScreen__this_may_take_a_few_minutes">This may take a few minutes…</string>
|
||||
<string name="MessageSyncScreen__this_may_take_a_few_minutes">Синхронізація може тривати кілька хвилин…</string>
|
||||
<!-- Progress label shown under the sync progress bar. %1$s is the amount downloaded so far (e.g. "1 MB"), %2$s is the total size to download (e.g. "3.2 MB") -->
|
||||
<string name="MessageSyncScreen__downloading_s_of_s">Завантаження: %1$s з %2$s</string>
|
||||
<!-- Informational notice in the sync screen footer, indicating the sync is end-to-end encrypted. Precedes a separate "Learn more" link. -->
|
||||
<string name="MessageSyncScreen__messages_and_chat_info_are_protected_by_e2ee">Messages and chat info are protected by end-to-end encryption, including the syncing process.</string>
|
||||
<string name="MessageSyncScreen__messages_and_chat_info_are_protected_by_e2ee">Повідомлення й інформацію про чати, а також сам процес синхронізації захищено наскрізним шифруванням.</string>
|
||||
<!-- Inline link in the sync screen footer that opens documentation about end-to-end encryption during sync -->
|
||||
<string name="MessageSyncScreen__learn_more">Докладніше</string>
|
||||
<!-- Button label that cancels the in-progress message sync -->
|
||||
<string name="MessageSyncScreen__cancel">Закрити</string>
|
||||
|
||||
<!-- Title for the screen that shows a QR code the user scans with their existing primary device to link this device as a secondary -->
|
||||
<string name="LinkAccountScreen__scan_this_code_to_link_your_account">Scan this code to link your account</string>
|
||||
<string name="LinkAccountScreen__scan_this_code_to_link_your_account">Зіскануйте цей QR-код, щоб зв\'язати свій акаунт</string>
|
||||
<!-- Step in the link-account instructions: open Signal on the user\'s existing phone -->
|
||||
<string name="LinkAccountScreen__open_signal_on_your_phone">Відкрийте Signal на телефоні</string>
|
||||
<!-- Step in the link-account instructions: tap profile picture to open Signal Settings -->
|
||||
<string name="LinkAccountScreen__tap_your_profile_picture_to_open_signal_settings">Tap your profile picture to open Signal Settings</string>
|
||||
<string name="LinkAccountScreen__tap_your_profile_picture_to_open_signal_settings">Торкніться фото свого профілю, щоб відкрити налаштування Signal</string>
|
||||
<!-- Step in the link-account instructions: navigate to the Linked devices section and tap Link new device. The quoted strings should match the button/menu labels in the primary device\'s settings. -->
|
||||
<string name="LinkAccountScreen__tap_linked_devices_and_link_new_device">Tap \"Linked devices\" and \"Link new device\"</string>
|
||||
<string name="LinkAccountScreen__tap_linked_devices_and_link_new_device">Виберіть «Зв\'язані пристрої» та «Зв\'язати новий пристрій»</string>
|
||||
<!-- Step in the link-account instructions: aim the primary device\'s camera at the QR code displayed on this screen -->
|
||||
<string name="LinkAccountScreen__position_the_camera_over_this_qr_code">Position the camera over this qr code</string>
|
||||
<string name="LinkAccountScreen__position_the_camera_over_this_qr_code">Наведіть камеру на цей QR-код</string>
|
||||
<!-- Button label opening help content for users who can\'t complete the link-account steps -->
|
||||
<string name="LinkAccountScreen__get_help_with_these_steps">Get help with these steps</string>
|
||||
<string name="LinkAccountScreen__get_help_with_these_steps">Мені потрібна допомога</string>
|
||||
<!-- Accessibility content description for the button that enlarges the QR code to full screen -->
|
||||
<string name="LinkAccountScreen__maximize_qr_code">Maximize QR Code</string>
|
||||
<string name="LinkAccountScreen__maximize_qr_code">Збільшити QR-код</string>
|
||||
<!-- Label shown in place of the QR code after the primary device has successfully scanned it -->
|
||||
<string name="LinkAccountScreen__scanned">Scanned</string>
|
||||
<string name="LinkAccountScreen__scanned">Зіскановано</string>
|
||||
<!-- Error label shown in place of the QR code if it could not be generated -->
|
||||
<string name="LinkAccountScreen__failed_to_generate_code">Failed to generate code</string>
|
||||
<string name="LinkAccountScreen__failed_to_generate_code">Не вдалося створити код</string>
|
||||
<!-- Footer prompt asking the user if they have another device with Signal. Precedes a separate "Create account" link. -->
|
||||
<string name="LinkAccountScreen__dont_have_signal_on_another_device">Don\'t have Signal on another device?</string>
|
||||
<string name="LinkAccountScreen__dont_have_signal_on_another_device">Не маєте Signal на іншому пристрої?</string>
|
||||
<!-- Inline link in the link-account screen footer that takes the user to the new-account creation flow instead of linking -->
|
||||
<string name="LinkAccountScreen__create_account">Створіть акаунт</string>
|
||||
</resources>
|
||||
|
||||
@@ -316,7 +316,7 @@
|
||||
<!-- PIN creation screen title when confirming the new Signal PIN. -->
|
||||
<string name="PinCreationScreen__confirm_your_pin">اپنے پِن کی تصدیق کریں</string>
|
||||
<!-- Describes how to confirm the new Signal PIN. -->
|
||||
<string name="PinCreationScreen__reenter_pin_description">Re-enter the PIN you just created</string>
|
||||
<string name="PinCreationScreen__reenter_pin_description">اپنی حالیہ تخلیق کردہ پن دوبارہ درج کریں</string>
|
||||
<!-- Describes the purpose of creating a Signal PIN. -->
|
||||
<string name="PinCreationScreen__pins_can_help">اگر آپ اپنا فون کھو دیتے ہیں تو پنز آپ کو اپنے اکاؤنٹ کو بحال کرنے میں مدد کر سکتی ہیں۔ </string>
|
||||
<!-- Labels the button to learn more about Signal PINs. -->
|
||||
@@ -357,7 +357,7 @@
|
||||
<!-- Title for the screen asking the user to grant the notification permission -->
|
||||
<string name="AllowNotificationsScreen__allow_notifications">اطلاعات کی اجازت دیں</string>
|
||||
<!-- Description for the screen asking the user to grant the notification permission -->
|
||||
<string name="AllowNotificationsScreen__signal_would_like_to_request_the_notification_permission">Signal would like to request the notification permission. This allows your device to display alerts when new messages arrive.</string>
|
||||
<string name="AllowNotificationsScreen__signal_would_like_to_request_the_notification_permission">Signal اطلاعات کی اجازت کی درخواست کرنا چاہے گا۔ یہ آپ کی ڈیوائس کو نئے میسجز آنے پر الرٹس دکھانے کی اجازت دیتا ہے۔</string>
|
||||
<!-- Button label that dismisses the notification permission request without granting it -->
|
||||
<string name="AllowNotificationsScreen__not_now">ابھی نہیں</string>
|
||||
<!-- Button label that proceeds with the notification permission request -->
|
||||
@@ -366,36 +366,36 @@
|
||||
<!-- Title shown while messages are syncing from the primary device -->
|
||||
<string name="MessageSyncScreen__syncing_messages">میسجز سنک ہو رہے ہیں</string>
|
||||
<!-- Subtitle shown while messages are syncing from the primary device, indicating it may take a while -->
|
||||
<string name="MessageSyncScreen__this_may_take_a_few_minutes">This may take a few minutes…</string>
|
||||
<string name="MessageSyncScreen__this_may_take_a_few_minutes">اس میں کچھ منٹ لگ سکتے ہیں…</string>
|
||||
<!-- Progress label shown under the sync progress bar. %1$s is the amount downloaded so far (e.g. "1 MB"), %2$s is the total size to download (e.g. "3.2 MB") -->
|
||||
<string name="MessageSyncScreen__downloading_s_of_s">%2$s کا %1$s ڈاؤن لوڈ ہو رہا ہے</string>
|
||||
<!-- Informational notice in the sync screen footer, indicating the sync is end-to-end encrypted. Precedes a separate "Learn more" link. -->
|
||||
<string name="MessageSyncScreen__messages_and_chat_info_are_protected_by_e2ee">Messages and chat info are protected by end-to-end encryption, including the syncing process.</string>
|
||||
<string name="MessageSyncScreen__messages_and_chat_info_are_protected_by_e2ee">میسجز اور چیٹس کی معلومات آخر سے آخر تک انکرپشن کے ذریعے محفوظ شدہ ہیں، بشمول سنکنگ کے عمل سمیت۔</string>
|
||||
<!-- Inline link in the sync screen footer that opens documentation about end-to-end encryption during sync -->
|
||||
<string name="MessageSyncScreen__learn_more">مزید جانیں</string>
|
||||
<!-- Button label that cancels the in-progress message sync -->
|
||||
<string name="MessageSyncScreen__cancel">منسوخ کریں</string>
|
||||
|
||||
<!-- Title for the screen that shows a QR code the user scans with their existing primary device to link this device as a secondary -->
|
||||
<string name="LinkAccountScreen__scan_this_code_to_link_your_account">Scan this code to link your account</string>
|
||||
<string name="LinkAccountScreen__scan_this_code_to_link_your_account">اپنے اکاؤنٹ کو لنک کرنے کے لیے اس کوڈ کو اسکین کریں</string>
|
||||
<!-- Step in the link-account instructions: open Signal on the user\'s existing phone -->
|
||||
<string name="LinkAccountScreen__open_signal_on_your_phone">اپنے فون پر Signal کھولیں</string>
|
||||
<!-- Step in the link-account instructions: tap profile picture to open Signal Settings -->
|
||||
<string name="LinkAccountScreen__tap_your_profile_picture_to_open_signal_settings">Tap your profile picture to open Signal Settings</string>
|
||||
<string name="LinkAccountScreen__tap_your_profile_picture_to_open_signal_settings">Signal کی سیٹنگز کھولنے کے لیے اپنی پروفائل کی تصویر پر ٹیپ کریں</string>
|
||||
<!-- Step in the link-account instructions: navigate to the Linked devices section and tap Link new device. The quoted strings should match the button/menu labels in the primary device\'s settings. -->
|
||||
<string name="LinkAccountScreen__tap_linked_devices_and_link_new_device">Tap \"Linked devices\" and \"Link new device\"</string>
|
||||
<string name="LinkAccountScreen__tap_linked_devices_and_link_new_device">\"لنک کردہ ڈیوائسز\" اور \"نئی ڈیوائس کو لنک کریں\" پر ٹیپ کریں</string>
|
||||
<!-- Step in the link-account instructions: aim the primary device\'s camera at the QR code displayed on this screen -->
|
||||
<string name="LinkAccountScreen__position_the_camera_over_this_qr_code">Position the camera over this qr code</string>
|
||||
<string name="LinkAccountScreen__position_the_camera_over_this_qr_code">کیمرے کو اس qr کوڈ پر رکھیں</string>
|
||||
<!-- Button label opening help content for users who can\'t complete the link-account steps -->
|
||||
<string name="LinkAccountScreen__get_help_with_these_steps">Get help with these steps</string>
|
||||
<string name="LinkAccountScreen__get_help_with_these_steps">ان اقدامات سے مدد حاصل کریں</string>
|
||||
<!-- Accessibility content description for the button that enlarges the QR code to full screen -->
|
||||
<string name="LinkAccountScreen__maximize_qr_code">Maximize QR Code</string>
|
||||
<string name="LinkAccountScreen__maximize_qr_code">QR کوڈ کو بڑا کریں</string>
|
||||
<!-- Label shown in place of the QR code after the primary device has successfully scanned it -->
|
||||
<string name="LinkAccountScreen__scanned">Scanned</string>
|
||||
<string name="LinkAccountScreen__scanned">اسکین کیا گیا</string>
|
||||
<!-- Error label shown in place of the QR code if it could not be generated -->
|
||||
<string name="LinkAccountScreen__failed_to_generate_code">Failed to generate code</string>
|
||||
<string name="LinkAccountScreen__failed_to_generate_code">کوڈ تخلیق کرنے میں ناکامی</string>
|
||||
<!-- Footer prompt asking the user if they have another device with Signal. Precedes a separate "Create account" link. -->
|
||||
<string name="LinkAccountScreen__dont_have_signal_on_another_device">Don\'t have Signal on another device?</string>
|
||||
<string name="LinkAccountScreen__dont_have_signal_on_another_device">دوسری ڈیوائس پر Signal موجود نہیں ہے؟</string>
|
||||
<!-- Inline link in the link-account screen footer that takes the user to the new-account creation flow instead of linking -->
|
||||
<string name="LinkAccountScreen__create_account">اکاؤنٹ بنائیں</string>
|
||||
</resources>
|
||||
|
||||
@@ -315,7 +315,7 @@
|
||||
<!-- PIN creation screen title when confirming the new Signal PIN. -->
|
||||
<string name="PinCreationScreen__confirm_your_pin">Xác nhận mã PIN của bạn</string>
|
||||
<!-- Describes how to confirm the new Signal PIN. -->
|
||||
<string name="PinCreationScreen__reenter_pin_description">Re-enter the PIN you just created</string>
|
||||
<string name="PinCreationScreen__reenter_pin_description">Nhập lại mã PIN bạn vừa tạo</string>
|
||||
<!-- Describes the purpose of creating a Signal PIN. -->
|
||||
<string name="PinCreationScreen__pins_can_help">Mã PIN có thể giúp bạn khôi phục tài khoản nếu bạn làm mất điện thoại. </string>
|
||||
<!-- Labels the button to learn more about Signal PINs. -->
|
||||
@@ -327,11 +327,11 @@
|
||||
<!-- Labels the button to submit a new Signal PIN. -->
|
||||
<string name="PinCreationScreen__next">Tiếp</string>
|
||||
<!-- Hint shown below the create PIN field when numeric keyboard is active. -->
|
||||
<string name="PinCreationScreen__pin_at_least_4_digits">PIN must be at least 4 digits</string>
|
||||
<string name="PinCreationScreen__pin_at_least_4_digits">Mã PIN phải có tối thiểu 4 chữ số</string>
|
||||
<!-- Hint shown below the create PIN field when alphanumeric keyboard is active. -->
|
||||
<string name="PinCreationScreen__pin_at_least_4_characters">PIN must be at least 4 characters</string>
|
||||
<string name="PinCreationScreen__pin_at_least_4_characters">Mã PIN phải có tối thiểu 4 ký tự</string>
|
||||
<!-- Hint shown below the create PIN field when the user is confirming their new Signal PIN. -->
|
||||
<string name="PinCreationScreen__reenter_pin">Re-enter PIN</string>
|
||||
<string name="PinCreationScreen__reenter_pin">Nhập lại mã PIN</string>
|
||||
|
||||
<!-- PIN entry screen title when registration lock is active. -->
|
||||
<string name="PinEntryScreen__registration_lock">Khóa Đăng ký</string>
|
||||
@@ -355,7 +355,7 @@
|
||||
<!-- Title for the screen asking the user to grant the notification permission -->
|
||||
<string name="AllowNotificationsScreen__allow_notifications">Cho Phép Thông Báo</string>
|
||||
<!-- Description for the screen asking the user to grant the notification permission -->
|
||||
<string name="AllowNotificationsScreen__signal_would_like_to_request_the_notification_permission">Signal would like to request the notification permission. This allows your device to display alerts when new messages arrive.</string>
|
||||
<string name="AllowNotificationsScreen__signal_would_like_to_request_the_notification_permission">Signal muốn yêu cầu quyền thông báo. Điều này cho phép thiết bị của bạn hiển thị thông báo khi có tin nhắn mới.</string>
|
||||
<!-- Button label that dismisses the notification permission request without granting it -->
|
||||
<string name="AllowNotificationsScreen__not_now">Để sau</string>
|
||||
<!-- Button label that proceeds with the notification permission request -->
|
||||
@@ -364,36 +364,36 @@
|
||||
<!-- Title shown while messages are syncing from the primary device -->
|
||||
<string name="MessageSyncScreen__syncing_messages">Đang đồng bộ tin nhắn</string>
|
||||
<!-- Subtitle shown while messages are syncing from the primary device, indicating it may take a while -->
|
||||
<string name="MessageSyncScreen__this_may_take_a_few_minutes">This may take a few minutes…</string>
|
||||
<string name="MessageSyncScreen__this_may_take_a_few_minutes">Quá trình này có thể mất ít phút…</string>
|
||||
<!-- Progress label shown under the sync progress bar. %1$s is the amount downloaded so far (e.g. "1 MB"), %2$s is the total size to download (e.g. "3.2 MB") -->
|
||||
<string name="MessageSyncScreen__downloading_s_of_s">Đang tải %1$s trên tổng số %2$s</string>
|
||||
<!-- Informational notice in the sync screen footer, indicating the sync is end-to-end encrypted. Precedes a separate "Learn more" link. -->
|
||||
<string name="MessageSyncScreen__messages_and_chat_info_are_protected_by_e2ee">Messages and chat info are protected by end-to-end encryption, including the syncing process.</string>
|
||||
<string name="MessageSyncScreen__messages_and_chat_info_are_protected_by_e2ee">Thông tin tin nhắn và cuộc trò chuyện được bảo vệ bằng hình thức mã hóa đầu cuối, bao gồm cả quá trình đồng bộ.</string>
|
||||
<!-- Inline link in the sync screen footer that opens documentation about end-to-end encryption during sync -->
|
||||
<string name="MessageSyncScreen__learn_more">Tìm hiểu thêm</string>
|
||||
<!-- Button label that cancels the in-progress message sync -->
|
||||
<string name="MessageSyncScreen__cancel">Hủy</string>
|
||||
|
||||
<!-- Title for the screen that shows a QR code the user scans with their existing primary device to link this device as a secondary -->
|
||||
<string name="LinkAccountScreen__scan_this_code_to_link_your_account">Scan this code to link your account</string>
|
||||
<string name="LinkAccountScreen__scan_this_code_to_link_your_account">Quét mã này để liên kết tài khoản của bạn</string>
|
||||
<!-- Step in the link-account instructions: open Signal on the user\'s existing phone -->
|
||||
<string name="LinkAccountScreen__open_signal_on_your_phone">Mở Signal trên điện thoại của bạn</string>
|
||||
<!-- Step in the link-account instructions: tap profile picture to open Signal Settings -->
|
||||
<string name="LinkAccountScreen__tap_your_profile_picture_to_open_signal_settings">Tap your profile picture to open Signal Settings</string>
|
||||
<string name="LinkAccountScreen__tap_your_profile_picture_to_open_signal_settings">Nhấn vào ảnh đại diện của bạn để mở Cài đặt Signal</string>
|
||||
<!-- Step in the link-account instructions: navigate to the Linked devices section and tap Link new device. The quoted strings should match the button/menu labels in the primary device\'s settings. -->
|
||||
<string name="LinkAccountScreen__tap_linked_devices_and_link_new_device">Tap \"Linked devices\" and \"Link new device\"</string>
|
||||
<string name="LinkAccountScreen__tap_linked_devices_and_link_new_device">Nhấn vào \"Thiết bị đã liên kết\" và \"Liên kết thiết bị mới\"</string>
|
||||
<!-- Step in the link-account instructions: aim the primary device\'s camera at the QR code displayed on this screen -->
|
||||
<string name="LinkAccountScreen__position_the_camera_over_this_qr_code">Position the camera over this qr code</string>
|
||||
<string name="LinkAccountScreen__position_the_camera_over_this_qr_code">Đặt camera hướng vào mã QR này</string>
|
||||
<!-- Button label opening help content for users who can\'t complete the link-account steps -->
|
||||
<string name="LinkAccountScreen__get_help_with_these_steps">Get help with these steps</string>
|
||||
<string name="LinkAccountScreen__get_help_with_these_steps">Cần trợ giúp với các bước này</string>
|
||||
<!-- Accessibility content description for the button that enlarges the QR code to full screen -->
|
||||
<string name="LinkAccountScreen__maximize_qr_code">Maximize QR Code</string>
|
||||
<string name="LinkAccountScreen__maximize_qr_code">Phóng lớn mã QR</string>
|
||||
<!-- Label shown in place of the QR code after the primary device has successfully scanned it -->
|
||||
<string name="LinkAccountScreen__scanned">Scanned</string>
|
||||
<string name="LinkAccountScreen__scanned">Đã quét</string>
|
||||
<!-- Error label shown in place of the QR code if it could not be generated -->
|
||||
<string name="LinkAccountScreen__failed_to_generate_code">Failed to generate code</string>
|
||||
<string name="LinkAccountScreen__failed_to_generate_code">Tạo mã không thành công</string>
|
||||
<!-- Footer prompt asking the user if they have another device with Signal. Precedes a separate "Create account" link. -->
|
||||
<string name="LinkAccountScreen__dont_have_signal_on_another_device">Don\'t have Signal on another device?</string>
|
||||
<string name="LinkAccountScreen__dont_have_signal_on_another_device">Không có Signal trên thiết bị khác?</string>
|
||||
<!-- Inline link in the link-account screen footer that takes the user to the new-account creation flow instead of linking -->
|
||||
<string name="LinkAccountScreen__create_account">Tạo tài khoản</string>
|
||||
</resources>
|
||||
|
||||
@@ -315,7 +315,7 @@
|
||||
<!-- PIN creation screen title when confirming the new Signal PIN. -->
|
||||
<string name="PinCreationScreen__confirm_your_pin">確認你嘅 PIN 碼</string>
|
||||
<!-- Describes how to confirm the new Signal PIN. -->
|
||||
<string name="PinCreationScreen__reenter_pin_description">Re-enter the PIN you just created</string>
|
||||
<string name="PinCreationScreen__reenter_pin_description">請重新輸入你啱啱建立嘅 PIN 碼</string>
|
||||
<!-- Describes the purpose of creating a Signal PIN. -->
|
||||
<string name="PinCreationScreen__pins_can_help">如果你唔見咗手機,PIN 碼可以幫你還原帳戶。 </string>
|
||||
<!-- Labels the button to learn more about Signal PINs. -->
|
||||
@@ -355,45 +355,45 @@
|
||||
<!-- Title for the screen asking the user to grant the notification permission -->
|
||||
<string name="AllowNotificationsScreen__allow_notifications">允許通知</string>
|
||||
<!-- Description for the screen asking the user to grant the notification permission -->
|
||||
<string name="AllowNotificationsScreen__signal_would_like_to_request_the_notification_permission">Signal would like to request the notification permission. This allows your device to display alerts when new messages arrive.</string>
|
||||
<string name="AllowNotificationsScreen__signal_would_like_to_request_the_notification_permission">Signal 想請你開放通知權限。咁樣做你部機就可以喺收到新訊息嗰陣顯示通知提示。</string>
|
||||
<!-- Button label that dismisses the notification permission request without granting it -->
|
||||
<string name="AllowNotificationsScreen__not_now">遲啲先</string>
|
||||
<!-- Button label that proceeds with the notification permission request -->
|
||||
<string name="AllowNotificationsScreen__next">下一步</string>
|
||||
|
||||
<!-- Title shown while messages are syncing from the primary device -->
|
||||
<string name="MessageSyncScreen__syncing_messages">同步緊訊息</string>
|
||||
<string name="MessageSyncScreen__syncing_messages">同步緊啲訊息</string>
|
||||
<!-- Subtitle shown while messages are syncing from the primary device, indicating it may take a while -->
|
||||
<string name="MessageSyncScreen__this_may_take_a_few_minutes">This may take a few minutes…</string>
|
||||
<string name="MessageSyncScreen__this_may_take_a_few_minutes">可能要幾分鐘時間……</string>
|
||||
<!-- Progress label shown under the sync progress bar. %1$s is the amount downloaded so far (e.g. "1 MB"), %2$s is the total size to download (e.g. "3.2 MB") -->
|
||||
<string name="MessageSyncScreen__downloading_s_of_s">下載緊 %1$s / %2$s</string>
|
||||
<!-- Informational notice in the sync screen footer, indicating the sync is end-to-end encrypted. Precedes a separate "Learn more" link. -->
|
||||
<string name="MessageSyncScreen__messages_and_chat_info_are_protected_by_e2ee">Messages and chat info are protected by end-to-end encryption, including the syncing process.</string>
|
||||
<string name="MessageSyncScreen__messages_and_chat_info_are_protected_by_e2ee">訊息同聊天資料都受到端對端加密保護,包括同步過程。</string>
|
||||
<!-- Inline link in the sync screen footer that opens documentation about end-to-end encryption during sync -->
|
||||
<string name="MessageSyncScreen__learn_more">了解詳情</string>
|
||||
<!-- Button label that cancels the in-progress message sync -->
|
||||
<string name="MessageSyncScreen__cancel">取消</string>
|
||||
|
||||
<!-- Title for the screen that shows a QR code the user scans with their existing primary device to link this device as a secondary -->
|
||||
<string name="LinkAccountScreen__scan_this_code_to_link_your_account">Scan this code to link your account</string>
|
||||
<string name="LinkAccountScreen__scan_this_code_to_link_your_account">掃描呢個二維碼去連結你個帳戶</string>
|
||||
<!-- Step in the link-account instructions: open Signal on the user\'s existing phone -->
|
||||
<string name="LinkAccountScreen__open_signal_on_your_phone">喺手機度打開 Signal</string>
|
||||
<!-- Step in the link-account instructions: tap profile picture to open Signal Settings -->
|
||||
<string name="LinkAccountScreen__tap_your_profile_picture_to_open_signal_settings">Tap your profile picture to open Signal Settings</string>
|
||||
<string name="LinkAccountScreen__tap_your_profile_picture_to_open_signal_settings">㩒一下個人檔案張圖嚟打開「Signal 設定」</string>
|
||||
<!-- Step in the link-account instructions: navigate to the Linked devices section and tap Link new device. The quoted strings should match the button/menu labels in the primary device\'s settings. -->
|
||||
<string name="LinkAccountScreen__tap_linked_devices_and_link_new_device">Tap \"Linked devices\" and \"Link new device\"</string>
|
||||
<string name="LinkAccountScreen__tap_linked_devices_and_link_new_device">㩒一下「連結咗嘅裝置」同埋「連結新裝置」</string>
|
||||
<!-- Step in the link-account instructions: aim the primary device\'s camera at the QR code displayed on this screen -->
|
||||
<string name="LinkAccountScreen__position_the_camera_over_this_qr_code">Position the camera over this qr code</string>
|
||||
<string name="LinkAccountScreen__position_the_camera_over_this_qr_code">請將相機鏡頭對準呢個二維碼</string>
|
||||
<!-- Button label opening help content for users who can\'t complete the link-account steps -->
|
||||
<string name="LinkAccountScreen__get_help_with_these_steps">Get help with these steps</string>
|
||||
<string name="LinkAccountScreen__get_help_with_these_steps">搞唔掂呢啲步驟,想搵幫手</string>
|
||||
<!-- Accessibility content description for the button that enlarges the QR code to full screen -->
|
||||
<string name="LinkAccountScreen__maximize_qr_code">Maximize QR Code</string>
|
||||
<string name="LinkAccountScreen__maximize_qr_code">將二維碼放大</string>
|
||||
<!-- Label shown in place of the QR code after the primary device has successfully scanned it -->
|
||||
<string name="LinkAccountScreen__scanned">Scanned</string>
|
||||
<string name="LinkAccountScreen__scanned">掃描咗</string>
|
||||
<!-- Error label shown in place of the QR code if it could not be generated -->
|
||||
<string name="LinkAccountScreen__failed_to_generate_code">Failed to generate code</string>
|
||||
<string name="LinkAccountScreen__failed_to_generate_code">建立唔到二維碼</string>
|
||||
<!-- Footer prompt asking the user if they have another device with Signal. Precedes a separate "Create account" link. -->
|
||||
<string name="LinkAccountScreen__dont_have_signal_on_another_device">Don\'t have Signal on another device?</string>
|
||||
<string name="LinkAccountScreen__dont_have_signal_on_another_device">另一部裝置係咪冇裝 Signal 呀?</string>
|
||||
<!-- Inline link in the link-account screen footer that takes the user to the new-account creation flow instead of linking -->
|
||||
<string name="LinkAccountScreen__create_account">建立帳戶</string>
|
||||
</resources>
|
||||
|
||||
@@ -313,9 +313,9 @@
|
||||
<!-- PIN creation screen title. -->
|
||||
<string name="PinCreationScreen__create_your_pin">创建密码</string>
|
||||
<!-- PIN creation screen title when confirming the new Signal PIN. -->
|
||||
<string name="PinCreationScreen__confirm_your_pin">确认 PIN 码</string>
|
||||
<string name="PinCreationScreen__confirm_your_pin">确认密码</string>
|
||||
<!-- Describes how to confirm the new Signal PIN. -->
|
||||
<string name="PinCreationScreen__reenter_pin_description">Re-enter the PIN you just created</string>
|
||||
<string name="PinCreationScreen__reenter_pin_description">请重新输入您刚刚创建的密码</string>
|
||||
<!-- Describes the purpose of creating a Signal PIN. -->
|
||||
<string name="PinCreationScreen__pins_can_help">密码可以在您丢失手机后帮助您恢复账户。 </string>
|
||||
<!-- Labels the button to learn more about Signal PINs. -->
|
||||
@@ -327,11 +327,11 @@
|
||||
<!-- Labels the button to submit a new Signal PIN. -->
|
||||
<string name="PinCreationScreen__next">下一步</string>
|
||||
<!-- Hint shown below the create PIN field when numeric keyboard is active. -->
|
||||
<string name="PinCreationScreen__pin_at_least_4_digits">PIN 码至少需要4位数。</string>
|
||||
<string name="PinCreationScreen__pin_at_least_4_digits">密码至少需要 4 位数</string>
|
||||
<!-- Hint shown below the create PIN field when alphanumeric keyboard is active. -->
|
||||
<string name="PinCreationScreen__pin_at_least_4_characters">PIN 码至少要有4个字符。</string>
|
||||
<string name="PinCreationScreen__pin_at_least_4_characters">密码至少要有 4 个字符</string>
|
||||
<!-- Hint shown below the create PIN field when the user is confirming their new Signal PIN. -->
|
||||
<string name="PinCreationScreen__reenter_pin">重新输入 PIN</string>
|
||||
<string name="PinCreationScreen__reenter_pin">重新输入密码</string>
|
||||
|
||||
<!-- PIN entry screen title when registration lock is active. -->
|
||||
<string name="PinEntryScreen__registration_lock">注册锁定</string>
|
||||
@@ -341,7 +341,7 @@
|
||||
<string name="PinEntryScreen__enter_the_pin_you_created">请输入您首次安装 Signal 时创建的密码</string>
|
||||
<!-- Error shown when an incorrect PIN is entered. %1$d is the number of attempts remaining. -->
|
||||
<plurals name="PinEntryScreen__incorrect_pin">
|
||||
<item quantity="other">密码错误。还能尝试%1$d次。</item>
|
||||
<item quantity="other">密码错误。还能尝试 %1$d 次。</item>
|
||||
</plurals>
|
||||
<!-- Labels the button to get help with PIN entry. -->
|
||||
<string name="PinEntryScreen__need_help">需要协助?</string>
|
||||
@@ -355,7 +355,7 @@
|
||||
<!-- Title for the screen asking the user to grant the notification permission -->
|
||||
<string name="AllowNotificationsScreen__allow_notifications">允许通知</string>
|
||||
<!-- Description for the screen asking the user to grant the notification permission -->
|
||||
<string name="AllowNotificationsScreen__signal_would_like_to_request_the_notification_permission">Signal would like to request the notification permission. This allows your device to display alerts when new messages arrive.</string>
|
||||
<string name="AllowNotificationsScreen__signal_would_like_to_request_the_notification_permission">Signal 希望获得通知权限。这让您的设备在有新消息时会显示提醒。</string>
|
||||
<!-- Button label that dismisses the notification permission request without granting it -->
|
||||
<string name="AllowNotificationsScreen__not_now">稍后再说</string>
|
||||
<!-- Button label that proceeds with the notification permission request -->
|
||||
@@ -364,36 +364,36 @@
|
||||
<!-- Title shown while messages are syncing from the primary device -->
|
||||
<string name="MessageSyncScreen__syncing_messages">正在同步消息</string>
|
||||
<!-- Subtitle shown while messages are syncing from the primary device, indicating it may take a while -->
|
||||
<string name="MessageSyncScreen__this_may_take_a_few_minutes">This may take a few minutes…</string>
|
||||
<string name="MessageSyncScreen__this_may_take_a_few_minutes">这可能需要几分钟…</string>
|
||||
<!-- Progress label shown under the sync progress bar. %1$s is the amount downloaded so far (e.g. "1 MB"), %2$s is the total size to download (e.g. "3.2 MB") -->
|
||||
<string name="MessageSyncScreen__downloading_s_of_s">正在下载 %1$s/%2$s</string>
|
||||
<!-- Informational notice in the sync screen footer, indicating the sync is end-to-end encrypted. Precedes a separate "Learn more" link. -->
|
||||
<string name="MessageSyncScreen__messages_and_chat_info_are_protected_by_e2ee">Messages and chat info are protected by end-to-end encryption, including the syncing process.</string>
|
||||
<string name="MessageSyncScreen__messages_and_chat_info_are_protected_by_e2ee">消息和聊天信息受端对端加密保护,包括同步过程。</string>
|
||||
<!-- Inline link in the sync screen footer that opens documentation about end-to-end encryption during sync -->
|
||||
<string name="MessageSyncScreen__learn_more">了解详情</string>
|
||||
<!-- Button label that cancels the in-progress message sync -->
|
||||
<string name="MessageSyncScreen__cancel">取消</string>
|
||||
|
||||
<!-- Title for the screen that shows a QR code the user scans with their existing primary device to link this device as a secondary -->
|
||||
<string name="LinkAccountScreen__scan_this_code_to_link_your_account">Scan this code to link your account</string>
|
||||
<string name="LinkAccountScreen__scan_this_code_to_link_your_account">扫描此二维码以链接您的账户</string>
|
||||
<!-- Step in the link-account instructions: open Signal on the user\'s existing phone -->
|
||||
<string name="LinkAccountScreen__open_signal_on_your_phone">在您的手机上打开 Signal</string>
|
||||
<!-- Step in the link-account instructions: tap profile picture to open Signal Settings -->
|
||||
<string name="LinkAccountScreen__tap_your_profile_picture_to_open_signal_settings">Tap your profile picture to open Signal Settings</string>
|
||||
<string name="LinkAccountScreen__tap_your_profile_picture_to_open_signal_settings">点击您的个人资料头像以打开 Signal 设置</string>
|
||||
<!-- Step in the link-account instructions: navigate to the Linked devices section and tap Link new device. The quoted strings should match the button/menu labels in the primary device\'s settings. -->
|
||||
<string name="LinkAccountScreen__tap_linked_devices_and_link_new_device">Tap \"Linked devices\" and \"Link new device\"</string>
|
||||
<string name="LinkAccountScreen__tap_linked_devices_and_link_new_device">点击“已链接设备”,然后点击“链接新设备”</string>
|
||||
<!-- Step in the link-account instructions: aim the primary device\'s camera at the QR code displayed on this screen -->
|
||||
<string name="LinkAccountScreen__position_the_camera_over_this_qr_code">Position the camera over this qr code</string>
|
||||
<string name="LinkAccountScreen__position_the_camera_over_this_qr_code">将摄像头对准此二维码</string>
|
||||
<!-- Button label opening help content for users who can\'t complete the link-account steps -->
|
||||
<string name="LinkAccountScreen__get_help_with_these_steps">Get help with these steps</string>
|
||||
<string name="LinkAccountScreen__get_help_with_these_steps">获取有关这些步骤的帮助</string>
|
||||
<!-- Accessibility content description for the button that enlarges the QR code to full screen -->
|
||||
<string name="LinkAccountScreen__maximize_qr_code">Maximize QR Code</string>
|
||||
<string name="LinkAccountScreen__maximize_qr_code">最大化显示二维码</string>
|
||||
<!-- Label shown in place of the QR code after the primary device has successfully scanned it -->
|
||||
<string name="LinkAccountScreen__scanned">Scanned</string>
|
||||
<string name="LinkAccountScreen__scanned">已扫描</string>
|
||||
<!-- Error label shown in place of the QR code if it could not be generated -->
|
||||
<string name="LinkAccountScreen__failed_to_generate_code">Failed to generate code</string>
|
||||
<string name="LinkAccountScreen__failed_to_generate_code">无法生成二维码</string>
|
||||
<!-- Footer prompt asking the user if they have another device with Signal. Precedes a separate "Create account" link. -->
|
||||
<string name="LinkAccountScreen__dont_have_signal_on_another_device">Don\'t have Signal on another device?</string>
|
||||
<string name="LinkAccountScreen__dont_have_signal_on_another_device">在其他设备上没有 Signal 账户?</string>
|
||||
<!-- Inline link in the link-account screen footer that takes the user to the new-account creation flow instead of linking -->
|
||||
<string name="LinkAccountScreen__create_account">创建账户</string>
|
||||
</resources>
|
||||
|
||||
@@ -315,7 +315,7 @@
|
||||
<!-- PIN creation screen title when confirming the new Signal PIN. -->
|
||||
<string name="PinCreationScreen__confirm_your_pin">確認你的 PIN 碼</string>
|
||||
<!-- Describes how to confirm the new Signal PIN. -->
|
||||
<string name="PinCreationScreen__reenter_pin_description">Re-enter the PIN you just created</string>
|
||||
<string name="PinCreationScreen__reenter_pin_description">請重新輸入你剛建立的 PIN 碼</string>
|
||||
<!-- Describes the purpose of creating a Signal PIN. -->
|
||||
<string name="PinCreationScreen__pins_can_help">如你遺失手機,PIN 碼可協助你還原帳戶。 </string>
|
||||
<!-- Labels the button to learn more about Signal PINs. -->
|
||||
@@ -355,7 +355,7 @@
|
||||
<!-- Title for the screen asking the user to grant the notification permission -->
|
||||
<string name="AllowNotificationsScreen__allow_notifications">允許通知</string>
|
||||
<!-- Description for the screen asking the user to grant the notification permission -->
|
||||
<string name="AllowNotificationsScreen__signal_would_like_to_request_the_notification_permission">Signal would like to request the notification permission. This allows your device to display alerts when new messages arrive.</string>
|
||||
<string name="AllowNotificationsScreen__signal_would_like_to_request_the_notification_permission">Signal 想請你開啟通知權限。這允許你的裝置能在收到新訊息時顯示通知提示。</string>
|
||||
<!-- Button label that dismisses the notification permission request without granting it -->
|
||||
<string name="AllowNotificationsScreen__not_now">現在不要</string>
|
||||
<!-- Button label that proceeds with the notification permission request -->
|
||||
@@ -364,36 +364,36 @@
|
||||
<!-- Title shown while messages are syncing from the primary device -->
|
||||
<string name="MessageSyncScreen__syncing_messages">同步訊息</string>
|
||||
<!-- Subtitle shown while messages are syncing from the primary device, indicating it may take a while -->
|
||||
<string name="MessageSyncScreen__this_may_take_a_few_minutes">This may take a few minutes…</string>
|
||||
<string name="MessageSyncScreen__this_may_take_a_few_minutes">可能需要數分鐘…</string>
|
||||
<!-- Progress label shown under the sync progress bar. %1$s is the amount downloaded so far (e.g. "1 MB"), %2$s is the total size to download (e.g. "3.2 MB") -->
|
||||
<string name="MessageSyncScreen__downloading_s_of_s">正在下載 %2$s 中的 %1$s</string>
|
||||
<!-- Informational notice in the sync screen footer, indicating the sync is end-to-end encrypted. Precedes a separate "Learn more" link. -->
|
||||
<string name="MessageSyncScreen__messages_and_chat_info_are_protected_by_e2ee">Messages and chat info are protected by end-to-end encryption, including the syncing process.</string>
|
||||
<string name="MessageSyncScreen__messages_and_chat_info_are_protected_by_e2ee">訊息和聊天資訊均受端對端加密的保護,包括同步過程。</string>
|
||||
<!-- Inline link in the sync screen footer that opens documentation about end-to-end encryption during sync -->
|
||||
<string name="MessageSyncScreen__learn_more">了解更多</string>
|
||||
<!-- Button label that cancels the in-progress message sync -->
|
||||
<string name="MessageSyncScreen__cancel">取消</string>
|
||||
|
||||
<!-- Title for the screen that shows a QR code the user scans with their existing primary device to link this device as a secondary -->
|
||||
<string name="LinkAccountScreen__scan_this_code_to_link_your_account">Scan this code to link your account</string>
|
||||
<string name="LinkAccountScreen__scan_this_code_to_link_your_account">掃描此二維碼以連結你的帳戶</string>
|
||||
<!-- Step in the link-account instructions: open Signal on the user\'s existing phone -->
|
||||
<string name="LinkAccountScreen__open_signal_on_your_phone">在手機上開啟 Signal</string>
|
||||
<!-- Step in the link-account instructions: tap profile picture to open Signal Settings -->
|
||||
<string name="LinkAccountScreen__tap_your_profile_picture_to_open_signal_settings">Tap your profile picture to open Signal Settings</string>
|
||||
<string name="LinkAccountScreen__tap_your_profile_picture_to_open_signal_settings">輕按個人資料圖像以打開「Signal 設定」</string>
|
||||
<!-- Step in the link-account instructions: navigate to the Linked devices section and tap Link new device. The quoted strings should match the button/menu labels in the primary device\'s settings. -->
|
||||
<string name="LinkAccountScreen__tap_linked_devices_and_link_new_device">Tap \"Linked devices\" and \"Link new device\"</string>
|
||||
<string name="LinkAccountScreen__tap_linked_devices_and_link_new_device">輕按「已連結裝置」和「連結新裝置」</string>
|
||||
<!-- Step in the link-account instructions: aim the primary device\'s camera at the QR code displayed on this screen -->
|
||||
<string name="LinkAccountScreen__position_the_camera_over_this_qr_code">Position the camera over this qr code</string>
|
||||
<string name="LinkAccountScreen__position_the_camera_over_this_qr_code">請將相機對準此二維碼</string>
|
||||
<!-- Button label opening help content for users who can\'t complete the link-account steps -->
|
||||
<string name="LinkAccountScreen__get_help_with_these_steps">Get help with these steps</string>
|
||||
<string name="LinkAccountScreen__get_help_with_these_steps">若需協助,請參閱這些步驟</string>
|
||||
<!-- Accessibility content description for the button that enlarges the QR code to full screen -->
|
||||
<string name="LinkAccountScreen__maximize_qr_code">Maximize QR Code</string>
|
||||
<string name="LinkAccountScreen__maximize_qr_code">將二維碼放大</string>
|
||||
<!-- Label shown in place of the QR code after the primary device has successfully scanned it -->
|
||||
<string name="LinkAccountScreen__scanned">Scanned</string>
|
||||
<string name="LinkAccountScreen__scanned">已掃描</string>
|
||||
<!-- Error label shown in place of the QR code if it could not be generated -->
|
||||
<string name="LinkAccountScreen__failed_to_generate_code">Failed to generate code</string>
|
||||
<string name="LinkAccountScreen__failed_to_generate_code">無法產生二維碼</string>
|
||||
<!-- Footer prompt asking the user if they have another device with Signal. Precedes a separate "Create account" link. -->
|
||||
<string name="LinkAccountScreen__dont_have_signal_on_another_device">Don\'t have Signal on another device?</string>
|
||||
<string name="LinkAccountScreen__dont_have_signal_on_another_device">其他裝置上沒有安裝 Signal 嗎?</string>
|
||||
<!-- Inline link in the link-account screen footer that takes the user to the new-account creation flow instead of linking -->
|
||||
<string name="LinkAccountScreen__create_account">建立帳戶</string>
|
||||
</resources>
|
||||
|
||||
@@ -315,7 +315,7 @@
|
||||
<!-- PIN creation screen title when confirming the new Signal PIN. -->
|
||||
<string name="PinCreationScreen__confirm_your_pin">確認你的 PIN碼</string>
|
||||
<!-- Describes how to confirm the new Signal PIN. -->
|
||||
<string name="PinCreationScreen__reenter_pin_description">Re-enter the PIN you just created</string>
|
||||
<string name="PinCreationScreen__reenter_pin_description">請重新輸入你剛建立的 PIN 碼</string>
|
||||
<!-- Describes the purpose of creating a Signal PIN. -->
|
||||
<string name="PinCreationScreen__pins_can_help">如你遺失手機,PIN 碼可協助你還原帳戶。 </string>
|
||||
<!-- Labels the button to learn more about Signal PINs. -->
|
||||
@@ -355,7 +355,7 @@
|
||||
<!-- Title for the screen asking the user to grant the notification permission -->
|
||||
<string name="AllowNotificationsScreen__allow_notifications">允許通知</string>
|
||||
<!-- Description for the screen asking the user to grant the notification permission -->
|
||||
<string name="AllowNotificationsScreen__signal_would_like_to_request_the_notification_permission">Signal would like to request the notification permission. This allows your device to display alerts when new messages arrive.</string>
|
||||
<string name="AllowNotificationsScreen__signal_would_like_to_request_the_notification_permission">Signal 想請你開啟通知權限。這允許你的裝置能在收到新訊息時顯示通知提示。</string>
|
||||
<!-- Button label that dismisses the notification permission request without granting it -->
|
||||
<string name="AllowNotificationsScreen__not_now">現在不要</string>
|
||||
<!-- Button label that proceeds with the notification permission request -->
|
||||
@@ -364,36 +364,36 @@
|
||||
<!-- Title shown while messages are syncing from the primary device -->
|
||||
<string name="MessageSyncScreen__syncing_messages">同步訊息</string>
|
||||
<!-- Subtitle shown while messages are syncing from the primary device, indicating it may take a while -->
|
||||
<string name="MessageSyncScreen__this_may_take_a_few_minutes">This may take a few minutes…</string>
|
||||
<string name="MessageSyncScreen__this_may_take_a_few_minutes">可能需要數分鐘…</string>
|
||||
<!-- Progress label shown under the sync progress bar. %1$s is the amount downloaded so far (e.g. "1 MB"), %2$s is the total size to download (e.g. "3.2 MB") -->
|
||||
<string name="MessageSyncScreen__downloading_s_of_s">正在下載 %2$s 中的 %1$s</string>
|
||||
<!-- Informational notice in the sync screen footer, indicating the sync is end-to-end encrypted. Precedes a separate "Learn more" link. -->
|
||||
<string name="MessageSyncScreen__messages_and_chat_info_are_protected_by_e2ee">Messages and chat info are protected by end-to-end encryption, including the syncing process.</string>
|
||||
<string name="MessageSyncScreen__messages_and_chat_info_are_protected_by_e2ee">訊息和聊天資訊均受端對端加密的保護,包括同步過程。</string>
|
||||
<!-- Inline link in the sync screen footer that opens documentation about end-to-end encryption during sync -->
|
||||
<string name="MessageSyncScreen__learn_more">了解更多</string>
|
||||
<!-- Button label that cancels the in-progress message sync -->
|
||||
<string name="MessageSyncScreen__cancel">取消</string>
|
||||
|
||||
<!-- Title for the screen that shows a QR code the user scans with their existing primary device to link this device as a secondary -->
|
||||
<string name="LinkAccountScreen__scan_this_code_to_link_your_account">Scan this code to link your account</string>
|
||||
<string name="LinkAccountScreen__scan_this_code_to_link_your_account">掃描此二維碼以連結你的帳戶</string>
|
||||
<!-- Step in the link-account instructions: open Signal on the user\'s existing phone -->
|
||||
<string name="LinkAccountScreen__open_signal_on_your_phone">在手機上開啟 Signal</string>
|
||||
<!-- Step in the link-account instructions: tap profile picture to open Signal Settings -->
|
||||
<string name="LinkAccountScreen__tap_your_profile_picture_to_open_signal_settings">Tap your profile picture to open Signal Settings</string>
|
||||
<string name="LinkAccountScreen__tap_your_profile_picture_to_open_signal_settings">輕按個人資料圖像以打開「Signal 設定」</string>
|
||||
<!-- Step in the link-account instructions: navigate to the Linked devices section and tap Link new device. The quoted strings should match the button/menu labels in the primary device\'s settings. -->
|
||||
<string name="LinkAccountScreen__tap_linked_devices_and_link_new_device">Tap \"Linked devices\" and \"Link new device\"</string>
|
||||
<string name="LinkAccountScreen__tap_linked_devices_and_link_new_device">輕按「已連結裝置」和「連結新裝置」</string>
|
||||
<!-- Step in the link-account instructions: aim the primary device\'s camera at the QR code displayed on this screen -->
|
||||
<string name="LinkAccountScreen__position_the_camera_over_this_qr_code">Position the camera over this qr code</string>
|
||||
<string name="LinkAccountScreen__position_the_camera_over_this_qr_code">請將相機對準此二維碼</string>
|
||||
<!-- Button label opening help content for users who can\'t complete the link-account steps -->
|
||||
<string name="LinkAccountScreen__get_help_with_these_steps">Get help with these steps</string>
|
||||
<string name="LinkAccountScreen__get_help_with_these_steps">若需協助,請參閱這些步驟</string>
|
||||
<!-- Accessibility content description for the button that enlarges the QR code to full screen -->
|
||||
<string name="LinkAccountScreen__maximize_qr_code">Maximize QR Code</string>
|
||||
<string name="LinkAccountScreen__maximize_qr_code">將二維碼放大</string>
|
||||
<!-- Label shown in place of the QR code after the primary device has successfully scanned it -->
|
||||
<string name="LinkAccountScreen__scanned">Scanned</string>
|
||||
<string name="LinkAccountScreen__scanned">已掃描</string>
|
||||
<!-- Error label shown in place of the QR code if it could not be generated -->
|
||||
<string name="LinkAccountScreen__failed_to_generate_code">Failed to generate code</string>
|
||||
<string name="LinkAccountScreen__failed_to_generate_code">無法產生二維碼</string>
|
||||
<!-- Footer prompt asking the user if they have another device with Signal. Precedes a separate "Create account" link. -->
|
||||
<string name="LinkAccountScreen__dont_have_signal_on_another_device">Don\'t have Signal on another device?</string>
|
||||
<string name="LinkAccountScreen__dont_have_signal_on_another_device">其他裝置上沒有安裝 Signal 嗎?</string>
|
||||
<!-- Inline link in the link-account screen footer that takes the user to the new-account creation flow instead of linking -->
|
||||
<string name="LinkAccountScreen__create_account">建立帳戶</string>
|
||||
</resources>
|
||||
|
||||
Reference in New Issue
Block a user