mirror of
https://github.com/signalapp/Signal-Android.git
synced 2026-06-21 14:45:43 +01:00
Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 0010386b9e | |||
| 02c760945d | |||
| a0247bb8cc | |||
| bcfec5de50 | |||
| b2215915ef |
@@ -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 = 1688
|
||||
val canonicalVersionName = "8.11.0"
|
||||
val canonicalVersionCode = 1689
|
||||
val canonicalVersionName = "8.11.1"
|
||||
val currentHotfixVersion = 0
|
||||
val maxHotfixVersions = 100
|
||||
|
||||
|
||||
@@ -7,6 +7,7 @@
|
||||
-keep class org.signal.libsignal.usernames.** { *; }
|
||||
-keep class org.thoughtcrime.securesms.** { *; }
|
||||
-keep class org.signal.donations.json.** { *; }
|
||||
-keep class org.signal.network.** { *; }
|
||||
-keepclassmembers class ** {
|
||||
public void onEvent*(**);
|
||||
}
|
||||
|
||||
+3
@@ -8,6 +8,9 @@ package org.whispersystems.signalservice.internal.websocket
|
||||
import io.reactivex.rxjava3.core.Observable
|
||||
import io.reactivex.rxjava3.core.Single
|
||||
import io.reactivex.rxjava3.subjects.BehaviorSubject
|
||||
import org.signal.network.websocket.WebSocketRequestMessage
|
||||
import org.signal.network.websocket.WebSocketResponseMessage
|
||||
import org.signal.network.websocket.WebsocketResponse
|
||||
import org.thoughtcrime.securesms.util.JsonUtils
|
||||
import org.thoughtcrime.securesms.util.SignalTrace
|
||||
import org.whispersystems.signalservice.api.websocket.WebSocketConnectionState
|
||||
|
||||
+1
-1
@@ -86,7 +86,7 @@ public class ActiveCallActionProcessorDelegate extends WebRtcActionProcessor {
|
||||
.build();
|
||||
|
||||
if (currentState.getCallInfoState().getCallState() == WebRtcViewModel.State.CALL_CONNECTED) {
|
||||
boolean localVideoEnabled = currentState.getLocalDeviceState().getCameraState().isEnabled();
|
||||
boolean localVideoEnabled = currentState.getLocalDeviceState().getCameraState().isEnabled() || currentState.getLocalDeviceState().isScreenSharing();
|
||||
webRtcInteractor.updatePhoneState(WebRtcUtil.getInCallPhoneState(context, localVideoEnabled, enable));
|
||||
}
|
||||
|
||||
|
||||
+21
-10
@@ -58,7 +58,7 @@ public class ConnectedCallActionProcessor extends DeviceAwareActionProcessor {
|
||||
.cameraState(currentState.getVideoState().requireRouter().getCameraState())
|
||||
.build();
|
||||
|
||||
boolean localVideoEnabled = currentState.getLocalDeviceState().getCameraState().isEnabled();
|
||||
boolean localVideoEnabled = currentState.getLocalDeviceState().getCameraState().isEnabled() || currentState.getLocalDeviceState().isScreenSharing();
|
||||
boolean remoteVideoEnabled = currentState.getCallInfoState().getRemoteCallParticipantsMap().values().stream().anyMatch(CallParticipant::isVideoEnabled);
|
||||
webRtcInteractor.updatePhoneState(WebRtcUtil.getInCallPhoneState(context, localVideoEnabled, remoteVideoEnabled));
|
||||
|
||||
@@ -155,11 +155,16 @@ public class ConnectedCallActionProcessor extends DeviceAwareActionProcessor {
|
||||
return callFailure(currentState, "setVideoEnable() after screen share failed: ", e);
|
||||
}
|
||||
|
||||
return currentState.builder()
|
||||
.changeLocalDeviceState()
|
||||
.isScreenSharing(false)
|
||||
.setMediaProjectionIntent(null)
|
||||
.build();
|
||||
currentState = currentState.builder()
|
||||
.changeLocalDeviceState()
|
||||
.isScreenSharing(false)
|
||||
.setMediaProjectionIntent(null)
|
||||
.build();
|
||||
|
||||
boolean remoteVideoEnabled = currentState.getCallInfoState().getRemoteCallParticipantsMap().values().stream().anyMatch(CallParticipant::isVideoEnabled);
|
||||
webRtcInteractor.updatePhoneState(WebRtcUtil.getInCallPhoneState(context, cameraWasEnabled, remoteVideoEnabled));
|
||||
|
||||
return currentState;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -189,10 +194,16 @@ public class ConnectedCallActionProcessor extends DeviceAwareActionProcessor {
|
||||
}
|
||||
router.startScreenShare(mediaProjectionIntent);
|
||||
|
||||
return currentState.builder()
|
||||
.changeLocalDeviceState()
|
||||
.isScreenSharing(true)
|
||||
.build();
|
||||
currentState = currentState.builder()
|
||||
.changeLocalDeviceState()
|
||||
.isScreenSharing(true)
|
||||
.build();
|
||||
|
||||
boolean remoteVideoEnabled = currentState.getCallInfoState().getRemoteCallParticipantsMap().values().stream().anyMatch(CallParticipant::isVideoEnabled);
|
||||
webRtcInteractor.updatePhoneState(WebRtcUtil.getInCallPhoneState(context, true, remoteVideoEnabled));
|
||||
WebRtcUtil.enableSpeakerPhoneIfNeeded(webRtcInteractor, currentState);
|
||||
|
||||
return currentState;
|
||||
}
|
||||
|
||||
@Override
|
||||
|
||||
+1
-1
@@ -29,7 +29,7 @@ public abstract class DeviceAwareActionProcessor extends WebRtcActionProcessor {
|
||||
Log.i(tag, "handleAudioDeviceChanged(): active: " + activeDevice + " available: " + availableDevices);
|
||||
|
||||
if (currentState.getCallInfoState().getCallState() == WebRtcViewModel.State.CALL_CONNECTED) {
|
||||
boolean localVideoEnabled = currentState.getLocalDeviceState().getCameraState().isEnabled();
|
||||
boolean localVideoEnabled = currentState.getLocalDeviceState().getCameraState().isEnabled() || currentState.getLocalDeviceState().isScreenSharing();
|
||||
boolean remoteVideoEnabled = currentState.getCallInfoState().getRemoteCallParticipantsMap().values().stream().anyMatch(CallParticipant::isVideoEnabled);
|
||||
webRtcInteractor.updatePhoneState(WebRtcUtil.getInCallPhoneState(context, localVideoEnabled, remoteVideoEnabled));
|
||||
} else {
|
||||
|
||||
+21
-10
@@ -105,7 +105,7 @@ public class GroupConnectedActionProcessor extends GroupActionProcessor {
|
||||
.cameraState(router.getCameraState())
|
||||
.build();
|
||||
|
||||
boolean localVideoEnabled = currentState.getLocalDeviceState().getCameraState().isEnabled();
|
||||
boolean localVideoEnabled = currentState.getLocalDeviceState().getCameraState().isEnabled() || currentState.getLocalDeviceState().isScreenSharing();
|
||||
boolean remoteVideoEnabled = currentState.getCallInfoState().getRemoteCallParticipantsMap().values().stream().anyMatch(CallParticipant::isVideoEnabled);
|
||||
webRtcInteractor.updatePhoneState(WebRtcUtil.getInCallPhoneState(context, localVideoEnabled, remoteVideoEnabled));
|
||||
|
||||
@@ -144,11 +144,16 @@ public class GroupConnectedActionProcessor extends GroupActionProcessor {
|
||||
return groupCallFailure(currentState, "Unable to restore video mute after screen share", e);
|
||||
}
|
||||
|
||||
return currentState.builder()
|
||||
.changeLocalDeviceState()
|
||||
.isScreenSharing(false)
|
||||
.setMediaProjectionIntent(null)
|
||||
.build();
|
||||
currentState = currentState.builder()
|
||||
.changeLocalDeviceState()
|
||||
.isScreenSharing(false)
|
||||
.setMediaProjectionIntent(null)
|
||||
.build();
|
||||
|
||||
boolean remoteVideoEnabled = currentState.getCallInfoState().getRemoteCallParticipantsMap().values().stream().anyMatch(CallParticipant::isVideoEnabled);
|
||||
webRtcInteractor.updatePhoneState(WebRtcUtil.getInCallPhoneState(context, cameraWasEnabled, remoteVideoEnabled));
|
||||
|
||||
return currentState;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -180,10 +185,16 @@ public class GroupConnectedActionProcessor extends GroupActionProcessor {
|
||||
}
|
||||
router.startScreenShare(mediaProjectionIntent);
|
||||
|
||||
return currentState.builder()
|
||||
.changeLocalDeviceState()
|
||||
.isScreenSharing(true)
|
||||
.build();
|
||||
currentState = currentState.builder()
|
||||
.changeLocalDeviceState()
|
||||
.isScreenSharing(true)
|
||||
.build();
|
||||
|
||||
boolean remoteVideoEnabled = currentState.getCallInfoState().getRemoteCallParticipantsMap().values().stream().anyMatch(CallParticipant::isVideoEnabled);
|
||||
webRtcInteractor.updatePhoneState(WebRtcUtil.getInCallPhoneState(context, true, remoteVideoEnabled));
|
||||
WebRtcUtil.enableSpeakerPhoneIfNeeded(webRtcInteractor, currentState);
|
||||
|
||||
return currentState;
|
||||
}
|
||||
|
||||
@Override
|
||||
|
||||
@@ -86,7 +86,7 @@ public final class WebRtcUtil {
|
||||
}
|
||||
|
||||
public static void enableSpeakerPhoneIfNeeded(@NonNull WebRtcInteractor webRtcInteractor, WebRtcServiceState currentState) {
|
||||
if (!currentState.getLocalDeviceState().getCameraState().isEnabled()) {
|
||||
if (!currentState.getLocalDeviceState().getCameraState().isEnabled() && !currentState.getLocalDeviceState().isScreenSharing()) {
|
||||
return;
|
||||
}
|
||||
|
||||
|
||||
@@ -2705,7 +2705,7 @@
|
||||
<!-- A clickable button to share your screen in a call -->
|
||||
<string name="CallOverflowPopupWindow__share_screen">Share screen</string>
|
||||
<!-- A clickable button to stop sharing your screen in a call -->
|
||||
<string name="CallOverflowPopupWindow__stop_screen_share">Stop sharing</string>
|
||||
<string name="CallOverflowPopupWindow__stop_screen_share">Hou op om te deel</string>
|
||||
<!-- A button to take you to a list of participants with raised hands -->
|
||||
<string name="CallOverflowPopupWindow__view">Bekyk</string>
|
||||
|
||||
@@ -8244,13 +8244,13 @@
|
||||
<string name="UseNewOnDeviceBackups__not_now">Nie nou nie</string>
|
||||
|
||||
<!-- Title of a megaphone shown to prompt the user to open Signal on their primary device -->
|
||||
<string name="InactivePrimary__title">Open Signal on your phone</string>
|
||||
<string name="InactivePrimary__title">Maak Signal op jou foon oop</string>
|
||||
<!-- Body of a megaphone shown to prompt the user to open Signal on their primary device -->
|
||||
<string name="InactivePrimary__body">To keep your account active, open Signal on your primary device.</string>
|
||||
<!-- Button of a megaphone shown to prompt the user to open Signal on their primary device that will navigate to a support page -->
|
||||
<string name="InactivePrimary__learn_more">Learn more</string>
|
||||
<string name="InactivePrimary__learn_more">Vind meer uit</string>
|
||||
<!-- Button of a megaphone shown to prompt the user to open Signal on their primary device that will snooze the megaphone -->
|
||||
<string name="InactivePrimary__got_it">Got it</string>
|
||||
<string name="InactivePrimary__got_it">Ek verstaan</string>
|
||||
|
||||
<!-- Text describing how to restore a backup displayed on the on-device backups screen -->
|
||||
<string name="OnDeviceBackupsScreen__to_restore_a_backup">"Om \'n rugsteun te herwin, installeer \'n nuwe kopie van Signal. Maak die toepassing oop, tik op \"Herwin rugsteun\" en vind dan die rugsteunlêer."</string>
|
||||
|
||||
@@ -3041,7 +3041,7 @@
|
||||
<!-- A clickable button to share your screen in a call -->
|
||||
<string name="CallOverflowPopupWindow__share_screen">Share screen</string>
|
||||
<!-- A clickable button to stop sharing your screen in a call -->
|
||||
<string name="CallOverflowPopupWindow__stop_screen_share">Stop sharing</string>
|
||||
<string name="CallOverflowPopupWindow__stop_screen_share">إيقاف مشاركة الشاشة</string>
|
||||
<!-- A button to take you to a list of participants with raised hands -->
|
||||
<string name="CallOverflowPopupWindow__view">عرض</string>
|
||||
|
||||
@@ -8980,13 +8980,13 @@
|
||||
<string name="UseNewOnDeviceBackups__not_now">ليس الآن</string>
|
||||
|
||||
<!-- Title of a megaphone shown to prompt the user to open Signal on their primary device -->
|
||||
<string name="InactivePrimary__title">Open Signal on your phone</string>
|
||||
<string name="InactivePrimary__title">افتح تطبيق سيجنال على هاتفك</string>
|
||||
<!-- Body of a megaphone shown to prompt the user to open Signal on their primary device -->
|
||||
<string name="InactivePrimary__body">To keep your account active, open Signal on your primary device.</string>
|
||||
<string name="InactivePrimary__body">لإبقاء حسابك نشِطًا، افتح سيجنال على جهازك الأساسي.</string>
|
||||
<!-- Button of a megaphone shown to prompt the user to open Signal on their primary device that will navigate to a support page -->
|
||||
<string name="InactivePrimary__learn_more">Learn more</string>
|
||||
<string name="InactivePrimary__learn_more">اعرف المزيد</string>
|
||||
<!-- Button of a megaphone shown to prompt the user to open Signal on their primary device that will snooze the megaphone -->
|
||||
<string name="InactivePrimary__got_it">Got it</string>
|
||||
<string name="InactivePrimary__got_it">تم</string>
|
||||
|
||||
<!-- Text describing how to restore a backup displayed on the on-device backups screen -->
|
||||
<string name="OnDeviceBackupsScreen__to_restore_a_backup">"لاستعادة نسخة احتياطية، ثبِّت نسخة جديدة من سيجنال. افتح التطبيق وانقر على \"استعادة النسخة الاحتياطية\"، ثم حدِّد مكان ملف النسخة الاحتياطية."</string>
|
||||
|
||||
@@ -2705,7 +2705,7 @@
|
||||
<!-- A clickable button to share your screen in a call -->
|
||||
<string name="CallOverflowPopupWindow__share_screen">Share screen</string>
|
||||
<!-- A clickable button to stop sharing your screen in a call -->
|
||||
<string name="CallOverflowPopupWindow__stop_screen_share">Stop sharing</string>
|
||||
<string name="CallOverflowPopupWindow__stop_screen_share">Paylaşmanı dayandır</string>
|
||||
<!-- A button to take you to a list of participants with raised hands -->
|
||||
<string name="CallOverflowPopupWindow__view">Bax</string>
|
||||
|
||||
@@ -8244,13 +8244,13 @@
|
||||
<string name="UseNewOnDeviceBackups__not_now">İndi yox</string>
|
||||
|
||||
<!-- Title of a megaphone shown to prompt the user to open Signal on their primary device -->
|
||||
<string name="InactivePrimary__title">Open Signal on your phone</string>
|
||||
<string name="InactivePrimary__title">Signal-ı telefonunuzda açın</string>
|
||||
<!-- Body of a megaphone shown to prompt the user to open Signal on their primary device -->
|
||||
<string name="InactivePrimary__body">To keep your account active, open Signal on your primary device.</string>
|
||||
<!-- Button of a megaphone shown to prompt the user to open Signal on their primary device that will navigate to a support page -->
|
||||
<string name="InactivePrimary__learn_more">Learn more</string>
|
||||
<string name="InactivePrimary__learn_more">Daha ətraflı</string>
|
||||
<!-- Button of a megaphone shown to prompt the user to open Signal on their primary device that will snooze the megaphone -->
|
||||
<string name="InactivePrimary__got_it">Got it</string>
|
||||
<string name="InactivePrimary__got_it">Anladım</string>
|
||||
|
||||
<!-- Text describing how to restore a backup displayed on the on-device backups screen -->
|
||||
<string name="OnDeviceBackupsScreen__to_restore_a_backup">"Ehtiyat nüsxəni bərpa etmək üçün Signal-ın yeni versiyasını quraşdırın. Tətbiqi açıb, \"Ehtiyat nüsxəni bərpa et\" seçiminə toxunun, sonra ehtiyat nüsxə faylını tapın."</string>
|
||||
|
||||
@@ -8612,13 +8612,13 @@
|
||||
<string name="UseNewOnDeviceBackups__not_now">Не зараз</string>
|
||||
|
||||
<!-- Title of a megaphone shown to prompt the user to open Signal on their primary device -->
|
||||
<string name="InactivePrimary__title">Open Signal on your phone</string>
|
||||
<string name="InactivePrimary__title">Адкрыйце Signal на сваім тэлефоне</string>
|
||||
<!-- Body of a megaphone shown to prompt the user to open Signal on their primary device -->
|
||||
<string name="InactivePrimary__body">To keep your account active, open Signal on your primary device.</string>
|
||||
<string name="InactivePrimary__body">Каб ваш уліковы запіс заставаўся актыўным, адкрыйце Signal на сваёй асноўнай прыладзе.</string>
|
||||
<!-- Button of a megaphone shown to prompt the user to open Signal on their primary device that will navigate to a support page -->
|
||||
<string name="InactivePrimary__learn_more">Learn more</string>
|
||||
<string name="InactivePrimary__learn_more">Даведацца больш</string>
|
||||
<!-- Button of a megaphone shown to prompt the user to open Signal on their primary device that will snooze the megaphone -->
|
||||
<string name="InactivePrimary__got_it">Got it</string>
|
||||
<string name="InactivePrimary__got_it">Зразумела</string>
|
||||
|
||||
<!-- Text describing how to restore a backup displayed on the on-device backups screen -->
|
||||
<string name="OnDeviceBackupsScreen__to_restore_a_backup">"Каб аднавіць рэзервовую копію, усталюйце новую копію Signal. Адкрыйце праграму і націсніце «Аднавіць рэзервовую копію», потым выберыце файл рэзервовай копіі."</string>
|
||||
|
||||
@@ -2705,7 +2705,7 @@
|
||||
<!-- A clickable button to share your screen in a call -->
|
||||
<string name="CallOverflowPopupWindow__share_screen">Share screen</string>
|
||||
<!-- A clickable button to stop sharing your screen in a call -->
|
||||
<string name="CallOverflowPopupWindow__stop_screen_share">Stop sharing</string>
|
||||
<string name="CallOverflowPopupWindow__stop_screen_share">Спиране на споделянето</string>
|
||||
<!-- A button to take you to a list of participants with raised hands -->
|
||||
<string name="CallOverflowPopupWindow__view">Преглед</string>
|
||||
|
||||
@@ -8244,13 +8244,13 @@
|
||||
<string name="UseNewOnDeviceBackups__not_now">Не сега</string>
|
||||
|
||||
<!-- Title of a megaphone shown to prompt the user to open Signal on their primary device -->
|
||||
<string name="InactivePrimary__title">Open Signal on your phone</string>
|
||||
<string name="InactivePrimary__title">Отворете Signal на телефона си</string>
|
||||
<!-- Body of a megaphone shown to prompt the user to open Signal on their primary device -->
|
||||
<string name="InactivePrimary__body">To keep your account active, open Signal on your primary device.</string>
|
||||
<string name="InactivePrimary__body">За да остане акаунтът ви активен, отворете Signal на основното си устройство.</string>
|
||||
<!-- Button of a megaphone shown to prompt the user to open Signal on their primary device that will navigate to a support page -->
|
||||
<string name="InactivePrimary__learn_more">Learn more</string>
|
||||
<string name="InactivePrimary__learn_more">Научете повече</string>
|
||||
<!-- Button of a megaphone shown to prompt the user to open Signal on their primary device that will snooze the megaphone -->
|
||||
<string name="InactivePrimary__got_it">Got it</string>
|
||||
<string name="InactivePrimary__got_it">Ясно</string>
|
||||
|
||||
<!-- Text describing how to restore a backup displayed on the on-device backups screen -->
|
||||
<string name="OnDeviceBackupsScreen__to_restore_a_backup">"За да възстановите резервно копие, инсталирайте ново копие на Signal. Отворете приложението и докоснете „Възстановяване на резервно копие“, след което открийте файла с резервното копие."</string>
|
||||
|
||||
@@ -2705,7 +2705,7 @@
|
||||
<!-- A clickable button to share your screen in a call -->
|
||||
<string name="CallOverflowPopupWindow__share_screen">Share screen</string>
|
||||
<!-- A clickable button to stop sharing your screen in a call -->
|
||||
<string name="CallOverflowPopupWindow__stop_screen_share">Stop sharing</string>
|
||||
<string name="CallOverflowPopupWindow__stop_screen_share">শেয়ার করা থামান</string>
|
||||
<!-- A button to take you to a list of participants with raised hands -->
|
||||
<string name="CallOverflowPopupWindow__view">দেখুন</string>
|
||||
|
||||
@@ -8244,13 +8244,13 @@
|
||||
<string name="UseNewOnDeviceBackups__not_now">এখন না</string>
|
||||
|
||||
<!-- Title of a megaphone shown to prompt the user to open Signal on their primary device -->
|
||||
<string name="InactivePrimary__title">Open Signal on your phone</string>
|
||||
<string name="InactivePrimary__title">আপনার ফোনে সিগন্যাল খুলুন</string>
|
||||
<!-- Body of a megaphone shown to prompt the user to open Signal on their primary device -->
|
||||
<string name="InactivePrimary__body">To keep your account active, open Signal on your primary device.</string>
|
||||
<string name="InactivePrimary__body">আপনার অ্যাকাউন্ট সক্রিয় রাখতে, আপনার মূল ডিভাইসে Signal খুলুন।</string>
|
||||
<!-- Button of a megaphone shown to prompt the user to open Signal on their primary device that will navigate to a support page -->
|
||||
<string name="InactivePrimary__learn_more">Learn more</string>
|
||||
<string name="InactivePrimary__learn_more">আরো জানুন</string>
|
||||
<!-- Button of a megaphone shown to prompt the user to open Signal on their primary device that will snooze the megaphone -->
|
||||
<string name="InactivePrimary__got_it">Got it</string>
|
||||
<string name="InactivePrimary__got_it">বুঝতে পেরেছি</string>
|
||||
|
||||
<!-- Text describing how to restore a backup displayed on the on-device backups screen -->
|
||||
<string name="OnDeviceBackupsScreen__to_restore_a_backup">"ব্যাকআপ পুনর্বহাল করতে, Signal-এর একটি নতুন কপি ইনস্টল করুন। অ্যাপটি খুলুন ও ব্যাকআপ পুনর্বহাল করতে ট্যাপ করুন, তারপর ব্যাকআপ ফাইলটি শনাক্ত করুন।"</string>
|
||||
|
||||
@@ -2873,7 +2873,7 @@
|
||||
<!-- A clickable button to share your screen in a call -->
|
||||
<string name="CallOverflowPopupWindow__share_screen">Share screen</string>
|
||||
<!-- A clickable button to stop sharing your screen in a call -->
|
||||
<string name="CallOverflowPopupWindow__stop_screen_share">Stop sharing</string>
|
||||
<string name="CallOverflowPopupWindow__stop_screen_share">Zaustavi dijeljenje</string>
|
||||
<!-- A button to take you to a list of participants with raised hands -->
|
||||
<string name="CallOverflowPopupWindow__view">Pregled</string>
|
||||
|
||||
@@ -8612,13 +8612,13 @@
|
||||
<string name="UseNewOnDeviceBackups__not_now">Ne sada</string>
|
||||
|
||||
<!-- Title of a megaphone shown to prompt the user to open Signal on their primary device -->
|
||||
<string name="InactivePrimary__title">Open Signal on your phone</string>
|
||||
<string name="InactivePrimary__title">Otvorite Signal na telefonu</string>
|
||||
<!-- Body of a megaphone shown to prompt the user to open Signal on their primary device -->
|
||||
<string name="InactivePrimary__body">To keep your account active, open Signal on your primary device.</string>
|
||||
<!-- Button of a megaphone shown to prompt the user to open Signal on their primary device that will navigate to a support page -->
|
||||
<string name="InactivePrimary__learn_more">Learn more</string>
|
||||
<string name="InactivePrimary__learn_more">Saznaj više</string>
|
||||
<!-- Button of a megaphone shown to prompt the user to open Signal on their primary device that will snooze the megaphone -->
|
||||
<string name="InactivePrimary__got_it">Got it</string>
|
||||
<string name="InactivePrimary__got_it">Razumijem</string>
|
||||
|
||||
<!-- Text describing how to restore a backup displayed on the on-device backups screen -->
|
||||
<string name="OnDeviceBackupsScreen__to_restore_a_backup">"Da biste vratili sigurnosnu kopiju, instalirajte novu kopiju Signala. Otvorite aplikaciju i dodirnite Vrati sigurnosnu kopiju, a zatim pronađite folder sigurnosne kopije."</string>
|
||||
|
||||
@@ -2705,7 +2705,7 @@
|
||||
<!-- A clickable button to share your screen in a call -->
|
||||
<string name="CallOverflowPopupWindow__share_screen">Share screen</string>
|
||||
<!-- A clickable button to stop sharing your screen in a call -->
|
||||
<string name="CallOverflowPopupWindow__stop_screen_share">Stop sharing</string>
|
||||
<string name="CallOverflowPopupWindow__stop_screen_share">Interromp la compartició</string>
|
||||
<!-- A button to take you to a list of participants with raised hands -->
|
||||
<string name="CallOverflowPopupWindow__view">Vista</string>
|
||||
|
||||
@@ -8244,13 +8244,13 @@
|
||||
<string name="UseNewOnDeviceBackups__not_now">Ara no</string>
|
||||
|
||||
<!-- Title of a megaphone shown to prompt the user to open Signal on their primary device -->
|
||||
<string name="InactivePrimary__title">Open Signal on your phone</string>
|
||||
<string name="InactivePrimary__title">Obre Signal al telèfon.</string>
|
||||
<!-- Body of a megaphone shown to prompt the user to open Signal on their primary device -->
|
||||
<string name="InactivePrimary__body">To keep your account active, open Signal on your primary device.</string>
|
||||
<string name="InactivePrimary__body">Per mantenir actiu el teu compte, obre Signal al teu dispositiu principal.</string>
|
||||
<!-- Button of a megaphone shown to prompt the user to open Signal on their primary device that will navigate to a support page -->
|
||||
<string name="InactivePrimary__learn_more">Learn more</string>
|
||||
<string name="InactivePrimary__learn_more">Més informació</string>
|
||||
<!-- Button of a megaphone shown to prompt the user to open Signal on their primary device that will snooze the megaphone -->
|
||||
<string name="InactivePrimary__got_it">Got it</string>
|
||||
<string name="InactivePrimary__got_it">Entesos</string>
|
||||
|
||||
<!-- Text describing how to restore a backup displayed on the on-device backups screen -->
|
||||
<string name="OnDeviceBackupsScreen__to_restore_a_backup">"Per restaurar una còpia de seguretat, instal·la una nova còpia de Signal. Obre l\'app i toca Restaura la còpia de seguretat, i selecciona el fitxer de còpia de seguretat."</string>
|
||||
|
||||
@@ -2873,7 +2873,7 @@
|
||||
<!-- A clickable button to share your screen in a call -->
|
||||
<string name="CallOverflowPopupWindow__share_screen">Share screen</string>
|
||||
<!-- A clickable button to stop sharing your screen in a call -->
|
||||
<string name="CallOverflowPopupWindow__stop_screen_share">Stop sharing</string>
|
||||
<string name="CallOverflowPopupWindow__stop_screen_share">Přestat sdílet</string>
|
||||
<!-- A button to take you to a list of participants with raised hands -->
|
||||
<string name="CallOverflowPopupWindow__view">Zobrazit</string>
|
||||
|
||||
@@ -8612,13 +8612,13 @@
|
||||
<string name="UseNewOnDeviceBackups__not_now">Nyní ne</string>
|
||||
|
||||
<!-- Title of a megaphone shown to prompt the user to open Signal on their primary device -->
|
||||
<string name="InactivePrimary__title">Open Signal on your phone</string>
|
||||
<string name="InactivePrimary__title">Otevřete Signal ve svém telefonu</string>
|
||||
<!-- Body of a megaphone shown to prompt the user to open Signal on their primary device -->
|
||||
<string name="InactivePrimary__body">To keep your account active, open Signal on your primary device.</string>
|
||||
<string name="InactivePrimary__body">Aby váš účet zůstal aktivní, otevřete aplikaci Signal ve svém primárním zařízení.</string>
|
||||
<!-- Button of a megaphone shown to prompt the user to open Signal on their primary device that will navigate to a support page -->
|
||||
<string name="InactivePrimary__learn_more">Learn more</string>
|
||||
<string name="InactivePrimary__learn_more">Zjistit více</string>
|
||||
<!-- Button of a megaphone shown to prompt the user to open Signal on their primary device that will snooze the megaphone -->
|
||||
<string name="InactivePrimary__got_it">Got it</string>
|
||||
<string name="InactivePrimary__got_it">Rozumím</string>
|
||||
|
||||
<!-- Text describing how to restore a backup displayed on the on-device backups screen -->
|
||||
<string name="OnDeviceBackupsScreen__to_restore_a_backup">"Pro obnovení zálohy znovu nainstalujte aplikaci Signal. Spusťte aplikaci a klepněte na Obnovit zálohu a poté vyhledejte soubor se zálohou."</string>
|
||||
|
||||
@@ -2705,7 +2705,7 @@
|
||||
<!-- A clickable button to share your screen in a call -->
|
||||
<string name="CallOverflowPopupWindow__share_screen">Share screen</string>
|
||||
<!-- A clickable button to stop sharing your screen in a call -->
|
||||
<string name="CallOverflowPopupWindow__stop_screen_share">Stop sharing</string>
|
||||
<string name="CallOverflowPopupWindow__stop_screen_share">Stop deling</string>
|
||||
<!-- A button to take you to a list of participants with raised hands -->
|
||||
<string name="CallOverflowPopupWindow__view">Vis</string>
|
||||
|
||||
@@ -8244,13 +8244,13 @@
|
||||
<string name="UseNewOnDeviceBackups__not_now">Ikke nu</string>
|
||||
|
||||
<!-- Title of a megaphone shown to prompt the user to open Signal on their primary device -->
|
||||
<string name="InactivePrimary__title">Open Signal on your phone</string>
|
||||
<string name="InactivePrimary__title">Åbn Signal på din telefon</string>
|
||||
<!-- Body of a megaphone shown to prompt the user to open Signal on their primary device -->
|
||||
<string name="InactivePrimary__body">To keep your account active, open Signal on your primary device.</string>
|
||||
<string name="InactivePrimary__body">Åbn Signal på din primære enhed for at holde din konto aktiv.</string>
|
||||
<!-- Button of a megaphone shown to prompt the user to open Signal on their primary device that will navigate to a support page -->
|
||||
<string name="InactivePrimary__learn_more">Learn more</string>
|
||||
<string name="InactivePrimary__learn_more">Få mere at vide</string>
|
||||
<!-- Button of a megaphone shown to prompt the user to open Signal on their primary device that will snooze the megaphone -->
|
||||
<string name="InactivePrimary__got_it">Got it</string>
|
||||
<string name="InactivePrimary__got_it">Forstået</string>
|
||||
|
||||
<!-- Text describing how to restore a backup displayed on the on-device backups screen -->
|
||||
<string name="OnDeviceBackupsScreen__to_restore_a_backup">"For at gendanne en sikkerhedskopi skal du installere Signal igen. Åbn appen, og tryk på \"Gendan sikkerhedskopi\". Vælg derefter sikkerhedskopimappen."</string>
|
||||
|
||||
@@ -2705,7 +2705,7 @@
|
||||
<!-- A clickable button to share your screen in a call -->
|
||||
<string name="CallOverflowPopupWindow__share_screen">Share screen</string>
|
||||
<!-- A clickable button to stop sharing your screen in a call -->
|
||||
<string name="CallOverflowPopupWindow__stop_screen_share">Stop sharing</string>
|
||||
<string name="CallOverflowPopupWindow__stop_screen_share">Teilen stoppen</string>
|
||||
<!-- A button to take you to a list of participants with raised hands -->
|
||||
<string name="CallOverflowPopupWindow__view">Anzeigen</string>
|
||||
|
||||
@@ -8244,13 +8244,13 @@
|
||||
<string name="UseNewOnDeviceBackups__not_now">Jetzt nicht</string>
|
||||
|
||||
<!-- Title of a megaphone shown to prompt the user to open Signal on their primary device -->
|
||||
<string name="InactivePrimary__title">Open Signal on your phone</string>
|
||||
<string name="InactivePrimary__title">Öffne Signal auf deinem Telefon</string>
|
||||
<!-- Body of a megaphone shown to prompt the user to open Signal on their primary device -->
|
||||
<string name="InactivePrimary__body">To keep your account active, open Signal on your primary device.</string>
|
||||
<string name="InactivePrimary__body">Öffne Signal auf deinem primären Gerät, um dein Konto aktiviert zu lassen.</string>
|
||||
<!-- Button of a megaphone shown to prompt the user to open Signal on their primary device that will navigate to a support page -->
|
||||
<string name="InactivePrimary__learn_more">Learn more</string>
|
||||
<string name="InactivePrimary__learn_more">Mehr erfahren</string>
|
||||
<!-- Button of a megaphone shown to prompt the user to open Signal on their primary device that will snooze the megaphone -->
|
||||
<string name="InactivePrimary__got_it">Got it</string>
|
||||
<string name="InactivePrimary__got_it">Verstanden</string>
|
||||
|
||||
<!-- Text describing how to restore a backup displayed on the on-device backups screen -->
|
||||
<string name="OnDeviceBackupsScreen__to_restore_a_backup">"Um ein lokales Backup wiederherzustellen, installiere einfach eine neue Version von Signal. Öffne die App, tippe auf »Backup wiederherstellen« und suche dann den Backup-Ordner."</string>
|
||||
|
||||
@@ -2705,7 +2705,7 @@
|
||||
<!-- A clickable button to share your screen in a call -->
|
||||
<string name="CallOverflowPopupWindow__share_screen">Share screen</string>
|
||||
<!-- A clickable button to stop sharing your screen in a call -->
|
||||
<string name="CallOverflowPopupWindow__stop_screen_share">Stop sharing</string>
|
||||
<string name="CallOverflowPopupWindow__stop_screen_share">Λήξη διαμοιρασμού</string>
|
||||
<!-- A button to take you to a list of participants with raised hands -->
|
||||
<string name="CallOverflowPopupWindow__view">Εμφάνιση</string>
|
||||
|
||||
@@ -8244,13 +8244,13 @@
|
||||
<string name="UseNewOnDeviceBackups__not_now">Όχι τώρα</string>
|
||||
|
||||
<!-- Title of a megaphone shown to prompt the user to open Signal on their primary device -->
|
||||
<string name="InactivePrimary__title">Open Signal on your phone</string>
|
||||
<string name="InactivePrimary__title">Άνοιξε το Signal στο κινητό σου</string>
|
||||
<!-- Body of a megaphone shown to prompt the user to open Signal on their primary device -->
|
||||
<string name="InactivePrimary__body">To keep your account active, open Signal on your primary device.</string>
|
||||
<string name="InactivePrimary__body">Για να διατηρήσεις ενεργό τον λογαριασμό σου, άνοιξε το Signal στην κύρια συσκευή σου.</string>
|
||||
<!-- Button of a megaphone shown to prompt the user to open Signal on their primary device that will navigate to a support page -->
|
||||
<string name="InactivePrimary__learn_more">Learn more</string>
|
||||
<string name="InactivePrimary__learn_more">Μάθε περισσότερα</string>
|
||||
<!-- Button of a megaphone shown to prompt the user to open Signal on their primary device that will snooze the megaphone -->
|
||||
<string name="InactivePrimary__got_it">Got it</string>
|
||||
<string name="InactivePrimary__got_it">Εντάξει</string>
|
||||
|
||||
<!-- Text describing how to restore a backup displayed on the on-device backups screen -->
|
||||
<string name="OnDeviceBackupsScreen__to_restore_a_backup">"Για να ανακτήσεις ένα αντίγραφο ασφαλείας, εγκατάστησε από την αρχή το Signal. Άνοιξε την εφαρμογή, πάτα \"Επαναφορά αντίγραφου ασφαλείας\" και εντόπισε τον φάκελο αντιγράφου ασφαλείας."</string>
|
||||
|
||||
@@ -2705,7 +2705,7 @@
|
||||
<!-- A clickable button to share your screen in a call -->
|
||||
<string name="CallOverflowPopupWindow__share_screen">Share screen</string>
|
||||
<!-- A clickable button to stop sharing your screen in a call -->
|
||||
<string name="CallOverflowPopupWindow__stop_screen_share">Stop sharing</string>
|
||||
<string name="CallOverflowPopupWindow__stop_screen_share">Dejar de compartir</string>
|
||||
<!-- A button to take you to a list of participants with raised hands -->
|
||||
<string name="CallOverflowPopupWindow__view">Ver</string>
|
||||
|
||||
@@ -8244,13 +8244,13 @@
|
||||
<string name="UseNewOnDeviceBackups__not_now">Ahora no</string>
|
||||
|
||||
<!-- Title of a megaphone shown to prompt the user to open Signal on their primary device -->
|
||||
<string name="InactivePrimary__title">Open Signal on your phone</string>
|
||||
<string name="InactivePrimary__title">Abre Signal en tu teléfono</string>
|
||||
<!-- Body of a megaphone shown to prompt the user to open Signal on their primary device -->
|
||||
<string name="InactivePrimary__body">To keep your account active, open Signal on your primary device.</string>
|
||||
<string name="InactivePrimary__body">Para mantener tu cuenta activa, abre Signal en tu dispositivo principal.</string>
|
||||
<!-- Button of a megaphone shown to prompt the user to open Signal on their primary device that will navigate to a support page -->
|
||||
<string name="InactivePrimary__learn_more">Learn more</string>
|
||||
<string name="InactivePrimary__learn_more">Más información</string>
|
||||
<!-- Button of a megaphone shown to prompt the user to open Signal on their primary device that will snooze the megaphone -->
|
||||
<string name="InactivePrimary__got_it">Got it</string>
|
||||
<string name="InactivePrimary__got_it">Entendido</string>
|
||||
|
||||
<!-- Text describing how to restore a backup displayed on the on-device backups screen -->
|
||||
<string name="OnDeviceBackupsScreen__to_restore_a_backup">"Para restaurar una copia de seguridad, reinstala Signal. Abre la aplicación, toca \"Restaurar copia\" y busca el archivo de copia de seguridad."</string>
|
||||
|
||||
@@ -2705,7 +2705,7 @@
|
||||
<!-- A clickable button to share your screen in a call -->
|
||||
<string name="CallOverflowPopupWindow__share_screen">Share screen</string>
|
||||
<!-- A clickable button to stop sharing your screen in a call -->
|
||||
<string name="CallOverflowPopupWindow__stop_screen_share">Stop sharing</string>
|
||||
<string name="CallOverflowPopupWindow__stop_screen_share">Lõpeta jagamine</string>
|
||||
<!-- A button to take you to a list of participants with raised hands -->
|
||||
<string name="CallOverflowPopupWindow__view">Näita</string>
|
||||
|
||||
@@ -8244,13 +8244,13 @@
|
||||
<string name="UseNewOnDeviceBackups__not_now">Mitte praegu</string>
|
||||
|
||||
<!-- Title of a megaphone shown to prompt the user to open Signal on their primary device -->
|
||||
<string name="InactivePrimary__title">Open Signal on your phone</string>
|
||||
<string name="InactivePrimary__title">Ava Signal enda telefonis</string>
|
||||
<!-- Body of a megaphone shown to prompt the user to open Signal on their primary device -->
|
||||
<string name="InactivePrimary__body">To keep your account active, open Signal on your primary device.</string>
|
||||
<!-- Button of a megaphone shown to prompt the user to open Signal on their primary device that will navigate to a support page -->
|
||||
<string name="InactivePrimary__learn_more">Learn more</string>
|
||||
<string name="InactivePrimary__learn_more">Rohkem teavet</string>
|
||||
<!-- Button of a megaphone shown to prompt the user to open Signal on their primary device that will snooze the megaphone -->
|
||||
<string name="InactivePrimary__got_it">Got it</string>
|
||||
<string name="InactivePrimary__got_it">Sain aru</string>
|
||||
|
||||
<!-- Text describing how to restore a backup displayed on the on-device backups screen -->
|
||||
<string name="OnDeviceBackupsScreen__to_restore_a_backup">"Varukoopia taastamiseks paigalda Signali uus versioon. Ava rakendus ja klõpsa „Taasta varukoopia“, seejärel vali varukoopia fail."</string>
|
||||
|
||||
@@ -2705,7 +2705,7 @@
|
||||
<!-- A clickable button to share your screen in a call -->
|
||||
<string name="CallOverflowPopupWindow__share_screen">Share screen</string>
|
||||
<!-- A clickable button to stop sharing your screen in a call -->
|
||||
<string name="CallOverflowPopupWindow__stop_screen_share">Stop sharing</string>
|
||||
<string name="CallOverflowPopupWindow__stop_screen_share">Utzi partekatzeari</string>
|
||||
<!-- A button to take you to a list of participants with raised hands -->
|
||||
<string name="CallOverflowPopupWindow__view">Ikusi</string>
|
||||
|
||||
@@ -8244,13 +8244,13 @@
|
||||
<string name="UseNewOnDeviceBackups__not_now">Orain ez</string>
|
||||
|
||||
<!-- Title of a megaphone shown to prompt the user to open Signal on their primary device -->
|
||||
<string name="InactivePrimary__title">Open Signal on your phone</string>
|
||||
<string name="InactivePrimary__title">Ireki Signal telefonoan</string>
|
||||
<!-- Body of a megaphone shown to prompt the user to open Signal on their primary device -->
|
||||
<string name="InactivePrimary__body">To keep your account active, open Signal on your primary device.</string>
|
||||
<!-- Button of a megaphone shown to prompt the user to open Signal on their primary device that will navigate to a support page -->
|
||||
<string name="InactivePrimary__learn_more">Learn more</string>
|
||||
<string name="InactivePrimary__learn_more">Informazio gehiago</string>
|
||||
<!-- Button of a megaphone shown to prompt the user to open Signal on their primary device that will snooze the megaphone -->
|
||||
<string name="InactivePrimary__got_it">Got it</string>
|
||||
<string name="InactivePrimary__got_it">Ulertu dut</string>
|
||||
|
||||
<!-- Text describing how to restore a backup displayed on the on-device backups screen -->
|
||||
<string name="OnDeviceBackupsScreen__to_restore_a_backup">"Babeskopia bat leheneratzeko, instalatu Signal-en kopia berri bat. Ireki aplikazioa eta sakatu Leheneratu babeskopia; ondoren, bilatu babeskopiaren fitxategia."</string>
|
||||
|
||||
@@ -2705,7 +2705,7 @@
|
||||
<!-- A clickable button to share your screen in a call -->
|
||||
<string name="CallOverflowPopupWindow__share_screen">Share screen</string>
|
||||
<!-- A clickable button to stop sharing your screen in a call -->
|
||||
<string name="CallOverflowPopupWindow__stop_screen_share">Stop sharing</string>
|
||||
<string name="CallOverflowPopupWindow__stop_screen_share">توقف اشتراکگذاری</string>
|
||||
<!-- A button to take you to a list of participants with raised hands -->
|
||||
<string name="CallOverflowPopupWindow__view">مشاهده</string>
|
||||
|
||||
@@ -8244,13 +8244,13 @@
|
||||
<string name="UseNewOnDeviceBackups__not_now">حالا نه</string>
|
||||
|
||||
<!-- Title of a megaphone shown to prompt the user to open Signal on their primary device -->
|
||||
<string name="InactivePrimary__title">Open Signal on your phone</string>
|
||||
<string name="InactivePrimary__title">باز کردن سیگنال روی گوشی</string>
|
||||
<!-- Body of a megaphone shown to prompt the user to open Signal on their primary device -->
|
||||
<string name="InactivePrimary__body">To keep your account active, open Signal on your primary device.</string>
|
||||
<string name="InactivePrimary__body">برای فعال نگه داشتن حسابتان، سیگنال را در دستگاه اصلی خود باز کنید.</string>
|
||||
<!-- Button of a megaphone shown to prompt the user to open Signal on their primary device that will navigate to a support page -->
|
||||
<string name="InactivePrimary__learn_more">Learn more</string>
|
||||
<string name="InactivePrimary__learn_more">اطلاعات بیشتر</string>
|
||||
<!-- Button of a megaphone shown to prompt the user to open Signal on their primary device that will snooze the megaphone -->
|
||||
<string name="InactivePrimary__got_it">Got it</string>
|
||||
<string name="InactivePrimary__got_it">فهمیدم</string>
|
||||
|
||||
<!-- Text describing how to restore a backup displayed on the on-device backups screen -->
|
||||
<string name="OnDeviceBackupsScreen__to_restore_a_backup">"برای بازیابی نسخه پشتیبان، یک نسخه جدید از سیگنال نصب کنید. برنامه را باز کنید و روی «بازیابی نسخه پشتیبان» ضربه بزنید، سپس محل ذخیره فایل پشتیبان را مکانیابی کنید."</string>
|
||||
|
||||
@@ -2705,7 +2705,7 @@
|
||||
<!-- A clickable button to share your screen in a call -->
|
||||
<string name="CallOverflowPopupWindow__share_screen">Share screen</string>
|
||||
<!-- A clickable button to stop sharing your screen in a call -->
|
||||
<string name="CallOverflowPopupWindow__stop_screen_share">Stop sharing</string>
|
||||
<string name="CallOverflowPopupWindow__stop_screen_share">Lopeta jakaminen</string>
|
||||
<!-- A button to take you to a list of participants with raised hands -->
|
||||
<string name="CallOverflowPopupWindow__view">Näytä</string>
|
||||
|
||||
@@ -8244,13 +8244,13 @@
|
||||
<string name="UseNewOnDeviceBackups__not_now">Ei nyt</string>
|
||||
|
||||
<!-- Title of a megaphone shown to prompt the user to open Signal on their primary device -->
|
||||
<string name="InactivePrimary__title">Open Signal on your phone</string>
|
||||
<string name="InactivePrimary__title">Avaa Signal puhelimessa</string>
|
||||
<!-- Body of a megaphone shown to prompt the user to open Signal on their primary device -->
|
||||
<string name="InactivePrimary__body">To keep your account active, open Signal on your primary device.</string>
|
||||
<string name="InactivePrimary__body">Pidä tilisi aktiivisena avaamalla Signal ensisijaisella laitteellasi.</string>
|
||||
<!-- Button of a megaphone shown to prompt the user to open Signal on their primary device that will navigate to a support page -->
|
||||
<string name="InactivePrimary__learn_more">Learn more</string>
|
||||
<string name="InactivePrimary__learn_more">Lue lisää</string>
|
||||
<!-- Button of a megaphone shown to prompt the user to open Signal on their primary device that will snooze the megaphone -->
|
||||
<string name="InactivePrimary__got_it">Got it</string>
|
||||
<string name="InactivePrimary__got_it">Selvä</string>
|
||||
|
||||
<!-- Text describing how to restore a backup displayed on the on-device backups screen -->
|
||||
<string name="OnDeviceBackupsScreen__to_restore_a_backup">"Palauta varmuuskopio asentamalla uusi kopio Signalista. Avaa sovellus, napauta Palauta varmuuskopio ja etsi sitten varmuuskopiokansio."</string>
|
||||
|
||||
@@ -2705,7 +2705,7 @@
|
||||
<!-- A clickable button to share your screen in a call -->
|
||||
<string name="CallOverflowPopupWindow__share_screen">Share screen</string>
|
||||
<!-- A clickable button to stop sharing your screen in a call -->
|
||||
<string name="CallOverflowPopupWindow__stop_screen_share">Stop sharing</string>
|
||||
<string name="CallOverflowPopupWindow__stop_screen_share">Arrêter le partage</string>
|
||||
<!-- A button to take you to a list of participants with raised hands -->
|
||||
<string name="CallOverflowPopupWindow__view">Afficher</string>
|
||||
|
||||
@@ -8244,13 +8244,13 @@
|
||||
<string name="UseNewOnDeviceBackups__not_now">Plus tard</string>
|
||||
|
||||
<!-- Title of a megaphone shown to prompt the user to open Signal on their primary device -->
|
||||
<string name="InactivePrimary__title">Open Signal on your phone</string>
|
||||
<string name="InactivePrimary__title">Ouvrez Signal sur votre téléphone</string>
|
||||
<!-- Body of a megaphone shown to prompt the user to open Signal on their primary device -->
|
||||
<string name="InactivePrimary__body">To keep your account active, open Signal on your primary device.</string>
|
||||
<string name="InactivePrimary__body">Pour que votre compte reste actif, ouvrez Signal sur votre appareil principal.</string>
|
||||
<!-- Button of a megaphone shown to prompt the user to open Signal on their primary device that will navigate to a support page -->
|
||||
<string name="InactivePrimary__learn_more">Learn more</string>
|
||||
<string name="InactivePrimary__learn_more">En savoir plus</string>
|
||||
<!-- Button of a megaphone shown to prompt the user to open Signal on their primary device that will snooze the megaphone -->
|
||||
<string name="InactivePrimary__got_it">Got it</string>
|
||||
<string name="InactivePrimary__got_it">J\'ai compris</string>
|
||||
|
||||
<!-- Text describing how to restore a backup displayed on the on-device backups screen -->
|
||||
<string name="OnDeviceBackupsScreen__to_restore_a_backup">"Pour restaurer une sauvegarde, réinstallez Signal, puis ouvrez l\'appli. Touchez \"Restaurer une sauvegarde\" et recherchez votre dossier de sauvegarde."</string>
|
||||
|
||||
@@ -2957,7 +2957,7 @@
|
||||
<!-- A clickable button to share your screen in a call -->
|
||||
<string name="CallOverflowPopupWindow__share_screen">Share screen</string>
|
||||
<!-- A clickable button to stop sharing your screen in a call -->
|
||||
<string name="CallOverflowPopupWindow__stop_screen_share">Stop sharing</string>
|
||||
<string name="CallOverflowPopupWindow__stop_screen_share">Stop comhroinnt</string>
|
||||
<!-- A button to take you to a list of participants with raised hands -->
|
||||
<string name="CallOverflowPopupWindow__view">AMHARC</string>
|
||||
|
||||
@@ -8796,13 +8796,13 @@
|
||||
<string name="UseNewOnDeviceBackups__not_now">Ní anois</string>
|
||||
|
||||
<!-- Title of a megaphone shown to prompt the user to open Signal on their primary device -->
|
||||
<string name="InactivePrimary__title">Open Signal on your phone</string>
|
||||
<string name="InactivePrimary__title">Oscail Signal ar do ghuthán</string>
|
||||
<!-- Body of a megaphone shown to prompt the user to open Signal on their primary device -->
|
||||
<string name="InactivePrimary__body">To keep your account active, open Signal on your primary device.</string>
|
||||
<string name="InactivePrimary__body">Chun do chuntas a choinneáil gníomhach, oscail Signal ar do phríomhghléas.</string>
|
||||
<!-- Button of a megaphone shown to prompt the user to open Signal on their primary device that will navigate to a support page -->
|
||||
<string name="InactivePrimary__learn_more">Learn more</string>
|
||||
<string name="InactivePrimary__learn_more">Tuilleadh faisnéise</string>
|
||||
<!-- Button of a megaphone shown to prompt the user to open Signal on their primary device that will snooze the megaphone -->
|
||||
<string name="InactivePrimary__got_it">Got it</string>
|
||||
<string name="InactivePrimary__got_it">Tuigim</string>
|
||||
|
||||
<!-- Text describing how to restore a backup displayed on the on-device backups screen -->
|
||||
<string name="OnDeviceBackupsScreen__to_restore_a_backup">"Chun cúltaca a aischur, suiteáil cóip nua de Signal. Oscail an aip agus tapáil Aischuir cúltaca, ansin aimsigh comhad cúltaca."</string>
|
||||
|
||||
@@ -2705,7 +2705,7 @@
|
||||
<!-- A clickable button to share your screen in a call -->
|
||||
<string name="CallOverflowPopupWindow__share_screen">Share screen</string>
|
||||
<!-- A clickable button to stop sharing your screen in a call -->
|
||||
<string name="CallOverflowPopupWindow__stop_screen_share">Stop sharing</string>
|
||||
<string name="CallOverflowPopupWindow__stop_screen_share">Parar de compartir</string>
|
||||
<!-- A button to take you to a list of participants with raised hands -->
|
||||
<string name="CallOverflowPopupWindow__view">Ver</string>
|
||||
|
||||
@@ -8244,13 +8244,13 @@
|
||||
<string name="UseNewOnDeviceBackups__not_now">Agora non</string>
|
||||
|
||||
<!-- Title of a megaphone shown to prompt the user to open Signal on their primary device -->
|
||||
<string name="InactivePrimary__title">Open Signal on your phone</string>
|
||||
<string name="InactivePrimary__title">Abre Signal no teu móbil</string>
|
||||
<!-- Body of a megaphone shown to prompt the user to open Signal on their primary device -->
|
||||
<string name="InactivePrimary__body">To keep your account active, open Signal on your primary device.</string>
|
||||
<!-- Button of a megaphone shown to prompt the user to open Signal on their primary device that will navigate to a support page -->
|
||||
<string name="InactivePrimary__learn_more">Learn more</string>
|
||||
<string name="InactivePrimary__learn_more">Máis información</string>
|
||||
<!-- Button of a megaphone shown to prompt the user to open Signal on their primary device that will snooze the megaphone -->
|
||||
<string name="InactivePrimary__got_it">Got it</string>
|
||||
<string name="InactivePrimary__got_it">Entendo</string>
|
||||
|
||||
<!-- Text describing how to restore a backup displayed on the on-device backups screen -->
|
||||
<string name="OnDeviceBackupsScreen__to_restore_a_backup">"Para restaurar a copia, instala de novo Signal. Abre a aplicación e toca en «Restaurar copia de seguranza» e despois busca o cartafol da copia."</string>
|
||||
|
||||
@@ -2705,7 +2705,7 @@
|
||||
<!-- A clickable button to share your screen in a call -->
|
||||
<string name="CallOverflowPopupWindow__share_screen">Share screen</string>
|
||||
<!-- A clickable button to stop sharing your screen in a call -->
|
||||
<string name="CallOverflowPopupWindow__stop_screen_share">Stop sharing</string>
|
||||
<string name="CallOverflowPopupWindow__stop_screen_share">શેર કરવાનું બંધ કરો</string>
|
||||
<!-- A button to take you to a list of participants with raised hands -->
|
||||
<string name="CallOverflowPopupWindow__view">જુઓ</string>
|
||||
|
||||
@@ -8244,13 +8244,13 @@
|
||||
<string name="UseNewOnDeviceBackups__not_now">અત્યારે નહીં</string>
|
||||
|
||||
<!-- Title of a megaphone shown to prompt the user to open Signal on their primary device -->
|
||||
<string name="InactivePrimary__title">Open Signal on your phone</string>
|
||||
<string name="InactivePrimary__title">તમારા ફોન પર Signal ખોલો</string>
|
||||
<!-- Body of a megaphone shown to prompt the user to open Signal on their primary device -->
|
||||
<string name="InactivePrimary__body">To keep your account active, open Signal on your primary device.</string>
|
||||
<string name="InactivePrimary__body">તમારા એકાઉન્ટને સક્રિય રાખવા માટે, તમારા પ્રાથમિક ડિવાઇસ પર Signal ખોલો.</string>
|
||||
<!-- Button of a megaphone shown to prompt the user to open Signal on their primary device that will navigate to a support page -->
|
||||
<string name="InactivePrimary__learn_more">Learn more</string>
|
||||
<string name="InactivePrimary__learn_more">વધુ જાણો</string>
|
||||
<!-- Button of a megaphone shown to prompt the user to open Signal on their primary device that will snooze the megaphone -->
|
||||
<string name="InactivePrimary__got_it">Got it</string>
|
||||
<string name="InactivePrimary__got_it">સમજાઈ ગયું</string>
|
||||
|
||||
<!-- Text describing how to restore a backup displayed on the on-device backups screen -->
|
||||
<string name="OnDeviceBackupsScreen__to_restore_a_backup">"બેકઅપ રિસ્ટોર કરવા માટે, Signalની નવી કૉપિ ઇન્સ્ટોલ કરો. ઍપ ખોલો અને \"બેકઅપ રિસ્ટોર કરો\" પર ટેપ કરો, પછી બેકઅપ ફાઇલ શોધો."</string>
|
||||
|
||||
@@ -2705,7 +2705,7 @@
|
||||
<!-- A clickable button to share your screen in a call -->
|
||||
<string name="CallOverflowPopupWindow__share_screen">Share screen</string>
|
||||
<!-- A clickable button to stop sharing your screen in a call -->
|
||||
<string name="CallOverflowPopupWindow__stop_screen_share">Stop sharing</string>
|
||||
<string name="CallOverflowPopupWindow__stop_screen_share">शेयर करना बंद करें</string>
|
||||
<!-- A button to take you to a list of participants with raised hands -->
|
||||
<string name="CallOverflowPopupWindow__view">देखें</string>
|
||||
|
||||
@@ -8244,13 +8244,13 @@
|
||||
<string name="UseNewOnDeviceBackups__not_now">अभी नहीं</string>
|
||||
|
||||
<!-- Title of a megaphone shown to prompt the user to open Signal on their primary device -->
|
||||
<string name="InactivePrimary__title">Open Signal on your phone</string>
|
||||
<string name="InactivePrimary__title">अपने फ़ोन पर Signal खोलें</string>
|
||||
<!-- Body of a megaphone shown to prompt the user to open Signal on their primary device -->
|
||||
<string name="InactivePrimary__body">To keep your account active, open Signal on your primary device.</string>
|
||||
<string name="InactivePrimary__body">अपना अकाउंट चालू रखने के लिए, अपने मुख्य डिवाइस पर Signal खोलें।</string>
|
||||
<!-- Button of a megaphone shown to prompt the user to open Signal on their primary device that will navigate to a support page -->
|
||||
<string name="InactivePrimary__learn_more">Learn more</string>
|
||||
<string name="InactivePrimary__learn_more">और जानें</string>
|
||||
<!-- Button of a megaphone shown to prompt the user to open Signal on their primary device that will snooze the megaphone -->
|
||||
<string name="InactivePrimary__got_it">Got it</string>
|
||||
<string name="InactivePrimary__got_it">ठीक है</string>
|
||||
|
||||
<!-- Text describing how to restore a backup displayed on the on-device backups screen -->
|
||||
<string name="OnDeviceBackupsScreen__to_restore_a_backup">"बैकअप रीस्टोर करने के लिए, Signal का नया वर्ज़न इंस्टॉल करें। ऐप खोलें और \'बैकअप रीस्टोर करें\' पर टैप करें, फिर बैकअप फ़ाइल चुनें।"</string>
|
||||
|
||||
@@ -2873,7 +2873,7 @@
|
||||
<!-- A clickable button to share your screen in a call -->
|
||||
<string name="CallOverflowPopupWindow__share_screen">Share screen</string>
|
||||
<!-- A clickable button to stop sharing your screen in a call -->
|
||||
<string name="CallOverflowPopupWindow__stop_screen_share">Stop sharing</string>
|
||||
<string name="CallOverflowPopupWindow__stop_screen_share">Zaustavi dijeljenje</string>
|
||||
<!-- A button to take you to a list of participants with raised hands -->
|
||||
<string name="CallOverflowPopupWindow__view">Prikaz</string>
|
||||
|
||||
@@ -8612,13 +8612,13 @@
|
||||
<string name="UseNewOnDeviceBackups__not_now">Ne sada</string>
|
||||
|
||||
<!-- Title of a megaphone shown to prompt the user to open Signal on their primary device -->
|
||||
<string name="InactivePrimary__title">Open Signal on your phone</string>
|
||||
<string name="InactivePrimary__title">Otvorite Signal na vašem telefonu</string>
|
||||
<!-- Body of a megaphone shown to prompt the user to open Signal on their primary device -->
|
||||
<string name="InactivePrimary__body">To keep your account active, open Signal on your primary device.</string>
|
||||
<string name="InactivePrimary__body">Da bi vaš račun ostao aktivan, otvorite Signal na svom glavnom uređaju.</string>
|
||||
<!-- Button of a megaphone shown to prompt the user to open Signal on their primary device that will navigate to a support page -->
|
||||
<string name="InactivePrimary__learn_more">Learn more</string>
|
||||
<string name="InactivePrimary__learn_more">Saznajte više</string>
|
||||
<!-- Button of a megaphone shown to prompt the user to open Signal on their primary device that will snooze the megaphone -->
|
||||
<string name="InactivePrimary__got_it">Got it</string>
|
||||
<string name="InactivePrimary__got_it">Shvaćam</string>
|
||||
|
||||
<!-- Text describing how to restore a backup displayed on the on-device backups screen -->
|
||||
<string name="OnDeviceBackupsScreen__to_restore_a_backup">"Da biste preuzeli sigurnosnu kopiju, instalirajte novu verziju Signala. Otvorite aplikaciju i dodirnite „Vrati iz sigurnosne kopije“, a zatim pronađite datoteku sigurnosne kopije."</string>
|
||||
|
||||
@@ -2705,7 +2705,7 @@
|
||||
<!-- A clickable button to share your screen in a call -->
|
||||
<string name="CallOverflowPopupWindow__share_screen">Share screen</string>
|
||||
<!-- A clickable button to stop sharing your screen in a call -->
|
||||
<string name="CallOverflowPopupWindow__stop_screen_share">Stop sharing</string>
|
||||
<string name="CallOverflowPopupWindow__stop_screen_share">Megosztás leállítása</string>
|
||||
<!-- A button to take you to a list of participants with raised hands -->
|
||||
<string name="CallOverflowPopupWindow__view">Megtekintés</string>
|
||||
|
||||
@@ -8244,13 +8244,13 @@
|
||||
<string name="UseNewOnDeviceBackups__not_now">Később</string>
|
||||
|
||||
<!-- Title of a megaphone shown to prompt the user to open Signal on their primary device -->
|
||||
<string name="InactivePrimary__title">Open Signal on your phone</string>
|
||||
<string name="InactivePrimary__title">Nyisd meg a Signalt a telefonodon!</string>
|
||||
<!-- Body of a megaphone shown to prompt the user to open Signal on their primary device -->
|
||||
<string name="InactivePrimary__body">To keep your account active, open Signal on your primary device.</string>
|
||||
<string name="InactivePrimary__body">Fiókod aktív állapotban tartásához nyisd meg a Signal alkalmazást az elsődleges eszközödön.</string>
|
||||
<!-- Button of a megaphone shown to prompt the user to open Signal on their primary device that will navigate to a support page -->
|
||||
<string name="InactivePrimary__learn_more">Learn more</string>
|
||||
<string name="InactivePrimary__learn_more">Tudj meg többet</string>
|
||||
<!-- Button of a megaphone shown to prompt the user to open Signal on their primary device that will snooze the megaphone -->
|
||||
<string name="InactivePrimary__got_it">Got it</string>
|
||||
<string name="InactivePrimary__got_it">Rendben</string>
|
||||
|
||||
<!-- Text describing how to restore a backup displayed on the on-device backups screen -->
|
||||
<string name="OnDeviceBackupsScreen__to_restore_a_backup">"Egy biztonsági mentés visszaállításához először is telepítsd a Signalt! Nyisd meg az alkalmazást, koppints a Biztonsági mentés visszaállítása opcióra, majd keresd ki a biztonsági mentést tartalmazó mappát!"</string>
|
||||
|
||||
@@ -2621,7 +2621,7 @@
|
||||
<!-- A clickable button to share your screen in a call -->
|
||||
<string name="CallOverflowPopupWindow__share_screen">Share screen</string>
|
||||
<!-- A clickable button to stop sharing your screen in a call -->
|
||||
<string name="CallOverflowPopupWindow__stop_screen_share">Stop sharing</string>
|
||||
<string name="CallOverflowPopupWindow__stop_screen_share">Berhenti berbagi layar</string>
|
||||
<!-- A button to take you to a list of participants with raised hands -->
|
||||
<string name="CallOverflowPopupWindow__view">Lihat</string>
|
||||
|
||||
@@ -8060,13 +8060,13 @@
|
||||
<string name="UseNewOnDeviceBackups__not_now">Lain kali</string>
|
||||
|
||||
<!-- Title of a megaphone shown to prompt the user to open Signal on their primary device -->
|
||||
<string name="InactivePrimary__title">Open Signal on your phone</string>
|
||||
<string name="InactivePrimary__title">Buka Signal di ponsel Anda</string>
|
||||
<!-- Body of a megaphone shown to prompt the user to open Signal on their primary device -->
|
||||
<string name="InactivePrimary__body">To keep your account active, open Signal on your primary device.</string>
|
||||
<string name="InactivePrimary__body">Agar akun tetap aktif, buka Signal di perangkat utama Anda.</string>
|
||||
<!-- Button of a megaphone shown to prompt the user to open Signal on their primary device that will navigate to a support page -->
|
||||
<string name="InactivePrimary__learn_more">Learn more</string>
|
||||
<string name="InactivePrimary__learn_more">Pelajari selengkapnya</string>
|
||||
<!-- Button of a megaphone shown to prompt the user to open Signal on their primary device that will snooze the megaphone -->
|
||||
<string name="InactivePrimary__got_it">Got it</string>
|
||||
<string name="InactivePrimary__got_it">Mengerti</string>
|
||||
|
||||
<!-- Text describing how to restore a backup displayed on the on-device backups screen -->
|
||||
<string name="OnDeviceBackupsScreen__to_restore_a_backup">"Silakan instal ulang Signal untuk memulihkan cadangan. Buka aplikasinya dan ketuk \"Pulihkan cadangan\", lalu temukan file cadangannya."</string>
|
||||
|
||||
@@ -2705,7 +2705,7 @@
|
||||
<!-- A clickable button to share your screen in a call -->
|
||||
<string name="CallOverflowPopupWindow__share_screen">Share screen</string>
|
||||
<!-- A clickable button to stop sharing your screen in a call -->
|
||||
<string name="CallOverflowPopupWindow__stop_screen_share">Stop sharing</string>
|
||||
<string name="CallOverflowPopupWindow__stop_screen_share">Interrompi condivisione</string>
|
||||
<!-- A button to take you to a list of participants with raised hands -->
|
||||
<string name="CallOverflowPopupWindow__view">Mostra</string>
|
||||
|
||||
@@ -8244,13 +8244,13 @@
|
||||
<string name="UseNewOnDeviceBackups__not_now">Non ora</string>
|
||||
|
||||
<!-- Title of a megaphone shown to prompt the user to open Signal on their primary device -->
|
||||
<string name="InactivePrimary__title">Open Signal on your phone</string>
|
||||
<string name="InactivePrimary__title">Apri Signal sul tuo telefono</string>
|
||||
<!-- Body of a megaphone shown to prompt the user to open Signal on their primary device -->
|
||||
<string name="InactivePrimary__body">To keep your account active, open Signal on your primary device.</string>
|
||||
<string name="InactivePrimary__body">Per mantenere attivo l\'account, apri Signal sul tuo dispositivo principale.</string>
|
||||
<!-- Button of a megaphone shown to prompt the user to open Signal on their primary device that will navigate to a support page -->
|
||||
<string name="InactivePrimary__learn_more">Learn more</string>
|
||||
<string name="InactivePrimary__learn_more">Scopri di più</string>
|
||||
<!-- Button of a megaphone shown to prompt the user to open Signal on their primary device that will snooze the megaphone -->
|
||||
<string name="InactivePrimary__got_it">Got it</string>
|
||||
<string name="InactivePrimary__got_it">Capito</string>
|
||||
|
||||
<!-- Text describing how to restore a backup displayed on the on-device backups screen -->
|
||||
<string name="OnDeviceBackupsScreen__to_restore_a_backup">"Per ripristinare un backup, installa una nuova copia di Signal. Apri l\'app e tocca su \"Ripristina backup\", quindi trova un file di backup."</string>
|
||||
|
||||
@@ -2873,7 +2873,7 @@
|
||||
<!-- A clickable button to share your screen in a call -->
|
||||
<string name="CallOverflowPopupWindow__share_screen">Share screen</string>
|
||||
<!-- A clickable button to stop sharing your screen in a call -->
|
||||
<string name="CallOverflowPopupWindow__stop_screen_share">Stop sharing</string>
|
||||
<string name="CallOverflowPopupWindow__stop_screen_share">הפסק לשתף</string>
|
||||
<!-- A button to take you to a list of participants with raised hands -->
|
||||
<string name="CallOverflowPopupWindow__view">הצגה</string>
|
||||
|
||||
@@ -8612,13 +8612,13 @@
|
||||
<string name="UseNewOnDeviceBackups__not_now">לא עכשיו</string>
|
||||
|
||||
<!-- Title of a megaphone shown to prompt the user to open Signal on their primary device -->
|
||||
<string name="InactivePrimary__title">Open Signal on your phone</string>
|
||||
<string name="InactivePrimary__title">פתח את Signal בטלפון שלך</string>
|
||||
<!-- Body of a megaphone shown to prompt the user to open Signal on their primary device -->
|
||||
<string name="InactivePrimary__body">To keep your account active, open Signal on your primary device.</string>
|
||||
<string name="InactivePrimary__body">כדי לשמור על החשבון שלך פעיל, צריך לפתוח את Signal במכשיר הראשי שלך.</string>
|
||||
<!-- Button of a megaphone shown to prompt the user to open Signal on their primary device that will navigate to a support page -->
|
||||
<string name="InactivePrimary__learn_more">Learn more</string>
|
||||
<string name="InactivePrimary__learn_more">למידע נוסף</string>
|
||||
<!-- Button of a megaphone shown to prompt the user to open Signal on their primary device that will snooze the megaphone -->
|
||||
<string name="InactivePrimary__got_it">Got it</string>
|
||||
<string name="InactivePrimary__got_it">הבנתי</string>
|
||||
|
||||
<!-- Text describing how to restore a backup displayed on the on-device backups screen -->
|
||||
<string name="OnDeviceBackupsScreen__to_restore_a_backup">"כדי לשחזר גיבוי, יש להתקין עותק חדש של Signal. צריך לפתוח את האפליקציה וללחוץ על ״שחזור גיבוי״, ואז לאתר את תיקיית הגיבוי."</string>
|
||||
|
||||
@@ -2621,7 +2621,7 @@
|
||||
<!-- A clickable button to share your screen in a call -->
|
||||
<string name="CallOverflowPopupWindow__share_screen">Share screen</string>
|
||||
<!-- A clickable button to stop sharing your screen in a call -->
|
||||
<string name="CallOverflowPopupWindow__stop_screen_share">Stop sharing</string>
|
||||
<string name="CallOverflowPopupWindow__stop_screen_share">共有を停止</string>
|
||||
<!-- A button to take you to a list of participants with raised hands -->
|
||||
<string name="CallOverflowPopupWindow__view">表示する</string>
|
||||
|
||||
@@ -8060,13 +8060,13 @@
|
||||
<string name="UseNewOnDeviceBackups__not_now">今はしない</string>
|
||||
|
||||
<!-- Title of a megaphone shown to prompt the user to open Signal on their primary device -->
|
||||
<string name="InactivePrimary__title">Open Signal on your phone</string>
|
||||
<string name="InactivePrimary__title">ご利用のスマートフォンでSignalを開いてください</string>
|
||||
<!-- Body of a megaphone shown to prompt the user to open Signal on their primary device -->
|
||||
<string name="InactivePrimary__body">To keep your account active, open Signal on your primary device.</string>
|
||||
<string name="InactivePrimary__body">アカウントをアクティブに保つには、メイン端末/スマートフォンでSignalを開きます。</string>
|
||||
<!-- Button of a megaphone shown to prompt the user to open Signal on their primary device that will navigate to a support page -->
|
||||
<string name="InactivePrimary__learn_more">Learn more</string>
|
||||
<string name="InactivePrimary__learn_more">詳しく見る</string>
|
||||
<!-- Button of a megaphone shown to prompt the user to open Signal on their primary device that will snooze the megaphone -->
|
||||
<string name="InactivePrimary__got_it">Got it</string>
|
||||
<string name="InactivePrimary__got_it">わかりました</string>
|
||||
|
||||
<!-- Text describing how to restore a backup displayed on the on-device backups screen -->
|
||||
<string name="OnDeviceBackupsScreen__to_restore_a_backup">"バックアップを復元するには、新しいSignalをインストールしてください。その後アプリを開き、「バックアップを復元する」をタップしてバックアップファイルの場所を指定します。"</string>
|
||||
|
||||
@@ -2705,7 +2705,7 @@
|
||||
<!-- A clickable button to share your screen in a call -->
|
||||
<string name="CallOverflowPopupWindow__share_screen">Share screen</string>
|
||||
<!-- A clickable button to stop sharing your screen in a call -->
|
||||
<string name="CallOverflowPopupWindow__stop_screen_share">Stop sharing</string>
|
||||
<string name="CallOverflowPopupWindow__stop_screen_share">გაზიარების შეწყვეტა</string>
|
||||
<!-- A button to take you to a list of participants with raised hands -->
|
||||
<string name="CallOverflowPopupWindow__view">View</string>
|
||||
|
||||
@@ -8244,13 +8244,13 @@
|
||||
<string name="UseNewOnDeviceBackups__not_now">ახლა არა</string>
|
||||
|
||||
<!-- Title of a megaphone shown to prompt the user to open Signal on their primary device -->
|
||||
<string name="InactivePrimary__title">Open Signal on your phone</string>
|
||||
<string name="InactivePrimary__title">გახსენი Signal-ი შენს ტელეფონში</string>
|
||||
<!-- Body of a megaphone shown to prompt the user to open Signal on their primary device -->
|
||||
<string name="InactivePrimary__body">To keep your account active, open Signal on your primary device.</string>
|
||||
<!-- Button of a megaphone shown to prompt the user to open Signal on their primary device that will navigate to a support page -->
|
||||
<string name="InactivePrimary__learn_more">Learn more</string>
|
||||
<string name="InactivePrimary__learn_more">გაიგე მეტი</string>
|
||||
<!-- Button of a megaphone shown to prompt the user to open Signal on their primary device that will snooze the megaphone -->
|
||||
<string name="InactivePrimary__got_it">Got it</string>
|
||||
<string name="InactivePrimary__got_it">გასაგებია</string>
|
||||
|
||||
<!-- Text describing how to restore a backup displayed on the on-device backups screen -->
|
||||
<string name="OnDeviceBackupsScreen__to_restore_a_backup">"სათადარიგო ასლის აღსადგენად, დააინსტალირე Signal-ის ახალი ასლი. გახსენი აპი და დააჭირე „სათადარიგო ასლის აღდგენას“, შემდეგ იპოვე სათადარიგო საქაღალდე."</string>
|
||||
|
||||
@@ -2705,7 +2705,7 @@
|
||||
<!-- A clickable button to share your screen in a call -->
|
||||
<string name="CallOverflowPopupWindow__share_screen">Share screen</string>
|
||||
<!-- A clickable button to stop sharing your screen in a call -->
|
||||
<string name="CallOverflowPopupWindow__stop_screen_share">Stop sharing</string>
|
||||
<string name="CallOverflowPopupWindow__stop_screen_share">Бөлісуді тоқтату</string>
|
||||
<!-- A button to take you to a list of participants with raised hands -->
|
||||
<string name="CallOverflowPopupWindow__view">View</string>
|
||||
|
||||
@@ -8244,13 +8244,13 @@
|
||||
<string name="UseNewOnDeviceBackups__not_now">Кейін</string>
|
||||
|
||||
<!-- Title of a megaphone shown to prompt the user to open Signal on their primary device -->
|
||||
<string name="InactivePrimary__title">Open Signal on your phone</string>
|
||||
<string name="InactivePrimary__title">Телефоныңызда Signal қолданбасын ашыңыз</string>
|
||||
<!-- Body of a megaphone shown to prompt the user to open Signal on their primary device -->
|
||||
<string name="InactivePrimary__body">To keep your account active, open Signal on your primary device.</string>
|
||||
<!-- Button of a megaphone shown to prompt the user to open Signal on their primary device that will navigate to a support page -->
|
||||
<string name="InactivePrimary__learn_more">Learn more</string>
|
||||
<string name="InactivePrimary__learn_more">Толық ақпарат</string>
|
||||
<!-- Button of a megaphone shown to prompt the user to open Signal on their primary device that will snooze the megaphone -->
|
||||
<string name="InactivePrimary__got_it">Got it</string>
|
||||
<string name="InactivePrimary__got_it">Түсінікті</string>
|
||||
|
||||
<!-- Text describing how to restore a backup displayed on the on-device backups screen -->
|
||||
<string name="OnDeviceBackupsScreen__to_restore_a_backup">"Сақтық көшірмені қалпына келтіру үшін Signal-дың жаңа нұсқасын орнатыңыз. Қолданбаны ашып, \"Сақтық көшірмені қалпына келтіру\" опциясын түртіңіз де, сақтық көшірме файлын тауып алыңыз."</string>
|
||||
|
||||
@@ -2621,7 +2621,7 @@
|
||||
<!-- A clickable button to share your screen in a call -->
|
||||
<string name="CallOverflowPopupWindow__share_screen">Share screen</string>
|
||||
<!-- A clickable button to stop sharing your screen in a call -->
|
||||
<string name="CallOverflowPopupWindow__stop_screen_share">Stop sharing</string>
|
||||
<string name="CallOverflowPopupWindow__stop_screen_share">ឈប់ចែករំលែក</string>
|
||||
<!-- A button to take you to a list of participants with raised hands -->
|
||||
<string name="CallOverflowPopupWindow__view">បង្ហាញ</string>
|
||||
|
||||
@@ -8060,13 +8060,13 @@
|
||||
<string name="UseNewOnDeviceBackups__not_now">ឥឡូវកុំទាន់</string>
|
||||
|
||||
<!-- Title of a megaphone shown to prompt the user to open Signal on their primary device -->
|
||||
<string name="InactivePrimary__title">Open Signal on your phone</string>
|
||||
<string name="InactivePrimary__title">បើក Signal នៅលើទូរសព្ទរបស់អ្នក</string>
|
||||
<!-- Body of a megaphone shown to prompt the user to open Signal on their primary device -->
|
||||
<string name="InactivePrimary__body">To keep your account active, open Signal on your primary device.</string>
|
||||
<!-- Button of a megaphone shown to prompt the user to open Signal on their primary device that will navigate to a support page -->
|
||||
<string name="InactivePrimary__learn_more">Learn more</string>
|
||||
<string name="InactivePrimary__learn_more">ស្វែងយល់បន្ថែម</string>
|
||||
<!-- Button of a megaphone shown to prompt the user to open Signal on their primary device that will snooze the megaphone -->
|
||||
<string name="InactivePrimary__got_it">Got it</string>
|
||||
<string name="InactivePrimary__got_it">យល់ហើយ</string>
|
||||
|
||||
<!-- Text describing how to restore a backup displayed on the on-device backups screen -->
|
||||
<string name="OnDeviceBackupsScreen__to_restore_a_backup">"ដើម្បីស្ដារការបម្រុងទុក សូមដំឡើងច្បាប់ចម្លងថ្មីរបស់ Signal។ បើកកម្មវិធី ហើយចុច \"ស្តារការបម្រុងទុក\" បន្ទាប់មករកថតឯកសារបម្រុងទុក។"</string>
|
||||
|
||||
@@ -2705,7 +2705,7 @@
|
||||
<!-- A clickable button to share your screen in a call -->
|
||||
<string name="CallOverflowPopupWindow__share_screen">Share screen</string>
|
||||
<!-- A clickable button to stop sharing your screen in a call -->
|
||||
<string name="CallOverflowPopupWindow__stop_screen_share">Stop sharing</string>
|
||||
<string name="CallOverflowPopupWindow__stop_screen_share">ಹಂಚಿಕೊಳ್ಳುವುದನ್ನು ನಿಲ್ಲಿಸಿ</string>
|
||||
<!-- A button to take you to a list of participants with raised hands -->
|
||||
<string name="CallOverflowPopupWindow__view">ತೋರಿಸು</string>
|
||||
|
||||
@@ -8244,13 +8244,13 @@
|
||||
<string name="UseNewOnDeviceBackups__not_now">ಈಗಲ್ಲ</string>
|
||||
|
||||
<!-- Title of a megaphone shown to prompt the user to open Signal on their primary device -->
|
||||
<string name="InactivePrimary__title">Open Signal on your phone</string>
|
||||
<string name="InactivePrimary__title">ನಿಮ್ಮ ಫೋನ್ನಲ್ಲಿ Signal ತೆರೆಯಿರಿ</string>
|
||||
<!-- Body of a megaphone shown to prompt the user to open Signal on their primary device -->
|
||||
<string name="InactivePrimary__body">To keep your account active, open Signal on your primary device.</string>
|
||||
<!-- Button of a megaphone shown to prompt the user to open Signal on their primary device that will navigate to a support page -->
|
||||
<string name="InactivePrimary__learn_more">Learn more</string>
|
||||
<string name="InactivePrimary__learn_more">ಇನ್ನಷ್ಟು ತಿಳಿಯಿರಿ</string>
|
||||
<!-- Button of a megaphone shown to prompt the user to open Signal on their primary device that will snooze the megaphone -->
|
||||
<string name="InactivePrimary__got_it">Got it</string>
|
||||
<string name="InactivePrimary__got_it">ಅರ್ಥವಾಯಿತು</string>
|
||||
|
||||
<!-- Text describing how to restore a backup displayed on the on-device backups screen -->
|
||||
<string name="OnDeviceBackupsScreen__to_restore_a_backup">"ಬ್ಯಾಕಪ್ ಅನ್ನು ರಿಸ್ಟೋರ್ ಮಾಡಲು, Signal ನ ಹೊಸ ಕಾಪಿಯನ್ನು ಇನ್ಸ್ಟಾಲ್ ಮಾಡಿ. ಆ್ಯಪ್ ತೆರೆಯಿರಿ ಮತ್ತು ಬ್ಯಾಕಪ್ ರಿಸ್ಟೋರ್ ಮಾಡಿ ಎಂಬುದನ್ನು ಟ್ಯಾಪ್ ಮಾಡಿ, ನಂತರ ಬ್ಯಾಕಪ್ ಫೈಲ್ ಅನ್ನು ಪತ್ತೆಹಚ್ಚಿ."</string>
|
||||
|
||||
@@ -2621,7 +2621,7 @@
|
||||
<!-- A clickable button to share your screen in a call -->
|
||||
<string name="CallOverflowPopupWindow__share_screen">Share screen</string>
|
||||
<!-- A clickable button to stop sharing your screen in a call -->
|
||||
<string name="CallOverflowPopupWindow__stop_screen_share">Stop sharing</string>
|
||||
<string name="CallOverflowPopupWindow__stop_screen_share">공유 그만하기</string>
|
||||
<!-- A button to take you to a list of participants with raised hands -->
|
||||
<string name="CallOverflowPopupWindow__view">보기</string>
|
||||
|
||||
@@ -8060,13 +8060,13 @@
|
||||
<string name="UseNewOnDeviceBackups__not_now">나중에 하기</string>
|
||||
|
||||
<!-- Title of a megaphone shown to prompt the user to open Signal on their primary device -->
|
||||
<string name="InactivePrimary__title">Open Signal on your phone</string>
|
||||
<string name="InactivePrimary__title">휴대전화에서 Signal을 여세요.</string>
|
||||
<!-- Body of a megaphone shown to prompt the user to open Signal on their primary device -->
|
||||
<string name="InactivePrimary__body">To keep your account active, open Signal on your primary device.</string>
|
||||
<string name="InactivePrimary__body">계정을 활성화 상태로 유지하려면 주요 기기에서 Signal을 여세요.</string>
|
||||
<!-- Button of a megaphone shown to prompt the user to open Signal on their primary device that will navigate to a support page -->
|
||||
<string name="InactivePrimary__learn_more">Learn more</string>
|
||||
<string name="InactivePrimary__learn_more">자세히 알아보기</string>
|
||||
<!-- Button of a megaphone shown to prompt the user to open Signal on their primary device that will snooze the megaphone -->
|
||||
<string name="InactivePrimary__got_it">Got it</string>
|
||||
<string name="InactivePrimary__got_it">확인</string>
|
||||
|
||||
<!-- Text describing how to restore a backup displayed on the on-device backups screen -->
|
||||
<string name="OnDeviceBackupsScreen__to_restore_a_backup">"백업을 복원하려면 Signal을 다시 설치해 주세요. 설치한 후에는 앱을 열고 \'백업 복원\'을 탭한 다음, 백업 폴더를 확인하세요."</string>
|
||||
|
||||
@@ -2705,7 +2705,7 @@
|
||||
<!-- A clickable button to share your screen in a call -->
|
||||
<string name="CallOverflowPopupWindow__share_screen">Share screen</string>
|
||||
<!-- A clickable button to stop sharing your screen in a call -->
|
||||
<string name="CallOverflowPopupWindow__stop_screen_share">Stop sharing</string>
|
||||
<string name="CallOverflowPopupWindow__stop_screen_share">Бөлүшүүнү токтотуу</string>
|
||||
<!-- A button to take you to a list of participants with raised hands -->
|
||||
<string name="CallOverflowPopupWindow__view">Карап көрүү</string>
|
||||
|
||||
@@ -8244,13 +8244,13 @@
|
||||
<string name="UseNewOnDeviceBackups__not_now">Азыр эмес</string>
|
||||
|
||||
<!-- Title of a megaphone shown to prompt the user to open Signal on their primary device -->
|
||||
<string name="InactivePrimary__title">Open Signal on your phone</string>
|
||||
<string name="InactivePrimary__title">Телефонуңузда Signal\'ды ачыңыз</string>
|
||||
<!-- Body of a megaphone shown to prompt the user to open Signal on their primary device -->
|
||||
<string name="InactivePrimary__body">To keep your account active, open Signal on your primary device.</string>
|
||||
<!-- Button of a megaphone shown to prompt the user to open Signal on their primary device that will navigate to a support page -->
|
||||
<string name="InactivePrimary__learn_more">Learn more</string>
|
||||
<string name="InactivePrimary__learn_more">Кененирээк маалымат</string>
|
||||
<!-- Button of a megaphone shown to prompt the user to open Signal on their primary device that will snooze the megaphone -->
|
||||
<string name="InactivePrimary__got_it">Got it</string>
|
||||
<string name="InactivePrimary__got_it">Түшүндүм</string>
|
||||
|
||||
<!-- Text describing how to restore a backup displayed on the on-device backups screen -->
|
||||
<string name="OnDeviceBackupsScreen__to_restore_a_backup">"Камдык көчүрмөнү калыбына келтирүү үчүн Signal\'дын жаңы көчүрмөсүн орнотуңуз. Колдонмону ачып, \"Камдык көчүрмөнү калыбына келтирүү\" дегенди басып, камдык көчүрмөлөр сакталган папканы табыңыз."</string>
|
||||
|
||||
@@ -2873,7 +2873,7 @@
|
||||
<!-- A clickable button to share your screen in a call -->
|
||||
<string name="CallOverflowPopupWindow__share_screen">Share screen</string>
|
||||
<!-- A clickable button to stop sharing your screen in a call -->
|
||||
<string name="CallOverflowPopupWindow__stop_screen_share">Stop sharing</string>
|
||||
<string name="CallOverflowPopupWindow__stop_screen_share">Nustoti bendrinti</string>
|
||||
<!-- A button to take you to a list of participants with raised hands -->
|
||||
<string name="CallOverflowPopupWindow__view">Rodyti</string>
|
||||
|
||||
@@ -8612,13 +8612,13 @@
|
||||
<string name="UseNewOnDeviceBackups__not_now">Ne dabar</string>
|
||||
|
||||
<!-- Title of a megaphone shown to prompt the user to open Signal on their primary device -->
|
||||
<string name="InactivePrimary__title">Open Signal on your phone</string>
|
||||
<string name="InactivePrimary__title">Atverkite savo telefone Signal programėlę</string>
|
||||
<!-- Body of a megaphone shown to prompt the user to open Signal on their primary device -->
|
||||
<string name="InactivePrimary__body">To keep your account active, open Signal on your primary device.</string>
|
||||
<string name="InactivePrimary__body">Kad paskyra išliktų aktyvi, atverkite „Signal“ pagrindiniame įrenginyje.</string>
|
||||
<!-- Button of a megaphone shown to prompt the user to open Signal on their primary device that will navigate to a support page -->
|
||||
<string name="InactivePrimary__learn_more">Learn more</string>
|
||||
<string name="InactivePrimary__learn_more">Sužinoti daugiau</string>
|
||||
<!-- Button of a megaphone shown to prompt the user to open Signal on their primary device that will snooze the megaphone -->
|
||||
<string name="InactivePrimary__got_it">Got it</string>
|
||||
<string name="InactivePrimary__got_it">Supratau</string>
|
||||
|
||||
<!-- Text describing how to restore a backup displayed on the on-device backups screen -->
|
||||
<string name="OnDeviceBackupsScreen__to_restore_a_backup">"Norėdami atkurti atsarginę kopiją, įsidiekite naują „Signal“ kopiją. Atverkite programėlę ir bakstelėkite „Atkurti atsarginę kopiją“, tada suraskite atsarginės kopijos failą."</string>
|
||||
|
||||
@@ -2789,7 +2789,7 @@
|
||||
<!-- A clickable button to share your screen in a call -->
|
||||
<string name="CallOverflowPopupWindow__share_screen">Share screen</string>
|
||||
<!-- A clickable button to stop sharing your screen in a call -->
|
||||
<string name="CallOverflowPopupWindow__stop_screen_share">Stop sharing</string>
|
||||
<string name="CallOverflowPopupWindow__stop_screen_share">Pārtraukt kopīgošanu</string>
|
||||
<!-- A button to take you to a list of participants with raised hands -->
|
||||
<string name="CallOverflowPopupWindow__view">Skatīt</string>
|
||||
|
||||
@@ -8428,13 +8428,13 @@
|
||||
<string name="UseNewOnDeviceBackups__not_now">Ne tagad</string>
|
||||
|
||||
<!-- Title of a megaphone shown to prompt the user to open Signal on their primary device -->
|
||||
<string name="InactivePrimary__title">Open Signal on your phone</string>
|
||||
<string name="InactivePrimary__title">Atveriet Signal tālrunī</string>
|
||||
<!-- Body of a megaphone shown to prompt the user to open Signal on their primary device -->
|
||||
<string name="InactivePrimary__body">To keep your account active, open Signal on your primary device.</string>
|
||||
<!-- Button of a megaphone shown to prompt the user to open Signal on their primary device that will navigate to a support page -->
|
||||
<string name="InactivePrimary__learn_more">Learn more</string>
|
||||
<string name="InactivePrimary__learn_more">Uzzināt vairāk</string>
|
||||
<!-- Button of a megaphone shown to prompt the user to open Signal on their primary device that will snooze the megaphone -->
|
||||
<string name="InactivePrimary__got_it">Got it</string>
|
||||
<string name="InactivePrimary__got_it">Skaidrs</string>
|
||||
|
||||
<!-- Text describing how to restore a backup displayed on the on-device backups screen -->
|
||||
<string name="OnDeviceBackupsScreen__to_restore_a_backup">"Lai atjaunotu rezerves kopiju, instalējiet Signal no jauna. Atveriet lietotni un pieskarieties pie \"Atjaunot rezerves kopiju\". Tad atlasiet rezerves kopijas failu."</string>
|
||||
|
||||
@@ -2705,7 +2705,7 @@
|
||||
<!-- A clickable button to share your screen in a call -->
|
||||
<string name="CallOverflowPopupWindow__share_screen">Share screen</string>
|
||||
<!-- A clickable button to stop sharing your screen in a call -->
|
||||
<string name="CallOverflowPopupWindow__stop_screen_share">Stop sharing</string>
|
||||
<string name="CallOverflowPopupWindow__stop_screen_share">Престанете со споделување</string>
|
||||
<!-- A button to take you to a list of participants with raised hands -->
|
||||
<string name="CallOverflowPopupWindow__view">Поглед</string>
|
||||
|
||||
@@ -8244,13 +8244,13 @@
|
||||
<string name="UseNewOnDeviceBackups__not_now">Не сега</string>
|
||||
|
||||
<!-- Title of a megaphone shown to prompt the user to open Signal on their primary device -->
|
||||
<string name="InactivePrimary__title">Open Signal on your phone</string>
|
||||
<string name="InactivePrimary__title">Отворете Signal на вашиот телефон</string>
|
||||
<!-- Body of a megaphone shown to prompt the user to open Signal on their primary device -->
|
||||
<string name="InactivePrimary__body">To keep your account active, open Signal on your primary device.</string>
|
||||
<!-- Button of a megaphone shown to prompt the user to open Signal on their primary device that will navigate to a support page -->
|
||||
<string name="InactivePrimary__learn_more">Learn more</string>
|
||||
<string name="InactivePrimary__learn_more">Дознајте повеќе</string>
|
||||
<!-- Button of a megaphone shown to prompt the user to open Signal on their primary device that will snooze the megaphone -->
|
||||
<string name="InactivePrimary__got_it">Got it</string>
|
||||
<string name="InactivePrimary__got_it">Во ред</string>
|
||||
|
||||
<!-- Text describing how to restore a backup displayed on the on-device backups screen -->
|
||||
<string name="OnDeviceBackupsScreen__to_restore_a_backup">"За да вратите резервна копија, инсталирајте нова копија на Signal. Отворете ја апликацијата и допрете „Врати резервна копија“, потоа лоцирајте ја датотеката со резервната копија."</string>
|
||||
|
||||
@@ -2705,7 +2705,7 @@
|
||||
<!-- A clickable button to share your screen in a call -->
|
||||
<string name="CallOverflowPopupWindow__share_screen">Share screen</string>
|
||||
<!-- A clickable button to stop sharing your screen in a call -->
|
||||
<string name="CallOverflowPopupWindow__stop_screen_share">Stop sharing</string>
|
||||
<string name="CallOverflowPopupWindow__stop_screen_share">പങ്കിടുന്നത് നിർത്തുക</string>
|
||||
<!-- A button to take you to a list of participants with raised hands -->
|
||||
<string name="CallOverflowPopupWindow__view">കാണുക</string>
|
||||
|
||||
@@ -8244,13 +8244,13 @@
|
||||
<string name="UseNewOnDeviceBackups__not_now">ഇപ്പോൾ വേണ്ട</string>
|
||||
|
||||
<!-- Title of a megaphone shown to prompt the user to open Signal on their primary device -->
|
||||
<string name="InactivePrimary__title">Open Signal on your phone</string>
|
||||
<string name="InactivePrimary__title">നിങ്ങളുടെ ഫോണിൽ Signal തുറക്കുക</string>
|
||||
<!-- Body of a megaphone shown to prompt the user to open Signal on their primary device -->
|
||||
<string name="InactivePrimary__body">To keep your account active, open Signal on your primary device.</string>
|
||||
<!-- Button of a megaphone shown to prompt the user to open Signal on their primary device that will navigate to a support page -->
|
||||
<string name="InactivePrimary__learn_more">Learn more</string>
|
||||
<string name="InactivePrimary__learn_more">കൂടുതലറിയുക</string>
|
||||
<!-- Button of a megaphone shown to prompt the user to open Signal on their primary device that will snooze the megaphone -->
|
||||
<string name="InactivePrimary__got_it">Got it</string>
|
||||
<string name="InactivePrimary__got_it">മനസ്സിലായി</string>
|
||||
|
||||
<!-- Text describing how to restore a backup displayed on the on-device backups screen -->
|
||||
<string name="OnDeviceBackupsScreen__to_restore_a_backup">"ഒരു ബാക്കപ്പ് പുനഃസ്ഥാപിക്കാൻ, Signal-ന്റെ ഒരു പുതിയ പകർപ്പ് ഇൻസ്റ്റാൾ ചെയ്യുക. ആപ്പ് തുറന്ന് ബാക്കപ്പ് പുനഃസ്ഥാപിക്കുക ടാപ്പ് ചെയ്യുക, തുടർന്ന് ഒരു ബാക്കപ്പ് ഫയൽ കണ്ടെത്തുക."</string>
|
||||
|
||||
@@ -2705,7 +2705,7 @@
|
||||
<!-- A clickable button to share your screen in a call -->
|
||||
<string name="CallOverflowPopupWindow__share_screen">Share screen</string>
|
||||
<!-- A clickable button to stop sharing your screen in a call -->
|
||||
<string name="CallOverflowPopupWindow__stop_screen_share">Stop sharing</string>
|
||||
<string name="CallOverflowPopupWindow__stop_screen_share">सामायिक करणे थांबवा</string>
|
||||
<!-- A button to take you to a list of participants with raised hands -->
|
||||
<string name="CallOverflowPopupWindow__view">बघा</string>
|
||||
|
||||
@@ -8244,13 +8244,13 @@
|
||||
<string name="UseNewOnDeviceBackups__not_now">आता नाही</string>
|
||||
|
||||
<!-- Title of a megaphone shown to prompt the user to open Signal on their primary device -->
|
||||
<string name="InactivePrimary__title">Open Signal on your phone</string>
|
||||
<string name="InactivePrimary__title">आपल्या फोनवर Signal उघडा</string>
|
||||
<!-- Body of a megaphone shown to prompt the user to open Signal on their primary device -->
|
||||
<string name="InactivePrimary__body">To keep your account active, open Signal on your primary device.</string>
|
||||
<string name="InactivePrimary__body">तुमचे खाते सक्रिय ठेवण्यासाठी, तुमच्या प्राथमिक डिव्हाईसवर Signal उघडा.</string>
|
||||
<!-- Button of a megaphone shown to prompt the user to open Signal on their primary device that will navigate to a support page -->
|
||||
<string name="InactivePrimary__learn_more">Learn more</string>
|
||||
<string name="InactivePrimary__learn_more">अधिक जाणून घ्या</string>
|
||||
<!-- Button of a megaphone shown to prompt the user to open Signal on their primary device that will snooze the megaphone -->
|
||||
<string name="InactivePrimary__got_it">Got it</string>
|
||||
<string name="InactivePrimary__got_it">कळले</string>
|
||||
|
||||
<!-- Text describing how to restore a backup displayed on the on-device backups screen -->
|
||||
<string name="OnDeviceBackupsScreen__to_restore_a_backup">"बॅकअप रीस्टोर करण्यासाठी, Signal ची नवी आवृत्ती स्थापन करा. ॲप उघडा आणि रीस्टोर बॅकअप वर टॅप करा, मग बॅकअप फाईल शोधा."</string>
|
||||
|
||||
@@ -2621,7 +2621,7 @@
|
||||
<!-- A clickable button to share your screen in a call -->
|
||||
<string name="CallOverflowPopupWindow__share_screen">Share screen</string>
|
||||
<!-- A clickable button to stop sharing your screen in a call -->
|
||||
<string name="CallOverflowPopupWindow__stop_screen_share">Stop sharing</string>
|
||||
<string name="CallOverflowPopupWindow__stop_screen_share">Hentikan perkongsian</string>
|
||||
<!-- A button to take you to a list of participants with raised hands -->
|
||||
<string name="CallOverflowPopupWindow__view">Lihat</string>
|
||||
|
||||
@@ -8060,13 +8060,13 @@
|
||||
<string name="UseNewOnDeviceBackups__not_now">Bukan sekarang</string>
|
||||
|
||||
<!-- Title of a megaphone shown to prompt the user to open Signal on their primary device -->
|
||||
<string name="InactivePrimary__title">Open Signal on your phone</string>
|
||||
<string name="InactivePrimary__title">Buka Signal di telefon anda</string>
|
||||
<!-- Body of a megaphone shown to prompt the user to open Signal on their primary device -->
|
||||
<string name="InactivePrimary__body">To keep your account active, open Signal on your primary device.</string>
|
||||
<string name="InactivePrimary__body">Untuk memastikan akaun anda kekal aktif, buka Signal pada peranti utama anda.</string>
|
||||
<!-- Button of a megaphone shown to prompt the user to open Signal on their primary device that will navigate to a support page -->
|
||||
<string name="InactivePrimary__learn_more">Learn more</string>
|
||||
<string name="InactivePrimary__learn_more">Ketahui lebih lanjut</string>
|
||||
<!-- Button of a megaphone shown to prompt the user to open Signal on their primary device that will snooze the megaphone -->
|
||||
<string name="InactivePrimary__got_it">Got it</string>
|
||||
<string name="InactivePrimary__got_it">Faham</string>
|
||||
|
||||
<!-- Text describing how to restore a backup displayed on the on-device backups screen -->
|
||||
<string name="OnDeviceBackupsScreen__to_restore_a_backup">"Untuk memulihkan sandaran, pasang salinan baharu Signal. Buka aplikasi dan ketik Pulihkan sandaran, kemudian cari fail sandaran."</string>
|
||||
|
||||
@@ -2621,7 +2621,7 @@
|
||||
<!-- A clickable button to share your screen in a call -->
|
||||
<string name="CallOverflowPopupWindow__share_screen">Share screen</string>
|
||||
<!-- A clickable button to stop sharing your screen in a call -->
|
||||
<string name="CallOverflowPopupWindow__stop_screen_share">Stop sharing</string>
|
||||
<string name="CallOverflowPopupWindow__stop_screen_share">ဝေမျှမှု ရပ်ရန်</string>
|
||||
<!-- A button to take you to a list of participants with raised hands -->
|
||||
<string name="CallOverflowPopupWindow__view">ကြည့်မယ်</string>
|
||||
|
||||
@@ -8060,13 +8060,13 @@
|
||||
<string name="UseNewOnDeviceBackups__not_now">အခုမဟုတ်သေးပါ</string>
|
||||
|
||||
<!-- Title of a megaphone shown to prompt the user to open Signal on their primary device -->
|
||||
<string name="InactivePrimary__title">Open Signal on your phone</string>
|
||||
<string name="InactivePrimary__title">သင့်ဖုန်းတွင် Signal ကို ဖွင့်ရန်</string>
|
||||
<!-- Body of a megaphone shown to prompt the user to open Signal on their primary device -->
|
||||
<string name="InactivePrimary__body">To keep your account active, open Signal on your primary device.</string>
|
||||
<!-- Button of a megaphone shown to prompt the user to open Signal on their primary device that will navigate to a support page -->
|
||||
<string name="InactivePrimary__learn_more">Learn more</string>
|
||||
<string name="InactivePrimary__learn_more">ပိုမိုလေ့လာရန်</string>
|
||||
<!-- Button of a megaphone shown to prompt the user to open Signal on their primary device that will snooze the megaphone -->
|
||||
<string name="InactivePrimary__got_it">Got it</string>
|
||||
<string name="InactivePrimary__got_it">ရပြီ</string>
|
||||
|
||||
<!-- Text describing how to restore a backup displayed on the on-device backups screen -->
|
||||
<string name="OnDeviceBackupsScreen__to_restore_a_backup">"ဘက်ခ်အပ်ကို ပြန်ယူလိုလျှင် Signal မိတ္တူအသစ်ကို ထည့်သွင်းပါ။ အက်ပ်ကိုဖွင့်၍ ဘက်ခ်အပ်ကိုပြန်လည်ရယူပါကို နှိပ်ပြီး ဘက်ခ်အပ်ဖိုင်ကို ရှာဖွေရွေးပေးပါ။"</string>
|
||||
|
||||
@@ -2705,7 +2705,7 @@
|
||||
<!-- A clickable button to share your screen in a call -->
|
||||
<string name="CallOverflowPopupWindow__share_screen">Share screen</string>
|
||||
<!-- A clickable button to stop sharing your screen in a call -->
|
||||
<string name="CallOverflowPopupWindow__stop_screen_share">Stop sharing</string>
|
||||
<string name="CallOverflowPopupWindow__stop_screen_share">Avslutt deling</string>
|
||||
<!-- A button to take you to a list of participants with raised hands -->
|
||||
<string name="CallOverflowPopupWindow__view">Vis</string>
|
||||
|
||||
@@ -8244,13 +8244,13 @@
|
||||
<string name="UseNewOnDeviceBackups__not_now">Ikke nå</string>
|
||||
|
||||
<!-- Title of a megaphone shown to prompt the user to open Signal on their primary device -->
|
||||
<string name="InactivePrimary__title">Open Signal on your phone</string>
|
||||
<string name="InactivePrimary__title">Åpne Signal på telefonen</string>
|
||||
<!-- Body of a megaphone shown to prompt the user to open Signal on their primary device -->
|
||||
<string name="InactivePrimary__body">To keep your account active, open Signal on your primary device.</string>
|
||||
<string name="InactivePrimary__body">Åpne Signal på hovedenheten din for å holde kontoen aktiv.</string>
|
||||
<!-- Button of a megaphone shown to prompt the user to open Signal on their primary device that will navigate to a support page -->
|
||||
<string name="InactivePrimary__learn_more">Learn more</string>
|
||||
<string name="InactivePrimary__learn_more">Les mer</string>
|
||||
<!-- Button of a megaphone shown to prompt the user to open Signal on their primary device that will snooze the megaphone -->
|
||||
<string name="InactivePrimary__got_it">Got it</string>
|
||||
<string name="InactivePrimary__got_it">Skjønner</string>
|
||||
|
||||
<!-- Text describing how to restore a backup displayed on the on-device backups screen -->
|
||||
<string name="OnDeviceBackupsScreen__to_restore_a_backup">"For å gjenopprette en sikkerhetskopi må du installere en ny kopi av Signal. Åpne appen, trykk på «Gjenopprett sikkerhetskopi», og finn mappen med sikkerhetskopien."</string>
|
||||
|
||||
@@ -2705,7 +2705,7 @@
|
||||
<!-- A clickable button to share your screen in a call -->
|
||||
<string name="CallOverflowPopupWindow__share_screen">Share screen</string>
|
||||
<!-- A clickable button to stop sharing your screen in a call -->
|
||||
<string name="CallOverflowPopupWindow__stop_screen_share">Stop sharing</string>
|
||||
<string name="CallOverflowPopupWindow__stop_screen_share">Delen stoppen</string>
|
||||
<!-- A button to take you to a list of participants with raised hands -->
|
||||
<string name="CallOverflowPopupWindow__view">Weergeven</string>
|
||||
|
||||
@@ -8244,13 +8244,13 @@
|
||||
<string name="UseNewOnDeviceBackups__not_now">Niet nu</string>
|
||||
|
||||
<!-- Title of a megaphone shown to prompt the user to open Signal on their primary device -->
|
||||
<string name="InactivePrimary__title">Open Signal on your phone</string>
|
||||
<string name="InactivePrimary__title">Open Signal op je telefoon</string>
|
||||
<!-- Body of a megaphone shown to prompt the user to open Signal on their primary device -->
|
||||
<string name="InactivePrimary__body">To keep your account active, open Signal on your primary device.</string>
|
||||
<string name="InactivePrimary__body">Open Signal op je primaire apparaat om je account actief te houden.</string>
|
||||
<!-- Button of a megaphone shown to prompt the user to open Signal on their primary device that will navigate to a support page -->
|
||||
<string name="InactivePrimary__learn_more">Learn more</string>
|
||||
<string name="InactivePrimary__learn_more">Meer lezen</string>
|
||||
<!-- Button of a megaphone shown to prompt the user to open Signal on their primary device that will snooze the megaphone -->
|
||||
<string name="InactivePrimary__got_it">Got it</string>
|
||||
<string name="InactivePrimary__got_it">Begrepen</string>
|
||||
|
||||
<!-- Text describing how to restore a backup displayed on the on-device backups screen -->
|
||||
<string name="OnDeviceBackupsScreen__to_restore_a_backup">"Om je gegevens uit een back-up terug te zetten, moet je Signal opnieuw installeren. Open vervolgens de app, tik op ‘Back-upgegevens terugzetten’ en zoek de back-upmap."</string>
|
||||
|
||||
@@ -2705,7 +2705,7 @@
|
||||
<!-- A clickable button to share your screen in a call -->
|
||||
<string name="CallOverflowPopupWindow__share_screen">Share screen</string>
|
||||
<!-- A clickable button to stop sharing your screen in a call -->
|
||||
<string name="CallOverflowPopupWindow__stop_screen_share">Stop sharing</string>
|
||||
<string name="CallOverflowPopupWindow__stop_screen_share">ਸਾਂਝਾ ਕਰਨਾ ਰੋਕੋ</string>
|
||||
<!-- A button to take you to a list of participants with raised hands -->
|
||||
<string name="CallOverflowPopupWindow__view">ਵੇਖੋ</string>
|
||||
|
||||
@@ -8244,13 +8244,13 @@
|
||||
<string name="UseNewOnDeviceBackups__not_now">ਹਾਲੇ ਨਹੀਂ</string>
|
||||
|
||||
<!-- Title of a megaphone shown to prompt the user to open Signal on their primary device -->
|
||||
<string name="InactivePrimary__title">Open Signal on your phone</string>
|
||||
<string name="InactivePrimary__title">ਆਪਣੇ ਫ਼ੋਨ ਉੱਤੇ Signal ਖੋਲ੍ਹੋ</string>
|
||||
<!-- Body of a megaphone shown to prompt the user to open Signal on their primary device -->
|
||||
<string name="InactivePrimary__body">To keep your account active, open Signal on your primary device.</string>
|
||||
<!-- Button of a megaphone shown to prompt the user to open Signal on their primary device that will navigate to a support page -->
|
||||
<string name="InactivePrimary__learn_more">Learn more</string>
|
||||
<string name="InactivePrimary__learn_more">ਹੋਰ ਜਾਣੋ</string>
|
||||
<!-- Button of a megaphone shown to prompt the user to open Signal on their primary device that will snooze the megaphone -->
|
||||
<string name="InactivePrimary__got_it">Got it</string>
|
||||
<string name="InactivePrimary__got_it">ਸਮਝ ਗਏ</string>
|
||||
|
||||
<!-- Text describing how to restore a backup displayed on the on-device backups screen -->
|
||||
<string name="OnDeviceBackupsScreen__to_restore_a_backup">"ਬੈਕਅੱਪ ਰੀਸਟੋਰ ਕਰਨ ਲਈ, Signal ਦੀ ਇੱਕ ਨਵੀਂ ਕਾਪੀ ਇੰਸਟਾਲ ਕਰੋ। ਐਪ ਨੂੰ ਖੋਲ੍ਹੋ ਅਤੇ \"ਬੈਕਅੱਪ ਰੀਸਟੋਰ ਕਰੋ\" \'ਤੇ ਟੈਪ ਕਰੋ, ਫਿਰ ਬੈਕਅੱਪ ਫ਼ਾਈਲ ਲੱਭੋ।"</string>
|
||||
|
||||
@@ -2873,7 +2873,7 @@
|
||||
<!-- A clickable button to share your screen in a call -->
|
||||
<string name="CallOverflowPopupWindow__share_screen">Share screen</string>
|
||||
<!-- A clickable button to stop sharing your screen in a call -->
|
||||
<string name="CallOverflowPopupWindow__stop_screen_share">Stop sharing</string>
|
||||
<string name="CallOverflowPopupWindow__stop_screen_share">Przestań udostępniać ekran</string>
|
||||
<!-- A button to take you to a list of participants with raised hands -->
|
||||
<string name="CallOverflowPopupWindow__view">Wyświetl</string>
|
||||
|
||||
@@ -8612,13 +8612,13 @@
|
||||
<string name="UseNewOnDeviceBackups__not_now">Nie teraz</string>
|
||||
|
||||
<!-- Title of a megaphone shown to prompt the user to open Signal on their primary device -->
|
||||
<string name="InactivePrimary__title">Open Signal on your phone</string>
|
||||
<string name="InactivePrimary__title">Otwórz Signal na telefonie</string>
|
||||
<!-- Body of a megaphone shown to prompt the user to open Signal on their primary device -->
|
||||
<string name="InactivePrimary__body">To keep your account active, open Signal on your primary device.</string>
|
||||
<string name="InactivePrimary__body">Aby konto pozostało aktywne, otwórz Signal na swoim głównym urządzeniu.</string>
|
||||
<!-- Button of a megaphone shown to prompt the user to open Signal on their primary device that will navigate to a support page -->
|
||||
<string name="InactivePrimary__learn_more">Learn more</string>
|
||||
<string name="InactivePrimary__learn_more">Dowiedz się więcej</string>
|
||||
<!-- Button of a megaphone shown to prompt the user to open Signal on their primary device that will snooze the megaphone -->
|
||||
<string name="InactivePrimary__got_it">Got it</string>
|
||||
<string name="InactivePrimary__got_it">Rozumiem</string>
|
||||
|
||||
<!-- Text describing how to restore a backup displayed on the on-device backups screen -->
|
||||
<string name="OnDeviceBackupsScreen__to_restore_a_backup">"Aby przywrócić kopię zapasową, zainstaluj Signal ponownie. Otwórz aplikację i wybierz opcję „Przywróć kopię zapasową”, a następnie wskaż folder z plikiem kopii zapasowej."</string>
|
||||
|
||||
@@ -2705,7 +2705,7 @@
|
||||
<!-- A clickable button to share your screen in a call -->
|
||||
<string name="CallOverflowPopupWindow__share_screen">Share screen</string>
|
||||
<!-- A clickable button to stop sharing your screen in a call -->
|
||||
<string name="CallOverflowPopupWindow__stop_screen_share">Stop sharing</string>
|
||||
<string name="CallOverflowPopupWindow__stop_screen_share">Parar apresentação</string>
|
||||
<!-- A button to take you to a list of participants with raised hands -->
|
||||
<string name="CallOverflowPopupWindow__view">Exibir</string>
|
||||
|
||||
@@ -8244,13 +8244,13 @@
|
||||
<string name="UseNewOnDeviceBackups__not_now">Agora não</string>
|
||||
|
||||
<!-- Title of a megaphone shown to prompt the user to open Signal on their primary device -->
|
||||
<string name="InactivePrimary__title">Open Signal on your phone</string>
|
||||
<string name="InactivePrimary__title">Abra o Signal no seu celular</string>
|
||||
<!-- Body of a megaphone shown to prompt the user to open Signal on their primary device -->
|
||||
<string name="InactivePrimary__body">To keep your account active, open Signal on your primary device.</string>
|
||||
<string name="InactivePrimary__body">Para manter sua conta ativa, abra o Signal no seu dispositivo principal.</string>
|
||||
<!-- Button of a megaphone shown to prompt the user to open Signal on their primary device that will navigate to a support page -->
|
||||
<string name="InactivePrimary__learn_more">Learn more</string>
|
||||
<string name="InactivePrimary__learn_more">Saiba mais</string>
|
||||
<!-- Button of a megaphone shown to prompt the user to open Signal on their primary device that will snooze the megaphone -->
|
||||
<string name="InactivePrimary__got_it">Got it</string>
|
||||
<string name="InactivePrimary__got_it">Entendi</string>
|
||||
|
||||
<!-- Text describing how to restore a backup displayed on the on-device backups screen -->
|
||||
<string name="OnDeviceBackupsScreen__to_restore_a_backup">"Para restaurar um backup, faça uma nova instalação do Signal. Abra o app e toque em \"Restaurar backup\". Em seguida, localize a pasta onde o backup está salvo."</string>
|
||||
|
||||
@@ -2705,7 +2705,7 @@
|
||||
<!-- A clickable button to share your screen in a call -->
|
||||
<string name="CallOverflowPopupWindow__share_screen">Share screen</string>
|
||||
<!-- A clickable button to stop sharing your screen in a call -->
|
||||
<string name="CallOverflowPopupWindow__stop_screen_share">Stop sharing</string>
|
||||
<string name="CallOverflowPopupWindow__stop_screen_share">Parar de partilhar</string>
|
||||
<!-- A button to take you to a list of participants with raised hands -->
|
||||
<string name="CallOverflowPopupWindow__view">Ver</string>
|
||||
|
||||
@@ -8244,13 +8244,13 @@
|
||||
<string name="UseNewOnDeviceBackups__not_now">Agora não</string>
|
||||
|
||||
<!-- Title of a megaphone shown to prompt the user to open Signal on their primary device -->
|
||||
<string name="InactivePrimary__title">Open Signal on your phone</string>
|
||||
<string name="InactivePrimary__title">Abra o Signal no seu telemóvel</string>
|
||||
<!-- Body of a megaphone shown to prompt the user to open Signal on their primary device -->
|
||||
<string name="InactivePrimary__body">To keep your account active, open Signal on your primary device.</string>
|
||||
<string name="InactivePrimary__body">Para manter a sua conta ativa, abra o Signal no seu dispositivo principal.</string>
|
||||
<!-- Button of a megaphone shown to prompt the user to open Signal on their primary device that will navigate to a support page -->
|
||||
<string name="InactivePrimary__learn_more">Learn more</string>
|
||||
<string name="InactivePrimary__learn_more">Saber mais</string>
|
||||
<!-- Button of a megaphone shown to prompt the user to open Signal on their primary device that will snooze the megaphone -->
|
||||
<string name="InactivePrimary__got_it">Got it</string>
|
||||
<string name="InactivePrimary__got_it">Entendido</string>
|
||||
|
||||
<!-- Text describing how to restore a backup displayed on the on-device backups screen -->
|
||||
<string name="OnDeviceBackupsScreen__to_restore_a_backup">"Para restaurar uma cópia de segurança, instale uma nova cópia do Signal. Abra a app e toque em \"Restaurar cópia de segurança\", depois localize um ficheiro de cópia de segurança."</string>
|
||||
|
||||
@@ -2789,7 +2789,7 @@
|
||||
<!-- A clickable button to share your screen in a call -->
|
||||
<string name="CallOverflowPopupWindow__share_screen">Share screen</string>
|
||||
<!-- A clickable button to stop sharing your screen in a call -->
|
||||
<string name="CallOverflowPopupWindow__stop_screen_share">Stop sharing</string>
|
||||
<string name="CallOverflowPopupWindow__stop_screen_share">Oprește partajarea</string>
|
||||
<!-- A button to take you to a list of participants with raised hands -->
|
||||
<string name="CallOverflowPopupWindow__view">Vizualizare</string>
|
||||
|
||||
@@ -8428,13 +8428,13 @@
|
||||
<string name="UseNewOnDeviceBackups__not_now">Nu acum</string>
|
||||
|
||||
<!-- Title of a megaphone shown to prompt the user to open Signal on their primary device -->
|
||||
<string name="InactivePrimary__title">Open Signal on your phone</string>
|
||||
<string name="InactivePrimary__title">Deschide Signal pe telefonul tău</string>
|
||||
<!-- Body of a megaphone shown to prompt the user to open Signal on their primary device -->
|
||||
<string name="InactivePrimary__body">To keep your account active, open Signal on your primary device.</string>
|
||||
<string name="InactivePrimary__body">Ca să-ți menții contul activ, deschide Signal pe dispozitivul principal.</string>
|
||||
<!-- Button of a megaphone shown to prompt the user to open Signal on their primary device that will navigate to a support page -->
|
||||
<string name="InactivePrimary__learn_more">Learn more</string>
|
||||
<string name="InactivePrimary__learn_more">Află mai multe</string>
|
||||
<!-- Button of a megaphone shown to prompt the user to open Signal on their primary device that will snooze the megaphone -->
|
||||
<string name="InactivePrimary__got_it">Got it</string>
|
||||
<string name="InactivePrimary__got_it">Am înțeles</string>
|
||||
|
||||
<!-- Text describing how to restore a backup displayed on the on-device backups screen -->
|
||||
<string name="OnDeviceBackupsScreen__to_restore_a_backup">"Pentru a restaura un backup, instalează o copie nouă a Signal. Deschide aplicația și atinge Restaurează backup, apoi localizează fișierul de backup."</string>
|
||||
|
||||
@@ -2873,7 +2873,7 @@
|
||||
<!-- A clickable button to share your screen in a call -->
|
||||
<string name="CallOverflowPopupWindow__share_screen">Share screen</string>
|
||||
<!-- A clickable button to stop sharing your screen in a call -->
|
||||
<string name="CallOverflowPopupWindow__stop_screen_share">Stop sharing</string>
|
||||
<string name="CallOverflowPopupWindow__stop_screen_share">Остановить показ</string>
|
||||
<!-- A button to take you to a list of participants with raised hands -->
|
||||
<string name="CallOverflowPopupWindow__view">Просмотреть</string>
|
||||
|
||||
@@ -8612,13 +8612,13 @@
|
||||
<string name="UseNewOnDeviceBackups__not_now">Не сейчас</string>
|
||||
|
||||
<!-- Title of a megaphone shown to prompt the user to open Signal on their primary device -->
|
||||
<string name="InactivePrimary__title">Open Signal on your phone</string>
|
||||
<string name="InactivePrimary__title">Откройте Signal на своем телефоне</string>
|
||||
<!-- Body of a megaphone shown to prompt the user to open Signal on their primary device -->
|
||||
<string name="InactivePrimary__body">To keep your account active, open Signal on your primary device.</string>
|
||||
<string name="InactivePrimary__body">Чтобы ваша учётная запись оставалась активной, откройте приложение Signal на основном устройстве.</string>
|
||||
<!-- Button of a megaphone shown to prompt the user to open Signal on their primary device that will navigate to a support page -->
|
||||
<string name="InactivePrimary__learn_more">Learn more</string>
|
||||
<string name="InactivePrimary__learn_more">Узнать больше</string>
|
||||
<!-- Button of a megaphone shown to prompt the user to open Signal on their primary device that will snooze the megaphone -->
|
||||
<string name="InactivePrimary__got_it">Got it</string>
|
||||
<string name="InactivePrimary__got_it">Понятно</string>
|
||||
|
||||
<!-- Text describing how to restore a backup displayed on the on-device backups screen -->
|
||||
<string name="OnDeviceBackupsScreen__to_restore_a_backup">"Чтобы восстановить резервную копию, установите новую версию Signal. Откройте приложение и нажмите «Восстановить резервную копию», затем выберите папку резервной копии."</string>
|
||||
|
||||
@@ -2873,7 +2873,7 @@
|
||||
<!-- A clickable button to share your screen in a call -->
|
||||
<string name="CallOverflowPopupWindow__share_screen">Share screen</string>
|
||||
<!-- A clickable button to stop sharing your screen in a call -->
|
||||
<string name="CallOverflowPopupWindow__stop_screen_share">Stop sharing</string>
|
||||
<string name="CallOverflowPopupWindow__stop_screen_share">Prestať zdieľať</string>
|
||||
<!-- A button to take you to a list of participants with raised hands -->
|
||||
<string name="CallOverflowPopupWindow__view">Zobraziť</string>
|
||||
|
||||
@@ -8612,13 +8612,13 @@
|
||||
<string name="UseNewOnDeviceBackups__not_now">Teraz nie</string>
|
||||
|
||||
<!-- Title of a megaphone shown to prompt the user to open Signal on their primary device -->
|
||||
<string name="InactivePrimary__title">Open Signal on your phone</string>
|
||||
<string name="InactivePrimary__title">Otvorte Signal na svojom telefóne</string>
|
||||
<!-- Body of a megaphone shown to prompt the user to open Signal on their primary device -->
|
||||
<string name="InactivePrimary__body">To keep your account active, open Signal on your primary device.</string>
|
||||
<string name="InactivePrimary__body">Ak chcete, aby bol váš účet aktívny, otvorte Signal na svojom primárnom zariadení.</string>
|
||||
<!-- Button of a megaphone shown to prompt the user to open Signal on their primary device that will navigate to a support page -->
|
||||
<string name="InactivePrimary__learn_more">Learn more</string>
|
||||
<string name="InactivePrimary__learn_more">Zistiť viac</string>
|
||||
<!-- Button of a megaphone shown to prompt the user to open Signal on their primary device that will snooze the megaphone -->
|
||||
<string name="InactivePrimary__got_it">Got it</string>
|
||||
<string name="InactivePrimary__got_it">Rozumiem</string>
|
||||
|
||||
<!-- Text describing how to restore a backup displayed on the on-device backups screen -->
|
||||
<string name="OnDeviceBackupsScreen__to_restore_a_backup">"Pre obnovenie zálohy si nainštalujte novú kópiu Signalu. Otvorte aplikáciu a ťuknite na Obnoviť zálohu a potom vyhľadajte priečinok so zálohou."</string>
|
||||
|
||||
@@ -2873,7 +2873,7 @@
|
||||
<!-- A clickable button to share your screen in a call -->
|
||||
<string name="CallOverflowPopupWindow__share_screen">Share screen</string>
|
||||
<!-- A clickable button to stop sharing your screen in a call -->
|
||||
<string name="CallOverflowPopupWindow__stop_screen_share">Stop sharing</string>
|
||||
<string name="CallOverflowPopupWindow__stop_screen_share">Zaustavi deljenje zaslona</string>
|
||||
<!-- A button to take you to a list of participants with raised hands -->
|
||||
<string name="CallOverflowPopupWindow__view">Ogled</string>
|
||||
|
||||
@@ -8612,13 +8612,13 @@
|
||||
<string name="UseNewOnDeviceBackups__not_now">Ne zdaj</string>
|
||||
|
||||
<!-- Title of a megaphone shown to prompt the user to open Signal on their primary device -->
|
||||
<string name="InactivePrimary__title">Open Signal on your phone</string>
|
||||
<string name="InactivePrimary__title">Odprite Signal v svoji napravi</string>
|
||||
<!-- Body of a megaphone shown to prompt the user to open Signal on their primary device -->
|
||||
<string name="InactivePrimary__body">To keep your account active, open Signal on your primary device.</string>
|
||||
<!-- Button of a megaphone shown to prompt the user to open Signal on their primary device that will navigate to a support page -->
|
||||
<string name="InactivePrimary__learn_more">Learn more</string>
|
||||
<string name="InactivePrimary__learn_more">Preberite več</string>
|
||||
<!-- Button of a megaphone shown to prompt the user to open Signal on their primary device that will snooze the megaphone -->
|
||||
<string name="InactivePrimary__got_it">Got it</string>
|
||||
<string name="InactivePrimary__got_it">Razumem</string>
|
||||
|
||||
<!-- Text describing how to restore a backup displayed on the on-device backups screen -->
|
||||
<string name="OnDeviceBackupsScreen__to_restore_a_backup">"Za obnovo varnostne kopije morate najprej namestiti novo kopijo Signala. Nato odprite aplikacijo, tapnite »Obnovi varnostno kopijo« in poiščite mapo varnostne kopije."</string>
|
||||
|
||||
@@ -2705,7 +2705,7 @@
|
||||
<!-- A clickable button to share your screen in a call -->
|
||||
<string name="CallOverflowPopupWindow__share_screen">Share screen</string>
|
||||
<!-- A clickable button to stop sharing your screen in a call -->
|
||||
<string name="CallOverflowPopupWindow__stop_screen_share">Stop sharing</string>
|
||||
<string name="CallOverflowPopupWindow__stop_screen_share">Ndale ndarjen me të tjerë</string>
|
||||
<!-- A button to take you to a list of participants with raised hands -->
|
||||
<string name="CallOverflowPopupWindow__view">Shihni</string>
|
||||
|
||||
@@ -8244,13 +8244,13 @@
|
||||
<string name="UseNewOnDeviceBackups__not_now">Jo tani</string>
|
||||
|
||||
<!-- Title of a megaphone shown to prompt the user to open Signal on their primary device -->
|
||||
<string name="InactivePrimary__title">Open Signal on your phone</string>
|
||||
<string name="InactivePrimary__title">Hap Signal në telefonin tënd</string>
|
||||
<!-- Body of a megaphone shown to prompt the user to open Signal on their primary device -->
|
||||
<string name="InactivePrimary__body">To keep your account active, open Signal on your primary device.</string>
|
||||
<!-- Button of a megaphone shown to prompt the user to open Signal on their primary device that will navigate to a support page -->
|
||||
<string name="InactivePrimary__learn_more">Learn more</string>
|
||||
<string name="InactivePrimary__learn_more">Mëso më shumë</string>
|
||||
<!-- Button of a megaphone shown to prompt the user to open Signal on their primary device that will snooze the megaphone -->
|
||||
<string name="InactivePrimary__got_it">Got it</string>
|
||||
<string name="InactivePrimary__got_it">E kuptova</string>
|
||||
|
||||
<!-- Text describing how to restore a backup displayed on the on-device backups screen -->
|
||||
<string name="OnDeviceBackupsScreen__to_restore_a_backup">"Për të rikthyer kopjeruajtjen, instalo kopjen e re të Signal. Hap aplikacionin dhe kliko \"Rikthe kopjeruajtjen\", pastaj gjej dosjen e kopjeruajtjeve."</string>
|
||||
|
||||
@@ -2705,7 +2705,7 @@
|
||||
<!-- A clickable button to share your screen in a call -->
|
||||
<string name="CallOverflowPopupWindow__share_screen">Share screen</string>
|
||||
<!-- A clickable button to stop sharing your screen in a call -->
|
||||
<string name="CallOverflowPopupWindow__stop_screen_share">Stop sharing</string>
|
||||
<string name="CallOverflowPopupWindow__stop_screen_share">Прекини дељење екрана</string>
|
||||
<!-- A button to take you to a list of participants with raised hands -->
|
||||
<string name="CallOverflowPopupWindow__view">Више</string>
|
||||
|
||||
@@ -8244,13 +8244,13 @@
|
||||
<string name="UseNewOnDeviceBackups__not_now">Не сада</string>
|
||||
|
||||
<!-- Title of a megaphone shown to prompt the user to open Signal on their primary device -->
|
||||
<string name="InactivePrimary__title">Open Signal on your phone</string>
|
||||
<string name="InactivePrimary__title">Отворите Signal на телефону</string>
|
||||
<!-- Body of a megaphone shown to prompt the user to open Signal on their primary device -->
|
||||
<string name="InactivePrimary__body">To keep your account active, open Signal on your primary device.</string>
|
||||
<string name="InactivePrimary__body">Да би вам налог остао активан, отворите Signal на примарном уређају.</string>
|
||||
<!-- Button of a megaphone shown to prompt the user to open Signal on their primary device that will navigate to a support page -->
|
||||
<string name="InactivePrimary__learn_more">Learn more</string>
|
||||
<string name="InactivePrimary__learn_more">Сазнајте више</string>
|
||||
<!-- Button of a megaphone shown to prompt the user to open Signal on their primary device that will snooze the megaphone -->
|
||||
<string name="InactivePrimary__got_it">Got it</string>
|
||||
<string name="InactivePrimary__got_it">Разумем</string>
|
||||
|
||||
<!-- Text describing how to restore a backup displayed on the on-device backups screen -->
|
||||
<string name="OnDeviceBackupsScreen__to_restore_a_backup">"Да бисте вратили садржај из резервне копије, инсталирајте нову копију Signal-а. Отворите апликацију и додирните „Врати резервну копију“, а затим пронађите фолдер резервне копије."</string>
|
||||
|
||||
@@ -2705,7 +2705,7 @@
|
||||
<!-- A clickable button to share your screen in a call -->
|
||||
<string name="CallOverflowPopupWindow__share_screen">Share screen</string>
|
||||
<!-- A clickable button to stop sharing your screen in a call -->
|
||||
<string name="CallOverflowPopupWindow__stop_screen_share">Stop sharing</string>
|
||||
<string name="CallOverflowPopupWindow__stop_screen_share">Sluta dela</string>
|
||||
<!-- A button to take you to a list of participants with raised hands -->
|
||||
<string name="CallOverflowPopupWindow__view">Visa</string>
|
||||
|
||||
@@ -8244,13 +8244,13 @@
|
||||
<string name="UseNewOnDeviceBackups__not_now">Inte nu</string>
|
||||
|
||||
<!-- Title of a megaphone shown to prompt the user to open Signal on their primary device -->
|
||||
<string name="InactivePrimary__title">Open Signal on your phone</string>
|
||||
<string name="InactivePrimary__title">Öppna Signal på din telefon</string>
|
||||
<!-- Body of a megaphone shown to prompt the user to open Signal on their primary device -->
|
||||
<string name="InactivePrimary__body">To keep your account active, open Signal on your primary device.</string>
|
||||
<string name="InactivePrimary__body">Öppna Signal på din primära enhet för att hålla ditt konto aktivt.</string>
|
||||
<!-- Button of a megaphone shown to prompt the user to open Signal on their primary device that will navigate to a support page -->
|
||||
<string name="InactivePrimary__learn_more">Learn more</string>
|
||||
<string name="InactivePrimary__learn_more">Läs mer</string>
|
||||
<!-- Button of a megaphone shown to prompt the user to open Signal on their primary device that will snooze the megaphone -->
|
||||
<string name="InactivePrimary__got_it">Got it</string>
|
||||
<string name="InactivePrimary__got_it">Uppfattat</string>
|
||||
|
||||
<!-- Text describing how to restore a backup displayed on the on-device backups screen -->
|
||||
<string name="OnDeviceBackupsScreen__to_restore_a_backup">"Installera en ny kopia av Signal för att återställa en säkerhetskopia. Öppna appen och tryck på Återställ säkerhetskopia. Leta sedan upp säkerhetskopian."</string>
|
||||
|
||||
@@ -2705,7 +2705,7 @@
|
||||
<!-- A clickable button to share your screen in a call -->
|
||||
<string name="CallOverflowPopupWindow__share_screen">Share screen</string>
|
||||
<!-- A clickable button to stop sharing your screen in a call -->
|
||||
<string name="CallOverflowPopupWindow__stop_screen_share">Stop sharing</string>
|
||||
<string name="CallOverflowPopupWindow__stop_screen_share">Acha kushiriki</string>
|
||||
<!-- A button to take you to a list of participants with raised hands -->
|
||||
<string name="CallOverflowPopupWindow__view">Tazama</string>
|
||||
|
||||
@@ -8244,13 +8244,13 @@
|
||||
<string name="UseNewOnDeviceBackups__not_now">Sio sasa</string>
|
||||
|
||||
<!-- Title of a megaphone shown to prompt the user to open Signal on their primary device -->
|
||||
<string name="InactivePrimary__title">Open Signal on your phone</string>
|
||||
<string name="InactivePrimary__title">Fungua Signal kwenye simu yako</string>
|
||||
<!-- Body of a megaphone shown to prompt the user to open Signal on their primary device -->
|
||||
<string name="InactivePrimary__body">To keep your account active, open Signal on your primary device.</string>
|
||||
<!-- Button of a megaphone shown to prompt the user to open Signal on their primary device that will navigate to a support page -->
|
||||
<string name="InactivePrimary__learn_more">Learn more</string>
|
||||
<string name="InactivePrimary__learn_more">Jifunze zaidi</string>
|
||||
<!-- Button of a megaphone shown to prompt the user to open Signal on their primary device that will snooze the megaphone -->
|
||||
<string name="InactivePrimary__got_it">Got it</string>
|
||||
<string name="InactivePrimary__got_it">Nimeelewa</string>
|
||||
|
||||
<!-- Text describing how to restore a backup displayed on the on-device backups screen -->
|
||||
<string name="OnDeviceBackupsScreen__to_restore_a_backup">"Ili uweze kurejesha hifadhi nakala yako, weka nakala mpya ya Signal. Fungua programu na uguse Rejesha hifadhi nakala, kisha tafuta faili ya hifadhi nakala."</string>
|
||||
|
||||
@@ -2705,7 +2705,7 @@
|
||||
<!-- A clickable button to share your screen in a call -->
|
||||
<string name="CallOverflowPopupWindow__share_screen">Share screen</string>
|
||||
<!-- A clickable button to stop sharing your screen in a call -->
|
||||
<string name="CallOverflowPopupWindow__stop_screen_share">Stop sharing</string>
|
||||
<string name="CallOverflowPopupWindow__stop_screen_share">பகிர்வதை நிறுத்துங்கள்</string>
|
||||
<!-- A button to take you to a list of participants with raised hands -->
|
||||
<string name="CallOverflowPopupWindow__view">காண்க</string>
|
||||
|
||||
@@ -8244,13 +8244,13 @@
|
||||
<string name="UseNewOnDeviceBackups__not_now">இப்போது வேண்டாம்</string>
|
||||
|
||||
<!-- Title of a megaphone shown to prompt the user to open Signal on their primary device -->
|
||||
<string name="InactivePrimary__title">Open Signal on your phone</string>
|
||||
<string name="InactivePrimary__title">உங்கள் மொபைலில் சிக்னல்-ஐத் திறக்கவும்</string>
|
||||
<!-- Body of a megaphone shown to prompt the user to open Signal on their primary device -->
|
||||
<string name="InactivePrimary__body">To keep your account active, open Signal on your primary device.</string>
|
||||
<!-- Button of a megaphone shown to prompt the user to open Signal on their primary device that will navigate to a support page -->
|
||||
<string name="InactivePrimary__learn_more">Learn more</string>
|
||||
<string name="InactivePrimary__learn_more">மேலும் அறிக</string>
|
||||
<!-- Button of a megaphone shown to prompt the user to open Signal on their primary device that will snooze the megaphone -->
|
||||
<string name="InactivePrimary__got_it">Got it</string>
|
||||
<string name="InactivePrimary__got_it">அறிந்துகொண்டேன்</string>
|
||||
|
||||
<!-- Text describing how to restore a backup displayed on the on-device backups screen -->
|
||||
<string name="OnDeviceBackupsScreen__to_restore_a_backup">"காப்புப்பிரதியை மீட்டமைக்க, சிக்னலின் புதிய பிரதியை நிறுவவும். செயலியைத் திறந்து, காப்புப்பிரதியை மீட்டமை என்பதைத் தட்டி, பின்னர் காப்புப்பிரதி கோப்பைக் கண்டறியவும்."</string>
|
||||
|
||||
@@ -2705,7 +2705,7 @@
|
||||
<!-- A clickable button to share your screen in a call -->
|
||||
<string name="CallOverflowPopupWindow__share_screen">Share screen</string>
|
||||
<!-- A clickable button to stop sharing your screen in a call -->
|
||||
<string name="CallOverflowPopupWindow__stop_screen_share">Stop sharing</string>
|
||||
<string name="CallOverflowPopupWindow__stop_screen_share">భాగస్వామ్యం చేయడాన్ని ఆపివేయండి</string>
|
||||
<!-- A button to take you to a list of participants with raised hands -->
|
||||
<string name="CallOverflowPopupWindow__view">వీక్షణ</string>
|
||||
|
||||
@@ -8244,13 +8244,13 @@
|
||||
<string name="UseNewOnDeviceBackups__not_now">ఇప్పుడు కాదు</string>
|
||||
|
||||
<!-- Title of a megaphone shown to prompt the user to open Signal on their primary device -->
|
||||
<string name="InactivePrimary__title">Open Signal on your phone</string>
|
||||
<string name="InactivePrimary__title">మీ ఫోన్పై Signal ని ఓపెన్ చేయండి</string>
|
||||
<!-- Body of a megaphone shown to prompt the user to open Signal on their primary device -->
|
||||
<string name="InactivePrimary__body">To keep your account active, open Signal on your primary device.</string>
|
||||
<!-- Button of a megaphone shown to prompt the user to open Signal on their primary device that will navigate to a support page -->
|
||||
<string name="InactivePrimary__learn_more">Learn more</string>
|
||||
<string name="InactivePrimary__learn_more">మరింత తెలుసుకోండి</string>
|
||||
<!-- Button of a megaphone shown to prompt the user to open Signal on their primary device that will snooze the megaphone -->
|
||||
<string name="InactivePrimary__got_it">Got it</string>
|
||||
<string name="InactivePrimary__got_it">అర్థమైంది</string>
|
||||
|
||||
<!-- Text describing how to restore a backup displayed on the on-device backups screen -->
|
||||
<string name="OnDeviceBackupsScreen__to_restore_a_backup">"బ్యాకప్ను పునరుద్ధరించడానికి, Signal యొక్క క్రొత్త కాపీని ఇన్స్టాల్ చేయండి. యాప్ను తెరవండి మరియు బ్యాకప్ను పునరుద్ధరించండిని తట్టండి, ఆపై బ్యాకప్ ఫైల్ను కనుగొనండి."</string>
|
||||
|
||||
@@ -2621,7 +2621,7 @@
|
||||
<!-- A clickable button to share your screen in a call -->
|
||||
<string name="CallOverflowPopupWindow__share_screen">Share screen</string>
|
||||
<!-- A clickable button to stop sharing your screen in a call -->
|
||||
<string name="CallOverflowPopupWindow__stop_screen_share">Stop sharing</string>
|
||||
<string name="CallOverflowPopupWindow__stop_screen_share">หยุดการแบ่งปัน</string>
|
||||
<!-- A button to take you to a list of participants with raised hands -->
|
||||
<string name="CallOverflowPopupWindow__view">ดู</string>
|
||||
|
||||
@@ -8060,13 +8060,13 @@
|
||||
<string name="UseNewOnDeviceBackups__not_now">ไว้ทีหลัง</string>
|
||||
|
||||
<!-- Title of a megaphone shown to prompt the user to open Signal on their primary device -->
|
||||
<string name="InactivePrimary__title">Open Signal on your phone</string>
|
||||
<string name="InactivePrimary__title">เปิด Signal บนโทรศัพท์ของคุณ</string>
|
||||
<!-- Body of a megaphone shown to prompt the user to open Signal on their primary device -->
|
||||
<string name="InactivePrimary__body">To keep your account active, open Signal on your primary device.</string>
|
||||
<string name="InactivePrimary__body">เปิด Signal บนอุปกรณ์หลักของคุณเพื่อรักษาสถานะการใช้งานบัญชี</string>
|
||||
<!-- Button of a megaphone shown to prompt the user to open Signal on their primary device that will navigate to a support page -->
|
||||
<string name="InactivePrimary__learn_more">Learn more</string>
|
||||
<string name="InactivePrimary__learn_more">เรียนรู้เพิ่มเติม</string>
|
||||
<!-- Button of a megaphone shown to prompt the user to open Signal on their primary device that will snooze the megaphone -->
|
||||
<string name="InactivePrimary__got_it">Got it</string>
|
||||
<string name="InactivePrimary__got_it">เข้าใจแล้ว</string>
|
||||
|
||||
<!-- Text describing how to restore a backup displayed on the on-device backups screen -->
|
||||
<string name="OnDeviceBackupsScreen__to_restore_a_backup">"กู้คืนข้อมูลสำรองด้วยการติดตั้ง Signal ใหม่ โดยเปิดแอปแล้วแตะเลือกกู้คืนจากข้อมูลสำรอง จากนั้นจึงไปที่ไฟล์ข้อมูลสำรอง"</string>
|
||||
|
||||
@@ -8244,13 +8244,13 @@
|
||||
<string name="UseNewOnDeviceBackups__not_now">Hindi na muna</string>
|
||||
|
||||
<!-- Title of a megaphone shown to prompt the user to open Signal on their primary device -->
|
||||
<string name="InactivePrimary__title">Open Signal on your phone</string>
|
||||
<string name="InactivePrimary__title">I-open ang Signal sa iyong phone</string>
|
||||
<!-- Body of a megaphone shown to prompt the user to open Signal on their primary device -->
|
||||
<string name="InactivePrimary__body">To keep your account active, open Signal on your primary device.</string>
|
||||
<!-- Button of a megaphone shown to prompt the user to open Signal on their primary device that will navigate to a support page -->
|
||||
<string name="InactivePrimary__learn_more">Learn more</string>
|
||||
<string name="InactivePrimary__learn_more">Matuto pa</string>
|
||||
<!-- Button of a megaphone shown to prompt the user to open Signal on their primary device that will snooze the megaphone -->
|
||||
<string name="InactivePrimary__got_it">Got it</string>
|
||||
<string name="InactivePrimary__got_it">OK</string>
|
||||
|
||||
<!-- Text describing how to restore a backup displayed on the on-device backups screen -->
|
||||
<string name="OnDeviceBackupsScreen__to_restore_a_backup">"Para mag-restore ng backup, mag-install ng bagong kopya ng Signal. Buksan ang app at i-tap ang Restore backup, pagkatapos ay maghanap ng backup file."</string>
|
||||
|
||||
@@ -2705,7 +2705,7 @@
|
||||
<!-- A clickable button to share your screen in a call -->
|
||||
<string name="CallOverflowPopupWindow__share_screen">Share screen</string>
|
||||
<!-- A clickable button to stop sharing your screen in a call -->
|
||||
<string name="CallOverflowPopupWindow__stop_screen_share">Stop sharing</string>
|
||||
<string name="CallOverflowPopupWindow__stop_screen_share">Paylaşmayı durdur</string>
|
||||
<!-- A button to take you to a list of participants with raised hands -->
|
||||
<string name="CallOverflowPopupWindow__view">Görüntüle</string>
|
||||
|
||||
@@ -8244,13 +8244,13 @@
|
||||
<string name="UseNewOnDeviceBackups__not_now">Şimdi değil</string>
|
||||
|
||||
<!-- Title of a megaphone shown to prompt the user to open Signal on their primary device -->
|
||||
<string name="InactivePrimary__title">Open Signal on your phone</string>
|
||||
<string name="InactivePrimary__title">Signal\'ı telefonunda aç</string>
|
||||
<!-- Body of a megaphone shown to prompt the user to open Signal on their primary device -->
|
||||
<string name="InactivePrimary__body">To keep your account active, open Signal on your primary device.</string>
|
||||
<string name="InactivePrimary__body">Hesabını aktif tutmak için, ana cihazında Signal\'i aç.</string>
|
||||
<!-- Button of a megaphone shown to prompt the user to open Signal on their primary device that will navigate to a support page -->
|
||||
<string name="InactivePrimary__learn_more">Learn more</string>
|
||||
<string name="InactivePrimary__learn_more">Daha fazlasını öğren</string>
|
||||
<!-- Button of a megaphone shown to prompt the user to open Signal on their primary device that will snooze the megaphone -->
|
||||
<string name="InactivePrimary__got_it">Got it</string>
|
||||
<string name="InactivePrimary__got_it">Anladım</string>
|
||||
|
||||
<!-- Text describing how to restore a backup displayed on the on-device backups screen -->
|
||||
<string name="OnDeviceBackupsScreen__to_restore_a_backup">"Bir yedeklemeyi geri yüklemek için Signal\'ın yeni bir kopyasını yükle. Uygulamayı aç ve Yedeklemeyi geri yükle\'ye dokun, ardından bir yedekleme dosyası bul."</string>
|
||||
|
||||
@@ -2621,7 +2621,7 @@
|
||||
<!-- A clickable button to share your screen in a call -->
|
||||
<string name="CallOverflowPopupWindow__share_screen">Share screen</string>
|
||||
<!-- A clickable button to stop sharing your screen in a call -->
|
||||
<string name="CallOverflowPopupWindow__stop_screen_share">Stop sharing</string>
|
||||
<string name="CallOverflowPopupWindow__stop_screen_share">ئورتاقلىشىشنى توختىتىش</string>
|
||||
<!-- A button to take you to a list of participants with raised hands -->
|
||||
<string name="CallOverflowPopupWindow__view">كۆرسەت</string>
|
||||
|
||||
@@ -8060,13 +8060,13 @@
|
||||
<string name="UseNewOnDeviceBackups__not_now">ھازىر ئەمەس</string>
|
||||
|
||||
<!-- Title of a megaphone shown to prompt the user to open Signal on their primary device -->
|
||||
<string name="InactivePrimary__title">Open Signal on your phone</string>
|
||||
<string name="InactivePrimary__title">تېلېفونىڭىزدا Signal نى ئېچىڭ</string>
|
||||
<!-- Body of a megaphone shown to prompt the user to open Signal on their primary device -->
|
||||
<string name="InactivePrimary__body">To keep your account active, open Signal on your primary device.</string>
|
||||
<string name="InactivePrimary__body">ھېساباتىڭىزنى ئاكتىپ ھالەتتە ساقلاش ئۈچۈن ئاساسلىق ئۈسكۈنىڭىزدە Signalنى ئېچىڭ.</string>
|
||||
<!-- Button of a megaphone shown to prompt the user to open Signal on their primary device that will navigate to a support page -->
|
||||
<string name="InactivePrimary__learn_more">Learn more</string>
|
||||
<string name="InactivePrimary__learn_more">تەپسىلاتى</string>
|
||||
<!-- Button of a megaphone shown to prompt the user to open Signal on their primary device that will snooze the megaphone -->
|
||||
<string name="InactivePrimary__got_it">Got it</string>
|
||||
<string name="InactivePrimary__got_it">بىلدىم</string>
|
||||
|
||||
<!-- Text describing how to restore a backup displayed on the on-device backups screen -->
|
||||
<string name="OnDeviceBackupsScreen__to_restore_a_backup">"زاپاسلانمىنى ئەسلىگە كەلتۈرۈش ئۈچۈن، Signal نى قايتا قاچىلاڭ. ئاندىن ئەپنى ئېچىپ «زاپاسلانمىنى ئەسلىگە كەلتۈرۈش» نى چېكىڭ، ئاندىن زاپاسلانما ھۆججىتىنى كۆرسىتىپ بېرىڭ."</string>
|
||||
|
||||
@@ -2873,7 +2873,7 @@
|
||||
<!-- A clickable button to share your screen in a call -->
|
||||
<string name="CallOverflowPopupWindow__share_screen">Share screen</string>
|
||||
<!-- A clickable button to stop sharing your screen in a call -->
|
||||
<string name="CallOverflowPopupWindow__stop_screen_share">Stop sharing</string>
|
||||
<string name="CallOverflowPopupWindow__stop_screen_share">Зупинити демонстрацію</string>
|
||||
<!-- A button to take you to a list of participants with raised hands -->
|
||||
<string name="CallOverflowPopupWindow__view">Переглянути</string>
|
||||
|
||||
@@ -8612,13 +8612,13 @@
|
||||
<string name="UseNewOnDeviceBackups__not_now">Не зараз</string>
|
||||
|
||||
<!-- Title of a megaphone shown to prompt the user to open Signal on their primary device -->
|
||||
<string name="InactivePrimary__title">Open Signal on your phone</string>
|
||||
<string name="InactivePrimary__title">Відкрийте Signal на телефоні</string>
|
||||
<!-- Body of a megaphone shown to prompt the user to open Signal on their primary device -->
|
||||
<string name="InactivePrimary__body">To keep your account active, open Signal on your primary device.</string>
|
||||
<string name="InactivePrimary__body">Щоб зберегти акаунт, відкрийте Signal на своєму основному пристрої.</string>
|
||||
<!-- Button of a megaphone shown to prompt the user to open Signal on their primary device that will navigate to a support page -->
|
||||
<string name="InactivePrimary__learn_more">Learn more</string>
|
||||
<string name="InactivePrimary__learn_more">Докладніше</string>
|
||||
<!-- Button of a megaphone shown to prompt the user to open Signal on their primary device that will snooze the megaphone -->
|
||||
<string name="InactivePrimary__got_it">Got it</string>
|
||||
<string name="InactivePrimary__got_it">Зрозуміло</string>
|
||||
|
||||
<!-- Text describing how to restore a backup displayed on the on-device backups screen -->
|
||||
<string name="OnDeviceBackupsScreen__to_restore_a_backup">"Щоб відновити дані з резервної копії, встановіть застосунок Signal ще раз. Відкрийте його й натисніть «Відновити з резервної копії», потім виберіть збережений файл резервної копії."</string>
|
||||
|
||||
@@ -2705,7 +2705,7 @@
|
||||
<!-- A clickable button to share your screen in a call -->
|
||||
<string name="CallOverflowPopupWindow__share_screen">Share screen</string>
|
||||
<!-- A clickable button to stop sharing your screen in a call -->
|
||||
<string name="CallOverflowPopupWindow__stop_screen_share">Stop sharing</string>
|
||||
<string name="CallOverflowPopupWindow__stop_screen_share">اشتراک بند کرو</string>
|
||||
<!-- A button to take you to a list of participants with raised hands -->
|
||||
<string name="CallOverflowPopupWindow__view">دیکھیں</string>
|
||||
|
||||
@@ -8244,13 +8244,13 @@
|
||||
<string name="UseNewOnDeviceBackups__not_now">ابھی نہیں</string>
|
||||
|
||||
<!-- Title of a megaphone shown to prompt the user to open Signal on their primary device -->
|
||||
<string name="InactivePrimary__title">Open Signal on your phone</string>
|
||||
<string name="InactivePrimary__title">اپنے فون پر Signal کھولیں</string>
|
||||
<!-- Body of a megaphone shown to prompt the user to open Signal on their primary device -->
|
||||
<string name="InactivePrimary__body">To keep your account active, open Signal on your primary device.</string>
|
||||
<string name="InactivePrimary__body">اپنے اکاؤنٹ کو فعال رکھنے کے لیے، اپنی بنیادی ڈیوائس پر Signal کھولیں۔</string>
|
||||
<!-- Button of a megaphone shown to prompt the user to open Signal on their primary device that will navigate to a support page -->
|
||||
<string name="InactivePrimary__learn_more">Learn more</string>
|
||||
<string name="InactivePrimary__learn_more">مزید جانیں</string>
|
||||
<!-- Button of a megaphone shown to prompt the user to open Signal on their primary device that will snooze the megaphone -->
|
||||
<string name="InactivePrimary__got_it">Got it</string>
|
||||
<string name="InactivePrimary__got_it">سمجھ گیا</string>
|
||||
|
||||
<!-- Text describing how to restore a backup displayed on the on-device backups screen -->
|
||||
<string name="OnDeviceBackupsScreen__to_restore_a_backup">"بیک اپ کو ری اسٹور کرنے کے لیے، Signal کی نئی کاپی انسٹال کریں۔ ایپ کھولیں اور بیک اپ ری اسٹور کریں پر ٹیپ کریں، اس کے بعد بیک اپ فائل تلاش کریں۔"</string>
|
||||
|
||||
@@ -2621,7 +2621,7 @@
|
||||
<!-- A clickable button to share your screen in a call -->
|
||||
<string name="CallOverflowPopupWindow__share_screen">Share screen</string>
|
||||
<!-- A clickable button to stop sharing your screen in a call -->
|
||||
<string name="CallOverflowPopupWindow__stop_screen_share">Stop sharing</string>
|
||||
<string name="CallOverflowPopupWindow__stop_screen_share">Ngưng chia sẻ</string>
|
||||
<!-- A button to take you to a list of participants with raised hands -->
|
||||
<string name="CallOverflowPopupWindow__view">Xem</string>
|
||||
|
||||
@@ -8060,13 +8060,13 @@
|
||||
<string name="UseNewOnDeviceBackups__not_now">Để sau</string>
|
||||
|
||||
<!-- Title of a megaphone shown to prompt the user to open Signal on their primary device -->
|
||||
<string name="InactivePrimary__title">Open Signal on your phone</string>
|
||||
<string name="InactivePrimary__title">Mở Signal trên điện thoại của bạn</string>
|
||||
<!-- Body of a megaphone shown to prompt the user to open Signal on their primary device -->
|
||||
<string name="InactivePrimary__body">To keep your account active, open Signal on your primary device.</string>
|
||||
<string name="InactivePrimary__body">Để giữ cho tài khoản hoạt động, mở Signal trên thiết bị chính của bạn.</string>
|
||||
<!-- Button of a megaphone shown to prompt the user to open Signal on their primary device that will navigate to a support page -->
|
||||
<string name="InactivePrimary__learn_more">Learn more</string>
|
||||
<string name="InactivePrimary__learn_more">Tìm hiểu thêm</string>
|
||||
<!-- Button of a megaphone shown to prompt the user to open Signal on their primary device that will snooze the megaphone -->
|
||||
<string name="InactivePrimary__got_it">Got it</string>
|
||||
<string name="InactivePrimary__got_it">Đã hiểu</string>
|
||||
|
||||
<!-- Text describing how to restore a backup displayed on the on-device backups screen -->
|
||||
<string name="OnDeviceBackupsScreen__to_restore_a_backup">"Để khôi phục bản sao lưu, hãy cài đặt mới Signal. Mở ứng dụng và nhấn Khôi phục bản sao lưu, sau đó tìm tập tin sao lưu."</string>
|
||||
|
||||
@@ -2621,7 +2621,7 @@
|
||||
<!-- A clickable button to share your screen in a call -->
|
||||
<string name="CallOverflowPopupWindow__share_screen">Share screen</string>
|
||||
<!-- A clickable button to stop sharing your screen in a call -->
|
||||
<string name="CallOverflowPopupWindow__stop_screen_share">Stop sharing</string>
|
||||
<string name="CallOverflowPopupWindow__stop_screen_share">停止分享</string>
|
||||
<!-- A button to take you to a list of participants with raised hands -->
|
||||
<string name="CallOverflowPopupWindow__view">睇下</string>
|
||||
|
||||
@@ -8060,13 +8060,13 @@
|
||||
<string name="UseNewOnDeviceBackups__not_now">遲啲先啦</string>
|
||||
|
||||
<!-- Title of a megaphone shown to prompt the user to open Signal on their primary device -->
|
||||
<string name="InactivePrimary__title">Open Signal on your phone</string>
|
||||
<string name="InactivePrimary__title">喺手機度打開 Signal</string>
|
||||
<!-- Body of a megaphone shown to prompt the user to open Signal on their primary device -->
|
||||
<string name="InactivePrimary__body">To keep your account active, open Signal on your primary device.</string>
|
||||
<string name="InactivePrimary__body">要你個帳戶保持活躍,請喺主要裝置度打開 Signal。</string>
|
||||
<!-- Button of a megaphone shown to prompt the user to open Signal on their primary device that will navigate to a support page -->
|
||||
<string name="InactivePrimary__learn_more">Learn more</string>
|
||||
<string name="InactivePrimary__learn_more">了解詳情</string>
|
||||
<!-- Button of a megaphone shown to prompt the user to open Signal on their primary device that will snooze the megaphone -->
|
||||
<string name="InactivePrimary__got_it">Got it</string>
|
||||
<string name="InactivePrimary__got_it">明白</string>
|
||||
|
||||
<!-- Text describing how to restore a backup displayed on the on-device backups screen -->
|
||||
<string name="OnDeviceBackupsScreen__to_restore_a_backup">"要還原一個備份嘅話,請首先重新裝過 Signal。開返個 APP 出嚟,㩒一下「還原備份」,然後揀返嗰一個備份檔案。"</string>
|
||||
|
||||
@@ -2621,7 +2621,7 @@
|
||||
<!-- A clickable button to share your screen in a call -->
|
||||
<string name="CallOverflowPopupWindow__share_screen">Share screen</string>
|
||||
<!-- A clickable button to stop sharing your screen in a call -->
|
||||
<string name="CallOverflowPopupWindow__stop_screen_share">Stop sharing</string>
|
||||
<string name="CallOverflowPopupWindow__stop_screen_share">停止共享</string>
|
||||
<!-- A button to take you to a list of participants with raised hands -->
|
||||
<string name="CallOverflowPopupWindow__view">查看</string>
|
||||
|
||||
@@ -8060,13 +8060,13 @@
|
||||
<string name="UseNewOnDeviceBackups__not_now">稍后再说</string>
|
||||
|
||||
<!-- Title of a megaphone shown to prompt the user to open Signal on their primary device -->
|
||||
<string name="InactivePrimary__title">Open Signal on your phone</string>
|
||||
<string name="InactivePrimary__title">在您的手机上打开Signal</string>
|
||||
<!-- Body of a megaphone shown to prompt the user to open Signal on their primary device -->
|
||||
<string name="InactivePrimary__body">To keep your account active, open Signal on your primary device.</string>
|
||||
<string name="InactivePrimary__body">要使您的账户保持活跃状态,请在您的主设备上打开 Signal。</string>
|
||||
<!-- Button of a megaphone shown to prompt the user to open Signal on their primary device that will navigate to a support page -->
|
||||
<string name="InactivePrimary__learn_more">Learn more</string>
|
||||
<string name="InactivePrimary__learn_more">了解详情</string>
|
||||
<!-- Button of a megaphone shown to prompt the user to open Signal on their primary device that will snooze the megaphone -->
|
||||
<string name="InactivePrimary__got_it">Got it</string>
|
||||
<string name="InactivePrimary__got_it">知道了</string>
|
||||
|
||||
<!-- Text describing how to restore a backup displayed on the on-device backups screen -->
|
||||
<string name="OnDeviceBackupsScreen__to_restore_a_backup">"如要恢复备份,请安装新版 Signal。打开应用并点击“恢复备份”,然后找到备份文件夹。"</string>
|
||||
|
||||
@@ -2621,7 +2621,7 @@
|
||||
<!-- A clickable button to share your screen in a call -->
|
||||
<string name="CallOverflowPopupWindow__share_screen">Share screen</string>
|
||||
<!-- A clickable button to stop sharing your screen in a call -->
|
||||
<string name="CallOverflowPopupWindow__stop_screen_share">Stop sharing</string>
|
||||
<string name="CallOverflowPopupWindow__stop_screen_share">停止分享</string>
|
||||
<!-- A button to take you to a list of participants with raised hands -->
|
||||
<string name="CallOverflowPopupWindow__view">檢視</string>
|
||||
|
||||
@@ -8060,13 +8060,13 @@
|
||||
<string name="UseNewOnDeviceBackups__not_now">現在不要</string>
|
||||
|
||||
<!-- Title of a megaphone shown to prompt the user to open Signal on their primary device -->
|
||||
<string name="InactivePrimary__title">Open Signal on your phone</string>
|
||||
<string name="InactivePrimary__title">在手機上開啟 Signal</string>
|
||||
<!-- Body of a megaphone shown to prompt the user to open Signal on their primary device -->
|
||||
<string name="InactivePrimary__body">To keep your account active, open Signal on your primary device.</string>
|
||||
<string name="InactivePrimary__body">若要讓你的帳戶保持在活躍狀態,請在主要裝置上開啟 Signal。</string>
|
||||
<!-- Button of a megaphone shown to prompt the user to open Signal on their primary device that will navigate to a support page -->
|
||||
<string name="InactivePrimary__learn_more">Learn more</string>
|
||||
<string name="InactivePrimary__learn_more">了解更多</string>
|
||||
<!-- Button of a megaphone shown to prompt the user to open Signal on their primary device that will snooze the megaphone -->
|
||||
<string name="InactivePrimary__got_it">Got it</string>
|
||||
<string name="InactivePrimary__got_it">我知道了</string>
|
||||
|
||||
<!-- Text describing how to restore a backup displayed on the on-device backups screen -->
|
||||
<string name="OnDeviceBackupsScreen__to_restore_a_backup">"如要還原備份,請安裝全新的 Signal 。開啟應用程式並輕按「還原備份」,再找出備份檔案位置。"</string>
|
||||
|
||||
@@ -2621,7 +2621,7 @@
|
||||
<!-- A clickable button to share your screen in a call -->
|
||||
<string name="CallOverflowPopupWindow__share_screen">Share screen</string>
|
||||
<!-- A clickable button to stop sharing your screen in a call -->
|
||||
<string name="CallOverflowPopupWindow__stop_screen_share">Stop sharing</string>
|
||||
<string name="CallOverflowPopupWindow__stop_screen_share">停止分享</string>
|
||||
<!-- A button to take you to a list of participants with raised hands -->
|
||||
<string name="CallOverflowPopupWindow__view">檢視</string>
|
||||
|
||||
@@ -8060,13 +8060,13 @@
|
||||
<string name="UseNewOnDeviceBackups__not_now">現在不要</string>
|
||||
|
||||
<!-- Title of a megaphone shown to prompt the user to open Signal on their primary device -->
|
||||
<string name="InactivePrimary__title">Open Signal on your phone</string>
|
||||
<string name="InactivePrimary__title">在手機上開啟 Signal</string>
|
||||
<!-- Body of a megaphone shown to prompt the user to open Signal on their primary device -->
|
||||
<string name="InactivePrimary__body">To keep your account active, open Signal on your primary device.</string>
|
||||
<string name="InactivePrimary__body">若要讓你的帳戶保持在活躍狀態,請在主要裝置上開啟 Signal。</string>
|
||||
<!-- Button of a megaphone shown to prompt the user to open Signal on their primary device that will navigate to a support page -->
|
||||
<string name="InactivePrimary__learn_more">Learn more</string>
|
||||
<string name="InactivePrimary__learn_more">了解更多</string>
|
||||
<!-- Button of a megaphone shown to prompt the user to open Signal on their primary device that will snooze the megaphone -->
|
||||
<string name="InactivePrimary__got_it">Got it</string>
|
||||
<string name="InactivePrimary__got_it">我知道了</string>
|
||||
|
||||
<!-- Text describing how to restore a backup displayed on the on-device backups screen -->
|
||||
<string name="OnDeviceBackupsScreen__to_restore_a_backup">"如要還原備份,請安裝全新的 Signal 。開啟應用程式並輕按「還原備份」,再找出備份檔案位置。"</string>
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
service_ips=new String[]{"13.248.212.111","76.223.92.165"}
|
||||
storage_ips=new String[]{"142.250.72.19"}
|
||||
storage_ips=new String[]{"142.250.217.19"}
|
||||
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.9.45.98"}
|
||||
svr2_ips=new String[]{"20.119.62.85"}
|
||||
cdsi_ips=new String[]{"40.122.45.194"}
|
||||
|
||||
@@ -58,7 +58,7 @@
|
||||
<!-- Menu option to link this as a device -->
|
||||
<string name="RegistrationActivity_link_device">Koppel toestel</string>
|
||||
<!-- Clickable text that opens a corresponding URL -->
|
||||
<string name="RegistrationActivity_learn_more">Learn more</string>
|
||||
<string name="RegistrationActivity_learn_more">Vind meer uit</string>
|
||||
|
||||
<!-- CountryCodePickerScreen -->
|
||||
<!-- Title of the country code selection screen -->
|
||||
@@ -279,12 +279,12 @@
|
||||
<!-- Byte progress text, e.g. "1.2 MB of 10 MB (12.34%)" -->
|
||||
<string name="RemoteRestoreScreen__s_of_s_s">%1$s van %2$s (%3$s)</string>
|
||||
<!-- Shown when attempting to open a URL in the web browser, but a browser app cannot be found. -->
|
||||
<string name="LinkActions_error_no_browser_found">No web browser found.</string>
|
||||
<string name="LinkActions_error_no_browser_found">Geen webblaaier gevind nie.</string>
|
||||
|
||||
<!-- Title for screen when your account is locked -->
|
||||
<string name="AccountLockedScreen__account_locked">Account locked</string>
|
||||
<string name="AccountLockedScreen__account_locked">Rekening gesluit</string>
|
||||
<!-- Description for screen when account is locked -->
|
||||
<string name="AccountLockedScreen__your_account">Your account has been locked to protect your privacy and security. After %1$d days of inactivity in your account you\'ll be able to re-register this phone number without needing your PIN. All content will be deleted.</string>
|
||||
<string name="AccountLockedScreen__your_account">Jou rekening is gesluit om jou privaatheid en sekuriteit te beskerm. Ná %1$d dae van onaktiwiteit in jou rekening sal jy hierdie telefoonnommer kan herregistreer sonder dat jy jou PIN nodig het. Alle inhoud sal geskrap word.</string>
|
||||
|
||||
<!-- Step 1 to quick restore -->
|
||||
<string name="QuickRestoreQRScreen__step_1">On your old phone, open Signal</string>
|
||||
@@ -301,7 +301,7 @@
|
||||
<!-- Confirmation dialog when qr code is successfully scanned -->
|
||||
<string name="QuickRestoreQRScreen__scanned">QR code scanned</string>
|
||||
<!-- Button text to retry scanning the QR code -->
|
||||
<string name="QuickRestoreQRScreen__retry">Retry</string>
|
||||
<string name="QuickRestoreQRScreen__retry">Probeer weer</string>
|
||||
<!-- Failure text when a code could not be generated -->
|
||||
<string name="QuickRestoreQRScreen__failed">"Failed to generate QR code"</string>
|
||||
</resources>
|
||||
|
||||
@@ -58,7 +58,7 @@
|
||||
<!-- Menu option to link this as a device -->
|
||||
<string name="RegistrationActivity_link_device">ربط الجهاز</string>
|
||||
<!-- Clickable text that opens a corresponding URL -->
|
||||
<string name="RegistrationActivity_learn_more">Learn more</string>
|
||||
<string name="RegistrationActivity_learn_more">اعرف المزيد</string>
|
||||
|
||||
<!-- CountryCodePickerScreen -->
|
||||
<!-- Title of the country code selection screen -->
|
||||
@@ -279,12 +279,12 @@
|
||||
<!-- Byte progress text, e.g. "1.2 MB of 10 MB (12.34%)" -->
|
||||
<string name="RemoteRestoreScreen__s_of_s_s">%1$s من %2$s (%3$s)</string>
|
||||
<!-- Shown when attempting to open a URL in the web browser, but a browser app cannot be found. -->
|
||||
<string name="LinkActions_error_no_browser_found">No web browser found.</string>
|
||||
<string name="LinkActions_error_no_browser_found">لم يتم العثور على متصفح للإنترنت.</string>
|
||||
|
||||
<!-- Title for screen when your account is locked -->
|
||||
<string name="AccountLockedScreen__account_locked">Account locked</string>
|
||||
<string name="AccountLockedScreen__account_locked">تمَّ قفل الحساب</string>
|
||||
<!-- Description for screen when account is locked -->
|
||||
<string name="AccountLockedScreen__your_account">Your account has been locked to protect your privacy and security. After %1$d days of inactivity in your account you\'ll be able to re-register this phone number without needing your PIN. All content will be deleted.</string>
|
||||
<string name="AccountLockedScreen__your_account">تمَّ قفل حسابك لحماية خصوصيتك وأمانك. بعد %1$d يوم من خمول حسابك، سيكون بإمكانك إعادة التسجيل برقم هاتفك دون الحاجة إلى رقم التعريف الشخصي (PIN). سيتمُّ حذف جميع محتويات حسابك.</string>
|
||||
|
||||
<!-- Step 1 to quick restore -->
|
||||
<string name="QuickRestoreQRScreen__step_1">On your old phone, open Signal</string>
|
||||
@@ -301,7 +301,7 @@
|
||||
<!-- Confirmation dialog when qr code is successfully scanned -->
|
||||
<string name="QuickRestoreQRScreen__scanned">QR code scanned</string>
|
||||
<!-- Button text to retry scanning the QR code -->
|
||||
<string name="QuickRestoreQRScreen__retry">Retry</string>
|
||||
<string name="QuickRestoreQRScreen__retry">إعادة المُحاولة</string>
|
||||
<!-- Failure text when a code could not be generated -->
|
||||
<string name="QuickRestoreQRScreen__failed">"Failed to generate QR code"</string>
|
||||
</resources>
|
||||
|
||||
@@ -58,7 +58,7 @@
|
||||
<!-- Menu option to link this as a device -->
|
||||
<string name="RegistrationActivity_link_device">Cihazla əlaqə yarat</string>
|
||||
<!-- Clickable text that opens a corresponding URL -->
|
||||
<string name="RegistrationActivity_learn_more">Learn more</string>
|
||||
<string name="RegistrationActivity_learn_more">Daha ətraflı</string>
|
||||
|
||||
<!-- CountryCodePickerScreen -->
|
||||
<!-- Title of the country code selection screen -->
|
||||
@@ -279,12 +279,12 @@
|
||||
<!-- Byte progress text, e.g. "1.2 MB of 10 MB (12.34%)" -->
|
||||
<string name="RemoteRestoreScreen__s_of_s_s">%1$s / %2$s (%3$s)</string>
|
||||
<!-- Shown when attempting to open a URL in the web browser, but a browser app cannot be found. -->
|
||||
<string name="LinkActions_error_no_browser_found">No web browser found.</string>
|
||||
<string name="LinkActions_error_no_browser_found">Heç bir veb səyyah tapılmadı.</string>
|
||||
|
||||
<!-- Title for screen when your account is locked -->
|
||||
<string name="AccountLockedScreen__account_locked">Account locked</string>
|
||||
<string name="AccountLockedScreen__account_locked">Hesab kilidləndi</string>
|
||||
<!-- Description for screen when account is locked -->
|
||||
<string name="AccountLockedScreen__your_account">Your account has been locked to protect your privacy and security. After %1$d days of inactivity in your account you\'ll be able to re-register this phone number without needing your PIN. All content will be deleted.</string>
|
||||
<string name="AccountLockedScreen__your_account">Hesabınız məxfilik və təhlükəsizliyinizi qorumaq üçün kilidləndi. Hesabınızda fəaliyyətsiz %1$d gündən sonra bu telefon nömrəsi ilə PIN-inizə ehtiyac olmadan yenidən qeydiyyatdan keçə biləcəksiniz. Bütün məzmunlar silinəcək.</string>
|
||||
|
||||
<!-- Step 1 to quick restore -->
|
||||
<string name="QuickRestoreQRScreen__step_1">On your old phone, open Signal</string>
|
||||
@@ -301,7 +301,7 @@
|
||||
<!-- Confirmation dialog when qr code is successfully scanned -->
|
||||
<string name="QuickRestoreQRScreen__scanned">QR code scanned</string>
|
||||
<!-- Button text to retry scanning the QR code -->
|
||||
<string name="QuickRestoreQRScreen__retry">Retry</string>
|
||||
<string name="QuickRestoreQRScreen__retry">Yenidən sına</string>
|
||||
<!-- Failure text when a code could not be generated -->
|
||||
<string name="QuickRestoreQRScreen__failed">"Failed to generate QR code"</string>
|
||||
</resources>
|
||||
|
||||
@@ -58,7 +58,7 @@
|
||||
<!-- Menu option to link this as a device -->
|
||||
<string name="RegistrationActivity_link_device">Звязаць прыладу</string>
|
||||
<!-- Clickable text that opens a corresponding URL -->
|
||||
<string name="RegistrationActivity_learn_more">Learn more</string>
|
||||
<string name="RegistrationActivity_learn_more">Даведацца больш</string>
|
||||
|
||||
<!-- CountryCodePickerScreen -->
|
||||
<!-- Title of the country code selection screen -->
|
||||
@@ -279,12 +279,12 @@
|
||||
<!-- Byte progress text, e.g. "1.2 MB of 10 MB (12.34%)" -->
|
||||
<string name="RemoteRestoreScreen__s_of_s_s">%1$s з %2$s (%3$s)</string>
|
||||
<!-- Shown when attempting to open a URL in the web browser, but a browser app cannot be found. -->
|
||||
<string name="LinkActions_error_no_browser_found">No web browser found.</string>
|
||||
<string name="LinkActions_error_no_browser_found">Браўзер не знойдзены.</string>
|
||||
|
||||
<!-- Title for screen when your account is locked -->
|
||||
<string name="AccountLockedScreen__account_locked">Account locked</string>
|
||||
<string name="AccountLockedScreen__account_locked">Уліковы запіс заблакаваны</string>
|
||||
<!-- Description for screen when account is locked -->
|
||||
<string name="AccountLockedScreen__your_account">Your account has been locked to protect your privacy and security. After %1$d days of inactivity in your account you\'ll be able to re-register this phone number without needing your PIN. All content will be deleted.</string>
|
||||
<string name="AccountLockedScreen__your_account">Ваш уліковы запіс быў заблакаваны, каб абараніць вашу канфідэнцыйнасць і бяспеку. Пасля %1$d дзён бяздзейнасці ў сваім уліковым запісе вы зможаце паўторна зарэгістраваць гэты нумар тэлефона без уводу PIN-кода. Увесь кантэнт будзе выдалены.</string>
|
||||
|
||||
<!-- Step 1 to quick restore -->
|
||||
<string name="QuickRestoreQRScreen__step_1">On your old phone, open Signal</string>
|
||||
@@ -301,7 +301,7 @@
|
||||
<!-- Confirmation dialog when qr code is successfully scanned -->
|
||||
<string name="QuickRestoreQRScreen__scanned">QR code scanned</string>
|
||||
<!-- Button text to retry scanning the QR code -->
|
||||
<string name="QuickRestoreQRScreen__retry">Retry</string>
|
||||
<string name="QuickRestoreQRScreen__retry">Паспрабаваць зноў</string>
|
||||
<!-- Failure text when a code could not be generated -->
|
||||
<string name="QuickRestoreQRScreen__failed">"Failed to generate QR code"</string>
|
||||
</resources>
|
||||
|
||||
@@ -58,7 +58,7 @@
|
||||
<!-- Menu option to link this as a device -->
|
||||
<string name="RegistrationActivity_link_device">Свързване на устройството</string>
|
||||
<!-- Clickable text that opens a corresponding URL -->
|
||||
<string name="RegistrationActivity_learn_more">Learn more</string>
|
||||
<string name="RegistrationActivity_learn_more">Научете повече</string>
|
||||
|
||||
<!-- CountryCodePickerScreen -->
|
||||
<!-- Title of the country code selection screen -->
|
||||
@@ -279,12 +279,12 @@
|
||||
<!-- Byte progress text, e.g. "1.2 MB of 10 MB (12.34%)" -->
|
||||
<string name="RemoteRestoreScreen__s_of_s_s">%1$s от %2$s (%3$s)</string>
|
||||
<!-- Shown when attempting to open a URL in the web browser, but a browser app cannot be found. -->
|
||||
<string name="LinkActions_error_no_browser_found">No web browser found.</string>
|
||||
<string name="LinkActions_error_no_browser_found">Не е открит уеб браузър.</string>
|
||||
|
||||
<!-- Title for screen when your account is locked -->
|
||||
<string name="AccountLockedScreen__account_locked">Account locked</string>
|
||||
<string name="AccountLockedScreen__account_locked">Заключен профил</string>
|
||||
<!-- Description for screen when account is locked -->
|
||||
<string name="AccountLockedScreen__your_account">Your account has been locked to protect your privacy and security. After %1$d days of inactivity in your account you\'ll be able to re-register this phone number without needing your PIN. All content will be deleted.</string>
|
||||
<string name="AccountLockedScreen__your_account">Вашият акаунт е заключен, за да защити вашата поверителност и сигурност. След %1$d дни на неактивност във вашия акаунт ще можете да пререгистрирате този телефонен номер, без да се нуждаете от своя ПИН. Цялото съдържание ще бъде изтрито.</string>
|
||||
|
||||
<!-- Step 1 to quick restore -->
|
||||
<string name="QuickRestoreQRScreen__step_1">On your old phone, open Signal</string>
|
||||
@@ -301,7 +301,7 @@
|
||||
<!-- Confirmation dialog when qr code is successfully scanned -->
|
||||
<string name="QuickRestoreQRScreen__scanned">QR code scanned</string>
|
||||
<!-- Button text to retry scanning the QR code -->
|
||||
<string name="QuickRestoreQRScreen__retry">Retry</string>
|
||||
<string name="QuickRestoreQRScreen__retry">Опитайте отново</string>
|
||||
<!-- Failure text when a code could not be generated -->
|
||||
<string name="QuickRestoreQRScreen__failed">"Failed to generate QR code"</string>
|
||||
</resources>
|
||||
|
||||
@@ -58,7 +58,7 @@
|
||||
<!-- Menu option to link this as a device -->
|
||||
<string name="RegistrationActivity_link_device">ডিভাইস সংযুক্ত করুন</string>
|
||||
<!-- Clickable text that opens a corresponding URL -->
|
||||
<string name="RegistrationActivity_learn_more">Learn more</string>
|
||||
<string name="RegistrationActivity_learn_more">আরো জানুন</string>
|
||||
|
||||
<!-- CountryCodePickerScreen -->
|
||||
<!-- Title of the country code selection screen -->
|
||||
@@ -279,12 +279,12 @@
|
||||
<!-- Byte progress text, e.g. "1.2 MB of 10 MB (12.34%)" -->
|
||||
<string name="RemoteRestoreScreen__s_of_s_s">%1$s এর %2$s (%3$s)</string>
|
||||
<!-- Shown when attempting to open a URL in the web browser, but a browser app cannot be found. -->
|
||||
<string name="LinkActions_error_no_browser_found">No web browser found.</string>
|
||||
<string name="LinkActions_error_no_browser_found">কোন ওয়েব ব্রাউজার পাওয়া যায়নি।</string>
|
||||
|
||||
<!-- Title for screen when your account is locked -->
|
||||
<string name="AccountLockedScreen__account_locked">Account locked</string>
|
||||
<string name="AccountLockedScreen__account_locked">অ্যাকাউন্ট লক্ করা হয়েছে</string>
|
||||
<!-- Description for screen when account is locked -->
|
||||
<string name="AccountLockedScreen__your_account">Your account has been locked to protect your privacy and security. After %1$d days of inactivity in your account you\'ll be able to re-register this phone number without needing your PIN. All content will be deleted.</string>
|
||||
<string name="AccountLockedScreen__your_account">আপনার গোপনীয়তা এবং সুরক্ষা নিশ্চিত করতে আপনার অ্যাকাউন্টটি লক করা হয়েছে। আপনার অ্যাকাউন্টটি %1$d দিন নিষ্ক্রিয় থাকার পরে আপনি আপনার পিনের প্রয়োজন ছাড়াই এই ফোন নম্বরটি পুনরায় নিবন্ধন করতে সক্ষম হবেন। সকল বিষয়বস্তু মুছে ফেলা হবে।</string>
|
||||
|
||||
<!-- Step 1 to quick restore -->
|
||||
<string name="QuickRestoreQRScreen__step_1">On your old phone, open Signal</string>
|
||||
@@ -301,7 +301,7 @@
|
||||
<!-- Confirmation dialog when qr code is successfully scanned -->
|
||||
<string name="QuickRestoreQRScreen__scanned">QR code scanned</string>
|
||||
<!-- Button text to retry scanning the QR code -->
|
||||
<string name="QuickRestoreQRScreen__retry">Retry</string>
|
||||
<string name="QuickRestoreQRScreen__retry">পুনরায় চেষ্টা করুন</string>
|
||||
<!-- Failure text when a code could not be generated -->
|
||||
<string name="QuickRestoreQRScreen__failed">"Failed to generate QR code"</string>
|
||||
</resources>
|
||||
|
||||
@@ -58,7 +58,7 @@
|
||||
<!-- Menu option to link this as a device -->
|
||||
<string name="RegistrationActivity_link_device">Uveži uređaj</string>
|
||||
<!-- Clickable text that opens a corresponding URL -->
|
||||
<string name="RegistrationActivity_learn_more">Learn more</string>
|
||||
<string name="RegistrationActivity_learn_more">Saznaj više</string>
|
||||
|
||||
<!-- CountryCodePickerScreen -->
|
||||
<!-- Title of the country code selection screen -->
|
||||
@@ -279,12 +279,12 @@
|
||||
<!-- Byte progress text, e.g. "1.2 MB of 10 MB (12.34%)" -->
|
||||
<string name="RemoteRestoreScreen__s_of_s_s">%1$s od %2$s (%3$s)</string>
|
||||
<!-- Shown when attempting to open a URL in the web browser, but a browser app cannot be found. -->
|
||||
<string name="LinkActions_error_no_browser_found">No web browser found.</string>
|
||||
<string name="LinkActions_error_no_browser_found">Nije pronađen internet-preglednik.</string>
|
||||
|
||||
<!-- Title for screen when your account is locked -->
|
||||
<string name="AccountLockedScreen__account_locked">Account locked</string>
|
||||
<string name="AccountLockedScreen__account_locked">Račun je zaključan</string>
|
||||
<!-- Description for screen when account is locked -->
|
||||
<string name="AccountLockedScreen__your_account">Your account has been locked to protect your privacy and security. After %1$d days of inactivity in your account you\'ll be able to re-register this phone number without needing your PIN. All content will be deleted.</string>
|
||||
<string name="AccountLockedScreen__your_account">Vaš je račun zaključan kako bi se zaštitila Vaša privatnost i sigurnost. Nakon %1$d dana neaktivnosti računa moći ćete se ponovo registrovati pomoću ovoga broja telefona a bez PIN-a. Sav raniji sadržaj računa bit će izbrisan.</string>
|
||||
|
||||
<!-- Step 1 to quick restore -->
|
||||
<string name="QuickRestoreQRScreen__step_1">On your old phone, open Signal</string>
|
||||
@@ -301,7 +301,7 @@
|
||||
<!-- Confirmation dialog when qr code is successfully scanned -->
|
||||
<string name="QuickRestoreQRScreen__scanned">QR code scanned</string>
|
||||
<!-- Button text to retry scanning the QR code -->
|
||||
<string name="QuickRestoreQRScreen__retry">Retry</string>
|
||||
<string name="QuickRestoreQRScreen__retry">Pokušaj</string>
|
||||
<!-- Failure text when a code could not be generated -->
|
||||
<string name="QuickRestoreQRScreen__failed">"Failed to generate QR code"</string>
|
||||
</resources>
|
||||
|
||||
@@ -58,7 +58,7 @@
|
||||
<!-- Menu option to link this as a device -->
|
||||
<string name="RegistrationActivity_link_device">Enllaça un dispositiu</string>
|
||||
<!-- Clickable text that opens a corresponding URL -->
|
||||
<string name="RegistrationActivity_learn_more">Learn more</string>
|
||||
<string name="RegistrationActivity_learn_more">Més informació</string>
|
||||
|
||||
<!-- CountryCodePickerScreen -->
|
||||
<!-- Title of the country code selection screen -->
|
||||
@@ -279,12 +279,12 @@
|
||||
<!-- Byte progress text, e.g. "1.2 MB of 10 MB (12.34%)" -->
|
||||
<string name="RemoteRestoreScreen__s_of_s_s">%1$s de %2$s (%3$s)</string>
|
||||
<!-- Shown when attempting to open a URL in the web browser, but a browser app cannot be found. -->
|
||||
<string name="LinkActions_error_no_browser_found">No web browser found.</string>
|
||||
<string name="LinkActions_error_no_browser_found">No s\'ha trobat cap navegador web.</string>
|
||||
|
||||
<!-- Title for screen when your account is locked -->
|
||||
<string name="AccountLockedScreen__account_locked">Account locked</string>
|
||||
<string name="AccountLockedScreen__account_locked">Compte blocat</string>
|
||||
<!-- Description for screen when account is locked -->
|
||||
<string name="AccountLockedScreen__your_account">Your account has been locked to protect your privacy and security. After %1$d days of inactivity in your account you\'ll be able to re-register this phone number without needing your PIN. All content will be deleted.</string>
|
||||
<string name="AccountLockedScreen__your_account">Hem blocat el compte per protegir la vostra privadesa i seguretat. Al cap de %1$d dies d’inactivitat, podreu tornar a registrar aquest número de telèfon sense necessitar el PIN. Se n\'esborrarà tot el contingut.</string>
|
||||
|
||||
<!-- Step 1 to quick restore -->
|
||||
<string name="QuickRestoreQRScreen__step_1">On your old phone, open Signal</string>
|
||||
@@ -301,7 +301,7 @@
|
||||
<!-- Confirmation dialog when qr code is successfully scanned -->
|
||||
<string name="QuickRestoreQRScreen__scanned">QR code scanned</string>
|
||||
<!-- Button text to retry scanning the QR code -->
|
||||
<string name="QuickRestoreQRScreen__retry">Retry</string>
|
||||
<string name="QuickRestoreQRScreen__retry">Torna a provar-ho</string>
|
||||
<!-- Failure text when a code could not be generated -->
|
||||
<string name="QuickRestoreQRScreen__failed">"Failed to generate QR code"</string>
|
||||
</resources>
|
||||
|
||||
@@ -58,7 +58,7 @@
|
||||
<!-- Menu option to link this as a device -->
|
||||
<string name="RegistrationActivity_link_device">Propojit zařízení</string>
|
||||
<!-- Clickable text that opens a corresponding URL -->
|
||||
<string name="RegistrationActivity_learn_more">Learn more</string>
|
||||
<string name="RegistrationActivity_learn_more">Zjistit více</string>
|
||||
|
||||
<!-- CountryCodePickerScreen -->
|
||||
<!-- Title of the country code selection screen -->
|
||||
@@ -279,12 +279,12 @@
|
||||
<!-- Byte progress text, e.g. "1.2 MB of 10 MB (12.34%)" -->
|
||||
<string name="RemoteRestoreScreen__s_of_s_s">%1$s z %2$s (%3$s)</string>
|
||||
<!-- Shown when attempting to open a URL in the web browser, but a browser app cannot be found. -->
|
||||
<string name="LinkActions_error_no_browser_found">No web browser found.</string>
|
||||
<string name="LinkActions_error_no_browser_found">Nebyl nalezen žádný webový prohlížeč.</string>
|
||||
|
||||
<!-- Title for screen when your account is locked -->
|
||||
<string name="AccountLockedScreen__account_locked">Account locked</string>
|
||||
<string name="AccountLockedScreen__account_locked">Účet uzamčen</string>
|
||||
<!-- Description for screen when account is locked -->
|
||||
<string name="AccountLockedScreen__your_account">Your account has been locked to protect your privacy and security. After %1$d days of inactivity in your account you\'ll be able to re-register this phone number without needing your PIN. All content will be deleted.</string>
|
||||
<string name="AccountLockedScreen__your_account">Váš účet byl zablokován z důvodu ochrany vašeho soukromí a bezpečnosti. Po %1$d dnech nečinnosti na vašem účtu budete moci toto telefonní číslo znovu zaregistrovat, aniž byste potřebovali svůj PIN. Veškerý obsah bude smazán.</string>
|
||||
|
||||
<!-- Step 1 to quick restore -->
|
||||
<string name="QuickRestoreQRScreen__step_1">On your old phone, open Signal</string>
|
||||
@@ -301,7 +301,7 @@
|
||||
<!-- Confirmation dialog when qr code is successfully scanned -->
|
||||
<string name="QuickRestoreQRScreen__scanned">QR code scanned</string>
|
||||
<!-- Button text to retry scanning the QR code -->
|
||||
<string name="QuickRestoreQRScreen__retry">Retry</string>
|
||||
<string name="QuickRestoreQRScreen__retry">Zkusit znovu</string>
|
||||
<!-- Failure text when a code could not be generated -->
|
||||
<string name="QuickRestoreQRScreen__failed">"Failed to generate QR code"</string>
|
||||
</resources>
|
||||
|
||||
@@ -58,7 +58,7 @@
|
||||
<!-- Menu option to link this as a device -->
|
||||
<string name="RegistrationActivity_link_device">Forbind enhed</string>
|
||||
<!-- Clickable text that opens a corresponding URL -->
|
||||
<string name="RegistrationActivity_learn_more">Learn more</string>
|
||||
<string name="RegistrationActivity_learn_more">Få mere at vide</string>
|
||||
|
||||
<!-- CountryCodePickerScreen -->
|
||||
<!-- Title of the country code selection screen -->
|
||||
@@ -279,12 +279,12 @@
|
||||
<!-- Byte progress text, e.g. "1.2 MB of 10 MB (12.34%)" -->
|
||||
<string name="RemoteRestoreScreen__s_of_s_s">%1$s af %2$s (%3$s)</string>
|
||||
<!-- Shown when attempting to open a URL in the web browser, but a browser app cannot be found. -->
|
||||
<string name="LinkActions_error_no_browser_found">No web browser found.</string>
|
||||
<string name="LinkActions_error_no_browser_found">Ingen webbrowser fundet.</string>
|
||||
|
||||
<!-- Title for screen when your account is locked -->
|
||||
<string name="AccountLockedScreen__account_locked">Account locked</string>
|
||||
<string name="AccountLockedScreen__account_locked">Konto låst</string>
|
||||
<!-- Description for screen when account is locked -->
|
||||
<string name="AccountLockedScreen__your_account">Your account has been locked to protect your privacy and security. After %1$d days of inactivity in your account you\'ll be able to re-register this phone number without needing your PIN. All content will be deleted.</string>
|
||||
<string name="AccountLockedScreen__your_account">Din konto er blevet låst for at beskytte din konto og privatliv. Efter %1$d dages inaktivitet på din konto, vil det igen blive muligt at tilmelde dette mobilnummer uden pinkode. Alt indhold vil blive slettet.</string>
|
||||
|
||||
<!-- Step 1 to quick restore -->
|
||||
<string name="QuickRestoreQRScreen__step_1">On your old phone, open Signal</string>
|
||||
@@ -301,7 +301,7 @@
|
||||
<!-- Confirmation dialog when qr code is successfully scanned -->
|
||||
<string name="QuickRestoreQRScreen__scanned">QR code scanned</string>
|
||||
<!-- Button text to retry scanning the QR code -->
|
||||
<string name="QuickRestoreQRScreen__retry">Retry</string>
|
||||
<string name="QuickRestoreQRScreen__retry">Prøv igen</string>
|
||||
<!-- Failure text when a code could not be generated -->
|
||||
<string name="QuickRestoreQRScreen__failed">"Failed to generate QR code"</string>
|
||||
</resources>
|
||||
|
||||
@@ -58,7 +58,7 @@
|
||||
<!-- Menu option to link this as a device -->
|
||||
<string name="RegistrationActivity_link_device">Gerät koppeln</string>
|
||||
<!-- Clickable text that opens a corresponding URL -->
|
||||
<string name="RegistrationActivity_learn_more">Learn more</string>
|
||||
<string name="RegistrationActivity_learn_more">Mehr erfahren</string>
|
||||
|
||||
<!-- CountryCodePickerScreen -->
|
||||
<!-- Title of the country code selection screen -->
|
||||
@@ -279,12 +279,12 @@
|
||||
<!-- Byte progress text, e.g. "1.2 MB of 10 MB (12.34%)" -->
|
||||
<string name="RemoteRestoreScreen__s_of_s_s">%1$s von %2$s (%3$s)</string>
|
||||
<!-- Shown when attempting to open a URL in the web browser, but a browser app cannot be found. -->
|
||||
<string name="LinkActions_error_no_browser_found">No web browser found.</string>
|
||||
<string name="LinkActions_error_no_browser_found">Kein Webbrowser gefunden.</string>
|
||||
|
||||
<!-- Title for screen when your account is locked -->
|
||||
<string name="AccountLockedScreen__account_locked">Account locked</string>
|
||||
<string name="AccountLockedScreen__account_locked">Konto gesperrt</string>
|
||||
<!-- Description for screen when account is locked -->
|
||||
<string name="AccountLockedScreen__your_account">Your account has been locked to protect your privacy and security. After %1$d days of inactivity in your account you\'ll be able to re-register this phone number without needing your PIN. All content will be deleted.</string>
|
||||
<string name="AccountLockedScreen__your_account">Dein Konto wurde gesperrt, um deine Privatsphäre und Sicherheit zu schützen. Nach Ablauf von %1$d Tagen ohne Kontoaktivität kannst du diese Telefonnummer ohne PIN neu registrieren. Alle Inhalte werden dabei gelöscht.</string>
|
||||
|
||||
<!-- Step 1 to quick restore -->
|
||||
<string name="QuickRestoreQRScreen__step_1">On your old phone, open Signal</string>
|
||||
@@ -301,7 +301,7 @@
|
||||
<!-- Confirmation dialog when qr code is successfully scanned -->
|
||||
<string name="QuickRestoreQRScreen__scanned">QR code scanned</string>
|
||||
<!-- Button text to retry scanning the QR code -->
|
||||
<string name="QuickRestoreQRScreen__retry">Retry</string>
|
||||
<string name="QuickRestoreQRScreen__retry">Erneut versuchen</string>
|
||||
<!-- Failure text when a code could not be generated -->
|
||||
<string name="QuickRestoreQRScreen__failed">"Failed to generate QR code"</string>
|
||||
</resources>
|
||||
|
||||
@@ -58,7 +58,7 @@
|
||||
<!-- Menu option to link this as a device -->
|
||||
<string name="RegistrationActivity_link_device">Σύνδεση συσκευής</string>
|
||||
<!-- Clickable text that opens a corresponding URL -->
|
||||
<string name="RegistrationActivity_learn_more">Learn more</string>
|
||||
<string name="RegistrationActivity_learn_more">Μάθε περισσότερα</string>
|
||||
|
||||
<!-- CountryCodePickerScreen -->
|
||||
<!-- Title of the country code selection screen -->
|
||||
@@ -279,12 +279,12 @@
|
||||
<!-- Byte progress text, e.g. "1.2 MB of 10 MB (12.34%)" -->
|
||||
<string name="RemoteRestoreScreen__s_of_s_s">%1$s από %2$s (%3$s)</string>
|
||||
<!-- Shown when attempting to open a URL in the web browser, but a browser app cannot be found. -->
|
||||
<string name="LinkActions_error_no_browser_found">No web browser found.</string>
|
||||
<string name="LinkActions_error_no_browser_found">Δεν βρέθηκε περιηγητής.</string>
|
||||
|
||||
<!-- Title for screen when your account is locked -->
|
||||
<string name="AccountLockedScreen__account_locked">Account locked</string>
|
||||
<string name="AccountLockedScreen__account_locked">Κλειδωμένος λογαριασμός</string>
|
||||
<!-- Description for screen when account is locked -->
|
||||
<string name="AccountLockedScreen__your_account">Your account has been locked to protect your privacy and security. After %1$d days of inactivity in your account you\'ll be able to re-register this phone number without needing your PIN. All content will be deleted.</string>
|
||||
<string name="AccountLockedScreen__your_account">Ο λογαριασμός σου έχει κλειδωθεί για να προστατεύσουμε το απόρρητο και την ασφάλειά σου. Μετά από %1$d ημέρες αδράνειας του λογαριασμού σου, θα μπορείς να επανεγγράψεις αυτό τον αριθμό τηλεφώνου χωρίς να χρειάζεται το PIN σου. Όλα τα περιεχόμενα θα διαγραφούν.</string>
|
||||
|
||||
<!-- Step 1 to quick restore -->
|
||||
<string name="QuickRestoreQRScreen__step_1">On your old phone, open Signal</string>
|
||||
@@ -301,7 +301,7 @@
|
||||
<!-- Confirmation dialog when qr code is successfully scanned -->
|
||||
<string name="QuickRestoreQRScreen__scanned">QR code scanned</string>
|
||||
<!-- Button text to retry scanning the QR code -->
|
||||
<string name="QuickRestoreQRScreen__retry">Retry</string>
|
||||
<string name="QuickRestoreQRScreen__retry">Επανάληψη</string>
|
||||
<!-- Failure text when a code could not be generated -->
|
||||
<string name="QuickRestoreQRScreen__failed">"Failed to generate QR code"</string>
|
||||
</resources>
|
||||
|
||||
@@ -58,7 +58,7 @@
|
||||
<!-- Menu option to link this as a device -->
|
||||
<string name="RegistrationActivity_link_device">Vincular dispositivo</string>
|
||||
<!-- Clickable text that opens a corresponding URL -->
|
||||
<string name="RegistrationActivity_learn_more">Learn more</string>
|
||||
<string name="RegistrationActivity_learn_more">Más información</string>
|
||||
|
||||
<!-- CountryCodePickerScreen -->
|
||||
<!-- Title of the country code selection screen -->
|
||||
@@ -279,12 +279,12 @@
|
||||
<!-- Byte progress text, e.g. "1.2 MB of 10 MB (12.34%)" -->
|
||||
<string name="RemoteRestoreScreen__s_of_s_s">%1$s de %2$s (%3$s)</string>
|
||||
<!-- Shown when attempting to open a URL in the web browser, but a browser app cannot be found. -->
|
||||
<string name="LinkActions_error_no_browser_found">No web browser found.</string>
|
||||
<string name="LinkActions_error_no_browser_found">No se ha encontrado un navegador web.</string>
|
||||
|
||||
<!-- Title for screen when your account is locked -->
|
||||
<string name="AccountLockedScreen__account_locked">Account locked</string>
|
||||
<string name="AccountLockedScreen__account_locked">Cuenta bloqueada</string>
|
||||
<!-- Description for screen when account is locked -->
|
||||
<string name="AccountLockedScreen__your_account">Your account has been locked to protect your privacy and security. After %1$d days of inactivity in your account you\'ll be able to re-register this phone number without needing your PIN. All content will be deleted.</string>
|
||||
<string name="AccountLockedScreen__your_account">Se ha bloqueado tu cuenta para proteger tu privacidad y seguridad. Después de %1$d días con tu cuenta inactiva, podrás volver a registrarte con este número de teléfono sin necesidad de introducir tu PIN. Se eliminará todo tu contenido.</string>
|
||||
|
||||
<!-- Step 1 to quick restore -->
|
||||
<string name="QuickRestoreQRScreen__step_1">On your old phone, open Signal</string>
|
||||
@@ -301,7 +301,7 @@
|
||||
<!-- Confirmation dialog when qr code is successfully scanned -->
|
||||
<string name="QuickRestoreQRScreen__scanned">QR code scanned</string>
|
||||
<!-- Button text to retry scanning the QR code -->
|
||||
<string name="QuickRestoreQRScreen__retry">Retry</string>
|
||||
<string name="QuickRestoreQRScreen__retry">Reintentar</string>
|
||||
<!-- Failure text when a code could not be generated -->
|
||||
<string name="QuickRestoreQRScreen__failed">"Failed to generate QR code"</string>
|
||||
</resources>
|
||||
|
||||
@@ -58,7 +58,7 @@
|
||||
<!-- Menu option to link this as a device -->
|
||||
<string name="RegistrationActivity_link_device">Lingi seade</string>
|
||||
<!-- Clickable text that opens a corresponding URL -->
|
||||
<string name="RegistrationActivity_learn_more">Learn more</string>
|
||||
<string name="RegistrationActivity_learn_more">Rohkem teavet</string>
|
||||
|
||||
<!-- CountryCodePickerScreen -->
|
||||
<!-- Title of the country code selection screen -->
|
||||
@@ -279,12 +279,12 @@
|
||||
<!-- Byte progress text, e.g. "1.2 MB of 10 MB (12.34%)" -->
|
||||
<string name="RemoteRestoreScreen__s_of_s_s">%1$s kogumahust %2$s (%3$s)</string>
|
||||
<!-- Shown when attempting to open a URL in the web browser, but a browser app cannot be found. -->
|
||||
<string name="LinkActions_error_no_browser_found">No web browser found.</string>
|
||||
<string name="LinkActions_error_no_browser_found">Veebibrauserit ei leitud.</string>
|
||||
|
||||
<!-- Title for screen when your account is locked -->
|
||||
<string name="AccountLockedScreen__account_locked">Account locked</string>
|
||||
<string name="AccountLockedScreen__account_locked">Konto lukustatud</string>
|
||||
<!-- Description for screen when account is locked -->
|
||||
<string name="AccountLockedScreen__your_account">Your account has been locked to protect your privacy and security. After %1$d days of inactivity in your account you\'ll be able to re-register this phone number without needing your PIN. All content will be deleted.</string>
|
||||
<string name="AccountLockedScreen__your_account">Sinu konto on sinu privaatsuse ja turvalisuse kaitseks lukustatud. Pärast %1$d päeva mitteaktiivsust sinu kontol on sul võimalik see telefoninumber ilma PIN-koodi vajamata uuesti registreerida. Kogu sisu eemaldatakse.</string>
|
||||
|
||||
<!-- Step 1 to quick restore -->
|
||||
<string name="QuickRestoreQRScreen__step_1">On your old phone, open Signal</string>
|
||||
@@ -301,7 +301,7 @@
|
||||
<!-- Confirmation dialog when qr code is successfully scanned -->
|
||||
<string name="QuickRestoreQRScreen__scanned">QR code scanned</string>
|
||||
<!-- Button text to retry scanning the QR code -->
|
||||
<string name="QuickRestoreQRScreen__retry">Retry</string>
|
||||
<string name="QuickRestoreQRScreen__retry">Proovi uuesti</string>
|
||||
<!-- Failure text when a code could not be generated -->
|
||||
<string name="QuickRestoreQRScreen__failed">"Failed to generate QR code"</string>
|
||||
</resources>
|
||||
|
||||
@@ -58,7 +58,7 @@
|
||||
<!-- Menu option to link this as a device -->
|
||||
<string name="RegistrationActivity_link_device">Lotu gailua</string>
|
||||
<!-- Clickable text that opens a corresponding URL -->
|
||||
<string name="RegistrationActivity_learn_more">Learn more</string>
|
||||
<string name="RegistrationActivity_learn_more">Informazio gehiago</string>
|
||||
|
||||
<!-- CountryCodePickerScreen -->
|
||||
<!-- Title of the country code selection screen -->
|
||||
@@ -279,12 +279,12 @@
|
||||
<!-- Byte progress text, e.g. "1.2 MB of 10 MB (12.34%)" -->
|
||||
<string name="RemoteRestoreScreen__s_of_s_s">%1$s / %2$s (%3$s)</string>
|
||||
<!-- Shown when attempting to open a URL in the web browser, but a browser app cannot be found. -->
|
||||
<string name="LinkActions_error_no_browser_found">No web browser found.</string>
|
||||
<string name="LinkActions_error_no_browser_found">Ezin izan da nabigatzailerik aurkitu.</string>
|
||||
|
||||
<!-- Title for screen when your account is locked -->
|
||||
<string name="AccountLockedScreen__account_locked">Account locked</string>
|
||||
<string name="AccountLockedScreen__account_locked">Kontua blokeatuta</string>
|
||||
<!-- Description for screen when account is locked -->
|
||||
<string name="AccountLockedScreen__your_account">Your account has been locked to protect your privacy and security. After %1$d days of inactivity in your account you\'ll be able to re-register this phone number without needing your PIN. All content will be deleted.</string>
|
||||
<string name="AccountLockedScreen__your_account">Zure kontua blokeatu egin da zure pribatutasuna eta segurtasuna babesteko. %1$d egun jarduerarik gabe egon ondoren, berriro erregistratu ahal izango duzutelefono-zenbaki hau, PIN bat erabili gabe. Eduki guztia ezabatuko da.</string>
|
||||
|
||||
<!-- Step 1 to quick restore -->
|
||||
<string name="QuickRestoreQRScreen__step_1">On your old phone, open Signal</string>
|
||||
@@ -301,7 +301,7 @@
|
||||
<!-- Confirmation dialog when qr code is successfully scanned -->
|
||||
<string name="QuickRestoreQRScreen__scanned">QR code scanned</string>
|
||||
<!-- Button text to retry scanning the QR code -->
|
||||
<string name="QuickRestoreQRScreen__retry">Retry</string>
|
||||
<string name="QuickRestoreQRScreen__retry">Berriro saiatu</string>
|
||||
<!-- Failure text when a code could not be generated -->
|
||||
<string name="QuickRestoreQRScreen__failed">"Failed to generate QR code"</string>
|
||||
</resources>
|
||||
|
||||
@@ -58,7 +58,7 @@
|
||||
<!-- Menu option to link this as a device -->
|
||||
<string name="RegistrationActivity_link_device">پیوند دستگاه</string>
|
||||
<!-- Clickable text that opens a corresponding URL -->
|
||||
<string name="RegistrationActivity_learn_more">Learn more</string>
|
||||
<string name="RegistrationActivity_learn_more">اطلاعات بیشتر</string>
|
||||
|
||||
<!-- CountryCodePickerScreen -->
|
||||
<!-- Title of the country code selection screen -->
|
||||
@@ -279,12 +279,12 @@
|
||||
<!-- Byte progress text, e.g. "1.2 MB of 10 MB (12.34%)" -->
|
||||
<string name="RemoteRestoreScreen__s_of_s_s">%1$s از %2$s (%3$s)</string>
|
||||
<!-- Shown when attempting to open a URL in the web browser, but a browser app cannot be found. -->
|
||||
<string name="LinkActions_error_no_browser_found">No web browser found.</string>
|
||||
<string name="LinkActions_error_no_browser_found">مرورگر اینترنت یافت نشد.</string>
|
||||
|
||||
<!-- Title for screen when your account is locked -->
|
||||
<string name="AccountLockedScreen__account_locked">Account locked</string>
|
||||
<string name="AccountLockedScreen__account_locked">حساب کاربری قفل شد</string>
|
||||
<!-- Description for screen when account is locked -->
|
||||
<string name="AccountLockedScreen__your_account">Your account has been locked to protect your privacy and security. After %1$d days of inactivity in your account you\'ll be able to re-register this phone number without needing your PIN. All content will be deleted.</string>
|
||||
<string name="AccountLockedScreen__your_account">حساب کاربری شما به منظور حفاظت از حریم خصوصی و امنیت شما قفل شده است. پس از %1$d روز عدم فعالیت در حساب کاربریتان، میتوانید دوباره با این شماره تلفن و بدون نیاز به پین ثبتنام کنید. تمام محتوا پاک خواهد شد.</string>
|
||||
|
||||
<!-- Step 1 to quick restore -->
|
||||
<string name="QuickRestoreQRScreen__step_1">On your old phone, open Signal</string>
|
||||
@@ -301,7 +301,7 @@
|
||||
<!-- Confirmation dialog when qr code is successfully scanned -->
|
||||
<string name="QuickRestoreQRScreen__scanned">QR code scanned</string>
|
||||
<!-- Button text to retry scanning the QR code -->
|
||||
<string name="QuickRestoreQRScreen__retry">Retry</string>
|
||||
<string name="QuickRestoreQRScreen__retry">تلاش مجدد</string>
|
||||
<!-- Failure text when a code could not be generated -->
|
||||
<string name="QuickRestoreQRScreen__failed">"Failed to generate QR code"</string>
|
||||
</resources>
|
||||
|
||||
@@ -58,7 +58,7 @@
|
||||
<!-- Menu option to link this as a device -->
|
||||
<string name="RegistrationActivity_link_device">Yhdistä laite</string>
|
||||
<!-- Clickable text that opens a corresponding URL -->
|
||||
<string name="RegistrationActivity_learn_more">Learn more</string>
|
||||
<string name="RegistrationActivity_learn_more">Lue lisää</string>
|
||||
|
||||
<!-- CountryCodePickerScreen -->
|
||||
<!-- Title of the country code selection screen -->
|
||||
@@ -279,12 +279,12 @@
|
||||
<!-- Byte progress text, e.g. "1.2 MB of 10 MB (12.34%)" -->
|
||||
<string name="RemoteRestoreScreen__s_of_s_s">%1$s/%2$s (%3$s)</string>
|
||||
<!-- Shown when attempting to open a URL in the web browser, but a browser app cannot be found. -->
|
||||
<string name="LinkActions_error_no_browser_found">No web browser found.</string>
|
||||
<string name="LinkActions_error_no_browser_found">Verkkoselainta ei löytynyt.</string>
|
||||
|
||||
<!-- Title for screen when your account is locked -->
|
||||
<string name="AccountLockedScreen__account_locked">Account locked</string>
|
||||
<string name="AccountLockedScreen__account_locked">Tili lukittu</string>
|
||||
<!-- Description for screen when account is locked -->
|
||||
<string name="AccountLockedScreen__your_account">Your account has been locked to protect your privacy and security. After %1$d days of inactivity in your account you\'ll be able to re-register this phone number without needing your PIN. All content will be deleted.</string>
|
||||
<string name="AccountLockedScreen__your_account">Tili on lukittu yksityisyytesi ja tietoturvasi suojaamiseksi. Kun %1$d päivää on kulunut, voit rekisteröidä tämän puhelinnumeron uudelleen ilman tunnuslukua. Kaikki sisältö tullaan poistamaan.</string>
|
||||
|
||||
<!-- Step 1 to quick restore -->
|
||||
<string name="QuickRestoreQRScreen__step_1">On your old phone, open Signal</string>
|
||||
@@ -301,7 +301,7 @@
|
||||
<!-- Confirmation dialog when qr code is successfully scanned -->
|
||||
<string name="QuickRestoreQRScreen__scanned">QR code scanned</string>
|
||||
<!-- Button text to retry scanning the QR code -->
|
||||
<string name="QuickRestoreQRScreen__retry">Retry</string>
|
||||
<string name="QuickRestoreQRScreen__retry">Yritä uudelleen</string>
|
||||
<!-- Failure text when a code could not be generated -->
|
||||
<string name="QuickRestoreQRScreen__failed">"Failed to generate QR code"</string>
|
||||
</resources>
|
||||
|
||||
@@ -58,7 +58,7 @@
|
||||
<!-- Menu option to link this as a device -->
|
||||
<string name="RegistrationActivity_link_device">Associer l\'appareil</string>
|
||||
<!-- Clickable text that opens a corresponding URL -->
|
||||
<string name="RegistrationActivity_learn_more">Learn more</string>
|
||||
<string name="RegistrationActivity_learn_more">En savoir plus</string>
|
||||
|
||||
<!-- CountryCodePickerScreen -->
|
||||
<!-- Title of the country code selection screen -->
|
||||
@@ -279,12 +279,12 @@
|
||||
<!-- Byte progress text, e.g. "1.2 MB of 10 MB (12.34%)" -->
|
||||
<string name="RemoteRestoreScreen__s_of_s_s">%1$s sur %2$s (%3$s)</string>
|
||||
<!-- Shown when attempting to open a URL in the web browser, but a browser app cannot be found. -->
|
||||
<string name="LinkActions_error_no_browser_found">No web browser found.</string>
|
||||
<string name="LinkActions_error_no_browser_found">Navigateur web introuvable.</string>
|
||||
|
||||
<!-- Title for screen when your account is locked -->
|
||||
<string name="AccountLockedScreen__account_locked">Account locked</string>
|
||||
<string name="AccountLockedScreen__account_locked">Compte verrouillé</string>
|
||||
<!-- Description for screen when account is locked -->
|
||||
<string name="AccountLockedScreen__your_account">Your account has been locked to protect your privacy and security. After %1$d days of inactivity in your account you\'ll be able to re-register this phone number without needing your PIN. All content will be deleted.</string>
|
||||
<string name="AccountLockedScreen__your_account">Nous avons verrouillé votre compte pour protéger vos données personnelles et assurer votre sécurité. Votre compte doit rester inactif pendant %1$d jours. Passé ce délai, vous pourrez réenregistrer ce numéro de téléphone sans saisir votre code PIN. Tout le contenu sera supprimé.</string>
|
||||
|
||||
<!-- Step 1 to quick restore -->
|
||||
<string name="QuickRestoreQRScreen__step_1">On your old phone, open Signal</string>
|
||||
@@ -301,7 +301,7 @@
|
||||
<!-- Confirmation dialog when qr code is successfully scanned -->
|
||||
<string name="QuickRestoreQRScreen__scanned">QR code scanned</string>
|
||||
<!-- Button text to retry scanning the QR code -->
|
||||
<string name="QuickRestoreQRScreen__retry">Retry</string>
|
||||
<string name="QuickRestoreQRScreen__retry">Réessayer</string>
|
||||
<!-- Failure text when a code could not be generated -->
|
||||
<string name="QuickRestoreQRScreen__failed">"Failed to generate QR code"</string>
|
||||
</resources>
|
||||
|
||||
@@ -58,7 +58,7 @@
|
||||
<!-- Menu option to link this as a device -->
|
||||
<string name="RegistrationActivity_link_device">Nasc an gléas</string>
|
||||
<!-- Clickable text that opens a corresponding URL -->
|
||||
<string name="RegistrationActivity_learn_more">Learn more</string>
|
||||
<string name="RegistrationActivity_learn_more">Tuilleadh faisnéise</string>
|
||||
|
||||
<!-- CountryCodePickerScreen -->
|
||||
<!-- Title of the country code selection screen -->
|
||||
@@ -279,12 +279,12 @@
|
||||
<!-- Byte progress text, e.g. "1.2 MB of 10 MB (12.34%)" -->
|
||||
<string name="RemoteRestoreScreen__s_of_s_s">%1$s as %2$s (%3$s)</string>
|
||||
<!-- Shown when attempting to open a URL in the web browser, but a browser app cannot be found. -->
|
||||
<string name="LinkActions_error_no_browser_found">No web browser found.</string>
|
||||
<string name="LinkActions_error_no_browser_found">Níor aimsíodh aon líonléitheoir.</string>
|
||||
|
||||
<!-- Title for screen when your account is locked -->
|
||||
<string name="AccountLockedScreen__account_locked">Account locked</string>
|
||||
<string name="AccountLockedScreen__account_locked">Cuntas Glasáilte</string>
|
||||
<!-- Description for screen when account is locked -->
|
||||
<string name="AccountLockedScreen__your_account">Your account has been locked to protect your privacy and security. After %1$d days of inactivity in your account you\'ll be able to re-register this phone number without needing your PIN. All content will be deleted.</string>
|
||||
<string name="AccountLockedScreen__your_account">Glasáladh do chuntas chun do phríobháideachas agus slándáil a chosaint. Tar éis %1$d lá neamhghníomhaíochta i do chuntas beidh tú in ann an uimhir ghutháin seo a athchlárú gan do UAP a bheith de dhíth ort. Scriosfar an t-ábhar ar fad atá ann.</string>
|
||||
|
||||
<!-- Step 1 to quick restore -->
|
||||
<string name="QuickRestoreQRScreen__step_1">On your old phone, open Signal</string>
|
||||
@@ -301,7 +301,7 @@
|
||||
<!-- Confirmation dialog when qr code is successfully scanned -->
|
||||
<string name="QuickRestoreQRScreen__scanned">QR code scanned</string>
|
||||
<!-- Button text to retry scanning the QR code -->
|
||||
<string name="QuickRestoreQRScreen__retry">Retry</string>
|
||||
<string name="QuickRestoreQRScreen__retry">Bain triail eile as</string>
|
||||
<!-- Failure text when a code could not be generated -->
|
||||
<string name="QuickRestoreQRScreen__failed">"Failed to generate QR code"</string>
|
||||
</resources>
|
||||
|
||||
@@ -58,7 +58,7 @@
|
||||
<!-- Menu option to link this as a device -->
|
||||
<string name="RegistrationActivity_link_device">Vincular dispositivo</string>
|
||||
<!-- Clickable text that opens a corresponding URL -->
|
||||
<string name="RegistrationActivity_learn_more">Learn more</string>
|
||||
<string name="RegistrationActivity_learn_more">Máis información</string>
|
||||
|
||||
<!-- CountryCodePickerScreen -->
|
||||
<!-- Title of the country code selection screen -->
|
||||
@@ -279,12 +279,12 @@
|
||||
<!-- Byte progress text, e.g. "1.2 MB of 10 MB (12.34%)" -->
|
||||
<string name="RemoteRestoreScreen__s_of_s_s">%1$s de %2$s (%3$s)</string>
|
||||
<!-- Shown when attempting to open a URL in the web browser, but a browser app cannot be found. -->
|
||||
<string name="LinkActions_error_no_browser_found">No web browser found.</string>
|
||||
<string name="LinkActions_error_no_browser_found">Non se atopou ningún navegador web.</string>
|
||||
|
||||
<!-- Title for screen when your account is locked -->
|
||||
<string name="AccountLockedScreen__account_locked">Account locked</string>
|
||||
<string name="AccountLockedScreen__account_locked">Conta bloqueada</string>
|
||||
<!-- Description for screen when account is locked -->
|
||||
<string name="AccountLockedScreen__your_account">Your account has been locked to protect your privacy and security. After %1$d days of inactivity in your account you\'ll be able to re-register this phone number without needing your PIN. All content will be deleted.</string>
|
||||
<string name="AccountLockedScreen__your_account">A túa conta foi bloqueada para protexer a túa privacidade e seguridade. Após %1$d días de inactividade na conta poderás volver a rexistrar este número de teléfono sen precisar dun PIN. Eliminarase todo o contido.</string>
|
||||
|
||||
<!-- Step 1 to quick restore -->
|
||||
<string name="QuickRestoreQRScreen__step_1">On your old phone, open Signal</string>
|
||||
@@ -301,7 +301,7 @@
|
||||
<!-- Confirmation dialog when qr code is successfully scanned -->
|
||||
<string name="QuickRestoreQRScreen__scanned">QR code scanned</string>
|
||||
<!-- Button text to retry scanning the QR code -->
|
||||
<string name="QuickRestoreQRScreen__retry">Retry</string>
|
||||
<string name="QuickRestoreQRScreen__retry">Tentar de novo</string>
|
||||
<!-- Failure text when a code could not be generated -->
|
||||
<string name="QuickRestoreQRScreen__failed">"Failed to generate QR code"</string>
|
||||
</resources>
|
||||
|
||||
@@ -58,7 +58,7 @@
|
||||
<!-- Menu option to link this as a device -->
|
||||
<string name="RegistrationActivity_link_device">ડિવાઇસ લિંક કરો</string>
|
||||
<!-- Clickable text that opens a corresponding URL -->
|
||||
<string name="RegistrationActivity_learn_more">Learn more</string>
|
||||
<string name="RegistrationActivity_learn_more">વધુ જાણો</string>
|
||||
|
||||
<!-- CountryCodePickerScreen -->
|
||||
<!-- Title of the country code selection screen -->
|
||||
@@ -279,12 +279,12 @@
|
||||
<!-- Byte progress text, e.g. "1.2 MB of 10 MB (12.34%)" -->
|
||||
<string name="RemoteRestoreScreen__s_of_s_s">%2$sમાંથી %1$s (%3$s)</string>
|
||||
<!-- Shown when attempting to open a URL in the web browser, but a browser app cannot be found. -->
|
||||
<string name="LinkActions_error_no_browser_found">No web browser found.</string>
|
||||
<string name="LinkActions_error_no_browser_found">કોઈ વેબ બ્રાઉઝર મળ્યું નથી.</string>
|
||||
|
||||
<!-- Title for screen when your account is locked -->
|
||||
<string name="AccountLockedScreen__account_locked">Account locked</string>
|
||||
<string name="AccountLockedScreen__account_locked">એકાઉન્ટ લૉક કર્યું</string>
|
||||
<!-- Description for screen when account is locked -->
|
||||
<string name="AccountLockedScreen__your_account">Your account has been locked to protect your privacy and security. After %1$d days of inactivity in your account you\'ll be able to re-register this phone number without needing your PIN. All content will be deleted.</string>
|
||||
<string name="AccountLockedScreen__your_account">તમારી ગોપનીયતા અને સુરક્ષાને સુરક્ષિત રાખવા માટે તમારું એકાઉન્ટ લૉક કરવામાં આવ્યું છે. તમારા એકાઉન્ટમાં %1$d દિવસની નિષ્ક્રિયતા પછી તમે તમારા પિન વિના આ ફોન નંબરને ફરીથી રજીસ્ટર કરાવી શકશો. બધી માહિતી ડિલીટ કરવામાં આવશે.</string>
|
||||
|
||||
<!-- Step 1 to quick restore -->
|
||||
<string name="QuickRestoreQRScreen__step_1">On your old phone, open Signal</string>
|
||||
@@ -301,7 +301,7 @@
|
||||
<!-- Confirmation dialog when qr code is successfully scanned -->
|
||||
<string name="QuickRestoreQRScreen__scanned">QR code scanned</string>
|
||||
<!-- Button text to retry scanning the QR code -->
|
||||
<string name="QuickRestoreQRScreen__retry">Retry</string>
|
||||
<string name="QuickRestoreQRScreen__retry">ફરી પ્રયાસ કરો</string>
|
||||
<!-- Failure text when a code could not be generated -->
|
||||
<string name="QuickRestoreQRScreen__failed">"Failed to generate QR code"</string>
|
||||
</resources>
|
||||
|
||||
@@ -58,7 +58,7 @@
|
||||
<!-- Menu option to link this as a device -->
|
||||
<string name="RegistrationActivity_link_device">डिवाइस लिंक करें</string>
|
||||
<!-- Clickable text that opens a corresponding URL -->
|
||||
<string name="RegistrationActivity_learn_more">Learn more</string>
|
||||
<string name="RegistrationActivity_learn_more">और जानें</string>
|
||||
|
||||
<!-- CountryCodePickerScreen -->
|
||||
<!-- Title of the country code selection screen -->
|
||||
@@ -279,12 +279,12 @@
|
||||
<!-- Byte progress text, e.g. "1.2 MB of 10 MB (12.34%)" -->
|
||||
<string name="RemoteRestoreScreen__s_of_s_s">%2$s में से %1$s (%3$s)</string>
|
||||
<!-- Shown when attempting to open a URL in the web browser, but a browser app cannot be found. -->
|
||||
<string name="LinkActions_error_no_browser_found">No web browser found.</string>
|
||||
<string name="LinkActions_error_no_browser_found">कोई वेब ब्राउज़र नहीं मिला।</string>
|
||||
|
||||
<!-- Title for screen when your account is locked -->
|
||||
<string name="AccountLockedScreen__account_locked">Account locked</string>
|
||||
<string name="AccountLockedScreen__account_locked">अकाउंट लॉक हो गया है</string>
|
||||
<!-- Description for screen when account is locked -->
|
||||
<string name="AccountLockedScreen__your_account">Your account has been locked to protect your privacy and security. After %1$d days of inactivity in your account you\'ll be able to re-register this phone number without needing your PIN. All content will be deleted.</string>
|
||||
<string name="AccountLockedScreen__your_account">आपकी प्राइवेसी और सुरक्षा कायम रखने के लिए आपका अकाउंट लॉक किया गया है। आपके अकाउंट में %1$d तक कोई गतिविधि न होने पर, आपको यह सुविधा मिलेगी कि आप बिना पिन के इस फ़ोन नंबर को दोबारा रजिस्टर कर सकें। सभी कॉन्टेंट डिलीट हो जाएगा।</string>
|
||||
|
||||
<!-- Step 1 to quick restore -->
|
||||
<string name="QuickRestoreQRScreen__step_1">On your old phone, open Signal</string>
|
||||
@@ -301,7 +301,7 @@
|
||||
<!-- Confirmation dialog when qr code is successfully scanned -->
|
||||
<string name="QuickRestoreQRScreen__scanned">QR code scanned</string>
|
||||
<!-- Button text to retry scanning the QR code -->
|
||||
<string name="QuickRestoreQRScreen__retry">Retry</string>
|
||||
<string name="QuickRestoreQRScreen__retry">दोबारा कोशिश करें</string>
|
||||
<!-- Failure text when a code could not be generated -->
|
||||
<string name="QuickRestoreQRScreen__failed">"Failed to generate QR code"</string>
|
||||
</resources>
|
||||
|
||||
@@ -58,7 +58,7 @@
|
||||
<!-- Menu option to link this as a device -->
|
||||
<string name="RegistrationActivity_link_device">Poveži uređaj</string>
|
||||
<!-- Clickable text that opens a corresponding URL -->
|
||||
<string name="RegistrationActivity_learn_more">Learn more</string>
|
||||
<string name="RegistrationActivity_learn_more">Saznajte više</string>
|
||||
|
||||
<!-- CountryCodePickerScreen -->
|
||||
<!-- Title of the country code selection screen -->
|
||||
@@ -279,12 +279,12 @@
|
||||
<!-- Byte progress text, e.g. "1.2 MB of 10 MB (12.34%)" -->
|
||||
<string name="RemoteRestoreScreen__s_of_s_s">%1$s od %2$s (%3$s)</string>
|
||||
<!-- Shown when attempting to open a URL in the web browser, but a browser app cannot be found. -->
|
||||
<string name="LinkActions_error_no_browser_found">No web browser found.</string>
|
||||
<string name="LinkActions_error_no_browser_found">Nije pronađen nijedan web preglednik.</string>
|
||||
|
||||
<!-- Title for screen when your account is locked -->
|
||||
<string name="AccountLockedScreen__account_locked">Account locked</string>
|
||||
<string name="AccountLockedScreen__account_locked">Račun je zaključan</string>
|
||||
<!-- Description for screen when account is locked -->
|
||||
<string name="AccountLockedScreen__your_account">Your account has been locked to protect your privacy and security. After %1$d days of inactivity in your account you\'ll be able to re-register this phone number without needing your PIN. All content will be deleted.</string>
|
||||
<string name="AccountLockedScreen__your_account">Vaš je račun zaključan radi zaštite vaše privatnosti i sigurnosti. Nakon %1$d dana neaktivnosti vašeg računa moći ćete ponovno registrirati ovaj broj telefona bez potrebe za PIN-om. Sav sadržaj bit će izbrisan.</string>
|
||||
|
||||
<!-- Step 1 to quick restore -->
|
||||
<string name="QuickRestoreQRScreen__step_1">On your old phone, open Signal</string>
|
||||
@@ -301,7 +301,7 @@
|
||||
<!-- Confirmation dialog when qr code is successfully scanned -->
|
||||
<string name="QuickRestoreQRScreen__scanned">QR code scanned</string>
|
||||
<!-- Button text to retry scanning the QR code -->
|
||||
<string name="QuickRestoreQRScreen__retry">Retry</string>
|
||||
<string name="QuickRestoreQRScreen__retry">Pokušajte ponovno</string>
|
||||
<!-- Failure text when a code could not be generated -->
|
||||
<string name="QuickRestoreQRScreen__failed">"Failed to generate QR code"</string>
|
||||
</resources>
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user