Merge branch 'release/3.2.0'

This commit is contained in:
Nora Trapp 2020-01-10 17:15:50 -08:00
commit 65590f03f1
73 changed files with 721 additions and 706 deletions

View File

@ -2,16 +2,7 @@
"images" : [
{
"idiom" : "universal",
"filename" : "view-once-24.pdf",
"scale" : "1x"
},
{
"idiom" : "universal",
"scale" : "2x"
},
{
"idiom" : "universal",
"scale" : "3x"
"filename" : "view-once-24.pdf"
}
],
"info" : {

View File

@ -0,0 +1,12 @@
{
"images" : [
{
"idiom" : "universal",
"filename" : "viewed-once-24.pdf"
}
],
"info" : {
"version" : 1,
"author" : "xcode"
}
}

Binary file not shown.

View File

@ -45,7 +45,7 @@
</dict>
</array>
<key>CFBundleVersion</key>
<string>3.2.0.8</string>
<string>3.2.0.9</string>
<key>ITSAppUsesNonExemptEncryption</key>
<false/>
<key>LOGS_EMAIL</key>

View File

@ -1,5 +1,5 @@
//
// Copyright (c) 2019 Open Whisper Systems. All rights reserved.
// Copyright (c) 2020 Open Whisper Systems. All rights reserved.
//
import Foundation
@ -204,7 +204,7 @@ class ThreadMapping: NSObject {
var updatedItemIds = Set<String>()
for threadId in allUpdatedItemIds {
guard let thread = TSThread.anyFetch(uniqueId: threadId, transaction: transaction) else {
owsFailDebug("Missing thread.")
// Missing thread, it was deleted and should no longer be visible.
continue
}
if thread.shouldThreadBeVisible {

View File

@ -1,5 +1,5 @@
//
// Copyright (c) 2019 Open Whisper Systems. All rights reserved.
// Copyright (c) 2020 Open Whisper Systems. All rights reserved.
//
#import "OWSMessageView.h"
@ -13,6 +13,8 @@ NS_ASSUME_NONNULL_BEGIN
- (void)didTapViewOnceAttachment:(id<ConversationViewItem>)viewItem
attachmentStream:(TSAttachmentStream *)attachmentStream;
- (void)didTapViewOnceExpired:(id<ConversationViewItem>)viewItem;
- (void)didTapFailedIncomingAttachment:(id<ConversationViewItem>)viewItem;
@end

View File

@ -1,5 +1,5 @@
//
// Copyright (c) 2019 Open Whisper Systems. All rights reserved.
// Copyright (c) 2020 Open Whisper Systems. All rights reserved.
//
#import "OWSMessageViewOnceView.h"
@ -472,8 +472,6 @@ typedef NS_ENUM(NSUInteger, ViewOnceMessageType) {
self.label.text = CommonStrings.retryButton;
break;
case ViewOnceMessageState_OutgoingSending:
self.label.text = NSLocalizedString(@"MESSAGE_STATUS_SENDING", @"message status while message is sending.");
break;
case ViewOnceMessageState_OutgoingSentExpired:
self.label.text = NSLocalizedString(
@"PER_MESSAGE_EXPIRATION_OUTGOING_MESSAGE", @"Label for outgoing view-once messages.");
@ -507,19 +505,19 @@ typedef NS_ENUM(NSUInteger, ViewOnceMessageType) {
OWSFailDebug(@"Invalid value.");
// Fall through.
case ViewOnceMessageState_IncomingExpired:
return @"play-outline-24";
return @"viewed-once-24";
case ViewOnceMessageState_IncomingDownloading:
OWSFailDebug(@"Unexpected state.");
return nil;
case ViewOnceMessageState_IncomingFailed:
return @"retry-24";
case ViewOnceMessageState_IncomingAvailable:
return @"play-filled-24";
case ViewOnceMessageState_OutgoingFailed:
return @"arrow-down-circle-outline-24";
case ViewOnceMessageState_IncomingAvailable:
return @"view-once-24";
case ViewOnceMessageState_OutgoingFailed:
return @"retry-24";
case ViewOnceMessageState_OutgoingSending:
case ViewOnceMessageState_OutgoingSentExpired:
return @"play-outline-24";
return @"viewed-once-24";
case ViewOnceMessageState_IncomingInvalidContent:
OWSFailDebug(@"Unexpected state.");
return nil;
@ -586,6 +584,12 @@ typedef NS_ENUM(NSUInteger, ViewOnceMessageType) {
return (self.viewItem.viewOnceMessageState == ViewOnceMessageState_IncomingAvailable);
}
- (BOOL)isExpired
{
return (self.viewItem.viewOnceMessageState == ViewOnceMessageState_IncomingExpired
|| self.viewItem.viewOnceMessageState == ViewOnceMessageState_OutgoingSentExpired);
}
#pragma mark - Measurement
- (CGSize)contentSize
@ -755,6 +759,8 @@ typedef NS_ENUM(NSUInteger, ViewOnceMessageType) {
return;
}
[self.delegate didTapViewOnceAttachment:self.viewItem attachmentStream:self.viewItem.attachmentStream];
} else if (self.isExpired) {
[self.delegate didTapViewOnceExpired:self.viewItem];
}
}

View File

@ -2862,6 +2862,18 @@ typedef enum : NSUInteger {
[ViewOnceMessageViewController tryToPresentWithInteraction:viewItem.interaction from:self];
}
- (void)didTapViewOnceExpired:(id<ConversationViewItem>)viewItem
{
OWSAssertIsOnMainThread();
OWSAssertDebug(viewItem);
if ([viewItem.interaction isKindOfClass:[TSOutgoingMessage class]]) {
[self presentViewOnceOutgoingToast];
} else {
[self presentViewOnceAlreadyViewedToast];
}
}
#pragma mark - CNContactViewControllerDelegate
- (void)contactViewController:(CNContactViewController *)viewController
@ -4861,6 +4873,34 @@ typedef enum : NSUInteger {
[toastController presentToastViewFromBottomOfView:self.view inset:bottomInset];
}
- (void)presentViewOnceAlreadyViewedToast
{
OWSLogInfo(@"");
NSString *toastText = NSLocalizedString(@"VIEW_ONCE_ALREADY_VIEWED_TOAST",
@"Toast alert text shown when tapping on a view-once message that has already been viewed.");
ToastController *toastController = [[ToastController alloc] initWithText:toastText];
CGFloat bottomInset = kToastInset + self.collectionView.contentInset.bottom + self.view.layoutMargins.bottom;
[toastController presentToastViewFromBottomOfView:self.view inset:bottomInset];
}
- (void)presentViewOnceOutgoingToast
{
OWSLogInfo(@"");
NSString *toastText = NSLocalizedString(
@"VIEW_ONCE_OUTGOING_TOAST", @"Toast alert text shown when tapping on a view-once message that you have sent.");
ToastController *toastController = [[ToastController alloc] initWithText:toastText];
CGFloat bottomInset = kToastInset + self.collectionView.contentInset.bottom + self.view.layoutMargins.bottom;
[toastController presentToastViewFromBottomOfView:self.view inset:bottomInset];
}
#pragma mark - ConversationViewModelDelegate
- (void)conversationViewModelWillUpdate

View File

@ -1,5 +1,5 @@
//
// Copyright (c) 2019 Open Whisper Systems. All rights reserved.
// Copyright (c) 2020 Open Whisper Systems. All rights reserved.
//
#import "ConversationListViewController.h"
@ -1624,6 +1624,7 @@ NSString *const kArchiveButtonPseudoGroup = @"kArchiveButtonPseudoGroup";
[groupThread softDeleteThreadWithTransaction:transaction];
} else {
[groupThread anyRemoveWithTransaction:transaction];
[self.databaseStorage touchThread:groupThread transaction:transaction];
}
} else {
// contact thread

View File

@ -1,5 +1,5 @@
//
// Copyright (c) 2019 Open Whisper Systems. All rights reserved.
// Copyright (c) 2020 Open Whisper Systems. All rights reserved.
//
import Foundation
@ -812,6 +812,10 @@ extension MessageDetailViewController: OWSMessageViewOnceViewDelegate {
ViewOnceMessageViewController.tryToPresent(interaction: viewItem.interaction,
from: self)
}
func didTapViewOnceExpired(_ viewItem: ConversationViewItem) {
}
}
extension MessageDetailViewController: ContactShareViewHelperDelegate {

View File

@ -1,5 +1,5 @@
//
// Copyright (c) 2019 Open Whisper Systems. All rights reserved.
// Copyright (c) 2020 Open Whisper Systems. All rights reserved.
//
import Foundation
@ -258,12 +258,6 @@ class ViewOnceMessageViewController: OWSViewController {
dismissButton.autoPinEdge(.top, to: .top, of: mediaView)
dismissButton.setShadow(opacity: 0.66)
view.addGestureRecognizer(UITapGestureRecognizer(target: self,
action: #selector(rootViewWasTapped)))
let verticalSwipe = UISwipeGestureRecognizer(target: self, action: #selector(rootViewWasSwiped))
verticalSwipe.direction = [.up, .down]
view.addGestureRecognizer(verticalSwipe)
setupDatabaseObservation()
}
@ -430,20 +424,6 @@ class ViewOnceMessageViewController: OWSViewController {
dismiss(animated: true)
}
@objc
func rootViewWasTapped(sender: UIGestureRecognizer) {
AssertIsOnMainThread()
dismiss(animated: true)
}
@objc
func rootViewWasSwiped(sender: UIGestureRecognizer) {
AssertIsOnMainThread()
dismiss(animated: true)
}
}
// MARK: -

View File

@ -516,7 +516,7 @@
"COMPOSE_MESSAGE_GROUP_SECTION_TITLE" = "مجموعة";
/* Table section header for phone number search when composing a new message */
"COMPOSE_MESSAGE_PHONE_NUMBER_SEARCH_SECTION_TITLE" = "Phone number search";
"COMPOSE_MESSAGE_PHONE_NUMBER_SEARCH_SECTION_TITLE" = "البحث عن طريق رقم الهاتف";
/* Table section header for username search when composing a new message */
"COMPOSE_MESSAGE_USERNAME_SEARCH_SECTION_TITLE" = "Username search";
@ -1578,12 +1578,6 @@
/* Indicator that separates read from unread messages. */
"MESSAGES_VIEW_UNREAD_INDICATOR" = "رسائل جديدة";
/* Messages that indicates that there are more unseen messages. */
"MESSAGES_VIEW_UNREAD_INDICATOR_HAS_MORE_UNSEEN_MESSAGES" = "هناك رسائل غير مقروؤة أكثر.";
/* Messages that indicates that there are more unseen messages including safety number changes. */
"MESSAGES_VIEW_UNREAD_INDICATOR_HAS_MORE_UNSEEN_MESSAGES_AND_SAFETY_NUMBER_CHANGES" = "There are more unread messages (including safety number changes).";
/* info message text in conversation view */
"MISSED_CALL" = "مكالمة فائتة";
@ -1888,22 +1882,22 @@
"PER_MESSAGE_EXPIRATION_INVALID_CONTENT" = "Error handling incoming message";
/* inbox cell and notification text for an already viewed view-once media message. */
"PER_MESSAGE_EXPIRATION_NOT_VIEWABLE" = "Media Message";
"PER_MESSAGE_EXPIRATION_NOT_VIEWABLE" = "View-once media";
/* Label for outgoing view-once messages. */
"PER_MESSAGE_EXPIRATION_OUTGOING_MESSAGE" = "الوسائط";
/* inbox cell and notification text for a view-once photo. */
"PER_MESSAGE_EXPIRATION_PHOTO_PREVIEW" = "Disappearing Photo";
"PER_MESSAGE_EXPIRATION_PHOTO_PREVIEW" = "View-once photo";
/* inbox cell and notification text for a view-once video. */
"PER_MESSAGE_EXPIRATION_VIDEO_PREVIEW" = "Disappearing Video";
"PER_MESSAGE_EXPIRATION_VIDEO_PREVIEW" = "View-once video";
/* Label for view-once messages indicating that user can tap to view the message's contents. */
"PER_MESSAGE_EXPIRATION_VIEW_PHOTO" = "صورة";
"PER_MESSAGE_EXPIRATION_VIEW_PHOTO" = "مشاهدة الصورة";
/* Label for view-once messages indicating that user can tap to view the message's contents. */
"PER_MESSAGE_EXPIRATION_VIEW_VIDEO" = "فيديو";
"PER_MESSAGE_EXPIRATION_VIEW_VIDEO" = "View Video";
/* Label for view-once messages indicating that the local user has viewed the message's contents. */
"PER_MESSAGE_EXPIRATION_VIEWED" = "تمت المشاهدة";
@ -3054,9 +3048,15 @@
/* Label for button or row which allows users to verify the safety numbers of multiple users. */
"VERIFY_PRIVACY_MULTIPLE" = "مراجعة أرقام الأمان";
/* Toast alert text shown when tapping on a view-once message that has already been viewed. */
"VIEW_ONCE_ALREADY_VIEWED_TOAST" = "You already viewed this message.";
/* Tooltip highlighting the view once messages button. */
"VIEW_ONCE_MESSAGES_TOOLTIP" = "Tap here to make this message disappear after it is viewed.";
/* Toast alert text shown when tapping on a view-once message that you have sent. */
"VIEW_ONCE_OUTGOING_TOAST" = "Outgoing view-once media files are automatically removed after they are sent.";
/* Indicates how to cancel a voice message. */
"VOICE_MESSAGE_CANCEL_INSTRUCTIONS" = "مرر للإلغاء";

View File

@ -1578,12 +1578,6 @@
/* Indicator that separates read from unread messages. */
"MESSAGES_VIEW_UNREAD_INDICATOR" = "Yeni Mesajlar";
/* Messages that indicates that there are more unseen messages. */
"MESSAGES_VIEW_UNREAD_INDICATOR_HAS_MORE_UNSEEN_MESSAGES" = "Daha çox oxunmamış mesaj var.";
/* Messages that indicates that there are more unseen messages including safety number changes. */
"MESSAGES_VIEW_UNREAD_INDICATOR_HAS_MORE_UNSEEN_MESSAGES_AND_SAFETY_NUMBER_CHANGES" = "Daha çox oxunmamış mesaj var (təhlükəsizlik rəqəmi dəyişməsi daxil olmaqla).";
/* info message text in conversation view */
"MISSED_CALL" = "Cavabsız zəng";
@ -1888,22 +1882,22 @@
"PER_MESSAGE_EXPIRATION_INVALID_CONTENT" = "Error handling incoming message";
/* inbox cell and notification text for an already viewed view-once media message. */
"PER_MESSAGE_EXPIRATION_NOT_VIEWABLE" = "Media Message";
"PER_MESSAGE_EXPIRATION_NOT_VIEWABLE" = "View-once media";
/* Label for outgoing view-once messages. */
"PER_MESSAGE_EXPIRATION_OUTGOING_MESSAGE" = "Media";
/* inbox cell and notification text for a view-once photo. */
"PER_MESSAGE_EXPIRATION_PHOTO_PREVIEW" = "Disappearing Photo";
"PER_MESSAGE_EXPIRATION_PHOTO_PREVIEW" = "View-once photo";
/* inbox cell and notification text for a view-once video. */
"PER_MESSAGE_EXPIRATION_VIDEO_PREVIEW" = "Disappearing Video";
"PER_MESSAGE_EXPIRATION_VIDEO_PREVIEW" = "View-once video";
/* Label for view-once messages indicating that user can tap to view the message's contents. */
"PER_MESSAGE_EXPIRATION_VIEW_PHOTO" = "Şəkil";
"PER_MESSAGE_EXPIRATION_VIEW_PHOTO" = "View Photo";
/* Label for view-once messages indicating that user can tap to view the message's contents. */
"PER_MESSAGE_EXPIRATION_VIEW_VIDEO" = "Video";
"PER_MESSAGE_EXPIRATION_VIEW_VIDEO" = "View Video";
/* Label for view-once messages indicating that the local user has viewed the message's contents. */
"PER_MESSAGE_EXPIRATION_VIEWED" = "Viewed";
@ -3054,9 +3048,15 @@
/* Label for button or row which allows users to verify the safety numbers of multiple users. */
"VERIFY_PRIVACY_MULTIPLE" = "Təhlükəsizlik Rəqəmlərinə Baxış Keçir";
/* Toast alert text shown when tapping on a view-once message that has already been viewed. */
"VIEW_ONCE_ALREADY_VIEWED_TOAST" = "You already viewed this message.";
/* Tooltip highlighting the view once messages button. */
"VIEW_ONCE_MESSAGES_TOOLTIP" = "Tap here to make this message disappear after it is viewed.";
/* Toast alert text shown when tapping on a view-once message that you have sent. */
"VIEW_ONCE_OUTGOING_TOAST" = "Outgoing view-once media files are automatically removed after they are sent.";
/* Indicates how to cancel a voice message. */
"VOICE_MESSAGE_CANCEL_INSTRUCTIONS" = "Ləğv Etmək üçün Sürüşdür";

View File

@ -1578,12 +1578,6 @@
/* Indicator that separates read from unread messages. */
"MESSAGES_VIEW_UNREAD_INDICATOR" = "Нови съобщения";
/* Messages that indicates that there are more unseen messages. */
"MESSAGES_VIEW_UNREAD_INDICATOR_HAS_MORE_UNSEEN_MESSAGES" = "There are more unread messages.";
/* Messages that indicates that there are more unseen messages including safety number changes. */
"MESSAGES_VIEW_UNREAD_INDICATOR_HAS_MORE_UNSEEN_MESSAGES_AND_SAFETY_NUMBER_CHANGES" = "There are more unread messages (including safety number changes).";
/* info message text in conversation view */
"MISSED_CALL" = "Пропуснато обаждане";
@ -1888,22 +1882,22 @@
"PER_MESSAGE_EXPIRATION_INVALID_CONTENT" = "Error handling incoming message";
/* inbox cell and notification text for an already viewed view-once media message. */
"PER_MESSAGE_EXPIRATION_NOT_VIEWABLE" = "Media Message";
"PER_MESSAGE_EXPIRATION_NOT_VIEWABLE" = "View-once media";
/* Label for outgoing view-once messages. */
"PER_MESSAGE_EXPIRATION_OUTGOING_MESSAGE" = "Медия";
/* inbox cell and notification text for a view-once photo. */
"PER_MESSAGE_EXPIRATION_PHOTO_PREVIEW" = "Disappearing Photo";
"PER_MESSAGE_EXPIRATION_PHOTO_PREVIEW" = "View-once photo";
/* inbox cell and notification text for a view-once video. */
"PER_MESSAGE_EXPIRATION_VIDEO_PREVIEW" = "Disappearing Video";
"PER_MESSAGE_EXPIRATION_VIDEO_PREVIEW" = "View-once video";
/* Label for view-once messages indicating that user can tap to view the message's contents. */
"PER_MESSAGE_EXPIRATION_VIEW_PHOTO" = "Снимка";
"PER_MESSAGE_EXPIRATION_VIEW_PHOTO" = "View Photo";
/* Label for view-once messages indicating that user can tap to view the message's contents. */
"PER_MESSAGE_EXPIRATION_VIEW_VIDEO" = "Видео";
"PER_MESSAGE_EXPIRATION_VIEW_VIDEO" = "View Video";
/* Label for view-once messages indicating that the local user has viewed the message's contents. */
"PER_MESSAGE_EXPIRATION_VIEWED" = "Viewed";
@ -3054,9 +3048,15 @@
/* Label for button or row which allows users to verify the safety numbers of multiple users. */
"VERIFY_PRIVACY_MULTIPLE" = "Преглед на номера за сигурност";
/* Toast alert text shown when tapping on a view-once message that has already been viewed. */
"VIEW_ONCE_ALREADY_VIEWED_TOAST" = "You already viewed this message.";
/* Tooltip highlighting the view once messages button. */
"VIEW_ONCE_MESSAGES_TOOLTIP" = "Tap here to make this message disappear after it is viewed.";
/* Toast alert text shown when tapping on a view-once message that you have sent. */
"VIEW_ONCE_OUTGOING_TOAST" = "Outgoing view-once media files are automatically removed after they are sent.";
/* Indicates how to cancel a voice message. */
"VOICE_MESSAGE_CANCEL_INSTRUCTIONS" = "Плъзни за Отказ";

View File

@ -1438,7 +1438,7 @@
"MESSAGE_ACTION_REPLY" = "এই বার্তার জবাব দিন";
/* Action sheet button title */
"MESSAGE_ACTION_SHARE_MEDIA" = "Share Media";
"MESSAGE_ACTION_SHARE_MEDIA" = "মিডিয়া শেয়ার করুন";
/* Title for the 'message approval' dialog. */
"MESSAGE_APPROVAL_DIALOG_TITLE" = "বার্তা";
@ -1578,12 +1578,6 @@
/* Indicator that separates read from unread messages. */
"MESSAGES_VIEW_UNREAD_INDICATOR" = "নতুন বার্তাসমূহ";
/* Messages that indicates that there are more unseen messages. */
"MESSAGES_VIEW_UNREAD_INDICATOR_HAS_MORE_UNSEEN_MESSAGES" = "আরও অপঠিত বার্তা রয়েছে।";
/* Messages that indicates that there are more unseen messages including safety number changes. */
"MESSAGES_VIEW_UNREAD_INDICATOR_HAS_MORE_UNSEEN_MESSAGES_AND_SAFETY_NUMBER_CHANGES" = "আরও অপঠিত বার্তা রয়েছে (যার মধ্যে নিরাপত্তা নাম্বার পরিবর্তন হয়েছে এমনও আছে)।";
/* info message text in conversation view */
"MISSED_CALL" = "ব্যর্থ কল";
@ -1771,7 +1765,7 @@
"ONBOARDING_MODE_SWITCH_BUTTON_PROVISIONING" = "Register iPad";
/* button indicating that the user will link their phone */
"ONBOARDING_MODE_SWITCH_BUTTON_REGISTERING" = "Link iPhone";
"ONBOARDING_MODE_SWITCH_BUTTON_REGISTERING" = "আইফোন সংযুক্ত করুন";
/* explanation to the user they're switching from linking to registering flow */
"ONBOARDING_MODE_SWITCH_EXPLANATION_PROVISIONING" = "Tapping “Register iPad” will let you create a brand new Signal account or move an existing account to this iPad. This will disable Signal on any other device currently registered with the same phone number.";
@ -1888,22 +1882,22 @@
"PER_MESSAGE_EXPIRATION_INVALID_CONTENT" = "আগত বার্তা পরিচালনা করার সময় ত্রুটি";
/* inbox cell and notification text for an already viewed view-once media message. */
"PER_MESSAGE_EXPIRATION_NOT_VIEWABLE" = "মিডিয়া বার্তা";
"PER_MESSAGE_EXPIRATION_NOT_VIEWABLE" = "View-once media";
/* Label for outgoing view-once messages. */
"PER_MESSAGE_EXPIRATION_OUTGOING_MESSAGE" = "মিডিয়া";
/* inbox cell and notification text for a view-once photo. */
"PER_MESSAGE_EXPIRATION_PHOTO_PREVIEW" = "অদৃশ্য ছবি";
"PER_MESSAGE_EXPIRATION_PHOTO_PREVIEW" = "View-once photo";
/* inbox cell and notification text for a view-once video. */
"PER_MESSAGE_EXPIRATION_VIDEO_PREVIEW" = "অদৃশ্য ভিডিও";
"PER_MESSAGE_EXPIRATION_VIDEO_PREVIEW" = "View-once video";
/* Label for view-once messages indicating that user can tap to view the message's contents. */
"PER_MESSAGE_EXPIRATION_VIEW_PHOTO" = "ছবি";
"PER_MESSAGE_EXPIRATION_VIEW_PHOTO" = "ছবি দেখুন";
/* Label for view-once messages indicating that user can tap to view the message's contents. */
"PER_MESSAGE_EXPIRATION_VIEW_VIDEO" = "ভিডিও";
"PER_MESSAGE_EXPIRATION_VIEW_VIDEO" = "View Video";
/* Label for view-once messages indicating that the local user has viewed the message's contents. */
"PER_MESSAGE_EXPIRATION_VIEWED" = "দেখা হয়েছে";
@ -3054,9 +3048,15 @@
/* Label for button or row which allows users to verify the safety numbers of multiple users. */
"VERIFY_PRIVACY_MULTIPLE" = "সুরক্ষা নাম্বার পর্যালোচনা করুন";
/* Toast alert text shown when tapping on a view-once message that has already been viewed. */
"VIEW_ONCE_ALREADY_VIEWED_TOAST" = "You already viewed this message.";
/* Tooltip highlighting the view once messages button. */
"VIEW_ONCE_MESSAGES_TOOLTIP" = "Tap here to make this message disappear after it is viewed.";
/* Toast alert text shown when tapping on a view-once message that you have sent. */
"VIEW_ONCE_OUTGOING_TOAST" = "Outgoing view-once media files are automatically removed after they are sent.";
/* Indicates how to cancel a voice message. */
"VOICE_MESSAGE_CANCEL_INSTRUCTIONS" = "বাতিল করতে স্লাইড করুন";

View File

@ -1578,12 +1578,6 @@
/* Indicator that separates read from unread messages. */
"MESSAGES_VIEW_UNREAD_INDICATOR" = "New Messages";
/* Messages that indicates that there are more unseen messages. */
"MESSAGES_VIEW_UNREAD_INDICATOR_HAS_MORE_UNSEEN_MESSAGES" = "There are more unread messages.";
/* Messages that indicates that there are more unseen messages including safety number changes. */
"MESSAGES_VIEW_UNREAD_INDICATOR_HAS_MORE_UNSEEN_MESSAGES_AND_SAFETY_NUMBER_CHANGES" = "There are more unread messages (including safety number changes).";
/* info message text in conversation view */
"MISSED_CALL" = "Propušten poziv";
@ -1888,22 +1882,22 @@
"PER_MESSAGE_EXPIRATION_INVALID_CONTENT" = "Greška u obradi dolazne poruke";
/* inbox cell and notification text for an already viewed view-once media message. */
"PER_MESSAGE_EXPIRATION_NOT_VIEWABLE" = "Media Message";
"PER_MESSAGE_EXPIRATION_NOT_VIEWABLE" = "View-once media";
/* Label for outgoing view-once messages. */
"PER_MESSAGE_EXPIRATION_OUTGOING_MESSAGE" = "Slike";
/* inbox cell and notification text for a view-once photo. */
"PER_MESSAGE_EXPIRATION_PHOTO_PREVIEW" = "Disappearing Photo";
"PER_MESSAGE_EXPIRATION_PHOTO_PREVIEW" = "View-once photo";
/* inbox cell and notification text for a view-once video. */
"PER_MESSAGE_EXPIRATION_VIDEO_PREVIEW" = "Disappearing Video";
"PER_MESSAGE_EXPIRATION_VIDEO_PREVIEW" = "View-once video";
/* Label for view-once messages indicating that user can tap to view the message's contents. */
"PER_MESSAGE_EXPIRATION_VIEW_PHOTO" = "Fotografija";
"PER_MESSAGE_EXPIRATION_VIEW_PHOTO" = "Vidi fotografiju";
/* Label for view-once messages indicating that user can tap to view the message's contents. */
"PER_MESSAGE_EXPIRATION_VIEW_VIDEO" = "Video";
"PER_MESSAGE_EXPIRATION_VIEW_VIDEO" = "View Video";
/* Label for view-once messages indicating that the local user has viewed the message's contents. */
"PER_MESSAGE_EXPIRATION_VIEWED" = "Viđeno";
@ -3054,9 +3048,15 @@
/* Label for button or row which allows users to verify the safety numbers of multiple users. */
"VERIFY_PRIVACY_MULTIPLE" = "Pregledajte sigurnosne brojeve";
/* Toast alert text shown when tapping on a view-once message that has already been viewed. */
"VIEW_ONCE_ALREADY_VIEWED_TOAST" = "You already viewed this message.";
/* Tooltip highlighting the view once messages button. */
"VIEW_ONCE_MESSAGES_TOOLTIP" = "Tap here to make this message disappear after it is viewed.";
/* Toast alert text shown when tapping on a view-once message that you have sent. */
"VIEW_ONCE_OUTGOING_TOAST" = "Outgoing view-once media files are automatically removed after they are sent.";
/* Indicates how to cancel a voice message. */
"VOICE_MESSAGE_CANCEL_INSTRUCTIONS" = "Povucite za otkazivanje.";

View File

@ -1578,12 +1578,6 @@
/* Indicator that separates read from unread messages. */
"MESSAGES_VIEW_UNREAD_INDICATOR" = "MIssatges nous";
/* Messages that indicates that there are more unseen messages. */
"MESSAGES_VIEW_UNREAD_INDICATOR_HAS_MORE_UNSEEN_MESSAGES" = "Hi ha més missatges sense llegir.";
/* Messages that indicates that there are more unseen messages including safety number changes. */
"MESSAGES_VIEW_UNREAD_INDICATOR_HAS_MORE_UNSEEN_MESSAGES_AND_SAFETY_NUMBER_CHANGES" = "Hi ha més missatges sense llegir (inclosos canvis de número de seguretat).";
/* info message text in conversation view */
"MISSED_CALL" = "Telefonada perduda";
@ -1888,22 +1882,22 @@
"PER_MESSAGE_EXPIRATION_INVALID_CONTENT" = "S'ha produït un error en gestionar el missatge rebut";
/* inbox cell and notification text for an already viewed view-once media message. */
"PER_MESSAGE_EXPIRATION_NOT_VIEWABLE" = "Missatge multimèdia";
"PER_MESSAGE_EXPIRATION_NOT_VIEWABLE" = "Contingut d'una sola visualització";
/* Label for outgoing view-once messages. */
"PER_MESSAGE_EXPIRATION_OUTGOING_MESSAGE" = "Contingut";
/* inbox cell and notification text for a view-once photo. */
"PER_MESSAGE_EXPIRATION_PHOTO_PREVIEW" = "Fotografia efímera";
"PER_MESSAGE_EXPIRATION_PHOTO_PREVIEW" = "Fotografia d'una sola visualització";
/* inbox cell and notification text for a view-once video. */
"PER_MESSAGE_EXPIRATION_VIDEO_PREVIEW" = "Vídeo efímer";
"PER_MESSAGE_EXPIRATION_VIDEO_PREVIEW" = "Vídeo d'una sola visualització";
/* Label for view-once messages indicating that user can tap to view the message's contents. */
"PER_MESSAGE_EXPIRATION_VIEW_PHOTO" = "Foto";
"PER_MESSAGE_EXPIRATION_VIEW_PHOTO" = "Mostra la fotografia";
/* Label for view-once messages indicating that user can tap to view the message's contents. */
"PER_MESSAGE_EXPIRATION_VIEW_VIDEO" = "Vídeo";
"PER_MESSAGE_EXPIRATION_VIEW_VIDEO" = "Mostra el vídeo";
/* Label for view-once messages indicating that the local user has viewed the message's contents. */
"PER_MESSAGE_EXPIRATION_VIEWED" = "Vist";
@ -3054,9 +3048,15 @@
/* Label for button or row which allows users to verify the safety numbers of multiple users. */
"VERIFY_PRIVACY_MULTIPLE" = "Revisa els números de seguretat";
/* Toast alert text shown when tapping on a view-once message that has already been viewed. */
"VIEW_ONCE_ALREADY_VIEWED_TOAST" = "You already viewed this message.";
/* Tooltip highlighting the view once messages button. */
"VIEW_ONCE_MESSAGES_TOOLTIP" = "Toqueu aquí per fer desaparèixer aquest missatge un cop vist.";
/* Toast alert text shown when tapping on a view-once message that you have sent. */
"VIEW_ONCE_OUTGOING_TOAST" = "Outgoing view-once media files are automatically removed after they are sent.";
/* Indicates how to cancel a voice message. */
"VOICE_MESSAGE_CANCEL_INSTRUCTIONS" = "Llisqueu per a cancel·lar";

View File

@ -1578,12 +1578,6 @@
/* Indicator that separates read from unread messages. */
"MESSAGES_VIEW_UNREAD_INDICATOR" = "Nové zprávy";
/* Messages that indicates that there are more unseen messages. */
"MESSAGES_VIEW_UNREAD_INDICATOR_HAS_MORE_UNSEEN_MESSAGES" = "Máte další nepřečtené zprávy.";
/* Messages that indicates that there are more unseen messages including safety number changes. */
"MESSAGES_VIEW_UNREAD_INDICATOR_HAS_MORE_UNSEEN_MESSAGES_AND_SAFETY_NUMBER_CHANGES" = "Máte další nepřečtené zprávy (včetně změn bezpečnosntích čísel).";
/* info message text in conversation view */
"MISSED_CALL" = "Zmeškaný hovor";
@ -1888,22 +1882,22 @@
"PER_MESSAGE_EXPIRATION_INVALID_CONTENT" = "Chyba při zpracování příchozí zprávy";
/* inbox cell and notification text for an already viewed view-once media message. */
"PER_MESSAGE_EXPIRATION_NOT_VIEWABLE" = "Multimediální zpráva";
"PER_MESSAGE_EXPIRATION_NOT_VIEWABLE" = "View-once media";
/* Label for outgoing view-once messages. */
"PER_MESSAGE_EXPIRATION_OUTGOING_MESSAGE" = "Media";
/* inbox cell and notification text for a view-once photo. */
"PER_MESSAGE_EXPIRATION_PHOTO_PREVIEW" = "Mizející fotografie";
"PER_MESSAGE_EXPIRATION_PHOTO_PREVIEW" = "View-once photo";
/* inbox cell and notification text for a view-once video. */
"PER_MESSAGE_EXPIRATION_VIDEO_PREVIEW" = "Mizející video";
"PER_MESSAGE_EXPIRATION_VIDEO_PREVIEW" = "View-once video";
/* Label for view-once messages indicating that user can tap to view the message's contents. */
"PER_MESSAGE_EXPIRATION_VIEW_PHOTO" = "Fotografie";
"PER_MESSAGE_EXPIRATION_VIEW_PHOTO" = "Zobrazit fotku";
/* Label for view-once messages indicating that user can tap to view the message's contents. */
"PER_MESSAGE_EXPIRATION_VIEW_VIDEO" = "Video";
"PER_MESSAGE_EXPIRATION_VIEW_VIDEO" = "View Video";
/* Label for view-once messages indicating that the local user has viewed the message's contents. */
"PER_MESSAGE_EXPIRATION_VIEWED" = "Zobrazeno";
@ -3054,9 +3048,15 @@
/* Label for button or row which allows users to verify the safety numbers of multiple users. */
"VERIFY_PRIVACY_MULTIPLE" = "Ověření bezpečnostních čísel";
/* Toast alert text shown when tapping on a view-once message that has already been viewed. */
"VIEW_ONCE_ALREADY_VIEWED_TOAST" = "You already viewed this message.";
/* Tooltip highlighting the view once messages button. */
"VIEW_ONCE_MESSAGES_TOOLTIP" = "Tap here to make this message disappear after it is viewed.";
/* Toast alert text shown when tapping on a view-once message that you have sent. */
"VIEW_ONCE_OUTGOING_TOAST" = "Outgoing view-once media files are automatically removed after they are sent.";
/* Indicates how to cancel a voice message. */
"VOICE_MESSAGE_CANCEL_INSTRUCTIONS" = "Pro zrušení přejeďte";

View File

@ -1578,12 +1578,6 @@
/* Indicator that separates read from unread messages. */
"MESSAGES_VIEW_UNREAD_INDICATOR" = "Nye beskeder";
/* Messages that indicates that there are more unseen messages. */
"MESSAGES_VIEW_UNREAD_INDICATOR_HAS_MORE_UNSEEN_MESSAGES" = "Der er flere ulæste beskeder.";
/* Messages that indicates that there are more unseen messages including safety number changes. */
"MESSAGES_VIEW_UNREAD_INDICATOR_HAS_MORE_UNSEEN_MESSAGES_AND_SAFETY_NUMBER_CHANGES" = "Der er flere ulæste beskeder (inklusiv sikkerhedsnummer ændringer).";
/* info message text in conversation view */
"MISSED_CALL" = "Ubesvaret opkald";
@ -1888,22 +1882,22 @@
"PER_MESSAGE_EXPIRATION_INVALID_CONTENT" = "Fejl i forbindelse med indgående besked";
/* inbox cell and notification text for an already viewed view-once media message. */
"PER_MESSAGE_EXPIRATION_NOT_VIEWABLE" = "Media Message";
"PER_MESSAGE_EXPIRATION_NOT_VIEWABLE" = "Se medie én gang";
/* Label for outgoing view-once messages. */
"PER_MESSAGE_EXPIRATION_OUTGOING_MESSAGE" = "Medie";
/* inbox cell and notification text for a view-once photo. */
"PER_MESSAGE_EXPIRATION_PHOTO_PREVIEW" = "Disappearing Photo";
"PER_MESSAGE_EXPIRATION_PHOTO_PREVIEW" = "Se billed én gang";
/* inbox cell and notification text for a view-once video. */
"PER_MESSAGE_EXPIRATION_VIDEO_PREVIEW" = "Disappearing Video";
"PER_MESSAGE_EXPIRATION_VIDEO_PREVIEW" = "Se video én gang";
/* Label for view-once messages indicating that user can tap to view the message's contents. */
"PER_MESSAGE_EXPIRATION_VIEW_PHOTO" = "Billed";
"PER_MESSAGE_EXPIRATION_VIEW_PHOTO" = "Vis billede";
/* Label for view-once messages indicating that user can tap to view the message's contents. */
"PER_MESSAGE_EXPIRATION_VIEW_VIDEO" = "Video";
"PER_MESSAGE_EXPIRATION_VIEW_VIDEO" = "Se video";
/* Label for view-once messages indicating that the local user has viewed the message's contents. */
"PER_MESSAGE_EXPIRATION_VIEWED" = "Er set";
@ -3054,8 +3048,14 @@
/* Label for button or row which allows users to verify the safety numbers of multiple users. */
"VERIFY_PRIVACY_MULTIPLE" = "Gennemse Sikkerhedsnumre";
/* Toast alert text shown when tapping on a view-once message that has already been viewed. */
"VIEW_ONCE_ALREADY_VIEWED_TOAST" = "You already viewed this message.";
/* Tooltip highlighting the view once messages button. */
"VIEW_ONCE_MESSAGES_TOOLTIP" = "Tap here to make this message disappear after it is viewed.";
"VIEW_ONCE_MESSAGES_TOOLTIP" = "Tap her - så forsvinder beskeden efter at være blevet set";
/* Toast alert text shown when tapping on a view-once message that you have sent. */
"VIEW_ONCE_OUTGOING_TOAST" = "Outgoing view-once media files are automatically removed after they are sent.";
/* Indicates how to cancel a voice message. */
"VOICE_MESSAGE_CANCEL_INSTRUCTIONS" = "Skub for at annullere";

View File

@ -1578,12 +1578,6 @@
/* Indicator that separates read from unread messages. */
"MESSAGES_VIEW_UNREAD_INDICATOR" = "Neue Nachrichten";
/* Messages that indicates that there are more unseen messages. */
"MESSAGES_VIEW_UNREAD_INDICATOR_HAS_MORE_UNSEEN_MESSAGES" = "Weitere ungelesene Nachrichten verfügbar.";
/* Messages that indicates that there are more unseen messages including safety number changes. */
"MESSAGES_VIEW_UNREAD_INDICATOR_HAS_MORE_UNSEEN_MESSAGES_AND_SAFETY_NUMBER_CHANGES" = "Weitere ungelesene Nachrichten verfügbar (mit Änderungen von Sicherheitsnummern).";
/* info message text in conversation view */
"MISSED_CALL" = "Entgangener Anruf";
@ -1888,22 +1882,22 @@
"PER_MESSAGE_EXPIRATION_INVALID_CONTENT" = "Fehler bei eingehender Nachricht";
/* inbox cell and notification text for an already viewed view-once media message. */
"PER_MESSAGE_EXPIRATION_NOT_VIEWABLE" = "Nachricht mit Medieninhalten";
"PER_MESSAGE_EXPIRATION_NOT_VIEWABLE" = "Einmalig anzeigbare Medieninhalte";
/* Label for outgoing view-once messages. */
"PER_MESSAGE_EXPIRATION_OUTGOING_MESSAGE" = "Medieninhalte";
/* inbox cell and notification text for a view-once photo. */
"PER_MESSAGE_EXPIRATION_PHOTO_PREVIEW" = "Verschwindendes Foto";
"PER_MESSAGE_EXPIRATION_PHOTO_PREVIEW" = "Einmalig anzeigbares Foto";
/* inbox cell and notification text for a view-once video. */
"PER_MESSAGE_EXPIRATION_VIDEO_PREVIEW" = "Verschwindendes Video";
"PER_MESSAGE_EXPIRATION_VIDEO_PREVIEW" = "Einmalig anzeigbares Video";
/* Label for view-once messages indicating that user can tap to view the message's contents. */
"PER_MESSAGE_EXPIRATION_VIEW_PHOTO" = "Foto";
"PER_MESSAGE_EXPIRATION_VIEW_PHOTO" = "Foto anzeigen";
/* Label for view-once messages indicating that user can tap to view the message's contents. */
"PER_MESSAGE_EXPIRATION_VIEW_VIDEO" = "Video";
"PER_MESSAGE_EXPIRATION_VIEW_VIDEO" = "Video anzeigen";
/* Label for view-once messages indicating that the local user has viewed the message's contents. */
"PER_MESSAGE_EXPIRATION_VIEWED" = "Angesehen";
@ -3054,9 +3048,15 @@
/* Label for button or row which allows users to verify the safety numbers of multiple users. */
"VERIFY_PRIVACY_MULTIPLE" = "Sicherheitsnummern überprüfen";
/* Toast alert text shown when tapping on a view-once message that has already been viewed. */
"VIEW_ONCE_ALREADY_VIEWED_TOAST" = "You already viewed this message.";
/* Tooltip highlighting the view once messages button. */
"VIEW_ONCE_MESSAGES_TOOLTIP" = "Hier antippen, um diese Nachricht nach dem Ansehen verschwinden zu lassen.";
/* Toast alert text shown when tapping on a view-once message that you have sent. */
"VIEW_ONCE_OUTGOING_TOAST" = "Outgoing view-once media files are automatically removed after they are sent.";
/* Indicates how to cancel a voice message. */
"VOICE_MESSAGE_CANCEL_INSTRUCTIONS" = "Wischen bricht ab";

View File

@ -1578,12 +1578,6 @@
/* Indicator that separates read from unread messages. */
"MESSAGES_VIEW_UNREAD_INDICATOR" = "Νέα Μηνύματα";
/* Messages that indicates that there are more unseen messages. */
"MESSAGES_VIEW_UNREAD_INDICATOR_HAS_MORE_UNSEEN_MESSAGES" = "Υπάρχουν περισσότερα αδιάβαστα μηνύματα.";
/* Messages that indicates that there are more unseen messages including safety number changes. */
"MESSAGES_VIEW_UNREAD_INDICATOR_HAS_MORE_UNSEEN_MESSAGES_AND_SAFETY_NUMBER_CHANGES" = "Υπάρχουν περισσότερα αδιάβαστα μηνύματα (συμπεριλαμβανομένων αλλαγών αριθμού ασφαλείας).";
/* info message text in conversation view */
"MISSED_CALL" = "Αναπάντητη κλήση";
@ -1888,22 +1882,22 @@
"PER_MESSAGE_EXPIRATION_INVALID_CONTENT" = "Σφάλμα κατά την διαχείριση εισερχόμενου μηνύματος.";
/* inbox cell and notification text for an already viewed view-once media message. */
"PER_MESSAGE_EXPIRATION_NOT_VIEWABLE" = "Media Message";
"PER_MESSAGE_EXPIRATION_NOT_VIEWABLE" = "View-once media";
/* Label for outgoing view-once messages. */
"PER_MESSAGE_EXPIRATION_OUTGOING_MESSAGE" = "Πολυμέσα";
/* inbox cell and notification text for a view-once photo. */
"PER_MESSAGE_EXPIRATION_PHOTO_PREVIEW" = "Disappearing Photo";
"PER_MESSAGE_EXPIRATION_PHOTO_PREVIEW" = "View-once photo";
/* inbox cell and notification text for a view-once video. */
"PER_MESSAGE_EXPIRATION_VIDEO_PREVIEW" = "Disappearing Video";
"PER_MESSAGE_EXPIRATION_VIDEO_PREVIEW" = "View-once video";
/* Label for view-once messages indicating that user can tap to view the message's contents. */
"PER_MESSAGE_EXPIRATION_VIEW_PHOTO" = "Φωτογραφία";
"PER_MESSAGE_EXPIRATION_VIEW_PHOTO" = "Προβολή φωτογραφίας";
/* Label for view-once messages indicating that user can tap to view the message's contents. */
"PER_MESSAGE_EXPIRATION_VIEW_VIDEO" = "Βίντεο";
"PER_MESSAGE_EXPIRATION_VIEW_VIDEO" = "View Video";
/* Label for view-once messages indicating that the local user has viewed the message's contents. */
"PER_MESSAGE_EXPIRATION_VIEWED" = "Αναγνωσμένο";
@ -3054,9 +3048,15 @@
/* Label for button or row which allows users to verify the safety numbers of multiple users. */
"VERIFY_PRIVACY_MULTIPLE" = "Έλεγχος Αριθμών Ασφαλείας";
/* Toast alert text shown when tapping on a view-once message that has already been viewed. */
"VIEW_ONCE_ALREADY_VIEWED_TOAST" = "You already viewed this message.";
/* Tooltip highlighting the view once messages button. */
"VIEW_ONCE_MESSAGES_TOOLTIP" = "Tap here to make this message disappear after it is viewed.";
/* Toast alert text shown when tapping on a view-once message that you have sent. */
"VIEW_ONCE_OUTGOING_TOAST" = "Outgoing view-once media files are automatically removed after they are sent.";
/* Indicates how to cancel a voice message. */
"VOICE_MESSAGE_CANCEL_INSTRUCTIONS" = "Σύρετε για Ακύρωση";

View File

@ -1882,22 +1882,22 @@
"PER_MESSAGE_EXPIRATION_INVALID_CONTENT" = "Error handling incoming message";
/* inbox cell and notification text for an already viewed view-once media message. */
"PER_MESSAGE_EXPIRATION_NOT_VIEWABLE" = "Media Message";
"PER_MESSAGE_EXPIRATION_NOT_VIEWABLE" = "View-once media";
/* Label for outgoing view-once messages. */
"PER_MESSAGE_EXPIRATION_OUTGOING_MESSAGE" = "Media";
/* inbox cell and notification text for a view-once photo. */
"PER_MESSAGE_EXPIRATION_PHOTO_PREVIEW" = "Disappearing Photo";
"PER_MESSAGE_EXPIRATION_PHOTO_PREVIEW" = "View-once photo";
/* inbox cell and notification text for a view-once video. */
"PER_MESSAGE_EXPIRATION_VIDEO_PREVIEW" = "Disappearing Video";
"PER_MESSAGE_EXPIRATION_VIDEO_PREVIEW" = "View-once video";
/* Label for view-once messages indicating that user can tap to view the message's contents. */
"PER_MESSAGE_EXPIRATION_VIEW_PHOTO" = "Photo";
"PER_MESSAGE_EXPIRATION_VIEW_PHOTO" = "View Photo";
/* Label for view-once messages indicating that user can tap to view the message's contents. */
"PER_MESSAGE_EXPIRATION_VIEW_VIDEO" = "Video";
"PER_MESSAGE_EXPIRATION_VIEW_VIDEO" = "View Video";
/* Label for view-once messages indicating that the local user has viewed the message's contents. */
"PER_MESSAGE_EXPIRATION_VIEWED" = "Viewed";
@ -3060,9 +3060,15 @@
/* Label for button or row which allows users to verify the safety numbers of multiple users. */
"VERIFY_PRIVACY_MULTIPLE" = "Review Safety Numbers";
/* Toast alert text shown when tapping on a view-once message that has already been viewed. */
"VIEW_ONCE_ALREADY_VIEWED_TOAST" = "You already viewed this message.";
/* Tooltip highlighting the view once messages button. */
"VIEW_ONCE_MESSAGES_TOOLTIP" = "Tap here to make this message disappear after it is viewed.";
/* Toast alert text shown when tapping on a view-once message that you have sent. */
"VIEW_ONCE_OUTGOING_TOAST" = "Outgoing view-once media files are automatically removed after they are sent.";
/* Indicates how to cancel a voice message. */
"VOICE_MESSAGE_CANCEL_INSTRUCTIONS" = "Slide to Cancel";

View File

@ -1578,12 +1578,6 @@
/* Indicator that separates read from unread messages. */
"MESSAGES_VIEW_UNREAD_INDICATOR" = "Mensajes nuevos";
/* Messages that indicates that there are more unseen messages. */
"MESSAGES_VIEW_UNREAD_INDICATOR_HAS_MORE_UNSEEN_MESSAGES" = "Más mensajes sin leer.";
/* Messages that indicates that there are more unseen messages including safety number changes. */
"MESSAGES_VIEW_UNREAD_INDICATOR_HAS_MORE_UNSEEN_MESSAGES_AND_SAFETY_NUMBER_CHANGES" = "Más mensajes sin leer (y cambios en las cifras de seguridad).";
/* info message text in conversation view */
"MISSED_CALL" = "Llamada perdida";
@ -1888,22 +1882,22 @@
"PER_MESSAGE_EXPIRATION_INVALID_CONTENT" = "Fallo al procesar el mensaje recibido";
/* inbox cell and notification text for an already viewed view-once media message. */
"PER_MESSAGE_EXPIRATION_NOT_VIEWABLE" = "Mensaje multimedia";
"PER_MESSAGE_EXPIRATION_NOT_VIEWABLE" = "Multimedia para ver solo una vez";
/* Label for outgoing view-once messages. */
"PER_MESSAGE_EXPIRATION_OUTGOING_MESSAGE" = "Multimedia";
/* inbox cell and notification text for a view-once photo. */
"PER_MESSAGE_EXPIRATION_PHOTO_PREVIEW" = "Foto de ver sólo una vez";
"PER_MESSAGE_EXPIRATION_PHOTO_PREVIEW" = "Foto para ver solo una vez";
/* inbox cell and notification text for a view-once video. */
"PER_MESSAGE_EXPIRATION_VIDEO_PREVIEW" = "Vídeo de ver sólo una vez";
"PER_MESSAGE_EXPIRATION_VIDEO_PREVIEW" = "Vídeo para ver solo una vez";
/* Label for view-once messages indicating that user can tap to view the message's contents. */
"PER_MESSAGE_EXPIRATION_VIEW_PHOTO" = "Foto";
"PER_MESSAGE_EXPIRATION_VIEW_PHOTO" = "Ver foto";
/* Label for view-once messages indicating that user can tap to view the message's contents. */
"PER_MESSAGE_EXPIRATION_VIEW_VIDEO" = "Vídeo";
"PER_MESSAGE_EXPIRATION_VIEW_VIDEO" = "Ver vídeo";
/* Label for view-once messages indicating that the local user has viewed the message's contents. */
"PER_MESSAGE_EXPIRATION_VIEWED" = "Visto";
@ -3054,9 +3048,15 @@
/* Label for button or row which allows users to verify the safety numbers of multiple users. */
"VERIFY_PRIVACY_MULTIPLE" = "Verificar cifras de seguridad";
/* Toast alert text shown when tapping on a view-once message that has already been viewed. */
"VIEW_ONCE_ALREADY_VIEWED_TOAST" = "You already viewed this message.";
/* Tooltip highlighting the view once messages button. */
"VIEW_ONCE_MESSAGES_TOOLTIP" = "Toca aquí para hacer desaparecer este mensaje tras ser visto.";
/* Toast alert text shown when tapping on a view-once message that you have sent. */
"VIEW_ONCE_OUTGOING_TOAST" = "Outgoing view-once media files are automatically removed after they are sent.";
/* Indicates how to cancel a voice message. */
"VOICE_MESSAGE_CANCEL_INSTRUCTIONS" = "Desliza para cancelar";

View File

@ -1578,12 +1578,6 @@
/* Indicator that separates read from unread messages. */
"MESSAGES_VIEW_UNREAD_INDICATOR" = "Uued sõnumid";
/* Messages that indicates that there are more unseen messages. */
"MESSAGES_VIEW_UNREAD_INDICATOR_HAS_MORE_UNSEEN_MESSAGES" = "Sul on veel lugemata sõnumeid.";
/* Messages that indicates that there are more unseen messages including safety number changes. */
"MESSAGES_VIEW_UNREAD_INDICATOR_HAS_MORE_UNSEEN_MESSAGES_AND_SAFETY_NUMBER_CHANGES" = "Sul on veel lugemata sõnumeid (kaasa arvatud turvanumbri muudatused).";
/* info message text in conversation view */
"MISSED_CALL" = "Vastamata kõne";
@ -1888,22 +1882,22 @@
"PER_MESSAGE_EXPIRATION_INVALID_CONTENT" = "Sissetuleva sõnumi käsitlemisel tekkis tõrge.";
/* inbox cell and notification text for an already viewed view-once media message. */
"PER_MESSAGE_EXPIRATION_NOT_VIEWABLE" = "Meediasõnum";
"PER_MESSAGE_EXPIRATION_NOT_VIEWABLE" = "View-once media";
/* Label for outgoing view-once messages. */
"PER_MESSAGE_EXPIRATION_OUTGOING_MESSAGE" = "Meedia";
/* inbox cell and notification text for a view-once photo. */
"PER_MESSAGE_EXPIRATION_PHOTO_PREVIEW" = "Kaduv foto";
"PER_MESSAGE_EXPIRATION_PHOTO_PREVIEW" = "View-once photo";
/* inbox cell and notification text for a view-once video. */
"PER_MESSAGE_EXPIRATION_VIDEO_PREVIEW" = "Haihtuv video";
"PER_MESSAGE_EXPIRATION_VIDEO_PREVIEW" = "View-once video";
/* Label for view-once messages indicating that user can tap to view the message's contents. */
"PER_MESSAGE_EXPIRATION_VIEW_PHOTO" = "Foto";
"PER_MESSAGE_EXPIRATION_VIEW_PHOTO" = "Vaata pilti";
/* Label for view-once messages indicating that user can tap to view the message's contents. */
"PER_MESSAGE_EXPIRATION_VIEW_VIDEO" = "Video";
"PER_MESSAGE_EXPIRATION_VIEW_VIDEO" = "View Video";
/* Label for view-once messages indicating that the local user has viewed the message's contents. */
"PER_MESSAGE_EXPIRATION_VIEWED" = "Vaadatud";
@ -3054,9 +3048,15 @@
/* Label for button or row which allows users to verify the safety numbers of multiple users. */
"VERIFY_PRIVACY_MULTIPLE" = "Kontrolli turvanumbreid";
/* Toast alert text shown when tapping on a view-once message that has already been viewed. */
"VIEW_ONCE_ALREADY_VIEWED_TOAST" = "You already viewed this message.";
/* Tooltip highlighting the view once messages button. */
"VIEW_ONCE_MESSAGES_TOOLTIP" = "Tap here to make this message disappear after it is viewed.";
/* Toast alert text shown when tapping on a view-once message that you have sent. */
"VIEW_ONCE_OUTGOING_TOAST" = "Outgoing view-once media files are automatically removed after they are sent.";
/* Indicates how to cancel a voice message. */
"VOICE_MESSAGE_CANCEL_INSTRUCTIONS" = "Loobumiseks libista";

View File

@ -1578,12 +1578,6 @@
/* Indicator that separates read from unread messages. */
"MESSAGES_VIEW_UNREAD_INDICATOR" = "پیام های جدید";
/* Messages that indicates that there are more unseen messages. */
"MESSAGES_VIEW_UNREAD_INDICATOR_HAS_MORE_UNSEEN_MESSAGES" = "پیام های ناخوانده بیشتری وجود دارد.";
/* Messages that indicates that there are more unseen messages including safety number changes. */
"MESSAGES_VIEW_UNREAD_INDICATOR_HAS_MORE_UNSEEN_MESSAGES_AND_SAFETY_NUMBER_CHANGES" = "پیام های ناخوانده بیشتری وجود دارند (شامل تغییرات کد امنیتی)";
/* info message text in conversation view */
"MISSED_CALL" = "تماس بی‌پاسخ";
@ -1888,22 +1882,22 @@
"PER_MESSAGE_EXPIRATION_INVALID_CONTENT" = "خطا در کنترل پیام دریافتی";
/* inbox cell and notification text for an already viewed view-once media message. */
"PER_MESSAGE_EXPIRATION_NOT_VIEWABLE" = "پیام رسانه ای";
"PER_MESSAGE_EXPIRATION_NOT_VIEWABLE" = "View-once media";
/* Label for outgoing view-once messages. */
"PER_MESSAGE_EXPIRATION_OUTGOING_MESSAGE" = "مدیا";
/* inbox cell and notification text for a view-once photo. */
"PER_MESSAGE_EXPIRATION_PHOTO_PREVIEW" = "عکس ناپدید شد";
"PER_MESSAGE_EXPIRATION_PHOTO_PREVIEW" = "View-once photo";
/* inbox cell and notification text for a view-once video. */
"PER_MESSAGE_EXPIRATION_VIDEO_PREVIEW" = "ناپدید شدن ویدئو";
"PER_MESSAGE_EXPIRATION_VIDEO_PREVIEW" = "View-once video";
/* Label for view-once messages indicating that user can tap to view the message's contents. */
"PER_MESSAGE_EXPIRATION_VIEW_PHOTO" = "تصویر";
"PER_MESSAGE_EXPIRATION_VIEW_PHOTO" = "مشاهده عکس";
/* Label for view-once messages indicating that user can tap to view the message's contents. */
"PER_MESSAGE_EXPIRATION_VIEW_VIDEO" = "ویدیو";
"PER_MESSAGE_EXPIRATION_VIEW_VIDEO" = "View Video";
/* Label for view-once messages indicating that the local user has viewed the message's contents. */
"PER_MESSAGE_EXPIRATION_VIEWED" = "مشاهده شده";
@ -3054,8 +3048,14 @@
/* Label for button or row which allows users to verify the safety numbers of multiple users. */
"VERIFY_PRIVACY_MULTIPLE" = "بازبینی کد های امنیتی";
/* Toast alert text shown when tapping on a view-once message that has already been viewed. */
"VIEW_ONCE_ALREADY_VIEWED_TOAST" = "You already viewed this message.";
/* Tooltip highlighting the view once messages button. */
"VIEW_ONCE_MESSAGES_TOOLTIP" = "Tap here to make this message disappear after it is viewed.";
"VIEW_ONCE_MESSAGES_TOOLTIP" = "برای ناپدید شدن پیام بعد از مشاهده اینجا ضربه بزنید.";
/* Toast alert text shown when tapping on a view-once message that you have sent. */
"VIEW_ONCE_OUTGOING_TOAST" = "Outgoing view-once media files are automatically removed after they are sent.";
/* Indicates how to cancel a voice message. */
"VOICE_MESSAGE_CANCEL_INSTRUCTIONS" = "برای کنسل کردن به کناره بکشید";

View File

@ -1578,12 +1578,6 @@
/* Indicator that separates read from unread messages. */
"MESSAGES_VIEW_UNREAD_INDICATOR" = "Uusia viestejä";
/* Messages that indicates that there are more unseen messages. */
"MESSAGES_VIEW_UNREAD_INDICATOR_HAS_MORE_UNSEEN_MESSAGES" = "Lisää uusia viestejä";
/* Messages that indicates that there are more unseen messages including safety number changes. */
"MESSAGES_VIEW_UNREAD_INDICATOR_HAS_MORE_UNSEEN_MESSAGES_AND_SAFETY_NUMBER_CHANGES" = "Lisää uusia viestejä (mukaan lukien turvanumeroiden vaihdoksia).";
/* info message text in conversation view */
"MISSED_CALL" = "Vastaamatta jäänyt puhelu";
@ -1888,25 +1882,25 @@
"PER_MESSAGE_EXPIRATION_INVALID_CONTENT" = "Virhe saapuvan viestin käsittelyssä";
/* inbox cell and notification text for an already viewed view-once media message. */
"PER_MESSAGE_EXPIRATION_NOT_VIEWABLE" = "Mediaviesti";
"PER_MESSAGE_EXPIRATION_NOT_VIEWABLE" = "Kerran katsottava media";
/* Label for outgoing view-once messages. */
"PER_MESSAGE_EXPIRATION_OUTGOING_MESSAGE" = "Media";
/* inbox cell and notification text for a view-once photo. */
"PER_MESSAGE_EXPIRATION_PHOTO_PREVIEW" = "Katoava kuva";
"PER_MESSAGE_EXPIRATION_PHOTO_PREVIEW" = "Kerran katsottava kuva";
/* inbox cell and notification text for a view-once video. */
"PER_MESSAGE_EXPIRATION_VIDEO_PREVIEW" = "Katoava video";
"PER_MESSAGE_EXPIRATION_VIDEO_PREVIEW" = "Kerran katsottava video";
/* Label for view-once messages indicating that user can tap to view the message's contents. */
"PER_MESSAGE_EXPIRATION_VIEW_PHOTO" = "Kuva";
"PER_MESSAGE_EXPIRATION_VIEW_PHOTO" = "Katso kuvaa";
/* Label for view-once messages indicating that user can tap to view the message's contents. */
"PER_MESSAGE_EXPIRATION_VIEW_VIDEO" = "Video";
"PER_MESSAGE_EXPIRATION_VIEW_VIDEO" = "Katso video";
/* Label for view-once messages indicating that the local user has viewed the message's contents. */
"PER_MESSAGE_EXPIRATION_VIEWED" = "Nähty";
"PER_MESSAGE_EXPIRATION_VIEWED" = "Katsottu";
/* A format for a label showing an example phone number. Embeds {{the example phone number}}. */
"PHONE_NUMBER_EXAMPLE_FORMAT" = "Esimerkki: %@";
@ -3054,9 +3048,15 @@
/* Label for button or row which allows users to verify the safety numbers of multiple users. */
"VERIFY_PRIVACY_MULTIPLE" = "Näytä turvanumerot";
/* Toast alert text shown when tapping on a view-once message that has already been viewed. */
"VIEW_ONCE_ALREADY_VIEWED_TOAST" = "You already viewed this message.";
/* Tooltip highlighting the view once messages button. */
"VIEW_ONCE_MESSAGES_TOOLTIP" = "Napauttamalla tätä viesti katoaa sen jälkeen, kun se on katsottu.";
/* Toast alert text shown when tapping on a view-once message that you have sent. */
"VIEW_ONCE_OUTGOING_TOAST" = "Outgoing view-once media files are automatically removed after they are sent.";
/* Indicates how to cancel a voice message. */
"VOICE_MESSAGE_CANCEL_INSTRUCTIONS" = "Pyyhkäise hylkääksesi";

View File

@ -1578,12 +1578,6 @@
/* Indicator that separates read from unread messages. */
"MESSAGES_VIEW_UNREAD_INDICATOR" = "New Messages";
/* Messages that indicates that there are more unseen messages. */
"MESSAGES_VIEW_UNREAD_INDICATOR_HAS_MORE_UNSEEN_MESSAGES" = "There are more unread messages.";
/* Messages that indicates that there are more unseen messages including safety number changes. */
"MESSAGES_VIEW_UNREAD_INDICATOR_HAS_MORE_UNSEEN_MESSAGES_AND_SAFETY_NUMBER_CHANGES" = "There are more unread messages (including safety number changes).";
/* info message text in conversation view */
"MISSED_CALL" = "Missed call";
@ -1888,22 +1882,22 @@
"PER_MESSAGE_EXPIRATION_INVALID_CONTENT" = "Error handling incoming message";
/* inbox cell and notification text for an already viewed view-once media message. */
"PER_MESSAGE_EXPIRATION_NOT_VIEWABLE" = "Media Message";
"PER_MESSAGE_EXPIRATION_NOT_VIEWABLE" = "View-once media";
/* Label for outgoing view-once messages. */
"PER_MESSAGE_EXPIRATION_OUTGOING_MESSAGE" = "Media";
/* inbox cell and notification text for a view-once photo. */
"PER_MESSAGE_EXPIRATION_PHOTO_PREVIEW" = "Disappearing Photo";
"PER_MESSAGE_EXPIRATION_PHOTO_PREVIEW" = "View-once photo";
/* inbox cell and notification text for a view-once video. */
"PER_MESSAGE_EXPIRATION_VIDEO_PREVIEW" = "Disappearing Video";
"PER_MESSAGE_EXPIRATION_VIDEO_PREVIEW" = "View-once video";
/* Label for view-once messages indicating that user can tap to view the message's contents. */
"PER_MESSAGE_EXPIRATION_VIEW_PHOTO" = "Photo";
"PER_MESSAGE_EXPIRATION_VIEW_PHOTO" = "View Photo";
/* Label for view-once messages indicating that user can tap to view the message's contents. */
"PER_MESSAGE_EXPIRATION_VIEW_VIDEO" = "Video";
"PER_MESSAGE_EXPIRATION_VIEW_VIDEO" = "View Video";
/* Label for view-once messages indicating that the local user has viewed the message's contents. */
"PER_MESSAGE_EXPIRATION_VIEWED" = "Viewed";
@ -3054,9 +3048,15 @@
/* Label for button or row which allows users to verify the safety numbers of multiple users. */
"VERIFY_PRIVACY_MULTIPLE" = "Review Safety Numbers";
/* Toast alert text shown when tapping on a view-once message that has already been viewed. */
"VIEW_ONCE_ALREADY_VIEWED_TOAST" = "You already viewed this message.";
/* Tooltip highlighting the view once messages button. */
"VIEW_ONCE_MESSAGES_TOOLTIP" = "Tap here to make this message disappear after it is viewed.";
/* Toast alert text shown when tapping on a view-once message that you have sent. */
"VIEW_ONCE_OUTGOING_TOAST" = "Outgoing view-once media files are automatically removed after they are sent.";
/* Indicates how to cancel a voice message. */
"VOICE_MESSAGE_CANCEL_INSTRUCTIONS" = "Slide to Cancel";

View File

@ -1578,12 +1578,6 @@
/* Indicator that separates read from unread messages. */
"MESSAGES_VIEW_UNREAD_INDICATOR" = "Nouveaux messages";
/* Messages that indicates that there are more unseen messages. */
"MESSAGES_VIEW_UNREAD_INDICATOR_HAS_MORE_UNSEEN_MESSAGES" = "Il y a dautres messages non lus";
/* Messages that indicates that there are more unseen messages including safety number changes. */
"MESSAGES_VIEW_UNREAD_INDICATOR_HAS_MORE_UNSEEN_MESSAGES_AND_SAFETY_NUMBER_CHANGES" = "Il y a dautres messages non lus (dont des changements de numéro de sécurité)";
/* info message text in conversation view */
"MISSED_CALL" = "Appel manqué";
@ -1888,22 +1882,22 @@
"PER_MESSAGE_EXPIRATION_INVALID_CONTENT" = "Erreur de traitement du message entrant";
/* inbox cell and notification text for an already viewed view-once media message. */
"PER_MESSAGE_EXPIRATION_NOT_VIEWABLE" = "Message multimédia";
"PER_MESSAGE_EXPIRATION_NOT_VIEWABLE" = "View-once media";
/* Label for outgoing view-once messages. */
"PER_MESSAGE_EXPIRATION_OUTGOING_MESSAGE" = "Médias";
/* inbox cell and notification text for a view-once photo. */
"PER_MESSAGE_EXPIRATION_PHOTO_PREVIEW" = "Photo éphémère";
"PER_MESSAGE_EXPIRATION_PHOTO_PREVIEW" = "View-once photo";
/* inbox cell and notification text for a view-once video. */
"PER_MESSAGE_EXPIRATION_VIDEO_PREVIEW" = "Vidéos éphémères";
"PER_MESSAGE_EXPIRATION_VIDEO_PREVIEW" = "View-once video";
/* Label for view-once messages indicating that user can tap to view the message's contents. */
"PER_MESSAGE_EXPIRATION_VIEW_PHOTO" = "Photo";
"PER_MESSAGE_EXPIRATION_VIEW_PHOTO" = "Afficher la photo";
/* Label for view-once messages indicating that user can tap to view the message's contents. */
"PER_MESSAGE_EXPIRATION_VIEW_VIDEO" = "Vio";
"PER_MESSAGE_EXPIRATION_VIEW_VIDEO" = "View Video";
/* Label for view-once messages indicating that the local user has viewed the message's contents. */
"PER_MESSAGE_EXPIRATION_VIEWED" = "Vu";
@ -3054,9 +3048,15 @@
/* Label for button or row which allows users to verify the safety numbers of multiple users. */
"VERIFY_PRIVACY_MULTIPLE" = "Examiner les numéros de sécurité";
/* Toast alert text shown when tapping on a view-once message that has already been viewed. */
"VIEW_ONCE_ALREADY_VIEWED_TOAST" = "You already viewed this message.";
/* Tooltip highlighting the view once messages button. */
"VIEW_ONCE_MESSAGES_TOOLTIP" = "Touchez ici pour que ce message disparaisse après quil a été vu.";
/* Toast alert text shown when tapping on a view-once message that you have sent. */
"VIEW_ONCE_OUTGOING_TOAST" = "Outgoing view-once media files are automatically removed after they are sent.";
/* Indicates how to cancel a voice message. */
"VOICE_MESSAGE_CANCEL_INSTRUCTIONS" = "Faire glisser pour annuler";

View File

@ -1578,12 +1578,6 @@
/* Indicator that separates read from unread messages. */
"MESSAGES_VIEW_UNREAD_INDICATOR" = "Novas mensaxes";
/* Messages that indicates that there are more unseen messages. */
"MESSAGES_VIEW_UNREAD_INDICATOR_HAS_MORE_UNSEEN_MESSAGES" = "There are more unread messages.";
/* Messages that indicates that there are more unseen messages including safety number changes. */
"MESSAGES_VIEW_UNREAD_INDICATOR_HAS_MORE_UNSEEN_MESSAGES_AND_SAFETY_NUMBER_CHANGES" = "There are more unread messages (including safety number changes).";
/* info message text in conversation view */
"MISSED_CALL" = "Chamada perdida";
@ -1888,22 +1882,22 @@
"PER_MESSAGE_EXPIRATION_INVALID_CONTENT" = "Erro ao xestionar a mensaxe recibida";
/* inbox cell and notification text for an already viewed view-once media message. */
"PER_MESSAGE_EXPIRATION_NOT_VIEWABLE" = "Media Message";
"PER_MESSAGE_EXPIRATION_NOT_VIEWABLE" = "View-once media";
/* Label for outgoing view-once messages. */
"PER_MESSAGE_EXPIRATION_OUTGOING_MESSAGE" = "Ficheiros multimedia";
/* inbox cell and notification text for a view-once photo. */
"PER_MESSAGE_EXPIRATION_PHOTO_PREVIEW" = "Disappearing Photo";
"PER_MESSAGE_EXPIRATION_PHOTO_PREVIEW" = "View-once photo";
/* inbox cell and notification text for a view-once video. */
"PER_MESSAGE_EXPIRATION_VIDEO_PREVIEW" = "Disappearing Video";
"PER_MESSAGE_EXPIRATION_VIDEO_PREVIEW" = "View-once video";
/* Label for view-once messages indicating that user can tap to view the message's contents. */
"PER_MESSAGE_EXPIRATION_VIEW_PHOTO" = "Fotografía";
"PER_MESSAGE_EXPIRATION_VIEW_PHOTO" = "Ver fotografía";
/* Label for view-once messages indicating that user can tap to view the message's contents. */
"PER_MESSAGE_EXPIRATION_VIEW_VIDEO" = "Vídeo";
"PER_MESSAGE_EXPIRATION_VIEW_VIDEO" = "View Video";
/* Label for view-once messages indicating that the local user has viewed the message's contents. */
"PER_MESSAGE_EXPIRATION_VIEWED" = "Vista";
@ -3054,9 +3048,15 @@
/* Label for button or row which allows users to verify the safety numbers of multiple users. */
"VERIFY_PRIVACY_MULTIPLE" = "Revisar número de seguranza";
/* Toast alert text shown when tapping on a view-once message that has already been viewed. */
"VIEW_ONCE_ALREADY_VIEWED_TOAST" = "You already viewed this message.";
/* Tooltip highlighting the view once messages button. */
"VIEW_ONCE_MESSAGES_TOOLTIP" = "Tap here to make this message disappear after it is viewed.";
/* Toast alert text shown when tapping on a view-once message that you have sent. */
"VIEW_ONCE_OUTGOING_TOAST" = "Outgoing view-once media files are automatically removed after they are sent.";
/* Indicates how to cancel a voice message. */
"VOICE_MESSAGE_CANCEL_INSTRUCTIONS" = "Pasa o dedo para cancelar";

View File

@ -1578,12 +1578,6 @@
/* Indicator that separates read from unread messages. */
"MESSAGES_VIEW_UNREAD_INDICATOR" = "הודעות חדשות";
/* Messages that indicates that there are more unseen messages. */
"MESSAGES_VIEW_UNREAD_INDICATOR_HAS_MORE_UNSEEN_MESSAGES" = "יש עוד הודעות שלא נקראו.";
/* Messages that indicates that there are more unseen messages including safety number changes. */
"MESSAGES_VIEW_UNREAD_INDICATOR_HAS_MORE_UNSEEN_MESSAGES_AND_SAFETY_NUMBER_CHANGES" = "יש עוד הודעות שלא נקראו (כולל שינויי מספר ביטחון).";
/* info message text in conversation view */
"MISSED_CALL" = "שיחה שלא נענתה";
@ -1888,22 +1882,22 @@
"PER_MESSAGE_EXPIRATION_INVALID_CONTENT" = "שגיאה בטיפול בהודעה נכנסת";
/* inbox cell and notification text for an already viewed view-once media message. */
"PER_MESSAGE_EXPIRATION_NOT_VIEWABLE" = "הודעת מדיה";
"PER_MESSAGE_EXPIRATION_NOT_VIEWABLE" = "View-once media";
/* Label for outgoing view-once messages. */
"PER_MESSAGE_EXPIRATION_OUTGOING_MESSAGE" = "מדיה";
/* inbox cell and notification text for a view-once photo. */
"PER_MESSAGE_EXPIRATION_PHOTO_PREVIEW" = "תצלום נעלם";
"PER_MESSAGE_EXPIRATION_PHOTO_PREVIEW" = "View-once photo";
/* inbox cell and notification text for a view-once video. */
"PER_MESSAGE_EXPIRATION_VIDEO_PREVIEW" = "סרטון נעלם";
"PER_MESSAGE_EXPIRATION_VIDEO_PREVIEW" = "View-once video";
/* Label for view-once messages indicating that user can tap to view the message's contents. */
"PER_MESSAGE_EXPIRATION_VIEW_PHOTO" = "תצלום";
"PER_MESSAGE_EXPIRATION_VIEW_PHOTO" = "הצג תצלום";
/* Label for view-once messages indicating that user can tap to view the message's contents. */
"PER_MESSAGE_EXPIRATION_VIEW_VIDEO" = "סרטון";
"PER_MESSAGE_EXPIRATION_VIEW_VIDEO" = "הצג סרטון";
/* Label for view-once messages indicating that the local user has viewed the message's contents. */
"PER_MESSAGE_EXPIRATION_VIEWED" = "הוצג";
@ -3054,9 +3048,15 @@
/* Label for button or row which allows users to verify the safety numbers of multiple users. */
"VERIFY_PRIVACY_MULTIPLE" = "סקור מספרי ביטחון";
/* Toast alert text shown when tapping on a view-once message that has already been viewed. */
"VIEW_ONCE_ALREADY_VIEWED_TOAST" = "You already viewed this message.";
/* Tooltip highlighting the view once messages button. */
"VIEW_ONCE_MESSAGES_TOOLTIP" = "הקש כאן כדי להעלים הודעה זו לאחר שהיא תיקרא.";
/* Toast alert text shown when tapping on a view-once message that you have sent. */
"VIEW_ONCE_OUTGOING_TOAST" = "Outgoing view-once media files are automatically removed after they are sent.";
/* Indicates how to cancel a voice message. */
"VOICE_MESSAGE_CANCEL_INSTRUCTIONS" = "החלק כדי לבטל";

View File

@ -1578,12 +1578,6 @@
/* Indicator that separates read from unread messages. */
"MESSAGES_VIEW_UNREAD_INDICATOR" = "नए मेसेज";
/* Messages that indicates that there are more unseen messages. */
"MESSAGES_VIEW_UNREAD_INDICATOR_HAS_MORE_UNSEEN_MESSAGES" = "कुछ अपठित मेसेज बचे हैं। ";
/* Messages that indicates that there are more unseen messages including safety number changes. */
"MESSAGES_VIEW_UNREAD_INDICATOR_HAS_MORE_UNSEEN_MESSAGES_AND_SAFETY_NUMBER_CHANGES" = "कुछ अपठित मेसेज बचे हैं (जिसमें से कुछ सुरक्षा नंबर के बदलाव भी हैं)। ";
/* info message text in conversation view */
"MISSED_CALL" = "मिस कॉल";
@ -1888,22 +1882,22 @@
"PER_MESSAGE_EXPIRATION_INVALID_CONTENT" = "आने वाले मेसेज को संभालने में त्रुटि";
/* inbox cell and notification text for an already viewed view-once media message. */
"PER_MESSAGE_EXPIRATION_NOT_VIEWABLE" = "मीडिया मेसेज";
"PER_MESSAGE_EXPIRATION_NOT_VIEWABLE" = "View-once media";
/* Label for outgoing view-once messages. */
"PER_MESSAGE_EXPIRATION_OUTGOING_MESSAGE" = "मीडिया";
/* inbox cell and notification text for a view-once photo. */
"PER_MESSAGE_EXPIRATION_PHOTO_PREVIEW" = "गायब होने वाली तस्वीरें";
"PER_MESSAGE_EXPIRATION_PHOTO_PREVIEW" = "View-once photo";
/* inbox cell and notification text for a view-once video. */
"PER_MESSAGE_EXPIRATION_VIDEO_PREVIEW" = "गायब होने वाली वीडियो";
"PER_MESSAGE_EXPIRATION_VIDEO_PREVIEW" = "View-once video";
/* Label for view-once messages indicating that user can tap to view the message's contents. */
"PER_MESSAGE_EXPIRATION_VIEW_PHOTO" = "फ़ोटो";
"PER_MESSAGE_EXPIRATION_VIEW_PHOTO" = "View Photo";
/* Label for view-once messages indicating that user can tap to view the message's contents. */
"PER_MESSAGE_EXPIRATION_VIEW_VIDEO" = "वीडियो ";
"PER_MESSAGE_EXPIRATION_VIEW_VIDEO" = "View Video";
/* Label for view-once messages indicating that the local user has viewed the message's contents. */
"PER_MESSAGE_EXPIRATION_VIEWED" = "देखा गया";
@ -3054,9 +3048,15 @@
/* Label for button or row which allows users to verify the safety numbers of multiple users. */
"VERIFY_PRIVACY_MULTIPLE" = "सुरक्षा नंबर जांचे";
/* Toast alert text shown when tapping on a view-once message that has already been viewed. */
"VIEW_ONCE_ALREADY_VIEWED_TOAST" = "You already viewed this message.";
/* Tooltip highlighting the view once messages button. */
"VIEW_ONCE_MESSAGES_TOOLTIP" = "Tap here to make this message disappear after it is viewed.";
/* Toast alert text shown when tapping on a view-once message that you have sent. */
"VIEW_ONCE_OUTGOING_TOAST" = "Outgoing view-once media files are automatically removed after they are sent.";
/* Indicates how to cancel a voice message. */
"VOICE_MESSAGE_CANCEL_INSTRUCTIONS" = "रद्द करने के लिए स्लाइड करें";

View File

@ -1578,12 +1578,6 @@
/* Indicator that separates read from unread messages. */
"MESSAGES_VIEW_UNREAD_INDICATOR" = "Nove poruke";
/* Messages that indicates that there are more unseen messages. */
"MESSAGES_VIEW_UNREAD_INDICATOR_HAS_MORE_UNSEEN_MESSAGES" = "There are more unread messages.";
/* Messages that indicates that there are more unseen messages including safety number changes. */
"MESSAGES_VIEW_UNREAD_INDICATOR_HAS_MORE_UNSEEN_MESSAGES_AND_SAFETY_NUMBER_CHANGES" = "There are more unread messages (including safety number changes).";
/* info message text in conversation view */
"MISSED_CALL" = "Propušten poziv";
@ -1888,22 +1882,22 @@
"PER_MESSAGE_EXPIRATION_INVALID_CONTENT" = "Pogreška prilikom upravljanja ulaznom porukom";
/* inbox cell and notification text for an already viewed view-once media message. */
"PER_MESSAGE_EXPIRATION_NOT_VIEWABLE" = "Media Message";
"PER_MESSAGE_EXPIRATION_NOT_VIEWABLE" = "View-once media";
/* Label for outgoing view-once messages. */
"PER_MESSAGE_EXPIRATION_OUTGOING_MESSAGE" = "Medij";
/* inbox cell and notification text for a view-once photo. */
"PER_MESSAGE_EXPIRATION_PHOTO_PREVIEW" = "Disappearing Photo";
"PER_MESSAGE_EXPIRATION_PHOTO_PREVIEW" = "View-once photo";
/* inbox cell and notification text for a view-once video. */
"PER_MESSAGE_EXPIRATION_VIDEO_PREVIEW" = "Disappearing Video";
"PER_MESSAGE_EXPIRATION_VIDEO_PREVIEW" = "View-once video";
/* Label for view-once messages indicating that user can tap to view the message's contents. */
"PER_MESSAGE_EXPIRATION_VIEW_PHOTO" = "Fotografija";
"PER_MESSAGE_EXPIRATION_VIEW_PHOTO" = "Pogledaj fotografiju";
/* Label for view-once messages indicating that user can tap to view the message's contents. */
"PER_MESSAGE_EXPIRATION_VIEW_VIDEO" = "Video";
"PER_MESSAGE_EXPIRATION_VIEW_VIDEO" = "View Video";
/* Label for view-once messages indicating that the local user has viewed the message's contents. */
"PER_MESSAGE_EXPIRATION_VIEWED" = "Pregledano";
@ -3054,9 +3048,15 @@
/* Label for button or row which allows users to verify the safety numbers of multiple users. */
"VERIFY_PRIVACY_MULTIPLE" = "Pregledajte sigurnosne brojeve";
/* Toast alert text shown when tapping on a view-once message that has already been viewed. */
"VIEW_ONCE_ALREADY_VIEWED_TOAST" = "You already viewed this message.";
/* Tooltip highlighting the view once messages button. */
"VIEW_ONCE_MESSAGES_TOOLTIP" = "Tap here to make this message disappear after it is viewed.";
/* Toast alert text shown when tapping on a view-once message that you have sent. */
"VIEW_ONCE_OUTGOING_TOAST" = "Outgoing view-once media files are automatically removed after they are sent.";
/* Indicates how to cancel a voice message. */
"VOICE_MESSAGE_CANCEL_INSTRUCTIONS" = "Povuci za otkazivanje";

View File

@ -1578,12 +1578,6 @@
/* Indicator that separates read from unread messages. */
"MESSAGES_VIEW_UNREAD_INDICATOR" = "Új üzenetek";
/* Messages that indicates that there are more unseen messages. */
"MESSAGES_VIEW_UNREAD_INDICATOR_HAS_MORE_UNSEEN_MESSAGES" = "További olvasatlan üzenetek elérhetőek.";
/* Messages that indicates that there are more unseen messages including safety number changes. */
"MESSAGES_VIEW_UNREAD_INDICATOR_HAS_MORE_UNSEEN_MESSAGES_AND_SAFETY_NUMBER_CHANGES" = "További olvasatlan üzenetek elérhetőek (biztonsági szám változásokat is beleértve).";
/* info message text in conversation view */
"MISSED_CALL" = "Nem fogadott hívás";
@ -1888,22 +1882,22 @@
"PER_MESSAGE_EXPIRATION_INVALID_CONTENT" = "Nem sikerült kezelni a bejövő üzenetet.";
/* inbox cell and notification text for an already viewed view-once media message. */
"PER_MESSAGE_EXPIRATION_NOT_VIEWABLE" = "Médiaüzenet";
"PER_MESSAGE_EXPIRATION_NOT_VIEWABLE" = "Egyszer megjelenő médiafájl";
/* Label for outgoing view-once messages. */
"PER_MESSAGE_EXPIRATION_OUTGOING_MESSAGE" = "Média";
/* inbox cell and notification text for a view-once photo. */
"PER_MESSAGE_EXPIRATION_PHOTO_PREVIEW" = "Eltűnő fotó";
"PER_MESSAGE_EXPIRATION_PHOTO_PREVIEW" = "Egyszer megjelenő fotó";
/* inbox cell and notification text for a view-once video. */
"PER_MESSAGE_EXPIRATION_VIDEO_PREVIEW" = "Eltűnő videó";
"PER_MESSAGE_EXPIRATION_VIDEO_PREVIEW" = "Egyszer megjelenő videó";
/* Label for view-once messages indicating that user can tap to view the message's contents. */
"PER_MESSAGE_EXPIRATION_VIEW_PHOTO" = "Kép";
"PER_MESSAGE_EXPIRATION_VIEW_PHOTO" = "Fotó megtekintése";
/* Label for view-once messages indicating that user can tap to view the message's contents. */
"PER_MESSAGE_EXPIRATION_VIEW_VIDEO" = "Videó";
"PER_MESSAGE_EXPIRATION_VIEW_VIDEO" = "Videó megtekintése";
/* Label for view-once messages indicating that the local user has viewed the message's contents. */
"PER_MESSAGE_EXPIRATION_VIEWED" = "Megtekintve";
@ -3054,9 +3048,15 @@
/* Label for button or row which allows users to verify the safety numbers of multiple users. */
"VERIFY_PRIVACY_MULTIPLE" = "Biztonsági számok áttekintése";
/* Toast alert text shown when tapping on a view-once message that has already been viewed. */
"VIEW_ONCE_ALREADY_VIEWED_TOAST" = "You already viewed this message.";
/* Tooltip highlighting the view once messages button. */
"VIEW_ONCE_MESSAGES_TOOLTIP" = "Koppints ide, hogy az üzenet olvasás után azonnal törlődő típusú legyen.";
/* Toast alert text shown when tapping on a view-once message that you have sent. */
"VIEW_ONCE_OUTGOING_TOAST" = "Outgoing view-once media files are automatically removed after they are sent.";
/* Indicates how to cancel a voice message. */
"VOICE_MESSAGE_CANCEL_INSTRUCTIONS" = "Elvetés csúsztatással";

View File

@ -1578,12 +1578,6 @@
/* Indicator that separates read from unread messages. */
"MESSAGES_VIEW_UNREAD_INDICATOR" = "Pesan baru";
/* Messages that indicates that there are more unseen messages. */
"MESSAGES_VIEW_UNREAD_INDICATOR_HAS_MORE_UNSEEN_MESSAGES" = "Masih ada pesan yang belum terbaca.";
/* Messages that indicates that there are more unseen messages including safety number changes. */
"MESSAGES_VIEW_UNREAD_INDICATOR_HAS_MORE_UNSEEN_MESSAGES_AND_SAFETY_NUMBER_CHANGES" = "Masih ada pesan yang belum terbaca (termasuk penggantian nomor keamanan).";
/* info message text in conversation view */
"MISSED_CALL" = "Panggilan tidak terjawab";
@ -1888,22 +1882,22 @@
"PER_MESSAGE_EXPIRATION_INVALID_CONTENT" = "Gagal dalam menangani pesan masuk";
/* inbox cell and notification text for an already viewed view-once media message. */
"PER_MESSAGE_EXPIRATION_NOT_VIEWABLE" = "Pesan Media";
"PER_MESSAGE_EXPIRATION_NOT_VIEWABLE" = "View-once media";
/* Label for outgoing view-once messages. */
"PER_MESSAGE_EXPIRATION_OUTGOING_MESSAGE" = "Media";
/* inbox cell and notification text for a view-once photo. */
"PER_MESSAGE_EXPIRATION_PHOTO_PREVIEW" = "Foto akan Menghilang";
"PER_MESSAGE_EXPIRATION_PHOTO_PREVIEW" = "View-once photo";
/* inbox cell and notification text for a view-once video. */
"PER_MESSAGE_EXPIRATION_VIDEO_PREVIEW" = "Video akan Menghilang";
"PER_MESSAGE_EXPIRATION_VIDEO_PREVIEW" = "View-once video";
/* Label for view-once messages indicating that user can tap to view the message's contents. */
"PER_MESSAGE_EXPIRATION_VIEW_PHOTO" = "Foto";
"PER_MESSAGE_EXPIRATION_VIEW_PHOTO" = "Lihat Foto";
/* Label for view-once messages indicating that user can tap to view the message's contents. */
"PER_MESSAGE_EXPIRATION_VIEW_VIDEO" = "Video";
"PER_MESSAGE_EXPIRATION_VIEW_VIDEO" = "View Video";
/* Label for view-once messages indicating that the local user has viewed the message's contents. */
"PER_MESSAGE_EXPIRATION_VIEWED" = "Dilihat";
@ -3054,8 +3048,14 @@
/* Label for button or row which allows users to verify the safety numbers of multiple users. */
"VERIFY_PRIVACY_MULTIPLE" = "Tinjau nomer keamanan";
/* Toast alert text shown when tapping on a view-once message that has already been viewed. */
"VIEW_ONCE_ALREADY_VIEWED_TOAST" = "You already viewed this message.";
/* Tooltip highlighting the view once messages button. */
"VIEW_ONCE_MESSAGES_TOOLTIP" = "Tap here to make this message disappear after it is viewed.";
"VIEW_ONCE_MESSAGES_TOOLTIP" = "Ketuk di sini untuk membuat pesan ini menghikang setelah diihat.";
/* Toast alert text shown when tapping on a view-once message that you have sent. */
"VIEW_ONCE_OUTGOING_TOAST" = "Outgoing view-once media files are automatically removed after they are sent.";
/* Indicates how to cancel a voice message. */
"VOICE_MESSAGE_CANCEL_INSTRUCTIONS" = "Geser untuk membatalkan";

View File

@ -1578,12 +1578,6 @@
/* Indicator that separates read from unread messages. */
"MESSAGES_VIEW_UNREAD_INDICATOR" = "Nuovi messaggi";
/* Messages that indicates that there are more unseen messages. */
"MESSAGES_VIEW_UNREAD_INDICATOR_HAS_MORE_UNSEEN_MESSAGES" = "Ci sono altri messaggi non letti.";
/* Messages that indicates that there are more unseen messages including safety number changes. */
"MESSAGES_VIEW_UNREAD_INDICATOR_HAS_MORE_UNSEEN_MESSAGES_AND_SAFETY_NUMBER_CHANGES" = "Ci sono ulteriori messaggi non letti (incluso cambio del codice di sicurezza).";
/* info message text in conversation view */
"MISSED_CALL" = "Chiamata persa";
@ -1888,22 +1882,22 @@
"PER_MESSAGE_EXPIRATION_INVALID_CONTENT" = "Errore messaggio in arrivo";
/* inbox cell and notification text for an already viewed view-once media message. */
"PER_MESSAGE_EXPIRATION_NOT_VIEWABLE" = "Messaggio multimediale";
"PER_MESSAGE_EXPIRATION_NOT_VIEWABLE" = "Media visualizzabile una volta";
/* Label for outgoing view-once messages. */
"PER_MESSAGE_EXPIRATION_OUTGOING_MESSAGE" = "Media";
/* inbox cell and notification text for a view-once photo. */
"PER_MESSAGE_EXPIRATION_PHOTO_PREVIEW" = "Foto a scomparsa";
"PER_MESSAGE_EXPIRATION_PHOTO_PREVIEW" = "Foto visualizzabile una volta";
/* inbox cell and notification text for a view-once video. */
"PER_MESSAGE_EXPIRATION_VIDEO_PREVIEW" = "Video a scomparsa";
"PER_MESSAGE_EXPIRATION_VIDEO_PREVIEW" = "Video visualizzabile una volta";
/* Label for view-once messages indicating that user can tap to view the message's contents. */
"PER_MESSAGE_EXPIRATION_VIEW_PHOTO" = "Foto";
"PER_MESSAGE_EXPIRATION_VIEW_PHOTO" = "Visualizza foto";
/* Label for view-once messages indicating that user can tap to view the message's contents. */
"PER_MESSAGE_EXPIRATION_VIEW_VIDEO" = "Video";
"PER_MESSAGE_EXPIRATION_VIEW_VIDEO" = "Visualizza video";
/* Label for view-once messages indicating that the local user has viewed the message's contents. */
"PER_MESSAGE_EXPIRATION_VIEWED" = "Visualizzato";
@ -3054,9 +3048,15 @@
/* Label for button or row which allows users to verify the safety numbers of multiple users. */
"VERIFY_PRIVACY_MULTIPLE" = "Esamina codici di sicurezza";
/* Toast alert text shown when tapping on a view-once message that has already been viewed. */
"VIEW_ONCE_ALREADY_VIEWED_TOAST" = "You already viewed this message.";
/* Tooltip highlighting the view once messages button. */
"VIEW_ONCE_MESSAGES_TOOLTIP" = "Clicca qui per far scomparire questo messaggio dopo che è stato visualizzato.";
/* Toast alert text shown when tapping on a view-once message that you have sent. */
"VIEW_ONCE_OUTGOING_TOAST" = "Outgoing view-once media files are automatically removed after they are sent.";
/* Indicates how to cancel a voice message. */
"VOICE_MESSAGE_CANCEL_INSTRUCTIONS" = "Scorri per cancellare";

View File

@ -1578,12 +1578,6 @@
/* Indicator that separates read from unread messages. */
"MESSAGES_VIEW_UNREAD_INDICATOR" = "新しいメッセージ";
/* Messages that indicates that there are more unseen messages. */
"MESSAGES_VIEW_UNREAD_INDICATOR_HAS_MORE_UNSEEN_MESSAGES" = "未読メッセージがさらにあります。";
/* Messages that indicates that there are more unseen messages including safety number changes. */
"MESSAGES_VIEW_UNREAD_INDICATOR_HAS_MORE_UNSEEN_MESSAGES_AND_SAFETY_NUMBER_CHANGES" = "未読メッセージ(安全番号の変更を含む)がさらにあります。";
/* info message text in conversation view */
"MISSED_CALL" = "不在着信";
@ -1888,22 +1882,22 @@
"PER_MESSAGE_EXPIRATION_INVALID_CONTENT" = "受信中にエラー";
/* inbox cell and notification text for an already viewed view-once media message. */
"PER_MESSAGE_EXPIRATION_NOT_VIEWABLE" = "メディアメッセージ";
"PER_MESSAGE_EXPIRATION_NOT_VIEWABLE" = "View-once media";
/* Label for outgoing view-once messages. */
"PER_MESSAGE_EXPIRATION_OUTGOING_MESSAGE" = "メディア";
/* inbox cell and notification text for a view-once photo. */
"PER_MESSAGE_EXPIRATION_PHOTO_PREVIEW" = "写真が消去されます";
"PER_MESSAGE_EXPIRATION_PHOTO_PREVIEW" = "View-once photo";
/* inbox cell and notification text for a view-once video. */
"PER_MESSAGE_EXPIRATION_VIDEO_PREVIEW" = "消える動画";
"PER_MESSAGE_EXPIRATION_VIDEO_PREVIEW" = "View-once video";
/* Label for view-once messages indicating that user can tap to view the message's contents. */
"PER_MESSAGE_EXPIRATION_VIEW_PHOTO" = "写真";
"PER_MESSAGE_EXPIRATION_VIEW_PHOTO" = "写真を見る";
/* Label for view-once messages indicating that user can tap to view the message's contents. */
"PER_MESSAGE_EXPIRATION_VIEW_VIDEO" = "動画";
"PER_MESSAGE_EXPIRATION_VIEW_VIDEO" = "View Video";
/* Label for view-once messages indicating that the local user has viewed the message's contents. */
"PER_MESSAGE_EXPIRATION_VIEWED" = "閲覧済み";
@ -3054,9 +3048,15 @@
/* Label for button or row which allows users to verify the safety numbers of multiple users. */
"VERIFY_PRIVACY_MULTIPLE" = "安全番号を確認する";
/* Toast alert text shown when tapping on a view-once message that has already been viewed. */
"VIEW_ONCE_ALREADY_VIEWED_TOAST" = "You already viewed this message.";
/* Tooltip highlighting the view once messages button. */
"VIEW_ONCE_MESSAGES_TOOLTIP" = "ここをタップして、このメッセージを閲覧後に消去します。";
/* Toast alert text shown when tapping on a view-once message that you have sent. */
"VIEW_ONCE_OUTGOING_TOAST" = "Outgoing view-once media files are automatically removed after they are sent.";
/* Indicates how to cancel a voice message. */
"VOICE_MESSAGE_CANCEL_INSTRUCTIONS" = "スライドしてキャンセル";

View File

@ -1578,12 +1578,6 @@
/* Indicator that separates read from unread messages. */
"MESSAGES_VIEW_UNREAD_INDICATOR" = "សារថ្មី";
/* Messages that indicates that there are more unseen messages. */
"MESSAGES_VIEW_UNREAD_INDICATOR_HAS_MORE_UNSEEN_MESSAGES" = "មានសារមិនទាន់បានអានច្រើន។";
/* Messages that indicates that there are more unseen messages including safety number changes. */
"MESSAGES_VIEW_UNREAD_INDICATOR_HAS_MORE_UNSEEN_MESSAGES_AND_SAFETY_NUMBER_CHANGES" = "មានសារមិនទាន់អានច្រើនទៀត ( រួមមានការផ្លាស់ប្តូរលេខសុវត្ថិភាព ) ។";
/* info message text in conversation view */
"MISSED_CALL" = "មិនបានទទួលការហៅចូល";
@ -1888,22 +1882,22 @@
"PER_MESSAGE_EXPIRATION_INVALID_CONTENT" = "បញ្ហាទទួលសារផ្ញើចូល";
/* inbox cell and notification text for an already viewed view-once media message. */
"PER_MESSAGE_EXPIRATION_NOT_VIEWABLE" = "សារមេឌា";
"PER_MESSAGE_EXPIRATION_NOT_VIEWABLE" = "View-once media";
/* Label for outgoing view-once messages. */
"PER_MESSAGE_EXPIRATION_OUTGOING_MESSAGE" = "ព័ត៌មាន";
/* inbox cell and notification text for a view-once photo. */
"PER_MESSAGE_EXPIRATION_PHOTO_PREVIEW" = "រូបភាពបាត់ទៅវិញ";
"PER_MESSAGE_EXPIRATION_PHOTO_PREVIEW" = "View-once photo";
/* inbox cell and notification text for a view-once video. */
"PER_MESSAGE_EXPIRATION_VIDEO_PREVIEW" = "វីដេអូបាត់ទៅវិញ";
"PER_MESSAGE_EXPIRATION_VIDEO_PREVIEW" = "View-once video";
/* Label for view-once messages indicating that user can tap to view the message's contents. */
"PER_MESSAGE_EXPIRATION_VIEW_PHOTO" = "រូបភាព";
"PER_MESSAGE_EXPIRATION_VIEW_PHOTO" = "បើកមើលរូបភាព";
/* Label for view-once messages indicating that user can tap to view the message's contents. */
"PER_MESSAGE_EXPIRATION_VIEW_VIDEO" = "វីដេអូ";
"PER_MESSAGE_EXPIRATION_VIEW_VIDEO" = "View Video";
/* Label for view-once messages indicating that the local user has viewed the message's contents. */
"PER_MESSAGE_EXPIRATION_VIEWED" = "បានបើកមើល";
@ -3054,9 +3048,15 @@
/* Label for button or row which allows users to verify the safety numbers of multiple users. */
"VERIFY_PRIVACY_MULTIPLE" = "ពិនិត្យលេខសុវត្ថិភាព";
/* Toast alert text shown when tapping on a view-once message that has already been viewed. */
"VIEW_ONCE_ALREADY_VIEWED_TOAST" = "You already viewed this message.";
/* Tooltip highlighting the view once messages button. */
"VIEW_ONCE_MESSAGES_TOOLTIP" = "Tap here to make this message disappear after it is viewed.";
/* Toast alert text shown when tapping on a view-once message that you have sent. */
"VIEW_ONCE_OUTGOING_TOAST" = "Outgoing view-once media files are automatically removed after they are sent.";
/* Indicates how to cancel a voice message. */
"VOICE_MESSAGE_CANCEL_INSTRUCTIONS" = "អូសដើម្បីបោះបង់";

View File

@ -1578,12 +1578,6 @@
/* Indicator that separates read from unread messages. */
"MESSAGES_VIEW_UNREAD_INDICATOR" = "새 메시지";
/* Messages that indicates that there are more unseen messages. */
"MESSAGES_VIEW_UNREAD_INDICATOR_HAS_MORE_UNSEEN_MESSAGES" = "There are more unread messages.";
/* Messages that indicates that there are more unseen messages including safety number changes. */
"MESSAGES_VIEW_UNREAD_INDICATOR_HAS_MORE_UNSEEN_MESSAGES_AND_SAFETY_NUMBER_CHANGES" = "There are more unread messages (including safety number changes).";
/* info message text in conversation view */
"MISSED_CALL" = "부재중 전화";
@ -1888,22 +1882,22 @@
"PER_MESSAGE_EXPIRATION_INVALID_CONTENT" = "받은 메시지 처리 중 오류 발생";
/* inbox cell and notification text for an already viewed view-once media message. */
"PER_MESSAGE_EXPIRATION_NOT_VIEWABLE" = "Media Message";
"PER_MESSAGE_EXPIRATION_NOT_VIEWABLE" = "View-once media";
/* Label for outgoing view-once messages. */
"PER_MESSAGE_EXPIRATION_OUTGOING_MESSAGE" = "미디어";
/* inbox cell and notification text for a view-once photo. */
"PER_MESSAGE_EXPIRATION_PHOTO_PREVIEW" = "Disappearing Photo";
"PER_MESSAGE_EXPIRATION_PHOTO_PREVIEW" = "View-once photo";
/* inbox cell and notification text for a view-once video. */
"PER_MESSAGE_EXPIRATION_VIDEO_PREVIEW" = "Disappearing Video";
"PER_MESSAGE_EXPIRATION_VIDEO_PREVIEW" = "View-once video";
/* Label for view-once messages indicating that user can tap to view the message's contents. */
"PER_MESSAGE_EXPIRATION_VIEW_PHOTO" = "사진";
"PER_MESSAGE_EXPIRATION_VIEW_PHOTO" = "View Photo";
/* Label for view-once messages indicating that user can tap to view the message's contents. */
"PER_MESSAGE_EXPIRATION_VIEW_VIDEO" = "비디오";
"PER_MESSAGE_EXPIRATION_VIEW_VIDEO" = "View Video";
/* Label for view-once messages indicating that the local user has viewed the message's contents. */
"PER_MESSAGE_EXPIRATION_VIEWED" = "Viewed";
@ -3054,9 +3048,15 @@
/* Label for button or row which allows users to verify the safety numbers of multiple users. */
"VERIFY_PRIVACY_MULTIPLE" = "Review Safety Numbers";
/* Toast alert text shown when tapping on a view-once message that has already been viewed. */
"VIEW_ONCE_ALREADY_VIEWED_TOAST" = "You already viewed this message.";
/* Tooltip highlighting the view once messages button. */
"VIEW_ONCE_MESSAGES_TOOLTIP" = "Tap here to make this message disappear after it is viewed.";
/* Toast alert text shown when tapping on a view-once message that you have sent. */
"VIEW_ONCE_OUTGOING_TOAST" = "Outgoing view-once media files are automatically removed after they are sent.";
/* Indicates how to cancel a voice message. */
"VOICE_MESSAGE_CANCEL_INSTRUCTIONS" = "쓸어넘겨 취소";

View File

@ -1578,12 +1578,6 @@
/* Indicator that separates read from unread messages. */
"MESSAGES_VIEW_UNREAD_INDICATOR" = "Naujos žinutės";
/* Messages that indicates that there are more unseen messages. */
"MESSAGES_VIEW_UNREAD_INDICATOR_HAS_MORE_UNSEEN_MESSAGES" = "Yra daugiau neskaitytų žinučių.";
/* Messages that indicates that there are more unseen messages including safety number changes. */
"MESSAGES_VIEW_UNREAD_INDICATOR_HAS_MORE_UNSEEN_MESSAGES_AND_SAFETY_NUMBER_CHANGES" = "Yra daugiau neskaitytų žinučių (įskaitant saugumo numerio pasikeitimus).";
/* info message text in conversation view */
"MISSED_CALL" = "Praleistas skambutis";
@ -1888,22 +1882,22 @@
"PER_MESSAGE_EXPIRATION_INVALID_CONTENT" = "Klaida, apdorojant gaunamą žinutę";
/* inbox cell and notification text for an already viewed view-once media message. */
"PER_MESSAGE_EXPIRATION_NOT_VIEWABLE" = "Medijos žinutė";
"PER_MESSAGE_EXPIRATION_NOT_VIEWABLE" = "View-once media";
/* Label for outgoing view-once messages. */
"PER_MESSAGE_EXPIRATION_OUTGOING_MESSAGE" = "Medija";
/* inbox cell and notification text for a view-once photo. */
"PER_MESSAGE_EXPIRATION_PHOTO_PREVIEW" = "Išnykstanti nuotrauka";
"PER_MESSAGE_EXPIRATION_PHOTO_PREVIEW" = "View-once photo";
/* inbox cell and notification text for a view-once video. */
"PER_MESSAGE_EXPIRATION_VIDEO_PREVIEW" = "Išnykstantis vaizdo įrašas";
"PER_MESSAGE_EXPIRATION_VIDEO_PREVIEW" = "View-once video";
/* Label for view-once messages indicating that user can tap to view the message's contents. */
"PER_MESSAGE_EXPIRATION_VIEW_PHOTO" = "Nuotrauka";
"PER_MESSAGE_EXPIRATION_VIEW_PHOTO" = "Žiūrėti nuotrauką";
/* Label for view-once messages indicating that user can tap to view the message's contents. */
"PER_MESSAGE_EXPIRATION_VIEW_VIDEO" = "Vaizdo įrašai";
"PER_MESSAGE_EXPIRATION_VIEW_VIDEO" = "Rodyti vaizdo įrašą";
/* Label for view-once messages indicating that the local user has viewed the message's contents. */
"PER_MESSAGE_EXPIRATION_VIEWED" = "Peržiūrėta";
@ -3054,9 +3048,15 @@
/* Label for button or row which allows users to verify the safety numbers of multiple users. */
"VERIFY_PRIVACY_MULTIPLE" = "Patikrinti saugumo numerius";
/* Toast alert text shown when tapping on a view-once message that has already been viewed. */
"VIEW_ONCE_ALREADY_VIEWED_TOAST" = "You already viewed this message.";
/* Tooltip highlighting the view once messages button. */
"VIEW_ONCE_MESSAGES_TOOLTIP" = "Tap here to make this message disappear after it is viewed.";
/* Toast alert text shown when tapping on a view-once message that you have sent. */
"VIEW_ONCE_OUTGOING_TOAST" = "Outgoing view-once media files are automatically removed after they are sent.";
/* Indicates how to cancel a voice message. */
"VOICE_MESSAGE_CANCEL_INSTRUCTIONS" = "Perbraukite, norėdami atsisakyti";

View File

@ -1578,12 +1578,6 @@
/* Indicator that separates read from unread messages. */
"MESSAGES_VIEW_UNREAD_INDICATOR" = "New Messages";
/* Messages that indicates that there are more unseen messages. */
"MESSAGES_VIEW_UNREAD_INDICATOR_HAS_MORE_UNSEEN_MESSAGES" = "There are more unread messages.";
/* Messages that indicates that there are more unseen messages including safety number changes. */
"MESSAGES_VIEW_UNREAD_INDICATOR_HAS_MORE_UNSEEN_MESSAGES_AND_SAFETY_NUMBER_CHANGES" = "There are more unread messages (including safety number changes).";
/* info message text in conversation view */
"MISSED_CALL" = "Neatbildēts zvans";
@ -1888,22 +1882,22 @@
"PER_MESSAGE_EXPIRATION_INVALID_CONTENT" = "Kļūda, apstrādājot ienākošo ziņu";
/* inbox cell and notification text for an already viewed view-once media message. */
"PER_MESSAGE_EXPIRATION_NOT_VIEWABLE" = "Media Message";
"PER_MESSAGE_EXPIRATION_NOT_VIEWABLE" = "View-once media";
/* Label for outgoing view-once messages. */
"PER_MESSAGE_EXPIRATION_OUTGOING_MESSAGE" = "Multivide";
/* inbox cell and notification text for a view-once photo. */
"PER_MESSAGE_EXPIRATION_PHOTO_PREVIEW" = "Disappearing Photo";
"PER_MESSAGE_EXPIRATION_PHOTO_PREVIEW" = "View-once photo";
/* inbox cell and notification text for a view-once video. */
"PER_MESSAGE_EXPIRATION_VIDEO_PREVIEW" = "Disappearing Video";
"PER_MESSAGE_EXPIRATION_VIDEO_PREVIEW" = "View-once video";
/* Label for view-once messages indicating that user can tap to view the message's contents. */
"PER_MESSAGE_EXPIRATION_VIEW_PHOTO" = "Attēls";
"PER_MESSAGE_EXPIRATION_VIEW_PHOTO" = "Skatīt attēlu";
/* Label for view-once messages indicating that user can tap to view the message's contents. */
"PER_MESSAGE_EXPIRATION_VIEW_VIDEO" = "Video";
"PER_MESSAGE_EXPIRATION_VIEW_VIDEO" = "View Video";
/* Label for view-once messages indicating that the local user has viewed the message's contents. */
"PER_MESSAGE_EXPIRATION_VIEWED" = "Skatīts";
@ -3054,9 +3048,15 @@
/* Label for button or row which allows users to verify the safety numbers of multiple users. */
"VERIFY_PRIVACY_MULTIPLE" = "Review Safety Numbers";
/* Toast alert text shown when tapping on a view-once message that has already been viewed. */
"VIEW_ONCE_ALREADY_VIEWED_TOAST" = "You already viewed this message.";
/* Tooltip highlighting the view once messages button. */
"VIEW_ONCE_MESSAGES_TOOLTIP" = "Tap here to make this message disappear after it is viewed.";
/* Toast alert text shown when tapping on a view-once message that you have sent. */
"VIEW_ONCE_OUTGOING_TOAST" = "Outgoing view-once media files are automatically removed after they are sent.";
/* Indicates how to cancel a voice message. */
"VOICE_MESSAGE_CANCEL_INSTRUCTIONS" = "Slide to Cancel";

View File

@ -1578,12 +1578,6 @@
/* Indicator that separates read from unread messages. */
"MESSAGES_VIEW_UNREAD_INDICATOR" = "Нови пораки";
/* Messages that indicates that there are more unseen messages. */
"MESSAGES_VIEW_UNREAD_INDICATOR_HAS_MORE_UNSEEN_MESSAGES" = "Има повеќе не прочитани пораки";
/* Messages that indicates that there are more unseen messages including safety number changes. */
"MESSAGES_VIEW_UNREAD_INDICATOR_HAS_MORE_UNSEEN_MESSAGES_AND_SAFETY_NUMBER_CHANGES" = "There are more unread messages (including safety number changes).";
/* info message text in conversation view */
"MISSED_CALL" = "Пропуштен повик";
@ -1888,22 +1882,22 @@
"PER_MESSAGE_EXPIRATION_INVALID_CONTENT" = "Error handling incoming message";
/* inbox cell and notification text for an already viewed view-once media message. */
"PER_MESSAGE_EXPIRATION_NOT_VIEWABLE" = "Media Message";
"PER_MESSAGE_EXPIRATION_NOT_VIEWABLE" = "View-once media";
/* Label for outgoing view-once messages. */
"PER_MESSAGE_EXPIRATION_OUTGOING_MESSAGE" = "Медија";
/* inbox cell and notification text for a view-once photo. */
"PER_MESSAGE_EXPIRATION_PHOTO_PREVIEW" = "Исчезнувачка слика ";
"PER_MESSAGE_EXPIRATION_PHOTO_PREVIEW" = "View-once photo";
/* inbox cell and notification text for a view-once video. */
"PER_MESSAGE_EXPIRATION_VIDEO_PREVIEW" = "Disappearing Video";
"PER_MESSAGE_EXPIRATION_VIDEO_PREVIEW" = "View-once video";
/* Label for view-once messages indicating that user can tap to view the message's contents. */
"PER_MESSAGE_EXPIRATION_VIEW_PHOTO" = "Слика";
"PER_MESSAGE_EXPIRATION_VIEW_PHOTO" = "Види Слика";
/* Label for view-once messages indicating that user can tap to view the message's contents. */
"PER_MESSAGE_EXPIRATION_VIEW_VIDEO" = "Видео";
"PER_MESSAGE_EXPIRATION_VIEW_VIDEO" = "View Video";
/* Label for view-once messages indicating that the local user has viewed the message's contents. */
"PER_MESSAGE_EXPIRATION_VIEWED" = "Видено";
@ -3054,9 +3048,15 @@
/* Label for button or row which allows users to verify the safety numbers of multiple users. */
"VERIFY_PRIVACY_MULTIPLE" = "Review Safety Numbers";
/* Toast alert text shown when tapping on a view-once message that has already been viewed. */
"VIEW_ONCE_ALREADY_VIEWED_TOAST" = "You already viewed this message.";
/* Tooltip highlighting the view once messages button. */
"VIEW_ONCE_MESSAGES_TOOLTIP" = "Tap here to make this message disappear after it is viewed.";
/* Toast alert text shown when tapping on a view-once message that you have sent. */
"VIEW_ONCE_OUTGOING_TOAST" = "Outgoing view-once media files are automatically removed after they are sent.";
/* Indicates how to cancel a voice message. */
"VOICE_MESSAGE_CANCEL_INSTRUCTIONS" = "Slide to Cancel";

View File

@ -1578,12 +1578,6 @@
/* Indicator that separates read from unread messages. */
"MESSAGES_VIEW_UNREAD_INDICATOR" = "नवीन संदेश";
/* Messages that indicates that there are more unseen messages. */
"MESSAGES_VIEW_UNREAD_INDICATOR_HAS_MORE_UNSEEN_MESSAGES" = "अधिक न वाचलेले संदेश आहेत.";
/* Messages that indicates that there are more unseen messages including safety number changes. */
"MESSAGES_VIEW_UNREAD_INDICATOR_HAS_MORE_UNSEEN_MESSAGES_AND_SAFETY_NUMBER_CHANGES" = "अधिक न वाचलेले संदेश आहेत (ज्यात सुरक्षितता नंबर बदल समाविष्ट आहेत).";
/* info message text in conversation view */
"MISSED_CALL" = "सुटलेला कॉल";
@ -1888,22 +1882,22 @@
"PER_MESSAGE_EXPIRATION_INVALID_CONTENT" = "येणारा संदेश हाताळण्यात त्रुटी";
/* inbox cell and notification text for an already viewed view-once media message. */
"PER_MESSAGE_EXPIRATION_NOT_VIEWABLE" = "मिडिया संदेश";
"PER_MESSAGE_EXPIRATION_NOT_VIEWABLE" = "View-once media";
/* Label for outgoing view-once messages. */
"PER_MESSAGE_EXPIRATION_OUTGOING_MESSAGE" = "मीडिया";
/* inbox cell and notification text for a view-once photo. */
"PER_MESSAGE_EXPIRATION_PHOTO_PREVIEW" = "नाहीसा होणारा फोटो";
"PER_MESSAGE_EXPIRATION_PHOTO_PREVIEW" = "View-once photo";
/* inbox cell and notification text for a view-once video. */
"PER_MESSAGE_EXPIRATION_VIDEO_PREVIEW" = "नाहीसा होणारा व्हिडिओ";
"PER_MESSAGE_EXPIRATION_VIDEO_PREVIEW" = "View-once video";
/* Label for view-once messages indicating that user can tap to view the message's contents. */
"PER_MESSAGE_EXPIRATION_VIEW_PHOTO" = "फोटो";
"PER_MESSAGE_EXPIRATION_VIEW_PHOTO" = "View Photo";
/* Label for view-once messages indicating that user can tap to view the message's contents. */
"PER_MESSAGE_EXPIRATION_VIEW_VIDEO" = "व्हिडिओ";
"PER_MESSAGE_EXPIRATION_VIEW_VIDEO" = "View Video";
/* Label for view-once messages indicating that the local user has viewed the message's contents. */
"PER_MESSAGE_EXPIRATION_VIEWED" = "बघितले";
@ -3054,9 +3048,15 @@
/* Label for button or row which allows users to verify the safety numbers of multiple users. */
"VERIFY_PRIVACY_MULTIPLE" = "सुरक्षितता नंबरचे पुनरावलोकन करा";
/* Toast alert text shown when tapping on a view-once message that has already been viewed. */
"VIEW_ONCE_ALREADY_VIEWED_TOAST" = "You already viewed this message.";
/* Tooltip highlighting the view once messages button. */
"VIEW_ONCE_MESSAGES_TOOLTIP" = "Tap here to make this message disappear after it is viewed.";
/* Toast alert text shown when tapping on a view-once message that you have sent. */
"VIEW_ONCE_OUTGOING_TOAST" = "Outgoing view-once media files are automatically removed after they are sent.";
/* Indicates how to cancel a voice message. */
"VOICE_MESSAGE_CANCEL_INSTRUCTIONS" = "रद्द करण्यासाठी स्लाइड करा";

View File

@ -1578,12 +1578,6 @@
/* Indicator that separates read from unread messages. */
"MESSAGES_VIEW_UNREAD_INDICATOR" = "Mesej-mesej Baru";
/* Messages that indicates that there are more unseen messages. */
"MESSAGES_VIEW_UNREAD_INDICATOR_HAS_MORE_UNSEEN_MESSAGES" = "Terdapat lebih banyak mesej yang belum dibaca.";
/* Messages that indicates that there are more unseen messages including safety number changes. */
"MESSAGES_VIEW_UNREAD_INDICATOR_HAS_MORE_UNSEEN_MESSAGES_AND_SAFETY_NUMBER_CHANGES" = "Terdapat lebih banyak mesej yang belum dibaca (termasuk perubahan nombor keselamatan).";
/* info message text in conversation view */
"MISSED_CALL" = "Panggilan tidak dijawab";
@ -1888,22 +1882,22 @@
"PER_MESSAGE_EXPIRATION_INVALID_CONTENT" = "Ralat mengendalikan mesej masuk";
/* inbox cell and notification text for an already viewed view-once media message. */
"PER_MESSAGE_EXPIRATION_NOT_VIEWABLE" = "Mesej Media";
"PER_MESSAGE_EXPIRATION_NOT_VIEWABLE" = "View-once media";
/* Label for outgoing view-once messages. */
"PER_MESSAGE_EXPIRATION_OUTGOING_MESSAGE" = "Media";
/* inbox cell and notification text for a view-once photo. */
"PER_MESSAGE_EXPIRATION_PHOTO_PREVIEW" = "Foto Hilang";
"PER_MESSAGE_EXPIRATION_PHOTO_PREVIEW" = "View-once photo";
/* inbox cell and notification text for a view-once video. */
"PER_MESSAGE_EXPIRATION_VIDEO_PREVIEW" = "Video Hilang";
"PER_MESSAGE_EXPIRATION_VIDEO_PREVIEW" = "View-once video";
/* Label for view-once messages indicating that user can tap to view the message's contents. */
"PER_MESSAGE_EXPIRATION_VIEW_PHOTO" = "Foto";
"PER_MESSAGE_EXPIRATION_VIEW_PHOTO" = "View Photo";
/* Label for view-once messages indicating that user can tap to view the message's contents. */
"PER_MESSAGE_EXPIRATION_VIEW_VIDEO" = "Video";
"PER_MESSAGE_EXPIRATION_VIEW_VIDEO" = "View Video";
/* Label for view-once messages indicating that the local user has viewed the message's contents. */
"PER_MESSAGE_EXPIRATION_VIEWED" = "Dilihat";
@ -3054,9 +3048,15 @@
/* Label for button or row which allows users to verify the safety numbers of multiple users. */
"VERIFY_PRIVACY_MULTIPLE" = "Semak Semula Nombor Keselamatan";
/* Toast alert text shown when tapping on a view-once message that has already been viewed. */
"VIEW_ONCE_ALREADY_VIEWED_TOAST" = "You already viewed this message.";
/* Tooltip highlighting the view once messages button. */
"VIEW_ONCE_MESSAGES_TOOLTIP" = "Tap here to make this message disappear after it is viewed.";
/* Toast alert text shown when tapping on a view-once message that you have sent. */
"VIEW_ONCE_OUTGOING_TOAST" = "Outgoing view-once media files are automatically removed after they are sent.";
/* Indicates how to cancel a voice message. */
"VOICE_MESSAGE_CANCEL_INSTRUCTIONS" = "Leret untuk membatal";

View File

@ -1578,12 +1578,6 @@
/* Indicator that separates read from unread messages. */
"MESSAGES_VIEW_UNREAD_INDICATOR" = "စာအသစ်များ";
/* Messages that indicates that there are more unseen messages. */
"MESSAGES_VIEW_UNREAD_INDICATOR_HAS_MORE_UNSEEN_MESSAGES" = "မဖတ်ရသေးသော စာများ ရှိနေပါသည်။";
/* Messages that indicates that there are more unseen messages including safety number changes. */
"MESSAGES_VIEW_UNREAD_INDICATOR_HAS_MORE_UNSEEN_MESSAGES_AND_SAFETY_NUMBER_CHANGES" = "(လုံခြုံရေးနံပါတ်များအပါအဝင်) မဖတ်ရသေးသောစာများ ထပ်ရှိပါသေးသည်။";
/* info message text in conversation view */
"MISSED_CALL" = "လွတ်သွားသော ဖုန်းခေါ်ဆိုမှု";
@ -1888,22 +1882,22 @@
"PER_MESSAGE_EXPIRATION_INVALID_CONTENT" = "Error handling incoming message";
/* inbox cell and notification text for an already viewed view-once media message. */
"PER_MESSAGE_EXPIRATION_NOT_VIEWABLE" = "Media Message";
"PER_MESSAGE_EXPIRATION_NOT_VIEWABLE" = "View-once media";
/* Label for outgoing view-once messages. */
"PER_MESSAGE_EXPIRATION_OUTGOING_MESSAGE" = "ရုပ်၊သံ၊ပုံ များ";
/* inbox cell and notification text for a view-once photo. */
"PER_MESSAGE_EXPIRATION_PHOTO_PREVIEW" = "Disappearing Photo";
"PER_MESSAGE_EXPIRATION_PHOTO_PREVIEW" = "View-once photo";
/* inbox cell and notification text for a view-once video. */
"PER_MESSAGE_EXPIRATION_VIDEO_PREVIEW" = "Disappearing Video";
"PER_MESSAGE_EXPIRATION_VIDEO_PREVIEW" = "View-once video";
/* Label for view-once messages indicating that user can tap to view the message's contents. */
"PER_MESSAGE_EXPIRATION_VIEW_PHOTO" = "ရုပ်ပုံ";
"PER_MESSAGE_EXPIRATION_VIEW_PHOTO" = "View Photo";
/* Label for view-once messages indicating that user can tap to view the message's contents. */
"PER_MESSAGE_EXPIRATION_VIEW_VIDEO" = "ရုပ်မြင်သံကြား";
"PER_MESSAGE_EXPIRATION_VIEW_VIDEO" = "View Video";
/* Label for view-once messages indicating that the local user has viewed the message's contents. */
"PER_MESSAGE_EXPIRATION_VIEWED" = "Viewed";
@ -3054,9 +3048,15 @@
/* Label for button or row which allows users to verify the safety numbers of multiple users. */
"VERIFY_PRIVACY_MULTIPLE" = "လုံခြုံရေးနံပါတ်ကို ပြန်စစ်ပါ";
/* Toast alert text shown when tapping on a view-once message that has already been viewed. */
"VIEW_ONCE_ALREADY_VIEWED_TOAST" = "You already viewed this message.";
/* Tooltip highlighting the view once messages button. */
"VIEW_ONCE_MESSAGES_TOOLTIP" = "Tap here to make this message disappear after it is viewed.";
/* Toast alert text shown when tapping on a view-once message that you have sent. */
"VIEW_ONCE_OUTGOING_TOAST" = "Outgoing view-once media files are automatically removed after they are sent.";
/* Indicates how to cancel a voice message. */
"VOICE_MESSAGE_CANCEL_INSTRUCTIONS" = "မလုပ်တော့ဘူးဆိုရင် ဘေးကို ဆွဲပါ";

View File

@ -1578,12 +1578,6 @@
/* Indicator that separates read from unread messages. */
"MESSAGES_VIEW_UNREAD_INDICATOR" = "Nye meldinger";
/* Messages that indicates that there are more unseen messages. */
"MESSAGES_VIEW_UNREAD_INDICATOR_HAS_MORE_UNSEEN_MESSAGES" = "Det er ikke flere uleste meldinger.";
/* Messages that indicates that there are more unseen messages including safety number changes. */
"MESSAGES_VIEW_UNREAD_INDICATOR_HAS_MORE_UNSEEN_MESSAGES_AND_SAFETY_NUMBER_CHANGES" = "Det er flere uleste meldinger (inkludert varsler om endret sikkerhetsnummer).";
/* info message text in conversation view */
"MISSED_CALL" = "Tapt anrop";
@ -1888,22 +1882,22 @@
"PER_MESSAGE_EXPIRATION_INVALID_CONTENT" = "Feil ved håndtering av innkommende melding";
/* inbox cell and notification text for an already viewed view-once media message. */
"PER_MESSAGE_EXPIRATION_NOT_VIEWABLE" = "Mediemelding";
"PER_MESSAGE_EXPIRATION_NOT_VIEWABLE" = "View-once media";
/* Label for outgoing view-once messages. */
"PER_MESSAGE_EXPIRATION_OUTGOING_MESSAGE" = "Media";
/* inbox cell and notification text for a view-once photo. */
"PER_MESSAGE_EXPIRATION_PHOTO_PREVIEW" = "Forsvinnende bilde";
"PER_MESSAGE_EXPIRATION_PHOTO_PREVIEW" = "View-once photo";
/* inbox cell and notification text for a view-once video. */
"PER_MESSAGE_EXPIRATION_VIDEO_PREVIEW" = "Forsvinner video";
"PER_MESSAGE_EXPIRATION_VIDEO_PREVIEW" = "View-once video";
/* Label for view-once messages indicating that user can tap to view the message's contents. */
"PER_MESSAGE_EXPIRATION_VIEW_PHOTO" = "Bilde";
"PER_MESSAGE_EXPIRATION_VIEW_PHOTO" = "Se bilde";
/* Label for view-once messages indicating that user can tap to view the message's contents. */
"PER_MESSAGE_EXPIRATION_VIEW_VIDEO" = "Video";
"PER_MESSAGE_EXPIRATION_VIEW_VIDEO" = "View Video";
/* Label for view-once messages indicating that the local user has viewed the message's contents. */
"PER_MESSAGE_EXPIRATION_VIEWED" = "Sett";
@ -3054,9 +3048,15 @@
/* Label for button or row which allows users to verify the safety numbers of multiple users. */
"VERIFY_PRIVACY_MULTIPLE" = "Gjennomgå sikkerhetsnumre";
/* Toast alert text shown when tapping on a view-once message that has already been viewed. */
"VIEW_ONCE_ALREADY_VIEWED_TOAST" = "You already viewed this message.";
/* Tooltip highlighting the view once messages button. */
"VIEW_ONCE_MESSAGES_TOOLTIP" = "Tap here to make this message disappear after it is viewed.";
/* Toast alert text shown when tapping on a view-once message that you have sent. */
"VIEW_ONCE_OUTGOING_TOAST" = "Outgoing view-once media files are automatically removed after they are sent.";
/* Indicates how to cancel a voice message. */
"VOICE_MESSAGE_CANCEL_INSTRUCTIONS" = "Skyv for å avbryte";

View File

@ -1578,12 +1578,6 @@
/* Indicator that separates read from unread messages. */
"MESSAGES_VIEW_UNREAD_INDICATOR" = "Nye meldinger";
/* Messages that indicates that there are more unseen messages. */
"MESSAGES_VIEW_UNREAD_INDICATOR_HAS_MORE_UNSEEN_MESSAGES" = "Det er ikke flere uleste meldinger.";
/* Messages that indicates that there are more unseen messages including safety number changes. */
"MESSAGES_VIEW_UNREAD_INDICATOR_HAS_MORE_UNSEEN_MESSAGES_AND_SAFETY_NUMBER_CHANGES" = "Det er flere uleste meldinger (inkludert varsler om endret sikkerhetsnummer).";
/* info message text in conversation view */
"MISSED_CALL" = "Tapt anrop";
@ -1888,22 +1882,22 @@
"PER_MESSAGE_EXPIRATION_INVALID_CONTENT" = "Error handling incoming message";
/* inbox cell and notification text for an already viewed view-once media message. */
"PER_MESSAGE_EXPIRATION_NOT_VIEWABLE" = "Media Message";
"PER_MESSAGE_EXPIRATION_NOT_VIEWABLE" = "View-once media";
/* Label for outgoing view-once messages. */
"PER_MESSAGE_EXPIRATION_OUTGOING_MESSAGE" = "Medium";
/* inbox cell and notification text for a view-once photo. */
"PER_MESSAGE_EXPIRATION_PHOTO_PREVIEW" = "Disappearing Photo";
"PER_MESSAGE_EXPIRATION_PHOTO_PREVIEW" = "View-once photo";
/* inbox cell and notification text for a view-once video. */
"PER_MESSAGE_EXPIRATION_VIDEO_PREVIEW" = "Disappearing Video";
"PER_MESSAGE_EXPIRATION_VIDEO_PREVIEW" = "View-once video";
/* Label for view-once messages indicating that user can tap to view the message's contents. */
"PER_MESSAGE_EXPIRATION_VIEW_PHOTO" = "Photo";
"PER_MESSAGE_EXPIRATION_VIEW_PHOTO" = "View Photo";
/* Label for view-once messages indicating that user can tap to view the message's contents. */
"PER_MESSAGE_EXPIRATION_VIEW_VIDEO" = "Video";
"PER_MESSAGE_EXPIRATION_VIEW_VIDEO" = "View Video";
/* Label for view-once messages indicating that the local user has viewed the message's contents. */
"PER_MESSAGE_EXPIRATION_VIEWED" = "Viewed";
@ -3054,9 +3048,15 @@
/* Label for button or row which allows users to verify the safety numbers of multiple users. */
"VERIFY_PRIVACY_MULTIPLE" = "Gjennomgå sikkerhetsnumre";
/* Toast alert text shown when tapping on a view-once message that has already been viewed. */
"VIEW_ONCE_ALREADY_VIEWED_TOAST" = "You already viewed this message.";
/* Tooltip highlighting the view once messages button. */
"VIEW_ONCE_MESSAGES_TOOLTIP" = "Tap here to make this message disappear after it is viewed.";
/* Toast alert text shown when tapping on a view-once message that you have sent. */
"VIEW_ONCE_OUTGOING_TOAST" = "Outgoing view-once media files are automatically removed after they are sent.";
/* Indicates how to cancel a voice message. */
"VOICE_MESSAGE_CANCEL_INSTRUCTIONS" = "Skyv for å avbryte";

View File

@ -1578,12 +1578,6 @@
/* Indicator that separates read from unread messages. */
"MESSAGES_VIEW_UNREAD_INDICATOR" = "Nieuwe berichten";
/* Messages that indicates that there are more unseen messages. */
"MESSAGES_VIEW_UNREAD_INDICATOR_HAS_MORE_UNSEEN_MESSAGES" = "Er zijn meer ongelezen berichten.";
/* Messages that indicates that there are more unseen messages including safety number changes. */
"MESSAGES_VIEW_UNREAD_INDICATOR_HAS_MORE_UNSEEN_MESSAGES_AND_SAFETY_NUMBER_CHANGES" = "Er zijn meer ongelezen berichten (inclusief veiligheidsnummerveranderingen).";
/* info message text in conversation view */
"MISSED_CALL" = "Gemiste oproep";
@ -1888,22 +1882,22 @@
"PER_MESSAGE_EXPIRATION_INVALID_CONTENT" = "Fout bij het verwerken van een inkomend bericht";
/* inbox cell and notification text for an already viewed view-once media message. */
"PER_MESSAGE_EXPIRATION_NOT_VIEWABLE" = "Mediabericht";
"PER_MESSAGE_EXPIRATION_NOT_VIEWABLE" = "Eenmaligeweergave-media";
/* Label for outgoing view-once messages. */
"PER_MESSAGE_EXPIRATION_OUTGOING_MESSAGE" = "Media";
/* inbox cell and notification text for a view-once photo. */
"PER_MESSAGE_EXPIRATION_PHOTO_PREVIEW" = "Zelf-wissende foto";
"PER_MESSAGE_EXPIRATION_PHOTO_PREVIEW" = "Eenmaligeweergave-foto";
/* inbox cell and notification text for a view-once video. */
"PER_MESSAGE_EXPIRATION_VIDEO_PREVIEW" = "Zelf-wissende video";
"PER_MESSAGE_EXPIRATION_VIDEO_PREVIEW" = "Eenmaligeweergave-video";
/* Label for view-once messages indicating that user can tap to view the message's contents. */
"PER_MESSAGE_EXPIRATION_VIEW_PHOTO" = "Foto";
"PER_MESSAGE_EXPIRATION_VIEW_PHOTO" = "Foto weergeven";
/* Label for view-once messages indicating that user can tap to view the message's contents. */
"PER_MESSAGE_EXPIRATION_VIEW_VIDEO" = "Video";
"PER_MESSAGE_EXPIRATION_VIEW_VIDEO" = "Video weergeven";
/* Label for view-once messages indicating that the local user has viewed the message's contents. */
"PER_MESSAGE_EXPIRATION_VIEWED" = "Gezien";
@ -2056,7 +2050,7 @@
"PRIVACY_VERIFICATION_FAILURE_INVALID_QRCODE" = "De gescande code lijkt niet op een veiligheidsnummer. Gebruiken jullie allebei de laatste versie van Signal?";
/* Paragraph(s) shown alongside the safety number when verifying privacy with {{contact name}} */
"PRIVACY_VERIFICATION_INSTRUCTIONS" = "Als je de veiligheid van je eind-tot-eind-versleuteling met %@ wilt verifiëren, vergelijk dan de bovenstaande nummers met de nummers op het apparaat van je contactpersoon.\n\nJe kunt ook de code op zijn/haar telefoon scannen, of hem/haar vragen om jouw code te scannen.";
"PRIVACY_VERIFICATION_INSTRUCTIONS" = "Als je wilt verifiëren dat je direct met %@ communiceert zonder dat je communicatie wordt onderschept, ga dan na dat het bovenstaande nummer overeen komt met het nummer op het apparaat van je gesprekspartner.\n\nJe kunt ook de QR-code op zijn telefoon scannen, of hem vragen jouw QR-code te scannen";
/* Navbar title */
"PRIVACY_VERIFICATION_TITLE" = "Veiligheidsnummer verifiëren";
@ -3054,9 +3048,15 @@
/* Label for button or row which allows users to verify the safety numbers of multiple users. */
"VERIFY_PRIVACY_MULTIPLE" = "Veiligheidsnummers nakijken";
/* Toast alert text shown when tapping on a view-once message that has already been viewed. */
"VIEW_ONCE_ALREADY_VIEWED_TOAST" = "You already viewed this message.";
/* Tooltip highlighting the view once messages button. */
"VIEW_ONCE_MESSAGES_TOOLTIP" = "Tik hier om er voor te zorgen dat dit bericht wordt gewist nadat het is gezien.";
/* Toast alert text shown when tapping on a view-once message that you have sent. */
"VIEW_ONCE_OUTGOING_TOAST" = "Outgoing view-once media files are automatically removed after they are sent.";
/* Indicates how to cancel a voice message. */
"VOICE_MESSAGE_CANCEL_INSTRUCTIONS" = "Annuleren";

View File

@ -108,7 +108,7 @@
"APPEARANCE_SETTINGS_LIGHT_THEME_NAME" = "Jasny";
/* Name indicating that the system theme is enabled. */
"APPEARANCE_SETTINGS_SYSTEM_THEME_NAME" = "System";
"APPEARANCE_SETTINGS_SYSTEM_THEME_NAME" = "Systemowy";
/* Name of application */
"APPLICATION_NAME" = "Signal";
@ -1578,12 +1578,6 @@
/* Indicator that separates read from unread messages. */
"MESSAGES_VIEW_UNREAD_INDICATOR" = "Nowe wiadomości";
/* Messages that indicates that there are more unseen messages. */
"MESSAGES_VIEW_UNREAD_INDICATOR_HAS_MORE_UNSEEN_MESSAGES" = "Więcej nieodczytanych wiadomości dostępne";
/* Messages that indicates that there are more unseen messages including safety number changes. */
"MESSAGES_VIEW_UNREAD_INDICATOR_HAS_MORE_UNSEEN_MESSAGES_AND_SAFETY_NUMBER_CHANGES" = "Masz więcej nieodczytanych wiadomości, w tym o zmianach numerów bezpieczeństwa.";
/* info message text in conversation view */
"MISSED_CALL" = "Nieodebrane połączenie";
@ -1888,22 +1882,22 @@
"PER_MESSAGE_EXPIRATION_INVALID_CONTENT" = "Błąd przy obsłudze przychodzącej wiadomości";
/* inbox cell and notification text for an already viewed view-once media message. */
"PER_MESSAGE_EXPIRATION_NOT_VIEWABLE" = "Wiadomość multimedialna";
"PER_MESSAGE_EXPIRATION_NOT_VIEWABLE" = "Multimedia jednorazowe";
/* Label for outgoing view-once messages. */
"PER_MESSAGE_EXPIRATION_OUTGOING_MESSAGE" = "Multimedia";
/* inbox cell and notification text for a view-once photo. */
"PER_MESSAGE_EXPIRATION_PHOTO_PREVIEW" = "Znikające zdjęcie";
"PER_MESSAGE_EXPIRATION_PHOTO_PREVIEW" = "Zdjęcie jednorazowe";
/* inbox cell and notification text for a view-once video. */
"PER_MESSAGE_EXPIRATION_VIDEO_PREVIEW" = "Znikające wideo";
"PER_MESSAGE_EXPIRATION_VIDEO_PREVIEW" = "Wideo jednorazowe";
/* Label for view-once messages indicating that user can tap to view the message's contents. */
"PER_MESSAGE_EXPIRATION_VIEW_PHOTO" = "Zdjęcie";
"PER_MESSAGE_EXPIRATION_VIEW_PHOTO" = "Wyświetl zdjęcie";
/* Label for view-once messages indicating that user can tap to view the message's contents. */
"PER_MESSAGE_EXPIRATION_VIEW_VIDEO" = "Wideo";
"PER_MESSAGE_EXPIRATION_VIEW_VIDEO" = "Obejrzyj video";
/* Label for view-once messages indicating that the local user has viewed the message's contents. */
"PER_MESSAGE_EXPIRATION_VIEWED" = "Wyświetlono";
@ -3054,9 +3048,15 @@
/* Label for button or row which allows users to verify the safety numbers of multiple users. */
"VERIFY_PRIVACY_MULTIPLE" = "Sprawdź kod zabezpieczenia";
/* Toast alert text shown when tapping on a view-once message that has already been viewed. */
"VIEW_ONCE_ALREADY_VIEWED_TOAST" = "You already viewed this message.";
/* Tooltip highlighting the view once messages button. */
"VIEW_ONCE_MESSAGES_TOOLTIP" = "Stuknij tutaj, aby ta wiadomość znikła po obejrzeniu.";
/* Toast alert text shown when tapping on a view-once message that you have sent. */
"VIEW_ONCE_OUTGOING_TOAST" = "Outgoing view-once media files are automatically removed after they are sent.";
/* Indicates how to cancel a voice message. */
"VOICE_MESSAGE_CANCEL_INSTRUCTIONS" = "Przesuń, aby anulować";

View File

@ -1578,12 +1578,6 @@
/* Indicator that separates read from unread messages. */
"MESSAGES_VIEW_UNREAD_INDICATOR" = "Novas mensagens";
/* Messages that indicates that there are more unseen messages. */
"MESSAGES_VIEW_UNREAD_INDICATOR_HAS_MORE_UNSEEN_MESSAGES" = "Há mais mensagens não lidas.";
/* Messages that indicates that there are more unseen messages including safety number changes. */
"MESSAGES_VIEW_UNREAD_INDICATOR_HAS_MORE_UNSEEN_MESSAGES_AND_SAFETY_NUMBER_CHANGES" = "Há mais mensagens não lidas (inclusive sobre mudanças de número de segurança)";
/* info message text in conversation view */
"MISSED_CALL" = "Chamada perdida";
@ -1888,22 +1882,22 @@
"PER_MESSAGE_EXPIRATION_INVALID_CONTENT" = "Erro ao receber mensagem";
/* inbox cell and notification text for an already viewed view-once media message. */
"PER_MESSAGE_EXPIRATION_NOT_VIEWABLE" = "Mensagem de mídia";
"PER_MESSAGE_EXPIRATION_NOT_VIEWABLE" = "View-once media";
/* Label for outgoing view-once messages. */
"PER_MESSAGE_EXPIRATION_OUTGOING_MESSAGE" = "Mídia";
/* inbox cell and notification text for a view-once photo. */
"PER_MESSAGE_EXPIRATION_PHOTO_PREVIEW" = "Foto efêmera";
"PER_MESSAGE_EXPIRATION_PHOTO_PREVIEW" = "View-once photo";
/* inbox cell and notification text for a view-once video. */
"PER_MESSAGE_EXPIRATION_VIDEO_PREVIEW" = "Vídeo efêmero";
"PER_MESSAGE_EXPIRATION_VIDEO_PREVIEW" = "View-once video";
/* Label for view-once messages indicating that user can tap to view the message's contents. */
"PER_MESSAGE_EXPIRATION_VIEW_PHOTO" = "Foto";
"PER_MESSAGE_EXPIRATION_VIEW_PHOTO" = "Ver foto";
/* Label for view-once messages indicating that user can tap to view the message's contents. */
"PER_MESSAGE_EXPIRATION_VIEW_VIDEO" = "Vídeo";
"PER_MESSAGE_EXPIRATION_VIEW_VIDEO" = "View Video";
/* Label for view-once messages indicating that the local user has viewed the message's contents. */
"PER_MESSAGE_EXPIRATION_VIEWED" = "Vista";
@ -3054,9 +3048,15 @@
/* Label for button or row which allows users to verify the safety numbers of multiple users. */
"VERIFY_PRIVACY_MULTIPLE" = "Editar Números de Segurança";
/* Toast alert text shown when tapping on a view-once message that has already been viewed. */
"VIEW_ONCE_ALREADY_VIEWED_TOAST" = "You already viewed this message.";
/* Tooltip highlighting the view once messages button. */
"VIEW_ONCE_MESSAGES_TOOLTIP" = "Tap here to make this message disappear after it is viewed.";
/* Toast alert text shown when tapping on a view-once message that you have sent. */
"VIEW_ONCE_OUTGOING_TOAST" = "Outgoing view-once media files are automatically removed after they are sent.";
/* Indicates how to cancel a voice message. */
"VOICE_MESSAGE_CANCEL_INSTRUCTIONS" = "Deslize para cancelar";

View File

@ -1135,7 +1135,7 @@
"GIF_VIEW_SEARCH_PLACEHOLDER_TEXT" = "Insira a sua pesquisa";
/* Body message of notification shown during GRDB migration indicating that user may need to open app to view their content. */
"GRDB_MIGRATION_NOTIFICATION_BODY" = "This version of Signal includes database optimizations and performance improvements. You may need to open the app to complete the process.";
"GRDB_MIGRATION_NOTIFICATION_BODY" = "Esta versão do Signal inclui otimizações da base de dados e melhorias na performance. Você poderá necessitar de abrir a aplicação para completar o processo.";
/* Title of notification shown during GRDB migration indicating that user may need to open app to view their content. */
"GRDB_MIGRATION_NOTIFICATION_TITLE" = "A optimizar a base de dados";
@ -1578,12 +1578,6 @@
/* Indicator that separates read from unread messages. */
"MESSAGES_VIEW_UNREAD_INDICATOR" = "Novas mensagens";
/* Messages that indicates that there are more unseen messages. */
"MESSAGES_VIEW_UNREAD_INDICATOR_HAS_MORE_UNSEEN_MESSAGES" = "Existem mais mensagens não lidas.";
/* Messages that indicates that there are more unseen messages including safety number changes. */
"MESSAGES_VIEW_UNREAD_INDICATOR_HAS_MORE_UNSEEN_MESSAGES_AND_SAFETY_NUMBER_CHANGES" = "Existem mais mensagens não lidas (incluindo mudanças no número de segurança).";
/* info message text in conversation view */
"MISSED_CALL" = "Chamada não atendida";
@ -1888,22 +1882,22 @@
"PER_MESSAGE_EXPIRATION_INVALID_CONTENT" = "Erro ao lidar com mensagem recebida";
/* inbox cell and notification text for an already viewed view-once media message. */
"PER_MESSAGE_EXPIRATION_NOT_VIEWABLE" = "Mensagem de média";
"PER_MESSAGE_EXPIRATION_NOT_VIEWABLE" = "View-once media";
/* Label for outgoing view-once messages. */
"PER_MESSAGE_EXPIRATION_OUTGOING_MESSAGE" = "Média";
/* inbox cell and notification text for a view-once photo. */
"PER_MESSAGE_EXPIRATION_PHOTO_PREVIEW" = "Destruição de fotografia";
"PER_MESSAGE_EXPIRATION_PHOTO_PREVIEW" = "View-once photo";
/* inbox cell and notification text for a view-once video. */
"PER_MESSAGE_EXPIRATION_VIDEO_PREVIEW" = "Destruição de vídeo";
"PER_MESSAGE_EXPIRATION_VIDEO_PREVIEW" = "View-once video";
/* Label for view-once messages indicating that user can tap to view the message's contents. */
"PER_MESSAGE_EXPIRATION_VIEW_PHOTO" = "Fotografia";
"PER_MESSAGE_EXPIRATION_VIEW_PHOTO" = "Ver fotografia";
/* Label for view-once messages indicating that user can tap to view the message's contents. */
"PER_MESSAGE_EXPIRATION_VIEW_VIDEO" = "Vídeo";
"PER_MESSAGE_EXPIRATION_VIEW_VIDEO" = "View Video";
/* Label for view-once messages indicating that the local user has viewed the message's contents. */
"PER_MESSAGE_EXPIRATION_VIEWED" = "Vista(s)";
@ -3054,8 +3048,14 @@
/* Label for button or row which allows users to verify the safety numbers of multiple users. */
"VERIFY_PRIVACY_MULTIPLE" = "Rever número de segurança";
/* Toast alert text shown when tapping on a view-once message that has already been viewed. */
"VIEW_ONCE_ALREADY_VIEWED_TOAST" = "You already viewed this message.";
/* Tooltip highlighting the view once messages button. */
"VIEW_ONCE_MESSAGES_TOOLTIP" = "Tap here to make this message disappear after it is viewed.";
"VIEW_ONCE_MESSAGES_TOOLTIP" = "Toque aqui para fazer esta mensagem desaparecer depois de a ver.";
/* Toast alert text shown when tapping on a view-once message that you have sent. */
"VIEW_ONCE_OUTGOING_TOAST" = "Outgoing view-once media files are automatically removed after they are sent.";
/* Indicates how to cancel a voice message. */
"VOICE_MESSAGE_CANCEL_INSTRUCTIONS" = "Deslizar para cancelar";

View File

@ -1578,12 +1578,6 @@
/* Indicator that separates read from unread messages. */
"MESSAGES_VIEW_UNREAD_INDICATOR" = "Mesaje noi";
/* Messages that indicates that there are more unseen messages. */
"MESSAGES_VIEW_UNREAD_INDICATOR_HAS_MORE_UNSEEN_MESSAGES" = "Sunt mai multe mesaje necitite.";
/* Messages that indicates that there are more unseen messages including safety number changes. */
"MESSAGES_VIEW_UNREAD_INDICATOR_HAS_MORE_UNSEEN_MESSAGES_AND_SAFETY_NUMBER_CHANGES" = "Există mai multe mesaje necitite (inclusiv modificarea numărului de siguranță).";
/* info message text in conversation view */
"MISSED_CALL" = "Apel ratat.";
@ -1888,22 +1882,22 @@
"PER_MESSAGE_EXPIRATION_INVALID_CONTENT" = "Eroare la procesarea mesajului primit";
/* inbox cell and notification text for an already viewed view-once media message. */
"PER_MESSAGE_EXPIRATION_NOT_VIEWABLE" = "Mesaj media";
"PER_MESSAGE_EXPIRATION_NOT_VIEWABLE" = "Media vizibilă o singură dată";
/* Label for outgoing view-once messages. */
"PER_MESSAGE_EXPIRATION_OUTGOING_MESSAGE" = "Media";
/* inbox cell and notification text for a view-once photo. */
"PER_MESSAGE_EXPIRATION_PHOTO_PREVIEW" = "Poză care dispare";
"PER_MESSAGE_EXPIRATION_PHOTO_PREVIEW" = "Poză vizibilă o singură dată";
/* inbox cell and notification text for a view-once video. */
"PER_MESSAGE_EXPIRATION_VIDEO_PREVIEW" = "Video care dispare";
"PER_MESSAGE_EXPIRATION_VIDEO_PREVIEW" = "Videoclip vizibil o singură dată";
/* Label for view-once messages indicating that user can tap to view the message's contents. */
"PER_MESSAGE_EXPIRATION_VIEW_PHOTO" = "Poză";
"PER_MESSAGE_EXPIRATION_VIEW_PHOTO" = "Vizualizați poza";
/* Label for view-once messages indicating that user can tap to view the message's contents. */
"PER_MESSAGE_EXPIRATION_VIEW_VIDEO" = "Video";
"PER_MESSAGE_EXPIRATION_VIEW_VIDEO" = "Vizualizare videoclip";
/* Label for view-once messages indicating that the local user has viewed the message's contents. */
"PER_MESSAGE_EXPIRATION_VIEWED" = "Vizualizată";
@ -3054,9 +3048,15 @@
/* Label for button or row which allows users to verify the safety numbers of multiple users. */
"VERIFY_PRIVACY_MULTIPLE" = "Verifică numerele de siguranță";
/* Toast alert text shown when tapping on a view-once message that has already been viewed. */
"VIEW_ONCE_ALREADY_VIEWED_TOAST" = "You already viewed this message.";
/* Tooltip highlighting the view once messages button. */
"VIEW_ONCE_MESSAGES_TOOLTIP" = "Apăsați aici pentru a face acest mesaj să dispară după ce este vizualizat.";
/* Toast alert text shown when tapping on a view-once message that you have sent. */
"VIEW_ONCE_OUTGOING_TOAST" = "Outgoing view-once media files are automatically removed after they are sent.";
/* Indicates how to cancel a voice message. */
"VOICE_MESSAGE_CANCEL_INSTRUCTIONS" = "Glisează pentru a anula";

View File

@ -1578,12 +1578,6 @@
/* Indicator that separates read from unread messages. */
"MESSAGES_VIEW_UNREAD_INDICATOR" = "Новые сообщения";
/* Messages that indicates that there are more unseen messages. */
"MESSAGES_VIEW_UNREAD_INDICATOR_HAS_MORE_UNSEEN_MESSAGES" = "Есть ещё непрочитанные сообщения.";
/* Messages that indicates that there are more unseen messages including safety number changes. */
"MESSAGES_VIEW_UNREAD_INDICATOR_HAS_MORE_UNSEEN_MESSAGES_AND_SAFETY_NUMBER_CHANGES" = "Есть больше непрочитанных сообщений (включая изменения кода безопасности).";
/* info message text in conversation view */
"MISSED_CALL" = "Пропущенный звонок";
@ -1888,22 +1882,22 @@
"PER_MESSAGE_EXPIRATION_INVALID_CONTENT" = "Ошибка при обработке входящего сообщения";
/* inbox cell and notification text for an already viewed view-once media message. */
"PER_MESSAGE_EXPIRATION_NOT_VIEWABLE" = "Медиа-сообщение";
"PER_MESSAGE_EXPIRATION_NOT_VIEWABLE" = "Одноразовое медиа";
/* Label for outgoing view-once messages. */
"PER_MESSAGE_EXPIRATION_OUTGOING_MESSAGE" = "Медиа";
/* inbox cell and notification text for a view-once photo. */
"PER_MESSAGE_EXPIRATION_PHOTO_PREVIEW" = "Исчезающая фотография";
"PER_MESSAGE_EXPIRATION_PHOTO_PREVIEW" = "Одноразовое фото";
/* inbox cell and notification text for a view-once video. */
"PER_MESSAGE_EXPIRATION_VIDEO_PREVIEW" = "Исчезающее видео";
"PER_MESSAGE_EXPIRATION_VIDEO_PREVIEW" = "Одноразовое видео";
/* Label for view-once messages indicating that user can tap to view the message's contents. */
"PER_MESSAGE_EXPIRATION_VIEW_PHOTO" = "Фото";
"PER_MESSAGE_EXPIRATION_VIEW_PHOTO" = "Просмотреть фотографию";
/* Label for view-once messages indicating that user can tap to view the message's contents. */
"PER_MESSAGE_EXPIRATION_VIEW_VIDEO" = "Видео";
"PER_MESSAGE_EXPIRATION_VIEW_VIDEO" = "Просмотреть видео";
/* Label for view-once messages indicating that the local user has viewed the message's contents. */
"PER_MESSAGE_EXPIRATION_VIEWED" = "Просмотрено";
@ -3054,9 +3048,15 @@
/* Label for button or row which allows users to verify the safety numbers of multiple users. */
"VERIFY_PRIVACY_MULTIPLE" = "Проверить коды безопасности";
/* Toast alert text shown when tapping on a view-once message that has already been viewed. */
"VIEW_ONCE_ALREADY_VIEWED_TOAST" = "You already viewed this message.";
/* Tooltip highlighting the view once messages button. */
"VIEW_ONCE_MESSAGES_TOOLTIP" = "Нажмите здесь, чтобы ваше сообщение исчезло после того, как оно будет просмотрено.";
/* Toast alert text shown when tapping on a view-once message that you have sent. */
"VIEW_ONCE_OUTGOING_TOAST" = "Outgoing view-once media files are automatically removed after they are sent.";
/* Indicates how to cancel a voice message. */
"VOICE_MESSAGE_CANCEL_INSTRUCTIONS" = "Проведите для отмены";

View File

@ -1578,12 +1578,6 @@
/* Indicator that separates read from unread messages. */
"MESSAGES_VIEW_UNREAD_INDICATOR" = "Nové správy";
/* Messages that indicates that there are more unseen messages. */
"MESSAGES_VIEW_UNREAD_INDICATOR_HAS_MORE_UNSEEN_MESSAGES" = "Máte viac neprečítaných správ.";
/* Messages that indicates that there are more unseen messages including safety number changes. */
"MESSAGES_VIEW_UNREAD_INDICATOR_HAS_MORE_UNSEEN_MESSAGES_AND_SAFETY_NUMBER_CHANGES" = "Máte viac neprečítaných správ (vrátane zmeny bezpečnostných čísiel).";
/* info message text in conversation view */
"MISSED_CALL" = "Zmeškaný hovor";
@ -1888,22 +1882,22 @@
"PER_MESSAGE_EXPIRATION_INVALID_CONTENT" = "Chyba pri spracovaní prichádzajúcej správy";
/* inbox cell and notification text for an already viewed view-once media message. */
"PER_MESSAGE_EXPIRATION_NOT_VIEWABLE" = "Multimediálna správa";
"PER_MESSAGE_EXPIRATION_NOT_VIEWABLE" = "View-once media";
/* Label for outgoing view-once messages. */
"PER_MESSAGE_EXPIRATION_OUTGOING_MESSAGE" = "Médiá";
/* inbox cell and notification text for a view-once photo. */
"PER_MESSAGE_EXPIRATION_PHOTO_PREVIEW" = "Miznúca fotka";
"PER_MESSAGE_EXPIRATION_PHOTO_PREVIEW" = "View-once photo";
/* inbox cell and notification text for a view-once video. */
"PER_MESSAGE_EXPIRATION_VIDEO_PREVIEW" = "Miznúce video";
"PER_MESSAGE_EXPIRATION_VIDEO_PREVIEW" = "View-once video";
/* Label for view-once messages indicating that user can tap to view the message's contents. */
"PER_MESSAGE_EXPIRATION_VIEW_PHOTO" = "Fotka";
"PER_MESSAGE_EXPIRATION_VIEW_PHOTO" = "Zobraziť fotku";
/* Label for view-once messages indicating that user can tap to view the message's contents. */
"PER_MESSAGE_EXPIRATION_VIEW_VIDEO" = "Video";
"PER_MESSAGE_EXPIRATION_VIEW_VIDEO" = "Zobraziť video";
/* Label for view-once messages indicating that the local user has viewed the message's contents. */
"PER_MESSAGE_EXPIRATION_VIEWED" = "Zobrazené";
@ -3054,9 +3048,15 @@
/* Label for button or row which allows users to verify the safety numbers of multiple users. */
"VERIFY_PRIVACY_MULTIPLE" = "Prezrieť bezpečnostné čísla";
/* Toast alert text shown when tapping on a view-once message that has already been viewed. */
"VIEW_ONCE_ALREADY_VIEWED_TOAST" = "You already viewed this message.";
/* Tooltip highlighting the view once messages button. */
"VIEW_ONCE_MESSAGES_TOOLTIP" = "Ťuknite sem, aby táto správa po zobrazení zmizla.";
/* Toast alert text shown when tapping on a view-once message that you have sent. */
"VIEW_ONCE_OUTGOING_TOAST" = "Outgoing view-once media files are automatically removed after they are sent.";
/* Indicates how to cancel a voice message. */
"VOICE_MESSAGE_CANCEL_INSTRUCTIONS" = "Potiahnite pre zrušenie";

View File

@ -1578,12 +1578,6 @@
/* Indicator that separates read from unread messages. */
"MESSAGES_VIEW_UNREAD_INDICATOR" = "Nova sporočila";
/* Messages that indicates that there are more unseen messages. */
"MESSAGES_VIEW_UNREAD_INDICATOR_HAS_MORE_UNSEEN_MESSAGES" = "V nabiralniku je še več neprebranih sporočil.";
/* Messages that indicates that there are more unseen messages including safety number changes. */
"MESSAGES_VIEW_UNREAD_INDICATOR_HAS_MORE_UNSEEN_MESSAGES_AND_SAFETY_NUMBER_CHANGES" = "V nabiralniku je še več neprebranih sporočil (vključno s sporočili o spremembah varnostnih števil).";
/* info message text in conversation view */
"MISSED_CALL" = "Zgrešen klic";
@ -1888,22 +1882,22 @@
"PER_MESSAGE_EXPIRATION_INVALID_CONTENT" = "Napaka pri obdelavi dohodnega sporočila";
/* inbox cell and notification text for an already viewed view-once media message. */
"PER_MESSAGE_EXPIRATION_NOT_VIEWABLE" = "Večpredstavnostno sporočilo";
"PER_MESSAGE_EXPIRATION_NOT_VIEWABLE" = "Medijska datoteka za enkraten ogled";
/* Label for outgoing view-once messages. */
"PER_MESSAGE_EXPIRATION_OUTGOING_MESSAGE" = "Medijske datoteke";
/* inbox cell and notification text for a view-once photo. */
"PER_MESSAGE_EXPIRATION_PHOTO_PREVIEW" = "Izginjajoča fotografija";
"PER_MESSAGE_EXPIRATION_PHOTO_PREVIEW" = "Slika za enkraten ogled";
/* inbox cell and notification text for a view-once video. */
"PER_MESSAGE_EXPIRATION_VIDEO_PREVIEW" = "Izginjajoči video";
"PER_MESSAGE_EXPIRATION_VIDEO_PREVIEW" = "Video za enkraten ogled";
/* Label for view-once messages indicating that user can tap to view the message's contents. */
"PER_MESSAGE_EXPIRATION_VIEW_PHOTO" = "Slika";
"PER_MESSAGE_EXPIRATION_VIEW_PHOTO" = "Ogled fotografije";
/* Label for view-once messages indicating that user can tap to view the message's contents. */
"PER_MESSAGE_EXPIRATION_VIEW_VIDEO" = "Video";
"PER_MESSAGE_EXPIRATION_VIEW_VIDEO" = "Ogled videa";
/* Label for view-once messages indicating that the local user has viewed the message's contents. */
"PER_MESSAGE_EXPIRATION_VIEWED" = "Ogledano";
@ -3054,8 +3048,14 @@
/* Label for button or row which allows users to verify the safety numbers of multiple users. */
"VERIFY_PRIVACY_MULTIPLE" = "Preglej varnostna števila";
/* Toast alert text shown when tapping on a view-once message that has already been viewed. */
"VIEW_ONCE_ALREADY_VIEWED_TOAST" = "You already viewed this message.";
/* Tooltip highlighting the view once messages button. */
"VIEW_ONCE_MESSAGES_TOOLTIP" = "Tap here to make this message disappear after it is viewed.";
"VIEW_ONCE_MESSAGES_TOOLTIP" = "Tapnite tu in vaše sporočilo bo po ogledu prejemnika izginilo.";
/* Toast alert text shown when tapping on a view-once message that you have sent. */
"VIEW_ONCE_OUTGOING_TOAST" = "Outgoing view-once media files are automatically removed after they are sent.";
/* Indicates how to cancel a voice message. */
"VOICE_MESSAGE_CANCEL_INSTRUCTIONS" = "Za preklic podrsajte";

View File

@ -1578,12 +1578,6 @@
/* Indicator that separates read from unread messages. */
"MESSAGES_VIEW_UNREAD_INDICATOR" = "Tsamba itsva";
/* Messages that indicates that there are more unseen messages. */
"MESSAGES_VIEW_UNREAD_INDICATOR_HAS_MORE_UNSEEN_MESSAGES" = "Pane mamwe mashoko asina kuverengwa.";
/* Messages that indicates that there are more unseen messages including safety number changes. */
"MESSAGES_VIEW_UNREAD_INDICATOR_HAS_MORE_UNSEEN_MESSAGES_AND_SAFETY_NUMBER_CHANGES" = "Pane mashoko asina kuverengwa(kuverengera nhamba dzekuchengetedza dzashanduka).";
/* info message text in conversation view */
"MISSED_CALL" = "Runhare rwapotsiwa.";
@ -1888,22 +1882,22 @@
"PER_MESSAGE_EXPIRATION_INVALID_CONTENT" = "Error handling incoming message";
/* inbox cell and notification text for an already viewed view-once media message. */
"PER_MESSAGE_EXPIRATION_NOT_VIEWABLE" = "Tsamba ye Media";
"PER_MESSAGE_EXPIRATION_NOT_VIEWABLE" = "View-once media";
/* Label for outgoing view-once messages. */
"PER_MESSAGE_EXPIRATION_OUTGOING_MESSAGE" = "Media";
/* inbox cell and notification text for a view-once photo. */
"PER_MESSAGE_EXPIRATION_PHOTO_PREVIEW" = "Disappearing Photo";
"PER_MESSAGE_EXPIRATION_PHOTO_PREVIEW" = "View-once photo";
/* inbox cell and notification text for a view-once video. */
"PER_MESSAGE_EXPIRATION_VIDEO_PREVIEW" = "Disappearing Video";
"PER_MESSAGE_EXPIRATION_VIDEO_PREVIEW" = "View-once video";
/* Label for view-once messages indicating that user can tap to view the message's contents. */
"PER_MESSAGE_EXPIRATION_VIEW_PHOTO" = "Mufananidzo";
"PER_MESSAGE_EXPIRATION_VIEW_PHOTO" = "View Photo";
/* Label for view-once messages indicating that user can tap to view the message's contents. */
"PER_MESSAGE_EXPIRATION_VIEW_VIDEO" = "Vhidhiyo";
"PER_MESSAGE_EXPIRATION_VIEW_VIDEO" = "View Video";
/* Label for view-once messages indicating that the local user has viewed the message's contents. */
"PER_MESSAGE_EXPIRATION_VIEWED" = "Yaonekwa";
@ -3054,9 +3048,15 @@
/* Label for button or row which allows users to verify the safety numbers of multiple users. */
"VERIFY_PRIVACY_MULTIPLE" = "Ongorora nhamba dzekuchengetedza";
/* Toast alert text shown when tapping on a view-once message that has already been viewed. */
"VIEW_ONCE_ALREADY_VIEWED_TOAST" = "You already viewed this message.";
/* Tooltip highlighting the view once messages button. */
"VIEW_ONCE_MESSAGES_TOOLTIP" = "Tap here to make this message disappear after it is viewed.";
/* Toast alert text shown when tapping on a view-once message that you have sent. */
"VIEW_ONCE_OUTGOING_TOAST" = "Outgoing view-once media files are automatically removed after they are sent.";
/* Indicates how to cancel a voice message. */
"VOICE_MESSAGE_CANCEL_INSTRUCTIONS" = "Tsvedzesa kuti udzime";

View File

@ -1578,12 +1578,6 @@
/* Indicator that separates read from unread messages. */
"MESSAGES_VIEW_UNREAD_INDICATOR" = "Mesazhe të Rinj";
/* Messages that indicates that there are more unseen messages. */
"MESSAGES_VIEW_UNREAD_INDICATOR_HAS_MORE_UNSEEN_MESSAGES" = "Ka të tjerë mesazhe të palexuar.";
/* Messages that indicates that there are more unseen messages including safety number changes. */
"MESSAGES_VIEW_UNREAD_INDICATOR_HAS_MORE_UNSEEN_MESSAGES_AND_SAFETY_NUMBER_CHANGES" = "Ka të tjerë mesazhe të palexuar (përfshi ndryshime numrash sigurie).";
/* info message text in conversation view */
"MISSED_CALL" = "Thirrje e humbur";
@ -1888,22 +1882,22 @@
"PER_MESSAGE_EXPIRATION_INVALID_CONTENT" = "Gabim në trajtimin e mesazhit ardhës";
/* inbox cell and notification text for an already viewed view-once media message. */
"PER_MESSAGE_EXPIRATION_NOT_VIEWABLE" = "Mesazh media";
"PER_MESSAGE_EXPIRATION_NOT_VIEWABLE" = "Media për tu parë vetëm një herë";
/* Label for outgoing view-once messages. */
"PER_MESSAGE_EXPIRATION_OUTGOING_MESSAGE" = "Media";
/* inbox cell and notification text for a view-once photo. */
"PER_MESSAGE_EXPIRATION_PHOTO_PREVIEW" = "Foto Që Tretet";
"PER_MESSAGE_EXPIRATION_PHOTO_PREVIEW" = "Foto për tu parë vetëm një herë";
/* inbox cell and notification text for a view-once video. */
"PER_MESSAGE_EXPIRATION_VIDEO_PREVIEW" = "Video Që Zhduket";
"PER_MESSAGE_EXPIRATION_VIDEO_PREVIEW" = "Video për tu parë vetëm një herë";
/* Label for view-once messages indicating that user can tap to view the message's contents. */
"PER_MESSAGE_EXPIRATION_VIEW_PHOTO" = "Foto";
"PER_MESSAGE_EXPIRATION_VIEW_PHOTO" = "Shihni Foton";
/* Label for view-once messages indicating that user can tap to view the message's contents. */
"PER_MESSAGE_EXPIRATION_VIEW_VIDEO" = "Video";
"PER_MESSAGE_EXPIRATION_VIEW_VIDEO" = "Shiheni Videon";
/* Label for view-once messages indicating that the local user has viewed the message's contents. */
"PER_MESSAGE_EXPIRATION_VIEWED" = "Parë";
@ -3054,9 +3048,15 @@
/* Label for button or row which allows users to verify the safety numbers of multiple users. */
"VERIFY_PRIVACY_MULTIPLE" = "Shqyrtoni Numra Sigurie";
/* Toast alert text shown when tapping on a view-once message that has already been viewed. */
"VIEW_ONCE_ALREADY_VIEWED_TOAST" = "You already viewed this message.";
/* Tooltip highlighting the view once messages button. */
"VIEW_ONCE_MESSAGES_TOOLTIP" = "Prekni këtu që të zhduket ky mesazh pasi të jetë parë.";
/* Toast alert text shown when tapping on a view-once message that you have sent. */
"VIEW_ONCE_OUTGOING_TOAST" = "Outgoing view-once media files are automatically removed after they are sent.";
/* Indicates how to cancel a voice message. */
"VOICE_MESSAGE_CANCEL_INSTRUCTIONS" = "Për Anulim, Rrëshqiteni";

View File

@ -1578,12 +1578,6 @@
/* Indicator that separates read from unread messages. */
"MESSAGES_VIEW_UNREAD_INDICATOR" = "Nya meddelanden";
/* Messages that indicates that there are more unseen messages. */
"MESSAGES_VIEW_UNREAD_INDICATOR_HAS_MORE_UNSEEN_MESSAGES" = "Det finns fler olästa meddelanden.";
/* Messages that indicates that there are more unseen messages including safety number changes. */
"MESSAGES_VIEW_UNREAD_INDICATOR_HAS_MORE_UNSEEN_MESSAGES_AND_SAFETY_NUMBER_CHANGES" = "Det finns fler olästa meddelanden (bland annat ändringar av säkerhetsnummer).";
/* info message text in conversation view */
"MISSED_CALL" = "Missat samtal";
@ -1888,22 +1882,22 @@
"PER_MESSAGE_EXPIRATION_INVALID_CONTENT" = "Fel med att hantera inkommande meddelande";
/* inbox cell and notification text for an already viewed view-once media message. */
"PER_MESSAGE_EXPIRATION_NOT_VIEWABLE" = "Mediameddelande";
"PER_MESSAGE_EXPIRATION_NOT_VIEWABLE" = "Visa-engångsmedia";
/* Label for outgoing view-once messages. */
"PER_MESSAGE_EXPIRATION_OUTGOING_MESSAGE" = "Media";
/* inbox cell and notification text for a view-once photo. */
"PER_MESSAGE_EXPIRATION_PHOTO_PREVIEW" = "Försvinnande foto";
"PER_MESSAGE_EXPIRATION_PHOTO_PREVIEW" = "Visa-engångsfoto";
/* inbox cell and notification text for a view-once video. */
"PER_MESSAGE_EXPIRATION_VIDEO_PREVIEW" = "Försvinnande video";
"PER_MESSAGE_EXPIRATION_VIDEO_PREVIEW" = "Visa-engångsvideo";
/* Label for view-once messages indicating that user can tap to view the message's contents. */
"PER_MESSAGE_EXPIRATION_VIEW_PHOTO" = "Foto";
"PER_MESSAGE_EXPIRATION_VIEW_PHOTO" = "Visa foto";
/* Label for view-once messages indicating that user can tap to view the message's contents. */
"PER_MESSAGE_EXPIRATION_VIEW_VIDEO" = "Video";
"PER_MESSAGE_EXPIRATION_VIEW_VIDEO" = "Visa video";
/* Label for view-once messages indicating that the local user has viewed the message's contents. */
"PER_MESSAGE_EXPIRATION_VIEWED" = "Sett";
@ -3054,9 +3048,15 @@
/* Label for button or row which allows users to verify the safety numbers of multiple users. */
"VERIFY_PRIVACY_MULTIPLE" = "Granska säkerhetsnummer";
/* Toast alert text shown when tapping on a view-once message that has already been viewed. */
"VIEW_ONCE_ALREADY_VIEWED_TOAST" = "You already viewed this message.";
/* Tooltip highlighting the view once messages button. */
"VIEW_ONCE_MESSAGES_TOOLTIP" = "Tryck här för att få detta meddelande att försvinna efter att det har visats.";
/* Toast alert text shown when tapping on a view-once message that you have sent. */
"VIEW_ONCE_OUTGOING_TOAST" = "Outgoing view-once media files are automatically removed after they are sent.";
/* Indicates how to cancel a voice message. */
"VOICE_MESSAGE_CANCEL_INSTRUCTIONS" = "Dra för att avbryta";

View File

@ -1578,12 +1578,6 @@
/* Indicator that separates read from unread messages. */
"MESSAGES_VIEW_UNREAD_INDICATOR" = "புதிய செய்திகள்";
/* Messages that indicates that there are more unseen messages. */
"MESSAGES_VIEW_UNREAD_INDICATOR_HAS_MORE_UNSEEN_MESSAGES" = "மேலும் பல படிக்காத செய்திகள் உள்ளன.";
/* Messages that indicates that there are more unseen messages including safety number changes. */
"MESSAGES_VIEW_UNREAD_INDICATOR_HAS_MORE_UNSEEN_MESSAGES_AND_SAFETY_NUMBER_CHANGES" = "மேலும் பல படிக்காத செய்திகள் உள்ளன (பாதுகாப்பு எண் மாற்றங்கள் உட்பட).";
/* info message text in conversation view */
"MISSED_CALL" = "தவறிய அழைப்பு";
@ -1888,22 +1882,22 @@
"PER_MESSAGE_EXPIRATION_INVALID_CONTENT" = "உள்வரும் செய்தியைக் கையாளுவதில் பிழை";
/* inbox cell and notification text for an already viewed view-once media message. */
"PER_MESSAGE_EXPIRATION_NOT_VIEWABLE" = "ஊடக செய்தி";
"PER_MESSAGE_EXPIRATION_NOT_VIEWABLE" = "View-once media";
/* Label for outgoing view-once messages. */
"PER_MESSAGE_EXPIRATION_OUTGOING_MESSAGE" = "ஊடகம்";
/* inbox cell and notification text for a view-once photo. */
"PER_MESSAGE_EXPIRATION_PHOTO_PREVIEW" = "மறைந்துபோகின்ற புகைப்படம்";
"PER_MESSAGE_EXPIRATION_PHOTO_PREVIEW" = "View-once photo";
/* inbox cell and notification text for a view-once video. */
"PER_MESSAGE_EXPIRATION_VIDEO_PREVIEW" = "மறைந்துபோகின்ற வீடியோ";
"PER_MESSAGE_EXPIRATION_VIDEO_PREVIEW" = "View-once video";
/* Label for view-once messages indicating that user can tap to view the message's contents. */
"PER_MESSAGE_EXPIRATION_VIEW_PHOTO" = "புகைப்படம் ";
"PER_MESSAGE_EXPIRATION_VIEW_PHOTO" = "புகைப்படத்தைக் காண்க";
/* Label for view-once messages indicating that user can tap to view the message's contents. */
"PER_MESSAGE_EXPIRATION_VIEW_VIDEO" = "காணொளி";
"PER_MESSAGE_EXPIRATION_VIEW_VIDEO" = "View Video";
/* Label for view-once messages indicating that the local user has viewed the message's contents. */
"PER_MESSAGE_EXPIRATION_VIEWED" = "பார்க்கப்பட்டவை";
@ -3054,9 +3048,15 @@
/* Label for button or row which allows users to verify the safety numbers of multiple users. */
"VERIFY_PRIVACY_MULTIPLE" = "பாதுகாப்பு எண்களை மதிப்பாய்வு செய்யவும்";
/* Toast alert text shown when tapping on a view-once message that has already been viewed. */
"VIEW_ONCE_ALREADY_VIEWED_TOAST" = "You already viewed this message.";
/* Tooltip highlighting the view once messages button. */
"VIEW_ONCE_MESSAGES_TOOLTIP" = "Tap here to make this message disappear after it is viewed.";
/* Toast alert text shown when tapping on a view-once message that you have sent. */
"VIEW_ONCE_OUTGOING_TOAST" = "Outgoing view-once media files are automatically removed after they are sent.";
/* Indicates how to cancel a voice message. */
"VOICE_MESSAGE_CANCEL_INSTRUCTIONS" = "ரத்து செய்ய ஸ்லைடு செய்யவும் ";

View File

@ -1578,12 +1578,6 @@
/* Indicator that separates read from unread messages. */
"MESSAGES_VIEW_UNREAD_INDICATOR" = "కొత్త సందేశాలు";
/* Messages that indicates that there are more unseen messages. */
"MESSAGES_VIEW_UNREAD_INDICATOR_HAS_MORE_UNSEEN_MESSAGES" = "మరింత చదవని సందేశాలు ఉన్నాయి.";
/* Messages that indicates that there are more unseen messages including safety number changes. */
"MESSAGES_VIEW_UNREAD_INDICATOR_HAS_MORE_UNSEEN_MESSAGES_AND_SAFETY_NUMBER_CHANGES" = "మరింత చదవని సందేశాలు ఉన్నాయి (భద్రతా సంఖ్య మార్పులతో సహా).";
/* info message text in conversation view */
"MISSED_CALL" = "తప్పిన కాల్";
@ -1888,22 +1882,22 @@
"PER_MESSAGE_EXPIRATION_INVALID_CONTENT" = "ఇన్‌కమింగ్ సందేశాన్ని నిర్వహించడంలో లోపం";
/* inbox cell and notification text for an already viewed view-once media message. */
"PER_MESSAGE_EXPIRATION_NOT_VIEWABLE" = "మీడియా సందేశం";
"PER_MESSAGE_EXPIRATION_NOT_VIEWABLE" = "View-once media";
/* Label for outgoing view-once messages. */
"PER_MESSAGE_EXPIRATION_OUTGOING_MESSAGE" = "మీడియా";
/* inbox cell and notification text for a view-once photo. */
"PER_MESSAGE_EXPIRATION_PHOTO_PREVIEW" = "అదృశ్యమవుతున్న చిత్రం";
"PER_MESSAGE_EXPIRATION_PHOTO_PREVIEW" = "View-once photo";
/* inbox cell and notification text for a view-once video. */
"PER_MESSAGE_EXPIRATION_VIDEO_PREVIEW" = "అదృశ్యమవుతున్న వీడియో";
"PER_MESSAGE_EXPIRATION_VIDEO_PREVIEW" = "View-once video";
/* Label for view-once messages indicating that user can tap to view the message's contents. */
"PER_MESSAGE_EXPIRATION_VIEW_PHOTO" = "ఫోటో";
"PER_MESSAGE_EXPIRATION_VIEW_PHOTO" = "చిత్రాలు వీక్షించండి ";
/* Label for view-once messages indicating that user can tap to view the message's contents. */
"PER_MESSAGE_EXPIRATION_VIEW_VIDEO" = "వీడియో";
"PER_MESSAGE_EXPIRATION_VIEW_VIDEO" = "View Video";
/* Label for view-once messages indicating that the local user has viewed the message's contents. */
"PER_MESSAGE_EXPIRATION_VIEWED" = "వీక్షించినవి";
@ -3054,9 +3048,15 @@
/* Label for button or row which allows users to verify the safety numbers of multiple users. */
"VERIFY_PRIVACY_MULTIPLE" = "భద్రతా సంఖ్యలను సమీక్షించండి";
/* Toast alert text shown when tapping on a view-once message that has already been viewed. */
"VIEW_ONCE_ALREADY_VIEWED_TOAST" = "You already viewed this message.";
/* Tooltip highlighting the view once messages button. */
"VIEW_ONCE_MESSAGES_TOOLTIP" = "Tap here to make this message disappear after it is viewed.";
/* Toast alert text shown when tapping on a view-once message that you have sent. */
"VIEW_ONCE_OUTGOING_TOAST" = "Outgoing view-once media files are automatically removed after they are sent.";
/* Indicates how to cancel a voice message. */
"VOICE_MESSAGE_CANCEL_INSTRUCTIONS" = "రద్దు చేయడానికి స్లయిడ్ చేయండి";

View File

@ -1578,12 +1578,6 @@
/* Indicator that separates read from unread messages. */
"MESSAGES_VIEW_UNREAD_INDICATOR" = "ข้อความใหม่";
/* Messages that indicates that there are more unseen messages. */
"MESSAGES_VIEW_UNREAD_INDICATOR_HAS_MORE_UNSEEN_MESSAGES" = "There are more unread messages.";
/* Messages that indicates that there are more unseen messages including safety number changes. */
"MESSAGES_VIEW_UNREAD_INDICATOR_HAS_MORE_UNSEEN_MESSAGES_AND_SAFETY_NUMBER_CHANGES" = "There are more unread messages (including safety number changes).";
/* info message text in conversation view */
"MISSED_CALL" = "สายที่ไม่ได้รับ";
@ -1888,22 +1882,22 @@
"PER_MESSAGE_EXPIRATION_INVALID_CONTENT" = "เกิดข้อผิดพลาดในการจัดการข้อความขาเข้า";
/* inbox cell and notification text for an already viewed view-once media message. */
"PER_MESSAGE_EXPIRATION_NOT_VIEWABLE" = "Media Message";
"PER_MESSAGE_EXPIRATION_NOT_VIEWABLE" = "View-once media";
/* Label for outgoing view-once messages. */
"PER_MESSAGE_EXPIRATION_OUTGOING_MESSAGE" = "สื่อ";
/* inbox cell and notification text for a view-once photo. */
"PER_MESSAGE_EXPIRATION_PHOTO_PREVIEW" = "Disappearing Photo";
"PER_MESSAGE_EXPIRATION_PHOTO_PREVIEW" = "View-once photo";
/* inbox cell and notification text for a view-once video. */
"PER_MESSAGE_EXPIRATION_VIDEO_PREVIEW" = "Disappearing Video";
"PER_MESSAGE_EXPIRATION_VIDEO_PREVIEW" = "View-once video";
/* Label for view-once messages indicating that user can tap to view the message's contents. */
"PER_MESSAGE_EXPIRATION_VIEW_PHOTO" = "รูปภาพ";
"PER_MESSAGE_EXPIRATION_VIEW_PHOTO" = "View Photo";
/* Label for view-once messages indicating that user can tap to view the message's contents. */
"PER_MESSAGE_EXPIRATION_VIEW_VIDEO" = "วิดีโอ";
"PER_MESSAGE_EXPIRATION_VIEW_VIDEO" = "View Video";
/* Label for view-once messages indicating that the local user has viewed the message's contents. */
"PER_MESSAGE_EXPIRATION_VIEWED" = "Viewed";
@ -3054,9 +3048,15 @@
/* Label for button or row which allows users to verify the safety numbers of multiple users. */
"VERIFY_PRIVACY_MULTIPLE" = "ตรวจสอบรหัสความปลอดภัย";
/* Toast alert text shown when tapping on a view-once message that has already been viewed. */
"VIEW_ONCE_ALREADY_VIEWED_TOAST" = "You already viewed this message.";
/* Tooltip highlighting the view once messages button. */
"VIEW_ONCE_MESSAGES_TOOLTIP" = "Tap here to make this message disappear after it is viewed.";
/* Toast alert text shown when tapping on a view-once message that you have sent. */
"VIEW_ONCE_OUTGOING_TOAST" = "Outgoing view-once media files are automatically removed after they are sent.";
/* Indicates how to cancel a voice message. */
"VOICE_MESSAGE_CANCEL_INSTRUCTIONS" = "เลื่อนเพื่อยกเลิก";

View File

@ -1135,7 +1135,7 @@
"GIF_VIEW_SEARCH_PLACEHOLDER_TEXT" = "Aramanızı girin";
/* Body message of notification shown during GRDB migration indicating that user may need to open app to view their content. */
"GRDB_MIGRATION_NOTIFICATION_BODY" = "This version of Signal includes database optimizations and performance improvements. You may need to open the app to complete the process.";
"GRDB_MIGRATION_NOTIFICATION_BODY" = "Signal'in bu sürümü veritabanı iyileştirmeleri ve performans geliştirmeleri içerir. İşlemi tamamlamak için uygulamayı açmanız gerekebilir.";
/* Title of notification shown during GRDB migration indicating that user may need to open app to view their content. */
"GRDB_MIGRATION_NOTIFICATION_TITLE" = "Veritabanı Optimize Ediliyor";
@ -1578,12 +1578,6 @@
/* Indicator that separates read from unread messages. */
"MESSAGES_VIEW_UNREAD_INDICATOR" = "Yeni İletiler";
/* Messages that indicates that there are more unseen messages. */
"MESSAGES_VIEW_UNREAD_INDICATOR_HAS_MORE_UNSEEN_MESSAGES" = "Daha fazla okunmamış ileti var.";
/* Messages that indicates that there are more unseen messages including safety number changes. */
"MESSAGES_VIEW_UNREAD_INDICATOR_HAS_MORE_UNSEEN_MESSAGES_AND_SAFETY_NUMBER_CHANGES" = "Daha fazla okunmamış ileti var (güvenlik numarası değişimleriyle birlikte).";
/* info message text in conversation view */
"MISSED_CALL" = "Cevapsız arama";
@ -1888,22 +1882,22 @@
"PER_MESSAGE_EXPIRATION_INVALID_CONTENT" = "Gelen ileti işlenirken hata oluştu";
/* inbox cell and notification text for an already viewed view-once media message. */
"PER_MESSAGE_EXPIRATION_NOT_VIEWABLE" = "İçerik İletisi";
"PER_MESSAGE_EXPIRATION_NOT_VIEWABLE" = "Tek görümlük içerik";
/* Label for outgoing view-once messages. */
"PER_MESSAGE_EXPIRATION_OUTGOING_MESSAGE" = "İçerik";
/* inbox cell and notification text for a view-once photo. */
"PER_MESSAGE_EXPIRATION_PHOTO_PREVIEW" = "Kaybolan Fotoğraf";
"PER_MESSAGE_EXPIRATION_PHOTO_PREVIEW" = "Tek görümlük fotoğraf";
/* inbox cell and notification text for a view-once video. */
"PER_MESSAGE_EXPIRATION_VIDEO_PREVIEW" = "Kaybolan Video";
"PER_MESSAGE_EXPIRATION_VIDEO_PREVIEW" = "Tek görümlük video";
/* Label for view-once messages indicating that user can tap to view the message's contents. */
"PER_MESSAGE_EXPIRATION_VIEW_PHOTO" = "Fotoğraf";
"PER_MESSAGE_EXPIRATION_VIEW_PHOTO" = "Fotoğrafı Görüntüle";
/* Label for view-once messages indicating that user can tap to view the message's contents. */
"PER_MESSAGE_EXPIRATION_VIEW_VIDEO" = "Video";
"PER_MESSAGE_EXPIRATION_VIEW_VIDEO" = "Videoyu Görüntüle";
/* Label for view-once messages indicating that the local user has viewed the message's contents. */
"PER_MESSAGE_EXPIRATION_VIEWED" = "Görüldü";
@ -3054,8 +3048,14 @@
/* Label for button or row which allows users to verify the safety numbers of multiple users. */
"VERIFY_PRIVACY_MULTIPLE" = "Güvenlik Numaralarını Gözden Geçir";
/* Toast alert text shown when tapping on a view-once message that has already been viewed. */
"VIEW_ONCE_ALREADY_VIEWED_TOAST" = "You already viewed this message.";
/* Tooltip highlighting the view once messages button. */
"VIEW_ONCE_MESSAGES_TOOLTIP" = "Tap here to make this message disappear after it is viewed.";
"VIEW_ONCE_MESSAGES_TOOLTIP" = "Bu iletinin görüntülendikten sonra yok olması için buraya dokunun.";
/* Toast alert text shown when tapping on a view-once message that you have sent. */
"VIEW_ONCE_OUTGOING_TOAST" = "Outgoing view-once media files are automatically removed after they are sent.";
/* Indicates how to cancel a voice message. */
"VOICE_MESSAGE_CANCEL_INSTRUCTIONS" = "İptal Etmek için Kaydır";

View File

@ -1578,12 +1578,6 @@
/* Indicator that separates read from unread messages. */
"MESSAGES_VIEW_UNREAD_INDICATOR" = "Нові повідомлення";
/* Messages that indicates that there are more unseen messages. */
"MESSAGES_VIEW_UNREAD_INDICATOR_HAS_MORE_UNSEEN_MESSAGES" = "Є непрочитані повідомлення.";
/* Messages that indicates that there are more unseen messages including safety number changes. */
"MESSAGES_VIEW_UNREAD_INDICATOR_HAS_MORE_UNSEEN_MESSAGES_AND_SAFETY_NUMBER_CHANGES" = "Є непрочитані повідомлення (включно зі змінами номерів безпеки).";
/* info message text in conversation view */
"MISSED_CALL" = "Пропущений виклик";
@ -1888,22 +1882,22 @@
"PER_MESSAGE_EXPIRATION_INVALID_CONTENT" = "Error handling incoming message";
/* inbox cell and notification text for an already viewed view-once media message. */
"PER_MESSAGE_EXPIRATION_NOT_VIEWABLE" = "Media Message";
"PER_MESSAGE_EXPIRATION_NOT_VIEWABLE" = "View-once media";
/* Label for outgoing view-once messages. */
"PER_MESSAGE_EXPIRATION_OUTGOING_MESSAGE" = "Медіа";
/* inbox cell and notification text for a view-once photo. */
"PER_MESSAGE_EXPIRATION_PHOTO_PREVIEW" = "Disappearing Photo";
"PER_MESSAGE_EXPIRATION_PHOTO_PREVIEW" = "View-once photo";
/* inbox cell and notification text for a view-once video. */
"PER_MESSAGE_EXPIRATION_VIDEO_PREVIEW" = "Disappearing Video";
"PER_MESSAGE_EXPIRATION_VIDEO_PREVIEW" = "View-once video";
/* Label for view-once messages indicating that user can tap to view the message's contents. */
"PER_MESSAGE_EXPIRATION_VIEW_PHOTO" = "Світлини";
"PER_MESSAGE_EXPIRATION_VIEW_PHOTO" = "View Photo";
/* Label for view-once messages indicating that user can tap to view the message's contents. */
"PER_MESSAGE_EXPIRATION_VIEW_VIDEO" = "Відео";
"PER_MESSAGE_EXPIRATION_VIEW_VIDEO" = "View Video";
/* Label for view-once messages indicating that the local user has viewed the message's contents. */
"PER_MESSAGE_EXPIRATION_VIEWED" = "Viewed";
@ -3054,9 +3048,15 @@
/* Label for button or row which allows users to verify the safety numbers of multiple users. */
"VERIFY_PRIVACY_MULTIPLE" = "Переглянути номери безпеки";
/* Toast alert text shown when tapping on a view-once message that has already been viewed. */
"VIEW_ONCE_ALREADY_VIEWED_TOAST" = "You already viewed this message.";
/* Tooltip highlighting the view once messages button. */
"VIEW_ONCE_MESSAGES_TOOLTIP" = "Tap here to make this message disappear after it is viewed.";
/* Toast alert text shown when tapping on a view-once message that you have sent. */
"VIEW_ONCE_OUTGOING_TOAST" = "Outgoing view-once media files are automatically removed after they are sent.";
/* Indicates how to cancel a voice message. */
"VOICE_MESSAGE_CANCEL_INSTRUCTIONS" = "Провести щоб Відмінити";

View File

@ -1578,12 +1578,6 @@
/* Indicator that separates read from unread messages. */
"MESSAGES_VIEW_UNREAD_INDICATOR" = "نئے پیغامات";
/* Messages that indicates that there are more unseen messages. */
"MESSAGES_VIEW_UNREAD_INDICATOR_HAS_MORE_UNSEEN_MESSAGES" = "یہاں مزید نہ پڑھے ہوئے پیغامات ہیں۔";
/* Messages that indicates that there are more unseen messages including safety number changes. */
"MESSAGES_VIEW_UNREAD_INDICATOR_HAS_MORE_UNSEEN_MESSAGES_AND_SAFETY_NUMBER_CHANGES" = "یہاں مزید نہ پڑھے ہوئے پیغامات ہیں۔(بشمول حفاظتی نمبر کی تبدیلی کے)۔";
/* info message text in conversation view */
"MISSED_CALL" = "کال مس ہو گئی";
@ -1888,22 +1882,22 @@
"PER_MESSAGE_EXPIRATION_INVALID_CONTENT" = "آنے والے پیغام کو ہینڈل کرنے میں خرابی ہو رہی ہے";
/* inbox cell and notification text for an already viewed view-once media message. */
"PER_MESSAGE_EXPIRATION_NOT_VIEWABLE" = "میڈیا پیغام";
"PER_MESSAGE_EXPIRATION_NOT_VIEWABLE" = "View-once media";
/* Label for outgoing view-once messages. */
"PER_MESSAGE_EXPIRATION_OUTGOING_MESSAGE" = "میڈیا";
/* inbox cell and notification text for a view-once photo. */
"PER_MESSAGE_EXPIRATION_PHOTO_PREVIEW" = "تصویر غائب ہو رہی ہے";
"PER_MESSAGE_EXPIRATION_PHOTO_PREVIEW" = "View-once photo";
/* inbox cell and notification text for a view-once video. */
"PER_MESSAGE_EXPIRATION_VIDEO_PREVIEW" = "ویڈیو غائب ہو رہی ہے";
"PER_MESSAGE_EXPIRATION_VIDEO_PREVIEW" = "View-once video";
/* Label for view-once messages indicating that user can tap to view the message's contents. */
"PER_MESSAGE_EXPIRATION_VIEW_PHOTO" = "تصویر";
"PER_MESSAGE_EXPIRATION_VIEW_PHOTO" = "View Photo";
/* Label for view-once messages indicating that user can tap to view the message's contents. */
"PER_MESSAGE_EXPIRATION_VIEW_VIDEO" = "ویڈیو";
"PER_MESSAGE_EXPIRATION_VIEW_VIDEO" = "View Video";
/* Label for view-once messages indicating that the local user has viewed the message's contents. */
"PER_MESSAGE_EXPIRATION_VIEWED" = "دیکھا ہوا";
@ -3054,9 +3048,15 @@
/* Label for button or row which allows users to verify the safety numbers of multiple users. */
"VERIFY_PRIVACY_MULTIPLE" = "حفاظتی نمبرز کا جائزہ لیں";
/* Toast alert text shown when tapping on a view-once message that has already been viewed. */
"VIEW_ONCE_ALREADY_VIEWED_TOAST" = "You already viewed this message.";
/* Tooltip highlighting the view once messages button. */
"VIEW_ONCE_MESSAGES_TOOLTIP" = "Tap here to make this message disappear after it is viewed.";
/* Toast alert text shown when tapping on a view-once message that you have sent. */
"VIEW_ONCE_OUTGOING_TOAST" = "Outgoing view-once media files are automatically removed after they are sent.";
/* Indicates how to cancel a voice message. */
"VOICE_MESSAGE_CANCEL_INSTRUCTIONS" = "منسوخ کرنے کیلئے سلائیڈ کریں";

View File

@ -1578,12 +1578,6 @@
/* Indicator that separates read from unread messages. */
"MESSAGES_VIEW_UNREAD_INDICATOR" = "Các tin nhắn Mới";
/* Messages that indicates that there are more unseen messages. */
"MESSAGES_VIEW_UNREAD_INDICATOR_HAS_MORE_UNSEEN_MESSAGES" = "Còn tin nhắn chưa đọc.";
/* Messages that indicates that there are more unseen messages including safety number changes. */
"MESSAGES_VIEW_UNREAD_INDICATOR_HAS_MORE_UNSEEN_MESSAGES_AND_SAFETY_NUMBER_CHANGES" = "Còn tin nhắn chưa đọc (bao gồm các thay đổi về số an toàn).";
/* info message text in conversation view */
"MISSED_CALL" = "Cuộc gọi nhỡ";
@ -1888,22 +1882,22 @@
"PER_MESSAGE_EXPIRATION_INVALID_CONTENT" = "Lỗi xử lý tin nhắn đến";
/* inbox cell and notification text for an already viewed view-once media message. */
"PER_MESSAGE_EXPIRATION_NOT_VIEWABLE" = "Tin nhắn Đa phương tiện";
"PER_MESSAGE_EXPIRATION_NOT_VIEWABLE" = "View-once media";
/* Label for outgoing view-once messages. */
"PER_MESSAGE_EXPIRATION_OUTGOING_MESSAGE" = "Đa phương tiện";
/* inbox cell and notification text for a view-once photo. */
"PER_MESSAGE_EXPIRATION_PHOTO_PREVIEW" = "Tin nhắn hình ảnh Tạm thời";
"PER_MESSAGE_EXPIRATION_PHOTO_PREVIEW" = "View-once photo";
/* inbox cell and notification text for a view-once video. */
"PER_MESSAGE_EXPIRATION_VIDEO_PREVIEW" = "Tin nhắn video Tạm thời";
"PER_MESSAGE_EXPIRATION_VIDEO_PREVIEW" = "View-once video";
/* Label for view-once messages indicating that user can tap to view the message's contents. */
"PER_MESSAGE_EXPIRATION_VIEW_PHOTO" = "nh";
"PER_MESSAGE_EXPIRATION_VIEW_PHOTO" = "Xem ảnh";
/* Label for view-once messages indicating that user can tap to view the message's contents. */
"PER_MESSAGE_EXPIRATION_VIEW_VIDEO" = "Video";
"PER_MESSAGE_EXPIRATION_VIEW_VIDEO" = "View Video";
/* Label for view-once messages indicating that the local user has viewed the message's contents. */
"PER_MESSAGE_EXPIRATION_VIEWED" = "Đã xem";
@ -3054,9 +3048,15 @@
/* Label for button or row which allows users to verify the safety numbers of multiple users. */
"VERIFY_PRIVACY_MULTIPLE" = "Kiểm tra lại các Số An toàn";
/* Toast alert text shown when tapping on a view-once message that has already been viewed. */
"VIEW_ONCE_ALREADY_VIEWED_TOAST" = "You already viewed this message.";
/* Tooltip highlighting the view once messages button. */
"VIEW_ONCE_MESSAGES_TOOLTIP" = "Nhấn vào đây để khiến tin nhắn tự hủy sau khi đã được xem.";
/* Toast alert text shown when tapping on a view-once message that you have sent. */
"VIEW_ONCE_OUTGOING_TOAST" = "Outgoing view-once media files are automatically removed after they are sent.";
/* Indicates how to cancel a voice message. */
"VOICE_MESSAGE_CANCEL_INSTRUCTIONS" = "Kéo để huỷ";

View File

@ -1578,12 +1578,6 @@
/* Indicator that separates read from unread messages. */
"MESSAGES_VIEW_UNREAD_INDICATOR" = "新消息";
/* Messages that indicates that there are more unseen messages. */
"MESSAGES_VIEW_UNREAD_INDICATOR_HAS_MORE_UNSEEN_MESSAGES" = "还有更多未读消息。";
/* Messages that indicates that there are more unseen messages including safety number changes. */
"MESSAGES_VIEW_UNREAD_INDICATOR_HAS_MORE_UNSEEN_MESSAGES_AND_SAFETY_NUMBER_CHANGES" = "还有更多未读消息(包含安全码更变)。";
/* info message text in conversation view */
"MISSED_CALL" = "未接来电";
@ -1888,22 +1882,22 @@
"PER_MESSAGE_EXPIRATION_INVALID_CONTENT" = "处理传入消息时出错";
/* inbox cell and notification text for an already viewed view-once media message. */
"PER_MESSAGE_EXPIRATION_NOT_VIEWABLE" = "媒体信息";
"PER_MESSAGE_EXPIRATION_NOT_VIEWABLE" = "View-once media";
/* Label for outgoing view-once messages. */
"PER_MESSAGE_EXPIRATION_OUTGOING_MESSAGE" = "媒体";
/* inbox cell and notification text for a view-once photo. */
"PER_MESSAGE_EXPIRATION_PHOTO_PREVIEW" = "闪照";
"PER_MESSAGE_EXPIRATION_PHOTO_PREVIEW" = "View-once photo";
/* inbox cell and notification text for a view-once video. */
"PER_MESSAGE_EXPIRATION_VIDEO_PREVIEW" = "自毁视频";
"PER_MESSAGE_EXPIRATION_VIDEO_PREVIEW" = "View-once video";
/* Label for view-once messages indicating that user can tap to view the message's contents. */
"PER_MESSAGE_EXPIRATION_VIEW_PHOTO" = "片";
"PER_MESSAGE_EXPIRATION_VIEW_PHOTO" = "查看照片";
/* Label for view-once messages indicating that user can tap to view the message's contents. */
"PER_MESSAGE_EXPIRATION_VIEW_VIDEO" = "视频";
"PER_MESSAGE_EXPIRATION_VIEW_VIDEO" = "查看视频";
/* Label for view-once messages indicating that the local user has viewed the message's contents. */
"PER_MESSAGE_EXPIRATION_VIEWED" = "已阅";
@ -3054,9 +3048,15 @@
/* Label for button or row which allows users to verify the safety numbers of multiple users. */
"VERIFY_PRIVACY_MULTIPLE" = "检查安全码";
/* Toast alert text shown when tapping on a view-once message that has already been viewed. */
"VIEW_ONCE_ALREADY_VIEWED_TOAST" = "You already viewed this message.";
/* Tooltip highlighting the view once messages button. */
"VIEW_ONCE_MESSAGES_TOOLTIP" = "Tap here to make this message disappear after it is viewed.";
/* Toast alert text shown when tapping on a view-once message that you have sent. */
"VIEW_ONCE_OUTGOING_TOAST" = "Outgoing view-once media files are automatically removed after they are sent.";
/* Indicates how to cancel a voice message. */
"VOICE_MESSAGE_CANCEL_INSTRUCTIONS" = " 滑动以取消";

View File

@ -1578,12 +1578,6 @@
/* Indicator that separates read from unread messages. */
"MESSAGES_VIEW_UNREAD_INDICATOR" = "新訊息";
/* Messages that indicates that there are more unseen messages. */
"MESSAGES_VIEW_UNREAD_INDICATOR_HAS_MORE_UNSEEN_MESSAGES" = "尚有未讀的訊息";
/* Messages that indicates that there are more unseen messages including safety number changes. */
"MESSAGES_VIEW_UNREAD_INDICATOR_HAS_MORE_UNSEEN_MESSAGES_AND_SAFETY_NUMBER_CHANGES" = "尚有未讀的訊息(包括安全碼變更)。";
/* info message text in conversation view */
"MISSED_CALL" = "未接來電";
@ -1888,22 +1882,22 @@
"PER_MESSAGE_EXPIRATION_INVALID_CONTENT" = "在處理來訊時出現錯誤";
/* inbox cell and notification text for an already viewed view-once media message. */
"PER_MESSAGE_EXPIRATION_NOT_VIEWABLE" = "多媒體訊息";
"PER_MESSAGE_EXPIRATION_NOT_VIEWABLE" = "一次性多媒體檔案";
/* Label for outgoing view-once messages. */
"PER_MESSAGE_EXPIRATION_OUTGOING_MESSAGE" = "媒體";
/* inbox cell and notification text for a view-once photo. */
"PER_MESSAGE_EXPIRATION_PHOTO_PREVIEW" = "銷毀照片";
"PER_MESSAGE_EXPIRATION_PHOTO_PREVIEW" = "一次性照片";
/* inbox cell and notification text for a view-once video. */
"PER_MESSAGE_EXPIRATION_VIDEO_PREVIEW" = "銷毀影片";
"PER_MESSAGE_EXPIRATION_VIDEO_PREVIEW" = "一次性影片";
/* Label for view-once messages indicating that user can tap to view the message's contents. */
"PER_MESSAGE_EXPIRATION_VIEW_PHOTO" = "照片";
"PER_MESSAGE_EXPIRATION_VIEW_PHOTO" = "查看照片";
/* Label for view-once messages indicating that user can tap to view the message's contents. */
"PER_MESSAGE_EXPIRATION_VIEW_VIDEO" = "影片";
"PER_MESSAGE_EXPIRATION_VIEW_VIDEO" = "觀賞影片";
/* Label for view-once messages indicating that the local user has viewed the message's contents. */
"PER_MESSAGE_EXPIRATION_VIEWED" = "已查看";
@ -3054,9 +3048,15 @@
/* Label for button or row which allows users to verify the safety numbers of multiple users. */
"VERIFY_PRIVACY_MULTIPLE" = "檢查安全碼";
/* Toast alert text shown when tapping on a view-once message that has already been viewed. */
"VIEW_ONCE_ALREADY_VIEWED_TOAST" = "You already viewed this message.";
/* Tooltip highlighting the view once messages button. */
"VIEW_ONCE_MESSAGES_TOOLTIP" = "點擊此處使該訊息在查看後消失。";
/* Toast alert text shown when tapping on a view-once message that you have sent. */
"VIEW_ONCE_OUTGOING_TOAST" = "Outgoing view-once media files are automatically removed after they are sent.";
/* Indicates how to cancel a voice message. */
"VOICE_MESSAGE_CANCEL_INSTRUCTIONS" = "滑動以取消";

View File

@ -1,5 +1,5 @@
//
// Copyright (c) 2019 Open Whisper Systems. All rights reserved.
// Copyright (c) 2020 Open Whisper Systems. All rights reserved.
//
import Foundation
@ -58,12 +58,6 @@ public struct AttachmentApprovalViewControllerOptions: OptionSet {
@objc
public class AttachmentApprovalViewController: UIPageViewController, UIPageViewControllerDataSource, UIPageViewControllerDelegate {
// MARK: - Dependencies
private var preferences: OWSPreferences {
return Environment.shared.preferences
}
// MARK: - Properties
private let receivedOptions: AttachmentApprovalViewControllerOptions
@ -82,9 +76,11 @@ public class AttachmentApprovalViewController: UIPageViewController, UIPageViewC
}
var isAddMoreVisible: Bool {
return options.contains(.canAddMore) && !preferences.isViewOnceMessagesEnabled()
return options.contains(.canAddMore) && !isViewOnceEnabled
}
var isViewOnceEnabled = false
public weak var approvalDelegate: AttachmentApprovalViewControllerDelegate?
public var isEditingCaptions = false {
@ -868,8 +864,7 @@ extension AttachmentApprovalViewController: AttachmentTextToolbarDelegate {
modalVC.dismiss {
AssertIsOnMainThread()
if self.options.contains(.canToggleViewOnce),
self.preferences.isViewOnceMessagesEnabled() {
if self.options.contains(.canToggleViewOnce), self.isViewOnceEnabled {
for attachment in attachments {
attachment.isViewOnceAttachment = true
}

View File

@ -1,5 +1,5 @@
//
// Copyright (c) 2019 Open Whisper Systems. All rights reserved.
// Copyright (c) 2020 Open Whisper Systems. All rights reserved.
//
import Foundation
@ -14,6 +14,8 @@ protocol AttachmentTextToolbarDelegate: class {
func attachmentTextToolbarDidEndEditing(_ attachmentTextToolbar: AttachmentTextToolbar)
func attachmentTextToolbarDidChange(_ attachmentTextToolbar: AttachmentTextToolbar)
func attachmentTextToolbarDidViewOnce(_ attachmentTextToolbar: AttachmentTextToolbar)
var isViewOnceEnabled: Bool { get set }
}
// MARK: -
@ -37,8 +39,7 @@ class AttachmentTextToolbar: UIView, UITextViewDelegate {
weak var attachmentTextToolbarDelegate: AttachmentTextToolbarDelegate?
var isViewOnceEnabled: Bool {
return (options.contains(.canToggleViewOnce) &&
preferences.isViewOnceMessagesEnabled())
return options.contains(.canToggleViewOnce) && attachmentTextToolbarDelegate?.isViewOnceEnabled ?? false
}
var messageText: String? {
@ -178,8 +179,7 @@ class AttachmentTextToolbar: UIView, UITextViewDelegate {
private func updateContent() {
AssertIsOnMainThread()
let isViewOnceMessagesEnabled = preferences.isViewOnceMessagesEnabled()
let imageName = isViewOnceMessagesEnabled ? "view-once-24" : "view-infinite-24"
let imageName = isViewOnceEnabled ? "view-once-24" : "view-infinite-24"
viewOnceButton.setTemplateImageName(imageName, tintColor: Theme.darkThemePrimaryColor)
viewOnceSpacer.isHidden = !isViewOnceEnabled
@ -263,8 +263,7 @@ class AttachmentTextToolbar: UIView, UITextViewDelegate {
AssertIsOnMainThread()
// Toggle value.
let isViewOnceMessagesEnabled = !preferences.isViewOnceMessagesEnabled()
preferences.setIsViewOnceMessagesEnabled(isViewOnceMessagesEnabled)
attachmentTextToolbarDelegate?.isViewOnceEnabled = !isViewOnceEnabled
preferences.setWasViewOnceTooltipShown()
attachmentTextToolbarDelegate?.attachmentTextToolbarDidViewOnce(self)
@ -365,7 +364,7 @@ class AttachmentTextToolbar: UIView, UITextViewDelegate {
guard FeatureFlags.viewOnceSending else {
return false
}
guard !preferences.isViewOnceMessagesEnabled() else {
guard !isViewOnceEnabled else {
return false
}
guard !preferences.wasViewOnceTooltipShown() else {

View File

@ -1,5 +1,5 @@
//
// Copyright (c) 2019 Open Whisper Systems. All rights reserved.
// Copyright (c) 2020 Open Whisper Systems. All rights reserved.
//
#import "OWSQuotedReplyModel.h"
@ -148,7 +148,7 @@ NS_ASSUME_NONNULL_BEGIN
// We construct a quote that does not include any of the
// quoted message's renderable content.
NSString *body
= NSLocalizedString(@"PER_MESSAGE_EXPIRATION_OUTGOING_MESSAGE", @"Label for outgoing view-once messages.");
= NSLocalizedString(@"PER_MESSAGE_EXPIRATION_NOT_VIEWABLE", @"inbox cell and notification text for an already viewed view-once media message.");
return [[self alloc] initWithTimestamp:timestamp
authorAddress:authorAddress
body:body

View File

@ -1,5 +1,5 @@
//
// Copyright (c) 2019 Open Whisper Systems. All rights reserved.
// Copyright (c) 2020 Open Whisper Systems. All rights reserved.
//
NS_ASSUME_NONNULL_BEGIN
@ -79,9 +79,6 @@ extern NSString *const OWSPreferencesCallLoggingDidChangeNotification;
transaction:(SDSAnyWriteTransaction *)transactio
NS_SWIFT_NAME(shouldNotifyOfNewAccounts(_:transaction:));
- (BOOL)isViewOnceMessagesEnabled;
- (void)setIsViewOnceMessagesEnabled:(BOOL)value;
- (BOOL)wasViewOnceTooltipShown;
- (void)setWasViewOnceTooltipShown;

View File

@ -1,5 +1,5 @@
//
// Copyright (c) 2019 Open Whisper Systems. All rights reserved.
// Copyright (c) 2020 Open Whisper Systems. All rights reserved.
//
#import "OWSPreferences.h"
@ -47,7 +47,6 @@ NSString *const OWSPreferencesKey_IsYdbReadyForAppExtensions = @"isReadyForAppEx
NSString *const OWSPreferencesKey_IsGrdbReadyForAppExtensions = @"IsGrdbReadyForAppExtensions";
NSString *const OWSPreferencesKey_IsAudibleErrorLoggingEnabled = @"IsAudibleErrorLoggingEnabled";
NSString *const OWSPreferencesKeySystemCallLogEnabled = @"OWSPreferencesKeySystemCallLogEnabled";
NSString *const OWSPreferencesKeyIsViewOnceMessagesEnabled = @"OWSPreferencesKeyIsViewOnceMessagesEnabled";
NSString *const OWSPreferencesKeyWasViewOnceTooltipShown = @"OWSPreferencesKeyWasViewOnceTooltipShown";
@interface OWSPreferences ()
@ -468,20 +467,6 @@ NSString *const OWSPreferencesKeyWasViewOnceTooltipShown = @"OWSPreferencesKeyWa
return [self hasValueForKey:OWSPreferencesKeyCallKitPrivacyEnabled];
}
- (BOOL)isViewOnceMessagesEnabled
{
if (SSKFeatureFlags.viewOnceSending) {
return [self boolForKey:OWSPreferencesKeyIsViewOnceMessagesEnabled defaultValue:NO];
} else {
return NO;
}
}
- (void)setIsViewOnceMessagesEnabled:(BOOL)value
{
[self setBool:value forKey:OWSPreferencesKeyIsViewOnceMessagesEnabled];
}
- (BOOL)wasViewOnceTooltipShown
{
return [self boolForKey:OWSPreferencesKeyWasViewOnceTooltipShown defaultValue:NO];

View File

@ -1,5 +1,5 @@
//
// Copyright (c) 2019 Open Whisper Systems. All rights reserved.
// Copyright (c) 2020 Open Whisper Systems. All rights reserved.
//
#import "TSMessage.h"
@ -494,17 +494,14 @@ static const NSUInteger OWSMessageSchemaVersion = 4;
return NSLocalizedString(@"PER_MESSAGE_EXPIRATION_NOT_VIEWABLE",
@"inbox cell and notification text for an already viewed view-once media message.");
} else {
NSString *emoji = [TSAttachment emojiForMimeType:mediaAttachment.contentType];
NSString *messageDescription;
if (mediaAttachment.isVideo) {
messageDescription = NSLocalizedString(@"PER_MESSAGE_EXPIRATION_VIDEO_PREVIEW",
return NSLocalizedString(@"PER_MESSAGE_EXPIRATION_VIDEO_PREVIEW",
@"inbox cell and notification text for a view-once video.");
} else {
OWSAssertDebug(mediaAttachment.isImage);
messageDescription = NSLocalizedString(@"PER_MESSAGE_EXPIRATION_PHOTO_PREVIEW",
return NSLocalizedString(@"PER_MESSAGE_EXPIRATION_PHOTO_PREVIEW",
@"inbox cell and notification text for a view-once photo.");
}
return [[emoji stringByAppendingString:@" "] stringByAppendingString:messageDescription];
}
}
}

View File

@ -19,7 +19,7 @@
<key>CFBundleShortVersionString</key>
<string>3.2.0</string>
<key>CFBundleVersion</key>
<string>3.2.0.8</string>
<string>3.2.0.9</string>
<key>ITSAppUsesNonExemptEncryption</key>
<false/>
<key>NSAppTransportSecurity</key>