mirror of
https://github.com/oxen-io/session-ios.git
synced 2023-12-13 21:30:14 +01:00
Nag users on iOS 8 to upgrade.
// FREEBIE
This commit is contained in:
parent
e80d40d7f6
commit
0ec095f216
45 changed files with 298 additions and 2 deletions
|
@ -2364,7 +2364,7 @@
|
|||
GCC_WARN_UNUSED_VALUE = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
HEADER_SEARCH_PATHS = "";
|
||||
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
|
||||
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
|
||||
ONLY_ACTIVE_ARCH = YES;
|
||||
OTHER_CFLAGS = "-fobjc-arc-exceptions";
|
||||
SDKROOT = iphoneos;
|
||||
|
@ -2424,7 +2424,7 @@
|
|||
GCC_WARN_UNUSED_VALUE = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
HEADER_SEARCH_PATHS = "";
|
||||
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
|
||||
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
|
||||
ONLY_ACTIVE_ARCH = NO;
|
||||
OTHER_CFLAGS = (
|
||||
"-DNS_BLOCK_ASSERTIONS=1",
|
||||
|
|
|
@ -15,6 +15,7 @@
|
|||
#import "UIUtil.h"
|
||||
#import "UIView+OWS.h"
|
||||
#import <MessageUI/MessageUI.h>
|
||||
#import <SignalServiceKit/AppVersion.h>
|
||||
#import <SignalServiceKit/PhoneNumberUtil.h>
|
||||
#import <SignalServiceKit/SignalAccount.h>
|
||||
#import <SignalServiceKit/TSAccountManager.h>
|
||||
|
@ -229,6 +230,41 @@ NS_ASSUME_NONNULL_BEGIN
|
|||
[self showContactAppropriateViews];
|
||||
}
|
||||
|
||||
- (void)viewDidAppear:(BOOL)animated {
|
||||
[super viewDidAppear:animated];
|
||||
|
||||
[self showIOSUpgradeNagIfNecessary];
|
||||
}
|
||||
|
||||
- (void)showIOSUpgradeNagIfNecessary {
|
||||
// Only show the nag to iOS 8 users.
|
||||
if (SYSTEM_VERSION_GREATER_THAN_OR_EQUAL_TO(9, 0)) {
|
||||
return;
|
||||
}
|
||||
|
||||
// Don't show the nag to users who have just launched
|
||||
// the app for the first time.
|
||||
if (![AppVersion instance].lastAppVersion) {
|
||||
return;
|
||||
}
|
||||
|
||||
// Only show the nag once per update of the app.
|
||||
NSString *currentAppVersion = [AppVersion instance].currentAppVersion;
|
||||
OWSAssert(currentAppVersion.length > 0);
|
||||
NSString *lastNagAppVersion = [Environment.preferences iOSUpgradeNagVersion];
|
||||
if (lastNagAppVersion &&
|
||||
![lastNagAppVersion isEqualToString:currentAppVersion]) {
|
||||
|
||||
[Environment.preferences setIOSUpgradeNagVersion:currentAppVersion];
|
||||
|
||||
[OWSAlerts showAlertWithTitle:
|
||||
NSLocalizedString(@"UPGRADE_IOS_ALERT_TITLE",
|
||||
@"Title for the alert indicating that user should upgrade iOS.")
|
||||
message:NSLocalizedString(@"UPGRADE_IOS_ALERT_MESSAGE",
|
||||
@"Message for the alert indicating that user should upgrade iOS.")];
|
||||
}
|
||||
}
|
||||
|
||||
#pragma mark - Table Contents
|
||||
|
||||
- (void)updateTableContents
|
||||
|
|
|
@ -58,6 +58,9 @@ extern NSString *const PropertyListPreferencesKeyEnableDebugLog;
|
|||
- (BOOL)hasDeclinedNoContactsView;
|
||||
- (void)setHasDeclinedNoContactsView:(BOOL)value;
|
||||
|
||||
- (void)setIOSUpgradeNagVersion:(NSString *)value;
|
||||
- (nullable NSString *)iOSUpgradeNagVersion;
|
||||
|
||||
#pragma mark - Calling
|
||||
|
||||
#pragma mark Callkit
|
||||
|
|
|
@ -26,6 +26,7 @@ NSString *const PropertyListPreferencesKeyCallKitEnabled = @"CallKitEnabled";
|
|||
NSString *const PropertyListPreferencesKeyCallKitPrivacyEnabled = @"CallKitPrivacyEnabled";
|
||||
NSString *const PropertyListPreferencesKeyCallsHideIPAddress = @"CallsHideIPAddress";
|
||||
NSString *const PropertyListPreferencesKeyHasDeclinedNoContactsView = @"hasDeclinedNoContactsView";
|
||||
NSString *const PropertyListPreferencesKeyIOSUpgradeNagVersion = @"iOSUpgradeNagVersion";
|
||||
|
||||
@implementation PropertyListPreferences
|
||||
|
||||
|
@ -191,6 +192,16 @@ NSString *const PropertyListPreferencesKeyHasDeclinedNoContactsView = @"hasDecli
|
|||
[self setValueForKey:PropertyListPreferencesKeyHasDeclinedNoContactsView toValue:@(value)];
|
||||
}
|
||||
|
||||
- (void)setIOSUpgradeNagVersion:(NSString *)value
|
||||
{
|
||||
[self setValueForKey:PropertyListPreferencesKeyIOSUpgradeNagVersion toValue:value];
|
||||
}
|
||||
|
||||
- (nullable NSString *)iOSUpgradeNagVersion
|
||||
{
|
||||
return [self tryGetValueForKey:PropertyListPreferencesKeyIOSUpgradeNagVersion];
|
||||
}
|
||||
|
||||
#pragma mark - Calling
|
||||
|
||||
#pragma mark CallKit
|
||||
|
|
|
@ -1282,6 +1282,12 @@
|
|||
/* Header for upgrade experience */
|
||||
"UPGRADE_EXPERIENCE_VIDEO_TITLE" = "أهلاً بالاتصالات الفيديوية الآمنة! ";
|
||||
|
||||
/* Message for the alert indicating that user should upgrade iOS. */
|
||||
"UPGRADE_IOS_ALERT_MESSAGE" = "Signal will soon require iOS 9 or later. Please upgrade in Settings app >> General >> Software Update.";
|
||||
|
||||
/* Title for the alert indicating that user should upgrade iOS. */
|
||||
"UPGRADE_IOS_ALERT_TITLE" = "Upgrade iOS";
|
||||
|
||||
/* No comment provided by engineer. */
|
||||
"Upgrading Signal ..." = "ترقية Signal ...";
|
||||
|
||||
|
|
|
@ -1282,6 +1282,12 @@
|
|||
/* Header for upgrade experience */
|
||||
"UPGRADE_EXPERIENCE_VIDEO_TITLE" = "Hello Secure Video Calls!";
|
||||
|
||||
/* Message for the alert indicating that user should upgrade iOS. */
|
||||
"UPGRADE_IOS_ALERT_MESSAGE" = "Signal will soon require iOS 9 or later. Please upgrade in Settings app >> General >> Software Update.";
|
||||
|
||||
/* Title for the alert indicating that user should upgrade iOS. */
|
||||
"UPGRADE_IOS_ALERT_TITLE" = "Upgrade iOS";
|
||||
|
||||
/* No comment provided by engineer. */
|
||||
"Upgrading Signal ..." = "Signal yenilənir...";
|
||||
|
||||
|
|
|
@ -1282,6 +1282,12 @@
|
|||
/* Header for upgrade experience */
|
||||
"UPGRADE_EXPERIENCE_VIDEO_TITLE" = "Здравейте Безопасни Видео Обаждания!";
|
||||
|
||||
/* Message for the alert indicating that user should upgrade iOS. */
|
||||
"UPGRADE_IOS_ALERT_MESSAGE" = "Signal will soon require iOS 9 or later. Please upgrade in Settings app >> General >> Software Update.";
|
||||
|
||||
/* Title for the alert indicating that user should upgrade iOS. */
|
||||
"UPGRADE_IOS_ALERT_TITLE" = "Upgrade iOS";
|
||||
|
||||
/* No comment provided by engineer. */
|
||||
"Upgrading Signal ..." = "Обновяване на Сигнал ...";
|
||||
|
||||
|
|
|
@ -1282,6 +1282,12 @@
|
|||
/* Header for upgrade experience */
|
||||
"UPGRADE_EXPERIENCE_VIDEO_TITLE" = "Hello Secure Video Calls!";
|
||||
|
||||
/* Message for the alert indicating that user should upgrade iOS. */
|
||||
"UPGRADE_IOS_ALERT_MESSAGE" = "Signal will soon require iOS 9 or later. Please upgrade in Settings app >> General >> Software Update.";
|
||||
|
||||
/* Title for the alert indicating that user should upgrade iOS. */
|
||||
"UPGRADE_IOS_ALERT_TITLE" = "Upgrade iOS";
|
||||
|
||||
/* No comment provided by engineer. */
|
||||
"Upgrading Signal ..." = "Signal se nadograđuje ...";
|
||||
|
||||
|
|
|
@ -1282,6 +1282,12 @@
|
|||
/* Header for upgrade experience */
|
||||
"UPGRADE_EXPERIENCE_VIDEO_TITLE" = "Telefonades de Vídeo Segures!";
|
||||
|
||||
/* Message for the alert indicating that user should upgrade iOS. */
|
||||
"UPGRADE_IOS_ALERT_MESSAGE" = "Signal will soon require iOS 9 or later. Please upgrade in Settings app >> General >> Software Update.";
|
||||
|
||||
/* Title for the alert indicating that user should upgrade iOS. */
|
||||
"UPGRADE_IOS_ALERT_TITLE" = "Upgrade iOS";
|
||||
|
||||
/* No comment provided by engineer. */
|
||||
"Upgrading Signal ..." = "S'està actualitzant el Signal...";
|
||||
|
||||
|
|
|
@ -1282,6 +1282,12 @@
|
|||
/* Header for upgrade experience */
|
||||
"UPGRADE_EXPERIENCE_VIDEO_TITLE" = "Hello Secure Video Calls!";
|
||||
|
||||
/* Message for the alert indicating that user should upgrade iOS. */
|
||||
"UPGRADE_IOS_ALERT_MESSAGE" = "Signal will soon require iOS 9 or later. Please upgrade in Settings app >> General >> Software Update.";
|
||||
|
||||
/* Title for the alert indicating that user should upgrade iOS. */
|
||||
"UPGRADE_IOS_ALERT_TITLE" = "Upgrade iOS";
|
||||
|
||||
/* No comment provided by engineer. */
|
||||
"Upgrading Signal ..." = "Aktualizace Signalu...";
|
||||
|
||||
|
|
|
@ -1282,6 +1282,12 @@
|
|||
/* Header for upgrade experience */
|
||||
"UPGRADE_EXPERIENCE_VIDEO_TITLE" = "Hello Secure Video Calls!";
|
||||
|
||||
/* Message for the alert indicating that user should upgrade iOS. */
|
||||
"UPGRADE_IOS_ALERT_MESSAGE" = "Signal will soon require iOS 9 or later. Please upgrade in Settings app >> General >> Software Update.";
|
||||
|
||||
/* Title for the alert indicating that user should upgrade iOS. */
|
||||
"UPGRADE_IOS_ALERT_TITLE" = "Upgrade iOS";
|
||||
|
||||
/* No comment provided by engineer. */
|
||||
"Upgrading Signal ..." = "Opdatere Signal ...";
|
||||
|
||||
|
|
|
@ -1282,6 +1282,12 @@
|
|||
/* Header for upgrade experience */
|
||||
"UPGRADE_EXPERIENCE_VIDEO_TITLE" = "Hallo, sichere Videoanrufe!";
|
||||
|
||||
/* Message for the alert indicating that user should upgrade iOS. */
|
||||
"UPGRADE_IOS_ALERT_MESSAGE" = "Signal will soon require iOS 9 or later. Please upgrade in Settings app >> General >> Software Update.";
|
||||
|
||||
/* Title for the alert indicating that user should upgrade iOS. */
|
||||
"UPGRADE_IOS_ALERT_TITLE" = "Upgrade iOS";
|
||||
|
||||
/* No comment provided by engineer. */
|
||||
"Upgrading Signal ..." = "Signal wird aktualisiert …";
|
||||
|
||||
|
|
|
@ -1282,6 +1282,12 @@
|
|||
/* Header for upgrade experience */
|
||||
"UPGRADE_EXPERIENCE_VIDEO_TITLE" = "Hello Secure Video Calls!";
|
||||
|
||||
/* Message for the alert indicating that user should upgrade iOS. */
|
||||
"UPGRADE_IOS_ALERT_MESSAGE" = "Signal will soon require iOS 9 or later. Please upgrade in Settings app >> General >> Software Update.";
|
||||
|
||||
/* Title for the alert indicating that user should upgrade iOS. */
|
||||
"UPGRADE_IOS_ALERT_TITLE" = "Upgrade iOS";
|
||||
|
||||
/* No comment provided by engineer. */
|
||||
"Upgrading Signal ..." = "Upgrading Signal ...";
|
||||
|
||||
|
|
|
@ -1282,6 +1282,12 @@
|
|||
/* Header for upgrade experience */
|
||||
"UPGRADE_EXPERIENCE_VIDEO_TITLE" = "Hello Secure Video Calls!";
|
||||
|
||||
/* Message for the alert indicating that user should upgrade iOS. */
|
||||
"UPGRADE_IOS_ALERT_MESSAGE" = "Signal will soon require iOS 9 or later. Please upgrade in Settings app >> General >> Software Update.";
|
||||
|
||||
/* Title for the alert indicating that user should upgrade iOS. */
|
||||
"UPGRADE_IOS_ALERT_TITLE" = "Upgrade iOS";
|
||||
|
||||
/* No comment provided by engineer. */
|
||||
"Upgrading Signal ..." = "Upgrading Signal ...";
|
||||
|
||||
|
|
|
@ -1282,6 +1282,12 @@
|
|||
/* Header for upgrade experience */
|
||||
"UPGRADE_EXPERIENCE_VIDEO_TITLE" = "¡Hola vídeollamadas seguras!";
|
||||
|
||||
/* Message for the alert indicating that user should upgrade iOS. */
|
||||
"UPGRADE_IOS_ALERT_MESSAGE" = "Signal will soon require iOS 9 or later. Please upgrade in Settings app >> General >> Software Update.";
|
||||
|
||||
/* Title for the alert indicating that user should upgrade iOS. */
|
||||
"UPGRADE_IOS_ALERT_TITLE" = "Upgrade iOS";
|
||||
|
||||
/* No comment provided by engineer. */
|
||||
"Upgrading Signal ..." = "Actualizando Signal...";
|
||||
|
||||
|
|
|
@ -1282,6 +1282,12 @@
|
|||
/* Header for upgrade experience */
|
||||
"UPGRADE_EXPERIENCE_VIDEO_TITLE" = "Hello Secure Video Calls!";
|
||||
|
||||
/* Message for the alert indicating that user should upgrade iOS. */
|
||||
"UPGRADE_IOS_ALERT_MESSAGE" = "Signal will soon require iOS 9 or later. Please upgrade in Settings app >> General >> Software Update.";
|
||||
|
||||
/* Title for the alert indicating that user should upgrade iOS. */
|
||||
"UPGRADE_IOS_ALERT_TITLE" = "Upgrade iOS";
|
||||
|
||||
/* No comment provided by engineer. */
|
||||
"Upgrading Signal ..." = "Upgrading Signal ...";
|
||||
|
||||
|
|
|
@ -1282,6 +1282,12 @@
|
|||
/* Header for upgrade experience */
|
||||
"UPGRADE_EXPERIENCE_VIDEO_TITLE" = "Hei, turvalliset videopuhelut!";
|
||||
|
||||
/* Message for the alert indicating that user should upgrade iOS. */
|
||||
"UPGRADE_IOS_ALERT_MESSAGE" = "Signal will soon require iOS 9 or later. Please upgrade in Settings app >> General >> Software Update.";
|
||||
|
||||
/* Title for the alert indicating that user should upgrade iOS. */
|
||||
"UPGRADE_IOS_ALERT_TITLE" = "Upgrade iOS";
|
||||
|
||||
/* No comment provided by engineer. */
|
||||
"Upgrading Signal ..." = "Päivitetään Signalia ...";
|
||||
|
||||
|
|
|
@ -1282,6 +1282,12 @@
|
|||
/* Header for upgrade experience */
|
||||
"UPGRADE_EXPERIENCE_VIDEO_TITLE" = "Hello Secure Video Calls!";
|
||||
|
||||
/* Message for the alert indicating that user should upgrade iOS. */
|
||||
"UPGRADE_IOS_ALERT_MESSAGE" = "Signal will soon require iOS 9 or later. Please upgrade in Settings app >> General >> Software Update.";
|
||||
|
||||
/* Title for the alert indicating that user should upgrade iOS. */
|
||||
"UPGRADE_IOS_ALERT_TITLE" = "Upgrade iOS";
|
||||
|
||||
/* No comment provided by engineer. */
|
||||
"Upgrading Signal ..." = "Upgrading Signal ...";
|
||||
|
||||
|
|
|
@ -1282,6 +1282,12 @@
|
|||
/* Header for upgrade experience */
|
||||
"UPGRADE_EXPERIENCE_VIDEO_TITLE" = "Bonjour Appels vidéo sécurisés!";
|
||||
|
||||
/* Message for the alert indicating that user should upgrade iOS. */
|
||||
"UPGRADE_IOS_ALERT_MESSAGE" = "Signal will soon require iOS 9 or later. Please upgrade in Settings app >> General >> Software Update.";
|
||||
|
||||
/* Title for the alert indicating that user should upgrade iOS. */
|
||||
"UPGRADE_IOS_ALERT_TITLE" = "Upgrade iOS";
|
||||
|
||||
/* No comment provided by engineer. */
|
||||
"Upgrading Signal ..." = "Mise à niveau de Signal ...";
|
||||
|
||||
|
|
|
@ -1282,6 +1282,12 @@
|
|||
/* Header for upgrade experience */
|
||||
"UPGRADE_EXPERIENCE_VIDEO_TITLE" = "Ola videochamadas seguras!";
|
||||
|
||||
/* Message for the alert indicating that user should upgrade iOS. */
|
||||
"UPGRADE_IOS_ALERT_MESSAGE" = "Signal will soon require iOS 9 or later. Please upgrade in Settings app >> General >> Software Update.";
|
||||
|
||||
/* Title for the alert indicating that user should upgrade iOS. */
|
||||
"UPGRADE_IOS_ALERT_TITLE" = "Upgrade iOS";
|
||||
|
||||
/* No comment provided by engineer. */
|
||||
"Upgrading Signal ..." = "Actualizando Signal...";
|
||||
|
||||
|
|
|
@ -1282,6 +1282,12 @@
|
|||
/* Header for upgrade experience */
|
||||
"UPGRADE_EXPERIENCE_VIDEO_TITLE" = "Hello Secure Video Calls!";
|
||||
|
||||
/* Message for the alert indicating that user should upgrade iOS. */
|
||||
"UPGRADE_IOS_ALERT_MESSAGE" = "Signal will soon require iOS 9 or later. Please upgrade in Settings app >> General >> Software Update.";
|
||||
|
||||
/* Title for the alert indicating that user should upgrade iOS. */
|
||||
"UPGRADE_IOS_ALERT_TITLE" = "Upgrade iOS";
|
||||
|
||||
/* No comment provided by engineer. */
|
||||
"Upgrading Signal ..." = "Upgrading Signal ...";
|
||||
|
||||
|
|
|
@ -1282,6 +1282,12 @@
|
|||
/* Header for upgrade experience */
|
||||
"UPGRADE_EXPERIENCE_VIDEO_TITLE" = "Pozdrav sigurnim video pozivima!";
|
||||
|
||||
/* Message for the alert indicating that user should upgrade iOS. */
|
||||
"UPGRADE_IOS_ALERT_MESSAGE" = "Signal will soon require iOS 9 or later. Please upgrade in Settings app >> General >> Software Update.";
|
||||
|
||||
/* Title for the alert indicating that user should upgrade iOS. */
|
||||
"UPGRADE_IOS_ALERT_TITLE" = "Upgrade iOS";
|
||||
|
||||
/* No comment provided by engineer. */
|
||||
"Upgrading Signal ..." = "Signal se nadograđuje...";
|
||||
|
||||
|
|
|
@ -1282,6 +1282,12 @@
|
|||
/* Header for upgrade experience */
|
||||
"UPGRADE_EXPERIENCE_VIDEO_TITLE" = "Hello Secure Video Calls!";
|
||||
|
||||
/* Message for the alert indicating that user should upgrade iOS. */
|
||||
"UPGRADE_IOS_ALERT_MESSAGE" = "Signal will soon require iOS 9 or later. Please upgrade in Settings app >> General >> Software Update.";
|
||||
|
||||
/* Title for the alert indicating that user should upgrade iOS. */
|
||||
"UPGRADE_IOS_ALERT_TITLE" = "Upgrade iOS";
|
||||
|
||||
/* No comment provided by engineer. */
|
||||
"Upgrading Signal ..." = "Upgrading Signal ...";
|
||||
|
||||
|
|
|
@ -1282,6 +1282,12 @@
|
|||
/* Header for upgrade experience */
|
||||
"UPGRADE_EXPERIENCE_VIDEO_TITLE" = "Hello Secure Video Calls!";
|
||||
|
||||
/* Message for the alert indicating that user should upgrade iOS. */
|
||||
"UPGRADE_IOS_ALERT_MESSAGE" = "Signal will soon require iOS 9 or later. Please upgrade in Settings app >> General >> Software Update.";
|
||||
|
||||
/* Title for the alert indicating that user should upgrade iOS. */
|
||||
"UPGRADE_IOS_ALERT_TITLE" = "Upgrade iOS";
|
||||
|
||||
/* No comment provided by engineer. */
|
||||
"Upgrading Signal ..." = "Memperbaharui Signal ...";
|
||||
|
||||
|
|
|
@ -1282,6 +1282,12 @@
|
|||
/* Header for upgrade experience */
|
||||
"UPGRADE_EXPERIENCE_VIDEO_TITLE" = "Chiamate Video Sicure!";
|
||||
|
||||
/* Message for the alert indicating that user should upgrade iOS. */
|
||||
"UPGRADE_IOS_ALERT_MESSAGE" = "Signal will soon require iOS 9 or later. Please upgrade in Settings app >> General >> Software Update.";
|
||||
|
||||
/* Title for the alert indicating that user should upgrade iOS. */
|
||||
"UPGRADE_IOS_ALERT_TITLE" = "Upgrade iOS";
|
||||
|
||||
/* No comment provided by engineer. */
|
||||
"Upgrading Signal ..." = "Aggiornamento Signal...";
|
||||
|
||||
|
|
|
@ -1282,6 +1282,12 @@
|
|||
/* Header for upgrade experience */
|
||||
"UPGRADE_EXPERIENCE_VIDEO_TITLE" = "安全なビデオ電話にようこそ!";
|
||||
|
||||
/* Message for the alert indicating that user should upgrade iOS. */
|
||||
"UPGRADE_IOS_ALERT_MESSAGE" = "Signal will soon require iOS 9 or later. Please upgrade in Settings app >> General >> Software Update.";
|
||||
|
||||
/* Title for the alert indicating that user should upgrade iOS. */
|
||||
"UPGRADE_IOS_ALERT_TITLE" = "Upgrade iOS";
|
||||
|
||||
/* No comment provided by engineer. */
|
||||
"Upgrading Signal ..." = "Signalをアップグレードしています……";
|
||||
|
||||
|
|
|
@ -1282,6 +1282,12 @@
|
|||
/* Header for upgrade experience */
|
||||
"UPGRADE_EXPERIENCE_VIDEO_TITLE" = "សួស្តី ការហៅវីដេអូសុវត្ថិភាព!";
|
||||
|
||||
/* Message for the alert indicating that user should upgrade iOS. */
|
||||
"UPGRADE_IOS_ALERT_MESSAGE" = "Signal will soon require iOS 9 or later. Please upgrade in Settings app >> General >> Software Update.";
|
||||
|
||||
/* Title for the alert indicating that user should upgrade iOS. */
|
||||
"UPGRADE_IOS_ALERT_TITLE" = "Upgrade iOS";
|
||||
|
||||
/* No comment provided by engineer. */
|
||||
"Upgrading Signal ..." = "កំពុងធ្វើបច្ចុប្បន្នភាព Signal ...";
|
||||
|
||||
|
|
|
@ -1282,6 +1282,12 @@
|
|||
/* Header for upgrade experience */
|
||||
"UPGRADE_EXPERIENCE_VIDEO_TITLE" = "Hello Secure Video Calls!";
|
||||
|
||||
/* Message for the alert indicating that user should upgrade iOS. */
|
||||
"UPGRADE_IOS_ALERT_MESSAGE" = "Signal will soon require iOS 9 or later. Please upgrade in Settings app >> General >> Software Update.";
|
||||
|
||||
/* Title for the alert indicating that user should upgrade iOS. */
|
||||
"UPGRADE_IOS_ALERT_TITLE" = "Upgrade iOS";
|
||||
|
||||
/* No comment provided by engineer. */
|
||||
"Upgrading Signal ..." = "Upgrading Signal ...";
|
||||
|
||||
|
|
|
@ -1282,6 +1282,12 @@
|
|||
/* Header for upgrade experience */
|
||||
"UPGRADE_EXPERIENCE_VIDEO_TITLE" = "Sveiki, saugūs vaizdo skambučiai!";
|
||||
|
||||
/* Message for the alert indicating that user should upgrade iOS. */
|
||||
"UPGRADE_IOS_ALERT_MESSAGE" = "Signal will soon require iOS 9 or later. Please upgrade in Settings app >> General >> Software Update.";
|
||||
|
||||
/* Title for the alert indicating that user should upgrade iOS. */
|
||||
"UPGRADE_IOS_ALERT_TITLE" = "Upgrade iOS";
|
||||
|
||||
/* No comment provided by engineer. */
|
||||
"Upgrading Signal ..." = "Naujinama Signal ...";
|
||||
|
||||
|
|
|
@ -1282,6 +1282,12 @@
|
|||
/* Header for upgrade experience */
|
||||
"UPGRADE_EXPERIENCE_VIDEO_TITLE" = "Hello Secure Video Calls!";
|
||||
|
||||
/* Message for the alert indicating that user should upgrade iOS. */
|
||||
"UPGRADE_IOS_ALERT_MESSAGE" = "Signal will soon require iOS 9 or later. Please upgrade in Settings app >> General >> Software Update.";
|
||||
|
||||
/* Title for the alert indicating that user should upgrade iOS. */
|
||||
"UPGRADE_IOS_ALERT_TITLE" = "Upgrade iOS";
|
||||
|
||||
/* No comment provided by engineer. */
|
||||
"Upgrading Signal ..." = "Upgrading Signal ...";
|
||||
|
||||
|
|
|
@ -1282,6 +1282,12 @@
|
|||
/* Header for upgrade experience */
|
||||
"UPGRADE_EXPERIENCE_VIDEO_TITLE" = "Здраво Сигурносни Видео Повици!";
|
||||
|
||||
/* Message for the alert indicating that user should upgrade iOS. */
|
||||
"UPGRADE_IOS_ALERT_MESSAGE" = "Signal will soon require iOS 9 or later. Please upgrade in Settings app >> General >> Software Update.";
|
||||
|
||||
/* Title for the alert indicating that user should upgrade iOS. */
|
||||
"UPGRADE_IOS_ALERT_TITLE" = "Upgrade iOS";
|
||||
|
||||
/* No comment provided by engineer. */
|
||||
"Upgrading Signal ..." = "Ажурирање на Сигнал ...";
|
||||
|
||||
|
|
|
@ -1282,6 +1282,12 @@
|
|||
/* Header for upgrade experience */
|
||||
"UPGRADE_EXPERIENCE_VIDEO_TITLE" = "Velkommen til sikre videosamtaler!";
|
||||
|
||||
/* Message for the alert indicating that user should upgrade iOS. */
|
||||
"UPGRADE_IOS_ALERT_MESSAGE" = "Signal will soon require iOS 9 or later. Please upgrade in Settings app >> General >> Software Update.";
|
||||
|
||||
/* Title for the alert indicating that user should upgrade iOS. */
|
||||
"UPGRADE_IOS_ALERT_TITLE" = "Upgrade iOS";
|
||||
|
||||
/* No comment provided by engineer. */
|
||||
"Upgrading Signal ..." = "Oppgraderer Signal ...";
|
||||
|
||||
|
|
|
@ -1282,6 +1282,12 @@
|
|||
/* Header for upgrade experience */
|
||||
"UPGRADE_EXPERIENCE_VIDEO_TITLE" = "Hallo, beveiligde videogesprekken!";
|
||||
|
||||
/* Message for the alert indicating that user should upgrade iOS. */
|
||||
"UPGRADE_IOS_ALERT_MESSAGE" = "Signal will soon require iOS 9 or later. Please upgrade in Settings app >> General >> Software Update.";
|
||||
|
||||
/* Title for the alert indicating that user should upgrade iOS. */
|
||||
"UPGRADE_IOS_ALERT_TITLE" = "Upgrade iOS";
|
||||
|
||||
/* No comment provided by engineer. */
|
||||
"Upgrading Signal ..." = "Signal wordt bijgewerkt...";
|
||||
|
||||
|
|
|
@ -1282,6 +1282,12 @@
|
|||
/* Header for upgrade experience */
|
||||
"UPGRADE_EXPERIENCE_VIDEO_TITLE" = "Szyfrowane wideo rozmowy witają!";
|
||||
|
||||
/* Message for the alert indicating that user should upgrade iOS. */
|
||||
"UPGRADE_IOS_ALERT_MESSAGE" = "Signal will soon require iOS 9 or later. Please upgrade in Settings app >> General >> Software Update.";
|
||||
|
||||
/* Title for the alert indicating that user should upgrade iOS. */
|
||||
"UPGRADE_IOS_ALERT_TITLE" = "Upgrade iOS";
|
||||
|
||||
/* No comment provided by engineer. */
|
||||
"Upgrading Signal ..." = "Aktualizuję Signal ...";
|
||||
|
||||
|
|
|
@ -1282,6 +1282,12 @@
|
|||
/* Header for upgrade experience */
|
||||
"UPGRADE_EXPERIENCE_VIDEO_TITLE" = "Olá, chamadas seguras em vídeo!";
|
||||
|
||||
/* Message for the alert indicating that user should upgrade iOS. */
|
||||
"UPGRADE_IOS_ALERT_MESSAGE" = "Signal will soon require iOS 9 or later. Please upgrade in Settings app >> General >> Software Update.";
|
||||
|
||||
/* Title for the alert indicating that user should upgrade iOS. */
|
||||
"UPGRADE_IOS_ALERT_TITLE" = "Upgrade iOS";
|
||||
|
||||
/* No comment provided by engineer. */
|
||||
"Upgrading Signal ..." = "Atualizando Signal ...";
|
||||
|
||||
|
|
|
@ -1282,6 +1282,12 @@
|
|||
/* Header for upgrade experience */
|
||||
"UPGRADE_EXPERIENCE_VIDEO_TITLE" = "Olá Videochamadas seguras!";
|
||||
|
||||
/* Message for the alert indicating that user should upgrade iOS. */
|
||||
"UPGRADE_IOS_ALERT_MESSAGE" = "Signal will soon require iOS 9 or later. Please upgrade in Settings app >> General >> Software Update.";
|
||||
|
||||
/* Title for the alert indicating that user should upgrade iOS. */
|
||||
"UPGRADE_IOS_ALERT_TITLE" = "Upgrade iOS";
|
||||
|
||||
/* No comment provided by engineer. */
|
||||
"Upgrading Signal ..." = "A actualizar o Signal...";
|
||||
|
||||
|
|
|
@ -1282,6 +1282,12 @@
|
|||
/* Header for upgrade experience */
|
||||
"UPGRADE_EXPERIENCE_VIDEO_TITLE" = "Bun venit la apeluri video securizate!";
|
||||
|
||||
/* Message for the alert indicating that user should upgrade iOS. */
|
||||
"UPGRADE_IOS_ALERT_MESSAGE" = "Signal will soon require iOS 9 or later. Please upgrade in Settings app >> General >> Software Update.";
|
||||
|
||||
/* Title for the alert indicating that user should upgrade iOS. */
|
||||
"UPGRADE_IOS_ALERT_TITLE" = "Upgrade iOS";
|
||||
|
||||
/* No comment provided by engineer. */
|
||||
"Upgrading Signal ..." = "Se actualizează Signal ...";
|
||||
|
||||
|
|
|
@ -1282,6 +1282,12 @@
|
|||
/* Header for upgrade experience */
|
||||
"UPGRADE_EXPERIENCE_VIDEO_TITLE" = "Добро пожаловать в Видео Звонки!";
|
||||
|
||||
/* Message for the alert indicating that user should upgrade iOS. */
|
||||
"UPGRADE_IOS_ALERT_MESSAGE" = "Signal will soon require iOS 9 or later. Please upgrade in Settings app >> General >> Software Update.";
|
||||
|
||||
/* Title for the alert indicating that user should upgrade iOS. */
|
||||
"UPGRADE_IOS_ALERT_TITLE" = "Upgrade iOS";
|
||||
|
||||
/* No comment provided by engineer. */
|
||||
"Upgrading Signal ..." = "Обновление...";
|
||||
|
||||
|
|
|
@ -1282,6 +1282,12 @@
|
|||
/* Header for upgrade experience */
|
||||
"UPGRADE_EXPERIENCE_VIDEO_TITLE" = "NOVO: varni video klici!";
|
||||
|
||||
/* Message for the alert indicating that user should upgrade iOS. */
|
||||
"UPGRADE_IOS_ALERT_MESSAGE" = "Signal will soon require iOS 9 or later. Please upgrade in Settings app >> General >> Software Update.";
|
||||
|
||||
/* Title for the alert indicating that user should upgrade iOS. */
|
||||
"UPGRADE_IOS_ALERT_TITLE" = "Upgrade iOS";
|
||||
|
||||
/* No comment provided by engineer. */
|
||||
"Upgrading Signal ..." = "Posodabljam Signal...";
|
||||
|
||||
|
|
|
@ -1282,6 +1282,12 @@
|
|||
/* Header for upgrade experience */
|
||||
"UPGRADE_EXPERIENCE_VIDEO_TITLE" = "Hello Secure Video Calls!";
|
||||
|
||||
/* Message for the alert indicating that user should upgrade iOS. */
|
||||
"UPGRADE_IOS_ALERT_MESSAGE" = "Signal will soon require iOS 9 or later. Please upgrade in Settings app >> General >> Software Update.";
|
||||
|
||||
/* Title for the alert indicating that user should upgrade iOS. */
|
||||
"UPGRADE_IOS_ALERT_TITLE" = "Upgrade iOS";
|
||||
|
||||
/* No comment provided by engineer. */
|
||||
"Upgrading Signal ..." = "Upgrading Signal ...";
|
||||
|
||||
|
|
|
@ -1282,6 +1282,12 @@
|
|||
/* Header for upgrade experience */
|
||||
"UPGRADE_EXPERIENCE_VIDEO_TITLE" = "Hello Secure Video Calls!";
|
||||
|
||||
/* Message for the alert indicating that user should upgrade iOS. */
|
||||
"UPGRADE_IOS_ALERT_MESSAGE" = "Signal will soon require iOS 9 or later. Please upgrade in Settings app >> General >> Software Update.";
|
||||
|
||||
/* Title for the alert indicating that user should upgrade iOS. */
|
||||
"UPGRADE_IOS_ALERT_TITLE" = "Upgrade iOS";
|
||||
|
||||
/* No comment provided by engineer. */
|
||||
"Upgrading Signal ..." = "Shkarkim i funksionaliteteve të reja...";
|
||||
|
||||
|
|
|
@ -1282,6 +1282,12 @@
|
|||
/* Header for upgrade experience */
|
||||
"UPGRADE_EXPERIENCE_VIDEO_TITLE" = "Hallå säkra videosamtal!";
|
||||
|
||||
/* Message for the alert indicating that user should upgrade iOS. */
|
||||
"UPGRADE_IOS_ALERT_MESSAGE" = "Signal will soon require iOS 9 or later. Please upgrade in Settings app >> General >> Software Update.";
|
||||
|
||||
/* Title for the alert indicating that user should upgrade iOS. */
|
||||
"UPGRADE_IOS_ALERT_TITLE" = "Upgrade iOS";
|
||||
|
||||
/* No comment provided by engineer. */
|
||||
"Upgrading Signal ..." = "Uppgraderar Signal ...";
|
||||
|
||||
|
|
|
@ -1282,6 +1282,12 @@
|
|||
/* Header for upgrade experience */
|
||||
"UPGRADE_EXPERIENCE_VIDEO_TITLE" = "Hello Secure Video Calls!";
|
||||
|
||||
/* Message for the alert indicating that user should upgrade iOS. */
|
||||
"UPGRADE_IOS_ALERT_MESSAGE" = "Signal will soon require iOS 9 or later. Please upgrade in Settings app >> General >> Software Update.";
|
||||
|
||||
/* Title for the alert indicating that user should upgrade iOS. */
|
||||
"UPGRADE_IOS_ALERT_TITLE" = "Upgrade iOS";
|
||||
|
||||
/* No comment provided by engineer. */
|
||||
"Upgrading Signal ..." = "กำลังอัปเกรด Signal ...";
|
||||
|
||||
|
|
|
@ -1282,6 +1282,12 @@
|
|||
/* Header for upgrade experience */
|
||||
"UPGRADE_EXPERIENCE_VIDEO_TITLE" = "Merhaba güvenli görüntülü aramalar!";
|
||||
|
||||
/* Message for the alert indicating that user should upgrade iOS. */
|
||||
"UPGRADE_IOS_ALERT_MESSAGE" = "Signal will soon require iOS 9 or later. Please upgrade in Settings app >> General >> Software Update.";
|
||||
|
||||
/* Title for the alert indicating that user should upgrade iOS. */
|
||||
"UPGRADE_IOS_ALERT_TITLE" = "Upgrade iOS";
|
||||
|
||||
/* No comment provided by engineer. */
|
||||
"Upgrading Signal ..." = "Signalı yükselt ...";
|
||||
|
||||
|
|
|
@ -1282,6 +1282,12 @@
|
|||
/* Header for upgrade experience */
|
||||
"UPGRADE_EXPERIENCE_VIDEO_TITLE" = "现推出安全的视频通话!";
|
||||
|
||||
/* Message for the alert indicating that user should upgrade iOS. */
|
||||
"UPGRADE_IOS_ALERT_MESSAGE" = "Signal will soon require iOS 9 or later. Please upgrade in Settings app >> General >> Software Update.";
|
||||
|
||||
/* Title for the alert indicating that user should upgrade iOS. */
|
||||
"UPGRADE_IOS_ALERT_TITLE" = "Upgrade iOS";
|
||||
|
||||
/* No comment provided by engineer. */
|
||||
"Upgrading Signal ..." = "升级Signal…";
|
||||
|
||||
|
|
Loading…
Reference in a new issue