mirror of
https://github.com/signalapp/Signal-Android.git
synced 2026-07-31 02:13:45 +01:00
Compare commits
15 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 2578e8c7ee | |||
| 2810bc5f55 | |||
| 8a56818b7c | |||
| 39cf2a083b | |||
| 9c6a50f24e | |||
| ba5d2dbd65 | |||
| a23463897a | |||
| 2fe3ea6026 | |||
| 2822d048a0 | |||
| 01f0eb5ce0 | |||
| 643093139d | |||
| f6aa4157a3 | |||
| 993eb429f6 | |||
| 9eb65a86e9 | |||
| 74d391d95e |
@@ -32,8 +32,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 = 1726
|
||||
val canonicalVersionName = "8.21.1"
|
||||
val canonicalVersionCode = 1728
|
||||
val canonicalVersionName = "8.21.3"
|
||||
val currentHotfixVersion = 0
|
||||
val maxHotfixVersions = 100
|
||||
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@@ -105,6 +105,7 @@ import org.thoughtcrime.securesms.mms.SignalGlideModule;
|
||||
import org.thoughtcrime.securesms.ratelimit.RateLimitUtil;
|
||||
import org.thoughtcrime.securesms.recipients.Recipient;
|
||||
import org.thoughtcrime.securesms.registration.util.RegistrationUtil;
|
||||
import org.thoughtcrime.securesms.registration.v2.AppContactSupportController;
|
||||
import org.thoughtcrime.securesms.registration.v2.AppRegistrationNetworkController;
|
||||
import org.thoughtcrime.securesms.registration.v2.AppRegistrationStorageController;
|
||||
import org.thoughtcrime.securesms.ringrtc.RingRtcLogger;
|
||||
@@ -120,7 +121,6 @@ import org.thoughtcrime.securesms.service.webrtc.AndroidTelecomUtil;
|
||||
import org.thoughtcrime.securesms.storage.StorageSyncHelper;
|
||||
import org.thoughtcrime.securesms.util.AppStartup;
|
||||
import org.thoughtcrime.securesms.util.BatterySnapshotTracker;
|
||||
import org.thoughtcrime.securesms.util.CommunicationActions;
|
||||
import org.thoughtcrime.securesms.util.DeviceProperties;
|
||||
import org.thoughtcrime.securesms.util.DynamicTheme;
|
||||
import org.thoughtcrime.securesms.util.Environment;
|
||||
@@ -129,7 +129,6 @@ import org.thoughtcrime.securesms.util.RemoteConfig;
|
||||
import org.thoughtcrime.securesms.util.SignalLocalMetrics;
|
||||
import org.thoughtcrime.securesms.util.SignalUncaughtExceptionHandler;
|
||||
import org.thoughtcrime.securesms.util.SqlCipherLogTarget;
|
||||
import org.thoughtcrime.securesms.util.SupportEmailUtil;
|
||||
import org.thoughtcrime.securesms.util.TextSecurePreferences;
|
||||
import org.thoughtcrime.securesms.util.VersionTracker;
|
||||
import org.thoughtcrime.securesms.util.dynamiclanguage.DynamicLanguageContextWrapper;
|
||||
@@ -443,11 +442,7 @@ public class ApplicationContext extends Application implements AppForegroundObse
|
||||
context.startActivity(EditProxyActivity.intent(context));
|
||||
return Unit.INSTANCE;
|
||||
},
|
||||
(context, subject) -> {
|
||||
String body = SupportEmailUtil.generateSupportEmailBody(context, subject, null, null);
|
||||
CommunicationActions.openEmail(context, SupportEmailUtil.getSupportEmailAddress(context), subject, body);
|
||||
return Unit.INSTANCE;
|
||||
}
|
||||
new AppContactSupportController()
|
||||
)
|
||||
);
|
||||
}
|
||||
|
||||
@@ -62,6 +62,7 @@ public abstract class PassphraseRequiredActivity extends BaseActivity implements
|
||||
private static final int STATE_TRANSFER_OR_RESTORE = 11;
|
||||
private static final int STATE_RESUME_LINKING_REG = 12;
|
||||
private static final int STATE_CLOCK_SKEW = 13;
|
||||
private static final int STATE_RESUME_REGISTRATION = 14;
|
||||
|
||||
private SignalServiceNetworkAccess networkAccess;
|
||||
private BroadcastReceiver clearKeyReceiver;
|
||||
@@ -162,6 +163,7 @@ public abstract class PassphraseRequiredActivity extends BaseActivity implements
|
||||
case STATE_TRANSFER_OR_RESTORE: return getTransferOrRestoreIntent();
|
||||
case STATE_RESUME_LINKING_REG: return getResumeLinkedRegistrationIntent();
|
||||
case STATE_CLOCK_SKEW: return getClockSkewIntent();
|
||||
case STATE_RESUME_REGISTRATION: return getResumeRegistrationIntent();
|
||||
default: return null;
|
||||
}
|
||||
}
|
||||
@@ -177,6 +179,8 @@ public abstract class PassphraseRequiredActivity extends BaseActivity implements
|
||||
return STATE_WELCOME_PUSH_SCREEN;
|
||||
} else if (shouldResumeLinkingRegistration()) {
|
||||
return STATE_RESUME_LINKING_REG;
|
||||
} else if (shouldResumeRegistration()) {
|
||||
return STATE_RESUME_REGISTRATION;
|
||||
} else if (userCanTransferOrRestore()) {
|
||||
return STATE_TRANSFER_OR_RESTORE;
|
||||
} else if (SignalStore.storageService().getNeedsAccountRestore()) {
|
||||
@@ -211,6 +215,17 @@ public abstract class PassphraseRequiredActivity extends BaseActivity implements
|
||||
RestoreDecisionStateUtil.isDecisionPending(SignalStore.registration().getRestoreDecisionState());
|
||||
}
|
||||
|
||||
/**
|
||||
* The registration module owns every step of the flow until it marks registration complete, including the steps that
|
||||
* happen after the account itself is registered (restore, PIN). If we come back to a cold start in the middle of that,
|
||||
* hand the user back to the registration module.
|
||||
*/
|
||||
private boolean shouldResumeRegistration() {
|
||||
return Environment.USE_NEW_REGISTRATION &&
|
||||
!SignalStore.registration().isRegistrationComplete() &&
|
||||
SignalStore.registration().getInProgressRegistrationDataBlobUri() != null;
|
||||
}
|
||||
|
||||
private boolean userMustCreateSignalPin() {
|
||||
return !SignalStore.registration().isRegistrationComplete() &&
|
||||
!SignalStore.svr().hasPin() &&
|
||||
@@ -268,6 +283,10 @@ public abstract class PassphraseRequiredActivity extends BaseActivity implements
|
||||
return getRoutedIntent(intent, MainActivity.clearTop(this));
|
||||
}
|
||||
|
||||
private Intent getResumeRegistrationIntent() {
|
||||
return org.signal.registration.RegistrationActivity.createIntent(this, MainActivity.clearTop(this));
|
||||
}
|
||||
|
||||
private Intent getResumeLinkedRegistrationIntent() {
|
||||
return org.signal.registration.RegistrationActivity.createIntent(this, MainActivity.clearTop(this), RegistrationRoute.MessageSync.INSTANCE);
|
||||
}
|
||||
|
||||
+2
-2
@@ -51,7 +51,7 @@ class GroupArchiveExporter(private val selfAci: ServiceId.ACI, private val curso
|
||||
val showAsStoryState: GroupTable.ShowAsStoryState = GroupTable.ShowAsStoryState.deserialize(cursor.requireInt(GroupTable.SHOW_AS_STORY_STATE))
|
||||
|
||||
val isMember: Boolean = cursor.requireBoolean(GroupTable.IS_MEMBER)
|
||||
val decryptedGroup: DecryptedGroup = DecryptedGroup.ADAPTER.decode(cursor.requireBlob(GroupTable.V2_DECRYPTED_GROUP)!!)
|
||||
val decryptedGroup: DecryptedGroup? = cursor.requireBlob(GroupTable.V2_DECRYPTED_GROUP)?.let { DecryptedGroup.ADAPTER.decode(it) }
|
||||
|
||||
return ArchiveRecipient(
|
||||
id = cursor.requireLong(RecipientTable.ID),
|
||||
@@ -61,7 +61,7 @@ class GroupArchiveExporter(private val selfAci: ServiceId.ACI, private val curso
|
||||
blocked = cursor.requireBoolean(RecipientTable.BLOCKED),
|
||||
hideStory = extras?.hideStory() ?: false,
|
||||
storySendMode = showAsStoryState.toRemote(),
|
||||
snapshot = decryptedGroup.toRemote(isMember, selfAci),
|
||||
snapshot = decryptedGroup?.toRemote(isMember, selfAci) ?: Group.GroupSnapshot(),
|
||||
avatarColor = cursor.requireString(RecipientTable.AVATAR_COLOR)?.let { AvatarColor.deserialize(it) }?.toRemote()
|
||||
)
|
||||
)
|
||||
|
||||
+6
-1
@@ -14,6 +14,7 @@ import androidx.appcompat.widget.Toolbar
|
||||
import androidx.core.content.ContextCompat
|
||||
import androidx.core.view.WindowInsetsCompat
|
||||
import androidx.core.view.updateLayoutParams
|
||||
import androidx.core.view.updatePadding
|
||||
import androidx.recyclerview.widget.ConcatAdapter
|
||||
import androidx.recyclerview.widget.LinearLayoutManager
|
||||
import androidx.recyclerview.widget.RecyclerView
|
||||
@@ -43,7 +44,7 @@ abstract class DSLSettingsFragment(
|
||||
|
||||
/**
|
||||
* Set by layouts that anchor the list to the top of the toolbar rather than below it. Those lists scroll
|
||||
* behind the toolbar, so they have to carry the status bar inset themselves.
|
||||
* behind the toolbar, so they have to carry the status bar inset and the toolbar height themselves.
|
||||
*/
|
||||
protected open val listScrollsBehindToolbar: Boolean = false
|
||||
|
||||
@@ -114,6 +115,10 @@ abstract class DSLSettingsFragment(
|
||||
recyclerView?.let { recycler ->
|
||||
val insetTypes = WindowInsetsCompat.Type.navigationBars() or if (listScrollsBehindToolbar) WindowInsetsCompat.Type.statusBars() else 0
|
||||
|
||||
if (listScrollsBehindToolbar) {
|
||||
recycler.updatePadding(top = recycler.paddingTop + resources.getDimensionPixelSize(R.dimen.signal_m3_toolbar_height))
|
||||
}
|
||||
|
||||
recycler.clipToPadding = false
|
||||
SystemWindowInsetsSetter.attach(recycler, viewLifecycleOwner, insetTypes)
|
||||
}
|
||||
|
||||
+3
-1
@@ -109,6 +109,8 @@ class DonateToSignalFragment :
|
||||
)
|
||||
}
|
||||
|
||||
override val listScrollsBehindToolbar: Boolean = true
|
||||
|
||||
override fun onToolbarNavigationClicked() {
|
||||
requireActivity().onBackPressedDispatcher.onBackPressed()
|
||||
}
|
||||
@@ -224,7 +226,7 @@ class DonateToSignalFragment :
|
||||
|
||||
private fun getConfiguration(state: DonateToSignalState): DSLConfiguration {
|
||||
return configure {
|
||||
space(36.dp)
|
||||
space(12.dp)
|
||||
|
||||
customPref(BadgePreview.BadgeModel.SubscriptionModel(state.badge))
|
||||
|
||||
|
||||
+3
-1
@@ -74,6 +74,8 @@ class ManageDonationsFragment :
|
||||
|
||||
private val viewModel: ManageDonationsViewModel by viewModels()
|
||||
|
||||
override val listScrollsBehindToolbar: Boolean = true
|
||||
|
||||
override fun onViewCreated(view: View, savedInstanceState: Bundle?) {
|
||||
viewLifecycleOwner.lifecycle.addObserver(InAppPaymentsBottomSheetDelegate(childFragmentManager, viewLifecycleOwner))
|
||||
super.onViewCreated(view, savedInstanceState)
|
||||
@@ -145,7 +147,7 @@ class ManageDonationsFragment :
|
||||
|
||||
private fun getConfiguration(state: ManageDonationsState): DSLConfiguration {
|
||||
return configure {
|
||||
space(36.dp)
|
||||
space(12.dp)
|
||||
|
||||
customPref(
|
||||
BadgePreview.BadgeModel.SubscriptionModel(
|
||||
|
||||
@@ -1022,7 +1022,7 @@ class GroupTable(context: Context?, databaseHelper: SignalDatabase?) :
|
||||
|
||||
Log.i(TAG, "Group ${record.id} has been both left and had its thread deleted. Clearing all group data.")
|
||||
val keepGroupIdentifier = SignalStore.account.isMultiDevice || recipients.isBlocked(record.recipientId)
|
||||
var clearRecipientCache: Boolean = false
|
||||
var clearRecipientCache = false
|
||||
writableDatabase.withinTransaction { db ->
|
||||
db
|
||||
.delete(MembershipTable.TABLE_NAME)
|
||||
@@ -1087,7 +1087,7 @@ class GroupTable(context: Context?, databaseHelper: SignalDatabase?) :
|
||||
IS_MEMBER to 0,
|
||||
TERMINATED_BY to 0,
|
||||
MMS to 0,
|
||||
V2_REVISION to null,
|
||||
V2_REVISION to 0,
|
||||
V2_DECRYPTED_GROUP to null,
|
||||
EXPECTED_V2_ID to null,
|
||||
UNMIGRATED_V1_MEMBERS to null,
|
||||
|
||||
@@ -1096,6 +1096,10 @@ open class RecipientTable(context: Context, databaseHelper: SignalDatabase) : Da
|
||||
groups.setVerifiedGroupNameHash(groupId, update.new.proto.verifiedNameHash.nullIfEmpty()?.toByteArray())
|
||||
threads.applyStorageSyncUpdate(recipient.id, update.new)
|
||||
AppDependencies.databaseObserver.notifyRecipientChanged(recipient.id)
|
||||
|
||||
if (update.old.proto.blocked && !update.new.proto.blocked) {
|
||||
groups.clearGroupIfLeftAndDeleted(recipient.id)
|
||||
}
|
||||
}
|
||||
|
||||
fun applyStorageSyncAccountUpdate(update: StorageRecordUpdate<SignalAccountRecord>) {
|
||||
@@ -3891,9 +3895,26 @@ open class RecipientTable(context: Context, databaseHelper: SignalDatabase) : Da
|
||||
}
|
||||
|
||||
fun applyBlockedUpdate(blockedE164s: List<String>, blockedAcis: List<ACI>, blockedGroupIds: List<ByteArray?>) {
|
||||
val oldBlockedGV1: Set<GroupId> = readableDatabase
|
||||
.select(GROUP_ID)
|
||||
.from(TABLE_NAME)
|
||||
.where("$BLOCKED = 1 AND $TYPE = ?", SqlUtil.buildArgs(RecipientType.GV1.id))
|
||||
.run()
|
||||
.readToList {
|
||||
try {
|
||||
GroupId.parseNullableOrThrow(it.requireString(GROUP_ID))
|
||||
} catch (e: BadGroupIdException) {
|
||||
Log.w(TAG, "[applyBlockedUpdate] Bad existing GV1 ID!")
|
||||
null
|
||||
}
|
||||
}
|
||||
.filterNotNull()
|
||||
.toSet()
|
||||
|
||||
writableDatabase.withinTransaction { db ->
|
||||
db.updateAll(TABLE_NAME)
|
||||
db.update(TABLE_NAME)
|
||||
.values(BLOCKED to 0)
|
||||
.where("$TYPE != ?", RecipientType.GV2.id)
|
||||
.run()
|
||||
|
||||
val blockValues = contentValuesOf(
|
||||
@@ -3918,7 +3939,7 @@ open class RecipientTable(context: Context, databaseHelper: SignalDatabase) : Da
|
||||
}
|
||||
|
||||
if (blockedGroupIds.isNotEmpty()) {
|
||||
val groupIds: List<GroupId.V1> = blockedGroupIds.filterNotNull().mapNotNull { raw ->
|
||||
val groupV1Ids: List<GroupId.V1> = blockedGroupIds.filterNotNull().mapNotNull { raw ->
|
||||
try {
|
||||
raw?.let { GroupId.v1(it) }
|
||||
} catch (e: BadGroupIdException) {
|
||||
@@ -3927,11 +3948,17 @@ open class RecipientTable(context: Context, databaseHelper: SignalDatabase) : Da
|
||||
}
|
||||
}
|
||||
|
||||
val groupIdQuery = SqlUtil.buildFastCollectionQuery(GROUP_ID, groupIds.map { it.toString() })
|
||||
db.update(TABLE_NAME)
|
||||
.values(blockValues)
|
||||
.where(groupIdQuery.where, groupIdQuery.whereArgs)
|
||||
.run()
|
||||
if (groupV1Ids.isNotEmpty()) {
|
||||
val groupIdQuery = SqlUtil.buildFastCollectionQuery(GROUP_ID, groupV1Ids.map { it.toString() })
|
||||
db.update(TABLE_NAME)
|
||||
.values(blockValues)
|
||||
.where(groupIdQuery.where, groupIdQuery.whereArgs)
|
||||
.run()
|
||||
|
||||
for (groupId in oldBlockedGV1 - groupV1Ids.toSet()) {
|
||||
groups.clearGroupIfLeftAndDeleted(groupId)
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -208,11 +208,12 @@ public class ApplicationMigrations {
|
||||
static final int KT_USERNAME_CAPABILITY = 164;
|
||||
static final int FIX_CHANGE_NUMBER_ERROR_2 = 165;
|
||||
static final int LOCAL_ARCHIVE_RECONCILE = 166;
|
||||
static final int GROUP_DELETED_AT_BACKFILL = 167;
|
||||
// static final int GROUP_DELETED_AT_BACKFILL = 167;
|
||||
static final int STICKER_PACK_STORAGE_SYNC = 168;
|
||||
static final int GROUP_DELETED_AT_BACKFILL = 169;
|
||||
}
|
||||
|
||||
public static final int CURRENT_VERSION = 168;
|
||||
public static final int CURRENT_VERSION = 169;
|
||||
|
||||
/**
|
||||
* This *must* be called after the {@link JobManager} has been instantiated, but *before* the call
|
||||
@@ -967,14 +968,18 @@ public class ApplicationMigrations {
|
||||
jobs.put(Version.LOCAL_ARCHIVE_RECONCILE, new LocalArchiveReconciliationMigrationJob());
|
||||
}
|
||||
|
||||
if (lastSeenVersion < Version.GROUP_DELETED_AT_BACKFILL) {
|
||||
jobs.put(Version.GROUP_DELETED_AT_BACKFILL, new GroupDeletedBackfillMigrationJob());
|
||||
}
|
||||
// if (lastSeenVersion < Version.GROUP_DELETED_AT_BACKFILL) {
|
||||
// jobs.put(Version.GROUP_DELETED_AT_BACKFILL, new GroupDeletedBackfillMigrationJob());
|
||||
// }
|
||||
|
||||
if (lastSeenVersion < Version.STICKER_PACK_STORAGE_SYNC) {
|
||||
jobs.put(Version.STICKER_PACK_STORAGE_SYNC, new SyncStickerPacksMigrationJob());
|
||||
}
|
||||
|
||||
if (lastSeenVersion < Version.GROUP_DELETED_AT_BACKFILL) {
|
||||
jobs.put(Version.GROUP_DELETED_AT_BACKFILL, new GroupDeletedBackfillMigrationJob());
|
||||
}
|
||||
|
||||
return jobs;
|
||||
}
|
||||
|
||||
|
||||
@@ -203,6 +203,10 @@ public class RecipientUtil {
|
||||
insertUnblockedUpdate(recipient, SignalDatabase.threads().getOrCreateThreadIdFor(recipient));
|
||||
AppDependencies.getJobManager().add(new MultiDeviceBlockedUpdateJob());
|
||||
StorageSyncHelper.scheduleSyncForDataChange();
|
||||
|
||||
if (recipient.isGroup()) {
|
||||
SignalDatabase.groups().clearGroupIfLeftAndDeleted(recipient.getId());
|
||||
}
|
||||
}
|
||||
|
||||
private static void insertBlockedUpdate(@NonNull Recipient recipient, long threadId) {
|
||||
|
||||
+51
@@ -0,0 +1,51 @@
|
||||
/*
|
||||
* Copyright 2026 Signal Messenger, LLC
|
||||
* SPDX-License-Identifier: AGPL-3.0-only
|
||||
*/
|
||||
|
||||
package org.thoughtcrime.securesms.registration.v2
|
||||
|
||||
import android.content.Context
|
||||
import kotlinx.coroutines.suspendCancellableCoroutine
|
||||
import org.signal.core.util.logging.Log
|
||||
import org.signal.core.util.orNull
|
||||
import org.signal.registration.ContactSupportController
|
||||
import org.thoughtcrime.securesms.R
|
||||
import org.thoughtcrime.securesms.logsubmit.SubmitDebugLogRepository
|
||||
import org.thoughtcrime.securesms.util.CommunicationActions
|
||||
import org.thoughtcrime.securesms.util.SupportEmailUtil
|
||||
import kotlin.coroutines.resume
|
||||
|
||||
/**
|
||||
* App-side implementation of the registration module's [ContactSupportController].
|
||||
*/
|
||||
class AppContactSupportController : ContactSupportController {
|
||||
|
||||
companion object {
|
||||
val TAG = Log.tag(AppContactSupportController::class.java)
|
||||
}
|
||||
|
||||
override suspend fun uploadDebugLog(): String? {
|
||||
return suspendCancellableCoroutine { continuation ->
|
||||
try {
|
||||
SubmitDebugLogRepository().buildAndSubmitLog { result ->
|
||||
continuation.resume(result.orNull())
|
||||
}
|
||||
} catch (e: Throwable) {
|
||||
Log.w(TAG, "Failed to submit debug log.", e)
|
||||
continuation.resume(null)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
override fun sendSupportEmail(context: Context, subject: String, filter: String, debugLogUrl: String?) {
|
||||
val prefix = if (debugLogUrl != null) {
|
||||
"\n${context.getString(R.string.HelpFragment__debug_log)} $debugLogUrl\n\n"
|
||||
} else {
|
||||
""
|
||||
}
|
||||
|
||||
val body = SupportEmailUtil.generateSupportEmailBody(context, filter, prefix, null)
|
||||
CommunicationActions.openEmail(context, SupportEmailUtil.getSupportEmailAddress(context), subject, body)
|
||||
}
|
||||
}
|
||||
+8
@@ -2,6 +2,9 @@ package org.thoughtcrime.securesms.stories.settings.connections
|
||||
|
||||
import android.os.Bundle
|
||||
import android.view.View
|
||||
import android.view.ViewGroup
|
||||
import androidx.core.view.WindowInsetsCompat
|
||||
import androidx.core.view.updateLayoutParams
|
||||
import androidx.fragment.app.Fragment
|
||||
import androidx.fragment.app.FragmentManager
|
||||
import androidx.fragment.app.viewModels
|
||||
@@ -17,6 +20,7 @@ import org.thoughtcrime.securesms.database.RecipientTable
|
||||
import org.thoughtcrime.securesms.databinding.ViewAllSignalConnectionsFragmentBinding
|
||||
import org.thoughtcrime.securesms.groups.SelectionLimits
|
||||
import org.thoughtcrime.securesms.search.SearchRepository
|
||||
import org.thoughtcrime.securesms.util.SystemWindowInsetsSetter
|
||||
|
||||
class ViewAllSignalConnectionsFragment : Fragment(R.layout.view_all_signal_connections_fragment) {
|
||||
|
||||
@@ -39,6 +43,10 @@ class ViewAllSignalConnectionsFragment : Fragment(R.layout.view_all_signal_conne
|
||||
requireActivity().onBackPressedDispatcher.onBackPressed()
|
||||
}
|
||||
|
||||
binding.toolbar.updateLayoutParams { height = ViewGroup.LayoutParams.WRAP_CONTENT }
|
||||
SystemWindowInsetsSetter.attach(binding.toolbar, viewLifecycleOwner, WindowInsetsCompat.Type.statusBars())
|
||||
SystemWindowInsetsSetter.attach(binding.recycler, viewLifecycleOwner, WindowInsetsCompat.Type.navigationBars())
|
||||
|
||||
binding.recycler.bind(
|
||||
viewModel = contactSearchViewModel,
|
||||
fragmentManager = childFragmentManager,
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
xmlns:tools="http://schemas.android.com/tools"
|
||||
tools:viewBindingIgnore="true"
|
||||
xmlns:app="http://schemas.android.com/apk/res-auto"
|
||||
android:layout_marginTop="40dp"
|
||||
android:layout_marginTop="12dp"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content">
|
||||
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
~ SPDX-License-Identifier: AGPL-3.0-only
|
||||
-->
|
||||
<!-- smartling.instruction_comments_enabled = on -->
|
||||
<resources>
|
||||
<resources xmlns:tools="http://schemas.android.com/tools">
|
||||
<!-- Removed by excludeNonTranslatables <string name="app_name" translatable="false">Signal</string> -->
|
||||
|
||||
<!-- Removed by excludeNonTranslatables <string name="install_url" translatable="false">https://signal.org/install</string> -->
|
||||
@@ -399,7 +399,7 @@
|
||||
<string name="ConversationItem_s_deleted_this_message">%1$s het hierdie boodskap geskrap</string>
|
||||
<string name="ConversationItem_you_deleted_this_message">Jy het hierdie boodskap geskrap</string>
|
||||
<!-- Tappable text shown on a locally-deleted message tombstone, prompting the user to promote it to a delete-for-everyone -->
|
||||
<string name="ConversationItem_delete_for_everyone_question">Delete for everyone?</string>
|
||||
<string name="ConversationItem_delete_for_everyone_question">Skrap vir almal?</string>
|
||||
<!-- Conversation message when a message has been deleted by an admin. The placeholder is the admin\'s name. -->
|
||||
<string name="ConversationItem_admin_s_deleted_this_message">Admin %1$s het hierdie boodskap geskrap</string>
|
||||
<!-- Dialog error message shown when user can\'t download a message from someone else due to a permanent failure (e.g., unable to decrypt), placeholder is other\'s name -->
|
||||
@@ -6962,7 +6962,7 @@
|
||||
<!-- Donation receipts amount title -->
|
||||
<string name="DonationReceiptDetailsFragment__amount">Bedrag</string>
|
||||
<!-- Donation receipts thanks -->
|
||||
<string name="DonationReceiptDetailsFragment__thank_you_for_supporting">Thank you for supporting Signal. Your contribution helps fuel the mission of protecting free expression and enabling secure global communication for millions around the world, through open source privacy technology. If you’re a resident of the United States, please retain this receipt for your tax records. Signal Technology Foundation is a tax–exempt nonprofit organization in the United States under section 501c3 of the Internal Revenue Code. Our Federal Tax ID is 82–4506840. Signal did not provide any goods or services in consideration of this contribution.</string>
|
||||
<string name="DonationReceiptDetailsFragment__thank_you_for_supporting" tools:ignore="TypographyDashes">Thank you for supporting Signal. Your contribution helps fuel the mission of protecting free expression and enabling secure global communication for millions around the world, through open source privacy technology. If you’re a resident of the United States, please retain this receipt for your tax records. Signal Technology Foundation is a tax-exempt nonprofit organization in the United States under section 501c3 of the Internal Revenue Code. Our Federal Tax ID is 82-4506840. Signal did not provide any goods or services in consideration of this contribution.</string>
|
||||
<!-- Donation reciepts screen empty state title -->
|
||||
<string name="DonationReceiptListFragment__no_receipts">Geen kwitansies nie</string>
|
||||
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
~ SPDX-License-Identifier: AGPL-3.0-only
|
||||
-->
|
||||
<!-- smartling.instruction_comments_enabled = on -->
|
||||
<resources>
|
||||
<resources xmlns:tools="http://schemas.android.com/tools">
|
||||
<!-- Removed by excludeNonTranslatables <string name="app_name" translatable="false">Signal</string> -->
|
||||
|
||||
<!-- Removed by excludeNonTranslatables <string name="install_url" translatable="false">https://signal.org/install</string> -->
|
||||
@@ -407,7 +407,7 @@
|
||||
<string name="ConversationItem_s_deleted_this_message">حذفَ %1$s هذه الرسالة</string>
|
||||
<string name="ConversationItem_you_deleted_this_message">حذفتَ هذه الرسالة</string>
|
||||
<!-- Tappable text shown on a locally-deleted message tombstone, prompting the user to promote it to a delete-for-everyone -->
|
||||
<string name="ConversationItem_delete_for_everyone_question">Delete for everyone?</string>
|
||||
<string name="ConversationItem_delete_for_everyone_question">الحذف للجميع؟</string>
|
||||
<!-- Conversation message when a message has been deleted by an admin. The placeholder is the admin\'s name. -->
|
||||
<string name="ConversationItem_admin_s_deleted_this_message">حذفَ المُشرِف %1$s هذه الرسالة.</string>
|
||||
<!-- Dialog error message shown when user can\'t download a message from someone else due to a permanent failure (e.g., unable to decrypt), placeholder is other\'s name -->
|
||||
@@ -7610,7 +7610,7 @@
|
||||
<!-- Donation receipts amount title -->
|
||||
<string name="DonationReceiptDetailsFragment__amount">المبلغ</string>
|
||||
<!-- Donation receipts thanks -->
|
||||
<string name="DonationReceiptDetailsFragment__thank_you_for_supporting">Thank you for supporting Signal. Your contribution helps fuel the mission of protecting free expression and enabling secure global communication for millions around the world, through open source privacy technology. If you’re a resident of the United States, please retain this receipt for your tax records. Signal Technology Foundation is a tax–exempt nonprofit organization in the United States under section 501c3 of the Internal Revenue Code. Our Federal Tax ID is 82–4506840. Signal did not provide any goods or services in consideration of this contribution.</string>
|
||||
<string name="DonationReceiptDetailsFragment__thank_you_for_supporting" tools:ignore="TypographyDashes">Thank you for supporting Signal. Your contribution helps fuel the mission of protecting free expression and enabling secure global communication for millions around the world, through open source privacy technology. If you’re a resident of the United States, please retain this receipt for your tax records. Signal Technology Foundation is a tax-exempt nonprofit organization in the United States under section 501c3 of the Internal Revenue Code. Our Federal Tax ID is 82-4506840. Signal did not provide any goods or services in consideration of this contribution.</string>
|
||||
<!-- Donation reciepts screen empty state title -->
|
||||
<string name="DonationReceiptListFragment__no_receipts">لا توجد إيصالات</string>
|
||||
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
~ SPDX-License-Identifier: AGPL-3.0-only
|
||||
-->
|
||||
<!-- smartling.instruction_comments_enabled = on -->
|
||||
<resources>
|
||||
<resources xmlns:tools="http://schemas.android.com/tools">
|
||||
<!-- Removed by excludeNonTranslatables <string name="app_name" translatable="false">Signal</string> -->
|
||||
|
||||
<!-- Removed by excludeNonTranslatables <string name="install_url" translatable="false">https://signal.org/install</string> -->
|
||||
@@ -399,7 +399,7 @@
|
||||
<string name="ConversationItem_s_deleted_this_message">%1$s bu mesajı sildi</string>
|
||||
<string name="ConversationItem_you_deleted_this_message">Bu mesajı sildiniz</string>
|
||||
<!-- Tappable text shown on a locally-deleted message tombstone, prompting the user to promote it to a delete-for-everyone -->
|
||||
<string name="ConversationItem_delete_for_everyone_question">Delete for everyone?</string>
|
||||
<string name="ConversationItem_delete_for_everyone_question">Hər kəsdən silinsin?</string>
|
||||
<!-- Conversation message when a message has been deleted by an admin. The placeholder is the admin\'s name. -->
|
||||
<string name="ConversationItem_admin_s_deleted_this_message">Admin %1$s bu mesajı sildi</string>
|
||||
<!-- Dialog error message shown when user can\'t download a message from someone else due to a permanent failure (e.g., unable to decrypt), placeholder is other\'s name -->
|
||||
@@ -6962,7 +6962,7 @@
|
||||
<!-- Donation receipts amount title -->
|
||||
<string name="DonationReceiptDetailsFragment__amount">Məbləğ</string>
|
||||
<!-- Donation receipts thanks -->
|
||||
<string name="DonationReceiptDetailsFragment__thank_you_for_supporting">Thank you for supporting Signal. Your contribution helps fuel the mission of protecting free expression and enabling secure global communication for millions around the world, through open source privacy technology. If you’re a resident of the United States, please retain this receipt for your tax records. Signal Technology Foundation is a tax–exempt nonprofit organization in the United States under section 501c3 of the Internal Revenue Code. Our Federal Tax ID is 82–4506840. Signal did not provide any goods or services in consideration of this contribution.</string>
|
||||
<string name="DonationReceiptDetailsFragment__thank_you_for_supporting" tools:ignore="TypographyDashes">Thank you for supporting Signal. Your contribution helps fuel the mission of protecting free expression and enabling secure global communication for millions around the world, through open source privacy technology. If you’re a resident of the United States, please retain this receipt for your tax records. Signal Technology Foundation is a tax-exempt nonprofit organization in the United States under section 501c3 of the Internal Revenue Code. Our Federal Tax ID is 82-4506840. Signal did not provide any goods or services in consideration of this contribution.</string>
|
||||
<!-- Donation reciepts screen empty state title -->
|
||||
<string name="DonationReceiptListFragment__no_receipts">Qəbz yoxdur</string>
|
||||
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
~ SPDX-License-Identifier: AGPL-3.0-only
|
||||
-->
|
||||
<!-- smartling.instruction_comments_enabled = on -->
|
||||
<resources>
|
||||
<resources xmlns:tools="http://schemas.android.com/tools">
|
||||
<!-- Removed by excludeNonTranslatables <string name="app_name" translatable="false">Signal</string> -->
|
||||
|
||||
<!-- Removed by excludeNonTranslatables <string name="install_url" translatable="false">https://signal.org/install</string> -->
|
||||
@@ -403,7 +403,7 @@
|
||||
<string name="ConversationItem_s_deleted_this_message">%1$s выдаліў(-ла) гэтае паведамленне</string>
|
||||
<string name="ConversationItem_you_deleted_this_message">Вы выдалілі гэтае паведамленне</string>
|
||||
<!-- Tappable text shown on a locally-deleted message tombstone, prompting the user to promote it to a delete-for-everyone -->
|
||||
<string name="ConversationItem_delete_for_everyone_question">Delete for everyone?</string>
|
||||
<string name="ConversationItem_delete_for_everyone_question">Выдаліць для ўсіх?</string>
|
||||
<!-- Conversation message when a message has been deleted by an admin. The placeholder is the admin\'s name. -->
|
||||
<string name="ConversationItem_admin_s_deleted_this_message">Адміністратар %1$s выдаліў гэтае паведамленне</string>
|
||||
<!-- Dialog error message shown when user can\'t download a message from someone else due to a permanent failure (e.g., unable to decrypt), placeholder is other\'s name -->
|
||||
@@ -7286,7 +7286,7 @@
|
||||
<!-- Donation receipts amount title -->
|
||||
<string name="DonationReceiptDetailsFragment__amount">Сума</string>
|
||||
<!-- Donation receipts thanks -->
|
||||
<string name="DonationReceiptDetailsFragment__thank_you_for_supporting">Thank you for supporting Signal. Your contribution helps fuel the mission of protecting free expression and enabling secure global communication for millions around the world, through open source privacy technology. If you’re a resident of the United States, please retain this receipt for your tax records. Signal Technology Foundation is a tax–exempt nonprofit organization in the United States under section 501c3 of the Internal Revenue Code. Our Federal Tax ID is 82–4506840. Signal did not provide any goods or services in consideration of this contribution.</string>
|
||||
<string name="DonationReceiptDetailsFragment__thank_you_for_supporting" tools:ignore="TypographyDashes">Thank you for supporting Signal. Your contribution helps fuel the mission of protecting free expression and enabling secure global communication for millions around the world, through open source privacy technology. If you’re a resident of the United States, please retain this receipt for your tax records. Signal Technology Foundation is a tax-exempt nonprofit organization in the United States under section 501c3 of the Internal Revenue Code. Our Federal Tax ID is 82-4506840. Signal did not provide any goods or services in consideration of this contribution.</string>
|
||||
<!-- Donation reciepts screen empty state title -->
|
||||
<string name="DonationReceiptListFragment__no_receipts">Няма квітанцый</string>
|
||||
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
~ SPDX-License-Identifier: AGPL-3.0-only
|
||||
-->
|
||||
<!-- smartling.instruction_comments_enabled = on -->
|
||||
<resources>
|
||||
<resources xmlns:tools="http://schemas.android.com/tools">
|
||||
<!-- Removed by excludeNonTranslatables <string name="app_name" translatable="false">Signal</string> -->
|
||||
|
||||
<!-- Removed by excludeNonTranslatables <string name="install_url" translatable="false">https://signal.org/install</string> -->
|
||||
@@ -399,7 +399,7 @@
|
||||
<string name="ConversationItem_s_deleted_this_message">%1$s изтри това съобщение</string>
|
||||
<string name="ConversationItem_you_deleted_this_message">Изтрихте това съобщение</string>
|
||||
<!-- Tappable text shown on a locally-deleted message tombstone, prompting the user to promote it to a delete-for-everyone -->
|
||||
<string name="ConversationItem_delete_for_everyone_question">Delete for everyone?</string>
|
||||
<string name="ConversationItem_delete_for_everyone_question">Изтриване за всички?</string>
|
||||
<!-- Conversation message when a message has been deleted by an admin. The placeholder is the admin\'s name. -->
|
||||
<string name="ConversationItem_admin_s_deleted_this_message">Администраторът %1$s изтри това съобщение</string>
|
||||
<!-- Dialog error message shown when user can\'t download a message from someone else due to a permanent failure (e.g., unable to decrypt), placeholder is other\'s name -->
|
||||
@@ -6962,7 +6962,7 @@
|
||||
<!-- Donation receipts amount title -->
|
||||
<string name="DonationReceiptDetailsFragment__amount">Сума</string>
|
||||
<!-- Donation receipts thanks -->
|
||||
<string name="DonationReceiptDetailsFragment__thank_you_for_supporting">Thank you for supporting Signal. Your contribution helps fuel the mission of protecting free expression and enabling secure global communication for millions around the world, through open source privacy technology. If you’re a resident of the United States, please retain this receipt for your tax records. Signal Technology Foundation is a tax–exempt nonprofit organization in the United States under section 501c3 of the Internal Revenue Code. Our Federal Tax ID is 82–4506840. Signal did not provide any goods or services in consideration of this contribution.</string>
|
||||
<string name="DonationReceiptDetailsFragment__thank_you_for_supporting" tools:ignore="TypographyDashes">Thank you for supporting Signal. Your contribution helps fuel the mission of protecting free expression and enabling secure global communication for millions around the world, through open source privacy technology. If you’re a resident of the United States, please retain this receipt for your tax records. Signal Technology Foundation is a tax-exempt nonprofit organization in the United States under section 501c3 of the Internal Revenue Code. Our Federal Tax ID is 82-4506840. Signal did not provide any goods or services in consideration of this contribution.</string>
|
||||
<!-- Donation reciepts screen empty state title -->
|
||||
<string name="DonationReceiptListFragment__no_receipts">Няма разписки</string>
|
||||
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
~ SPDX-License-Identifier: AGPL-3.0-only
|
||||
-->
|
||||
<!-- smartling.instruction_comments_enabled = on -->
|
||||
<resources>
|
||||
<resources xmlns:tools="http://schemas.android.com/tools">
|
||||
<!-- Removed by excludeNonTranslatables <string name="app_name" translatable="false">Signal</string> -->
|
||||
|
||||
<!-- Removed by excludeNonTranslatables <string name="install_url" translatable="false">https://signal.org/install</string> -->
|
||||
@@ -399,7 +399,7 @@
|
||||
<string name="ConversationItem_s_deleted_this_message">%1$s এই মেসেজটি মুছে ফেলেছেন</string>
|
||||
<string name="ConversationItem_you_deleted_this_message">আপনি এই মেসেজটি মুছে ফেলেছেন</string>
|
||||
<!-- Tappable text shown on a locally-deleted message tombstone, prompting the user to promote it to a delete-for-everyone -->
|
||||
<string name="ConversationItem_delete_for_everyone_question">Delete for everyone?</string>
|
||||
<string name="ConversationItem_delete_for_everyone_question">সবার জন্য মুছে ফেলবেন?</string>
|
||||
<!-- Conversation message when a message has been deleted by an admin. The placeholder is the admin\'s name. -->
|
||||
<string name="ConversationItem_admin_s_deleted_this_message">অ্যাডমিন %1$s এই মেসেজটি মুছে ফেলেছেন</string>
|
||||
<!-- Dialog error message shown when user can\'t download a message from someone else due to a permanent failure (e.g., unable to decrypt), placeholder is other\'s name -->
|
||||
@@ -6962,7 +6962,7 @@
|
||||
<!-- Donation receipts amount title -->
|
||||
<string name="DonationReceiptDetailsFragment__amount">পরিমাণ</string>
|
||||
<!-- Donation receipts thanks -->
|
||||
<string name="DonationReceiptDetailsFragment__thank_you_for_supporting">Thank you for supporting Signal. Your contribution helps fuel the mission of protecting free expression and enabling secure global communication for millions around the world, through open source privacy technology. If you’re a resident of the United States, please retain this receipt for your tax records. Signal Technology Foundation is a tax–exempt nonprofit organization in the United States under section 501c3 of the Internal Revenue Code. Our Federal Tax ID is 82–4506840. Signal did not provide any goods or services in consideration of this contribution.</string>
|
||||
<string name="DonationReceiptDetailsFragment__thank_you_for_supporting" tools:ignore="TypographyDashes">Thank you for supporting Signal. Your contribution helps fuel the mission of protecting free expression and enabling secure global communication for millions around the world, through open source privacy technology. If you’re a resident of the United States, please retain this receipt for your tax records. Signal Technology Foundation is a tax-exempt nonprofit organization in the United States under section 501c3 of the Internal Revenue Code. Our Federal Tax ID is 82-4506840. Signal did not provide any goods or services in consideration of this contribution.</string>
|
||||
<!-- Donation reciepts screen empty state title -->
|
||||
<string name="DonationReceiptListFragment__no_receipts">রিসিপ্ট নেই</string>
|
||||
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
~ SPDX-License-Identifier: AGPL-3.0-only
|
||||
-->
|
||||
<!-- smartling.instruction_comments_enabled = on -->
|
||||
<resources>
|
||||
<resources xmlns:tools="http://schemas.android.com/tools">
|
||||
<!-- Removed by excludeNonTranslatables <string name="app_name" translatable="false">Signal</string> -->
|
||||
|
||||
<!-- Removed by excludeNonTranslatables <string name="install_url" translatable="false">https://signal.org/install</string> -->
|
||||
@@ -403,7 +403,7 @@
|
||||
<string name="ConversationItem_s_deleted_this_message">%1$s je izbrisao/la ovu poruku</string>
|
||||
<string name="ConversationItem_you_deleted_this_message">Izbrisali ste ovu poruku</string>
|
||||
<!-- Tappable text shown on a locally-deleted message tombstone, prompting the user to promote it to a delete-for-everyone -->
|
||||
<string name="ConversationItem_delete_for_everyone_question">Delete for everyone?</string>
|
||||
<string name="ConversationItem_delete_for_everyone_question">Izbrisati za sve?</string>
|
||||
<!-- Conversation message when a message has been deleted by an admin. The placeholder is the admin\'s name. -->
|
||||
<string name="ConversationItem_admin_s_deleted_this_message">Administrator %1$s je izbrisao ovu poruku</string>
|
||||
<!-- Dialog error message shown when user can\'t download a message from someone else due to a permanent failure (e.g., unable to decrypt), placeholder is other\'s name -->
|
||||
@@ -7286,7 +7286,7 @@
|
||||
<!-- Donation receipts amount title -->
|
||||
<string name="DonationReceiptDetailsFragment__amount">Iznos</string>
|
||||
<!-- Donation receipts thanks -->
|
||||
<string name="DonationReceiptDetailsFragment__thank_you_for_supporting">Thank you for supporting Signal. Your contribution helps fuel the mission of protecting free expression and enabling secure global communication for millions around the world, through open source privacy technology. If you’re a resident of the United States, please retain this receipt for your tax records. Signal Technology Foundation is a tax–exempt nonprofit organization in the United States under section 501c3 of the Internal Revenue Code. Our Federal Tax ID is 82–4506840. Signal did not provide any goods or services in consideration of this contribution.</string>
|
||||
<string name="DonationReceiptDetailsFragment__thank_you_for_supporting" tools:ignore="TypographyDashes">Thank you for supporting Signal. Your contribution helps fuel the mission of protecting free expression and enabling secure global communication for millions around the world, through open source privacy technology. If you’re a resident of the United States, please retain this receipt for your tax records. Signal Technology Foundation is a tax-exempt nonprofit organization in the United States under section 501c3 of the Internal Revenue Code. Our Federal Tax ID is 82-4506840. Signal did not provide any goods or services in consideration of this contribution.</string>
|
||||
<!-- Donation reciepts screen empty state title -->
|
||||
<string name="DonationReceiptListFragment__no_receipts">Nema potvrda</string>
|
||||
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
~ SPDX-License-Identifier: AGPL-3.0-only
|
||||
-->
|
||||
<!-- smartling.instruction_comments_enabled = on -->
|
||||
<resources>
|
||||
<resources xmlns:tools="http://schemas.android.com/tools">
|
||||
<!-- Removed by excludeNonTranslatables <string name="app_name" translatable="false">Signal</string> -->
|
||||
|
||||
<!-- Removed by excludeNonTranslatables <string name="install_url" translatable="false">https://signal.org/install</string> -->
|
||||
@@ -399,7 +399,7 @@
|
||||
<string name="ConversationItem_s_deleted_this_message">%1$s ha eliminat aquest missatge</string>
|
||||
<string name="ConversationItem_you_deleted_this_message">Has eliminat aquest missatge</string>
|
||||
<!-- Tappable text shown on a locally-deleted message tombstone, prompting the user to promote it to a delete-for-everyone -->
|
||||
<string name="ConversationItem_delete_for_everyone_question">Delete for everyone?</string>
|
||||
<string name="ConversationItem_delete_for_everyone_question">Eliminar per a tothom?</string>
|
||||
<!-- Conversation message when a message has been deleted by an admin. The placeholder is the admin\'s name. -->
|
||||
<string name="ConversationItem_admin_s_deleted_this_message">%1$s (admin) ha eliminat aquest missatge</string>
|
||||
<!-- Dialog error message shown when user can\'t download a message from someone else due to a permanent failure (e.g., unable to decrypt), placeholder is other\'s name -->
|
||||
@@ -6962,7 +6962,7 @@
|
||||
<!-- Donation receipts amount title -->
|
||||
<string name="DonationReceiptDetailsFragment__amount">Quantitat</string>
|
||||
<!-- Donation receipts thanks -->
|
||||
<string name="DonationReceiptDetailsFragment__thank_you_for_supporting">Thank you for supporting Signal. Your contribution helps fuel the mission of protecting free expression and enabling secure global communication for millions around the world, through open source privacy technology. If you’re a resident of the United States, please retain this receipt for your tax records. Signal Technology Foundation is a tax–exempt nonprofit organization in the United States under section 501c3 of the Internal Revenue Code. Our Federal Tax ID is 82–4506840. Signal did not provide any goods or services in consideration of this contribution.</string>
|
||||
<string name="DonationReceiptDetailsFragment__thank_you_for_supporting" tools:ignore="TypographyDashes">Thank you for supporting Signal. Your contribution helps fuel the mission of protecting free expression and enabling secure global communication for millions around the world, through open source privacy technology. If you’re a resident of the United States, please retain this receipt for your tax records. Signal Technology Foundation is a tax-exempt nonprofit organization in the United States under section 501c3 of the Internal Revenue Code. Our Federal Tax ID is 82-4506840. Signal did not provide any goods or services in consideration of this contribution.</string>
|
||||
<!-- Donation reciepts screen empty state title -->
|
||||
<string name="DonationReceiptListFragment__no_receipts">Sense rebuts</string>
|
||||
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
~ SPDX-License-Identifier: AGPL-3.0-only
|
||||
-->
|
||||
<!-- smartling.instruction_comments_enabled = on -->
|
||||
<resources>
|
||||
<resources xmlns:tools="http://schemas.android.com/tools">
|
||||
<!-- Removed by excludeNonTranslatables <string name="app_name" translatable="false">Signal</string> -->
|
||||
|
||||
<!-- Removed by excludeNonTranslatables <string name="install_url" translatable="false">https://signal.org/install</string> -->
|
||||
@@ -403,7 +403,7 @@
|
||||
<string name="ConversationItem_s_deleted_this_message">%1$s tuto zprávu odstranil/a</string>
|
||||
<string name="ConversationItem_you_deleted_this_message">Tuto zprávu jste odstranili</string>
|
||||
<!-- Tappable text shown on a locally-deleted message tombstone, prompting the user to promote it to a delete-for-everyone -->
|
||||
<string name="ConversationItem_delete_for_everyone_question">Delete for everyone?</string>
|
||||
<string name="ConversationItem_delete_for_everyone_question">Odstranit pro všechny?</string>
|
||||
<!-- Conversation message when a message has been deleted by an admin. The placeholder is the admin\'s name. -->
|
||||
<string name="ConversationItem_admin_s_deleted_this_message">Správce %1$s tuto zprávu odstranil</string>
|
||||
<!-- Dialog error message shown when user can\'t download a message from someone else due to a permanent failure (e.g., unable to decrypt), placeholder is other\'s name -->
|
||||
@@ -7286,7 +7286,7 @@
|
||||
<!-- Donation receipts amount title -->
|
||||
<string name="DonationReceiptDetailsFragment__amount">Částka</string>
|
||||
<!-- Donation receipts thanks -->
|
||||
<string name="DonationReceiptDetailsFragment__thank_you_for_supporting">Thank you for supporting Signal. Your contribution helps fuel the mission of protecting free expression and enabling secure global communication for millions around the world, through open source privacy technology. If you’re a resident of the United States, please retain this receipt for your tax records. Signal Technology Foundation is a tax–exempt nonprofit organization in the United States under section 501c3 of the Internal Revenue Code. Our Federal Tax ID is 82–4506840. Signal did not provide any goods or services in consideration of this contribution.</string>
|
||||
<string name="DonationReceiptDetailsFragment__thank_you_for_supporting" tools:ignore="TypographyDashes">Thank you for supporting Signal. Your contribution helps fuel the mission of protecting free expression and enabling secure global communication for millions around the world, through open source privacy technology. If you’re a resident of the United States, please retain this receipt for your tax records. Signal Technology Foundation is a tax-exempt nonprofit organization in the United States under section 501c3 of the Internal Revenue Code. Our Federal Tax ID is 82-4506840. Signal did not provide any goods or services in consideration of this contribution.</string>
|
||||
<!-- Donation reciepts screen empty state title -->
|
||||
<string name="DonationReceiptListFragment__no_receipts">Žádné doklady</string>
|
||||
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
~ SPDX-License-Identifier: AGPL-3.0-only
|
||||
-->
|
||||
<!-- smartling.instruction_comments_enabled = on -->
|
||||
<resources>
|
||||
<resources xmlns:tools="http://schemas.android.com/tools">
|
||||
<!-- Removed by excludeNonTranslatables <string name="app_name" translatable="false">Signal</string> -->
|
||||
|
||||
<!-- Removed by excludeNonTranslatables <string name="install_url" translatable="false">https://signal.org/install</string> -->
|
||||
@@ -399,7 +399,7 @@
|
||||
<string name="ConversationItem_s_deleted_this_message">%1$s slettede beskeden</string>
|
||||
<string name="ConversationItem_you_deleted_this_message">Du slettede beskeden</string>
|
||||
<!-- Tappable text shown on a locally-deleted message tombstone, prompting the user to promote it to a delete-for-everyone -->
|
||||
<string name="ConversationItem_delete_for_everyone_question">Delete for everyone?</string>
|
||||
<string name="ConversationItem_delete_for_everyone_question">Slet for alles vedkommende?</string>
|
||||
<!-- Conversation message when a message has been deleted by an admin. The placeholder is the admin\'s name. -->
|
||||
<string name="ConversationItem_admin_s_deleted_this_message">Administratoren %1$s slettede denne besked</string>
|
||||
<!-- Dialog error message shown when user can\'t download a message from someone else due to a permanent failure (e.g., unable to decrypt), placeholder is other\'s name -->
|
||||
@@ -6962,7 +6962,7 @@
|
||||
<!-- Donation receipts amount title -->
|
||||
<string name="DonationReceiptDetailsFragment__amount">Beløb</string>
|
||||
<!-- Donation receipts thanks -->
|
||||
<string name="DonationReceiptDetailsFragment__thank_you_for_supporting">Thank you for supporting Signal. Your contribution helps fuel the mission of protecting free expression and enabling secure global communication for millions around the world, through open source privacy technology. If you’re a resident of the United States, please retain this receipt for your tax records. Signal Technology Foundation is a tax–exempt nonprofit organization in the United States under section 501c3 of the Internal Revenue Code. Our Federal Tax ID is 82–4506840. Signal did not provide any goods or services in consideration of this contribution.</string>
|
||||
<string name="DonationReceiptDetailsFragment__thank_you_for_supporting" tools:ignore="TypographyDashes">Thank you for supporting Signal. Your contribution helps fuel the mission of protecting free expression and enabling secure global communication for millions around the world, through open source privacy technology. If you’re a resident of the United States, please retain this receipt for your tax records. Signal Technology Foundation is a tax-exempt nonprofit organization in the United States under section 501c3 of the Internal Revenue Code. Our Federal Tax ID is 82-4506840. Signal did not provide any goods or services in consideration of this contribution.</string>
|
||||
<!-- Donation reciepts screen empty state title -->
|
||||
<string name="DonationReceiptListFragment__no_receipts">Ingen kvitteringer</string>
|
||||
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
~ SPDX-License-Identifier: AGPL-3.0-only
|
||||
-->
|
||||
<!-- smartling.instruction_comments_enabled = on -->
|
||||
<resources>
|
||||
<resources xmlns:tools="http://schemas.android.com/tools">
|
||||
<!-- Removed by excludeNonTranslatables <string name="app_name" translatable="false">Signal</string> -->
|
||||
|
||||
<!-- Removed by excludeNonTranslatables <string name="install_url" translatable="false">https://signal.org/install</string> -->
|
||||
@@ -399,7 +399,7 @@
|
||||
<string name="ConversationItem_s_deleted_this_message">%1$s hat diese Nachricht gelöscht</string>
|
||||
<string name="ConversationItem_you_deleted_this_message">Du hast diese Nachricht gelöscht</string>
|
||||
<!-- Tappable text shown on a locally-deleted message tombstone, prompting the user to promote it to a delete-for-everyone -->
|
||||
<string name="ConversationItem_delete_for_everyone_question">Delete for everyone?</string>
|
||||
<string name="ConversationItem_delete_for_everyone_question">Für alle löschen?</string>
|
||||
<!-- Conversation message when a message has been deleted by an admin. The placeholder is the admin\'s name. -->
|
||||
<string name="ConversationItem_admin_s_deleted_this_message">Admin %1$s hat diese Nachricht gelöscht</string>
|
||||
<!-- Dialog error message shown when user can\'t download a message from someone else due to a permanent failure (e.g., unable to decrypt), placeholder is other\'s name -->
|
||||
@@ -6962,7 +6962,7 @@
|
||||
<!-- Donation receipts amount title -->
|
||||
<string name="DonationReceiptDetailsFragment__amount">Betrag</string>
|
||||
<!-- Donation receipts thanks -->
|
||||
<string name="DonationReceiptDetailsFragment__thank_you_for_supporting">Thank you for supporting Signal. Your contribution helps fuel the mission of protecting free expression and enabling secure global communication for millions around the world, through open source privacy technology. If you’re a resident of the United States, please retain this receipt for your tax records. Signal Technology Foundation is a tax–exempt nonprofit organization in the United States under section 501c3 of the Internal Revenue Code. Our Federal Tax ID is 82–4506840. Signal did not provide any goods or services in consideration of this contribution.</string>
|
||||
<string name="DonationReceiptDetailsFragment__thank_you_for_supporting" tools:ignore="TypographyDashes">Thank you for supporting Signal. Your contribution helps fuel the mission of protecting free expression and enabling secure global communication for millions around the world, through open source privacy technology. If you’re a resident of the United States, please retain this receipt for your tax records. Signal Technology Foundation is a tax-exempt nonprofit organization in the United States under section 501c3 of the Internal Revenue Code. Our Federal Tax ID is 82-4506840. Signal did not provide any goods or services in consideration of this contribution.</string>
|
||||
<!-- Donation reciepts screen empty state title -->
|
||||
<string name="DonationReceiptListFragment__no_receipts">Keine Bescheinigungen</string>
|
||||
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
~ SPDX-License-Identifier: AGPL-3.0-only
|
||||
-->
|
||||
<!-- smartling.instruction_comments_enabled = on -->
|
||||
<resources>
|
||||
<resources xmlns:tools="http://schemas.android.com/tools">
|
||||
<!-- Removed by excludeNonTranslatables <string name="app_name" translatable="false">Signal</string> -->
|
||||
|
||||
<!-- Removed by excludeNonTranslatables <string name="install_url" translatable="false">https://signal.org/install</string> -->
|
||||
@@ -399,7 +399,7 @@
|
||||
<string name="ConversationItem_s_deleted_this_message">Ο χρήστης %1$s διέγραψε αυτό το μήνυμα</string>
|
||||
<string name="ConversationItem_you_deleted_this_message">Διέγραψες αυτό το μήνυμα</string>
|
||||
<!-- Tappable text shown on a locally-deleted message tombstone, prompting the user to promote it to a delete-for-everyone -->
|
||||
<string name="ConversationItem_delete_for_everyone_question">Delete for everyone?</string>
|
||||
<string name="ConversationItem_delete_for_everyone_question">Διαγραφή για όλους;</string>
|
||||
<!-- Conversation message when a message has been deleted by an admin. The placeholder is the admin\'s name. -->
|
||||
<string name="ConversationItem_admin_s_deleted_this_message">Ο διαχειριστής %1$s διέγραψε αυτό το μήνυμα</string>
|
||||
<!-- Dialog error message shown when user can\'t download a message from someone else due to a permanent failure (e.g., unable to decrypt), placeholder is other\'s name -->
|
||||
@@ -6962,7 +6962,7 @@
|
||||
<!-- Donation receipts amount title -->
|
||||
<string name="DonationReceiptDetailsFragment__amount">Ποσό</string>
|
||||
<!-- Donation receipts thanks -->
|
||||
<string name="DonationReceiptDetailsFragment__thank_you_for_supporting">Thank you for supporting Signal. Your contribution helps fuel the mission of protecting free expression and enabling secure global communication for millions around the world, through open source privacy technology. If you’re a resident of the United States, please retain this receipt for your tax records. Signal Technology Foundation is a tax–exempt nonprofit organization in the United States under section 501c3 of the Internal Revenue Code. Our Federal Tax ID is 82–4506840. Signal did not provide any goods or services in consideration of this contribution.</string>
|
||||
<string name="DonationReceiptDetailsFragment__thank_you_for_supporting" tools:ignore="TypographyDashes">Thank you for supporting Signal. Your contribution helps fuel the mission of protecting free expression and enabling secure global communication for millions around the world, through open source privacy technology. If you’re a resident of the United States, please retain this receipt for your tax records. Signal Technology Foundation is a tax-exempt nonprofit organization in the United States under section 501c3 of the Internal Revenue Code. Our Federal Tax ID is 82-4506840. Signal did not provide any goods or services in consideration of this contribution.</string>
|
||||
<!-- Donation reciepts screen empty state title -->
|
||||
<string name="DonationReceiptListFragment__no_receipts">Χωρίς παραλήπτες</string>
|
||||
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
~ SPDX-License-Identifier: AGPL-3.0-only
|
||||
-->
|
||||
<!-- smartling.instruction_comments_enabled = on -->
|
||||
<resources>
|
||||
<resources xmlns:tools="http://schemas.android.com/tools">
|
||||
<!-- Removed by excludeNonTranslatables <string name="app_name" translatable="false">Signal</string> -->
|
||||
|
||||
<!-- Removed by excludeNonTranslatables <string name="install_url" translatable="false">https://signal.org/install</string> -->
|
||||
@@ -399,7 +399,7 @@
|
||||
<string name="ConversationItem_s_deleted_this_message">%1$s ha eliminado este mensaje</string>
|
||||
<string name="ConversationItem_you_deleted_this_message">Has eliminado este mensaje</string>
|
||||
<!-- Tappable text shown on a locally-deleted message tombstone, prompting the user to promote it to a delete-for-everyone -->
|
||||
<string name="ConversationItem_delete_for_everyone_question">Delete for everyone?</string>
|
||||
<string name="ConversationItem_delete_for_everyone_question">¿Eliminar para todos?</string>
|
||||
<!-- Conversation message when a message has been deleted by an admin. The placeholder is the admin\'s name. -->
|
||||
<string name="ConversationItem_admin_s_deleted_this_message">%1$s (admin) ha eliminado este mensaje</string>
|
||||
<!-- Dialog error message shown when user can\'t download a message from someone else due to a permanent failure (e.g., unable to decrypt), placeholder is other\'s name -->
|
||||
@@ -6962,7 +6962,7 @@
|
||||
<!-- Donation receipts amount title -->
|
||||
<string name="DonationReceiptDetailsFragment__amount">Importe</string>
|
||||
<!-- Donation receipts thanks -->
|
||||
<string name="DonationReceiptDetailsFragment__thank_you_for_supporting">Thank you for supporting Signal. Your contribution helps fuel the mission of protecting free expression and enabling secure global communication for millions around the world, through open source privacy technology. If you’re a resident of the United States, please retain this receipt for your tax records. Signal Technology Foundation is a tax–exempt nonprofit organization in the United States under section 501c3 of the Internal Revenue Code. Our Federal Tax ID is 82–4506840. Signal did not provide any goods or services in consideration of this contribution.</string>
|
||||
<string name="DonationReceiptDetailsFragment__thank_you_for_supporting" tools:ignore="TypographyDashes">Thank you for supporting Signal. Your contribution helps fuel the mission of protecting free expression and enabling secure global communication for millions around the world, through open source privacy technology. If you’re a resident of the United States, please retain this receipt for your tax records. Signal Technology Foundation is a tax-exempt nonprofit organization in the United States under section 501c3 of the Internal Revenue Code. Our Federal Tax ID is 82-4506840. Signal did not provide any goods or services in consideration of this contribution.</string>
|
||||
<!-- Donation reciepts screen empty state title -->
|
||||
<string name="DonationReceiptListFragment__no_receipts">No hay recibos</string>
|
||||
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
~ SPDX-License-Identifier: AGPL-3.0-only
|
||||
-->
|
||||
<!-- smartling.instruction_comments_enabled = on -->
|
||||
<resources>
|
||||
<resources xmlns:tools="http://schemas.android.com/tools">
|
||||
<!-- Removed by excludeNonTranslatables <string name="app_name" translatable="false">Signal</string> -->
|
||||
|
||||
<!-- Removed by excludeNonTranslatables <string name="install_url" translatable="false">https://signal.org/install</string> -->
|
||||
@@ -399,7 +399,7 @@
|
||||
<string name="ConversationItem_s_deleted_this_message">%1$s kustutas selle sõnumi</string>
|
||||
<string name="ConversationItem_you_deleted_this_message">Sa kustutasid selle sõnumi</string>
|
||||
<!-- Tappable text shown on a locally-deleted message tombstone, prompting the user to promote it to a delete-for-everyone -->
|
||||
<string name="ConversationItem_delete_for_everyone_question">Delete for everyone?</string>
|
||||
<string name="ConversationItem_delete_for_everyone_question">Kas kustutada kõigi jaoks?</string>
|
||||
<!-- Conversation message when a message has been deleted by an admin. The placeholder is the admin\'s name. -->
|
||||
<string name="ConversationItem_admin_s_deleted_this_message">Administraator %1$s kustutas selle sõnumi</string>
|
||||
<!-- Dialog error message shown when user can\'t download a message from someone else due to a permanent failure (e.g., unable to decrypt), placeholder is other\'s name -->
|
||||
@@ -6962,7 +6962,7 @@
|
||||
<!-- Donation receipts amount title -->
|
||||
<string name="DonationReceiptDetailsFragment__amount">Summa</string>
|
||||
<!-- Donation receipts thanks -->
|
||||
<string name="DonationReceiptDetailsFragment__thank_you_for_supporting">Thank you for supporting Signal. Your contribution helps fuel the mission of protecting free expression and enabling secure global communication for millions around the world, through open source privacy technology. If you’re a resident of the United States, please retain this receipt for your tax records. Signal Technology Foundation is a tax–exempt nonprofit organization in the United States under section 501c3 of the Internal Revenue Code. Our Federal Tax ID is 82–4506840. Signal did not provide any goods or services in consideration of this contribution.</string>
|
||||
<string name="DonationReceiptDetailsFragment__thank_you_for_supporting" tools:ignore="TypographyDashes">Thank you for supporting Signal. Your contribution helps fuel the mission of protecting free expression and enabling secure global communication for millions around the world, through open source privacy technology. If you’re a resident of the United States, please retain this receipt for your tax records. Signal Technology Foundation is a tax-exempt nonprofit organization in the United States under section 501c3 of the Internal Revenue Code. Our Federal Tax ID is 82-4506840. Signal did not provide any goods or services in consideration of this contribution.</string>
|
||||
<!-- Donation reciepts screen empty state title -->
|
||||
<string name="DonationReceiptListFragment__no_receipts">Kviitungeid ei ole</string>
|
||||
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
~ SPDX-License-Identifier: AGPL-3.0-only
|
||||
-->
|
||||
<!-- smartling.instruction_comments_enabled = on -->
|
||||
<resources>
|
||||
<resources xmlns:tools="http://schemas.android.com/tools">
|
||||
<!-- Removed by excludeNonTranslatables <string name="app_name" translatable="false">Signal</string> -->
|
||||
|
||||
<!-- Removed by excludeNonTranslatables <string name="install_url" translatable="false">https://signal.org/install</string> -->
|
||||
@@ -399,7 +399,7 @@
|
||||
<string name="ConversationItem_s_deleted_this_message">%1$s(e)k mezu hau ezabatu du</string>
|
||||
<string name="ConversationItem_you_deleted_this_message">Mezu hau ezabatu duzu</string>
|
||||
<!-- Tappable text shown on a locally-deleted message tombstone, prompting the user to promote it to a delete-for-everyone -->
|
||||
<string name="ConversationItem_delete_for_everyone_question">Delete for everyone?</string>
|
||||
<string name="ConversationItem_delete_for_everyone_question">Guztientzat ezabatu nahi duzu?</string>
|
||||
<!-- Conversation message when a message has been deleted by an admin. The placeholder is the admin\'s name. -->
|
||||
<string name="ConversationItem_admin_s_deleted_this_message">%1$s adminak mezu hau ezabatu du</string>
|
||||
<!-- Dialog error message shown when user can\'t download a message from someone else due to a permanent failure (e.g., unable to decrypt), placeholder is other\'s name -->
|
||||
@@ -6962,7 +6962,7 @@
|
||||
<!-- Donation receipts amount title -->
|
||||
<string name="DonationReceiptDetailsFragment__amount">Zenbatekoa</string>
|
||||
<!-- Donation receipts thanks -->
|
||||
<string name="DonationReceiptDetailsFragment__thank_you_for_supporting">Thank you for supporting Signal. Your contribution helps fuel the mission of protecting free expression and enabling secure global communication for millions around the world, through open source privacy technology. If you’re a resident of the United States, please retain this receipt for your tax records. Signal Technology Foundation is a tax–exempt nonprofit organization in the United States under section 501c3 of the Internal Revenue Code. Our Federal Tax ID is 82–4506840. Signal did not provide any goods or services in consideration of this contribution.</string>
|
||||
<string name="DonationReceiptDetailsFragment__thank_you_for_supporting" tools:ignore="TypographyDashes">Thank you for supporting Signal. Your contribution helps fuel the mission of protecting free expression and enabling secure global communication for millions around the world, through open source privacy technology. If you’re a resident of the United States, please retain this receipt for your tax records. Signal Technology Foundation is a tax-exempt nonprofit organization in the United States under section 501c3 of the Internal Revenue Code. Our Federal Tax ID is 82-4506840. Signal did not provide any goods or services in consideration of this contribution.</string>
|
||||
<!-- Donation reciepts screen empty state title -->
|
||||
<string name="DonationReceiptListFragment__no_receipts">Ordainagiririk ez</string>
|
||||
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
~ SPDX-License-Identifier: AGPL-3.0-only
|
||||
-->
|
||||
<!-- smartling.instruction_comments_enabled = on -->
|
||||
<resources>
|
||||
<resources xmlns:tools="http://schemas.android.com/tools">
|
||||
<!-- Removed by excludeNonTranslatables <string name="app_name" translatable="false">Signal</string> -->
|
||||
|
||||
<!-- Removed by excludeNonTranslatables <string name="install_url" translatable="false">https://signal.org/install</string> -->
|
||||
@@ -399,7 +399,7 @@
|
||||
<string name="ConversationItem_s_deleted_this_message">%1$s این پیام را حذف کرد</string>
|
||||
<string name="ConversationItem_you_deleted_this_message">شما این پیام را حذف کردید</string>
|
||||
<!-- Tappable text shown on a locally-deleted message tombstone, prompting the user to promote it to a delete-for-everyone -->
|
||||
<string name="ConversationItem_delete_for_everyone_question">Delete for everyone?</string>
|
||||
<string name="ConversationItem_delete_for_everyone_question">برای همه حذف شود؟</string>
|
||||
<!-- Conversation message when a message has been deleted by an admin. The placeholder is the admin\'s name. -->
|
||||
<string name="ConversationItem_admin_s_deleted_this_message">مدیر %1$s این پیام را حذف کرد</string>
|
||||
<!-- Dialog error message shown when user can\'t download a message from someone else due to a permanent failure (e.g., unable to decrypt), placeholder is other\'s name -->
|
||||
@@ -6962,7 +6962,7 @@
|
||||
<!-- Donation receipts amount title -->
|
||||
<string name="DonationReceiptDetailsFragment__amount">مبلغ</string>
|
||||
<!-- Donation receipts thanks -->
|
||||
<string name="DonationReceiptDetailsFragment__thank_you_for_supporting">Thank you for supporting Signal. Your contribution helps fuel the mission of protecting free expression and enabling secure global communication for millions around the world, through open source privacy technology. If you’re a resident of the United States, please retain this receipt for your tax records. Signal Technology Foundation is a tax–exempt nonprofit organization in the United States under section 501c3 of the Internal Revenue Code. Our Federal Tax ID is 82–4506840. Signal did not provide any goods or services in consideration of this contribution.</string>
|
||||
<string name="DonationReceiptDetailsFragment__thank_you_for_supporting" tools:ignore="TypographyDashes">Thank you for supporting Signal. Your contribution helps fuel the mission of protecting free expression and enabling secure global communication for millions around the world, through open source privacy technology. If you’re a resident of the United States, please retain this receipt for your tax records. Signal Technology Foundation is a tax-exempt nonprofit organization in the United States under section 501c3 of the Internal Revenue Code. Our Federal Tax ID is 82-4506840. Signal did not provide any goods or services in consideration of this contribution.</string>
|
||||
<!-- Donation reciepts screen empty state title -->
|
||||
<string name="DonationReceiptListFragment__no_receipts">رسیدی موجود نیست</string>
|
||||
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
~ SPDX-License-Identifier: AGPL-3.0-only
|
||||
-->
|
||||
<!-- smartling.instruction_comments_enabled = on -->
|
||||
<resources>
|
||||
<resources xmlns:tools="http://schemas.android.com/tools">
|
||||
<!-- Removed by excludeNonTranslatables <string name="app_name" translatable="false">Signal</string> -->
|
||||
|
||||
<!-- Removed by excludeNonTranslatables <string name="install_url" translatable="false">https://signal.org/install</string> -->
|
||||
@@ -399,7 +399,7 @@
|
||||
<string name="ConversationItem_s_deleted_this_message">%1$s poisti viestin</string>
|
||||
<string name="ConversationItem_you_deleted_this_message">Poistit tämän viestin</string>
|
||||
<!-- Tappable text shown on a locally-deleted message tombstone, prompting the user to promote it to a delete-for-everyone -->
|
||||
<string name="ConversationItem_delete_for_everyone_question">Delete for everyone?</string>
|
||||
<string name="ConversationItem_delete_for_everyone_question">Poistetaanko kaikilta?</string>
|
||||
<!-- Conversation message when a message has been deleted by an admin. The placeholder is the admin\'s name. -->
|
||||
<string name="ConversationItem_admin_s_deleted_this_message">Ylläpitäjä %1$s poisti viestin</string>
|
||||
<!-- Dialog error message shown when user can\'t download a message from someone else due to a permanent failure (e.g., unable to decrypt), placeholder is other\'s name -->
|
||||
@@ -6962,7 +6962,7 @@
|
||||
<!-- Donation receipts amount title -->
|
||||
<string name="DonationReceiptDetailsFragment__amount">Summa</string>
|
||||
<!-- Donation receipts thanks -->
|
||||
<string name="DonationReceiptDetailsFragment__thank_you_for_supporting">Thank you for supporting Signal. Your contribution helps fuel the mission of protecting free expression and enabling secure global communication for millions around the world, through open source privacy technology. If you’re a resident of the United States, please retain this receipt for your tax records. Signal Technology Foundation is a tax–exempt nonprofit organization in the United States under section 501c3 of the Internal Revenue Code. Our Federal Tax ID is 82–4506840. Signal did not provide any goods or services in consideration of this contribution.</string>
|
||||
<string name="DonationReceiptDetailsFragment__thank_you_for_supporting" tools:ignore="TypographyDashes">Thank you for supporting Signal. Your contribution helps fuel the mission of protecting free expression and enabling secure global communication for millions around the world, through open source privacy technology. If you’re a resident of the United States, please retain this receipt for your tax records. Signal Technology Foundation is a tax-exempt nonprofit organization in the United States under section 501c3 of the Internal Revenue Code. Our Federal Tax ID is 82-4506840. Signal did not provide any goods or services in consideration of this contribution.</string>
|
||||
<!-- Donation reciepts screen empty state title -->
|
||||
<string name="DonationReceiptListFragment__no_receipts">Ei kuitteja</string>
|
||||
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
~ SPDX-License-Identifier: AGPL-3.0-only
|
||||
-->
|
||||
<!-- smartling.instruction_comments_enabled = on -->
|
||||
<resources>
|
||||
<resources xmlns:tools="http://schemas.android.com/tools">
|
||||
<!-- Removed by excludeNonTranslatables <string name="app_name" translatable="false">Signal</string> -->
|
||||
|
||||
<!-- Removed by excludeNonTranslatables <string name="install_url" translatable="false">https://signal.org/install</string> -->
|
||||
@@ -399,7 +399,7 @@
|
||||
<string name="ConversationItem_s_deleted_this_message">%1$s a supprimé ce message</string>
|
||||
<string name="ConversationItem_you_deleted_this_message">Vous avez supprimé ce message</string>
|
||||
<!-- Tappable text shown on a locally-deleted message tombstone, prompting the user to promote it to a delete-for-everyone -->
|
||||
<string name="ConversationItem_delete_for_everyone_question">Delete for everyone?</string>
|
||||
<string name="ConversationItem_delete_for_everyone_question">Supprimer pour tout le monde ?</string>
|
||||
<!-- Conversation message when a message has been deleted by an admin. The placeholder is the admin\'s name. -->
|
||||
<string name="ConversationItem_admin_s_deleted_this_message">L\'admin %1$s a supprimé ce message</string>
|
||||
<!-- Dialog error message shown when user can\'t download a message from someone else due to a permanent failure (e.g., unable to decrypt), placeholder is other\'s name -->
|
||||
@@ -6962,7 +6962,7 @@
|
||||
<!-- Donation receipts amount title -->
|
||||
<string name="DonationReceiptDetailsFragment__amount">Montant</string>
|
||||
<!-- Donation receipts thanks -->
|
||||
<string name="DonationReceiptDetailsFragment__thank_you_for_supporting">Thank you for supporting Signal. Your contribution helps fuel the mission of protecting free expression and enabling secure global communication for millions around the world, through open source privacy technology. If you’re a resident of the United States, please retain this receipt for your tax records. Signal Technology Foundation is a tax–exempt nonprofit organization in the United States under section 501c3 of the Internal Revenue Code. Our Federal Tax ID is 82–4506840. Signal did not provide any goods or services in consideration of this contribution.</string>
|
||||
<string name="DonationReceiptDetailsFragment__thank_you_for_supporting" tools:ignore="TypographyDashes">Thank you for supporting Signal. Your contribution helps fuel the mission of protecting free expression and enabling secure global communication for millions around the world, through open source privacy technology. If you’re a resident of the United States, please retain this receipt for your tax records. Signal Technology Foundation is a tax-exempt nonprofit organization in the United States under section 501c3 of the Internal Revenue Code. Our Federal Tax ID is 82-4506840. Signal did not provide any goods or services in consideration of this contribution.</string>
|
||||
<!-- Donation reciepts screen empty state title -->
|
||||
<string name="DonationReceiptListFragment__no_receipts">Aucun reçu</string>
|
||||
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
~ SPDX-License-Identifier: AGPL-3.0-only
|
||||
-->
|
||||
<!-- smartling.instruction_comments_enabled = on -->
|
||||
<resources>
|
||||
<resources xmlns:tools="http://schemas.android.com/tools">
|
||||
<!-- Removed by excludeNonTranslatables <string name="app_name" translatable="false">Signal</string> -->
|
||||
|
||||
<!-- Removed by excludeNonTranslatables <string name="install_url" translatable="false">https://signal.org/install</string> -->
|
||||
@@ -405,7 +405,7 @@
|
||||
<string name="ConversationItem_s_deleted_this_message">Scrios %1$s an teachtaireacht seo</string>
|
||||
<string name="ConversationItem_you_deleted_this_message">Scrios tú an teachtaireacht seo</string>
|
||||
<!-- Tappable text shown on a locally-deleted message tombstone, prompting the user to promote it to a delete-for-everyone -->
|
||||
<string name="ConversationItem_delete_for_everyone_question">Delete for everyone?</string>
|
||||
<string name="ConversationItem_delete_for_everyone_question">Scrios do chách?</string>
|
||||
<!-- Conversation message when a message has been deleted by an admin. The placeholder is the admin\'s name. -->
|
||||
<string name="ConversationItem_admin_s_deleted_this_message">Scrios an riarthóir %1$s an teachtaireacht sin</string>
|
||||
<!-- Dialog error message shown when user can\'t download a message from someone else due to a permanent failure (e.g., unable to decrypt), placeholder is other\'s name -->
|
||||
@@ -7448,7 +7448,7 @@
|
||||
<!-- Donation receipts amount title -->
|
||||
<string name="DonationReceiptDetailsFragment__amount">Méid</string>
|
||||
<!-- Donation receipts thanks -->
|
||||
<string name="DonationReceiptDetailsFragment__thank_you_for_supporting">Thank you for supporting Signal. Your contribution helps fuel the mission of protecting free expression and enabling secure global communication for millions around the world, through open source privacy technology. If you’re a resident of the United States, please retain this receipt for your tax records. Signal Technology Foundation is a tax–exempt nonprofit organization in the United States under section 501c3 of the Internal Revenue Code. Our Federal Tax ID is 82–4506840. Signal did not provide any goods or services in consideration of this contribution.</string>
|
||||
<string name="DonationReceiptDetailsFragment__thank_you_for_supporting" tools:ignore="TypographyDashes">Thank you for supporting Signal. Your contribution helps fuel the mission of protecting free expression and enabling secure global communication for millions around the world, through open source privacy technology. If you’re a resident of the United States, please retain this receipt for your tax records. Signal Technology Foundation is a tax-exempt nonprofit organization in the United States under section 501c3 of the Internal Revenue Code. Our Federal Tax ID is 82-4506840. Signal did not provide any goods or services in consideration of this contribution.</string>
|
||||
<!-- Donation reciepts screen empty state title -->
|
||||
<string name="DonationReceiptListFragment__no_receipts">Níl aon admhálacha ann</string>
|
||||
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
~ SPDX-License-Identifier: AGPL-3.0-only
|
||||
-->
|
||||
<!-- smartling.instruction_comments_enabled = on -->
|
||||
<resources>
|
||||
<resources xmlns:tools="http://schemas.android.com/tools">
|
||||
<!-- Removed by excludeNonTranslatables <string name="app_name" translatable="false">Signal</string> -->
|
||||
|
||||
<!-- Removed by excludeNonTranslatables <string name="install_url" translatable="false">https://signal.org/install</string> -->
|
||||
@@ -399,7 +399,7 @@
|
||||
<string name="ConversationItem_s_deleted_this_message">%1$s eliminou esta mensaxe</string>
|
||||
<string name="ConversationItem_you_deleted_this_message">Eliminaches esta mensaxe</string>
|
||||
<!-- Tappable text shown on a locally-deleted message tombstone, prompting the user to promote it to a delete-for-everyone -->
|
||||
<string name="ConversationItem_delete_for_everyone_question">Delete for everyone?</string>
|
||||
<string name="ConversationItem_delete_for_everyone_question">Borrar para todos?</string>
|
||||
<!-- Conversation message when a message has been deleted by an admin. The placeholder is the admin\'s name. -->
|
||||
<string name="ConversationItem_admin_s_deleted_this_message">%1$s, admin., eliminou esta mensaxe</string>
|
||||
<!-- Dialog error message shown when user can\'t download a message from someone else due to a permanent failure (e.g., unable to decrypt), placeholder is other\'s name -->
|
||||
@@ -6962,7 +6962,7 @@
|
||||
<!-- Donation receipts amount title -->
|
||||
<string name="DonationReceiptDetailsFragment__amount">Cantidade</string>
|
||||
<!-- Donation receipts thanks -->
|
||||
<string name="DonationReceiptDetailsFragment__thank_you_for_supporting">Thank you for supporting Signal. Your contribution helps fuel the mission of protecting free expression and enabling secure global communication for millions around the world, through open source privacy technology. If you’re a resident of the United States, please retain this receipt for your tax records. Signal Technology Foundation is a tax–exempt nonprofit organization in the United States under section 501c3 of the Internal Revenue Code. Our Federal Tax ID is 82–4506840. Signal did not provide any goods or services in consideration of this contribution.</string>
|
||||
<string name="DonationReceiptDetailsFragment__thank_you_for_supporting" tools:ignore="TypographyDashes">Thank you for supporting Signal. Your contribution helps fuel the mission of protecting free expression and enabling secure global communication for millions around the world, through open source privacy technology. If you’re a resident of the United States, please retain this receipt for your tax records. Signal Technology Foundation is a tax-exempt nonprofit organization in the United States under section 501c3 of the Internal Revenue Code. Our Federal Tax ID is 82-4506840. Signal did not provide any goods or services in consideration of this contribution.</string>
|
||||
<!-- Donation reciepts screen empty state title -->
|
||||
<string name="DonationReceiptListFragment__no_receipts">Sen comprobantes</string>
|
||||
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
~ SPDX-License-Identifier: AGPL-3.0-only
|
||||
-->
|
||||
<!-- smartling.instruction_comments_enabled = on -->
|
||||
<resources>
|
||||
<resources xmlns:tools="http://schemas.android.com/tools">
|
||||
<!-- Removed by excludeNonTranslatables <string name="app_name" translatable="false">Signal</string> -->
|
||||
|
||||
<!-- Removed by excludeNonTranslatables <string name="install_url" translatable="false">https://signal.org/install</string> -->
|
||||
@@ -399,7 +399,7 @@
|
||||
<string name="ConversationItem_s_deleted_this_message">%1$sએ આ મેસેજ ડિલીટ કર્યો</string>
|
||||
<string name="ConversationItem_you_deleted_this_message">તમે આ મેસેજ ડિલીટ કર્યો</string>
|
||||
<!-- Tappable text shown on a locally-deleted message tombstone, prompting the user to promote it to a delete-for-everyone -->
|
||||
<string name="ConversationItem_delete_for_everyone_question">Delete for everyone?</string>
|
||||
<string name="ConversationItem_delete_for_everyone_question">બધા માટે ડિલીટ કરવું છે?</string>
|
||||
<!-- Conversation message when a message has been deleted by an admin. The placeholder is the admin\'s name. -->
|
||||
<string name="ConversationItem_admin_s_deleted_this_message">એડમિન %1$sએ આ મેસેજ ડિલીટ કર્યો</string>
|
||||
<!-- Dialog error message shown when user can\'t download a message from someone else due to a permanent failure (e.g., unable to decrypt), placeholder is other\'s name -->
|
||||
@@ -6962,7 +6962,7 @@
|
||||
<!-- Donation receipts amount title -->
|
||||
<string name="DonationReceiptDetailsFragment__amount">રકમ</string>
|
||||
<!-- Donation receipts thanks -->
|
||||
<string name="DonationReceiptDetailsFragment__thank_you_for_supporting">Thank you for supporting Signal. Your contribution helps fuel the mission of protecting free expression and enabling secure global communication for millions around the world, through open source privacy technology. If you’re a resident of the United States, please retain this receipt for your tax records. Signal Technology Foundation is a tax–exempt nonprofit organization in the United States under section 501c3 of the Internal Revenue Code. Our Federal Tax ID is 82–4506840. Signal did not provide any goods or services in consideration of this contribution.</string>
|
||||
<string name="DonationReceiptDetailsFragment__thank_you_for_supporting" tools:ignore="TypographyDashes">Thank you for supporting Signal. Your contribution helps fuel the mission of protecting free expression and enabling secure global communication for millions around the world, through open source privacy technology. If you’re a resident of the United States, please retain this receipt for your tax records. Signal Technology Foundation is a tax-exempt nonprofit organization in the United States under section 501c3 of the Internal Revenue Code. Our Federal Tax ID is 82-4506840. Signal did not provide any goods or services in consideration of this contribution.</string>
|
||||
<!-- Donation reciepts screen empty state title -->
|
||||
<string name="DonationReceiptListFragment__no_receipts">કોઈ રસીદ નથી</string>
|
||||
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
~ SPDX-License-Identifier: AGPL-3.0-only
|
||||
-->
|
||||
<!-- smartling.instruction_comments_enabled = on -->
|
||||
<resources>
|
||||
<resources xmlns:tools="http://schemas.android.com/tools">
|
||||
<!-- Removed by excludeNonTranslatables <string name="app_name" translatable="false">Signal</string> -->
|
||||
|
||||
<!-- Removed by excludeNonTranslatables <string name="install_url" translatable="false">https://signal.org/install</string> -->
|
||||
@@ -399,7 +399,7 @@
|
||||
<string name="ConversationItem_s_deleted_this_message">%1$s ने यह मैसेज डिलीट कर दिया है</string>
|
||||
<string name="ConversationItem_you_deleted_this_message">आपने यह मैसेज डिलीट कर दिया है</string>
|
||||
<!-- Tappable text shown on a locally-deleted message tombstone, prompting the user to promote it to a delete-for-everyone -->
|
||||
<string name="ConversationItem_delete_for_everyone_question">Delete for everyone?</string>
|
||||
<string name="ConversationItem_delete_for_everyone_question">सभी के लिए डिलीट करना है?</string>
|
||||
<!-- Conversation message when a message has been deleted by an admin. The placeholder is the admin\'s name. -->
|
||||
<string name="ConversationItem_admin_s_deleted_this_message">ऐडमिन %1$s ने यह मैसेज डिलीट कर दिया है</string>
|
||||
<!-- Dialog error message shown when user can\'t download a message from someone else due to a permanent failure (e.g., unable to decrypt), placeholder is other\'s name -->
|
||||
@@ -6962,7 +6962,7 @@
|
||||
<!-- Donation receipts amount title -->
|
||||
<string name="DonationReceiptDetailsFragment__amount">राशि</string>
|
||||
<!-- Donation receipts thanks -->
|
||||
<string name="DonationReceiptDetailsFragment__thank_you_for_supporting">Thank you for supporting Signal. Your contribution helps fuel the mission of protecting free expression and enabling secure global communication for millions around the world, through open source privacy technology. If you’re a resident of the United States, please retain this receipt for your tax records. Signal Technology Foundation is a tax–exempt nonprofit organization in the United States under section 501c3 of the Internal Revenue Code. Our Federal Tax ID is 82–4506840. Signal did not provide any goods or services in consideration of this contribution.</string>
|
||||
<string name="DonationReceiptDetailsFragment__thank_you_for_supporting" tools:ignore="TypographyDashes">Thank you for supporting Signal. Your contribution helps fuel the mission of protecting free expression and enabling secure global communication for millions around the world, through open source privacy technology. If you’re a resident of the United States, please retain this receipt for your tax records. Signal Technology Foundation is a tax-exempt nonprofit organization in the United States under section 501c3 of the Internal Revenue Code. Our Federal Tax ID is 82-4506840. Signal did not provide any goods or services in consideration of this contribution.</string>
|
||||
<!-- Donation reciepts screen empty state title -->
|
||||
<string name="DonationReceiptListFragment__no_receipts">कोई रसीद नहीं है</string>
|
||||
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
~ SPDX-License-Identifier: AGPL-3.0-only
|
||||
-->
|
||||
<!-- smartling.instruction_comments_enabled = on -->
|
||||
<resources>
|
||||
<resources xmlns:tools="http://schemas.android.com/tools">
|
||||
<!-- Removed by excludeNonTranslatables <string name="app_name" translatable="false">Signal</string> -->
|
||||
|
||||
<!-- Removed by excludeNonTranslatables <string name="install_url" translatable="false">https://signal.org/install</string> -->
|
||||
@@ -403,7 +403,7 @@
|
||||
<string name="ConversationItem_s_deleted_this_message">%1$s je izbrisao/la ovu poruku</string>
|
||||
<string name="ConversationItem_you_deleted_this_message">Izbrisali ste ovu poruku</string>
|
||||
<!-- Tappable text shown on a locally-deleted message tombstone, prompting the user to promote it to a delete-for-everyone -->
|
||||
<string name="ConversationItem_delete_for_everyone_question">Delete for everyone?</string>
|
||||
<string name="ConversationItem_delete_for_everyone_question">Izbrisati za sve?</string>
|
||||
<!-- Conversation message when a message has been deleted by an admin. The placeholder is the admin\'s name. -->
|
||||
<string name="ConversationItem_admin_s_deleted_this_message">Administrator %1$s izbrisao je ovu poruku</string>
|
||||
<!-- Dialog error message shown when user can\'t download a message from someone else due to a permanent failure (e.g., unable to decrypt), placeholder is other\'s name -->
|
||||
@@ -7286,7 +7286,7 @@
|
||||
<!-- Donation receipts amount title -->
|
||||
<string name="DonationReceiptDetailsFragment__amount">Količina</string>
|
||||
<!-- Donation receipts thanks -->
|
||||
<string name="DonationReceiptDetailsFragment__thank_you_for_supporting">Thank you for supporting Signal. Your contribution helps fuel the mission of protecting free expression and enabling secure global communication for millions around the world, through open source privacy technology. If you’re a resident of the United States, please retain this receipt for your tax records. Signal Technology Foundation is a tax–exempt nonprofit organization in the United States under section 501c3 of the Internal Revenue Code. Our Federal Tax ID is 82–4506840. Signal did not provide any goods or services in consideration of this contribution.</string>
|
||||
<string name="DonationReceiptDetailsFragment__thank_you_for_supporting" tools:ignore="TypographyDashes">Thank you for supporting Signal. Your contribution helps fuel the mission of protecting free expression and enabling secure global communication for millions around the world, through open source privacy technology. If you’re a resident of the United States, please retain this receipt for your tax records. Signal Technology Foundation is a tax-exempt nonprofit organization in the United States under section 501c3 of the Internal Revenue Code. Our Federal Tax ID is 82-4506840. Signal did not provide any goods or services in consideration of this contribution.</string>
|
||||
<!-- Donation reciepts screen empty state title -->
|
||||
<string name="DonationReceiptListFragment__no_receipts">Nema računa</string>
|
||||
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
~ SPDX-License-Identifier: AGPL-3.0-only
|
||||
-->
|
||||
<!-- smartling.instruction_comments_enabled = on -->
|
||||
<resources>
|
||||
<resources xmlns:tools="http://schemas.android.com/tools">
|
||||
<!-- Removed by excludeNonTranslatables <string name="app_name" translatable="false">Signal</string> -->
|
||||
|
||||
<!-- Removed by excludeNonTranslatables <string name="install_url" translatable="false">https://signal.org/install</string> -->
|
||||
@@ -399,7 +399,7 @@
|
||||
<string name="ConversationItem_s_deleted_this_message">%1$s törölte ezt az üzenetet</string>
|
||||
<string name="ConversationItem_you_deleted_this_message">Törölted ezt az üzenetet</string>
|
||||
<!-- Tappable text shown on a locally-deleted message tombstone, prompting the user to promote it to a delete-for-everyone -->
|
||||
<string name="ConversationItem_delete_for_everyone_question">Delete for everyone?</string>
|
||||
<string name="ConversationItem_delete_for_everyone_question">Törlés mindenki számára?</string>
|
||||
<!-- Conversation message when a message has been deleted by an admin. The placeholder is the admin\'s name. -->
|
||||
<string name="ConversationItem_admin_s_deleted_this_message">%1$s adminisztrátor törölte ezt az üzenetet</string>
|
||||
<!-- Dialog error message shown when user can\'t download a message from someone else due to a permanent failure (e.g., unable to decrypt), placeholder is other\'s name -->
|
||||
@@ -6962,7 +6962,7 @@
|
||||
<!-- Donation receipts amount title -->
|
||||
<string name="DonationReceiptDetailsFragment__amount">Összeg</string>
|
||||
<!-- Donation receipts thanks -->
|
||||
<string name="DonationReceiptDetailsFragment__thank_you_for_supporting">Thank you for supporting Signal. Your contribution helps fuel the mission of protecting free expression and enabling secure global communication for millions around the world, through open source privacy technology. If you’re a resident of the United States, please retain this receipt for your tax records. Signal Technology Foundation is a tax–exempt nonprofit organization in the United States under section 501c3 of the Internal Revenue Code. Our Federal Tax ID is 82–4506840. Signal did not provide any goods or services in consideration of this contribution.</string>
|
||||
<string name="DonationReceiptDetailsFragment__thank_you_for_supporting" tools:ignore="TypographyDashes">Thank you for supporting Signal. Your contribution helps fuel the mission of protecting free expression and enabling secure global communication for millions around the world, through open source privacy technology. If you’re a resident of the United States, please retain this receipt for your tax records. Signal Technology Foundation is a tax-exempt nonprofit organization in the United States under section 501c3 of the Internal Revenue Code. Our Federal Tax ID is 82-4506840. Signal did not provide any goods or services in consideration of this contribution.</string>
|
||||
<!-- Donation reciepts screen empty state title -->
|
||||
<string name="DonationReceiptListFragment__no_receipts">Nincsenek nyugták</string>
|
||||
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
~ SPDX-License-Identifier: AGPL-3.0-only
|
||||
-->
|
||||
<!-- smartling.instruction_comments_enabled = on -->
|
||||
<resources>
|
||||
<resources xmlns:tools="http://schemas.android.com/tools">
|
||||
<!-- Removed by excludeNonTranslatables <string name="app_name" translatable="false">Signal</string> -->
|
||||
|
||||
<!-- Removed by excludeNonTranslatables <string name="install_url" translatable="false">https://signal.org/install</string> -->
|
||||
@@ -397,7 +397,7 @@
|
||||
<string name="ConversationItem_s_deleted_this_message">%1$s menghapus pesan ini</string>
|
||||
<string name="ConversationItem_you_deleted_this_message">Anda menghapus pesan ini</string>
|
||||
<!-- Tappable text shown on a locally-deleted message tombstone, prompting the user to promote it to a delete-for-everyone -->
|
||||
<string name="ConversationItem_delete_for_everyone_question">Delete for everyone?</string>
|
||||
<string name="ConversationItem_delete_for_everyone_question">Hapus untuk semua?</string>
|
||||
<!-- Conversation message when a message has been deleted by an admin. The placeholder is the admin\'s name. -->
|
||||
<string name="ConversationItem_admin_s_deleted_this_message">Admin %1$s menghapus pesan ini</string>
|
||||
<!-- Dialog error message shown when user can\'t download a message from someone else due to a permanent failure (e.g., unable to decrypt), placeholder is other\'s name -->
|
||||
@@ -6800,7 +6800,7 @@
|
||||
<!-- Donation receipts amount title -->
|
||||
<string name="DonationReceiptDetailsFragment__amount">Jumlah</string>
|
||||
<!-- Donation receipts thanks -->
|
||||
<string name="DonationReceiptDetailsFragment__thank_you_for_supporting">Thank you for supporting Signal. Your contribution helps fuel the mission of protecting free expression and enabling secure global communication for millions around the world, through open source privacy technology. If you’re a resident of the United States, please retain this receipt for your tax records. Signal Technology Foundation is a tax–exempt nonprofit organization in the United States under section 501c3 of the Internal Revenue Code. Our Federal Tax ID is 82–4506840. Signal did not provide any goods or services in consideration of this contribution.</string>
|
||||
<string name="DonationReceiptDetailsFragment__thank_you_for_supporting" tools:ignore="TypographyDashes">Thank you for supporting Signal. Your contribution helps fuel the mission of protecting free expression and enabling secure global communication for millions around the world, through open source privacy technology. If you’re a resident of the United States, please retain this receipt for your tax records. Signal Technology Foundation is a tax-exempt nonprofit organization in the United States under section 501c3 of the Internal Revenue Code. Our Federal Tax ID is 82-4506840. Signal did not provide any goods or services in consideration of this contribution.</string>
|
||||
<!-- Donation reciepts screen empty state title -->
|
||||
<string name="DonationReceiptListFragment__no_receipts">Tidak ada resi</string>
|
||||
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
~ SPDX-License-Identifier: AGPL-3.0-only
|
||||
-->
|
||||
<!-- smartling.instruction_comments_enabled = on -->
|
||||
<resources>
|
||||
<resources xmlns:tools="http://schemas.android.com/tools">
|
||||
<!-- Removed by excludeNonTranslatables <string name="app_name" translatable="false">Signal</string> -->
|
||||
|
||||
<!-- Removed by excludeNonTranslatables <string name="install_url" translatable="false">https://signal.org/install</string> -->
|
||||
@@ -399,7 +399,7 @@
|
||||
<string name="ConversationItem_s_deleted_this_message">%1$s ha eliminato questo messaggio</string>
|
||||
<string name="ConversationItem_you_deleted_this_message">Hai eliminato questo messaggio</string>
|
||||
<!-- Tappable text shown on a locally-deleted message tombstone, prompting the user to promote it to a delete-for-everyone -->
|
||||
<string name="ConversationItem_delete_for_everyone_question">Delete for everyone?</string>
|
||||
<string name="ConversationItem_delete_for_everyone_question">Eliminare per tutti?</string>
|
||||
<!-- Conversation message when a message has been deleted by an admin. The placeholder is the admin\'s name. -->
|
||||
<string name="ConversationItem_admin_s_deleted_this_message">L\'admin %1$s ha eliminato questo messaggio</string>
|
||||
<!-- Dialog error message shown when user can\'t download a message from someone else due to a permanent failure (e.g., unable to decrypt), placeholder is other\'s name -->
|
||||
@@ -681,7 +681,7 @@
|
||||
<!-- Title of the dialog shown when re-requesting an expired attachment from your primary device fails -->
|
||||
<string name="ConversationFragment_attachment_backfill_failed_title">Impossibile scaricare il contenuto multimediale</string>
|
||||
<!-- Body of the dialog shown when your phone didn\'t respond to a request to re-send an expired attachment -->
|
||||
<string name="ConversationFragment_attachment_backfill_timeout">Controlla la connessione internet di questo dispositivo e del tuo telefono. Apri Signal sul tuo telefono, poi riprova a effettuare il download.</string>
|
||||
<string name="ConversationFragment_attachment_backfill_timeout">Controlla la connessione Internet di questo dispositivo e del tuo telefono. Apri Signal sul tuo telefono, poi riprova a effettuare il download.</string>
|
||||
<!-- Body of the dialog shown when your phone no longer has the attachment you tried to download -->
|
||||
<string name="ConversationFragment_attachment_backfill_not_found">Questo contenuto multimediale non è più disponibile sul tuo telefono e non può essere scaricato.</string>
|
||||
<!-- Dialog for how to long to keep a messaged pinned for -->
|
||||
@@ -984,7 +984,7 @@
|
||||
<string name="BackupsPreferenceFragment__d_so_far">%1$d finora…</string>
|
||||
<!-- Show percentage of completion of backup -->
|
||||
<string name="BackupsPreferenceFragment__s_so_far">%1$s%% finora…</string>
|
||||
<string name="BackupsPreferenceFragment_signal_requires_external_storage_permission_in_order_to_create_backups">Signal richiede l\'autorizzazione per creare backup in memoria, ma è stata negata in modo permanente. Si prega di continuare con le impostazioni dell\'app, selezionare \"Autorizzazioni\", quindi abilitare \"Archiviazione\".</string>
|
||||
<string name="BackupsPreferenceFragment_signal_requires_external_storage_permission_in_order_to_create_backups">Signal richiede l\'autorizzazione per creare backup in memoria, ma è stata negata in modo permanente. Vai alle impostazioni dell\'app, seleziona \"Autorizzazioni\", e abilita \"Archiviazione\".</string>
|
||||
<!-- Title of dialog shown when picking the time to perform a chat backup -->
|
||||
<string name="BackupsPreferenceFragment__set_backup_time">Imposta orario per il backup</string>
|
||||
|
||||
@@ -1825,7 +1825,7 @@
|
||||
<string name="MediaOverviewActivity_sent_by_s_to_s">Inviato da %1$s a %2$s</string>
|
||||
<string name="MediaOverviewActivity_sent_by_you_to_s">Inviato da te a %1$s</string>
|
||||
<!-- Error message shown when the user is trying to open a media that is not sent yet. -->
|
||||
<string name="MediaOverviewActivity_this_media_is_not_sent_yet">Questo media non è stato ancora inviato.</string>
|
||||
<string name="MediaOverviewActivity_this_media_is_not_sent_yet">Questo contenuto multimediale non è stato ancora inviato.</string>
|
||||
<string name="MediaOverviewActivity_jump_to_message">Passa al messaggio</string>
|
||||
|
||||
<!-- Megaphones -->
|
||||
@@ -1934,7 +1934,7 @@
|
||||
<string name="MessageRecord_s_set_disappearing_message_time_to_s">%1$s ha impostato il timer dei messaggi temporanei a %2$s.</string>
|
||||
<string name="MessageRecord_disappearing_message_time_set_to_s">Il timer dei messaggi temporanei è stato impostato a %1$s.</string>
|
||||
<string name="MessageRecord_this_group_was_updated_to_a_new_group">Questo gruppo è stato aggiornato a un Nuovo Gruppo.</string>
|
||||
<string name="MessageRecord_you_couldnt_be_added_to_the_new_group_and_have_been_invited_to_join">Non è stato possibile aggiungerti al Nuovo Gruppo e sei stato invitato a unirti.</string>
|
||||
<string name="MessageRecord_you_couldnt_be_added_to_the_new_group_and_have_been_invited_to_join">Non è stato possibile aggiungerti al Nuovo Gruppo e hai ricevuto un invito a unirti.</string>
|
||||
<string name="MessageRecord_chat_session_refreshed">Sessione di chat aggiornata</string>
|
||||
<plurals name="MessageRecord_members_couldnt_be_added_to_the_new_group_and_have_been_invited">
|
||||
<item quantity="one">Una persona non può essere aggiunta al Nuovo gruppo ed è stata invitata a unirsi.</item>
|
||||
@@ -1962,8 +1962,8 @@
|
||||
<string name="MessageRecord_you_added_s">Hai aggiunto %1$s.</string>
|
||||
<string name="MessageRecord_s_added_s">%1$s ha aggiunto %2$s.</string>
|
||||
<string name="MessageRecord_s_added_you">%1$s ti ha aggiunto al gruppo.</string>
|
||||
<string name="MessageRecord_you_joined_the_group">Ti sei unito al gruppo.</string>
|
||||
<string name="MessageRecord_s_joined_the_group">%1$s si è unito al gruppo.</string>
|
||||
<string name="MessageRecord_you_joined_the_group">Ora fai parte del gruppo.</string>
|
||||
<string name="MessageRecord_s_joined_the_group">%1$s ora fa parte del gruppo.</string>
|
||||
|
||||
<!-- GV2 member removals -->
|
||||
<string name="MessageRecord_you_removed_s">Hai rimosso %1$s.</string>
|
||||
@@ -1988,12 +1988,12 @@
|
||||
|
||||
<!-- GV2 invitations -->
|
||||
<string name="MessageRecord_you_invited_s_to_the_group">Hai invitato %1$s al gruppo.</string>
|
||||
<string name="MessageRecord_s_invited_you_to_the_group">%1$s ti ha invitato al gruppo.</string>
|
||||
<string name="MessageRecord_s_invited_you_to_the_group">%1$s ti ha mandato un invito al gruppo.</string>
|
||||
<plurals name="MessageRecord_s_invited_members">
|
||||
<item quantity="one">%1$s ha invitato 1 persona a entrare nel gruppo.</item>
|
||||
<item quantity="other">%1$s ha invitato %2$d persone a entrare nel gruppo.</item>
|
||||
</plurals>
|
||||
<string name="MessageRecord_you_were_invited_to_the_group">Sei stato invitato al gruppo.</string>
|
||||
<string name="MessageRecord_you_were_invited_to_the_group">Hai ricevuto un invito al gruppo.</string>
|
||||
<plurals name="MessageRecord_d_people_were_invited_to_the_group">
|
||||
<item quantity="one">1 persona è stata invitata a entrare nel gruppo.</item>
|
||||
<item quantity="other">%1$d persone sono state invitate a entrare nel gruppo.</item>
|
||||
@@ -2086,7 +2086,7 @@
|
||||
<string name="MessageRecord_the_group_link_has_been_reset">Il link del gruppo è stato reimpostato.</string>
|
||||
|
||||
<!-- GV2 group link joins -->
|
||||
<string name="MessageRecord_you_joined_the_group_via_the_group_link">Ti sei unito al gruppo tramite il link del gruppo.</string>
|
||||
<string name="MessageRecord_you_joined_the_group_via_the_group_link">Ora partecipi al gruppo tramite il link del gruppo.</string>
|
||||
<string name="MessageRecord_s_joined_the_group_via_the_group_link">%1$s si è unito al gruppo tramite il link del gruppo.</string>
|
||||
|
||||
<!-- GV2 group link requests -->
|
||||
@@ -2251,8 +2251,8 @@
|
||||
<string name="MessageRequestBottomView_upgrade_this_group_to_activate_new_features">Questo Gruppo Legacy non può essere più usato. Crea un altro gruppo per attivare nuove funzioni come le @menzioni e gli admin.</string>
|
||||
<string name="MessageRequestBottomView_this_legacy_group_can_no_longer_be_used">Questo Gruppo Legacy non può più essere usato perché è troppo grande. La dimensione massima del gruppo è %1$d.</string>
|
||||
<string name="MessageRequestBottomView_continue_your_conversation_with_s_and_share_your_name_and_photo">Vuoi continuare questa chat con %1$s e condividere il tuo nome e la tua foto con questo utente?</string>
|
||||
<string name="MessageRequestBottomView_do_you_want_to_join_this_group_they_wont_know_youve_seen_their_messages_until_you_accept">Unirsi a questo gruppo e condividere il tuo nome e la tua foto con i suoi membri? Non sapranno che hai visto i loro messaggi finché non accetti.</string>
|
||||
<string name="MessageRequestBottomView_do_you_want_to_join_this_group_you_wont_see_their_messages">Unirsi a questo gruppo e condividere il tuo nome e la tua foto con i suoi membri? Non vedrai i loro messaggi finché non avrai accettato.</string>
|
||||
<string name="MessageRequestBottomView_do_you_want_to_join_this_group_they_wont_know_youve_seen_their_messages_until_you_accept">Vuoi unirti a questo gruppo e condividere il tuo nome e la tua foto con i suoi membri? Non sapranno che hai visto i loro messaggi finché non accetti.</string>
|
||||
<string name="MessageRequestBottomView_do_you_want_to_join_this_group_you_wont_see_their_messages">Vuoi unirti a questo gruppo e condividere il tuo nome e la tua foto con i suoi membri? Non vedrai i loro messaggi finché non avrai accettato.</string>
|
||||
<!-- Shown when you are invited to a group and explains that until you accept the invitation to the group, members will not know that you have seen their messages. -->
|
||||
<string name="MessageRequestBottomView_join_this_group_they_wont_know_youve_seen_their_messages_until_you_accept">Vuoi unirti a questo gruppo? Non sapranno che hai visto i loro messaggi finché non accetti.</string>
|
||||
<string name="MessageRequestBottomView_unblock_this_group_and_share_your_name_and_photo_with_its_members">Vuoi sbloccare questo gruppo e condividere il tuo nome e la tua foto con chi ne fa parte? Non riceverai messaggi finché non sbloccherai il gruppo.</string>
|
||||
@@ -3071,7 +3071,7 @@
|
||||
<string name="SubmitDebugLogActivity_close">Chiudi</string>
|
||||
<string name="SubmitDebugLogActivity_this_log_will_be_posted_publicly_online_for_contributors">Questo log verrà postato pubblicamente online per essere visualizzato dai contributori. Puoi esaminarlo prima di caricarlo.</string>
|
||||
<!-- Banner message shown while submitting debug log -->
|
||||
<string name="SubmitDebugLogActivity_your_log_will_be_posted_online">Quando fai clic su Invia, il tuo log sarà pubblicato online per 30 giorni su un URL unico e non pubblicato. Puoi prima salvarlo localmente.</string>
|
||||
<string name="SubmitDebugLogActivity_your_log_will_be_posted_online">Quando clicchi su Invia, il tuo log sarà pubblicato online per 30 giorni su un URL unico e non pubblicato. Puoi prima salvarlo localmente.</string>
|
||||
<!-- Debug log level names to filter by levels. -->
|
||||
<!-- Removed by excludeNonTranslatables <string name="SubmitDebugLogActivity_signal_uncaught_exception" translatable="false">Uncaught</string> -->
|
||||
<!-- Removed by excludeNonTranslatables <string name="SubmitDebugLogActivity_verbose" translatable="false">Verbose</string> -->
|
||||
@@ -3302,7 +3302,7 @@
|
||||
<string name="MediaPreviewActivity_unable_to_play_media">Impossibile riprodurre il video.</string>
|
||||
<!-- Toast shown when there is an error finding a media-based message -->
|
||||
<string name="MediaPreviewActivity_error_finding_message">Errore durante la ricerca del messaggio.</string>
|
||||
<string name="MediaPreviewActivity_cant_find_an_app_able_to_share_this_media">Impossibile trovare un\'app per condividere questo media.</string>
|
||||
<string name="MediaPreviewActivity_cant_find_an_app_able_to_share_this_media">Impossibile trovare un\'app per condividere questo contenuto multimediale.</string>
|
||||
<string name="MediaPreviewActivity_dismiss_due_to_error">Chiudi</string>
|
||||
<string name="MediaPreviewFragment_edit_media_error">Errore nel video o nell\'immagine</string>
|
||||
<!-- This is displayed as a toast notification when we encounter an error deleting a message, including potentially on other people\'s devices -->
|
||||
@@ -3442,7 +3442,7 @@
|
||||
<string name="AttachmentSaver__unable_to_write_to_external_storage_without_permission">Impossibile salvare nella memoria esterna senza l\'autorizzazione</string>
|
||||
|
||||
<!-- Dialog title shown when attempting to save media that has been offloaded from the device by the storage optimization feature. -->
|
||||
<string name="AttachmentSaver__cant_save_media">Impossibile salvare questo media</string>
|
||||
<string name="AttachmentSaver__cant_save_media">Impossibile salvare questo contenuto multimediale</string>
|
||||
<!-- Dialog message explaining that media cannot be saved because it has been offloaded from the device by the storage optimization feature. -->
|
||||
<string name="AttachmentSaver__media_offloaded_message">Questo contenuto multimediale è stato trasferito dal tuo dispositivo su un backup remoto perché hai attivato l\'opzione \"Ottimizza lo spazio di archiviazione di Signal\". Puoi scaricare gli elementi uno alla volta o disattivare questa opzione per scaricare tutti i contenuti multimediali sul tuo dispositivo.</string>
|
||||
<!-- Dialog title shown when attempting to save multiple media items, some of which have been offloaded from the device by the storage optimization feature. -->
|
||||
@@ -3824,7 +3824,7 @@
|
||||
<string name="device_list_fragment__link_new_device">Collega nuovo dispositivo</string>
|
||||
|
||||
<!-- expiration -->
|
||||
<string name="expiration_off">No</string>
|
||||
<string name="expiration_off">Off</string>
|
||||
|
||||
<plurals name="expiration_seconds">
|
||||
<item quantity="one">%1$d secondo</item>
|
||||
@@ -4008,7 +4008,7 @@
|
||||
<!-- Title for auto verification education sheet -->
|
||||
<string name="VerifyAutomaticallyEducationSheet__title">Signal ora può verificare automaticamente la crittografia delle chiavi</string>
|
||||
<!-- Body for auto verification education sheet -->
|
||||
<string name="VerifyAutomaticallyEducationSheet__body">Per le chat avviate usando il numero di telefono, Signal conferma automaticamente che la conversazione sia sicura tramite la \"trasparenza delle chiavi\".Per maggiore sicurezza, puoi comunque effettuare una verifica manuale scansionando un codice QR o confrontando il codice di sicurezza.</string>
|
||||
<string name="VerifyAutomaticallyEducationSheet__body">Per le chat avviate usando il numero di telefono, Signal conferma automaticamente che la conversazione sia sicura tramite la \"trasparenza delle chiavi\". Per maggiore sicurezza, puoi comunque effettuare una verifica manuale scansionando un codice QR o un codice di sicurezza.</string>
|
||||
<!-- Button to learn more about automatic verification -->
|
||||
<string name="VerifyAutomaticallyEducationSheet__learn_more">Scopri di più</string>
|
||||
<!-- Button to go to verification page -->
|
||||
@@ -4385,8 +4385,8 @@
|
||||
<string name="preferences_communication__sealed_sender_allow_from_anyone_description">Abilita il mittente sigillato per i messaggi in arrivo da non-contatti e persone con cui non hai condiviso il tuo profilo.</string>
|
||||
<string name="preferences_proxy">Proxy</string>
|
||||
<string name="preferences_use_proxy">Usa proxy</string>
|
||||
<string name="preferences_off">No</string>
|
||||
<string name="preferences_on">Sì</string>
|
||||
<string name="preferences_off">Off</string>
|
||||
<string name="preferences_on">On</string>
|
||||
<string name="preferences_proxy_address">Indirizzo proxy</string>
|
||||
<string name="preferences_only_use_a_proxy_if">Usa un proxy solo se non sei in grado di connetterti a Signal su dati mobili o Wi-Fi.</string>
|
||||
<string name="preferences_share">Condividi</string>
|
||||
@@ -5090,7 +5090,7 @@
|
||||
|
||||
<!-- ScreenLockSettingsFragment -->
|
||||
<!-- Text shown when screen lock is not enabled -->
|
||||
<string name="ScreenLockSettingsFragment__off">No</string>
|
||||
<string name="ScreenLockSettingsFragment__off">Off</string>
|
||||
<!-- Text shown with toggle that when switched on will enable screen lock -->
|
||||
<string name="ScreenLockSettingsFragment__use_screen_lock">Usa il blocco schermo</string>
|
||||
<!-- Description of what screen locking will do and how notification content will not be shown when screen is locked -->
|
||||
@@ -5879,7 +5879,7 @@
|
||||
|
||||
<!-- ChatFoldersFragment -->
|
||||
<!-- Description of what chat folders are -->
|
||||
<string name="ChatFoldersFragment__organize_your_chats">Suddividi le tue chat in più cartelle e passa al volo da una cartella all\'altra nell\'elenco delle chat.</string>
|
||||
<string name="ChatFoldersFragment__organize_your_chats">Organizza le tue chat in più cartelle e passa al volo da una cartella all\'altra nell\'elenco delle chat.</string>
|
||||
<!-- Header for section showing current chat folders -->
|
||||
<string name="ChatFoldersFragment__folders">Cartelle</string>
|
||||
<!-- Text next to button that allows users to create a new chat folder -->
|
||||
@@ -6032,7 +6032,7 @@
|
||||
<!-- ExpireTimerSettingsFragment -->
|
||||
<string name="ExpireTimerSettingsFragment__when_enabled_new_messages_sent_and_received_in_new_chats_started_by_you_will_disappear_after_they_have_been_seen">Una volta abilitati, i nuovi messaggi inviati e ricevuti in nuove chat avviate da te scompariranno dopo essere stati visti.</string>
|
||||
<string name="ExpireTimerSettingsFragment__when_enabled_new_messages_sent_and_received_in_this_chat_will_disappear_after_they_have_been_seen">Una volta abilitati, i nuovi messaggi inviati e ricevuti in questa chat scompariranno dopo essere stati visti.</string>
|
||||
<string name="ExpireTimerSettingsFragment__off">No</string>
|
||||
<string name="ExpireTimerSettingsFragment__off">Off</string>
|
||||
<string name="ExpireTimerSettingsFragment__4_weeks">4 settimane</string>
|
||||
<string name="ExpireTimerSettingsFragment__1_week">1 settimana</string>
|
||||
<string name="ExpireTimerSettingsFragment__1_day">1 giorno</string>
|
||||
@@ -6214,7 +6214,7 @@
|
||||
<string name="ConversationSettingsFragment__phone_number">Numero di telefono</string>
|
||||
<string name="ConversationSettingsFragment__get_badges">Ottieni i badge per il tuo profilo supportando Signal. Tocca un badge per saperne di più.</string>
|
||||
<!-- Error message shown when the user is trying to open a media that is not sent yet. -->
|
||||
<string name="ConversationSettingsFragment__this_media_is_not_sent_yet">Questo media non è stato ancora inviato.</string>
|
||||
<string name="ConversationSettingsFragment__this_media_is_not_sent_yet">Questo contenuto multimediale non è stato ancora inviato.</string>
|
||||
<!-- End group option in group conversation settings screen -->
|
||||
<string name="ConversationSettingsFragment__end_group">Chiudi gruppo</string>
|
||||
<!-- Banner shown at the top of group settings when the group has been ended -->
|
||||
@@ -6831,7 +6831,7 @@
|
||||
<!-- Button that starts the create new notification profile flow -->
|
||||
<string name="NotificationProfilesFragment__new_profile">Nuovo profilo</string>
|
||||
<!-- Profile active status, indicating the current profile is on for an unknown amount of time -->
|
||||
<string name="NotificationProfilesFragment__on">Attivo</string>
|
||||
<string name="NotificationProfilesFragment__on">On</string>
|
||||
|
||||
<!-- Button use to permanently delete a notification profile -->
|
||||
<string name="NotificationProfileDetails__delete_profile">Elimina profilo</string>
|
||||
@@ -6848,9 +6848,9 @@
|
||||
<!-- Schedule description if all days are selected -->
|
||||
<string name="NotificationProfileDetails__everyday">Tutti i giorni</string>
|
||||
<!-- Profile status on if it is the active profile -->
|
||||
<string name="NotificationProfileDetails__on">Attivo</string>
|
||||
<string name="NotificationProfileDetails__on">On</string>
|
||||
<!-- Profile status on if it is not the active profile -->
|
||||
<string name="NotificationProfileDetails__off">Non attivo</string>
|
||||
<string name="NotificationProfileDetails__off">Off</string>
|
||||
<!-- Description of hours for schedule (start to end) times -->
|
||||
<string name="NotificationProfileDetails__s_to_s">%1$s a %2$s</string>
|
||||
<!-- Section header for exceptions to the notification profile -->
|
||||
@@ -6962,7 +6962,7 @@
|
||||
<!-- Donation receipts amount title -->
|
||||
<string name="DonationReceiptDetailsFragment__amount">Importo</string>
|
||||
<!-- Donation receipts thanks -->
|
||||
<string name="DonationReceiptDetailsFragment__thank_you_for_supporting">Thank you for supporting Signal. Your contribution helps fuel the mission of protecting free expression and enabling secure global communication for millions around the world, through open source privacy technology. If you’re a resident of the United States, please retain this receipt for your tax records. Signal Technology Foundation is a tax–exempt nonprofit organization in the United States under section 501c3 of the Internal Revenue Code. Our Federal Tax ID is 82–4506840. Signal did not provide any goods or services in consideration of this contribution.</string>
|
||||
<string name="DonationReceiptDetailsFragment__thank_you_for_supporting" tools:ignore="TypographyDashes">Thank you for supporting Signal. Your contribution helps fuel the mission of protecting free expression and enabling secure global communication for millions around the world, through open source privacy technology. If you’re a resident of the United States, please retain this receipt for your tax records. Signal Technology Foundation is a tax-exempt nonprofit organization in the United States under section 501c3 of the Internal Revenue Code. Our Federal Tax ID is 82-4506840. Signal did not provide any goods or services in consideration of this contribution.</string>
|
||||
<!-- Donation reciepts screen empty state title -->
|
||||
<string name="DonationReceiptListFragment__no_receipts">Nessun destinatario</string>
|
||||
|
||||
@@ -7139,7 +7139,7 @@
|
||||
<!-- Label for story replies tab -->
|
||||
<string name="StoryViewsAndRepliesDialogFragment__replies">Risposte</string>
|
||||
<!-- Description of action for reaction button -->
|
||||
<string name="StoryReplyComposer__react_to_this_story">Reagisci a questa Storia</string>
|
||||
<string name="StoryReplyComposer__react_to_this_story">Invia una reazione a questa Storia</string>
|
||||
<!-- Displayed when the user is replying privately to someone who replied to one of their stories -->
|
||||
<string name="StoryReplyComposer__reply_to_s">Rispondi a %1$s</string>
|
||||
<!-- Context menu item to privately reply to a story response -->
|
||||
@@ -7199,7 +7199,7 @@
|
||||
<!-- Signal connections sheet bullet point 3 -->
|
||||
<string name="SignalConnectionsBottomSheet__having_them_in_your_system_contacts">Inserendole nei contatti del tuo telefono</string>
|
||||
<!-- Note at the bottom of the Signal connections sheet -->
|
||||
<string name="SignalConnectionsBottomSheet__your_connections_can_see_your_name">"Le tue connessioni possono vedere il tuo nome e la tua foto, così come i post su \"La mia Storia\", a meno che tu non decida di nasconderli a qualcuno."</string>
|
||||
<string name="SignalConnectionsBottomSheet__your_connections_can_see_your_name">"Le tue Amicizie possono vedere il tuo nome e la tua foto, così come i post su \"La mia Storia\", a meno che tu non decida di nasconderli a qualcuno."</string>
|
||||
<!-- Clickable option to add a viewer to a custom story -->
|
||||
<string name="PrivateStorySettingsFragment__add_viewer">Aggiungi persona</string>
|
||||
<!-- Clickable option to delete a custom story -->
|
||||
@@ -8704,7 +8704,7 @@
|
||||
|
||||
<!-- UpgradeToStartMediaBackupSheet -->
|
||||
<!-- Title on a bottom sheet, detailing that in order to start backing up media, they need to upgrade to paid backup storage -->
|
||||
<string name="UpgradeToStartMediaBackupSheet__this_media_is_no_longer_available">Questo media non è più disponibile</string>
|
||||
<string name="UpgradeToStartMediaBackupSheet__this_media_is_no_longer_available">Questo contenuto multimediale non è più disponibile</string>
|
||||
<!-- Subtitle of bottom sheet detailing that with their current plan, there is a limitation to how many days media is stored for. Placeholder is number of days. -->
|
||||
<plurals name="UpgradeToStartMediaBackupSheet__your_current_signal_backup_plan_includes">
|
||||
<item quantity="one">Il tuo piano per i backup su Signal include %1$d giorno di media (il più recente). Se desideri un backup completo di tutti i tuoi media, passa a un altro abbonamento.</item>
|
||||
@@ -8715,7 +8715,7 @@
|
||||
|
||||
<!-- MediaNoLongerAvailableSheet -->
|
||||
<!-- Title on a bottom sheet explaining that the given media is no longer available. -->
|
||||
<string name="MediaNoLongerAvailableSheet__this_media_is_no_longer_available">Questo media non è più disponibile</string>
|
||||
<string name="MediaNoLongerAvailableSheet__this_media_is_no_longer_available">Questo contenuto multimediale non è più disponibile</string>
|
||||
<!-- Body on a bottom sheet explaining that the user can enable backups -->
|
||||
<string name="MediaNoLongerAvailableSheet__to_start_backing_up_all_your_media">Per cominciare il backup di tutti i media, concedi l\'autorizzazione per i Backup sicuri di Signal e scegli l\'abbonamento.</string>
|
||||
<!-- Primary action button on bottom sheet -->
|
||||
@@ -9853,7 +9853,7 @@
|
||||
<string name="CallQualitySheet__try_again">Riprova</string>
|
||||
|
||||
<!-- Message body when someone pins a message where %1$s is the name of the person -->
|
||||
<string name="PinnedMessage__s_pinned_a_message">%1$s ha fissato un messaggio</string>
|
||||
<string name="PinnedMessage__s_pinned_a_message">%1$s ha messo in evidenza un messaggio</string>
|
||||
<!-- Message body when you pin a message -->
|
||||
<string name="PinnedMessage__you_pinned_a_message">Hai messo in evidenza un messaggio</string>
|
||||
<!-- Button body to go to the pinned message -->
|
||||
@@ -9875,7 +9875,7 @@
|
||||
<!-- Caption shown when the pinned message is a view once media -->
|
||||
<string name="PinnedMessage__view_once">Media visualizzabile una volta</string>
|
||||
<!-- Context menu option to unpin the message -->
|
||||
<string name="PinnedMessage__unpin_message">Togli dai fissati</string>
|
||||
<string name="PinnedMessage__unpin_message">Togli da In evidenza</string>
|
||||
<!-- Context menu option to view all the message -->
|
||||
<string name="PinnedMessage__view_all_messages">Vedi tutti i messaggi</string>
|
||||
<!-- Text to unpin all messages -->
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
~ SPDX-License-Identifier: AGPL-3.0-only
|
||||
-->
|
||||
<!-- smartling.instruction_comments_enabled = on -->
|
||||
<resources>
|
||||
<resources xmlns:tools="http://schemas.android.com/tools">
|
||||
<!-- Removed by excludeNonTranslatables <string name="app_name" translatable="false">Signal</string> -->
|
||||
|
||||
<!-- Removed by excludeNonTranslatables <string name="install_url" translatable="false">https://signal.org/install</string> -->
|
||||
@@ -403,7 +403,7 @@
|
||||
<string name="ConversationItem_s_deleted_this_message">ההודעה הזו נמחקה על ידי %1$s</string>
|
||||
<string name="ConversationItem_you_deleted_this_message">ההודעה הזו נמחקה על ידך</string>
|
||||
<!-- Tappable text shown on a locally-deleted message tombstone, prompting the user to promote it to a delete-for-everyone -->
|
||||
<string name="ConversationItem_delete_for_everyone_question">Delete for everyone?</string>
|
||||
<string name="ConversationItem_delete_for_everyone_question">למחוק עבור כולם?</string>
|
||||
<!-- Conversation message when a message has been deleted by an admin. The placeholder is the admin\'s name. -->
|
||||
<string name="ConversationItem_admin_s_deleted_this_message">ההודעה הזו נמחקה על ידי מנהל/ת הקבוצה %1$s</string>
|
||||
<!-- Dialog error message shown when user can\'t download a message from someone else due to a permanent failure (e.g., unable to decrypt), placeholder is other\'s name -->
|
||||
@@ -7286,7 +7286,7 @@
|
||||
<!-- Donation receipts amount title -->
|
||||
<string name="DonationReceiptDetailsFragment__amount">סכום</string>
|
||||
<!-- Donation receipts thanks -->
|
||||
<string name="DonationReceiptDetailsFragment__thank_you_for_supporting">Thank you for supporting Signal. Your contribution helps fuel the mission of protecting free expression and enabling secure global communication for millions around the world, through open source privacy technology. If you’re a resident of the United States, please retain this receipt for your tax records. Signal Technology Foundation is a tax–exempt nonprofit organization in the United States under section 501c3 of the Internal Revenue Code. Our Federal Tax ID is 82–4506840. Signal did not provide any goods or services in consideration of this contribution.</string>
|
||||
<string name="DonationReceiptDetailsFragment__thank_you_for_supporting" tools:ignore="TypographyDashes">Thank you for supporting Signal. Your contribution helps fuel the mission of protecting free expression and enabling secure global communication for millions around the world, through open source privacy technology. If you’re a resident of the United States, please retain this receipt for your tax records. Signal Technology Foundation is a tax-exempt nonprofit organization in the United States under section 501c3 of the Internal Revenue Code. Our Federal Tax ID is 82-4506840. Signal did not provide any goods or services in consideration of this contribution.</string>
|
||||
<!-- Donation reciepts screen empty state title -->
|
||||
<string name="DonationReceiptListFragment__no_receipts">אין קבלות</string>
|
||||
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
~ SPDX-License-Identifier: AGPL-3.0-only
|
||||
-->
|
||||
<!-- smartling.instruction_comments_enabled = on -->
|
||||
<resources>
|
||||
<resources xmlns:tools="http://schemas.android.com/tools">
|
||||
<!-- Removed by excludeNonTranslatables <string name="app_name" translatable="false">Signal</string> -->
|
||||
|
||||
<!-- Removed by excludeNonTranslatables <string name="install_url" translatable="false">https://signal.org/install</string> -->
|
||||
@@ -397,7 +397,7 @@
|
||||
<string name="ConversationItem_s_deleted_this_message">%1$sがこのメッセージを消去しました</string>
|
||||
<string name="ConversationItem_you_deleted_this_message">メッセージを消去しました</string>
|
||||
<!-- Tappable text shown on a locally-deleted message tombstone, prompting the user to promote it to a delete-for-everyone -->
|
||||
<string name="ConversationItem_delete_for_everyone_question">Delete for everyone?</string>
|
||||
<string name="ConversationItem_delete_for_everyone_question">全員に対して消去しますか?</string>
|
||||
<!-- Conversation message when a message has been deleted by an admin. The placeholder is the admin\'s name. -->
|
||||
<string name="ConversationItem_admin_s_deleted_this_message">管理者の%1$sがこのメッセージを消去しました</string>
|
||||
<!-- Dialog error message shown when user can\'t download a message from someone else due to a permanent failure (e.g., unable to decrypt), placeholder is other\'s name -->
|
||||
@@ -6800,7 +6800,7 @@
|
||||
<!-- Donation receipts amount title -->
|
||||
<string name="DonationReceiptDetailsFragment__amount">寄付額</string>
|
||||
<!-- Donation receipts thanks -->
|
||||
<string name="DonationReceiptDetailsFragment__thank_you_for_supporting">Thank you for supporting Signal. Your contribution helps fuel the mission of protecting free expression and enabling secure global communication for millions around the world, through open source privacy technology. If you’re a resident of the United States, please retain this receipt for your tax records. Signal Technology Foundation is a tax–exempt nonprofit organization in the United States under section 501c3 of the Internal Revenue Code. Our Federal Tax ID is 82–4506840. Signal did not provide any goods or services in consideration of this contribution.</string>
|
||||
<string name="DonationReceiptDetailsFragment__thank_you_for_supporting" tools:ignore="TypographyDashes">Thank you for supporting Signal. Your contribution helps fuel the mission of protecting free expression and enabling secure global communication for millions around the world, through open source privacy technology. If you’re a resident of the United States, please retain this receipt for your tax records. Signal Technology Foundation is a tax-exempt nonprofit organization in the United States under section 501c3 of the Internal Revenue Code. Our Federal Tax ID is 82-4506840. Signal did not provide any goods or services in consideration of this contribution.</string>
|
||||
<!-- Donation reciepts screen empty state title -->
|
||||
<string name="DonationReceiptListFragment__no_receipts">領収書なし</string>
|
||||
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
~ SPDX-License-Identifier: AGPL-3.0-only
|
||||
-->
|
||||
<!-- smartling.instruction_comments_enabled = on -->
|
||||
<resources>
|
||||
<resources xmlns:tools="http://schemas.android.com/tools">
|
||||
<!-- Removed by excludeNonTranslatables <string name="app_name" translatable="false">Signal</string> -->
|
||||
|
||||
<!-- Removed by excludeNonTranslatables <string name="install_url" translatable="false">https://signal.org/install</string> -->
|
||||
@@ -399,7 +399,7 @@
|
||||
<string name="ConversationItem_s_deleted_this_message">%1$s-მ(ა) ეს წერილი წაშალა</string>
|
||||
<string name="ConversationItem_you_deleted_this_message">შენ წაშალე ეს წერილი</string>
|
||||
<!-- Tappable text shown on a locally-deleted message tombstone, prompting the user to promote it to a delete-for-everyone -->
|
||||
<string name="ConversationItem_delete_for_everyone_question">Delete for everyone?</string>
|
||||
<string name="ConversationItem_delete_for_everyone_question">ყველასთან წაიშალოს?</string>
|
||||
<!-- Conversation message when a message has been deleted by an admin. The placeholder is the admin\'s name. -->
|
||||
<string name="ConversationItem_admin_s_deleted_this_message">ადმინისტრატორმა %1$s წაშალა ეს წერილი</string>
|
||||
<!-- Dialog error message shown when user can\'t download a message from someone else due to a permanent failure (e.g., unable to decrypt), placeholder is other\'s name -->
|
||||
@@ -6962,7 +6962,7 @@
|
||||
<!-- Donation receipts amount title -->
|
||||
<string name="DonationReceiptDetailsFragment__amount">თანხა</string>
|
||||
<!-- Donation receipts thanks -->
|
||||
<string name="DonationReceiptDetailsFragment__thank_you_for_supporting">Thank you for supporting Signal. Your contribution helps fuel the mission of protecting free expression and enabling secure global communication for millions around the world, through open source privacy technology. If you’re a resident of the United States, please retain this receipt for your tax records. Signal Technology Foundation is a tax–exempt nonprofit organization in the United States under section 501c3 of the Internal Revenue Code. Our Federal Tax ID is 82–4506840. Signal did not provide any goods or services in consideration of this contribution.</string>
|
||||
<string name="DonationReceiptDetailsFragment__thank_you_for_supporting" tools:ignore="TypographyDashes">Thank you for supporting Signal. Your contribution helps fuel the mission of protecting free expression and enabling secure global communication for millions around the world, through open source privacy technology. If you’re a resident of the United States, please retain this receipt for your tax records. Signal Technology Foundation is a tax-exempt nonprofit organization in the United States under section 501c3 of the Internal Revenue Code. Our Federal Tax ID is 82-4506840. Signal did not provide any goods or services in consideration of this contribution.</string>
|
||||
<!-- Donation reciepts screen empty state title -->
|
||||
<string name="DonationReceiptListFragment__no_receipts">ქვითრები ვერ მოიძებნა</string>
|
||||
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
~ SPDX-License-Identifier: AGPL-3.0-only
|
||||
-->
|
||||
<!-- smartling.instruction_comments_enabled = on -->
|
||||
<resources>
|
||||
<resources xmlns:tools="http://schemas.android.com/tools">
|
||||
<!-- Removed by excludeNonTranslatables <string name="app_name" translatable="false">Signal</string> -->
|
||||
|
||||
<!-- Removed by excludeNonTranslatables <string name="install_url" translatable="false">https://signal.org/install</string> -->
|
||||
@@ -399,7 +399,7 @@
|
||||
<string name="ConversationItem_s_deleted_this_message">%1$s бұл хабарды жойды</string>
|
||||
<string name="ConversationItem_you_deleted_this_message">Сіз бұл хабарды жойдыңыз</string>
|
||||
<!-- Tappable text shown on a locally-deleted message tombstone, prompting the user to promote it to a delete-for-everyone -->
|
||||
<string name="ConversationItem_delete_for_everyone_question">Delete for everyone?</string>
|
||||
<string name="ConversationItem_delete_for_everyone_question">Барлығы үшін жою керек пе?</string>
|
||||
<!-- Conversation message when a message has been deleted by an admin. The placeholder is the admin\'s name. -->
|
||||
<string name="ConversationItem_admin_s_deleted_this_message">%1$s атты әкімші бұл хабарды жойды</string>
|
||||
<!-- Dialog error message shown when user can\'t download a message from someone else due to a permanent failure (e.g., unable to decrypt), placeholder is other\'s name -->
|
||||
@@ -6962,7 +6962,7 @@
|
||||
<!-- Donation receipts amount title -->
|
||||
<string name="DonationReceiptDetailsFragment__amount">Сома</string>
|
||||
<!-- Donation receipts thanks -->
|
||||
<string name="DonationReceiptDetailsFragment__thank_you_for_supporting">Thank you for supporting Signal. Your contribution helps fuel the mission of protecting free expression and enabling secure global communication for millions around the world, through open source privacy technology. If you’re a resident of the United States, please retain this receipt for your tax records. Signal Technology Foundation is a tax–exempt nonprofit organization in the United States under section 501c3 of the Internal Revenue Code. Our Federal Tax ID is 82–4506840. Signal did not provide any goods or services in consideration of this contribution.</string>
|
||||
<string name="DonationReceiptDetailsFragment__thank_you_for_supporting" tools:ignore="TypographyDashes">Thank you for supporting Signal. Your contribution helps fuel the mission of protecting free expression and enabling secure global communication for millions around the world, through open source privacy technology. If you’re a resident of the United States, please retain this receipt for your tax records. Signal Technology Foundation is a tax-exempt nonprofit organization in the United States under section 501c3 of the Internal Revenue Code. Our Federal Tax ID is 82-4506840. Signal did not provide any goods or services in consideration of this contribution.</string>
|
||||
<!-- Donation reciepts screen empty state title -->
|
||||
<string name="DonationReceiptListFragment__no_receipts">Чек жоқ</string>
|
||||
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
~ SPDX-License-Identifier: AGPL-3.0-only
|
||||
-->
|
||||
<!-- smartling.instruction_comments_enabled = on -->
|
||||
<resources>
|
||||
<resources xmlns:tools="http://schemas.android.com/tools">
|
||||
<!-- Removed by excludeNonTranslatables <string name="app_name" translatable="false">Signal</string> -->
|
||||
|
||||
<!-- Removed by excludeNonTranslatables <string name="install_url" translatable="false">https://signal.org/install</string> -->
|
||||
@@ -397,7 +397,7 @@
|
||||
<string name="ConversationItem_s_deleted_this_message">%1$s បានលុបសារនេះ</string>
|
||||
<string name="ConversationItem_you_deleted_this_message">អ្នកបានលុបសារនេះ</string>
|
||||
<!-- Tappable text shown on a locally-deleted message tombstone, prompting the user to promote it to a delete-for-everyone -->
|
||||
<string name="ConversationItem_delete_for_everyone_question">Delete for everyone?</string>
|
||||
<string name="ConversationItem_delete_for_everyone_question">លុបសម្រាប់អ្នករាល់គ្នា?</string>
|
||||
<!-- Conversation message when a message has been deleted by an admin. The placeholder is the admin\'s name. -->
|
||||
<string name="ConversationItem_admin_s_deleted_this_message">អ្នកគ្រប់គ្រង %1$s បានលុបសារនេះ</string>
|
||||
<!-- Dialog error message shown when user can\'t download a message from someone else due to a permanent failure (e.g., unable to decrypt), placeholder is other\'s name -->
|
||||
@@ -6800,7 +6800,7 @@
|
||||
<!-- Donation receipts amount title -->
|
||||
<string name="DonationReceiptDetailsFragment__amount">ចំនួនទឹកប្រាក់</string>
|
||||
<!-- Donation receipts thanks -->
|
||||
<string name="DonationReceiptDetailsFragment__thank_you_for_supporting">Thank you for supporting Signal. Your contribution helps fuel the mission of protecting free expression and enabling secure global communication for millions around the world, through open source privacy technology. If you’re a resident of the United States, please retain this receipt for your tax records. Signal Technology Foundation is a tax–exempt nonprofit organization in the United States under section 501c3 of the Internal Revenue Code. Our Federal Tax ID is 82–4506840. Signal did not provide any goods or services in consideration of this contribution.</string>
|
||||
<string name="DonationReceiptDetailsFragment__thank_you_for_supporting" tools:ignore="TypographyDashes">Thank you for supporting Signal. Your contribution helps fuel the mission of protecting free expression and enabling secure global communication for millions around the world, through open source privacy technology. If you’re a resident of the United States, please retain this receipt for your tax records. Signal Technology Foundation is a tax-exempt nonprofit organization in the United States under section 501c3 of the Internal Revenue Code. Our Federal Tax ID is 82-4506840. Signal did not provide any goods or services in consideration of this contribution.</string>
|
||||
<!-- Donation reciepts screen empty state title -->
|
||||
<string name="DonationReceiptListFragment__no_receipts">មិនមានបង្កាន់ដៃ</string>
|
||||
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
~ SPDX-License-Identifier: AGPL-3.0-only
|
||||
-->
|
||||
<!-- smartling.instruction_comments_enabled = on -->
|
||||
<resources>
|
||||
<resources xmlns:tools="http://schemas.android.com/tools">
|
||||
<!-- Removed by excludeNonTranslatables <string name="app_name" translatable="false">Signal</string> -->
|
||||
|
||||
<!-- Removed by excludeNonTranslatables <string name="install_url" translatable="false">https://signal.org/install</string> -->
|
||||
@@ -399,7 +399,7 @@
|
||||
<string name="ConversationItem_s_deleted_this_message">%1$s ಈ ಮೆಸೇಜ್ ಅನ್ನು ಅಳಿಸಿದ್ದಾರೆ</string>
|
||||
<string name="ConversationItem_you_deleted_this_message">ನೀವು ಈ ಮೆಸೇಜ್ ಅನ್ನು ಅಳಿಸಿದ್ದೀರಿ</string>
|
||||
<!-- Tappable text shown on a locally-deleted message tombstone, prompting the user to promote it to a delete-for-everyone -->
|
||||
<string name="ConversationItem_delete_for_everyone_question">Delete for everyone?</string>
|
||||
<string name="ConversationItem_delete_for_everyone_question">ಎಲ್ಲರಿಗೂ ಅಳಿಸುವುದೇ?</string>
|
||||
<!-- Conversation message when a message has been deleted by an admin. The placeholder is the admin\'s name. -->
|
||||
<string name="ConversationItem_admin_s_deleted_this_message">ಅಡ್ಮಿನ್ %1$s ಈ ಮೆಸೇಜ್ ಅನ್ನು ಅಳಿಸಿದ್ದಾರೆ</string>
|
||||
<!-- Dialog error message shown when user can\'t download a message from someone else due to a permanent failure (e.g., unable to decrypt), placeholder is other\'s name -->
|
||||
@@ -6962,7 +6962,7 @@
|
||||
<!-- Donation receipts amount title -->
|
||||
<string name="DonationReceiptDetailsFragment__amount">ಮೊತ್ತ</string>
|
||||
<!-- Donation receipts thanks -->
|
||||
<string name="DonationReceiptDetailsFragment__thank_you_for_supporting">Thank you for supporting Signal. Your contribution helps fuel the mission of protecting free expression and enabling secure global communication for millions around the world, through open source privacy technology. If you’re a resident of the United States, please retain this receipt for your tax records. Signal Technology Foundation is a tax–exempt nonprofit organization in the United States under section 501c3 of the Internal Revenue Code. Our Federal Tax ID is 82–4506840. Signal did not provide any goods or services in consideration of this contribution.</string>
|
||||
<string name="DonationReceiptDetailsFragment__thank_you_for_supporting" tools:ignore="TypographyDashes">Thank you for supporting Signal. Your contribution helps fuel the mission of protecting free expression and enabling secure global communication for millions around the world, through open source privacy technology. If you’re a resident of the United States, please retain this receipt for your tax records. Signal Technology Foundation is a tax-exempt nonprofit organization in the United States under section 501c3 of the Internal Revenue Code. Our Federal Tax ID is 82-4506840. Signal did not provide any goods or services in consideration of this contribution.</string>
|
||||
<!-- Donation reciepts screen empty state title -->
|
||||
<string name="DonationReceiptListFragment__no_receipts">ರಸೀದಿಗಳಿಲ್ಲ</string>
|
||||
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
~ SPDX-License-Identifier: AGPL-3.0-only
|
||||
-->
|
||||
<!-- smartling.instruction_comments_enabled = on -->
|
||||
<resources>
|
||||
<resources xmlns:tools="http://schemas.android.com/tools">
|
||||
<!-- Removed by excludeNonTranslatables <string name="app_name" translatable="false">Signal</string> -->
|
||||
|
||||
<!-- Removed by excludeNonTranslatables <string name="install_url" translatable="false">https://signal.org/install</string> -->
|
||||
@@ -139,9 +139,9 @@
|
||||
<string name="AttachmentManager_signal_needs_storage_access">사진과 동영상을 표시하려면 Signal에 액세스 권한이 필요합니다.</string>
|
||||
|
||||
<!-- Alert dialog title to show the recipient has not activated payments -->
|
||||
<string name="AttachmentManager__not_activated_payments">%1$s 님이 결제를 아직 활성화하지 않았습니다. </string>
|
||||
<string name="AttachmentManager__not_activated_payments">%1$s 님이 결제 기능을 아직 활성화하지 않았습니다. </string>
|
||||
<!-- Alert dialog description to send the recipient a request to activate payments -->
|
||||
<string name="AttachmentManager__request_to_activate_payments">결제를 활성화해달라는 요청을 보낼까요?</string>
|
||||
<string name="AttachmentManager__request_to_activate_payments">결제 활성화 요청을 보낼까요?</string>
|
||||
<!-- Alert dialog button to send request -->
|
||||
<string name="AttachmentManager__send_request">요청 보내기</string>
|
||||
<!-- Alert dialog button to cancel dialog -->
|
||||
@@ -397,7 +397,7 @@
|
||||
<string name="ConversationItem_s_deleted_this_message">%1$s 님이 이 메시지를 삭제했습니다.</string>
|
||||
<string name="ConversationItem_you_deleted_this_message">내가 이 메시지를 삭제했습니다.</string>
|
||||
<!-- Tappable text shown on a locally-deleted message tombstone, prompting the user to promote it to a delete-for-everyone -->
|
||||
<string name="ConversationItem_delete_for_everyone_question">Delete for everyone?</string>
|
||||
<string name="ConversationItem_delete_for_everyone_question">모두에게서 삭제할까요?</string>
|
||||
<!-- Conversation message when a message has been deleted by an admin. The placeholder is the admin\'s name. -->
|
||||
<string name="ConversationItem_admin_s_deleted_this_message">관리자 %1$s 님이 메시지를 삭제했습니다.</string>
|
||||
<!-- Dialog error message shown when user can\'t download a message from someone else due to a permanent failure (e.g., unable to decrypt), placeholder is other\'s name -->
|
||||
@@ -587,7 +587,7 @@
|
||||
<string name="ConversationFragment_you_can_swipe_to_the_left_reply">메시지에 빠르게 답변하려면 왼쪽으로 화면을 쓸어보세요.</string>
|
||||
<string name="ConversationFragment_view_once_media_is_deleted_after_sending">한 번만 볼 수 있는 미디어는 전송 후 삭제됩니다.</string>
|
||||
<string name="ConversationFragment_you_already_viewed_this_message">이미 확인한 메시지입니다</string>
|
||||
<string name="ConversationFragment__you_can_add_notes_for_yourself_in_this_conversation">이 대화에는 나를 위한 메모를 남길 수 있습니다. 내 계정에 연결된 기기가 있다면 새 메모가 같이 동기화됩니다.</string>
|
||||
<string name="ConversationFragment__you_can_add_notes_for_yourself_in_this_conversation">이 대화에는 나를 위한 메모를 남길 수 있습니다. 내 계정에 연동된 기기가 있다면 새 메모가 같이 동기화됩니다.</string>
|
||||
<!-- Text in banner to show how many people have the same name. -->
|
||||
<plurals name="ConversationFragment__d_group_members_have_the_same_name">
|
||||
<item quantity="other">그룹 멤버 %1$d명의 이름이 같습니다.</item>
|
||||
@@ -615,7 +615,7 @@
|
||||
<!-- Action shown to allow a user to re-register as they are no longer registered -->
|
||||
<string name="ConversationFragment__reregister_signal">Signal 다시 등록</string>
|
||||
<!-- Action shown in the conversation input area to allow a user to re-link this device as it is no longer linked -->
|
||||
<string name="ConversationFragment__relink_signal">다시 연결</string>
|
||||
<string name="ConversationFragment__relink_signal">다시 연동</string>
|
||||
<!-- Label for a button displayed in the conversation toolbar to return to the previous screen. -->
|
||||
<string name="ConversationFragment__content_description_back_button">돌아가기</string>
|
||||
<!-- Label for a button displayed in the conversation toolbar to open the main screen of the app. -->
|
||||
@@ -1042,28 +1042,28 @@
|
||||
<!-- Description for how Signal will work with a linked device (eg desktop, iPad) -->
|
||||
<string name="LinkDeviceFragment__use_signal_on_desktop_ipad">데스크톱 또는 iPad에서 이 Signal 계정 사용하기</string>
|
||||
<!-- Button prompting users to link a new device to their account -->
|
||||
<string name="LinkDeviceFragment__link_a_new_device">새 기기 연결</string>
|
||||
<string name="LinkDeviceFragment__link_a_new_device">새 기기 연동</string>
|
||||
<!-- Text explaining that on linked devices, messages will be encrypted where %s will be replaced with an image-->
|
||||
<string name="LinkDeviceFragment__messages_and_chat_info_are_protected">%1$s 메시지와 대화 정보는 모든 기기에서 종단간 암호화로 보호됩니다.</string>
|
||||
<!-- Bottom sheet title explaining how Signal works on a linked device -->
|
||||
<string name="LinkDeviceFragment__signal_on_desktop_ipad">데스크톱 또는 iPad의 Signal</string>
|
||||
<!-- Bottom sheet description explaining that messages on linked devices are private -->
|
||||
<string name="LinkDeviceFragment__all_messaging_is_private">연결된 기기의 모든 메시지는 비공개입니다.</string>
|
||||
<string name="LinkDeviceFragment__all_messaging_is_private">연동 기기에서 주고받는 모든 메시지는 안전하게 보호됩니다.</string>
|
||||
<!-- Bottom sheet description explaining that future messages on linked devices will be in sync with your phone but previous messages will not appear -->
|
||||
<string name="LinkDeviceFragment__signal_messages_are_synchronized">휴대폰의 Signal과 연결하면 Signal 메시지가 동기화됩니다. 이전 메시지 내역은 표시되지 않습니다.</string>
|
||||
<string name="LinkDeviceFragment__signal_messages_are_synchronized">기기가 연동되면 휴대폰의 Signal 메시지가 자동으로 동기화됩니다. 이전 메시지 내역은 표시되지 않습니다.</string>
|
||||
<!-- Bottom sheet description explaining that for non-desktop/iPad devices, they should go to %s to download Signal where %s is Signal\'s website -->
|
||||
<string name="LinkDeviceFragment__on_other_device_visit_signal">연동하려는 기기에서 %1$s 링크를 방문하여 Signal을 설치하세요.</string>
|
||||
<!-- Removed by excludeNonTranslatables <string name="LinkDeviceFragment__signal_download_url" translatable="false">signal.org/download</string> -->
|
||||
<!-- Header title listing out current linked devices -->
|
||||
<string name="LinkDeviceFragment__my_linked_devices">내 연결된 기기</string>
|
||||
<string name="LinkDeviceFragment__my_linked_devices">내 연동 기기</string>
|
||||
<!-- Dialog confirmation to unlink a device -->
|
||||
<string name="LinkDeviceFragment__unlink">연결 해제</string>
|
||||
<string name="LinkDeviceFragment__unlink">연동 해제</string>
|
||||
<!-- Toast message indicating a device has been unlinked, where %s is the name of the device -->
|
||||
<string name="LinkDeviceFragment__s_unlinked">\'%1$s\'의 연결을 해제했습니다.</string>
|
||||
<string name="LinkDeviceFragment__s_unlinked">\'%1$s\' 기기를 연동 해제했습니다.</string>
|
||||
<!-- Toast message indicating a device has been successfully linked, where %s is the name of the device -->
|
||||
<string name="LinkDeviceFragment__s_linked">\'%1$s\' 기기를 연동했습니다.</string>
|
||||
<!-- Progress dialog message indicating that a device is currently being linked with an account -->
|
||||
<string name="LinkDeviceFragment__linking_device">기기를 연결하는 중…</string>
|
||||
<string name="LinkDeviceFragment__linking_device">기기를 연동하는 중…</string>
|
||||
<!-- Toast message shown after a device has been linked -->
|
||||
<string name="LinkDeviceFragment__device_approved">기기가 승인되었습니다.</string>
|
||||
<!-- Progress dialog message indicating that the list of linked devices is currently loading -->
|
||||
@@ -1071,11 +1071,11 @@
|
||||
<!-- Progress dialog message indicating that you are syncing messages to your linked device -->
|
||||
<string name="LinkDeviceFragment__syncing_messages">메시지를 동기화하는 중…</string>
|
||||
<!-- Text message shown when the user has no linked devices -->
|
||||
<string name="LinkDeviceFragment__no_linked_devices">연결된 기기 없음</string>
|
||||
<string name="LinkDeviceFragment__no_linked_devices">연동 기기 없음</string>
|
||||
<!-- Title on biometrics prompt explaining what biometrics are being used for -->
|
||||
<string name="LinkDeviceFragment__unlock_to_link">잠금 해제하여 기기 연결</string>
|
||||
<string name="LinkDeviceFragment__unlock_to_link">잠금 해제하여 기기 연동</string>
|
||||
<!-- Title on bottom sheet explaining our usage of biometrics to link a device -->
|
||||
<string name="LinkDeviceFragment__before_linking">연결 전 본인 확인</string>
|
||||
<string name="LinkDeviceFragment__before_linking">연동 전 본인 확인을 진행할게요</string>
|
||||
<!-- Body of bottom sheet explaining that users should use their device pin or biometrics and not their Signal pin -->
|
||||
<string name="LinkDeviceFragment__tap_continue_and_enter_phone">계속을 탭하고 휴대폰 잠금을 풀어 확인하세요. Signal PIN을 입력하지 마세요.</string>
|
||||
<!-- Button that dismisses the bottom sheet -->
|
||||
@@ -1111,15 +1111,15 @@
|
||||
<!-- Option in context menu to edit the name of a linked device -->
|
||||
<string name="LinkDeviceFragment__edit_name">이름 수정</string>
|
||||
<!-- Toast shown when the process of linking a device has been cancelled -->
|
||||
<string name="LinkDeviceFragment__linking_cancelled">연결 해제됨</string>
|
||||
<string name="LinkDeviceFragment__linking_cancelled">연동 취소됨</string>
|
||||
<!-- Snackbar shown when the user tries to link a new device but has already reached the maximum number of linked devices. Placeholder is the maximum count. -->
|
||||
<string name="LinkDeviceFragment__you_can_only_have_d_linked_devices">You can only have %1$d linked devices.</string>
|
||||
<!-- Message shown in progress dialog telling users to avoid closing the app while messages are being synced -->
|
||||
<string name="LinkDeviceFragment__do_not_close">앱을 닫지 마세요</string>
|
||||
<!-- Dialog title shown when a device is unlinked -->
|
||||
<string name="LinkDeviceFragment__device_unlinked">기기 연결 해제됨</string>
|
||||
<string name="LinkDeviceFragment__device_unlinked">기기 연동 해제됨</string>
|
||||
<!-- Dialog body shown when a device is unlinked where %1$s is the date and time the device was originally linked (eg Jan 15 at 9:00pm) -->
|
||||
<string name="LinkDeviceFragment__the_device_that_was">%1$s 연결한 기기의 연결을 해제했습니다.</string>
|
||||
<string name="LinkDeviceFragment__the_device_that_was">%1$s에 연동된 기기가 연동 해제되었습니다.</string>
|
||||
<!-- Button to dismiss dialog -->
|
||||
<string name="LinkDeviceFragment__ok">확인</string>
|
||||
<!-- Dialog title shown when you don\'t have enough storage space -->
|
||||
@@ -1141,19 +1141,19 @@
|
||||
|
||||
<!-- AddLinkDeviceFragment -->
|
||||
<!-- Description text shown on the QR code scanner when linking a device -->
|
||||
<string name="AddLinkDeviceFragment__scan_the_qr_code">기기에 표시된 QR 코드를 스캔하여 기기를 연결하세요.</string>
|
||||
<string name="AddLinkDeviceFragment__scan_the_qr_code">기기에 표시된 QR 코드를 스캔하여 연동하세요.</string>
|
||||
<!-- Bottom sheet title telling users to scan a qr code -->
|
||||
<string name="AddLinkDeviceFragment__scan_qr_code">QR 코드 스캔</string>
|
||||
<!-- Bottom sheet description telling users how to scan a qr code -->
|
||||
<string name="AddLinkDeviceFragment__use_this_device_to_scan_qr_code">이 기기를 사용하여 연결하려는 기기에 표시된 QR 코드를 스캔하세요.</string>
|
||||
<string name="AddLinkDeviceFragment__use_this_device_to_scan_qr_code">연동하려는 기기에 표시된 QR 코드를 이 기기로 스캔해 주세요.</string>
|
||||
<!-- Confirmation button to dismiss bottom sheet dialog -->
|
||||
<string name="AddLinkDeviceFragment__okay">확인</string>
|
||||
<!-- Dialog text describing the consequences of linking a device -->
|
||||
<string name="AddLinkDeviceFragment__this_device_will_see_your_groups_contacts">이 기기에서 내 그룹과 연락처를 보고, 대화에 접근하고, 내 이름으로 메시지를 보낼 수 있습니다.</string>
|
||||
<!-- Bottom sheet title telling users to complete the linking process on the other device -->
|
||||
<string name="AddLinkDeviceFragment__finish_linking_on_other_device">다른 기기에서 연결 완료</string>
|
||||
<string name="AddLinkDeviceFragment__finish_linking_on_other_device">다른 기기에서 연동 완료하기</string>
|
||||
<!-- Bottom sheet description telling users to complete the linking process -->
|
||||
<string name="AddLinkDeviceFragment__finish_linking_signal">다른 기기에서 Signal 연결을 완료하세요.</string>
|
||||
<string name="AddLinkDeviceFragment__finish_linking_signal">다른 기기에서 Signal 연동을 완료해 주세요.</string>
|
||||
<!-- Title of dialog when the QR code being scanned is invalid -->
|
||||
<string name="AddLinkDeviceFragment__linking_device_failed">기기 연동 실패</string>
|
||||
<!-- Text shown in a dialog when the QR code being scanned is invalid -->
|
||||
@@ -2068,19 +2068,19 @@
|
||||
<!-- Message to notify sender that activate payments request has been sent to the recipient -->
|
||||
<string name="MessageRecord_you_sent_request">%1$s 님께 결제 활성화 요청을 보냈습니다.</string>
|
||||
<!-- Request message from recipient to activate payments -->
|
||||
<string name="MessageRecord_wants_you_to_activate_payments">%1$s 님이 결제 활성화 요청을 보냈습니다. 결제는 신뢰할 수 있는 사람에게만 보내주세요.</string>
|
||||
<string name="MessageRecord_wants_you_to_activate_payments">%1$s 님이 결제 활성화를 요청했습니다. 신뢰할 수 있는 사람에게만 송금하세요.</string>
|
||||
<!-- Message to inform user that payments was activated-->
|
||||
<string name="MessageRecord_you_activated_payments">결제를 활성화했어요</string>
|
||||
<string name="MessageRecord_you_activated_payments">결제를 활성화했습니다</string>
|
||||
<!-- Message to inform sender that recipient can now accept payments -->
|
||||
<string name="MessageRecord_can_accept_payments">%1$s 님이 이제 결제를 수락할 수 있습니다.</string>
|
||||
<!-- Message shown to inform user that a payment is missing details due to restore -->
|
||||
<string name="MessageRecord_payments_restore_tombstone">결제 상세 내역이 제공되지 않습니다</string>
|
||||
<string name="MessageRecord_payments_restore_tombstone">결제 상세 정보를 표시할 수 없습니다</string>
|
||||
<!-- Message shown to inform user to tap the payment to learn more about why the details arent available -->
|
||||
<string name="MessageRecord_payments_restore_tombstone_tap_more">탭하여 더 보기</string>
|
||||
<!-- Title for dialog explaining why a specific mobile coin payment does not have any transaction details -->
|
||||
<string name="PaymentTombstoneLearnMoreDialog_title">결제 세부 정보 사용 불가</string>
|
||||
<string name="PaymentTombstoneLearnMoreDialog_title">결제 상세 정보를 표시할 수 없습니다</string>
|
||||
<!-- Message for dialog explaining why a specific mobile coin payment does not have any transaction details because it was restored from a backup-->
|
||||
<string name="PaymentTombstoneLearnMoreDialog_message">복구된 메시지 원본에 결제 내역이 포함되어 있지 않아 상세 내용을 확인할 수 없습니다. 이는 지갑 잔액이나 과거 결제 상태에는 영향을 주지 않습니다.</string>
|
||||
<string name="PaymentTombstoneLearnMoreDialog_message">복구된 메시지 원본에 결제 내역이 포함되어 있지 않아 상세 내용을 확인할 수 없습니다. 이는 지갑 잔액이나 결제 결과에는 영향을 주지 않습니다.</string>
|
||||
|
||||
<!-- Group Calling update messages -->
|
||||
<!-- Chat log text for an ongoing group call that has one participant with a placeholder for the short display name of the user that joined and a placeholder for formatted time -->
|
||||
@@ -2141,7 +2141,7 @@
|
||||
<!-- In-conversation update message to indicate that the current contact is sms only and will need to migrate to signal to continue the conversation in signal. -->
|
||||
<string name="MessageRecord__you_can_no_longer_send_sms_messages_in_signal">Signal에서 더 이상 SMS 메시지를 보낼 수 없습니다. %1$s 님을 Signal로 초대하여 대화를 이어가세요.</string>
|
||||
<!-- Body for quote when message being quoted is an in-app payment message -->
|
||||
<string name="MessageRecord__payment_s">결제: %1$s</string>
|
||||
<string name="MessageRecord__payment_s">송금 메시지: %1$s</string>
|
||||
<!-- Body for quote when message being quoted is an in-app payment message tombstone without an amount -->
|
||||
<string name="MessageRecord__payment_tombstone">결제</string>
|
||||
<!-- Update message shown in chat after reporting it as spam -->
|
||||
@@ -3019,7 +3019,7 @@
|
||||
<!-- Displayed in the notification when the user sends a request to activate payments -->
|
||||
<string name="ThreadRecord_you_sent_request">결제를 활성화해달라는 요청을 보냈습니다</string>
|
||||
<!-- Displayed in the notification when the recipient wants to activate payments -->
|
||||
<string name="ThreadRecord_wants_you_to_activate_payments">%1$s 님이 결제 활성화 요청을 보냈습니다</string>
|
||||
<string name="ThreadRecord_wants_you_to_activate_payments">%1$s 님이 결제 활성화를 요청했습니다</string>
|
||||
<!-- Displayed in the notification when the user activates payments -->
|
||||
<string name="ThreadRecord_you_activated_payments">결제를 활성화했습니다</string>
|
||||
<!-- Displayed in the notification when the recipient can accept payments -->
|
||||
@@ -3249,7 +3249,7 @@
|
||||
<string name="MessageNotifier_reacted_s_to_your_audio">내 오디오에 %1$s 이모지로 공감했어요.</string>
|
||||
<string name="MessageNotifier_reacted_s_to_your_view_once_media">한 번만 볼 수 있는 내 미디어에 %1$s 이모지로 공감했어요.</string>
|
||||
<!-- Body of notification shown to user when someone they sent a payment to reacts to it. Placeholder is the emoji used in the reaction. -->
|
||||
<string name="MessageNotifier_reacted_s_to_your_payment">내 결제에 %1$s 이모지로 공감했어요.</string>
|
||||
<string name="MessageNotifier_reacted_s_to_your_payment">내 송금에 %1$s 이모지로 공감했어요.</string>
|
||||
<string name="MessageNotifier_reacted_s_to_your_sticker">내 스티커에 %1$s 이모지로 공감했어요.</string>
|
||||
<string name="MessageNotifier_this_message_was_deleted">삭제된 메시지입니다.</string>
|
||||
<!-- Body of a notification when someone votes in a poll. First placeholder is the poll emoji, second placeholder is the name of the voter and third is the poll question -->
|
||||
@@ -3410,16 +3410,16 @@
|
||||
<!-- Action in reminder banner that will take user to re-register -->
|
||||
<string name="UnauthorizedReminder_reregister_action">기기 다시 등록하기</string>
|
||||
<!-- Message shown in a reminder banner when this linked device is no longer linked to a primary device -->
|
||||
<string name="UnauthorizedReminder_this_device_is_no_longer_linked_relink_to_continue_messaging">이 기기는 연결이 해제되었습니다. 메시지를 계속 이용하려면 Signal에 휴대폰을 다시 연결하세요.</string>
|
||||
<string name="UnauthorizedReminder_this_device_is_no_longer_linked_relink_to_continue_messaging">이 기기는 연동이 해제되었습니다. 메시지를 계속 이용하려면 Signal에 휴대폰을 다시 연동하세요.</string>
|
||||
<!-- Action in reminder banner that will take the user to re-link this device -->
|
||||
<string name="UnauthorizedReminder_relink_action">기기 다시 연결</string>
|
||||
<string name="UnauthorizedReminder_relink_action">기기 다시 연동</string>
|
||||
|
||||
<!-- Push notification when the app is forcibly logged out by the server. -->
|
||||
<string name="LoggedOutNotification_you_have_been_logged_out">이 기기의 Signal에서 로그아웃했습니다.</string>
|
||||
|
||||
<!-- EnclaveFailureReminder -->
|
||||
<!-- Banner message to update app to use payments -->
|
||||
<string name="EnclaveFailureReminder_update_signal">결제를 계속 사용하려면 Signal을 업데이트하세요. 잔액이 최신 상태가 아닐 수 있습니다.</string>
|
||||
<string name="EnclaveFailureReminder_update_signal">결제 기능을 계속 이용하려면 Signal을 업데이트해 주세요. 현재 표시된 잔액이 최신 상태가 아닐 수 있습니다.</string>
|
||||
<!-- Banner button to update now -->
|
||||
|
||||
<!-- WebRtcCallActivity -->
|
||||
@@ -4128,7 +4128,7 @@
|
||||
<string name="preferences__storage">저장 공간</string>
|
||||
<string name="preferences__payments">결제</string>
|
||||
<!-- Privacy settings payments section description -->
|
||||
<string name="preferences__payment_lock">결제 잠금</string>
|
||||
<string name="preferences__payment_lock">송금 잠금</string>
|
||||
<string name="preferences__conversation_length_limit">채팅 내 최대 메시지 수</string>
|
||||
<string name="preferences__keep_messages">메시지 보관</string>
|
||||
<string name="preferences__clear_message_history">메시지 기록 삭제</string>
|
||||
@@ -4224,7 +4224,7 @@
|
||||
<string name="preferences_advanced__relay_all_calls_through_the_signal_server_to_avoid_revealing_your_ip_address">상대방에게 IP 주소가 노출되지 않도록 모든 통화를 Signal 서버로 경유합니다. 통화 품질이 다소 저하될 수 있습니다.</string>
|
||||
<string name="preferences_advanced__always_relay_calls">통화 시 항상 서버 경유</string>
|
||||
<!-- Privacy settings payments section title -->
|
||||
<string name="preferences_app_protection__payments">결제</string>
|
||||
<string name="preferences_app_protection__payments">송금</string>
|
||||
<string name="preferences_chats__chats">대화</string>
|
||||
<string name="preferences_app_updates__title">앱 업데이트</string>
|
||||
<string name="preferences_data_and_storage__manage_storage">저장 공간 관리하기</string>
|
||||
@@ -4312,7 +4312,7 @@
|
||||
<string name="PaymentsHomeFragment__recent_activity">최근 활동</string>
|
||||
<string name="PaymentsHomeFragment__see_all">모두 보기</string>
|
||||
<string name="PaymentsHomeFragment__add_funds">자금 추가</string>
|
||||
<string name="PaymentsHomeFragment__send">전송</string>
|
||||
<string name="PaymentsHomeFragment__send">송금하기</string>
|
||||
<string name="PaymentsHomeFragment__sent_s">%1$s 보냄</string>
|
||||
<string name="PaymentsHomeFragment__received_s">%1$s 받음</string>
|
||||
<string name="PaymentsHomeFragment__transfer_to_exchange">거래소로 이체</string>
|
||||
@@ -5072,7 +5072,7 @@
|
||||
<string name="OldDeviceTransferSetup__an_unexpected_error_occurred_while_attempting_to_connect_to_your_old_device">새 Android 장치에 연결하는 동안 예기치 않은 오류가 발생했습니다.</string>
|
||||
|
||||
<!-- DeviceTransferSetupFragment -->
|
||||
<string name="DeviceTransferSetup__unable_to_open_wifi_settings">Wi-Fi 설정을 열 수 없습니다. Wi-Fi를 수동으로 켜세요.</string>
|
||||
<string name="DeviceTransferSetup__unable_to_open_wifi_settings">Wi-Fi 설정을 열 수 없습니다. Wi-Fi를 수동으로 켜주세요.</string>
|
||||
<!-- Message on button that will prompt for location permissions in order to complete a device transfer -->
|
||||
<string name="DeviceTransferSetup__grant_location_permission">위치 권한 부여</string>
|
||||
<string name="DeviceTransferSetup__turn_on_location_services">위치 서비스 켜기</string>
|
||||
@@ -5086,20 +5086,20 @@
|
||||
<string name="DeviceTransferSetup__continue">계속</string>
|
||||
<string name="DeviceTransferSetup__if_the_numbers_on_your_devices_do_not_match_its_possible_you_connected_to_the_wrong_device">기기 간의 번호가 다르면 다른 기기에 연결됐을 가능성이 있습니다. 이전을 잠시 중단한 뒤, 두 기기를 가까이 둔 상태에서 다시 시도해 주세요.</string>
|
||||
<string name="DeviceTransferSetup__stop_transfer">이전 중단</string>
|
||||
<string name="DeviceTransferSetup__unable_to_discover_old_device">이전 장치를 검색할 수 없음</string>
|
||||
<string name="DeviceTransferSetup__unable_to_discover_new_device">새 장치를 찾을 수 없음</string>
|
||||
<string name="DeviceTransferSetup__unable_to_discover_old_device">이전 기기를 검색할 수 없음</string>
|
||||
<string name="DeviceTransferSetup__unable_to_discover_new_device">새 기기를 찾을 수 없음</string>
|
||||
<string name="DeviceTransferSetup__make_sure_the_following_permissions_are_enabled">다음 권한 및 서비스가 활성화되어 있는지 확인하세요.</string>
|
||||
<string name="DeviceTransferSetup__location_permission">위치 권한</string>
|
||||
<string name="DeviceTransferSetup__location_services">위치 서비스</string>
|
||||
<string name="DeviceTransferSetup__wifi">Wi-Fi</string>
|
||||
<string name="DeviceTransferSetup__on_the_wifi_direct_screen_remove_all_remembered_groups_and_unlink_any_invited_or_connected_devices">WiFi Direct 화면에서 기억된 모든 그룹을 제거하고 초대되거나 연결된 장치의 연결을 해제합니다.</string>
|
||||
<string name="DeviceTransferSetup__wifi_direct_screen">와이파이 다이렉트 화면</string>
|
||||
<string name="DeviceTransferSetup__try_turning_wifi_off_and_on_on_both_devices">두 장치 모두에서 Wi-Fi를 껐다가 켜보세요.</string>
|
||||
<string name="DeviceTransferSetup__on_the_wifi_direct_screen_remove_all_remembered_groups_and_unlink_any_invited_or_connected_devices">Wi-Fi Direct 화면에서 기억된 그룹을 모두 삭제하고, 초대되었거나 연결된 기기의 연동을 해제해 주세요.</string>
|
||||
<string name="DeviceTransferSetup__wifi_direct_screen">Wi-Fi Direct 화면</string>
|
||||
<string name="DeviceTransferSetup__try_turning_wifi_off_and_on_on_both_devices">두 기기 모두에서 Wi-Fi를 껐다가 켜보세요.</string>
|
||||
<string name="DeviceTransferSetup__make_sure_both_devices_are_in_transfer_mode">두 기기가 모두 이전 모드인지 확인하세요.</string>
|
||||
<string name="DeviceTransferSetup__go_to_support_page">지원 페이지로 이동</string>
|
||||
<string name="DeviceTransferSetup__go_to_support_page">고객 지원 페이지로 이동</string>
|
||||
<!-- Button text when a device transfer could not occur and to try again -->
|
||||
<string name="DeviceTransferSetup__try_again">다시 시도해 주세요.</string>
|
||||
<string name="DeviceTransferSetup__waiting_for_other_device">다른 장치를 기다리는 중</string>
|
||||
<string name="DeviceTransferSetup__try_again">다시 시도하기</string>
|
||||
<string name="DeviceTransferSetup__waiting_for_other_device">다른 기기를 기다리는 중</string>
|
||||
<string name="DeviceTransferSetup__tap_continue_on_your_other_device_to_start_the_transfer">다른 기기에서 \'계속\'을 탭하여 이전을 시작하세요.</string>
|
||||
<string name="DeviceTransferSetup__tap_continue_on_your_other_device">다른 기기에서 \'계속\'을 탭하세요.</string>
|
||||
|
||||
@@ -5124,7 +5124,7 @@
|
||||
<!-- OldDeviceTransferInstructionsFragment -->
|
||||
<string name="OldDeviceTransferInstructions__transfer_account">계정 이전</string>
|
||||
<string name="OldDeviceTransferInstructions__first_bullet">1.</string>
|
||||
<string name="OldDeviceTransferInstructions__download_signal_on_your_new_android_device">새 Android 장치에서 Signal을 다운로드하세요.</string>
|
||||
<string name="OldDeviceTransferInstructions__download_signal_on_your_new_android_device">새 Android 기기에서 Signal 다운로드하기</string>
|
||||
<string name="OldDeviceTransferInstructions__second_bullet">2.</string>
|
||||
<string name="OldDeviceTransferInstructions__tap_on_transfer_or_restore_account">"계정 이전 또는 복원을 탭하세요."</string>
|
||||
<string name="OldDeviceTransferInstructions__third_bullet">3.</string>
|
||||
@@ -5140,7 +5140,7 @@
|
||||
<string name="OldDeviceTransferInstructions__continue_transfer">이전 계속하기</string>
|
||||
|
||||
<!-- OldDeviceTransferComplete -->
|
||||
<string name="OldDeviceTransferComplete__go_to_your_new_device">새 장치로 이동</string>
|
||||
<string name="OldDeviceTransferComplete__go_to_your_new_device">새 기기로 이동하기</string>
|
||||
<string name="OldDeviceTransferComplete__your_signal_data_has_Been_transferred_to_your_new_device">Signal 데이터가 새 기기로 이전되었습니다. 이전 절차를 완료하려면 새 기기에서 등록을 완료해 주세요.</string>
|
||||
<string name="OldDeviceTransferComplete__close">닫기</string>
|
||||
|
||||
@@ -5152,18 +5152,18 @@
|
||||
|
||||
<!-- DeviceToDeviceTransferService -->
|
||||
<string name="DeviceToDeviceTransferService_content_title">계정 이전</string>
|
||||
<string name="DeviceToDeviceTransferService_status_ready">다른 Android 장치에 연결할 준비 중…</string>
|
||||
<string name="DeviceToDeviceTransferService_status_starting_up">다른 Android 장치에 연결할 준비 중…</string>
|
||||
<string name="DeviceToDeviceTransferService_status_discovery">다른 Android 장치를 검색하는 중…</string>
|
||||
<string name="DeviceToDeviceTransferService_status_network_connected">다른 Android 장치에 연결하는 중…</string>
|
||||
<string name="DeviceToDeviceTransferService_status_ready">다른 Android 기기에 연결할 준비 중…</string>
|
||||
<string name="DeviceToDeviceTransferService_status_starting_up">다른 Android 기기에 연결할 준비 중…</string>
|
||||
<string name="DeviceToDeviceTransferService_status_discovery">다른 Android 기기를 검색하는 중…</string>
|
||||
<string name="DeviceToDeviceTransferService_status_network_connected">다른 Android 기기에 연결하는 중…</string>
|
||||
<string name="DeviceToDeviceTransferService_status_verification_required">확인 필요</string>
|
||||
<string name="DeviceToDeviceTransferService_status_service_connected">계정 이전 중…</string>
|
||||
|
||||
<!-- OldDeviceTransferLockedDialog -->
|
||||
<string name="OldDeviceTransferLockedDialog__complete_registration_on_your_new_device">새 장치에서 등록 완료</string>
|
||||
<string name="OldDeviceTransferLockedDialog__complete_registration_on_your_new_device">새 기기에서 등록 완료하기</string>
|
||||
<string name="OldDeviceTransferLockedDialog__your_signal_account_has_been_transferred_to_your_new_device">Signal 계정이 새 기기로 이전되었으나, 계속 사용하려면 새 기기에서 등록을 완료해야 합니다. 이 기기에서는 Signal이 더 이상 활성화되지 않습니다.</string>
|
||||
<string name="OldDeviceTransferLockedDialog__done">확인</string>
|
||||
<string name="OldDeviceTransferLockedDialog__cancel_and_activate_this_device">이 장치를 취소하고 활성화하세요.</string>
|
||||
<string name="OldDeviceTransferLockedDialog__cancel_and_activate_this_device">취소하고 이 기기 활성화하기</string>
|
||||
|
||||
<!-- AdvancedPreferenceFragment -->
|
||||
|
||||
@@ -5200,7 +5200,7 @@
|
||||
|
||||
|
||||
<!-- GroupsLearnMoreBottomSheetDialogFragment -->
|
||||
<string name="GroupsLearnMore_legacy_vs_new_groups">구형 그룹과 새로운 그룹의 차이점</string>
|
||||
<string name="GroupsLearnMore_legacy_vs_new_groups">레거시 그룹과 새로운 그룹의 차이점</string>
|
||||
<string name="GroupsLearnMore_what_are_legacy_groups">레거시 그룹은 무엇인가요?</string>
|
||||
<string name="GroupsLearnMore_paragraph_1">레거시 그룹은 관리자 기능이나 상세 그룹 관리 같은 새로운 그룹 기능을 이용할 수 없습니다.</string>
|
||||
<string name="GroupsLearnMore_can_i_upgrade_a_legacy_group">레거시 그룹을 업그레이드할 수 있나요?</string>
|
||||
@@ -5210,7 +5210,7 @@
|
||||
<!-- GroupLinkBottomSheetDialogFragment -->
|
||||
<string name="GroupLinkBottomSheet_share_hint_requiring_approval">이 링크를 가진 사람은 누구나 이 그룹의 이름과 사진을 확인하고 그룹에 참가할 수 있습니다. 신뢰할 수 있는 사람에게만 링크를 공유하세요.</string>
|
||||
<string name="GroupLinkBottomSheet_share_hint_not_requiring_approval">이 링크를 가진 사람은 누구나 이 그룹의 이름과 사진을 확인하고 그룹에 참가할 수 있습니다. 신뢰할 수 있는 사람에게만 링크를 공유하세요.</string>
|
||||
<string name="GroupLinkBottomSheet_share_via_signal">시그널로 공유하기</string>
|
||||
<string name="GroupLinkBottomSheet_share_via_signal">Signal로 공유하기</string>
|
||||
<string name="GroupLinkBottomSheet_copy">복사</string>
|
||||
<string name="GroupLinkBottomSheet_qr_code">QR 코드</string>
|
||||
<string name="GroupLinkBottomSheet_share">공유</string>
|
||||
@@ -5419,7 +5419,7 @@
|
||||
<string name="DeactivateWalletFragment__deactivate_without_transferring">이전하지 않고 비활성화</string>
|
||||
<string name="DeactivateWalletFragment__deactivate">비활성화</string>
|
||||
<string name="DeactivateWalletFragment__deactivate_without_transferring_question">이전하지 않고 비활성화할까요?</string>
|
||||
<string name="DeactivateWalletFragment__your_balance_will_remain">결제를 다시 활성화하기로 선택할 경우 잔액이 Signal에 연결된 지갑에 남아 있게 됩니다.</string>
|
||||
<string name="DeactivateWalletFragment__your_balance_will_remain">결제를 다시 활성화하기로 선택할 경우 잔액이 Signal에 연동된 지갑에 남아 있게 됩니다.</string>
|
||||
<string name="DeactivateWalletFragment__error_deactivating_wallet">지갑을 비활성화하는 동안 오류가 발생했습니다.</string>
|
||||
<!-- Removed by excludeNonTranslatables <string name="DeactivateWalletFragment__learn_more__we_recommend_transferring_your_funds" translatable="false">https://support.signal.org/hc/articles/360057625692#payments_deactivate</string> -->
|
||||
|
||||
@@ -6322,7 +6322,7 @@
|
||||
<!-- The title of a dialog notifying that the user scanned a QR code that could be used to link a Signal device. -->
|
||||
<string name="MediaCaptureFragment_device_link_dialog_title">기기를 연동할까요?</string>
|
||||
<!-- The body of a dialog notifying that the user scanned a QR code that could be used to link a Signal device. -->
|
||||
<string name="MediaCaptureFragment_it_looks_like_youre_trying">Signal 기기를 연결하려는 것 같네요. 계속을 탭한 다음 \'새 기기 연결\'을 탭하고 QR 코드를 다시 스캔하세요.</string>
|
||||
<string name="MediaCaptureFragment_it_looks_like_youre_trying">Signal 기기를 연동하려고 하시는 것 같네요. 계속을 탭한 다음 \'새 기기 연동\'을 탭하고 QR 코드를 다시 스캔하세요.</string>
|
||||
<!-- The label of a dialog asking the user if they would like to continue to the linked device settings screen. -->
|
||||
<string name="MediaCaptureFragment_device_link_dialog_continue">계속</string>
|
||||
|
||||
@@ -6800,7 +6800,7 @@
|
||||
<!-- Donation receipts amount title -->
|
||||
<string name="DonationReceiptDetailsFragment__amount">금액</string>
|
||||
<!-- Donation receipts thanks -->
|
||||
<string name="DonationReceiptDetailsFragment__thank_you_for_supporting">Thank you for supporting Signal. Your contribution helps fuel the mission of protecting free expression and enabling secure global communication for millions around the world, through open source privacy technology. If you’re a resident of the United States, please retain this receipt for your tax records. Signal Technology Foundation is a tax–exempt nonprofit organization in the United States under section 501c3 of the Internal Revenue Code. Our Federal Tax ID is 82–4506840. Signal did not provide any goods or services in consideration of this contribution.</string>
|
||||
<string name="DonationReceiptDetailsFragment__thank_you_for_supporting" tools:ignore="TypographyDashes">Thank you for supporting Signal. Your contribution helps fuel the mission of protecting free expression and enabling secure global communication for millions around the world, through open source privacy technology. If you’re a resident of the United States, please retain this receipt for your tax records. Signal Technology Foundation is a tax-exempt nonprofit organization in the United States under section 501c3 of the Internal Revenue Code. Our Federal Tax ID is 82-4506840. Signal did not provide any goods or services in consideration of this contribution.</string>
|
||||
<!-- Donation reciepts screen empty state title -->
|
||||
<string name="DonationReceiptListFragment__no_receipts">영수증 없음</string>
|
||||
|
||||
@@ -7746,7 +7746,7 @@
|
||||
<string name="CallLogFragment__deletion_failed">삭제에 실패했습니다.</string>
|
||||
<!-- Displayed as message in error dialog when can\'t delete links -->
|
||||
<plurals name="CallLogFragment__cant_delete_call_link">
|
||||
<item quantity="other">모든 통화 링크를 삭제하지 못했습니다. 연결을 확인하고 다시 시도하세요.</item>
|
||||
<item quantity="other">일부 통화 링크를 삭제하지 못했습니다. 연결을 확인하고 다시 시도하세요.</item>
|
||||
</plurals>
|
||||
<!-- Snackbar text after clearing the call history -->
|
||||
<string name="CallLogFragment__cleared_call_history">통화 기록을 지웠습니다.</string>
|
||||
@@ -8483,9 +8483,9 @@
|
||||
<!-- Warning message at the bottom of a settings screen indicating how messages will be deleted based on user\'s selection (limit is a number like 500 or 5,000) -->
|
||||
<string name="ManageStorageSettingsFragment_chat_length_limit_warning">선택한 길이를 초과하는 메시지를 영구 삭제합니다.</string>
|
||||
<!-- Setting title for syncing automated chat limit trimming (deleting messages automatically by length or date) to linked devices -->
|
||||
<string name="ManageStorageSettingsFragment_apply_limits_title">연결된 기기에 제한 적용</string>
|
||||
<string name="ManageStorageSettingsFragment_apply_limits_title">연동된 기기에 제한 적용</string>
|
||||
<!-- Setting description for syncing automated chat limit trimming (deleting messages automatically by length or date) to linked devices -->
|
||||
<string name="ManageStorageSettingsFragment_apply_limits_description">대화 제한을 사용하도록 설정할 경우 연결된 기기에서도 메시지를 삭제합니다.</string>
|
||||
<string name="ManageStorageSettingsFragment_apply_limits_description">대화 제한을 설정하면 연동된 기기에서도 메시지가 삭제됩니다.</string>
|
||||
<!-- Setting section title header for storage optimization -->
|
||||
<string name="ManageStorageSettingsFragment__on_device_storage">Signal 저장 공간</string>
|
||||
<!-- Setting row title for storage optimization -->
|
||||
@@ -8554,7 +8554,7 @@
|
||||
<!-- Educational bottom sheet dialog title shown to notify about delete syncs causing deletes to happen across all devices -->
|
||||
<string name="DeleteSyncEducation_title">이제 모든 기기에서 삭제를 동기화합니다</string>
|
||||
<!-- Educational bottom sheet dialog message shown to notify about delete syncs causing deletes to happen across all devices -->
|
||||
<string name="DeleteSyncEducation_message">메시지 또는 대화를 삭제할 때 휴대폰과 연결된 기기에서 해당 내용을 삭제합니다.</string>
|
||||
<string name="DeleteSyncEducation_message">메시지 또는 대화를 삭제할 때 휴대폰과 연동된 기기에서 해당 내용을 삭제합니다.</string>
|
||||
<!-- Educational bottom sheet confirm/dismiss button text shown to notify about delete syncs causing deletes to happen across all devices -->
|
||||
<string name="DeleteSyncEducation_acknowledge_button">확인</string>
|
||||
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
~ SPDX-License-Identifier: AGPL-3.0-only
|
||||
-->
|
||||
<!-- smartling.instruction_comments_enabled = on -->
|
||||
<resources>
|
||||
<resources xmlns:tools="http://schemas.android.com/tools">
|
||||
<!-- Removed by excludeNonTranslatables <string name="app_name" translatable="false">Signal</string> -->
|
||||
|
||||
<!-- Removed by excludeNonTranslatables <string name="install_url" translatable="false">https://signal.org/install</string> -->
|
||||
@@ -399,7 +399,7 @@
|
||||
<string name="ConversationItem_s_deleted_this_message">%1$s бул билдирүүнү өчүрдү</string>
|
||||
<string name="ConversationItem_you_deleted_this_message">Бул билдирүүнү сиз өчүргөнсүз</string>
|
||||
<!-- Tappable text shown on a locally-deleted message tombstone, prompting the user to promote it to a delete-for-everyone -->
|
||||
<string name="ConversationItem_delete_for_everyone_question">Delete for everyone?</string>
|
||||
<string name="ConversationItem_delete_for_everyone_question">Баары үчүн өчүрүлсүнбү?</string>
|
||||
<!-- Conversation message when a message has been deleted by an admin. The placeholder is the admin\'s name. -->
|
||||
<string name="ConversationItem_admin_s_deleted_this_message">Админ %1$s бул билдирүүнү өчүрдү</string>
|
||||
<!-- Dialog error message shown when user can\'t download a message from someone else due to a permanent failure (e.g., unable to decrypt), placeholder is other\'s name -->
|
||||
@@ -6962,7 +6962,7 @@
|
||||
<!-- Donation receipts amount title -->
|
||||
<string name="DonationReceiptDetailsFragment__amount">Суммасы</string>
|
||||
<!-- Donation receipts thanks -->
|
||||
<string name="DonationReceiptDetailsFragment__thank_you_for_supporting">Thank you for supporting Signal. Your contribution helps fuel the mission of protecting free expression and enabling secure global communication for millions around the world, through open source privacy technology. If you’re a resident of the United States, please retain this receipt for your tax records. Signal Technology Foundation is a tax–exempt nonprofit organization in the United States under section 501c3 of the Internal Revenue Code. Our Federal Tax ID is 82–4506840. Signal did not provide any goods or services in consideration of this contribution.</string>
|
||||
<string name="DonationReceiptDetailsFragment__thank_you_for_supporting" tools:ignore="TypographyDashes">Thank you for supporting Signal. Your contribution helps fuel the mission of protecting free expression and enabling secure global communication for millions around the world, through open source privacy technology. If you’re a resident of the United States, please retain this receipt for your tax records. Signal Technology Foundation is a tax-exempt nonprofit organization in the United States under section 501c3 of the Internal Revenue Code. Our Federal Tax ID is 82-4506840. Signal did not provide any goods or services in consideration of this contribution.</string>
|
||||
<!-- Donation reciepts screen empty state title -->
|
||||
<string name="DonationReceiptListFragment__no_receipts">Дүмүрчөктөр жок</string>
|
||||
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
~ SPDX-License-Identifier: AGPL-3.0-only
|
||||
-->
|
||||
<!-- smartling.instruction_comments_enabled = on -->
|
||||
<resources>
|
||||
<resources xmlns:tools="http://schemas.android.com/tools">
|
||||
<!-- Removed by excludeNonTranslatables <string name="app_name" translatable="false">Signal</string> -->
|
||||
|
||||
<!-- Removed by excludeNonTranslatables <string name="install_url" translatable="false">https://signal.org/install</string> -->
|
||||
@@ -403,7 +403,7 @@
|
||||
<string name="ConversationItem_s_deleted_this_message">%1$s ištrynė šią žinutę</string>
|
||||
<string name="ConversationItem_you_deleted_this_message">Jūs ištrynėte šią žinutę</string>
|
||||
<!-- Tappable text shown on a locally-deleted message tombstone, prompting the user to promote it to a delete-for-everyone -->
|
||||
<string name="ConversationItem_delete_for_everyone_question">Delete for everyone?</string>
|
||||
<string name="ConversationItem_delete_for_everyone_question">Ištrinti visiems?</string>
|
||||
<!-- Conversation message when a message has been deleted by an admin. The placeholder is the admin\'s name. -->
|
||||
<string name="ConversationItem_admin_s_deleted_this_message">Administratorius %1$s ištrynė šią žinutę</string>
|
||||
<!-- Dialog error message shown when user can\'t download a message from someone else due to a permanent failure (e.g., unable to decrypt), placeholder is other\'s name -->
|
||||
@@ -7286,7 +7286,7 @@
|
||||
<!-- Donation receipts amount title -->
|
||||
<string name="DonationReceiptDetailsFragment__amount">Suma</string>
|
||||
<!-- Donation receipts thanks -->
|
||||
<string name="DonationReceiptDetailsFragment__thank_you_for_supporting">Thank you for supporting Signal. Your contribution helps fuel the mission of protecting free expression and enabling secure global communication for millions around the world, through open source privacy technology. If you’re a resident of the United States, please retain this receipt for your tax records. Signal Technology Foundation is a tax–exempt nonprofit organization in the United States under section 501c3 of the Internal Revenue Code. Our Federal Tax ID is 82–4506840. Signal did not provide any goods or services in consideration of this contribution.</string>
|
||||
<string name="DonationReceiptDetailsFragment__thank_you_for_supporting" tools:ignore="TypographyDashes">Thank you for supporting Signal. Your contribution helps fuel the mission of protecting free expression and enabling secure global communication for millions around the world, through open source privacy technology. If you’re a resident of the United States, please retain this receipt for your tax records. Signal Technology Foundation is a tax-exempt nonprofit organization in the United States under section 501c3 of the Internal Revenue Code. Our Federal Tax ID is 82-4506840. Signal did not provide any goods or services in consideration of this contribution.</string>
|
||||
<!-- Donation reciepts screen empty state title -->
|
||||
<string name="DonationReceiptListFragment__no_receipts">Nėra kvitų</string>
|
||||
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
~ SPDX-License-Identifier: AGPL-3.0-only
|
||||
-->
|
||||
<!-- smartling.instruction_comments_enabled = on -->
|
||||
<resources>
|
||||
<resources xmlns:tools="http://schemas.android.com/tools">
|
||||
<!-- Removed by excludeNonTranslatables <string name="app_name" translatable="false">Signal</string> -->
|
||||
|
||||
<!-- Removed by excludeNonTranslatables <string name="install_url" translatable="false">https://signal.org/install</string> -->
|
||||
@@ -401,7 +401,7 @@
|
||||
<string name="ConversationItem_s_deleted_this_message">%1$s izdzēsa šo ziņu</string>
|
||||
<string name="ConversationItem_you_deleted_this_message">Jūs izdzēsāt ziņu</string>
|
||||
<!-- Tappable text shown on a locally-deleted message tombstone, prompting the user to promote it to a delete-for-everyone -->
|
||||
<string name="ConversationItem_delete_for_everyone_question">Delete for everyone?</string>
|
||||
<string name="ConversationItem_delete_for_everyone_question">Dzēst visiem?</string>
|
||||
<!-- Conversation message when a message has been deleted by an admin. The placeholder is the admin\'s name. -->
|
||||
<string name="ConversationItem_admin_s_deleted_this_message">Administrators %1$s izdzēsa šo ziņu</string>
|
||||
<!-- Dialog error message shown when user can\'t download a message from someone else due to a permanent failure (e.g., unable to decrypt), placeholder is other\'s name -->
|
||||
@@ -7124,7 +7124,7 @@
|
||||
<!-- Donation receipts amount title -->
|
||||
<string name="DonationReceiptDetailsFragment__amount">Apjoms</string>
|
||||
<!-- Donation receipts thanks -->
|
||||
<string name="DonationReceiptDetailsFragment__thank_you_for_supporting">Thank you for supporting Signal. Your contribution helps fuel the mission of protecting free expression and enabling secure global communication for millions around the world, through open source privacy technology. If you’re a resident of the United States, please retain this receipt for your tax records. Signal Technology Foundation is a tax–exempt nonprofit organization in the United States under section 501c3 of the Internal Revenue Code. Our Federal Tax ID is 82–4506840. Signal did not provide any goods or services in consideration of this contribution.</string>
|
||||
<string name="DonationReceiptDetailsFragment__thank_you_for_supporting" tools:ignore="TypographyDashes">Thank you for supporting Signal. Your contribution helps fuel the mission of protecting free expression and enabling secure global communication for millions around the world, through open source privacy technology. If you’re a resident of the United States, please retain this receipt for your tax records. Signal Technology Foundation is a tax-exempt nonprofit organization in the United States under section 501c3 of the Internal Revenue Code. Our Federal Tax ID is 82-4506840. Signal did not provide any goods or services in consideration of this contribution.</string>
|
||||
<!-- Donation reciepts screen empty state title -->
|
||||
<string name="DonationReceiptListFragment__no_receipts">Kvīšu nav</string>
|
||||
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
~ SPDX-License-Identifier: AGPL-3.0-only
|
||||
-->
|
||||
<!-- smartling.instruction_comments_enabled = on -->
|
||||
<resources>
|
||||
<resources xmlns:tools="http://schemas.android.com/tools">
|
||||
<!-- Removed by excludeNonTranslatables <string name="app_name" translatable="false">Signal</string> -->
|
||||
|
||||
<!-- Removed by excludeNonTranslatables <string name="install_url" translatable="false">https://signal.org/install</string> -->
|
||||
@@ -399,7 +399,7 @@
|
||||
<string name="ConversationItem_s_deleted_this_message">%1$s ја избриша оваа порака</string>
|
||||
<string name="ConversationItem_you_deleted_this_message">Ја избришавте оваа порака</string>
|
||||
<!-- Tappable text shown on a locally-deleted message tombstone, prompting the user to promote it to a delete-for-everyone -->
|
||||
<string name="ConversationItem_delete_for_everyone_question">Delete for everyone?</string>
|
||||
<string name="ConversationItem_delete_for_everyone_question">Да се избрише за сите?</string>
|
||||
<!-- Conversation message when a message has been deleted by an admin. The placeholder is the admin\'s name. -->
|
||||
<string name="ConversationItem_admin_s_deleted_this_message">Администраторот %1$s ја избриша оваа порака</string>
|
||||
<!-- Dialog error message shown when user can\'t download a message from someone else due to a permanent failure (e.g., unable to decrypt), placeholder is other\'s name -->
|
||||
@@ -6962,7 +6962,7 @@
|
||||
<!-- Donation receipts amount title -->
|
||||
<string name="DonationReceiptDetailsFragment__amount">Износ</string>
|
||||
<!-- Donation receipts thanks -->
|
||||
<string name="DonationReceiptDetailsFragment__thank_you_for_supporting">Thank you for supporting Signal. Your contribution helps fuel the mission of protecting free expression and enabling secure global communication for millions around the world, through open source privacy technology. If you’re a resident of the United States, please retain this receipt for your tax records. Signal Technology Foundation is a tax–exempt nonprofit organization in the United States under section 501c3 of the Internal Revenue Code. Our Federal Tax ID is 82–4506840. Signal did not provide any goods or services in consideration of this contribution.</string>
|
||||
<string name="DonationReceiptDetailsFragment__thank_you_for_supporting" tools:ignore="TypographyDashes">Thank you for supporting Signal. Your contribution helps fuel the mission of protecting free expression and enabling secure global communication for millions around the world, through open source privacy technology. If you’re a resident of the United States, please retain this receipt for your tax records. Signal Technology Foundation is a tax-exempt nonprofit organization in the United States under section 501c3 of the Internal Revenue Code. Our Federal Tax ID is 82-4506840. Signal did not provide any goods or services in consideration of this contribution.</string>
|
||||
<!-- Donation reciepts screen empty state title -->
|
||||
<string name="DonationReceiptListFragment__no_receipts">Нема потврди</string>
|
||||
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
~ SPDX-License-Identifier: AGPL-3.0-only
|
||||
-->
|
||||
<!-- smartling.instruction_comments_enabled = on -->
|
||||
<resources>
|
||||
<resources xmlns:tools="http://schemas.android.com/tools">
|
||||
<!-- Removed by excludeNonTranslatables <string name="app_name" translatable="false">Signal</string> -->
|
||||
|
||||
<!-- Removed by excludeNonTranslatables <string name="install_url" translatable="false">https://signal.org/install</string> -->
|
||||
@@ -399,7 +399,7 @@
|
||||
<string name="ConversationItem_s_deleted_this_message">%1$s ഈ സന്ദേശം ഇല്ലാതാക്കി</string>
|
||||
<string name="ConversationItem_you_deleted_this_message">നിങ്ങൾ ഈ സന്ദേശം ഇല്ലാതാക്കി</string>
|
||||
<!-- Tappable text shown on a locally-deleted message tombstone, prompting the user to promote it to a delete-for-everyone -->
|
||||
<string name="ConversationItem_delete_for_everyone_question">Delete for everyone?</string>
|
||||
<string name="ConversationItem_delete_for_everyone_question">എല്ലാവർക്കും ഇല്ലാതാക്കണോ?</string>
|
||||
<!-- Conversation message when a message has been deleted by an admin. The placeholder is the admin\'s name. -->
|
||||
<string name="ConversationItem_admin_s_deleted_this_message">അഡ്മിൻ %1$s ഈ സന്ദേശം ഇല്ലാതാക്കി</string>
|
||||
<!-- Dialog error message shown when user can\'t download a message from someone else due to a permanent failure (e.g., unable to decrypt), placeholder is other\'s name -->
|
||||
@@ -6962,7 +6962,7 @@
|
||||
<!-- Donation receipts amount title -->
|
||||
<string name="DonationReceiptDetailsFragment__amount">തുക</string>
|
||||
<!-- Donation receipts thanks -->
|
||||
<string name="DonationReceiptDetailsFragment__thank_you_for_supporting">Thank you for supporting Signal. Your contribution helps fuel the mission of protecting free expression and enabling secure global communication for millions around the world, through open source privacy technology. If you’re a resident of the United States, please retain this receipt for your tax records. Signal Technology Foundation is a tax–exempt nonprofit organization in the United States under section 501c3 of the Internal Revenue Code. Our Federal Tax ID is 82–4506840. Signal did not provide any goods or services in consideration of this contribution.</string>
|
||||
<string name="DonationReceiptDetailsFragment__thank_you_for_supporting" tools:ignore="TypographyDashes">Thank you for supporting Signal. Your contribution helps fuel the mission of protecting free expression and enabling secure global communication for millions around the world, through open source privacy technology. If you’re a resident of the United States, please retain this receipt for your tax records. Signal Technology Foundation is a tax-exempt nonprofit organization in the United States under section 501c3 of the Internal Revenue Code. Our Federal Tax ID is 82-4506840. Signal did not provide any goods or services in consideration of this contribution.</string>
|
||||
<!-- Donation reciepts screen empty state title -->
|
||||
<string name="DonationReceiptListFragment__no_receipts">രസീതുകളൊന്നുമില്ല</string>
|
||||
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
~ SPDX-License-Identifier: AGPL-3.0-only
|
||||
-->
|
||||
<!-- smartling.instruction_comments_enabled = on -->
|
||||
<resources>
|
||||
<resources xmlns:tools="http://schemas.android.com/tools">
|
||||
<!-- Removed by excludeNonTranslatables <string name="app_name" translatable="false">Signal</string> -->
|
||||
|
||||
<!-- Removed by excludeNonTranslatables <string name="install_url" translatable="false">https://signal.org/install</string> -->
|
||||
@@ -399,7 +399,7 @@
|
||||
<string name="ConversationItem_s_deleted_this_message">%1$s यांनी हा संदेश हटवला</string>
|
||||
<string name="ConversationItem_you_deleted_this_message">तुम्ही हा संदेश हटवला</string>
|
||||
<!-- Tappable text shown on a locally-deleted message tombstone, prompting the user to promote it to a delete-for-everyone -->
|
||||
<string name="ConversationItem_delete_for_everyone_question">Delete for everyone?</string>
|
||||
<string name="ConversationItem_delete_for_everyone_question">सर्वांसाठी हटवायचा?</string>
|
||||
<!-- Conversation message when a message has been deleted by an admin. The placeholder is the admin\'s name. -->
|
||||
<string name="ConversationItem_admin_s_deleted_this_message">ॲडमिन %1$s यांनी हा संदेश हटवला</string>
|
||||
<!-- Dialog error message shown when user can\'t download a message from someone else due to a permanent failure (e.g., unable to decrypt), placeholder is other\'s name -->
|
||||
@@ -6962,7 +6962,7 @@
|
||||
<!-- Donation receipts amount title -->
|
||||
<string name="DonationReceiptDetailsFragment__amount">रक्कम</string>
|
||||
<!-- Donation receipts thanks -->
|
||||
<string name="DonationReceiptDetailsFragment__thank_you_for_supporting">Thank you for supporting Signal. Your contribution helps fuel the mission of protecting free expression and enabling secure global communication for millions around the world, through open source privacy technology. If you’re a resident of the United States, please retain this receipt for your tax records. Signal Technology Foundation is a tax–exempt nonprofit organization in the United States under section 501c3 of the Internal Revenue Code. Our Federal Tax ID is 82–4506840. Signal did not provide any goods or services in consideration of this contribution.</string>
|
||||
<string name="DonationReceiptDetailsFragment__thank_you_for_supporting" tools:ignore="TypographyDashes">Thank you for supporting Signal. Your contribution helps fuel the mission of protecting free expression and enabling secure global communication for millions around the world, through open source privacy technology. If you’re a resident of the United States, please retain this receipt for your tax records. Signal Technology Foundation is a tax-exempt nonprofit organization in the United States under section 501c3 of the Internal Revenue Code. Our Federal Tax ID is 82-4506840. Signal did not provide any goods or services in consideration of this contribution.</string>
|
||||
<!-- Donation reciepts screen empty state title -->
|
||||
<string name="DonationReceiptListFragment__no_receipts">पावत्या नाहीत</string>
|
||||
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
~ SPDX-License-Identifier: AGPL-3.0-only
|
||||
-->
|
||||
<!-- smartling.instruction_comments_enabled = on -->
|
||||
<resources>
|
||||
<resources xmlns:tools="http://schemas.android.com/tools">
|
||||
<!-- Removed by excludeNonTranslatables <string name="app_name" translatable="false">Signal</string> -->
|
||||
|
||||
<!-- Removed by excludeNonTranslatables <string name="install_url" translatable="false">https://signal.org/install</string> -->
|
||||
@@ -397,7 +397,7 @@
|
||||
<string name="ConversationItem_s_deleted_this_message">%1$s memadam mesej ini</string>
|
||||
<string name="ConversationItem_you_deleted_this_message">Anda memadam mesej ini</string>
|
||||
<!-- Tappable text shown on a locally-deleted message tombstone, prompting the user to promote it to a delete-for-everyone -->
|
||||
<string name="ConversationItem_delete_for_everyone_question">Delete for everyone?</string>
|
||||
<string name="ConversationItem_delete_for_everyone_question">Padam untuk semua orang?</string>
|
||||
<!-- Conversation message when a message has been deleted by an admin. The placeholder is the admin\'s name. -->
|
||||
<string name="ConversationItem_admin_s_deleted_this_message">Pentadbir %1$s memadam mesej ini</string>
|
||||
<!-- Dialog error message shown when user can\'t download a message from someone else due to a permanent failure (e.g., unable to decrypt), placeholder is other\'s name -->
|
||||
@@ -6800,7 +6800,7 @@
|
||||
<!-- Donation receipts amount title -->
|
||||
<string name="DonationReceiptDetailsFragment__amount">Jumlah</string>
|
||||
<!-- Donation receipts thanks -->
|
||||
<string name="DonationReceiptDetailsFragment__thank_you_for_supporting">Thank you for supporting Signal. Your contribution helps fuel the mission of protecting free expression and enabling secure global communication for millions around the world, through open source privacy technology. If you’re a resident of the United States, please retain this receipt for your tax records. Signal Technology Foundation is a tax–exempt nonprofit organization in the United States under section 501c3 of the Internal Revenue Code. Our Federal Tax ID is 82–4506840. Signal did not provide any goods or services in consideration of this contribution.</string>
|
||||
<string name="DonationReceiptDetailsFragment__thank_you_for_supporting" tools:ignore="TypographyDashes">Thank you for supporting Signal. Your contribution helps fuel the mission of protecting free expression and enabling secure global communication for millions around the world, through open source privacy technology. If you’re a resident of the United States, please retain this receipt for your tax records. Signal Technology Foundation is a tax-exempt nonprofit organization in the United States under section 501c3 of the Internal Revenue Code. Our Federal Tax ID is 82-4506840. Signal did not provide any goods or services in consideration of this contribution.</string>
|
||||
<!-- Donation reciepts screen empty state title -->
|
||||
<string name="DonationReceiptListFragment__no_receipts">Tiada resit</string>
|
||||
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
~ SPDX-License-Identifier: AGPL-3.0-only
|
||||
-->
|
||||
<!-- smartling.instruction_comments_enabled = on -->
|
||||
<resources>
|
||||
<resources xmlns:tools="http://schemas.android.com/tools">
|
||||
<!-- Removed by excludeNonTranslatables <string name="app_name" translatable="false">Signal</string> -->
|
||||
|
||||
<!-- Removed by excludeNonTranslatables <string name="install_url" translatable="false">https://signal.org/install</string> -->
|
||||
@@ -397,7 +397,7 @@
|
||||
<string name="ConversationItem_s_deleted_this_message">%1$s မှ ဤမက်ဆေ့ချ်ကို ဖျက်လိုက်ပါပြီ</string>
|
||||
<string name="ConversationItem_you_deleted_this_message">သင်ဤမက်ဆေ့ချ်ကို ဖျက်လိုက်သည်</string>
|
||||
<!-- Tappable text shown on a locally-deleted message tombstone, prompting the user to promote it to a delete-for-everyone -->
|
||||
<string name="ConversationItem_delete_for_everyone_question">Delete for everyone?</string>
|
||||
<string name="ConversationItem_delete_for_everyone_question">လူတိုင်းအတွက် ဖျက်မည်လား။</string>
|
||||
<!-- Conversation message when a message has been deleted by an admin. The placeholder is the admin\'s name. -->
|
||||
<string name="ConversationItem_admin_s_deleted_this_message">အက်ဒ်မင် %1$s မှ ဤမက်ဆေ့ချ်ကို ဖျက်လိုက်ပါသည်</string>
|
||||
<!-- Dialog error message shown when user can\'t download a message from someone else due to a permanent failure (e.g., unable to decrypt), placeholder is other\'s name -->
|
||||
@@ -6800,7 +6800,7 @@
|
||||
<!-- Donation receipts amount title -->
|
||||
<string name="DonationReceiptDetailsFragment__amount">ပမာဏ</string>
|
||||
<!-- Donation receipts thanks -->
|
||||
<string name="DonationReceiptDetailsFragment__thank_you_for_supporting">Thank you for supporting Signal. Your contribution helps fuel the mission of protecting free expression and enabling secure global communication for millions around the world, through open source privacy technology. If you’re a resident of the United States, please retain this receipt for your tax records. Signal Technology Foundation is a tax–exempt nonprofit organization in the United States under section 501c3 of the Internal Revenue Code. Our Federal Tax ID is 82–4506840. Signal did not provide any goods or services in consideration of this contribution.</string>
|
||||
<string name="DonationReceiptDetailsFragment__thank_you_for_supporting" tools:ignore="TypographyDashes">Thank you for supporting Signal. Your contribution helps fuel the mission of protecting free expression and enabling secure global communication for millions around the world, through open source privacy technology. If you’re a resident of the United States, please retain this receipt for your tax records. Signal Technology Foundation is a tax-exempt nonprofit organization in the United States under section 501c3 of the Internal Revenue Code. Our Federal Tax ID is 82-4506840. Signal did not provide any goods or services in consideration of this contribution.</string>
|
||||
<!-- Donation reciepts screen empty state title -->
|
||||
<string name="DonationReceiptListFragment__no_receipts">ပြေစာများ မရှိပါ</string>
|
||||
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
~ SPDX-License-Identifier: AGPL-3.0-only
|
||||
-->
|
||||
<!-- smartling.instruction_comments_enabled = on -->
|
||||
<resources>
|
||||
<resources xmlns:tools="http://schemas.android.com/tools">
|
||||
<!-- Removed by excludeNonTranslatables <string name="app_name" translatable="false">Signal</string> -->
|
||||
|
||||
<!-- Removed by excludeNonTranslatables <string name="install_url" translatable="false">https://signal.org/install</string> -->
|
||||
@@ -399,7 +399,7 @@
|
||||
<string name="ConversationItem_s_deleted_this_message">%1$s slettet denne meldingen</string>
|
||||
<string name="ConversationItem_you_deleted_this_message">Du slettet denne meldingen</string>
|
||||
<!-- Tappable text shown on a locally-deleted message tombstone, prompting the user to promote it to a delete-for-everyone -->
|
||||
<string name="ConversationItem_delete_for_everyone_question">Delete for everyone?</string>
|
||||
<string name="ConversationItem_delete_for_everyone_question">Vil du slette for alle?</string>
|
||||
<!-- Conversation message when a message has been deleted by an admin. The placeholder is the admin\'s name. -->
|
||||
<string name="ConversationItem_admin_s_deleted_this_message">Administratoren %1$s slettet denne meldingen</string>
|
||||
<!-- Dialog error message shown when user can\'t download a message from someone else due to a permanent failure (e.g., unable to decrypt), placeholder is other\'s name -->
|
||||
@@ -6962,7 +6962,7 @@
|
||||
<!-- Donation receipts amount title -->
|
||||
<string name="DonationReceiptDetailsFragment__amount">Beløp</string>
|
||||
<!-- Donation receipts thanks -->
|
||||
<string name="DonationReceiptDetailsFragment__thank_you_for_supporting">Thank you for supporting Signal. Your contribution helps fuel the mission of protecting free expression and enabling secure global communication for millions around the world, through open source privacy technology. If you’re a resident of the United States, please retain this receipt for your tax records. Signal Technology Foundation is a tax–exempt nonprofit organization in the United States under section 501c3 of the Internal Revenue Code. Our Federal Tax ID is 82–4506840. Signal did not provide any goods or services in consideration of this contribution.</string>
|
||||
<string name="DonationReceiptDetailsFragment__thank_you_for_supporting" tools:ignore="TypographyDashes">Thank you for supporting Signal. Your contribution helps fuel the mission of protecting free expression and enabling secure global communication for millions around the world, through open source privacy technology. If you’re a resident of the United States, please retain this receipt for your tax records. Signal Technology Foundation is a tax-exempt nonprofit organization in the United States under section 501c3 of the Internal Revenue Code. Our Federal Tax ID is 82-4506840. Signal did not provide any goods or services in consideration of this contribution.</string>
|
||||
<!-- Donation reciepts screen empty state title -->
|
||||
<string name="DonationReceiptListFragment__no_receipts">Ingen kvitteringer</string>
|
||||
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
~ SPDX-License-Identifier: AGPL-3.0-only
|
||||
-->
|
||||
<!-- smartling.instruction_comments_enabled = on -->
|
||||
<resources>
|
||||
<resources xmlns:tools="http://schemas.android.com/tools">
|
||||
<!-- Removed by excludeNonTranslatables <string name="app_name" translatable="false">Signal</string> -->
|
||||
|
||||
<!-- Removed by excludeNonTranslatables <string name="install_url" translatable="false">https://signal.org/install</string> -->
|
||||
@@ -399,7 +399,7 @@
|
||||
<string name="ConversationItem_s_deleted_this_message">%1$s heeft dit bericht verwijderd</string>
|
||||
<string name="ConversationItem_you_deleted_this_message">Je hebt dit bericht verwijderd</string>
|
||||
<!-- Tappable text shown on a locally-deleted message tombstone, prompting the user to promote it to a delete-for-everyone -->
|
||||
<string name="ConversationItem_delete_for_everyone_question">Delete for everyone?</string>
|
||||
<string name="ConversationItem_delete_for_everyone_question">Verwijderen voor iedereen?</string>
|
||||
<!-- Conversation message when a message has been deleted by an admin. The placeholder is the admin\'s name. -->
|
||||
<string name="ConversationItem_admin_s_deleted_this_message">Beheerder %1$s heeft dit bericht verwijderd</string>
|
||||
<!-- Dialog error message shown when user can\'t download a message from someone else due to a permanent failure (e.g., unable to decrypt), placeholder is other\'s name -->
|
||||
@@ -6962,7 +6962,7 @@
|
||||
<!-- Donation receipts amount title -->
|
||||
<string name="DonationReceiptDetailsFragment__amount">Bedrag</string>
|
||||
<!-- Donation receipts thanks -->
|
||||
<string name="DonationReceiptDetailsFragment__thank_you_for_supporting">Thank you for supporting Signal. Your contribution helps fuel the mission of protecting free expression and enabling secure global communication for millions around the world, through open source privacy technology. If you’re a resident of the United States, please retain this receipt for your tax records. Signal Technology Foundation is a tax–exempt nonprofit organization in the United States under section 501c3 of the Internal Revenue Code. Our Federal Tax ID is 82–4506840. Signal did not provide any goods or services in consideration of this contribution.</string>
|
||||
<string name="DonationReceiptDetailsFragment__thank_you_for_supporting" tools:ignore="TypographyDashes">Thank you for supporting Signal. Your contribution helps fuel the mission of protecting free expression and enabling secure global communication for millions around the world, through open source privacy technology. If you’re a resident of the United States, please retain this receipt for your tax records. Signal Technology Foundation is a tax-exempt nonprofit organization in the United States under section 501c3 of the Internal Revenue Code. Our Federal Tax ID is 82-4506840. Signal did not provide any goods or services in consideration of this contribution.</string>
|
||||
<!-- Donation reciepts screen empty state title -->
|
||||
<string name="DonationReceiptListFragment__no_receipts">Geen donatiebewijzen</string>
|
||||
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
~ SPDX-License-Identifier: AGPL-3.0-only
|
||||
-->
|
||||
<!-- smartling.instruction_comments_enabled = on -->
|
||||
<resources>
|
||||
<resources xmlns:tools="http://schemas.android.com/tools">
|
||||
<!-- Removed by excludeNonTranslatables <string name="app_name" translatable="false">Signal</string> -->
|
||||
|
||||
<!-- Removed by excludeNonTranslatables <string name="install_url" translatable="false">https://signal.org/install</string> -->
|
||||
@@ -399,7 +399,7 @@
|
||||
<string name="ConversationItem_s_deleted_this_message">%1$s ਨੇ ਇਹ ਸੁਨੇਹਾ ਮਿਟਾ ਦਿੱਤਾ ਹੈ</string>
|
||||
<string name="ConversationItem_you_deleted_this_message">ਤੁਸੀਂ ਇਸ ਸੁਨੇਹੇ ਨੂੰ ਮਿਟਾ ਦਿੱਤਾ ਹੈ</string>
|
||||
<!-- Tappable text shown on a locally-deleted message tombstone, prompting the user to promote it to a delete-for-everyone -->
|
||||
<string name="ConversationItem_delete_for_everyone_question">Delete for everyone?</string>
|
||||
<string name="ConversationItem_delete_for_everyone_question">ਕੀ ਸਾਰਿਆਂ ਲਈ ਮਿਟਾਉਣਾ ਹੈ?</string>
|
||||
<!-- Conversation message when a message has been deleted by an admin. The placeholder is the admin\'s name. -->
|
||||
<string name="ConversationItem_admin_s_deleted_this_message">ਐਡਮਿਨ %1$s ਨੇ ਇਹ ਸੁਨੇਹਾ ਮਿਟਾ ਦਿੱਤਾ ਹੈ</string>
|
||||
<!-- Dialog error message shown when user can\'t download a message from someone else due to a permanent failure (e.g., unable to decrypt), placeholder is other\'s name -->
|
||||
@@ -6962,7 +6962,7 @@
|
||||
<!-- Donation receipts amount title -->
|
||||
<string name="DonationReceiptDetailsFragment__amount">ਰਕਮ</string>
|
||||
<!-- Donation receipts thanks -->
|
||||
<string name="DonationReceiptDetailsFragment__thank_you_for_supporting">Thank you for supporting Signal. Your contribution helps fuel the mission of protecting free expression and enabling secure global communication for millions around the world, through open source privacy technology. If you’re a resident of the United States, please retain this receipt for your tax records. Signal Technology Foundation is a tax–exempt nonprofit organization in the United States under section 501c3 of the Internal Revenue Code. Our Federal Tax ID is 82–4506840. Signal did not provide any goods or services in consideration of this contribution.</string>
|
||||
<string name="DonationReceiptDetailsFragment__thank_you_for_supporting" tools:ignore="TypographyDashes">Thank you for supporting Signal. Your contribution helps fuel the mission of protecting free expression and enabling secure global communication for millions around the world, through open source privacy technology. If you’re a resident of the United States, please retain this receipt for your tax records. Signal Technology Foundation is a tax-exempt nonprofit organization in the United States under section 501c3 of the Internal Revenue Code. Our Federal Tax ID is 82-4506840. Signal did not provide any goods or services in consideration of this contribution.</string>
|
||||
<!-- Donation reciepts screen empty state title -->
|
||||
<string name="DonationReceiptListFragment__no_receipts">ਕੋਈ ਵੀ ਰਸੀਦ ਮੌਜੂਦ ਨਹੀਂ ਹੈ</string>
|
||||
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
~ SPDX-License-Identifier: AGPL-3.0-only
|
||||
-->
|
||||
<!-- smartling.instruction_comments_enabled = on -->
|
||||
<resources>
|
||||
<resources xmlns:tools="http://schemas.android.com/tools">
|
||||
<!-- Removed by excludeNonTranslatables <string name="app_name" translatable="false">Signal</string> -->
|
||||
|
||||
<!-- Removed by excludeNonTranslatables <string name="install_url" translatable="false">https://signal.org/install</string> -->
|
||||
@@ -403,7 +403,7 @@
|
||||
<string name="ConversationItem_s_deleted_this_message">Wiadomość usunął uczestnik czatu (%1$s)</string>
|
||||
<string name="ConversationItem_you_deleted_this_message">Wiadomość została przez Ciebie usunięta</string>
|
||||
<!-- Tappable text shown on a locally-deleted message tombstone, prompting the user to promote it to a delete-for-everyone -->
|
||||
<string name="ConversationItem_delete_for_everyone_question">Delete for everyone?</string>
|
||||
<string name="ConversationItem_delete_for_everyone_question">Usunąć u wszystkich?</string>
|
||||
<!-- Conversation message when a message has been deleted by an admin. The placeholder is the admin\'s name. -->
|
||||
<string name="ConversationItem_admin_s_deleted_this_message">Administrator %1$s usunął wiadomość</string>
|
||||
<!-- Dialog error message shown when user can\'t download a message from someone else due to a permanent failure (e.g., unable to decrypt), placeholder is other\'s name -->
|
||||
@@ -7286,7 +7286,7 @@
|
||||
<!-- Donation receipts amount title -->
|
||||
<string name="DonationReceiptDetailsFragment__amount">Kwota</string>
|
||||
<!-- Donation receipts thanks -->
|
||||
<string name="DonationReceiptDetailsFragment__thank_you_for_supporting">Thank you for supporting Signal. Your contribution helps fuel the mission of protecting free expression and enabling secure global communication for millions around the world, through open source privacy technology. If you’re a resident of the United States, please retain this receipt for your tax records. Signal Technology Foundation is a tax–exempt nonprofit organization in the United States under section 501c3 of the Internal Revenue Code. Our Federal Tax ID is 82–4506840. Signal did not provide any goods or services in consideration of this contribution.</string>
|
||||
<string name="DonationReceiptDetailsFragment__thank_you_for_supporting" tools:ignore="TypographyDashes">Thank you for supporting Signal. Your contribution helps fuel the mission of protecting free expression and enabling secure global communication for millions around the world, through open source privacy technology. If you’re a resident of the United States, please retain this receipt for your tax records. Signal Technology Foundation is a tax-exempt nonprofit organization in the United States under section 501c3 of the Internal Revenue Code. Our Federal Tax ID is 82-4506840. Signal did not provide any goods or services in consideration of this contribution.</string>
|
||||
<!-- Donation reciepts screen empty state title -->
|
||||
<string name="DonationReceiptListFragment__no_receipts">Brak potwierdzeń</string>
|
||||
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
~ SPDX-License-Identifier: AGPL-3.0-only
|
||||
-->
|
||||
<!-- smartling.instruction_comments_enabled = on -->
|
||||
<resources>
|
||||
<resources xmlns:tools="http://schemas.android.com/tools">
|
||||
<!-- Removed by excludeNonTranslatables <string name="app_name" translatable="false">Signal</string> -->
|
||||
|
||||
<!-- Removed by excludeNonTranslatables <string name="install_url" translatable="false">https://signal.org/install</string> -->
|
||||
@@ -399,7 +399,7 @@
|
||||
<string name="ConversationItem_s_deleted_this_message">%1$s apagou esta mensagem</string>
|
||||
<string name="ConversationItem_you_deleted_this_message">Você apagou esta mensagem</string>
|
||||
<!-- Tappable text shown on a locally-deleted message tombstone, prompting the user to promote it to a delete-for-everyone -->
|
||||
<string name="ConversationItem_delete_for_everyone_question">Delete for everyone?</string>
|
||||
<string name="ConversationItem_delete_for_everyone_question">Apagar para todos?</string>
|
||||
<!-- Conversation message when a message has been deleted by an admin. The placeholder is the admin\'s name. -->
|
||||
<string name="ConversationItem_admin_s_deleted_this_message">Admin %1$s apagou esta mensagem</string>
|
||||
<!-- Dialog error message shown when user can\'t download a message from someone else due to a permanent failure (e.g., unable to decrypt), placeholder is other\'s name -->
|
||||
@@ -6962,7 +6962,7 @@
|
||||
<!-- Donation receipts amount title -->
|
||||
<string name="DonationReceiptDetailsFragment__amount">Valor</string>
|
||||
<!-- Donation receipts thanks -->
|
||||
<string name="DonationReceiptDetailsFragment__thank_you_for_supporting">Thank you for supporting Signal. Your contribution helps fuel the mission of protecting free expression and enabling secure global communication for millions around the world, through open source privacy technology. If you’re a resident of the United States, please retain this receipt for your tax records. Signal Technology Foundation is a tax–exempt nonprofit organization in the United States under section 501c3 of the Internal Revenue Code. Our Federal Tax ID is 82–4506840. Signal did not provide any goods or services in consideration of this contribution.</string>
|
||||
<string name="DonationReceiptDetailsFragment__thank_you_for_supporting" tools:ignore="TypographyDashes">Thank you for supporting Signal. Your contribution helps fuel the mission of protecting free expression and enabling secure global communication for millions around the world, through open source privacy technology. If you’re a resident of the United States, please retain this receipt for your tax records. Signal Technology Foundation is a tax-exempt nonprofit organization in the United States under section 501c3 of the Internal Revenue Code. Our Federal Tax ID is 82-4506840. Signal did not provide any goods or services in consideration of this contribution.</string>
|
||||
<!-- Donation reciepts screen empty state title -->
|
||||
<string name="DonationReceiptListFragment__no_receipts">Nenhuma nota fiscal</string>
|
||||
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
~ SPDX-License-Identifier: AGPL-3.0-only
|
||||
-->
|
||||
<!-- smartling.instruction_comments_enabled = on -->
|
||||
<resources>
|
||||
<resources xmlns:tools="http://schemas.android.com/tools">
|
||||
<!-- Removed by excludeNonTranslatables <string name="app_name" translatable="false">Signal</string> -->
|
||||
|
||||
<!-- Removed by excludeNonTranslatables <string name="install_url" translatable="false">https://signal.org/install</string> -->
|
||||
@@ -399,7 +399,7 @@
|
||||
<string name="ConversationItem_s_deleted_this_message">%1$s eliminou esta mensagem</string>
|
||||
<string name="ConversationItem_you_deleted_this_message">Eliminou esta mensagem</string>
|
||||
<!-- Tappable text shown on a locally-deleted message tombstone, prompting the user to promote it to a delete-for-everyone -->
|
||||
<string name="ConversationItem_delete_for_everyone_question">Delete for everyone?</string>
|
||||
<string name="ConversationItem_delete_for_everyone_question">Eliminar para todos?</string>
|
||||
<!-- Conversation message when a message has been deleted by an admin. The placeholder is the admin\'s name. -->
|
||||
<string name="ConversationItem_admin_s_deleted_this_message">Administrador %1$s eliminou esta mensagem</string>
|
||||
<!-- Dialog error message shown when user can\'t download a message from someone else due to a permanent failure (e.g., unable to decrypt), placeholder is other\'s name -->
|
||||
@@ -6962,7 +6962,7 @@
|
||||
<!-- Donation receipts amount title -->
|
||||
<string name="DonationReceiptDetailsFragment__amount">Montante</string>
|
||||
<!-- Donation receipts thanks -->
|
||||
<string name="DonationReceiptDetailsFragment__thank_you_for_supporting">Thank you for supporting Signal. Your contribution helps fuel the mission of protecting free expression and enabling secure global communication for millions around the world, through open source privacy technology. If you’re a resident of the United States, please retain this receipt for your tax records. Signal Technology Foundation is a tax–exempt nonprofit organization in the United States under section 501c3 of the Internal Revenue Code. Our Federal Tax ID is 82–4506840. Signal did not provide any goods or services in consideration of this contribution.</string>
|
||||
<string name="DonationReceiptDetailsFragment__thank_you_for_supporting" tools:ignore="TypographyDashes">Thank you for supporting Signal. Your contribution helps fuel the mission of protecting free expression and enabling secure global communication for millions around the world, through open source privacy technology. If you’re a resident of the United States, please retain this receipt for your tax records. Signal Technology Foundation is a tax-exempt nonprofit organization in the United States under section 501c3 of the Internal Revenue Code. Our Federal Tax ID is 82-4506840. Signal did not provide any goods or services in consideration of this contribution.</string>
|
||||
<!-- Donation reciepts screen empty state title -->
|
||||
<string name="DonationReceiptListFragment__no_receipts">Sem recibos</string>
|
||||
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
~ SPDX-License-Identifier: AGPL-3.0-only
|
||||
-->
|
||||
<!-- smartling.instruction_comments_enabled = on -->
|
||||
<resources>
|
||||
<resources xmlns:tools="http://schemas.android.com/tools">
|
||||
<!-- Removed by excludeNonTranslatables <string name="app_name" translatable="false">Signal</string> -->
|
||||
|
||||
<!-- Removed by excludeNonTranslatables <string name="install_url" translatable="false">https://signal.org/install</string> -->
|
||||
@@ -401,7 +401,7 @@
|
||||
<string name="ConversationItem_s_deleted_this_message">%1$s a eliminat acest mesaj</string>
|
||||
<string name="ConversationItem_you_deleted_this_message">Ai eliminat acest mesaj</string>
|
||||
<!-- Tappable text shown on a locally-deleted message tombstone, prompting the user to promote it to a delete-for-everyone -->
|
||||
<string name="ConversationItem_delete_for_everyone_question">Delete for everyone?</string>
|
||||
<string name="ConversationItem_delete_for_everyone_question">Elimini pentru toată lumea?</string>
|
||||
<!-- Conversation message when a message has been deleted by an admin. The placeholder is the admin\'s name. -->
|
||||
<string name="ConversationItem_admin_s_deleted_this_message">Administratorul %1$s a eliminat acest mesaj</string>
|
||||
<!-- Dialog error message shown when user can\'t download a message from someone else due to a permanent failure (e.g., unable to decrypt), placeholder is other\'s name -->
|
||||
@@ -7124,7 +7124,7 @@
|
||||
<!-- Donation receipts amount title -->
|
||||
<string name="DonationReceiptDetailsFragment__amount">Suma</string>
|
||||
<!-- Donation receipts thanks -->
|
||||
<string name="DonationReceiptDetailsFragment__thank_you_for_supporting">Thank you for supporting Signal. Your contribution helps fuel the mission of protecting free expression and enabling secure global communication for millions around the world, through open source privacy technology. If you’re a resident of the United States, please retain this receipt for your tax records. Signal Technology Foundation is a tax–exempt nonprofit organization in the United States under section 501c3 of the Internal Revenue Code. Our Federal Tax ID is 82–4506840. Signal did not provide any goods or services in consideration of this contribution.</string>
|
||||
<string name="DonationReceiptDetailsFragment__thank_you_for_supporting" tools:ignore="TypographyDashes">Thank you for supporting Signal. Your contribution helps fuel the mission of protecting free expression and enabling secure global communication for millions around the world, through open source privacy technology. If you’re a resident of the United States, please retain this receipt for your tax records. Signal Technology Foundation is a tax-exempt nonprofit organization in the United States under section 501c3 of the Internal Revenue Code. Our Federal Tax ID is 82-4506840. Signal did not provide any goods or services in consideration of this contribution.</string>
|
||||
<!-- Donation reciepts screen empty state title -->
|
||||
<string name="DonationReceiptListFragment__no_receipts">Nu sunt chitanțe</string>
|
||||
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
~ SPDX-License-Identifier: AGPL-3.0-only
|
||||
-->
|
||||
<!-- smartling.instruction_comments_enabled = on -->
|
||||
<resources>
|
||||
<resources xmlns:tools="http://schemas.android.com/tools">
|
||||
<!-- Removed by excludeNonTranslatables <string name="app_name" translatable="false">Signal</string> -->
|
||||
|
||||
<!-- Removed by excludeNonTranslatables <string name="install_url" translatable="false">https://signal.org/install</string> -->
|
||||
@@ -403,7 +403,7 @@
|
||||
<string name="ConversationItem_s_deleted_this_message">%1$s удалил(а) это сообщение</string>
|
||||
<string name="ConversationItem_you_deleted_this_message">Вы удалили это сообщение</string>
|
||||
<!-- Tappable text shown on a locally-deleted message tombstone, prompting the user to promote it to a delete-for-everyone -->
|
||||
<string name="ConversationItem_delete_for_everyone_question">Delete for everyone?</string>
|
||||
<string name="ConversationItem_delete_for_everyone_question">Удалить для всех?</string>
|
||||
<!-- Conversation message when a message has been deleted by an admin. The placeholder is the admin\'s name. -->
|
||||
<string name="ConversationItem_admin_s_deleted_this_message">Администратор %1$s удалил(а) это сообщение</string>
|
||||
<!-- Dialog error message shown when user can\'t download a message from someone else due to a permanent failure (e.g., unable to decrypt), placeholder is other\'s name -->
|
||||
@@ -7286,7 +7286,7 @@
|
||||
<!-- Donation receipts amount title -->
|
||||
<string name="DonationReceiptDetailsFragment__amount">Сумма</string>
|
||||
<!-- Donation receipts thanks -->
|
||||
<string name="DonationReceiptDetailsFragment__thank_you_for_supporting">Thank you for supporting Signal. Your contribution helps fuel the mission of protecting free expression and enabling secure global communication for millions around the world, through open source privacy technology. If you’re a resident of the United States, please retain this receipt for your tax records. Signal Technology Foundation is a tax–exempt nonprofit organization in the United States under section 501c3 of the Internal Revenue Code. Our Federal Tax ID is 82–4506840. Signal did not provide any goods or services in consideration of this contribution.</string>
|
||||
<string name="DonationReceiptDetailsFragment__thank_you_for_supporting" tools:ignore="TypographyDashes">Thank you for supporting Signal. Your contribution helps fuel the mission of protecting free expression and enabling secure global communication for millions around the world, through open source privacy technology. If you’re a resident of the United States, please retain this receipt for your tax records. Signal Technology Foundation is a tax-exempt nonprofit organization in the United States under section 501c3 of the Internal Revenue Code. Our Federal Tax ID is 82-4506840. Signal did not provide any goods or services in consideration of this contribution.</string>
|
||||
<!-- Donation reciepts screen empty state title -->
|
||||
<string name="DonationReceiptListFragment__no_receipts">Нет квитанций</string>
|
||||
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
~ SPDX-License-Identifier: AGPL-3.0-only
|
||||
-->
|
||||
<!-- smartling.instruction_comments_enabled = on -->
|
||||
<resources>
|
||||
<resources xmlns:tools="http://schemas.android.com/tools">
|
||||
<!-- Removed by excludeNonTranslatables <string name="app_name" translatable="false">Signal</string> -->
|
||||
|
||||
<!-- Removed by excludeNonTranslatables <string name="install_url" translatable="false">https://signal.org/install</string> -->
|
||||
@@ -403,7 +403,7 @@
|
||||
<string name="ConversationItem_s_deleted_this_message">Používateľ %1$s vymazal túto správu</string>
|
||||
<string name="ConversationItem_you_deleted_this_message">Vymazali ste túto správu</string>
|
||||
<!-- Tappable text shown on a locally-deleted message tombstone, prompting the user to promote it to a delete-for-everyone -->
|
||||
<string name="ConversationItem_delete_for_everyone_question">Delete for everyone?</string>
|
||||
<string name="ConversationItem_delete_for_everyone_question">Vymazať pre všetkých?</string>
|
||||
<!-- Conversation message when a message has been deleted by an admin. The placeholder is the admin\'s name. -->
|
||||
<string name="ConversationItem_admin_s_deleted_this_message">Administrátor %1$s vymazal túto správu</string>
|
||||
<!-- Dialog error message shown when user can\'t download a message from someone else due to a permanent failure (e.g., unable to decrypt), placeholder is other\'s name -->
|
||||
@@ -7286,7 +7286,7 @@
|
||||
<!-- Donation receipts amount title -->
|
||||
<string name="DonationReceiptDetailsFragment__amount">Suma</string>
|
||||
<!-- Donation receipts thanks -->
|
||||
<string name="DonationReceiptDetailsFragment__thank_you_for_supporting">Thank you for supporting Signal. Your contribution helps fuel the mission of protecting free expression and enabling secure global communication for millions around the world, through open source privacy technology. If you’re a resident of the United States, please retain this receipt for your tax records. Signal Technology Foundation is a tax–exempt nonprofit organization in the United States under section 501c3 of the Internal Revenue Code. Our Federal Tax ID is 82–4506840. Signal did not provide any goods or services in consideration of this contribution.</string>
|
||||
<string name="DonationReceiptDetailsFragment__thank_you_for_supporting" tools:ignore="TypographyDashes">Thank you for supporting Signal. Your contribution helps fuel the mission of protecting free expression and enabling secure global communication for millions around the world, through open source privacy technology. If you’re a resident of the United States, please retain this receipt for your tax records. Signal Technology Foundation is a tax-exempt nonprofit organization in the United States under section 501c3 of the Internal Revenue Code. Our Federal Tax ID is 82-4506840. Signal did not provide any goods or services in consideration of this contribution.</string>
|
||||
<!-- Donation reciepts screen empty state title -->
|
||||
<string name="DonationReceiptListFragment__no_receipts">Žiadne účtenky</string>
|
||||
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
~ SPDX-License-Identifier: AGPL-3.0-only
|
||||
-->
|
||||
<!-- smartling.instruction_comments_enabled = on -->
|
||||
<resources>
|
||||
<resources xmlns:tools="http://schemas.android.com/tools">
|
||||
<!-- Removed by excludeNonTranslatables <string name="app_name" translatable="false">Signal</string> -->
|
||||
|
||||
<!-- Removed by excludeNonTranslatables <string name="install_url" translatable="false">https://signal.org/install</string> -->
|
||||
@@ -403,7 +403,7 @@
|
||||
<string name="ConversationItem_s_deleted_this_message">%1$s je izbrisal_a sporočilo</string>
|
||||
<string name="ConversationItem_you_deleted_this_message">Izbrisali ste to sporočilo</string>
|
||||
<!-- Tappable text shown on a locally-deleted message tombstone, prompting the user to promote it to a delete-for-everyone -->
|
||||
<string name="ConversationItem_delete_for_everyone_question">Delete for everyone?</string>
|
||||
<string name="ConversationItem_delete_for_everyone_question">Želite izbrisati za vse?</string>
|
||||
<!-- Conversation message when a message has been deleted by an admin. The placeholder is the admin\'s name. -->
|
||||
<string name="ConversationItem_admin_s_deleted_this_message">Administrator_ka %1$s je izbrisal_a to sporočilo</string>
|
||||
<!-- Dialog error message shown when user can\'t download a message from someone else due to a permanent failure (e.g., unable to decrypt), placeholder is other\'s name -->
|
||||
@@ -7286,7 +7286,7 @@
|
||||
<!-- Donation receipts amount title -->
|
||||
<string name="DonationReceiptDetailsFragment__amount">Količina</string>
|
||||
<!-- Donation receipts thanks -->
|
||||
<string name="DonationReceiptDetailsFragment__thank_you_for_supporting">Thank you for supporting Signal. Your contribution helps fuel the mission of protecting free expression and enabling secure global communication for millions around the world, through open source privacy technology. If you’re a resident of the United States, please retain this receipt for your tax records. Signal Technology Foundation is a tax–exempt nonprofit organization in the United States under section 501c3 of the Internal Revenue Code. Our Federal Tax ID is 82–4506840. Signal did not provide any goods or services in consideration of this contribution.</string>
|
||||
<string name="DonationReceiptDetailsFragment__thank_you_for_supporting" tools:ignore="TypographyDashes">Thank you for supporting Signal. Your contribution helps fuel the mission of protecting free expression and enabling secure global communication for millions around the world, through open source privacy technology. If you’re a resident of the United States, please retain this receipt for your tax records. Signal Technology Foundation is a tax-exempt nonprofit organization in the United States under section 501c3 of the Internal Revenue Code. Our Federal Tax ID is 82-4506840. Signal did not provide any goods or services in consideration of this contribution.</string>
|
||||
<!-- Donation reciepts screen empty state title -->
|
||||
<string name="DonationReceiptListFragment__no_receipts">Ni prejemnikov</string>
|
||||
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
~ SPDX-License-Identifier: AGPL-3.0-only
|
||||
-->
|
||||
<!-- smartling.instruction_comments_enabled = on -->
|
||||
<resources>
|
||||
<resources xmlns:tools="http://schemas.android.com/tools">
|
||||
<!-- Removed by excludeNonTranslatables <string name="app_name" translatable="false">Signal</string> -->
|
||||
|
||||
<!-- Removed by excludeNonTranslatables <string name="install_url" translatable="false">https://signal.org/install</string> -->
|
||||
@@ -399,7 +399,7 @@
|
||||
<string name="ConversationItem_s_deleted_this_message">%1$s e fshiu këtë mesazh</string>
|
||||
<string name="ConversationItem_you_deleted_this_message">E fshive këtë mesazh</string>
|
||||
<!-- Tappable text shown on a locally-deleted message tombstone, prompting the user to promote it to a delete-for-everyone -->
|
||||
<string name="ConversationItem_delete_for_everyone_question">Delete for everyone?</string>
|
||||
<string name="ConversationItem_delete_for_everyone_question">Të fshihet për të gjithë?</string>
|
||||
<!-- Conversation message when a message has been deleted by an admin. The placeholder is the admin\'s name. -->
|
||||
<string name="ConversationItem_admin_s_deleted_this_message">Administratori %1$s e fshiu këtë mesazh</string>
|
||||
<!-- Dialog error message shown when user can\'t download a message from someone else due to a permanent failure (e.g., unable to decrypt), placeholder is other\'s name -->
|
||||
@@ -6962,7 +6962,7 @@
|
||||
<!-- Donation receipts amount title -->
|
||||
<string name="DonationReceiptDetailsFragment__amount">Shuma</string>
|
||||
<!-- Donation receipts thanks -->
|
||||
<string name="DonationReceiptDetailsFragment__thank_you_for_supporting">Thank you for supporting Signal. Your contribution helps fuel the mission of protecting free expression and enabling secure global communication for millions around the world, through open source privacy technology. If you’re a resident of the United States, please retain this receipt for your tax records. Signal Technology Foundation is a tax–exempt nonprofit organization in the United States under section 501c3 of the Internal Revenue Code. Our Federal Tax ID is 82–4506840. Signal did not provide any goods or services in consideration of this contribution.</string>
|
||||
<string name="DonationReceiptDetailsFragment__thank_you_for_supporting" tools:ignore="TypographyDashes">Thank you for supporting Signal. Your contribution helps fuel the mission of protecting free expression and enabling secure global communication for millions around the world, through open source privacy technology. If you’re a resident of the United States, please retain this receipt for your tax records. Signal Technology Foundation is a tax-exempt nonprofit organization in the United States under section 501c3 of the Internal Revenue Code. Our Federal Tax ID is 82-4506840. Signal did not provide any goods or services in consideration of this contribution.</string>
|
||||
<!-- Donation reciepts screen empty state title -->
|
||||
<string name="DonationReceiptListFragment__no_receipts">S’ka dëftesa</string>
|
||||
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
~ SPDX-License-Identifier: AGPL-3.0-only
|
||||
-->
|
||||
<!-- smartling.instruction_comments_enabled = on -->
|
||||
<resources>
|
||||
<resources xmlns:tools="http://schemas.android.com/tools">
|
||||
<!-- Removed by excludeNonTranslatables <string name="app_name" translatable="false">Signal</string> -->
|
||||
|
||||
<!-- Removed by excludeNonTranslatables <string name="install_url" translatable="false">https://signal.org/install</string> -->
|
||||
@@ -399,7 +399,7 @@
|
||||
<string name="ConversationItem_s_deleted_this_message">Корисник %1$s је избрисао ову поруку</string>
|
||||
<string name="ConversationItem_you_deleted_this_message">Избрисали сте ову поруку</string>
|
||||
<!-- Tappable text shown on a locally-deleted message tombstone, prompting the user to promote it to a delete-for-everyone -->
|
||||
<string name="ConversationItem_delete_for_everyone_question">Delete for everyone?</string>
|
||||
<string name="ConversationItem_delete_for_everyone_question">Избриши свима?</string>
|
||||
<!-- Conversation message when a message has been deleted by an admin. The placeholder is the admin\'s name. -->
|
||||
<string name="ConversationItem_admin_s_deleted_this_message">Администратор %1$s је избрисао ову поруку</string>
|
||||
<!-- Dialog error message shown when user can\'t download a message from someone else due to a permanent failure (e.g., unable to decrypt), placeholder is other\'s name -->
|
||||
@@ -6962,7 +6962,7 @@
|
||||
<!-- Donation receipts amount title -->
|
||||
<string name="DonationReceiptDetailsFragment__amount">Износ</string>
|
||||
<!-- Donation receipts thanks -->
|
||||
<string name="DonationReceiptDetailsFragment__thank_you_for_supporting">Thank you for supporting Signal. Your contribution helps fuel the mission of protecting free expression and enabling secure global communication for millions around the world, through open source privacy technology. If you’re a resident of the United States, please retain this receipt for your tax records. Signal Technology Foundation is a tax–exempt nonprofit organization in the United States under section 501c3 of the Internal Revenue Code. Our Federal Tax ID is 82–4506840. Signal did not provide any goods or services in consideration of this contribution.</string>
|
||||
<string name="DonationReceiptDetailsFragment__thank_you_for_supporting" tools:ignore="TypographyDashes">Thank you for supporting Signal. Your contribution helps fuel the mission of protecting free expression and enabling secure global communication for millions around the world, through open source privacy technology. If you’re a resident of the United States, please retain this receipt for your tax records. Signal Technology Foundation is a tax-exempt nonprofit organization in the United States under section 501c3 of the Internal Revenue Code. Our Federal Tax ID is 82-4506840. Signal did not provide any goods or services in consideration of this contribution.</string>
|
||||
<!-- Donation reciepts screen empty state title -->
|
||||
<string name="DonationReceiptListFragment__no_receipts">Нема признаница</string>
|
||||
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
~ SPDX-License-Identifier: AGPL-3.0-only
|
||||
-->
|
||||
<!-- smartling.instruction_comments_enabled = on -->
|
||||
<resources>
|
||||
<resources xmlns:tools="http://schemas.android.com/tools">
|
||||
<!-- Removed by excludeNonTranslatables <string name="app_name" translatable="false">Signal</string> -->
|
||||
|
||||
<!-- Removed by excludeNonTranslatables <string name="install_url" translatable="false">https://signal.org/install</string> -->
|
||||
@@ -399,7 +399,7 @@
|
||||
<string name="ConversationItem_s_deleted_this_message">%1$s tog bort det här meddelandet</string>
|
||||
<string name="ConversationItem_you_deleted_this_message">Du tog bort detta meddelande</string>
|
||||
<!-- Tappable text shown on a locally-deleted message tombstone, prompting the user to promote it to a delete-for-everyone -->
|
||||
<string name="ConversationItem_delete_for_everyone_question">Delete for everyone?</string>
|
||||
<string name="ConversationItem_delete_for_everyone_question">Ta bort för alla?</string>
|
||||
<!-- Conversation message when a message has been deleted by an admin. The placeholder is the admin\'s name. -->
|
||||
<string name="ConversationItem_admin_s_deleted_this_message">Admin %1$s tog bort detta meddelande</string>
|
||||
<!-- Dialog error message shown when user can\'t download a message from someone else due to a permanent failure (e.g., unable to decrypt), placeholder is other\'s name -->
|
||||
@@ -6962,7 +6962,7 @@
|
||||
<!-- Donation receipts amount title -->
|
||||
<string name="DonationReceiptDetailsFragment__amount">Belopp</string>
|
||||
<!-- Donation receipts thanks -->
|
||||
<string name="DonationReceiptDetailsFragment__thank_you_for_supporting">Thank you for supporting Signal. Your contribution helps fuel the mission of protecting free expression and enabling secure global communication for millions around the world, through open source privacy technology. If you’re a resident of the United States, please retain this receipt for your tax records. Signal Technology Foundation is a tax–exempt nonprofit organization in the United States under section 501c3 of the Internal Revenue Code. Our Federal Tax ID is 82–4506840. Signal did not provide any goods or services in consideration of this contribution.</string>
|
||||
<string name="DonationReceiptDetailsFragment__thank_you_for_supporting" tools:ignore="TypographyDashes">Thank you for supporting Signal. Your contribution helps fuel the mission of protecting free expression and enabling secure global communication for millions around the world, through open source privacy technology. If you’re a resident of the United States, please retain this receipt for your tax records. Signal Technology Foundation is a tax-exempt nonprofit organization in the United States under section 501c3 of the Internal Revenue Code. Our Federal Tax ID is 82-4506840. Signal did not provide any goods or services in consideration of this contribution.</string>
|
||||
<!-- Donation reciepts screen empty state title -->
|
||||
<string name="DonationReceiptListFragment__no_receipts">Inga kvitton</string>
|
||||
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
~ SPDX-License-Identifier: AGPL-3.0-only
|
||||
-->
|
||||
<!-- smartling.instruction_comments_enabled = on -->
|
||||
<resources>
|
||||
<resources xmlns:tools="http://schemas.android.com/tools">
|
||||
<!-- Removed by excludeNonTranslatables <string name="app_name" translatable="false">Signal</string> -->
|
||||
|
||||
<!-- Removed by excludeNonTranslatables <string name="install_url" translatable="false">https://signal.org/install</string> -->
|
||||
@@ -399,7 +399,7 @@
|
||||
<string name="ConversationItem_s_deleted_this_message">%1$s amefuta ujumbe huu</string>
|
||||
<string name="ConversationItem_you_deleted_this_message">Umefuta ujumbe huu.</string>
|
||||
<!-- Tappable text shown on a locally-deleted message tombstone, prompting the user to promote it to a delete-for-everyone -->
|
||||
<string name="ConversationItem_delete_for_everyone_question">Delete for everyone?</string>
|
||||
<string name="ConversationItem_delete_for_everyone_question">Futa kwa kila mtu?</string>
|
||||
<!-- Conversation message when a message has been deleted by an admin. The placeholder is the admin\'s name. -->
|
||||
<string name="ConversationItem_admin_s_deleted_this_message">Admin %1$s amefuta ujumbe huu</string>
|
||||
<!-- Dialog error message shown when user can\'t download a message from someone else due to a permanent failure (e.g., unable to decrypt), placeholder is other\'s name -->
|
||||
@@ -6962,7 +6962,7 @@
|
||||
<!-- Donation receipts amount title -->
|
||||
<string name="DonationReceiptDetailsFragment__amount">Kiwango</string>
|
||||
<!-- Donation receipts thanks -->
|
||||
<string name="DonationReceiptDetailsFragment__thank_you_for_supporting">Thank you for supporting Signal. Your contribution helps fuel the mission of protecting free expression and enabling secure global communication for millions around the world, through open source privacy technology. If you’re a resident of the United States, please retain this receipt for your tax records. Signal Technology Foundation is a tax–exempt nonprofit organization in the United States under section 501c3 of the Internal Revenue Code. Our Federal Tax ID is 82–4506840. Signal did not provide any goods or services in consideration of this contribution.</string>
|
||||
<string name="DonationReceiptDetailsFragment__thank_you_for_supporting" tools:ignore="TypographyDashes">Thank you for supporting Signal. Your contribution helps fuel the mission of protecting free expression and enabling secure global communication for millions around the world, through open source privacy technology. If you’re a resident of the United States, please retain this receipt for your tax records. Signal Technology Foundation is a tax-exempt nonprofit organization in the United States under section 501c3 of the Internal Revenue Code. Our Federal Tax ID is 82-4506840. Signal did not provide any goods or services in consideration of this contribution.</string>
|
||||
<!-- Donation reciepts screen empty state title -->
|
||||
<string name="DonationReceiptListFragment__no_receipts">Hakuna risiti</string>
|
||||
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
~ SPDX-License-Identifier: AGPL-3.0-only
|
||||
-->
|
||||
<!-- smartling.instruction_comments_enabled = on -->
|
||||
<resources>
|
||||
<resources xmlns:tools="http://schemas.android.com/tools">
|
||||
<!-- Removed by excludeNonTranslatables <string name="app_name" translatable="false">Signal</string> -->
|
||||
|
||||
<!-- Removed by excludeNonTranslatables <string name="install_url" translatable="false">https://signal.org/install</string> -->
|
||||
@@ -399,7 +399,7 @@
|
||||
<string name="ConversationItem_s_deleted_this_message">%1$sஇந்த மெசேஜை நீக்கினார்</string>
|
||||
<string name="ConversationItem_you_deleted_this_message">நீங்கள் இந்த மெசேஜை நீக்கினீர்</string>
|
||||
<!-- Tappable text shown on a locally-deleted message tombstone, prompting the user to promote it to a delete-for-everyone -->
|
||||
<string name="ConversationItem_delete_for_everyone_question">Delete for everyone?</string>
|
||||
<string name="ConversationItem_delete_for_everyone_question">அனைவருக்கும் நீக்கவா?</string>
|
||||
<!-- Conversation message when a message has been deleted by an admin. The placeholder is the admin\'s name. -->
|
||||
<string name="ConversationItem_admin_s_deleted_this_message">நிர்வாகி %1$s இந்த மெசேஜை நீக்கினார்</string>
|
||||
<!-- Dialog error message shown when user can\'t download a message from someone else due to a permanent failure (e.g., unable to decrypt), placeholder is other\'s name -->
|
||||
@@ -6962,7 +6962,7 @@
|
||||
<!-- Donation receipts amount title -->
|
||||
<string name="DonationReceiptDetailsFragment__amount">தொகை</string>
|
||||
<!-- Donation receipts thanks -->
|
||||
<string name="DonationReceiptDetailsFragment__thank_you_for_supporting">Thank you for supporting Signal. Your contribution helps fuel the mission of protecting free expression and enabling secure global communication for millions around the world, through open source privacy technology. If you’re a resident of the United States, please retain this receipt for your tax records. Signal Technology Foundation is a tax–exempt nonprofit organization in the United States under section 501c3 of the Internal Revenue Code. Our Federal Tax ID is 82–4506840. Signal did not provide any goods or services in consideration of this contribution.</string>
|
||||
<string name="DonationReceiptDetailsFragment__thank_you_for_supporting" tools:ignore="TypographyDashes">Thank you for supporting Signal. Your contribution helps fuel the mission of protecting free expression and enabling secure global communication for millions around the world, through open source privacy technology. If you’re a resident of the United States, please retain this receipt for your tax records. Signal Technology Foundation is a tax-exempt nonprofit organization in the United States under section 501c3 of the Internal Revenue Code. Our Federal Tax ID is 82-4506840. Signal did not provide any goods or services in consideration of this contribution.</string>
|
||||
<!-- Donation reciepts screen empty state title -->
|
||||
<string name="DonationReceiptListFragment__no_receipts">ரசீதுகள் இல்லை</string>
|
||||
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
~ SPDX-License-Identifier: AGPL-3.0-only
|
||||
-->
|
||||
<!-- smartling.instruction_comments_enabled = on -->
|
||||
<resources>
|
||||
<resources xmlns:tools="http://schemas.android.com/tools">
|
||||
<!-- Removed by excludeNonTranslatables <string name="app_name" translatable="false">Signal</string> -->
|
||||
|
||||
<!-- Removed by excludeNonTranslatables <string name="install_url" translatable="false">https://signal.org/install</string> -->
|
||||
@@ -399,7 +399,7 @@
|
||||
<string name="ConversationItem_s_deleted_this_message">%1$s ఈ సందేశాన్ని తొలగించారు</string>
|
||||
<string name="ConversationItem_you_deleted_this_message">మీరు ఈ సందేశాన్ని తొలగించారు</string>
|
||||
<!-- Tappable text shown on a locally-deleted message tombstone, prompting the user to promote it to a delete-for-everyone -->
|
||||
<string name="ConversationItem_delete_for_everyone_question">Delete for everyone?</string>
|
||||
<string name="ConversationItem_delete_for_everyone_question">ప్రతి ఒక్కరి కొరకు తొలగించాలా?</string>
|
||||
<!-- Conversation message when a message has been deleted by an admin. The placeholder is the admin\'s name. -->
|
||||
<string name="ConversationItem_admin_s_deleted_this_message">అడ్మిన్ %1$s ఈ సందేశాన్ని తొలగించారు</string>
|
||||
<!-- Dialog error message shown when user can\'t download a message from someone else due to a permanent failure (e.g., unable to decrypt), placeholder is other\'s name -->
|
||||
@@ -6962,7 +6962,7 @@
|
||||
<!-- Donation receipts amount title -->
|
||||
<string name="DonationReceiptDetailsFragment__amount">మొత్తం</string>
|
||||
<!-- Donation receipts thanks -->
|
||||
<string name="DonationReceiptDetailsFragment__thank_you_for_supporting">Thank you for supporting Signal. Your contribution helps fuel the mission of protecting free expression and enabling secure global communication for millions around the world, through open source privacy technology. If you’re a resident of the United States, please retain this receipt for your tax records. Signal Technology Foundation is a tax–exempt nonprofit organization in the United States under section 501c3 of the Internal Revenue Code. Our Federal Tax ID is 82–4506840. Signal did not provide any goods or services in consideration of this contribution.</string>
|
||||
<string name="DonationReceiptDetailsFragment__thank_you_for_supporting" tools:ignore="TypographyDashes">Thank you for supporting Signal. Your contribution helps fuel the mission of protecting free expression and enabling secure global communication for millions around the world, through open source privacy technology. If you’re a resident of the United States, please retain this receipt for your tax records. Signal Technology Foundation is a tax-exempt nonprofit organization in the United States under section 501c3 of the Internal Revenue Code. Our Federal Tax ID is 82-4506840. Signal did not provide any goods or services in consideration of this contribution.</string>
|
||||
<!-- Donation reciepts screen empty state title -->
|
||||
<string name="DonationReceiptListFragment__no_receipts">రసీదులు లేవు</string>
|
||||
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
~ SPDX-License-Identifier: AGPL-3.0-only
|
||||
-->
|
||||
<!-- smartling.instruction_comments_enabled = on -->
|
||||
<resources>
|
||||
<resources xmlns:tools="http://schemas.android.com/tools">
|
||||
<!-- Removed by excludeNonTranslatables <string name="app_name" translatable="false">Signal</string> -->
|
||||
|
||||
<!-- Removed by excludeNonTranslatables <string name="install_url" translatable="false">https://signal.org/install</string> -->
|
||||
@@ -397,7 +397,7 @@
|
||||
<string name="ConversationItem_s_deleted_this_message">%1$s ลบข้อความนี้</string>
|
||||
<string name="ConversationItem_you_deleted_this_message">คุณลบข้อความนี้</string>
|
||||
<!-- Tappable text shown on a locally-deleted message tombstone, prompting the user to promote it to a delete-for-everyone -->
|
||||
<string name="ConversationItem_delete_for_everyone_question">Delete for everyone?</string>
|
||||
<string name="ConversationItem_delete_for_everyone_question">ลบสำหรับทุกคนใช่หรือไม่</string>
|
||||
<!-- Conversation message when a message has been deleted by an admin. The placeholder is the admin\'s name. -->
|
||||
<string name="ConversationItem_admin_s_deleted_this_message">ผู้ดูแล %1$s ลบข้อความนี้</string>
|
||||
<!-- Dialog error message shown when user can\'t download a message from someone else due to a permanent failure (e.g., unable to decrypt), placeholder is other\'s name -->
|
||||
@@ -6800,7 +6800,7 @@
|
||||
<!-- Donation receipts amount title -->
|
||||
<string name="DonationReceiptDetailsFragment__amount">ยอดเงิน</string>
|
||||
<!-- Donation receipts thanks -->
|
||||
<string name="DonationReceiptDetailsFragment__thank_you_for_supporting">Thank you for supporting Signal. Your contribution helps fuel the mission of protecting free expression and enabling secure global communication for millions around the world, through open source privacy technology. If you’re a resident of the United States, please retain this receipt for your tax records. Signal Technology Foundation is a tax–exempt nonprofit organization in the United States under section 501c3 of the Internal Revenue Code. Our Federal Tax ID is 82–4506840. Signal did not provide any goods or services in consideration of this contribution.</string>
|
||||
<string name="DonationReceiptDetailsFragment__thank_you_for_supporting" tools:ignore="TypographyDashes">Thank you for supporting Signal. Your contribution helps fuel the mission of protecting free expression and enabling secure global communication for millions around the world, through open source privacy technology. If you’re a resident of the United States, please retain this receipt for your tax records. Signal Technology Foundation is a tax-exempt nonprofit organization in the United States under section 501c3 of the Internal Revenue Code. Our Federal Tax ID is 82-4506840. Signal did not provide any goods or services in consideration of this contribution.</string>
|
||||
<!-- Donation reciepts screen empty state title -->
|
||||
<string name="DonationReceiptListFragment__no_receipts">ไม่มีใบเสร็จ</string>
|
||||
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
~ SPDX-License-Identifier: AGPL-3.0-only
|
||||
-->
|
||||
<!-- smartling.instruction_comments_enabled = on -->
|
||||
<resources>
|
||||
<resources xmlns:tools="http://schemas.android.com/tools">
|
||||
<!-- Removed by excludeNonTranslatables <string name="app_name" translatable="false">Signal</string> -->
|
||||
|
||||
<!-- Removed by excludeNonTranslatables <string name="install_url" translatable="false">https://signal.org/install</string> -->
|
||||
@@ -399,7 +399,7 @@
|
||||
<string name="ConversationItem_s_deleted_this_message">Binura ni %1$s ang message na ito</string>
|
||||
<string name="ConversationItem_you_deleted_this_message">Binura mo ang message na ito</string>
|
||||
<!-- Tappable text shown on a locally-deleted message tombstone, prompting the user to promote it to a delete-for-everyone -->
|
||||
<string name="ConversationItem_delete_for_everyone_question">Delete for everyone?</string>
|
||||
<string name="ConversationItem_delete_for_everyone_question">Burahin para sa lahat?</string>
|
||||
<!-- Conversation message when a message has been deleted by an admin. The placeholder is the admin\'s name. -->
|
||||
<string name="ConversationItem_admin_s_deleted_this_message">Binura ni admin %1$s ang message na ito</string>
|
||||
<!-- Dialog error message shown when user can\'t download a message from someone else due to a permanent failure (e.g., unable to decrypt), placeholder is other\'s name -->
|
||||
@@ -6962,7 +6962,7 @@
|
||||
<!-- Donation receipts amount title -->
|
||||
<string name="DonationReceiptDetailsFragment__amount">Amount</string>
|
||||
<!-- Donation receipts thanks -->
|
||||
<string name="DonationReceiptDetailsFragment__thank_you_for_supporting">Thank you for supporting Signal. Your contribution helps fuel the mission of protecting free expression and enabling secure global communication for millions around the world, through open source privacy technology. If you’re a resident of the United States, please retain this receipt for your tax records. Signal Technology Foundation is a tax–exempt nonprofit organization in the United States under section 501c3 of the Internal Revenue Code. Our Federal Tax ID is 82–4506840. Signal did not provide any goods or services in consideration of this contribution.</string>
|
||||
<string name="DonationReceiptDetailsFragment__thank_you_for_supporting" tools:ignore="TypographyDashes">Thank you for supporting Signal. Your contribution helps fuel the mission of protecting free expression and enabling secure global communication for millions around the world, through open source privacy technology. If you’re a resident of the United States, please retain this receipt for your tax records. Signal Technology Foundation is a tax-exempt nonprofit organization in the United States under section 501c3 of the Internal Revenue Code. Our Federal Tax ID is 82-4506840. Signal did not provide any goods or services in consideration of this contribution.</string>
|
||||
<!-- Donation reciepts screen empty state title -->
|
||||
<string name="DonationReceiptListFragment__no_receipts">Walang receipts</string>
|
||||
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
~ SPDX-License-Identifier: AGPL-3.0-only
|
||||
-->
|
||||
<!-- smartling.instruction_comments_enabled = on -->
|
||||
<resources>
|
||||
<resources xmlns:tools="http://schemas.android.com/tools">
|
||||
<!-- Removed by excludeNonTranslatables <string name="app_name" translatable="false">Signal</string> -->
|
||||
|
||||
<!-- Removed by excludeNonTranslatables <string name="install_url" translatable="false">https://signal.org/install</string> -->
|
||||
@@ -399,7 +399,7 @@
|
||||
<string name="ConversationItem_s_deleted_this_message">%1$s bu mesajı sildi</string>
|
||||
<string name="ConversationItem_you_deleted_this_message">Bu mesajı sildin</string>
|
||||
<!-- Tappable text shown on a locally-deleted message tombstone, prompting the user to promote it to a delete-for-everyone -->
|
||||
<string name="ConversationItem_delete_for_everyone_question">Delete for everyone?</string>
|
||||
<string name="ConversationItem_delete_for_everyone_question">Herkesten silinsin mi?</string>
|
||||
<!-- Conversation message when a message has been deleted by an admin. The placeholder is the admin\'s name. -->
|
||||
<string name="ConversationItem_admin_s_deleted_this_message">Yönetici %1$s bu mesajı sildi</string>
|
||||
<!-- Dialog error message shown when user can\'t download a message from someone else due to a permanent failure (e.g., unable to decrypt), placeholder is other\'s name -->
|
||||
@@ -6962,7 +6962,7 @@
|
||||
<!-- Donation receipts amount title -->
|
||||
<string name="DonationReceiptDetailsFragment__amount">Tutar</string>
|
||||
<!-- Donation receipts thanks -->
|
||||
<string name="DonationReceiptDetailsFragment__thank_you_for_supporting">Thank you for supporting Signal. Your contribution helps fuel the mission of protecting free expression and enabling secure global communication for millions around the world, through open source privacy technology. If you’re a resident of the United States, please retain this receipt for your tax records. Signal Technology Foundation is a tax–exempt nonprofit organization in the United States under section 501c3 of the Internal Revenue Code. Our Federal Tax ID is 82–4506840. Signal did not provide any goods or services in consideration of this contribution.</string>
|
||||
<string name="DonationReceiptDetailsFragment__thank_you_for_supporting" tools:ignore="TypographyDashes">Thank you for supporting Signal. Your contribution helps fuel the mission of protecting free expression and enabling secure global communication for millions around the world, through open source privacy technology. If you’re a resident of the United States, please retain this receipt for your tax records. Signal Technology Foundation is a tax-exempt nonprofit organization in the United States under section 501c3 of the Internal Revenue Code. Our Federal Tax ID is 82-4506840. Signal did not provide any goods or services in consideration of this contribution.</string>
|
||||
<!-- Donation reciepts screen empty state title -->
|
||||
<string name="DonationReceiptListFragment__no_receipts">Alıcı yok</string>
|
||||
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
~ SPDX-License-Identifier: AGPL-3.0-only
|
||||
-->
|
||||
<!-- smartling.instruction_comments_enabled = on -->
|
||||
<resources>
|
||||
<resources xmlns:tools="http://schemas.android.com/tools">
|
||||
<!-- Removed by excludeNonTranslatables <string name="app_name" translatable="false">Signal</string> -->
|
||||
|
||||
<!-- Removed by excludeNonTranslatables <string name="install_url" translatable="false">https://signal.org/install</string> -->
|
||||
@@ -397,7 +397,7 @@
|
||||
<string name="ConversationItem_s_deleted_this_message">%1$s بۇ ئۇچۇرنى ئۆچۈردى</string>
|
||||
<string name="ConversationItem_you_deleted_this_message">بۇ ئۇچۇرنى سىز ئۆچۈردىڭىز</string>
|
||||
<!-- Tappable text shown on a locally-deleted message tombstone, prompting the user to promote it to a delete-for-everyone -->
|
||||
<string name="ConversationItem_delete_for_everyone_question">Delete for everyone?</string>
|
||||
<string name="ConversationItem_delete_for_everyone_question">ھەممەيلەن ئۈچۈن ئۆچۈرەمسىز؟</string>
|
||||
<!-- Conversation message when a message has been deleted by an admin. The placeholder is the admin\'s name. -->
|
||||
<string name="ConversationItem_admin_s_deleted_this_message">باشقۇرغۇچى %1$s بۇ ئۇچۇرنى ئۆچۈردى</string>
|
||||
<!-- Dialog error message shown when user can\'t download a message from someone else due to a permanent failure (e.g., unable to decrypt), placeholder is other\'s name -->
|
||||
@@ -6800,7 +6800,7 @@
|
||||
<!-- Donation receipts amount title -->
|
||||
<string name="DonationReceiptDetailsFragment__amount">سومما</string>
|
||||
<!-- Donation receipts thanks -->
|
||||
<string name="DonationReceiptDetailsFragment__thank_you_for_supporting">Thank you for supporting Signal. Your contribution helps fuel the mission of protecting free expression and enabling secure global communication for millions around the world, through open source privacy technology. If you’re a resident of the United States, please retain this receipt for your tax records. Signal Technology Foundation is a tax–exempt nonprofit organization in the United States under section 501c3 of the Internal Revenue Code. Our Federal Tax ID is 82–4506840. Signal did not provide any goods or services in consideration of this contribution.</string>
|
||||
<string name="DonationReceiptDetailsFragment__thank_you_for_supporting" tools:ignore="TypographyDashes">Thank you for supporting Signal. Your contribution helps fuel the mission of protecting free expression and enabling secure global communication for millions around the world, through open source privacy technology. If you’re a resident of the United States, please retain this receipt for your tax records. Signal Technology Foundation is a tax-exempt nonprofit organization in the United States under section 501c3 of the Internal Revenue Code. Our Federal Tax ID is 82-4506840. Signal did not provide any goods or services in consideration of this contribution.</string>
|
||||
<!-- Donation reciepts screen empty state title -->
|
||||
<string name="DonationReceiptListFragment__no_receipts">تالون يوق</string>
|
||||
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
~ SPDX-License-Identifier: AGPL-3.0-only
|
||||
-->
|
||||
<!-- smartling.instruction_comments_enabled = on -->
|
||||
<resources>
|
||||
<resources xmlns:tools="http://schemas.android.com/tools">
|
||||
<!-- Removed by excludeNonTranslatables <string name="app_name" translatable="false">Signal</string> -->
|
||||
|
||||
<!-- Removed by excludeNonTranslatables <string name="install_url" translatable="false">https://signal.org/install</string> -->
|
||||
@@ -403,7 +403,7 @@
|
||||
<string name="ConversationItem_s_deleted_this_message">Користувач %1$s видалив це повідомлення</string>
|
||||
<string name="ConversationItem_you_deleted_this_message">Ви видалили це повідомлення</string>
|
||||
<!-- Tappable text shown on a locally-deleted message tombstone, prompting the user to promote it to a delete-for-everyone -->
|
||||
<string name="ConversationItem_delete_for_everyone_question">Delete for everyone?</string>
|
||||
<string name="ConversationItem_delete_for_everyone_question">Видалити для всіх?</string>
|
||||
<!-- Conversation message when a message has been deleted by an admin. The placeholder is the admin\'s name. -->
|
||||
<string name="ConversationItem_admin_s_deleted_this_message">Адміністратор %1$s видалив це повідомлення</string>
|
||||
<!-- Dialog error message shown when user can\'t download a message from someone else due to a permanent failure (e.g., unable to decrypt), placeholder is other\'s name -->
|
||||
@@ -7286,7 +7286,7 @@
|
||||
<!-- Donation receipts amount title -->
|
||||
<string name="DonationReceiptDetailsFragment__amount">Сума</string>
|
||||
<!-- Donation receipts thanks -->
|
||||
<string name="DonationReceiptDetailsFragment__thank_you_for_supporting">Thank you for supporting Signal. Your contribution helps fuel the mission of protecting free expression and enabling secure global communication for millions around the world, through open source privacy technology. If you’re a resident of the United States, please retain this receipt for your tax records. Signal Technology Foundation is a tax–exempt nonprofit organization in the United States under section 501c3 of the Internal Revenue Code. Our Federal Tax ID is 82–4506840. Signal did not provide any goods or services in consideration of this contribution.</string>
|
||||
<string name="DonationReceiptDetailsFragment__thank_you_for_supporting" tools:ignore="TypographyDashes">Thank you for supporting Signal. Your contribution helps fuel the mission of protecting free expression and enabling secure global communication for millions around the world, through open source privacy technology. If you’re a resident of the United States, please retain this receipt for your tax records. Signal Technology Foundation is a tax-exempt nonprofit organization in the United States under section 501c3 of the Internal Revenue Code. Our Federal Tax ID is 82-4506840. Signal did not provide any goods or services in consideration of this contribution.</string>
|
||||
<!-- Donation reciepts screen empty state title -->
|
||||
<string name="DonationReceiptListFragment__no_receipts">Підтверджень немає</string>
|
||||
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
~ SPDX-License-Identifier: AGPL-3.0-only
|
||||
-->
|
||||
<!-- smartling.instruction_comments_enabled = on -->
|
||||
<resources>
|
||||
<resources xmlns:tools="http://schemas.android.com/tools">
|
||||
<!-- Removed by excludeNonTranslatables <string name="app_name" translatable="false">Signal</string> -->
|
||||
|
||||
<!-- Removed by excludeNonTranslatables <string name="install_url" translatable="false">https://signal.org/install</string> -->
|
||||
@@ -399,7 +399,7 @@
|
||||
<string name="ConversationItem_s_deleted_this_message">%1$s نے یہ میسج حذف کر دیا</string>
|
||||
<string name="ConversationItem_you_deleted_this_message">آپ نے یہ میسج حذف کر دیا</string>
|
||||
<!-- Tappable text shown on a locally-deleted message tombstone, prompting the user to promote it to a delete-for-everyone -->
|
||||
<string name="ConversationItem_delete_for_everyone_question">Delete for everyone?</string>
|
||||
<string name="ConversationItem_delete_for_everyone_question">سب کے لیے حذف کریں؟</string>
|
||||
<!-- Conversation message when a message has been deleted by an admin. The placeholder is the admin\'s name. -->
|
||||
<string name="ConversationItem_admin_s_deleted_this_message">ایڈمن %1$s نے یہ میسج حذف کر دیا</string>
|
||||
<!-- Dialog error message shown when user can\'t download a message from someone else due to a permanent failure (e.g., unable to decrypt), placeholder is other\'s name -->
|
||||
@@ -6962,7 +6962,7 @@
|
||||
<!-- Donation receipts amount title -->
|
||||
<string name="DonationReceiptDetailsFragment__amount">رقم</string>
|
||||
<!-- Donation receipts thanks -->
|
||||
<string name="DonationReceiptDetailsFragment__thank_you_for_supporting">Thank you for supporting Signal. Your contribution helps fuel the mission of protecting free expression and enabling secure global communication for millions around the world, through open source privacy technology. If you’re a resident of the United States, please retain this receipt for your tax records. Signal Technology Foundation is a tax–exempt nonprofit organization in the United States under section 501c3 of the Internal Revenue Code. Our Federal Tax ID is 82–4506840. Signal did not provide any goods or services in consideration of this contribution.</string>
|
||||
<string name="DonationReceiptDetailsFragment__thank_you_for_supporting" tools:ignore="TypographyDashes">Thank you for supporting Signal. Your contribution helps fuel the mission of protecting free expression and enabling secure global communication for millions around the world, through open source privacy technology. If you’re a resident of the United States, please retain this receipt for your tax records. Signal Technology Foundation is a tax-exempt nonprofit organization in the United States under section 501c3 of the Internal Revenue Code. Our Federal Tax ID is 82-4506840. Signal did not provide any goods or services in consideration of this contribution.</string>
|
||||
<!-- Donation reciepts screen empty state title -->
|
||||
<string name="DonationReceiptListFragment__no_receipts">کوئی رسیدیں نہیں</string>
|
||||
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
~ SPDX-License-Identifier: AGPL-3.0-only
|
||||
-->
|
||||
<!-- smartling.instruction_comments_enabled = on -->
|
||||
<resources>
|
||||
<resources xmlns:tools="http://schemas.android.com/tools">
|
||||
<!-- Removed by excludeNonTranslatables <string name="app_name" translatable="false">Signal</string> -->
|
||||
|
||||
<!-- Removed by excludeNonTranslatables <string name="install_url" translatable="false">https://signal.org/install</string> -->
|
||||
@@ -397,7 +397,7 @@
|
||||
<string name="ConversationItem_s_deleted_this_message">%1$s đã xóa tin nhắn này</string>
|
||||
<string name="ConversationItem_you_deleted_this_message">Bạn đã xóa tin nhắn này</string>
|
||||
<!-- Tappable text shown on a locally-deleted message tombstone, prompting the user to promote it to a delete-for-everyone -->
|
||||
<string name="ConversationItem_delete_for_everyone_question">Delete for everyone?</string>
|
||||
<string name="ConversationItem_delete_for_everyone_question">Xóa cho mọi người?</string>
|
||||
<!-- Conversation message when a message has been deleted by an admin. The placeholder is the admin\'s name. -->
|
||||
<string name="ConversationItem_admin_s_deleted_this_message">Quản trị viên %1$s đã xóa tin nhắn này</string>
|
||||
<!-- Dialog error message shown when user can\'t download a message from someone else due to a permanent failure (e.g., unable to decrypt), placeholder is other\'s name -->
|
||||
@@ -6800,7 +6800,7 @@
|
||||
<!-- Donation receipts amount title -->
|
||||
<string name="DonationReceiptDetailsFragment__amount">Khoản chi</string>
|
||||
<!-- Donation receipts thanks -->
|
||||
<string name="DonationReceiptDetailsFragment__thank_you_for_supporting">Thank you for supporting Signal. Your contribution helps fuel the mission of protecting free expression and enabling secure global communication for millions around the world, through open source privacy technology. If you’re a resident of the United States, please retain this receipt for your tax records. Signal Technology Foundation is a tax–exempt nonprofit organization in the United States under section 501c3 of the Internal Revenue Code. Our Federal Tax ID is 82–4506840. Signal did not provide any goods or services in consideration of this contribution.</string>
|
||||
<string name="DonationReceiptDetailsFragment__thank_you_for_supporting" tools:ignore="TypographyDashes">Thank you for supporting Signal. Your contribution helps fuel the mission of protecting free expression and enabling secure global communication for millions around the world, through open source privacy technology. If you’re a resident of the United States, please retain this receipt for your tax records. Signal Technology Foundation is a tax-exempt nonprofit organization in the United States under section 501c3 of the Internal Revenue Code. Our Federal Tax ID is 82-4506840. Signal did not provide any goods or services in consideration of this contribution.</string>
|
||||
<!-- Donation reciepts screen empty state title -->
|
||||
<string name="DonationReceiptListFragment__no_receipts">Không có biên lai</string>
|
||||
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
~ SPDX-License-Identifier: AGPL-3.0-only
|
||||
-->
|
||||
<!-- smartling.instruction_comments_enabled = on -->
|
||||
<resources>
|
||||
<resources xmlns:tools="http://schemas.android.com/tools">
|
||||
<!-- Removed by excludeNonTranslatables <string name="app_name" translatable="false">Signal</string> -->
|
||||
|
||||
<!-- Removed by excludeNonTranslatables <string name="install_url" translatable="false">https://signal.org/install</string> -->
|
||||
@@ -397,7 +397,7 @@
|
||||
<string name="ConversationItem_s_deleted_this_message">%1$s刪除咗呢個訊息</string>
|
||||
<string name="ConversationItem_you_deleted_this_message">你刪除咗呢個訊息</string>
|
||||
<!-- Tappable text shown on a locally-deleted message tombstone, prompting the user to promote it to a delete-for-everyone -->
|
||||
<string name="ConversationItem_delete_for_everyone_question">Delete for everyone?</string>
|
||||
<string name="ConversationItem_delete_for_everyone_question">係咪喺所有人部機度刪除?</string>
|
||||
<!-- Conversation message when a message has been deleted by an admin. The placeholder is the admin\'s name. -->
|
||||
<string name="ConversationItem_admin_s_deleted_this_message">管理員%1$s刪除咗呢個訊息</string>
|
||||
<!-- Dialog error message shown when user can\'t download a message from someone else due to a permanent failure (e.g., unable to decrypt), placeholder is other\'s name -->
|
||||
@@ -6800,7 +6800,7 @@
|
||||
<!-- Donation receipts amount title -->
|
||||
<string name="DonationReceiptDetailsFragment__amount">金額</string>
|
||||
<!-- Donation receipts thanks -->
|
||||
<string name="DonationReceiptDetailsFragment__thank_you_for_supporting">Thank you for supporting Signal. Your contribution helps fuel the mission of protecting free expression and enabling secure global communication for millions around the world, through open source privacy technology. If you’re a resident of the United States, please retain this receipt for your tax records. Signal Technology Foundation is a tax–exempt nonprofit organization in the United States under section 501c3 of the Internal Revenue Code. Our Federal Tax ID is 82–4506840. Signal did not provide any goods or services in consideration of this contribution.</string>
|
||||
<string name="DonationReceiptDetailsFragment__thank_you_for_supporting" tools:ignore="TypographyDashes">Thank you for supporting Signal. Your contribution helps fuel the mission of protecting free expression and enabling secure global communication for millions around the world, through open source privacy technology. If you’re a resident of the United States, please retain this receipt for your tax records. Signal Technology Foundation is a tax-exempt nonprofit organization in the United States under section 501c3 of the Internal Revenue Code. Our Federal Tax ID is 82-4506840. Signal did not provide any goods or services in consideration of this contribution.</string>
|
||||
<!-- Donation reciepts screen empty state title -->
|
||||
<string name="DonationReceiptListFragment__no_receipts">冇收據</string>
|
||||
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
~ SPDX-License-Identifier: AGPL-3.0-only
|
||||
-->
|
||||
<!-- smartling.instruction_comments_enabled = on -->
|
||||
<resources>
|
||||
<resources xmlns:tools="http://schemas.android.com/tools">
|
||||
<!-- Removed by excludeNonTranslatables <string name="app_name" translatable="false">Signal</string> -->
|
||||
|
||||
<!-- Removed by excludeNonTranslatables <string name="install_url" translatable="false">https://signal.org/install</string> -->
|
||||
@@ -397,7 +397,7 @@
|
||||
<string name="ConversationItem_s_deleted_this_message">%1$s删除了此消息</string>
|
||||
<string name="ConversationItem_you_deleted_this_message">您删除了此消息</string>
|
||||
<!-- Tappable text shown on a locally-deleted message tombstone, prompting the user to promote it to a delete-for-everyone -->
|
||||
<string name="ConversationItem_delete_for_everyone_question">Delete for everyone?</string>
|
||||
<string name="ConversationItem_delete_for_everyone_question">要对所有人删除?</string>
|
||||
<!-- Conversation message when a message has been deleted by an admin. The placeholder is the admin\'s name. -->
|
||||
<string name="ConversationItem_admin_s_deleted_this_message">管理员%1$s删除了此消息</string>
|
||||
<!-- Dialog error message shown when user can\'t download a message from someone else due to a permanent failure (e.g., unable to decrypt), placeholder is other\'s name -->
|
||||
@@ -6800,7 +6800,7 @@
|
||||
<!-- Donation receipts amount title -->
|
||||
<string name="DonationReceiptDetailsFragment__amount">金额</string>
|
||||
<!-- Donation receipts thanks -->
|
||||
<string name="DonationReceiptDetailsFragment__thank_you_for_supporting">Thank you for supporting Signal. Your contribution helps fuel the mission of protecting free expression and enabling secure global communication for millions around the world, through open source privacy technology. If you’re a resident of the United States, please retain this receipt for your tax records. Signal Technology Foundation is a tax–exempt nonprofit organization in the United States under section 501c3 of the Internal Revenue Code. Our Federal Tax ID is 82–4506840. Signal did not provide any goods or services in consideration of this contribution.</string>
|
||||
<string name="DonationReceiptDetailsFragment__thank_you_for_supporting" tools:ignore="TypographyDashes">Thank you for supporting Signal. Your contribution helps fuel the mission of protecting free expression and enabling secure global communication for millions around the world, through open source privacy technology. If you’re a resident of the United States, please retain this receipt for your tax records. Signal Technology Foundation is a tax-exempt nonprofit organization in the United States under section 501c3 of the Internal Revenue Code. Our Federal Tax ID is 82-4506840. Signal did not provide any goods or services in consideration of this contribution.</string>
|
||||
<!-- Donation reciepts screen empty state title -->
|
||||
<string name="DonationReceiptListFragment__no_receipts">无收据</string>
|
||||
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
~ SPDX-License-Identifier: AGPL-3.0-only
|
||||
-->
|
||||
<!-- smartling.instruction_comments_enabled = on -->
|
||||
<resources>
|
||||
<resources xmlns:tools="http://schemas.android.com/tools">
|
||||
<!-- Removed by excludeNonTranslatables <string name="app_name" translatable="false">Signal</string> -->
|
||||
|
||||
<!-- Removed by excludeNonTranslatables <string name="install_url" translatable="false">https://signal.org/install</string> -->
|
||||
@@ -397,7 +397,7 @@
|
||||
<string name="ConversationItem_s_deleted_this_message">%1$s已刪除此訊息</string>
|
||||
<string name="ConversationItem_you_deleted_this_message">你已刪除此訊息</string>
|
||||
<!-- Tappable text shown on a locally-deleted message tombstone, prompting the user to promote it to a delete-for-everyone -->
|
||||
<string name="ConversationItem_delete_for_everyone_question">Delete for everyone?</string>
|
||||
<string name="ConversationItem_delete_for_everyone_question">要為所有人刪除嗎?</string>
|
||||
<!-- Conversation message when a message has been deleted by an admin. The placeholder is the admin\'s name. -->
|
||||
<string name="ConversationItem_admin_s_deleted_this_message">管理員%1$s已刪除此訊息</string>
|
||||
<!-- Dialog error message shown when user can\'t download a message from someone else due to a permanent failure (e.g., unable to decrypt), placeholder is other\'s name -->
|
||||
@@ -6800,7 +6800,7 @@
|
||||
<!-- Donation receipts amount title -->
|
||||
<string name="DonationReceiptDetailsFragment__amount">金額</string>
|
||||
<!-- Donation receipts thanks -->
|
||||
<string name="DonationReceiptDetailsFragment__thank_you_for_supporting">Thank you for supporting Signal. Your contribution helps fuel the mission of protecting free expression and enabling secure global communication for millions around the world, through open source privacy technology. If you’re a resident of the United States, please retain this receipt for your tax records. Signal Technology Foundation is a tax–exempt nonprofit organization in the United States under section 501c3 of the Internal Revenue Code. Our Federal Tax ID is 82–4506840. Signal did not provide any goods or services in consideration of this contribution.</string>
|
||||
<string name="DonationReceiptDetailsFragment__thank_you_for_supporting" tools:ignore="TypographyDashes">Thank you for supporting Signal. Your contribution helps fuel the mission of protecting free expression and enabling secure global communication for millions around the world, through open source privacy technology. If you’re a resident of the United States, please retain this receipt for your tax records. Signal Technology Foundation is a tax-exempt nonprofit organization in the United States under section 501c3 of the Internal Revenue Code. Our Federal Tax ID is 82-4506840. Signal did not provide any goods or services in consideration of this contribution.</string>
|
||||
<!-- Donation reciepts screen empty state title -->
|
||||
<string name="DonationReceiptListFragment__no_receipts">未有收據</string>
|
||||
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
~ SPDX-License-Identifier: AGPL-3.0-only
|
||||
-->
|
||||
<!-- smartling.instruction_comments_enabled = on -->
|
||||
<resources>
|
||||
<resources xmlns:tools="http://schemas.android.com/tools">
|
||||
<!-- Removed by excludeNonTranslatables <string name="app_name" translatable="false">Signal</string> -->
|
||||
|
||||
<!-- Removed by excludeNonTranslatables <string name="install_url" translatable="false">https://signal.org/install</string> -->
|
||||
@@ -397,7 +397,7 @@
|
||||
<string name="ConversationItem_s_deleted_this_message">%1$s已刪除此訊息</string>
|
||||
<string name="ConversationItem_you_deleted_this_message">你已刪除此訊息</string>
|
||||
<!-- Tappable text shown on a locally-deleted message tombstone, prompting the user to promote it to a delete-for-everyone -->
|
||||
<string name="ConversationItem_delete_for_everyone_question">Delete for everyone?</string>
|
||||
<string name="ConversationItem_delete_for_everyone_question">要為所有人刪除嗎?</string>
|
||||
<!-- Conversation message when a message has been deleted by an admin. The placeholder is the admin\'s name. -->
|
||||
<string name="ConversationItem_admin_s_deleted_this_message">管理員%1$s已刪除此訊息</string>
|
||||
<!-- Dialog error message shown when user can\'t download a message from someone else due to a permanent failure (e.g., unable to decrypt), placeholder is other\'s name -->
|
||||
@@ -6800,7 +6800,7 @@
|
||||
<!-- Donation receipts amount title -->
|
||||
<string name="DonationReceiptDetailsFragment__amount">金額</string>
|
||||
<!-- Donation receipts thanks -->
|
||||
<string name="DonationReceiptDetailsFragment__thank_you_for_supporting">Thank you for supporting Signal. Your contribution helps fuel the mission of protecting free expression and enabling secure global communication for millions around the world, through open source privacy technology. If you’re a resident of the United States, please retain this receipt for your tax records. Signal Technology Foundation is a tax–exempt nonprofit organization in the United States under section 501c3 of the Internal Revenue Code. Our Federal Tax ID is 82–4506840. Signal did not provide any goods or services in consideration of this contribution.</string>
|
||||
<string name="DonationReceiptDetailsFragment__thank_you_for_supporting" tools:ignore="TypographyDashes">Thank you for supporting Signal. Your contribution helps fuel the mission of protecting free expression and enabling secure global communication for millions around the world, through open source privacy technology. If you’re a resident of the United States, please retain this receipt for your tax records. Signal Technology Foundation is a tax-exempt nonprofit organization in the United States under section 501c3 of the Internal Revenue Code. Our Federal Tax ID is 82-4506840. Signal did not provide any goods or services in consideration of this contribution.</string>
|
||||
<!-- Donation reciepts screen empty state title -->
|
||||
<string name="DonationReceiptListFragment__no_receipts">沒有收據</string>
|
||||
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
-->
|
||||
|
||||
<!-- smartling.instruction_comments_enabled = on -->
|
||||
<resources>
|
||||
<resources xmlns:tools="http://schemas.android.com/tools">
|
||||
<string name="app_name" translatable="false">Signal</string>
|
||||
|
||||
<string name="install_url" translatable="false">https://signal.org/install</string>
|
||||
@@ -6967,7 +6967,7 @@
|
||||
<!-- Donation receipts amount title -->
|
||||
<string name="DonationReceiptDetailsFragment__amount">Amount</string>
|
||||
<!-- Donation receipts thanks -->
|
||||
<string name="DonationReceiptDetailsFragment__thank_you_for_supporting">Thank you for supporting Signal. Your contribution helps fuel the mission of protecting free expression and enabling secure global communication for millions around the world, through open source privacy technology. If you’re a resident of the United States, please retain this receipt for your tax records. Signal Technology Foundation is a tax–exempt nonprofit organization in the United States under section 501c3 of the Internal Revenue Code. Our Federal Tax ID is 82–4506840. Signal did not provide any goods or services in consideration of this contribution.</string>
|
||||
<string name="DonationReceiptDetailsFragment__thank_you_for_supporting" tools:ignore="TypographyDashes">Thank you for supporting Signal. Your contribution helps fuel the mission of protecting free expression and enabling secure global communication for millions around the world, through open source privacy technology. If you’re a resident of the United States, please retain this receipt for your tax records. Signal Technology Foundation is a tax-exempt nonprofit organization in the United States under section 501c3 of the Internal Revenue Code. Our Federal Tax ID is 82-4506840. Signal did not provide any goods or services in consideration of this contribution.</string>
|
||||
<!-- Donation reciepts screen empty state title -->
|
||||
<string name="DonationReceiptListFragment__no_receipts">No receipts</string>
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
service_ips=new String[]{"13.248.212.111","76.223.92.165"}
|
||||
storage_ips=new String[]{"142.250.217.147"}
|
||||
storage_ips=new String[]{"142.251.211.211"}
|
||||
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"}
|
||||
|
||||
@@ -214,6 +214,19 @@ fun SignalTheme(
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Applies the light color scheme to [content] regardless of the ambient theme, leaving typography and shapes untouched.
|
||||
*/
|
||||
@Composable
|
||||
fun ForceLightColors(content: @Composable () -> Unit) {
|
||||
CompositionLocalProvider(LocalExtendedColors provides lightExtendedColors) {
|
||||
MaterialTheme(
|
||||
colorScheme = lightColorScheme,
|
||||
content = content
|
||||
)
|
||||
}
|
||||
}
|
||||
|
||||
@Preview(showBackground = true)
|
||||
@Composable
|
||||
private fun TypographyPreview() {
|
||||
|
||||
+11
-5
@@ -8,6 +8,7 @@ package org.signal.registration.sample
|
||||
import android.app.Application
|
||||
import android.app.NotificationChannel
|
||||
import android.app.NotificationManager
|
||||
import android.content.Context
|
||||
import android.os.Build
|
||||
import com.google.android.material.dialog.MaterialAlertDialogBuilder
|
||||
import org.conscrypt.Conscrypt
|
||||
@@ -24,6 +25,7 @@ import org.signal.network.config.SignalServiceUrl
|
||||
import org.signal.network.config.SignalStorageUrl
|
||||
import org.signal.network.config.SignalSvr2Url
|
||||
import org.signal.network.config.TrustStore
|
||||
import org.signal.registration.ContactSupportController
|
||||
import org.signal.registration.RegistrationDependencies
|
||||
import org.signal.registration.sample.debug.DebugNetworkController
|
||||
import org.signal.registration.sample.dependencies.DemoNetworkController
|
||||
@@ -76,11 +78,15 @@ class RegistrationApplication : Application() {
|
||||
.setPositiveButton(android.R.string.ok, null)
|
||||
.show()
|
||||
},
|
||||
contactSupportCallback = { context, subject ->
|
||||
MaterialAlertDialogBuilder(context)
|
||||
.setMessage("Contact support not supported in the demo. Subject: $subject")
|
||||
.setPositiveButton(android.R.string.ok, null)
|
||||
.show()
|
||||
contactSupportController = object : ContactSupportController {
|
||||
override suspend fun uploadDebugLog(): String? = null
|
||||
|
||||
override fun sendSupportEmail(context: Context, subject: String, filter: String, debugLogUrl: String?) {
|
||||
MaterialAlertDialogBuilder(context)
|
||||
.setMessage("Contact support not supported in the demo. Subject: $subject, Filter: $filter, Debug log: $debugLogUrl")
|
||||
.setPositiveButton(android.R.string.ok, null)
|
||||
.show()
|
||||
}
|
||||
},
|
||||
isLinkAndSyncAvailable = true
|
||||
)
|
||||
|
||||
@@ -10,6 +10,7 @@ import android.graphics.Matrix
|
||||
import android.os.Build
|
||||
import android.os.VibrationEffect
|
||||
import android.os.Vibrator
|
||||
import android.util.Size
|
||||
import android.view.Surface
|
||||
import android.view.Window
|
||||
import android.view.WindowManager
|
||||
@@ -26,6 +27,7 @@ import androidx.camera.core.SurfaceOrientedMeteringPointFactory
|
||||
import androidx.camera.core.UseCase
|
||||
import androidx.camera.core.resolutionselector.AspectRatioStrategy
|
||||
import androidx.camera.core.resolutionselector.ResolutionSelector
|
||||
import androidx.camera.core.resolutionselector.ResolutionStrategy
|
||||
import androidx.camera.lifecycle.ProcessCameraProvider
|
||||
import androidx.camera.video.Recorder
|
||||
import androidx.camera.video.Recording
|
||||
@@ -51,6 +53,7 @@ import kotlinx.coroutines.Dispatchers
|
||||
import kotlinx.coroutines.delay
|
||||
import kotlinx.coroutines.flow.Flow
|
||||
import kotlinx.coroutines.flow.MutableSharedFlow
|
||||
import kotlinx.coroutines.flow.onEach
|
||||
import kotlinx.coroutines.launch
|
||||
import kotlinx.coroutines.withContext
|
||||
import org.signal.core.util.logging.Log
|
||||
@@ -74,6 +77,9 @@ class CameraScreenViewModel : ViewModel() {
|
||||
|
||||
/** Initial delay between camera binding retries, in milliseconds. Doubles on each subsequent retry. */
|
||||
private const val CAMERA_BIND_RETRY_DELAY_MS = 500L
|
||||
|
||||
/** Requested resolution for the QR analysis stream. */
|
||||
private val QR_ANALYSIS_RESOLUTION = Size(1280, 720)
|
||||
}
|
||||
|
||||
private val _state: MutableState<CameraScreenState> = mutableStateOf(CameraScreenState())
|
||||
@@ -101,7 +107,9 @@ class CameraScreenViewModel : ViewModel() {
|
||||
* Flow of detected QR codes. Observers can collect from this flow to receive QR code detections.
|
||||
* The flow filters consecutive duplicates and is throttled to avoid rapid-fire detections.
|
||||
*/
|
||||
val qrCodeDetected: Flow<String> = _qrCodeDetected.throttleLatest(2.seconds)
|
||||
val qrCodeDetected: Flow<String> = _qrCodeDetected
|
||||
.throttleLatest(2.seconds)
|
||||
.onEach { Log.i(TAG, "Decoded a QR code. payloadLength: ${it.length}") }
|
||||
|
||||
private val qrCodeReader = QRCodeReader()
|
||||
private val qrCodeHint = EnumMap<DecodeHintType, Any>(DecodeHintType::class.java).apply {
|
||||
@@ -465,6 +473,8 @@ class CameraScreenViewModel : ViewModel() {
|
||||
Log.w(TAG, "Use case binding succeeded on fallback attempt ${index + 1} of ${bindingAttempts.size}")
|
||||
}
|
||||
|
||||
attempt.imageAnalysis?.let { Log.d(TAG, "Bound QR analysis at ${it.resolutionInfo?.resolution}") }
|
||||
|
||||
lifecycleOwner = event.lifecycleOwner
|
||||
cameraProvider = event.cameraProvider
|
||||
lastSuccessfulAttempt = attempt
|
||||
@@ -526,8 +536,14 @@ class CameraScreenViewModel : ViewModel() {
|
||||
}
|
||||
|
||||
val qrAnalysis: ImageAnalysis? = if (event.enableQrScanning) {
|
||||
val qrResolutionSelector = ResolutionSelector.Builder()
|
||||
.setAspectRatioStrategy(AspectRatioStrategy.RATIO_16_9_FALLBACK_AUTO_STRATEGY)
|
||||
.setResolutionStrategy(ResolutionStrategy(QR_ANALYSIS_RESOLUTION, ResolutionStrategy.FALLBACK_RULE_CLOSEST_HIGHER_THEN_LOWER))
|
||||
.build()
|
||||
|
||||
ImageAnalysis.Builder()
|
||||
.setBackpressureStrategy(ImageAnalysis.STRATEGY_KEEP_ONLY_LATEST)
|
||||
.setResolutionSelector(qrResolutionSelector)
|
||||
.build()
|
||||
.also {
|
||||
it.setAnalyzer(imageAnalysisExecutor) { imageProxy ->
|
||||
|
||||
@@ -26,11 +26,11 @@
|
||||
<!-- Label for the button that switches the capture screen to the camera. -->
|
||||
<string name="MediaCaptureScreen__camera">Kamera</string>
|
||||
<!-- Label for the button that switches the capture screen to the text story editor. -->
|
||||
<string name="MediaCaptureScreen__text">Text</string>
|
||||
<string name="MediaCaptureScreen__text">Teks</string>
|
||||
<!-- Label for the pill that displays the media count -->
|
||||
<plurals name="MediaCaptureScreen_n_items">
|
||||
<item quantity="one">%1$d item</item>
|
||||
<item quantity="other">%1$d items</item>
|
||||
<item quantity="one">%1$d Item</item>
|
||||
<item quantity="other">%1$d Items</item>
|
||||
</plurals>
|
||||
|
||||
<!-- Video editor play button content description -->
|
||||
|
||||
@@ -26,15 +26,15 @@
|
||||
<!-- Label for the button that switches the capture screen to the camera. -->
|
||||
<string name="MediaCaptureScreen__camera">الكاميرا</string>
|
||||
<!-- Label for the button that switches the capture screen to the text story editor. -->
|
||||
<string name="MediaCaptureScreen__text">Text</string>
|
||||
<string name="MediaCaptureScreen__text">نص</string>
|
||||
<!-- Label for the pill that displays the media count -->
|
||||
<plurals name="MediaCaptureScreen_n_items">
|
||||
<item quantity="zero">%1$d items</item>
|
||||
<item quantity="one">%1$d item</item>
|
||||
<item quantity="two">%1$d items</item>
|
||||
<item quantity="few">%1$d items</item>
|
||||
<item quantity="many">%1$d items</item>
|
||||
<item quantity="other">%1$d items</item>
|
||||
<item quantity="zero">%1$d عناصر</item>
|
||||
<item quantity="one">%1$d عنصر</item>
|
||||
<item quantity="two">%1$d عنصران</item>
|
||||
<item quantity="few">%1$d عناصر</item>
|
||||
<item quantity="many">%1$d عنصرًا</item>
|
||||
<item quantity="other">%1$d عنصرٍ</item>
|
||||
</plurals>
|
||||
|
||||
<!-- Video editor play button content description -->
|
||||
|
||||
@@ -26,11 +26,11 @@
|
||||
<!-- Label for the button that switches the capture screen to the camera. -->
|
||||
<string name="MediaCaptureScreen__camera">Kamera</string>
|
||||
<!-- Label for the button that switches the capture screen to the text story editor. -->
|
||||
<string name="MediaCaptureScreen__text">Text</string>
|
||||
<string name="MediaCaptureScreen__text">Mətn</string>
|
||||
<!-- Label for the pill that displays the media count -->
|
||||
<plurals name="MediaCaptureScreen_n_items">
|
||||
<item quantity="one">%1$d item</item>
|
||||
<item quantity="other">%1$d items</item>
|
||||
<item quantity="one">%1$d Bənd</item>
|
||||
<item quantity="other">%1$d element</item>
|
||||
</plurals>
|
||||
|
||||
<!-- Video editor play button content description -->
|
||||
|
||||
@@ -26,13 +26,13 @@
|
||||
<!-- Label for the button that switches the capture screen to the camera. -->
|
||||
<string name="MediaCaptureScreen__camera">Камера</string>
|
||||
<!-- Label for the button that switches the capture screen to the text story editor. -->
|
||||
<string name="MediaCaptureScreen__text">Text</string>
|
||||
<string name="MediaCaptureScreen__text">Тэкст</string>
|
||||
<!-- Label for the pill that displays the media count -->
|
||||
<plurals name="MediaCaptureScreen_n_items">
|
||||
<item quantity="one">%1$d item</item>
|
||||
<item quantity="few">%1$d items</item>
|
||||
<item quantity="many">%1$d items</item>
|
||||
<item quantity="other">%1$d items</item>
|
||||
<item quantity="one">%1$d элемент</item>
|
||||
<item quantity="few">%1$d элементы</item>
|
||||
<item quantity="many">%1$d элементаў</item>
|
||||
<item quantity="other">%1$d элементаў</item>
|
||||
</plurals>
|
||||
|
||||
<!-- Video editor play button content description -->
|
||||
|
||||
@@ -26,11 +26,11 @@
|
||||
<!-- Label for the button that switches the capture screen to the camera. -->
|
||||
<string name="MediaCaptureScreen__camera">Камера</string>
|
||||
<!-- Label for the button that switches the capture screen to the text story editor. -->
|
||||
<string name="MediaCaptureScreen__text">Text</string>
|
||||
<string name="MediaCaptureScreen__text">Текст</string>
|
||||
<!-- Label for the pill that displays the media count -->
|
||||
<plurals name="MediaCaptureScreen_n_items">
|
||||
<item quantity="one">%1$d item</item>
|
||||
<item quantity="other">%1$d items</item>
|
||||
<item quantity="one">%1$d файл</item>
|
||||
<item quantity="other">%1$d файла</item>
|
||||
</plurals>
|
||||
|
||||
<!-- Video editor play button content description -->
|
||||
|
||||
@@ -26,11 +26,11 @@
|
||||
<!-- Label for the button that switches the capture screen to the camera. -->
|
||||
<string name="MediaCaptureScreen__camera">ক্যামেরা</string>
|
||||
<!-- Label for the button that switches the capture screen to the text story editor. -->
|
||||
<string name="MediaCaptureScreen__text">Text</string>
|
||||
<string name="MediaCaptureScreen__text">টেক্সট</string>
|
||||
<!-- Label for the pill that displays the media count -->
|
||||
<plurals name="MediaCaptureScreen_n_items">
|
||||
<item quantity="one">%1$d item</item>
|
||||
<item quantity="other">%1$d items</item>
|
||||
<item quantity="one">%1$d টি বস্তু</item>
|
||||
<item quantity="other">%1$d-টি আইটেম</item>
|
||||
</plurals>
|
||||
|
||||
<!-- Video editor play button content description -->
|
||||
|
||||
@@ -26,13 +26,13 @@
|
||||
<!-- Label for the button that switches the capture screen to the camera. -->
|
||||
<string name="MediaCaptureScreen__camera">Kamera</string>
|
||||
<!-- Label for the button that switches the capture screen to the text story editor. -->
|
||||
<string name="MediaCaptureScreen__text">Text</string>
|
||||
<string name="MediaCaptureScreen__text">Tekst</string>
|
||||
<!-- Label for the pill that displays the media count -->
|
||||
<plurals name="MediaCaptureScreen_n_items">
|
||||
<item quantity="one">%1$d item</item>
|
||||
<item quantity="few">%1$d items</item>
|
||||
<item quantity="many">%1$d items</item>
|
||||
<item quantity="other">%1$d items</item>
|
||||
<item quantity="one">%1$d Stavka</item>
|
||||
<item quantity="few">%1$d Stavke</item>
|
||||
<item quantity="many">%1$d Stavki</item>
|
||||
<item quantity="other">%1$d Stavki</item>
|
||||
</plurals>
|
||||
|
||||
<!-- Video editor play button content description -->
|
||||
|
||||
@@ -29,8 +29,8 @@
|
||||
<string name="MediaCaptureScreen__text">Text</string>
|
||||
<!-- Label for the pill that displays the media count -->
|
||||
<plurals name="MediaCaptureScreen_n_items">
|
||||
<item quantity="one">%1$d item</item>
|
||||
<item quantity="other">%1$d items</item>
|
||||
<item quantity="one">%1$d element</item>
|
||||
<item quantity="other">%1$d elements</item>
|
||||
</plurals>
|
||||
|
||||
<!-- Video editor play button content description -->
|
||||
|
||||
@@ -29,10 +29,10 @@
|
||||
<string name="MediaCaptureScreen__text">Text</string>
|
||||
<!-- Label for the pill that displays the media count -->
|
||||
<plurals name="MediaCaptureScreen_n_items">
|
||||
<item quantity="one">%1$d item</item>
|
||||
<item quantity="few">%1$d items</item>
|
||||
<item quantity="many">%1$d items</item>
|
||||
<item quantity="other">%1$d items</item>
|
||||
<item quantity="one">%1$d položka</item>
|
||||
<item quantity="few">%1$d položky</item>
|
||||
<item quantity="many">%1$d položek</item>
|
||||
<item quantity="other">%1$d položek</item>
|
||||
</plurals>
|
||||
|
||||
<!-- Video editor play button content description -->
|
||||
|
||||
@@ -26,11 +26,11 @@
|
||||
<!-- Label for the button that switches the capture screen to the camera. -->
|
||||
<string name="MediaCaptureScreen__camera">Kamera</string>
|
||||
<!-- Label for the button that switches the capture screen to the text story editor. -->
|
||||
<string name="MediaCaptureScreen__text">Text</string>
|
||||
<string name="MediaCaptureScreen__text">Tekst</string>
|
||||
<!-- Label for the pill that displays the media count -->
|
||||
<plurals name="MediaCaptureScreen_n_items">
|
||||
<item quantity="one">%1$d item</item>
|
||||
<item quantity="other">%1$d items</item>
|
||||
<item quantity="one">%1$d Enheder</item>
|
||||
<item quantity="other">%1$d emner</item>
|
||||
</plurals>
|
||||
|
||||
<!-- Video editor play button content description -->
|
||||
|
||||
@@ -29,8 +29,8 @@
|
||||
<string name="MediaCaptureScreen__text">Text</string>
|
||||
<!-- Label for the pill that displays the media count -->
|
||||
<plurals name="MediaCaptureScreen_n_items">
|
||||
<item quantity="one">%1$d item</item>
|
||||
<item quantity="other">%1$d items</item>
|
||||
<item quantity="one">%1$d Element</item>
|
||||
<item quantity="other">%1$d Elemente</item>
|
||||
</plurals>
|
||||
|
||||
<!-- Video editor play button content description -->
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user