diff --git a/Classes/BITCrashManager.h b/Classes/BITCrashManager.h index 4366f49ecf..235995487f 100644 --- a/Classes/BITCrashManager.h +++ b/Classes/BITCrashManager.h @@ -140,7 +140,7 @@ typedef NS_ENUM(NSUInteger, BITCrashManagerUserInput) { very slow. It is possible to check upon startup if the app crashed before using `didCrashInLastSession` and also how much - time passed between the app launch and the crash using `timeintervalCrashInLastSessionOccured`. This allows you + time passed between the app launch and the crash using `timeintervalCrashInLastSessionOccurred`. This allows you to add additional code to your app delaying the app start until the crash has been successfully send if the crash occurred within a critical startup timeframe, e.g. after 10 seconds. The `BITCrashManagerDelegate` protocol provides various delegates to inform the app about it's current status so you can continue the remaining app startup setup @@ -400,7 +400,7 @@ typedef NS_ENUM(NSUInteger, BITCrashManagerUserInput) { @see didCrashInLastSession @see BITCrashManagerDelegate */ -@property (nonatomic, readonly) NSTimeInterval timeintervalCrashInLastSessionOccured; +@property (nonatomic, readonly) NSTimeInterval timeintervalCrashInLastSessionOccurred; ///----------------------------------------------------------------------------- diff --git a/Classes/BITCrashManager.m b/Classes/BITCrashManager.m index e6b5d7a795..35a8f077df 100644 --- a/Classes/BITCrashManager.m +++ b/Classes/BITCrashManager.m @@ -137,7 +137,7 @@ static PLCrashReporterCallbacks plCrashCallbacks = { _crashIdenticalCurrentVersion = YES; _didCrashInLastSession = NO; - _timeintervalCrashInLastSessionOccured = -1; + _timeintervalCrashInLastSessionOccurred = -1; _didLogLowMemoryWarning = NO; _approvedCrashReports = [[NSMutableDictionary alloc] init]; @@ -797,7 +797,7 @@ static PLCrashReporterCallbacks plCrashCallbacks = { if (report.systemInfo.timestamp && report.processInfo.processStartTime) { appStartTime = report.processInfo.processStartTime; appCrashTime =report.systemInfo.timestamp; - _timeintervalCrashInLastSessionOccured = [report.systemInfo.timestamp timeIntervalSinceDate:report.processInfo.processStartTime]; + _timeintervalCrashInLastSessionOccurred = [report.systemInfo.timestamp timeIntervalSinceDate:report.processInfo.processStartTime]; } } diff --git a/Classes/BITFeedbackActivity.m b/Classes/BITFeedbackActivity.m index 40aceb13cb..7d609e448c 100644 --- a/Classes/BITFeedbackActivity.m +++ b/Classes/BITFeedbackActivity.m @@ -87,7 +87,7 @@ if (self.customActivityImage) return self.customActivityImage; - return bit_imageNamed(@"feedbackActiviy.png", BITHOCKEYSDK_BUNDLE); + return bit_imageNamed(@"feedbackActivity.png", BITHOCKEYSDK_BUNDLE); } diff --git a/Classes/BITFeedbackListViewCell.h b/Classes/BITFeedbackListViewCell.h index f146b8acf9..8ac0da722b 100644 --- a/Classes/BITFeedbackListViewCell.h +++ b/Classes/BITFeedbackListViewCell.h @@ -43,15 +43,15 @@ /** * Cell style depending on the iOS version */ -typedef NS_ENUM(NSUInteger, BITFeedbackListViewCellPresentatationStyle) { +typedef NS_ENUM(NSUInteger, BITFeedbackListViewCellPresentationStyle) { /** * Default is iOS 6 style */ - BITFeedbackListViewCellPresentatationStyleDefault = 0, + BITFeedbackListViewCellPresentationStyleDefault = 0, /** * Draw cells in the iOS 7 style */ - BITFeedbackListViewCellPresentatationStyleOS7 = 1 + BITFeedbackListViewCellPresentationStyleOS7 = 1 }; /** @@ -73,7 +73,7 @@ typedef NS_ENUM(NSUInteger, BITFeedbackListViewCellBackgroundStyle) { @property (nonatomic, strong) BITFeedbackMessage *message; -@property (nonatomic) BITFeedbackListViewCellPresentatationStyle style; +@property (nonatomic) BITFeedbackListViewCellPresentationStyle style; @property (nonatomic) BITFeedbackListViewCellBackgroundStyle backgroundStyle; diff --git a/Classes/BITFeedbackListViewCell.m b/Classes/BITFeedbackListViewCell.m index b0c999ad49..d22bc6b359 100644 --- a/Classes/BITFeedbackListViewCell.m +++ b/Classes/BITFeedbackListViewCell.m @@ -85,7 +85,7 @@ if (self) { // Initialization code _backgroundStyle = BITFeedbackListViewCellBackgroundStyleNormal; - _style = BITFeedbackListViewCellPresentatationStyleDefault; + _style = BITFeedbackListViewCellPresentationStyle; _message = nil; @@ -161,13 +161,13 @@ - (UIColor *)backgroundColor { if (self.backgroundStyle == BITFeedbackListViewCellBackgroundStyleNormal) { - if (self.style == BITFeedbackListViewCellPresentatationStyleDefault) { + if (self.style == BITFeedbackListViewCellPresentationStyleDefault) { return BACKGROUNDCOLOR_DEFAULT; } else { return BACKGROUNDCOLOR_DEFAULT_OS7; } } else { - if (self.style == BITFeedbackListViewCellPresentatationStyleDefault) { + if (self.style == BITFeedbackListViewCellPresentationStyleDefault) { return BACKGROUNDCOLOR_ALTERNATE; } else { return BACKGROUNDCOLOR_ALTERNATE_OS7; @@ -275,7 +275,7 @@ self.accessoryBackgroundView.backgroundColor = [self backgroundColor]; } - if (self.style == BITFeedbackListViewCellPresentatationStyleDefault) { + if (self.style == BITFeedbackListViewCellPresentationStyleDefault) { [self addSubview:self.accessoryBackgroundView]; } else if (self.accessoryBackgroundView.superview){ [self.accessoryBackgroundView removeFromSuperview]; diff --git a/Classes/BITFeedbackListViewController.m b/Classes/BITFeedbackListViewController.m index ab338e9528..dbfa2b65f9 100644 --- a/Classes/BITFeedbackListViewController.m +++ b/Classes/BITFeedbackListViewController.m @@ -291,7 +291,7 @@ [deleteAction setActionSheetStyle:UIActionSheetStyleBlackTranslucent]; [deleteAction showInView:[self viewForShowingActionSheetOnPhone]]; } else { - UIAlertView *deleteAction = [[UIAlertView alloc] initWithTitle:BITHockeyLocalizedString(@"HockeyFeedbackListButonDeleteAllMessages") + UIAlertView *deleteAction = [[UIAlertView alloc] initWithTitle:BITHockeyLocalizedString(@"HockeyFeedbackListButtonDeleteAllMessages") message:BITHockeyLocalizedString(@"HockeyFeedbackListDeleteAllTitle") delegate:self cancelButtonTitle:BITHockeyLocalizedString(@"HockeyFeedbackListDeleteAllCancel") @@ -539,9 +539,9 @@ if (indexPath.section == 0) { topGap = 22; if ([self.manager numberOfMessages] == 0) { - titleString = BITHockeyLocalizedString(@"HockeyFeedbackListButonWriteFeedback"); + titleString = BITHockeyLocalizedString(@"HockeyFeedbackListButtonWriteFeedback"); } else { - titleString = BITHockeyLocalizedString(@"HockeyFeedbackListButonWriteResponse"); + titleString = BITHockeyLocalizedString(@"HockeyFeedbackListButtonWriteResponse"); } actionSelector = @selector(newFeedbackAction:); } else if (indexPath.section == _userButtonSection) { @@ -549,15 +549,15 @@ if ([self.manager requireUserName] == BITFeedbackUserDataElementRequired || ([self.manager requireUserName] == BITFeedbackUserDataElementOptional && [self.manager userName] != nil) ) { - titleString = [NSString stringWithFormat:BITHockeyLocalizedString(@"HockeyFeedbackListButonUserDataWithName"), [self.manager userName] ?: @"-"]; + titleString = [NSString stringWithFormat:BITHockeyLocalizedString(@"HockeyFeedbackListButtonUserDataWithName"), [self.manager userName] ?: @"-"]; } else if ([self.manager requireUserEmail] == BITFeedbackUserDataElementRequired || ([self.manager requireUserEmail] == BITFeedbackUserDataElementOptional && [self.manager userEmail] != nil) ) { - titleString = [NSString stringWithFormat:BITHockeyLocalizedString(@"HockeyFeedbackListButonUserDataWithEmail"), [self.manager userEmail] ?: @"-"]; + titleString = [NSString stringWithFormat:BITHockeyLocalizedString(@"HockeyFeedbackListButtonUserDataWithEmail"), [self.manager userEmail] ?: @"-"]; } else if ([self.manager requireUserName] == BITFeedbackUserDataElementOptional) { - titleString = BITHockeyLocalizedString(@"HockeyFeedbackListButonUserDataSetName"); + titleString = BITHockeyLocalizedString(@"HockeyFeedbackListButtonUserDataSetName"); } else { - titleString = BITHockeyLocalizedString(@"HockeyFeedbackListButonUserDataSetEmail"); + titleString = BITHockeyLocalizedString(@"HockeyFeedbackListButtonUserDataSetEmail"); } actionSelector = @selector(setUserDataAction:); } else { @@ -573,7 +573,7 @@ [button setTitleShadowColor:BUTTON_DELETE_TEXTCOLOR_SHADOW forState:UIControlStateNormal]; } - titleString = BITHockeyLocalizedString(@"HockeyFeedbackListButonDeleteAllMessages"); + titleString = BITHockeyLocalizedString(@"HockeyFeedbackListButtonDeleteAllMessages"); titleColor = BIT_RGBCOLOR(251, 35, 35); actionSelector = @selector(deleteAllMessagesAction:); } @@ -635,9 +635,9 @@ } if ([self.manager isPreiOS7Environment]) { - cell.style = BITFeedbackListViewCellPresentatationStyleDefault; + cell.style = BITFeedbackListViewCellPresentationStyleDefault; } else { - cell.style = BITFeedbackListViewCellPresentatationStyleOS7; + cell.style = BITFeedbackListViewCellPresentationStyleOS7; } BITFeedbackMessage *message = [self.manager messageAtIndex:indexPath.row]; diff --git a/Resources/de.lproj/HockeySDK.strings b/Resources/de.lproj/HockeySDK.strings index 72c9d3ccaa..f4051c9f2e 100644 --- a/Resources/de.lproj/HockeySDK.strings +++ b/Resources/de.lproj/HockeySDK.strings @@ -147,25 +147,25 @@ "HockeyFeedbackListNeverUpdated" = "Noch nie"; /* Provide Feedback Button Title */ -"HockeyFeedbackListButonWriteFeedback" = "Feedback senden"; +"HockeyFeedbackListButtonWriteFeedback" = "Feedback senden"; /* Add a Response Button Title */ -"HockeyFeedbackListButonWriteResponse" = "Antworten"; +"HockeyFeedbackListButtonWriteResponse" = "Antworten"; /* User Data Set Name Button Title */ -"HockeyFeedbackListButonUserDataSetName" = "Namen eingeben"; +"HockeyFeedbackListButtonUserDataSetName" = "Namen eingeben"; /* User Data Set Email Button Title */ -"HockeyFeedbackListButonUserDataSetEmail" = "E-Mail-Adresse eingeben"; +"HockeyFeedbackListButtonUserDataSetEmail" = "E-Mail-Adresse eingeben"; /* User Data With Name Button Title */ -"HockeyFeedbackListButonUserDataWithName" = "Name: %@"; +"HockeyFeedbackListButtonUserDataWithName" = "Name: %@"; /* User Data With Email Button Title */ -"HockeyFeedbackListButonUserDataWithEmail" = "E-Mail: %@"; +"HockeyFeedbackListButtonUserDataWithEmail" = "E-Mail: %@"; /* Button title for deleting all local messages*/ -"HockeyFeedbackListButonDeleteAllMessages" = "Alle Mitteilungen löschen"; +"HockeyFeedbackListButtonDeleteAllMessages" = "Alle Mitteilungen löschen"; /* Message pending to be send */ "HockeyFeedbackListMessagePending" = "Versand ausstehend"; diff --git a/Resources/en.lproj/HockeySDK.strings b/Resources/en.lproj/HockeySDK.strings index e2d8aa0c18..7e6abaf169 100644 --- a/Resources/en.lproj/HockeySDK.strings +++ b/Resources/en.lproj/HockeySDK.strings @@ -147,25 +147,25 @@ "HockeyFeedbackListNeverUpdated" = "Never"; /* Provide Feedback Button Title */ -"HockeyFeedbackListButonWriteFeedback" = "Provide Feedback"; +"HockeyFeedbackListButtonWriteFeedback" = "Provide Feedback"; /* Add a Response Button Title */ -"HockeyFeedbackListButonWriteResponse" = "Add a Response"; +"HockeyFeedbackListButtonWriteResponse" = "Add a Response"; /* User Data Set Name Button Title */ -"HockeyFeedbackListButonUserDataSetName" = "Set Your Name"; +"HockeyFeedbackListButtonUserDataSetName" = "Set Your Name"; /* User Data Set Email Button Title */ -"HockeyFeedbackListButonUserDataSetEmail" = "Set Your Email"; +"HockeyFeedbackListButtonUserDataSetEmail" = "Set Your Email"; /* User Data With Name Button Title */ -"HockeyFeedbackListButonUserDataWithName" = "Name: %@"; +"HockeyFeedbackListButtonUserDataWithName" = "Name: %@"; /* User Data With Email Button Title */ -"HockeyFeedbackListButonUserDataWithEmail" = "Email: %@"; +"HockeyFeedbackListButtonUserDataWithEmail" = "Email: %@"; /* Button title for deleting all local messages*/ -"HockeyFeedbackListButonDeleteAllMessages" = "Delete All Messages"; +"HockeyFeedbackListButtonDeleteAllMessages" = "Delete All Messages"; /* Message pending to be send */ "HockeyFeedbackListMessagePending" = "Pending"; diff --git a/Resources/es.lproj/HockeySDK.strings b/Resources/es.lproj/HockeySDK.strings index 92dea5add8..40c6a57081 100644 --- a/Resources/es.lproj/HockeySDK.strings +++ b/Resources/es.lproj/HockeySDK.strings @@ -147,25 +147,25 @@ "HockeyFeedbackListNeverUpdated" = "Nunca"; /* Provide Feedback Button Title */ -"HockeyFeedbackListButonWriteFeedback" = "Dejar un mensaje"; +"HockeyFeedbackListButtonWriteFeedback" = "Dejar un mensaje"; /* Add a Response Button Title */ -"HockeyFeedbackListButonWriteResponse" = "Añadir una respuesta"; +"HockeyFeedbackListButtonWriteResponse" = "Añadir una respuesta"; /* User Data Set Name Button Title */ -"HockeyFeedbackListButonUserDataSetName" = "Introduzca su nombre"; +"HockeyFeedbackListButtonUserDataSetName" = "Introduzca su nombre"; /* User Data Set Email Button Title */ -"HockeyFeedbackListButonUserDataSetEmail" = "Introduzca su correo"; +"HockeyFeedbackListButtonUserDataSetEmail" = "Introduzca su correo"; /* User Data With Name Button Title */ -"HockeyFeedbackListButonUserDataWithName" = "Nombre: %@"; +"HockeyFeedbackListButtonUserDataWithName" = "Nombre: %@"; /* User Data With Email Button Title */ -"HockeyFeedbackListButonUserDataWithEmail" = "Correo: %@"; +"HockeyFeedbackListButtonUserDataWithEmail" = "Correo: %@"; /* Button title for deleting all local messages*/ -"HockeyFeedbackListButonDeleteAllMessages" = "Eliminar todos los mensajes"; +"HockeyFeedbackListButtonDeleteAllMessages" = "Eliminar todos los mensajes"; /* Message pending to be send */ "HockeyFeedbackListMessagePending" = "Pendiente"; diff --git a/Resources/fr.lproj/HockeySDK.strings b/Resources/fr.lproj/HockeySDK.strings index 2167f799a5..76d9e2a514 100644 --- a/Resources/fr.lproj/HockeySDK.strings +++ b/Resources/fr.lproj/HockeySDK.strings @@ -147,25 +147,25 @@ "HockeyFeedbackListNeverUpdated" = "Jamais"; /* Provide Feedback Button Title */ -"HockeyFeedbackListButonWriteFeedback" = "Émettre un commentaire"; +"HockeyFeedbackListButtonWriteFeedback" = "Émettre un commentaire"; /* Add a Response Button Title */ -"HockeyFeedbackListButonWriteResponse" = "Répondre"; +"HockeyFeedbackListButtonWriteResponse" = "Répondre"; /* User Data Set Name Button Title */ -"HockeyFeedbackListButonUserDataSetName" = "Spécifier votre nom"; +"HockeyFeedbackListButtonUserDataSetName" = "Spécifier votre nom"; /* User Data Set Email Button Title */ -"HockeyFeedbackListButonUserDataSetEmail" = "Spécifier votre adresse"; +"HockeyFeedbackListButtonUserDataSetEmail" = "Spécifier votre adresse"; /* User Data With Name Button Title */ -"HockeyFeedbackListButonUserDataWithName" = "Nom : %@"; +"HockeyFeedbackListButtonUserDataWithName" = "Nom : %@"; /* User Data With Email Button Title */ -"HockeyFeedbackListButonUserDataWithEmail" = "Adresse : %@"; +"HockeyFeedbackListButtonUserDataWithEmail" = "Adresse : %@"; /* Button title for deleting all local messages*/ -"HockeyFeedbackListButonDeleteAllMessages" = "Supprimer les messages"; +"HockeyFeedbackListButtonDeleteAllMessages" = "Supprimer les messages"; /* Message pending to be send */ "HockeyFeedbackListMessagePending" = "En attente"; diff --git a/Resources/hr.lproj/HockeySDK.strings b/Resources/hr.lproj/HockeySDK.strings index 78082ecb99..27af3c4168 100644 --- a/Resources/hr.lproj/HockeySDK.strings +++ b/Resources/hr.lproj/HockeySDK.strings @@ -147,25 +147,25 @@ "HockeyFeedbackListNeverUpdated" = "Nikada"; /* Provide Feedback Button Title */ -"HockeyFeedbackListButonWriteFeedback" = "Osigurajte Povratnu Informaciju"; +"HockeyFeedbackListButtonWriteFeedback" = "Osigurajte Povratnu Informaciju"; /* Add a Response Button Title */ -"HockeyFeedbackListButonWriteResponse" = "Dodaj Odgovor"; +"HockeyFeedbackListButtonWriteResponse" = "Dodaj Odgovor"; /* User Data Set Name Button Title */ -"HockeyFeedbackListButonUserDataSetName" = "Postavite Vaše Ime"; +"HockeyFeedbackListButtonUserDataSetName" = "Postavite Vaše Ime"; /* User Data Set Email Button Title */ -"HockeyFeedbackListButonUserDataSetEmail" = "Postavite Vaš E-mail"; +"HockeyFeedbackListButtonUserDataSetEmail" = "Postavite Vaš E-mail"; /* User Data With Name Button Title */ -"HockeyFeedbackListButonUserDataWithName" = "Ime: %@"; +"HockeyFeedbackListButtonUserDataWithName" = "Ime: %@"; /* User Data With Email Button Title */ -"HockeyFeedbackListButonUserDataWithEmail" = "E-mail: %@"; +"HockeyFeedbackListButtonUserDataWithEmail" = "E-mail: %@"; /* Button title for deleting all local messages*/ -"HockeyFeedbackListButonDeleteAllMessages" = "Obriši Sve Poruke"; +"HockeyFeedbackListButtonDeleteAllMessages" = "Obriši Sve Poruke"; /* Message pending to be send */ "HockeyFeedbackListMessagePending" = "Čekanje"; diff --git a/Resources/hu.lproj/HockeySDK.strings b/Resources/hu.lproj/HockeySDK.strings index 6146d30f86..bea21b6b13 100644 --- a/Resources/hu.lproj/HockeySDK.strings +++ b/Resources/hu.lproj/HockeySDK.strings @@ -147,25 +147,25 @@ "HockeyFeedbackListNeverUpdated" = "Soha"; /* Provide Feedback Button Title */ -"HockeyFeedbackListButonWriteFeedback" = "Visszajelzés küldése"; +"HockeyFeedbackListButtonWriteFeedback" = "Visszajelzés küldése"; /* Add a Response Button Title */ -"HockeyFeedbackListButonWriteResponse" = "Válasz küldése"; +"HockeyFeedbackListButtonWriteResponse" = "Válasz küldése"; /* User Data Set Name Button Title */ -"HockeyFeedbackListButonUserDataSetName" = "Adja meg a nevét"; +"HockeyFeedbackListButtonUserDataSetName" = "Adja meg a nevét"; /* User Data Set Email Button Title */ -"HockeyFeedbackListButonUserDataSetEmail" = "Adja meg az e-mail címét"; +"HockeyFeedbackListButtonUserDataSetEmail" = "Adja meg az e-mail címét"; /* User Data With Name Button Title */ -"HockeyFeedbackListButonUserDataWithName" = "Név: %@"; +"HockeyFeedbackListButtonUserDataWithName" = "Név: %@"; /* User Data With Email Button Title */ -"HockeyFeedbackListButonUserDataWithEmail" = "E-mail: %@"; +"HockeyFeedbackListButtonUserDataWithEmail" = "E-mail: %@"; /* Button title for deleting all local messages*/ -"HockeyFeedbackListButonDeleteAllMessages" = "Összes üzenet törlése"; +"HockeyFeedbackListButtonDeleteAllMessages" = "Összes üzenet törlése"; /* Message pending to be send */ "HockeyFeedbackListMessagePending" = "Folyamatban"; diff --git a/Resources/it.lproj/HockeySDK.strings b/Resources/it.lproj/HockeySDK.strings index a876bb7b3e..b88dae6e1b 100644 --- a/Resources/it.lproj/HockeySDK.strings +++ b/Resources/it.lproj/HockeySDK.strings @@ -147,25 +147,25 @@ "HockeyFeedbackListNeverUpdated" = "Mai"; /* Provide Feedback Button Title */ -"HockeyFeedbackListButonWriteFeedback" = "Commenta"; +"HockeyFeedbackListButtonWriteFeedback" = "Commenta"; /* Add a Response Button Title */ -"HockeyFeedbackListButonWriteResponse" = "Aggiungi una risposta"; +"HockeyFeedbackListButtonWriteResponse" = "Aggiungi una risposta"; /* User Data Set Name Button Title */ -"HockeyFeedbackListButonUserDataSetName" = "Imposta il tuo nome"; +"HockeyFeedbackListButtonUserDataSetName" = "Imposta il tuo nome"; /* User Data Set Email Button Title */ -"HockeyFeedbackListButonUserDataSetEmail" = "Imposta la tua e-mail"; +"HockeyFeedbackListButtonUserDataSetEmail" = "Imposta la tua e-mail"; /* User Data With Name Button Title */ -"HockeyFeedbackListButonUserDataWithName" = "Nome: %@"; +"HockeyFeedbackListButtonUserDataWithName" = "Nome: %@"; /* User Data With Email Button Title */ -"HockeyFeedbackListButonUserDataWithEmail" = "E-mail: %@"; +"HockeyFeedbackListButtonUserDataWithEmail" = "E-mail: %@"; /* Button title for deleting all local messages*/ -"HockeyFeedbackListButonDeleteAllMessages" = "Cancella tutti i messagi"; +"HockeyFeedbackListButtonDeleteAllMessages" = "Cancella tutti i messagi"; /* Message pending to be send */ "HockeyFeedbackListMessagePending" = "In attesa"; diff --git a/Resources/ja.lproj/HockeySDK.strings b/Resources/ja.lproj/HockeySDK.strings index d1a355527d..1fb856d6e6 100644 --- a/Resources/ja.lproj/HockeySDK.strings +++ b/Resources/ja.lproj/HockeySDK.strings @@ -147,25 +147,25 @@ "HockeyFeedbackListNeverUpdated" = "しない"; /* Provide Feedback Button Title */ -"HockeyFeedbackListButonWriteFeedback" = "フィードバックを送信"; +"HockeyFeedbackListButtonWriteFeedback" = "フィードバックを送信"; /* Add a Response Button Title */ -"HockeyFeedbackListButonWriteResponse" = "応答を追加"; +"HockeyFeedbackListButtonWriteResponse" = "応答を追加"; /* User Data Set Name Button Title */ -"HockeyFeedbackListButonUserDataSetName" = "名前を設定"; +"HockeyFeedbackListButtonUserDataSetName" = "名前を設定"; /* User Data Set Email Button Title */ -"HockeyFeedbackListButonUserDataSetEmail" = "メールを設定"; +"HockeyFeedbackListButtonUserDataSetEmail" = "メールを設定"; /* User Data With Name Button Title */ -"HockeyFeedbackListButonUserDataWithName" = "名前:%@"; +"HockeyFeedbackListButtonUserDataWithName" = "名前:%@"; /* User Data With Email Button Title */ -"HockeyFeedbackListButonUserDataWithEmail" = "メール:%@"; +"HockeyFeedbackListButtonUserDataWithEmail" = "メール:%@"; /* Button title for deleting all local messages*/ -"HockeyFeedbackListButonDeleteAllMessages" = "すべてのメッセージを削除"; +"HockeyFeedbackListButtonDeleteAllMessages" = "すべてのメッセージを削除"; /* Message pending to be send */ "HockeyFeedbackListMessagePending" = "保留中"; diff --git a/Resources/nl.lproj/HockeySDK.strings b/Resources/nl.lproj/HockeySDK.strings index d2eae494de..5c77f2a2d7 100644 --- a/Resources/nl.lproj/HockeySDK.strings +++ b/Resources/nl.lproj/HockeySDK.strings @@ -147,25 +147,25 @@ "HockeyFeedbackListNeverUpdated" = "Nooit"; /* Provide Feedback Button Title */ -"HockeyFeedbackListButonWriteFeedback" = "Stuur feedback"; +"HockeyFeedbackListButtonWriteFeedback" = "Stuur feedback"; /* Add a Response Button Title */ -"HockeyFeedbackListButonWriteResponse" = "Voeg een reactie toe"; +"HockeyFeedbackListButtonWriteResponse" = "Voeg een reactie toe"; /* User Data Set Name Button Title */ -"HockeyFeedbackListButonUserDataSetName" = "Stel uw naam in"; +"HockeyFeedbackListButtonUserDataSetName" = "Stel uw naam in"; /* User Data Set Email Button Title */ -"HockeyFeedbackListButonUserDataSetEmail" = "Stel uw e-mail in"; +"HockeyFeedbackListButtonUserDataSetEmail" = "Stel uw e-mail in"; /* User Data With Name Button Title */ -"HockeyFeedbackListButonUserDataWithName" = "Naam: %@"; +"HockeyFeedbackListButtonUserDataWithName" = "Naam: %@"; /* User Data With Email Button Title */ -"HockeyFeedbackListButonUserDataWithEmail" = "E-mail: %@"; +"HockeyFeedbackListButtonUserDataWithEmail" = "E-mail: %@"; /* Button title for deleting all local messages*/ -"HockeyFeedbackListButonDeleteAllMessages" = "Verwijder alle berichten"; +"HockeyFeedbackListButtonDeleteAllMessages" = "Verwijder alle berichten"; /* Message pending to be send */ "HockeyFeedbackListMessagePending" = "In wachtrij"; diff --git a/Resources/pt-PT.lproj/HockeySDK.strings b/Resources/pt-PT.lproj/HockeySDK.strings index 1580c1f836..63b923a3f3 100644 --- a/Resources/pt-PT.lproj/HockeySDK.strings +++ b/Resources/pt-PT.lproj/HockeySDK.strings @@ -147,25 +147,25 @@ "HockeyFeedbackListNeverUpdated" = "Nunca"; /* Provide Feedback Button Title */ -"HockeyFeedbackListButonWriteFeedback" = "Fornecer comentário"; +"HockeyFeedbackListButtonWriteFeedback" = "Fornecer comentário"; /* Add a Response Button Title */ -"HockeyFeedbackListButonWriteResponse" = "Adicionar uma resposta"; +"HockeyFeedbackListButtonWriteResponse" = "Adicionar uma resposta"; /* User Data Set Name Button Title */ -"HockeyFeedbackListButonUserDataSetName" = "Definir nome"; +"HockeyFeedbackListButtonUserDataSetName" = "Definir nome"; /* User Data Set Email Button Title */ -"HockeyFeedbackListButonUserDataSetEmail" = "Definir e-mail"; +"HockeyFeedbackListButtonUserDataSetEmail" = "Definir e-mail"; /* User Data With Name Button Title */ -"HockeyFeedbackListButonUserDataWithName" = "Nome: %@"; +"HockeyFeedbackListButtonUserDataWithName" = "Nome: %@"; /* User Data With Email Button Title */ -"HockeyFeedbackListButonUserDataWithEmail" = "E-mail: %@"; +"HockeyFeedbackListButtonUserDataWithEmail" = "E-mail: %@"; /* Button title for deleting all local messages*/ -"HockeyFeedbackListButonDeleteAllMessages" = "Eliminar todas as mensagens"; +"HockeyFeedbackListButtonDeleteAllMessages" = "Eliminar todas as mensagens"; /* Message pending to be send */ "HockeyFeedbackListMessagePending" = "Pendente"; diff --git a/Resources/pt.lproj/HockeySDK.strings b/Resources/pt.lproj/HockeySDK.strings index 243c7ab5c8..2651eea04a 100644 --- a/Resources/pt.lproj/HockeySDK.strings +++ b/Resources/pt.lproj/HockeySDK.strings @@ -147,25 +147,25 @@ "HockeyFeedbackListNeverUpdated" = "Nunca"; /* Provide Feedback Button Title */ -"HockeyFeedbackListButonWriteFeedback" = "Fornecer feedback"; +"HockeyFeedbackListButtonWriteFeedback" = "Fornecer feedback"; /* Add a Response Button Title */ -"HockeyFeedbackListButonWriteResponse" = "Adicionar uma resposta"; +"HockeyFeedbackListButtonWriteResponse" = "Adicionar uma resposta"; /* User Data Set Name Button Title */ -"HockeyFeedbackListButonUserDataSetName" = "Informe seu nome"; +"HockeyFeedbackListButtonUserDataSetName" = "Informe seu nome"; /* User Data Set Email Button Title */ -"HockeyFeedbackListButonUserDataSetEmail" = "Informe seu e-mail"; +"HockeyFeedbackListButtonUserDataSetEmail" = "Informe seu e-mail"; /* User Data With Name Button Title */ -"HockeyFeedbackListButonUserDataWithName" = "Nome: %@"; +"HockeyFeedbackListButtonUserDataWithName" = "Nome: %@"; /* User Data With Email Button Title */ -"HockeyFeedbackListButonUserDataWithEmail" = "E-mail: %@"; +"HockeyFeedbackListButtonUserDataWithEmail" = "E-mail: %@"; /* Button title for deleting all local messages*/ -"HockeyFeedbackListButonDeleteAllMessages" = "Excluir todas as mensagens"; +"HockeyFeedbackListButtonDeleteAllMessages" = "Excluir todas as mensagens"; /* Message pending to be send */ "HockeyFeedbackListMessagePending" = "Pendente"; diff --git a/Resources/ru.lproj/HockeySDK.strings b/Resources/ru.lproj/HockeySDK.strings index 5e60e99572..2ef9d0d85c 100644 --- a/Resources/ru.lproj/HockeySDK.strings +++ b/Resources/ru.lproj/HockeySDK.strings @@ -147,25 +147,25 @@ "HockeyFeedbackListNeverUpdated" = "Не было"; /* Provide Feedback Button Title */ -"HockeyFeedbackListButonWriteFeedback" = "Написать отклик"; +"HockeyFeedbackListButtonWriteFeedback" = "Написать отклик"; /* Add a Response Button Title */ -"HockeyFeedbackListButonWriteResponse" = "Добавить ответ"; +"HockeyFeedbackListButtonWriteResponse" = "Добавить ответ"; /* User Data Set Name Button Title */ -"HockeyFeedbackListButonUserDataSetName" = "Ввести ваше имя"; +"HockeyFeedbackListButtonUserDataSetName" = "Ввести ваше имя"; /* User Data Set Email Button Title */ -"HockeyFeedbackListButonUserDataSetEmail" = "Ввести ваш email"; +"HockeyFeedbackListButtonUserDataSetEmail" = "Ввести ваш email"; /* User Data With Name Button Title */ -"HockeyFeedbackListButonUserDataWithName" = "Имя: %@"; +"HockeyFeedbackListButtonUserDataWithName" = "Имя: %@"; /* User Data With Email Button Title */ -"HockeyFeedbackListButonUserDataWithEmail" = "Email: %@"; +"HockeyFeedbackListButtonUserDataWithEmail" = "Email: %@"; /* Button title for deleting all local messages*/ -"HockeyFeedbackListButonDeleteAllMessages" = "Удалить все сообщения"; +"HockeyFeedbackListButtonDeleteAllMessages" = "Удалить все сообщения"; /* Message pending to be send */ "HockeyFeedbackListMessagePending" = "Ожидание"; diff --git a/Resources/zh-Hans.lproj/HockeySDK.strings b/Resources/zh-Hans.lproj/HockeySDK.strings index af0f7b9e59..9df5c18ced 100644 --- a/Resources/zh-Hans.lproj/HockeySDK.strings +++ b/Resources/zh-Hans.lproj/HockeySDK.strings @@ -147,25 +147,25 @@ "HockeyFeedbackListNeverUpdated" = "从不"; /* Provide Feedback Button Title */ -"HockeyFeedbackListButonWriteFeedback" = "提供意见反馈"; +"HockeyFeedbackListButtonWriteFeedback" = "提供意见反馈"; /* Add a Response Button Title */ -"HockeyFeedbackListButonWriteResponse" = "添加一个响应"; +"HockeyFeedbackListButtonWriteResponse" = "添加一个响应"; /* User Data Set Name Button Title */ -"HockeyFeedbackListButonUserDataSetName" = "设置你的姓名"; +"HockeyFeedbackListButtonUserDataSetName" = "设置你的姓名"; /* User Data Set Email Button Title */ -"HockeyFeedbackListButonUserDataSetEmail" = "设置你的邮件"; +"HockeyFeedbackListButtonUserDataSetEmail" = "设置你的邮件"; /* User Data With Name Button Title */ -"HockeyFeedbackListButonUserDataWithName" = "姓名: %@"; +"HockeyFeedbackListButtonUserDataWithName" = "姓名: %@"; /* User Data With Email Button Title */ -"HockeyFeedbackListButonUserDataWithEmail" = "邮件: %@"; +"HockeyFeedbackListButtonUserDataWithEmail" = "邮件: %@"; /* Button title for deleting all local messages*/ -"HockeyFeedbackListButonDeleteAllMessages" = "删除全部信息"; +"HockeyFeedbackListButtonDeleteAllMessages" = "删除全部信息"; /* Message pending to be send */ "HockeyFeedbackListMessagePending" = "待定";