From b8267d43297fa7f7ac008f6379380cf80b48171f Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Tue, 27 Feb 2018 13:27:07 -0500 Subject: [PATCH] Uppercase Bitwarden --- README.md | 8 +++- src/Android/Autofill/AutofillService.cs | 2 +- src/Android/AutofillActivity.cs | 2 +- src/Android/AutofillService.cs | 2 +- src/Android/MainActivity.cs | 2 +- src/Android/Properties/AndroidManifest.xml | 2 +- src/Android/Properties/AssemblyInfo.cs | 2 +- src/Android/Resources/values/strings.xml | 6 +-- src/Android/Utilities.cs | 6 +-- src/App/Resources/AppResources.Designer.cs | 50 ++++++++++---------- src/App/Resources/AppResources.resx | 50 ++++++++++---------- src/UWP/Package.appxmanifest | 2 +- src/iOS.Core/Properties/AssemblyInfo.cs | 2 +- src/iOS.Extension/Info.plist | 4 +- src/iOS.Extension/Properties/AssemblyInfo.cs | 2 +- src/iOS/Info.plist | 4 +- src/iOS/Properties/AssemblyInfo.cs | 2 +- store/apple/en/copy.resx | 15 ++++-- store/google/en/copy.resx | 12 +++-- 19 files changed, 93 insertions(+), 82 deletions(-) diff --git a/README.md b/README.md index b514826d6..4c6a95457 100644 --- a/README.md +++ b/README.md @@ -2,11 +2,11 @@ [![Crowdin](https://d322cqt584bo4o.cloudfront.net/bitwarden-mobile/localized.svg)](https://crowdin.com/project/bitwarden-mobile) [![Join the chat at https://gitter.im/bitwarden/Lobby](https://badges.gitter.im/bitwarden/Lobby.svg)](https://gitter.im/bitwarden/Lobby) -# bitwarden mobile +# Bitwarden Mobile Application Get it on Google Play -The bitwarden mobile application is written in C# with Xamarin Android, Xamarin iOS, UWP, and Xamarin Forms. +The Bitwarden mobile application is written in C# with Xamarin Android, Xamarin iOS, UWP, and Xamarin Forms. @@ -16,10 +16,14 @@ The bitwarden mobile application is written in C# with Xamarin Android, Xamarin - [Visual Studio](https://store.xamarin.com/) +**API endpoint** + By default the app is targeting the production API. If you are running the [Core](https://github.com/bitwarden/core) API locally, you'll need to switch the app to target your local instance. Open `src/App/Utilities/ApiHttpClient.cs` and `src/App/Utilities/IdentityHttpClient.cs` and set the `BaseAddress` to your local API endpoints (ex. `new Uri("http://localhost:5000")`). Alternatively, you can also adjust the environment endpoints from the environment settings page on the home screen of the app (log out). +**Run the app** + After restoring the nuget packages, you can now build and run the app. # Contribute diff --git a/src/Android/Autofill/AutofillService.cs b/src/Android/Autofill/AutofillService.cs index 12adf851d..43441a370 100644 --- a/src/Android/Autofill/AutofillService.cs +++ b/src/Android/Autofill/AutofillService.cs @@ -14,7 +14,7 @@ using XLabs.Ioc; namespace Bit.Android.Autofill { - [Service(Permission = Manifest.Permission.BindAutofillService, Label = "bitwarden")] + [Service(Permission = Manifest.Permission.BindAutofillService, Label = "Bitwarden")] [IntentFilter(new string[] { "android.service.autofill.AutofillService" })] [MetaData("android.autofill", Resource = "@xml/autofillservice")] [Register("com.x8bit.bitwarden.Autofill.AutofillService")] diff --git a/src/Android/AutofillActivity.cs b/src/Android/AutofillActivity.cs index 6b3ad9aef..724ff36d0 100644 --- a/src/Android/AutofillActivity.cs +++ b/src/Android/AutofillActivity.cs @@ -7,7 +7,7 @@ using Android.Views; namespace Bit.Android { [Activity(Theme = "@style/BitwardenTheme.Splash", - Label = "bitwarden", + Label = "Bitwarden", Icon = "@drawable/icon", WindowSoftInputMode = SoftInput.StateHidden)] public class AutofillActivity : Activity diff --git a/src/Android/AutofillService.cs b/src/Android/AutofillService.cs index 4e353ecf7..43ec3d934 100644 --- a/src/Android/AutofillService.cs +++ b/src/Android/AutofillService.cs @@ -12,7 +12,7 @@ using Bit.App.Resources; namespace Bit.Android { - [Service(Permission = global::Android.Manifest.Permission.BindAccessibilityService, Label = "bitwarden")] + [Service(Permission = global::Android.Manifest.Permission.BindAccessibilityService, Label = "Bitwarden")] [IntentFilter(new string[] { "android.accessibilityservice.AccessibilityService" })] [MetaData("android.accessibilityservice", Resource = "@xml/accessibilityservice")] public class AutofillService : AccessibilityService diff --git a/src/Android/MainActivity.cs b/src/Android/MainActivity.cs index 8d0cf4885..e9192b149 100644 --- a/src/Android/MainActivity.cs +++ b/src/Android/MainActivity.cs @@ -21,7 +21,7 @@ using Bit.App.Enums; namespace Bit.Android { - [Activity(Label = "bitwarden", + [Activity(Label = "Bitwarden", Icon = "@drawable/icon", ConfigurationChanges = ConfigChanges.ScreenSize | ConfigChanges.Orientation, Exported = false)] diff --git a/src/Android/Properties/AndroidManifest.xml b/src/Android/Properties/AndroidManifest.xml index 466435d96..596e03e81 100644 --- a/src/Android/Properties/AndroidManifest.xml +++ b/src/Android/Properties/AndroidManifest.xml @@ -12,7 +12,7 @@ - + It can be difficult and insecure for users to switch between apps to copy/paste username and password information - from their bitwarden vault.\n\nUsing this accessibility service allows bitwarden to detect and read input fields on - your device\'s screen. Whenever bitwarden detects a password field on the screen a notification will appear that allows - you to quickly access your bitwarden vault and automatically fill (auto-fill) the correct login information into the + from their Bitwarden vault.\n\nUsing this accessibility service allows Bitwarden to detect and read input fields on + your device\'s screen. Whenever Bitwarden detects a password field on the screen a notification will appear that allows + you to quickly access your Bitwarden vault and automatically fill (auto-fill) the correct login information into the necessary fields. diff --git a/src/Android/Utilities.cs b/src/Android/Utilities.cs index bce009ec1..955561ca5 100644 --- a/src/Android/Utilities.cs +++ b/src/Android/Utilities.cs @@ -38,7 +38,7 @@ namespace Bit.Android emailIntent.SetType("plain/text"); emailIntent.PutExtra(Intent.ExtraEmail, new String[] { "hello@bitwarden.com" }); - emailIntent.PutExtra(Intent.ExtraSubject, "bitwarden Crash Report"); + emailIntent.PutExtra(Intent.ExtraSubject, "Bitwarden Crash Report"); emailIntent.PutExtra(Intent.ExtraText, FormatText(text, includeSecurityProviders)); Application.Context.StartActivity(Intent.CreateChooser(emailIntent, "Send mail...")); @@ -50,7 +50,7 @@ namespace Bit.Android emailIntent.SetType("plain/text"); emailIntent.PutExtra(Intent.ExtraEmail, new String[] { "hello@bitwarden.com" }); - emailIntent.PutExtra(Intent.ExtraSubject, "bitwarden Crash Report"); + emailIntent.PutExtra(Intent.ExtraSubject, "Bitwarden Crash Report"); emailIntent.PutExtra(Intent.ExtraText, FormatText(text, includeSecurityProviders)); act.StartActivity(Intent.CreateChooser(emailIntent, "Send mail...")); @@ -68,7 +68,7 @@ namespace Bit.Android private static string FormatText(string text, bool includeSecurityProviders = true) { - var crashMessage = "bitwarden has crashed. Please send this email to our support team so that we can help " + + var crashMessage = "Bitwarden has crashed. Please send this email to our support team so that we can help " + "resolve the problem for you. Thank you."; text = crashMessage + "\n\n =============================================== \n\n" + text; diff --git a/src/App/Resources/AppResources.Designer.cs b/src/App/Resources/AppResources.Designer.cs index c31a2e079..6cb2eb525 100644 --- a/src/App/Resources/AppResources.Designer.cs +++ b/src/App/Resources/AppResources.Designer.cs @@ -295,7 +295,7 @@ namespace Bit.App.Resources { } /// - /// Looks up a localized string similar to Use the bitwarden accessibility service to auto-fill your logins across apps and the web.. + /// Looks up a localized string similar to Use the Bitwarden accessibility service to auto-fill your logins across apps and the web.. /// public static string AutofillAccessibilityDescription { get { @@ -385,7 +385,7 @@ namespace Bit.App.Resources { } /// - /// Looks up a localized string similar to The bitwarden auto-fill service uses the Android Autofill Framework to assist in filling logins, credit cards, and identity information into other apps on your device.. + /// Looks up a localized string similar to The Bitwarden auto-fill service uses the Android Autofill Framework to assist in filling logins, credit cards, and identity information into other apps on your device.. /// public static string AutofillServiceDescription { get { @@ -394,7 +394,7 @@ namespace Bit.App.Resources { } /// - /// Looks up a localized string similar to Auto-fill with bitwarden. + /// Looks up a localized string similar to Auto-fill with Bitwarden. /// public static string AutofillWithBitwarden { get { @@ -430,7 +430,7 @@ namespace Bit.App.Resources { } /// - /// Looks up a localized string similar to bitwarden. + /// Looks up a localized string similar to Bitwarden. /// public static string Bitwarden { get { @@ -439,7 +439,7 @@ namespace Bit.App.Resources { } /// - /// Looks up a localized string similar to bitwarden App Extension. + /// Looks up a localized string similar to Bitwarden App Extension. /// public static string BitwardenAppExtension { get { @@ -448,7 +448,7 @@ namespace Bit.App.Resources { } /// - /// Looks up a localized string similar to The easiest way to add new logins to your vault is from the bitwarden App Extension. Learn more about using the bitwarden App Extension by navigating to the "Tools" screen.. + /// Looks up a localized string similar to The easiest way to add new logins to your vault is from the Bitwarden App Extension. Learn more about using the Bitwarden App Extension by navigating to the "Tools" screen.. /// public static string BitwardenAppExtensionAlert { get { @@ -457,7 +457,7 @@ namespace Bit.App.Resources { } /// - /// Looks up a localized string similar to Use bitwarden in Safari and other apps to auto-fill your logins.. + /// Looks up a localized string similar to Use Bitwarden in Safari and other apps to auto-fill your logins.. /// public static string BitwardenAppExtensionDescription { get { @@ -466,7 +466,7 @@ namespace Bit.App.Resources { } /// - /// Looks up a localized string similar to Use the bitwarden accessibility service to auto-fill your logins.. + /// Looks up a localized string similar to Use the Bitwarden accessibility service to auto-fill your logins.. /// public static string BitwardenAutofillAccessibilityServiceDescription { get { @@ -484,7 +484,7 @@ namespace Bit.App.Resources { } /// - /// Looks up a localized string similar to bitwarden Auto-fill Service. + /// Looks up a localized string similar to Bitwarden Auto-fill Service. /// public static string BitwardenAutofillService { get { @@ -493,7 +493,7 @@ namespace Bit.App.Resources { } /// - /// Looks up a localized string similar to The easiest way to add new logins to your vault is from the bitwarden Auto-fill Service. Learn more about using the bitwarden Auto-fill Service by navigating to the "Tools" screen.. + /// Looks up a localized string similar to The easiest way to add new logins to your vault is from the Bitwarden Auto-fill Service. Learn more about using the Bitwarden Auto-fill Service by navigating to the "Tools" screen.. /// public static string BitwardenAutofillServiceAlert { get { @@ -502,7 +502,7 @@ namespace Bit.App.Resources { } /// - /// Looks up a localized string similar to Use the bitwarden auto-fill service to fill logins, credit cards, and identity information into other apps.. + /// Looks up a localized string similar to Use the Bitwarden auto-fill service to fill logins, credit cards, and identity information into other apps.. /// public static string BitwardenAutofillServiceDescription { get { @@ -520,7 +520,7 @@ namespace Bit.App.Resources { } /// - /// Looks up a localized string similar to When you see a bitwarden auto-fill notification, you can tap it to launch the auto-fill service.. + /// Looks up a localized string similar to When you see a Bitwarden auto-fill notification, you can tap it to launch the auto-fill service.. /// public static string BitwardenAutofillServiceNotification { get { @@ -574,7 +574,7 @@ namespace Bit.App.Resources { } /// - /// Looks up a localized string similar to 1. On the Android Accessibility Settings screen, touch "bitwarden" under the Services heading.. + /// Looks up a localized string similar to 1. On the Android Accessibility Settings screen, touch "Bitwarden" under the Services heading.. /// public static string BitwardenAutofillServiceStep1 { get { @@ -1222,7 +1222,7 @@ namespace Bit.App.Resources { } /// - /// Looks up a localized string similar to In Safari, find bitwarden using the share icon (hint: scroll to the right on the bottom row of the menu).. + /// Looks up a localized string similar to In Safari, find Bitwarden using the share icon (hint: scroll to the right on the bottom row of the menu).. /// public static string ExtensionInSafari { get { @@ -1267,7 +1267,7 @@ namespace Bit.App.Resources { } /// - /// Looks up a localized string similar to In Safari and Chrome, find bitwarden using the share icon (hint: scroll to the right on the bottom row of the share menu).. + /// Looks up a localized string similar to In Safari and Chrome, find Bitwarden using the share icon (hint: scroll to the right on the bottom row of the share menu).. /// public static string ExtensionSetup2 { get { @@ -1276,7 +1276,7 @@ namespace Bit.App.Resources { } /// - /// Looks up a localized string similar to Tap the bitwarden icon in the menu to launch the extension.. + /// Looks up a localized string similar to Tap the Bitwarden icon in the menu to launch the extension.. /// public static string ExtensionTapIcon { get { @@ -1285,7 +1285,7 @@ namespace Bit.App.Resources { } /// - /// Looks up a localized string similar to To turn on bitwarden in Safari and other apps, tap the "more" icon on the bottom row of the menu.. + /// Looks up a localized string similar to To turn on Bitwarden in Safari and other apps, tap the "more" icon on the bottom row of the menu.. /// public static string ExtensionTurnOn { get { @@ -2050,7 +2050,7 @@ namespace Bit.App.Resources { } /// - /// Looks up a localized string similar to You must log into the main bitwarden app before you can use the extension.. + /// Looks up a localized string similar to You must log into the main Bitwarden app before you can use the extension.. /// public static string MustLogInMainApp { get { @@ -2257,7 +2257,7 @@ namespace Bit.App.Resources { } /// - /// Looks up a localized string similar to Option defaults are set from the main bitwarden app's password generator tool.. + /// Looks up a localized string similar to Option defaults are set from the main Bitwarden app's password generator tool.. /// public static string OptionDefaults { get { @@ -2383,7 +2383,7 @@ namespace Bit.App.Resources { } /// - /// Looks up a localized string similar to bitwarden keeps your vault automatically synced by using push notifications. For the best possible experience, please select "Allow" on the following prompt when asked to enable push notifications.. + /// Looks up a localized string similar to Bitwarden keeps your vault automatically synced by using push notifications. For the best possible experience, please select "Allow" on the following prompt when asked to enable push notifications.. /// public static string PushNotificationAlert { get { @@ -2410,7 +2410,7 @@ namespace Bit.App.Resources { } /// - /// Looks up a localized string similar to App Store ratings are reset with every new version of bitwarden. Please consider helping us out with a good review!. + /// Looks up a localized string similar to App Store ratings are reset with every new version of Bitwarden. Please consider helping us out with a good review!. /// public static string RateTheAppDescriptionAppStore { get { @@ -2554,7 +2554,7 @@ namespace Bit.App.Resources { } /// - /// Looks up a localized string similar to Specify the base URL of your on-premise hosted bitwarden installation.. + /// Looks up a localized string similar to Specify the base URL of your on-premise hosted Bitwarden installation.. /// public static string SelfHostedEnvironmentFooter { get { @@ -3094,7 +3094,7 @@ namespace Bit.App.Resources { } /// - /// Looks up a localized string similar to Visit our website to get help, news, email us, and/or learn more about how to use bitwarden.. + /// Looks up a localized string similar to Visit our website to get help, news, email us, and/or learn more about how to use Bitwarden.. /// public static string VisitOurWebsiteDescription { get { @@ -3112,7 +3112,7 @@ namespace Bit.App.Resources { } /// - /// Looks up a localized string similar to bitwarden Web Vault. + /// Looks up a localized string similar to Bitwarden Web Vault. /// public static string WebVault { get { @@ -3121,7 +3121,7 @@ namespace Bit.App.Resources { } /// - /// Looks up a localized string similar to Manage your items from any web browser with the bitwarden web vault.. + /// Looks up a localized string similar to Manage your items from any web browser with the Bitwarden web vault.. /// public static string WebVaultDescription { get { diff --git a/src/App/Resources/AppResources.resx b/src/App/Resources/AppResources.resx index cf9d5e5b1..953253a55 100644 --- a/src/App/Resources/AppResources.resx +++ b/src/App/Resources/AppResources.resx @@ -140,7 +140,7 @@ Navigate back to the previous screen. - bitwarden + Bitwarden App name. Shouldn't ever change. @@ -381,7 +381,7 @@ Visit Our Website - Visit our website to get help, news, email us, and/or learn more about how to use bitwarden. + Visit our website to get help, news, email us, and/or learn more about how to use Bitwarden. Website @@ -403,7 +403,7 @@ App Extension - Use the bitwarden accessibility service to auto-fill your logins across apps and the web. + Use the Bitwarden accessibility service to auto-fill your logins across apps and the web. Auto-fill Service @@ -412,19 +412,19 @@ Avoid Ambiguous Characters - bitwarden App Extension + Bitwarden App Extension - The easiest way to add new logins to your vault is from the bitwarden App Extension. Learn more about using the bitwarden App Extension by navigating to the "Tools" screen. + The easiest way to add new logins to your vault is from the Bitwarden App Extension. Learn more about using the Bitwarden App Extension by navigating to the "Tools" screen. - Use bitwarden in Safari and other apps to auto-fill your logins. + Use Bitwarden in Safari and other apps to auto-fill your logins. - bitwarden Auto-fill Service + Bitwarden Auto-fill Service - Use the bitwarden accessibility service to auto-fill your logins. + Use the Bitwarden accessibility service to auto-fill your logins. Change Email @@ -482,7 +482,7 @@ Enable App Extension - In Safari, find bitwarden using the share icon (hint: scroll to the right on the bottom row of the menu). + In Safari, find Bitwarden using the share icon (hint: scroll to the right on the bottom row of the menu). Safari is the name of apple's web browser @@ -498,13 +498,13 @@ Your logins are now easily accessable from Safari, Chrome, and other supported apps. - In Safari and Chrome, find bitwarden using the share icon (hint: scroll to the right on the bottom row of the share menu). + In Safari and Chrome, find Bitwarden using the share icon (hint: scroll to the right on the bottom row of the share menu). - Tap the bitwarden icon in the menu to launch the extension. + Tap the Bitwarden icon in the menu to launch the extension. - To turn on bitwarden in Safari and other apps, tap the "more" icon on the bottom row of the menu. + To turn on Bitwarden in Safari and other apps, tap the "more" icon on the bottom row of the menu. Favorite @@ -591,7 +591,7 @@ More Settings - You must log into the main bitwarden app before you can use the extension. + You must log into the main Bitwarden app before you can use the extension. Never @@ -616,7 +616,7 @@ Confirmation, like "Ok, I understand it" - Option defaults are set from the main bitwarden app's password generator tool. + Option defaults are set from the main Bitwarden app's password generator tool. Options @@ -640,7 +640,7 @@ Are you sure you want to overwrite the current password? - bitwarden keeps your vault automatically synced by using push notifications. For the best possible experience, please select "Allow" on the following prompt when asked to enable push notifications. + Bitwarden keeps your vault automatically synced by using push notifications. For the best possible experience, please select "Allow" on the following prompt when asked to enable push notifications. Push notifications for apple products @@ -650,7 +650,7 @@ Please consider helping us out with a good review! - App Store ratings are reset with every new version of bitwarden. Please consider helping us out with a good review! + App Store ratings are reset with every new version of Bitwarden. Please consider helping us out with a good review! Regenerate Password @@ -726,10 +726,10 @@ View Item - bitwarden Web Vault + Bitwarden Web Vault - Manage your items from any web browser with the bitwarden web vault. + Manage your items from any web browser with the Bitwarden web vault. Lost authenticator app? @@ -756,7 +756,7 @@ This is used for the autofill service. ex. "There are no items in your vault for twitter.com". - When you see a bitwarden auto-fill notification, you can tap it to launch the auto-fill service. + When you see a Bitwarden auto-fill notification, you can tap it to launch the auto-fill service. Tap this notification to auto-fill an item from your vault. @@ -765,7 +765,7 @@ Open Accessibility Settings - 1. On the Android Accessibility Settings screen, touch "bitwarden" under the Services heading. + 1. On the Android Accessibility Settings screen, touch "Bitwarden" under the Services heading. 2. Switch on the toggle and press OK to accept. @@ -783,7 +783,7 @@ Beta - The easiest way to add new logins to your vault is from the bitwarden Auto-fill Service. Learn more about using the bitwarden Auto-fill Service by navigating to the "Tools" screen. + The easiest way to add new logins to your vault is from the Bitwarden Auto-fill Service. Learn more about using the Bitwarden Auto-fill Service by navigating to the "Tools" screen. Auto-fill @@ -1009,7 +1009,7 @@ Self-hosted Environment - Specify the base URL of your on-premise hosted bitwarden installation. + Specify the base URL of your on-premise hosted Bitwarden installation. Server URL @@ -1180,7 +1180,7 @@ Icons Server URL - Auto-fill with bitwarden + Auto-fill with Bitwarden Vault is locked @@ -1201,10 +1201,10 @@ Auto-fill Accessibility Service - The bitwarden auto-fill service uses the Android Autofill Framework to assist in filling logins, credit cards, and identity information into other apps on your device. + The Bitwarden auto-fill service uses the Android Autofill Framework to assist in filling logins, credit cards, and identity information into other apps on your device. - Use the bitwarden auto-fill service to fill logins, credit cards, and identity information into other apps. + Use the Bitwarden auto-fill service to fill logins, credit cards, and identity information into other apps. Open Autofill Settings diff --git a/src/UWP/Package.appxmanifest b/src/UWP/Package.appxmanifest index b7b11974f..6a2906435 100644 --- a/src/UWP/Package.appxmanifest +++ b/src/UWP/Package.appxmanifest @@ -15,7 +15,7 @@ - + diff --git a/src/iOS.Core/Properties/AssemblyInfo.cs b/src/iOS.Core/Properties/AssemblyInfo.cs index cd7050b3d..5fd5acd93 100644 --- a/src/iOS.Core/Properties/AssemblyInfo.cs +++ b/src/iOS.Core/Properties/AssemblyInfo.cs @@ -9,7 +9,7 @@ using System.Runtime.InteropServices; [assembly: AssemblyDescription("")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("8bit Solutions LLC")] -[assembly: AssemblyProduct("bitwarden")] +[assembly: AssemblyProduct("Bitwarden")] [assembly: AssemblyCopyright("Copyright © 2016")] [assembly: AssemblyTrademark("")] [assembly: AssemblyCulture("")] diff --git a/src/iOS.Extension/Info.plist b/src/iOS.Extension/Info.plist index 3d49059c3..4740d4172 100644 --- a/src/iOS.Extension/Info.plist +++ b/src/iOS.Extension/Info.plist @@ -59,9 +59,9 @@ ITSEncryptionExportComplianceCode ecf076d3-4824-4d7b-b716-2a9a47d7d296 CFBundleName - bitwarden extension + Bitwarden Extension CFBundleDisplayName - bitwarden + Bitwarden UIRequiredDeviceCapabilities arm64 diff --git a/src/iOS.Extension/Properties/AssemblyInfo.cs b/src/iOS.Extension/Properties/AssemblyInfo.cs index a3db99f9f..183860705 100644 --- a/src/iOS.Extension/Properties/AssemblyInfo.cs +++ b/src/iOS.Extension/Properties/AssemblyInfo.cs @@ -8,7 +8,7 @@ using System.Runtime.InteropServices; [assembly: AssemblyDescription("")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("8bit Solutions LLC")] -[assembly: AssemblyProduct("bitwarden")] +[assembly: AssemblyProduct("Bitwarden")] [assembly: AssemblyCopyright("Copyright © 2016")] [assembly: AssemblyTrademark("")] [assembly: AssemblyCulture("")] diff --git a/src/iOS/Info.plist b/src/iOS/Info.plist index 1dfcf4467..be682cb62 100644 --- a/src/iOS/Info.plist +++ b/src/iOS/Info.plist @@ -24,7 +24,7 @@ MinimumOSVersion 9.0 CFBundleDisplayName - bitwarden + Bitwarden CFBundleIdentifier com.8bit.bitwarden CFBundleVersion @@ -60,7 +60,7 @@ ITSEncryptionExportComplianceCode ecf076d3-4824-4d7b-b716-2a9a47d7d296 CFBundleName - bitwarden + Bitwarden UIRequiredDeviceCapabilities arm64 diff --git a/src/iOS/Properties/AssemblyInfo.cs b/src/iOS/Properties/AssemblyInfo.cs index 26ad613e9..054a5c8df 100644 --- a/src/iOS/Properties/AssemblyInfo.cs +++ b/src/iOS/Properties/AssemblyInfo.cs @@ -8,7 +8,7 @@ using System.Runtime.InteropServices; [assembly: AssemblyDescription("")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("8bit Solutions LLC")] -[assembly: AssemblyProduct("bitwarden")] +[assembly: AssemblyProduct("Bitwarden")] [assembly: AssemblyCopyright("Copyright © 2016")] [assembly: AssemblyTrademark("")] [assembly: AssemblyCulture("")] diff --git a/store/apple/en/copy.resx b/store/apple/en/copy.resx index bab914a9e..c75d4c612 100644 --- a/store/apple/en/copy.resx +++ b/store/apple/en/copy.resx @@ -118,19 +118,24 @@ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - bitwarden Password Manager + Bitwarden Password Manager + Max 30 characters - bitwarden is the easiest and safest way to store all of your logins and passwords while conveniently keeping them synced between all of your devices. The bitwarden app extension allows you to quickly log into any website through Safari or Chrome and is supported by hundreds of other popular apps. + Bitwarden is the easiest and safest way to store all of your logins and passwords while conveniently keeping them synced between all of your devices. The Bitwarden app extension allows you to quickly log into any website through Safari or Chrome and is supported by hundreds of other popular apps. Password theft is a serious problem. The websites and apps that you use are under attack every day. Security breaches occur and your passwords are stolen. When you reuse the same passwords across apps and websites hackers can easily access your email, bank, and other important accounts. -Security experts recommend that you use a different, randomly generated password for every account that you create. But how do you manage all those passwords? bitwarden makes it easy for you to create, store, and access your passwords. +Security experts recommend that you use a different, randomly generated password for every account that you create. But how do you manage all those passwords? Bitwarden makes it easy for you to create, store, and access your passwords. -bitwarden stores all of your logins in an encrypted vault that syncs across all of your devices. Since it's fully encrypted before it ever leaves your device, only you have access to your data. Not even the team at bitwarden can read your data, even if we wanted to. Your data is sealed with AES-256 bit encryption, salted hashing, and PBKDF2 SHA-256. +Bitwarden stores all of your logins in an encrypted vault that syncs across all of your devices. Since it's fully encrypted before it ever leaves your device, only you have access to your data. Not even the team at Bitwarden can read your data, even if we wanted to. Your data is sealed with AES-256 bit encryption, salted hashing, and PBKDF2 SHA-256. + +Bitwarden is 100% open source software. The source code for Bitwarden is hosted on GitHub and everyone is free to review, audit, and contribute to the Bitwarden codebase. + Max 4000 characters - bitwarden,bit warden,8bit,password,login,free password manager,password manager,login manager + bit warden,8bit,password,free password manager,password manager,login manager + Max 100 characters Manage all your logins and passwords from a secure vault diff --git a/store/google/en/copy.resx b/store/google/en/copy.resx index 79fa2a49c..05ed0a8af 100644 --- a/store/google/en/copy.resx +++ b/store/google/en/copy.resx @@ -118,21 +118,23 @@ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - bitwarden Password Manager + Bitwarden Password Manager Max 30 characters - bitwarden is a login and password manager that helps keep you safe while online. + Bitwarden is a login and password manager that helps keep you safe while online. Max 80 characters - bitwarden is the easiest and safest way to store all of your logins and passwords while conveniently keeping them synced between all of your devices. + Bitwarden is the easiest and safest way to store all of your logins and passwords while conveniently keeping them synced between all of your devices. Password theft is a serious problem. The websites and apps that you use are under attack every day. Security breaches occur and your passwords are stolen. When you reuse the same passwords across apps and websites hackers can easily access your email, bank, and other important accounts. -Security experts recommend that you use a different, randomly generated password for every account that you create. But how do you manage all those passwords? bitwarden makes it easy for you to create, store, and access your passwords. +Security experts recommend that you use a different, randomly generated password for every account that you create. But how do you manage all those passwords? Bitwarden makes it easy for you to create, store, and access your passwords. -bitwarden stores all of your logins in an encrypted vault that syncs across all of your devices. Since it's fully encrypted before it ever leaves your device, only you have access to your data. Not even the team at bitwarden can read your data, even if we wanted to. Your data is sealed with AES-256 bit encryption, salted hashing, and PBKDF2 SHA-256. +Bitwarden stores all of your logins in an encrypted vault that syncs across all of your devices. Since it's fully encrypted before it ever leaves your device, only you have access to your data. Not even the team at Bitwarden can read your data, even if we wanted to. Your data is sealed with AES-256 bit encryption, salted hashing, and PBKDF2 SHA-256. + +Bitwarden is 100% open source software. The source code for Bitwarden is hosted on GitHub and everyone is free to review, audit, and contribute to the Bitwarden codebase. Max 4000 characters