Skip to content

Commit

Permalink
Version 4.16.7
Browse files Browse the repository at this point in the history
  • Loading branch information
acaurrinhos committed Oct 24, 2023
1 parent cd61c55 commit 25e032d
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 7 deletions.
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"displayName": "Cyclos 4 UI",
"description": "The new Cyclos 4 frontend",
"icon": "cyclos.png",
"version": "4.16.6",
"version": "4.16.7",
"license": "MIT",
"author": {
"name": "Cyclos development team",
Expand Down
2 changes: 1 addition & 1 deletion src/app/shared/capture-camera.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ export class CaptureCameraComponent implements AfterViewChecked {
if (error.mediaStreamError) {
if (error.mediaStreamError.name === 'NotAllowedError') {
this.errorHandler(this.i18n.field.camera.noPermission);
} else if (error.mediaStreamError.name === 'NotAllowedError') {
} else if (error.mediaStreamError.name === 'NotFoundError') {
this.errorHandler(this.i18n.field.camera.noCameras);
}
}
Expand Down
6 changes: 5 additions & 1 deletion src/i18n/i18n.nl.json
Original file line number Diff line number Diff line change
Expand Up @@ -506,7 +506,9 @@
"fail": "{text} ✗",
"preface": "Het wachtwoord moet bevatten:",
"fixedLength": "Precies {length} tekens",
"fixedLengthNumbers": "Precies {length} tekens",
"minLength": "Ten minste {count} tekens",
"minLengthNumbers": "Ten minste {count} tekens",
"lowerCaseLetters": "Minstens 1 kleine letter",
"upperCaseLetters": "Minstens 1 hoofdletter",
"numbers": "Minstens 1 cijfer",
Expand Down Expand Up @@ -1887,8 +1889,10 @@
"endDate": "Gepubliceerde einddatum",
"error": {
"cannotBuyFromSeller": "Op het moment, is het niet toegestaan om producten te kopen van deze gebruiker. Neem contact op met de administratie",
"cannotProceedToCheckout": "U kunt niet doorgaan met afrekenen omdat sommige items niet beschikbaar zijn",
"notEnoughStock": "De gevraagde hoeveelheid kan niet worden geleverd, omdat het artikel bijna niet meer op voorraad is.",
"noAvailableAccounts": "De advertentie kan niet worden opgeslagen omdat er geen rekeningen beschikbaar zijn en de prijs niet kan worden ingesteld.\nNeem contact op met de administratie"
"noAvailableAccounts": "De advertentie kan niet worden opgeslagen omdat er geen rekeningen beschikbaar zijn en de prijs niet kan worden ingesteld.\nNeem contact op met de administratie",
"insufficientBalance": "Onvoldoende saldo om door te gaan met de bevestiging van het afrekenen."
},
"deliveryAddress": "Afleveradres",
"deliveryInformation": "Leveringsdetails",
Expand Down
12 changes: 9 additions & 3 deletions src/openapi/cyclos-openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -68,9 +68,9 @@ info:

For details of the deprecated elements (operations and model) please visit the
[deprecation notes
page](https://documentation.cyclos.org/4.16.6/api-deprecation.html)
page](https://documentation.cyclos.org/4.16.7/api-deprecation.html)
for this version.
version: '4.16.6'
version: '4.16.7'
servers:
- url: 'http://root/api'

Expand Down Expand Up @@ -54542,7 +54542,7 @@ components:

- `failed`: The code was wrong (it doesn't match the expected value)

- `maxAttemptsReached`: The max attempts with an invalid code was reached.
- `maxAttemptsReached`: The max attempts with an invalid code was reached. A new code must be sent to the user to restart the verification process.

- `success`: The code was correct and accepted.
type: string
Expand Down Expand Up @@ -58582,12 +58582,16 @@ components:

- `insufficientBalanceForInitialCredit`: A user account's initial credit couldn't be granted because the source account lacked funds

- `maxClientActivationAttemptsReached`: A user has reached the maximum number of attempts to activate a client

- `maxDeviceActivationAttemptsReached`: A user has reached the maximum number of attempts to activate a device by code

- `maxDeviceConfirmationCheckAttemptsReached`: A user has reached the maximum number of attempts to check for a processed device confirmation

- `maxTokenActivationAttemptsReached`: A user has reached the maximum number of attempts to activate a token

- `maxTotpActivationAttemptsReached`: A user has reached the maximum number of attempts to activate an authenticator app (TOTP)

- `maxTotpAttemptsReached`: A user has reached the maximum number of attempts to enter a secret generated by an authenticator app (TOTP)

- `maxUserLocalizationAttemptsReached`: A user has reached the maximum number of attempts to find other users
Expand All @@ -58609,9 +58613,11 @@ components:
- givenVeryBadRefs
- inconsistentBalanceBelowLimit
- insufficientBalanceForInitialCredit
- maxClientActivationAttemptsReached
- maxDeviceActivationAttemptsReached
- maxDeviceConfirmationCheckAttemptsReached
- maxTokenActivationAttemptsReached
- maxTotpActivationAttemptsReached
- maxTotpAttemptsReached
- maxUserLocalizationAttemptsReached
- maxVoucherRedeemAttemptsReached
Expand Down

0 comments on commit 25e032d

Please sign in to comment.