1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-11 05:43:41 +00:00

[PM-1877] Spellcheck (#5237)

* Bug fix: "vaule" -> "value"

* Bug fix: "aria-descibedby" -> "aria-describedby"

* Bug fix: "chararacter" -> "character"

* Fix typos in comments

* Fix typos in documentation

* Fix typo in test description

* Fix typos in sample data: "childen" -> "children"

* Fix typos in sample data: "pargraphs" -> "paragraphs"

* Fixes to test data: "Additinoal", "Informaion" -> "Additional", "Information"

* Fix typo in test data: "dolhpin" -> "dolphin"

* Fix typo in local variable: "attachement" -> "attachment"

* Fix typo in method name: "detachOrganizastion" -> "detachOrganization"

* Fix typo in method name: "getNewlyAddedDomians" -> "getNewlyAddedDomains"

* Fix typo: "EncyptedMessageResponse" -> "EncryptedMessageResponse"

* Fix typo: "miliseconds" -> "milliseconds"

* Fix typo: "authResponsePushNotifiction" -> "authResponsePushNotification"

* Fix typo: "getPushNotifcationObs" -> "getPushNotificationObs"

* Fix typo: "ExpriationDate" -> "ExpirationDate"

* Fix typo: "OrganizationUserResetPasswordDetailsReponse" -> "OrganizationUserResetPasswordDetailsResponse"

* Fix typo: "DISPLAY_TITLE_ATTRIBUE" -> "DISPLAY_TITLE_ATTRIBUTE"

* Fix typo: "credentialretreivalCommandHandler" -> "credentialRetrievalCommandHandler"

* Fix typo: "buildLoginCredntials" -> "buildLoginCredentials"

* Fix typo: "_mappedCredentialsColums" -> "_mappedCredentialsColumns"

* Fix typo: "_mappedPersonalInfoAsIdentiyColumns" -> "_mappedPersonalInfoAsIdentityColumns"

* Fix typo in input name: "StroageGbAdjustment" -> "StorageGbAdjustment"

* Fix typo in const: "encryptionAlogrithm" -> "encryptionAlgorithm"

---------

Co-authored-by: Daniel James Smith <djsmith@web.de>
This commit is contained in:
Jim Hays
2023-04-26 06:16:07 -04:00
committed by GitHub
parent ab25c69cdf
commit 9f7bf1132b
50 changed files with 81 additions and 81 deletions

View File

@@ -74,7 +74,7 @@ export class LoginWithDeviceComponent
//gets signalR push notification
this.authService
.getPushNotifcationObs$()
.getPushNotificationObs$()
.pipe(takeUntil(this.destroy$))
.subscribe((id) => {
this.confirmResponse(id);
@@ -126,7 +126,7 @@ export class LoginWithDeviceComponent
return;
}
const credentials = await this.buildLoginCredntials(requestId, response);
const credentials = await this.buildLoginCredentials(requestId, response);
const loginResponse = await this.authService.logIn(credentials);
if (loginResponse.requiresTwoFactor) {
@@ -189,7 +189,7 @@ export class LoginWithDeviceComponent
);
}
private async buildLoginCredntials(
private async buildLoginCredentials(
requestId: string,
response: AuthRequestResponse
): Promise<PasswordlessLogInCredentials> {

View File

@@ -17,7 +17,7 @@ export class ColorPasswordPipe implements PipeTransform {
protected generateTemplate(
password: string,
templateGenerator: (chararacter: string, type: string, index?: number) => string
templateGenerator: (character: string, type: string, index?: number) => string
) {
// Convert to an array to handle cases that stings have special characters, ie: emoji.
const passwordArray = Array.from(password);

View File

@@ -24,7 +24,7 @@ $card-icons-dark: (
);
.credit-card-icon {
display: block; // Resolves the parent container being slighly to big
display: block; // Resolves the parent container being slightly to big
height: 19px;
width: 24px;
background-size: contain;

View File

@@ -211,7 +211,7 @@ export class GeneratorComponent implements OnInit {
}
private normalizePasswordOptions() {
// Application level normalize options depedent on class variables
// Application level normalize options dependent on class variables
this.passwordOptions.ambiguous = !this.avoidAmbiguous;
if (

View File

@@ -22,7 +22,7 @@ enum BrowserPath {
enum DateField {
DeletionDate = "deletion",
ExpriationDate = "expiration",
ExpirationDate = "expiration",
}
// Value = hours
@@ -135,10 +135,10 @@ export class EffluxDatesComponent implements OnInit {
}
default: {
const now = new Date();
const miliseconds = now.setTime(
const milliseconds = now.setTime(
now.getTime() + (this.selectedDeletionDatePreset.value as number) * 60 * 60 * 1000
);
return new Date(miliseconds).toString();
return new Date(milliseconds).toString();
}
}
}
@@ -166,10 +166,10 @@ export class EffluxDatesComponent implements OnInit {
}
default: {
const now = new Date();
const miliseconds = now.setTime(
const milliseconds = now.setTime(
now.getTime() + (this.selectedExpirationDatePreset.value as number) * 60 * 60 * 1000
);
return new Date(miliseconds).toString();
return new Date(milliseconds).toString();
}
}
}
@@ -180,7 +180,7 @@ export class EffluxDatesComponent implements OnInit {
}
get safariExpirationTimePresetOptions() {
return this.safariTimePresetOptions(DateField.ExpriationDate);
return this.safariTimePresetOptions(DateField.ExpirationDate);
}
private get nextWeek(): Date {
@@ -285,7 +285,7 @@ export class EffluxDatesComponent implements OnInit {
// loop through each hour on a 12 hour system
for (let h = 1; h <= 12; h++) {
// loop through each minute in the hour using the skip to incriment
// loop through each minute in the hour using the skip to increment
for (let m = 0; m < 60; m += minuteIncrementer) {
// init the final strings that will be added to the lists
let hour = h.toString();
@@ -333,7 +333,7 @@ export class EffluxDatesComponent implements OnInit {
// determine if an unsupported value already exists on the send & add that to the top of the option list
// example: if the Send was created with a different client
if (field === DateField.ExpriationDate && this.initialExpirationDate != null && this.editMode) {
if (field === DateField.ExpirationDate && this.initialExpirationDate != null && this.editMode) {
const previousValue: TimeOption = {
twelveHour: this.datePipe.transform(this.initialExpirationDate, "hh:mm a"),
twentyFourHour: this.datePipe.transform(this.initialExpirationDate, "HH:mm"),