http://example.com/#/foo
,\n * and `PathLocationStrategy` produces\n * http://example.com/foo
as an equivalent URL.\n *\n * See these two classes for more.\n *\n * @publicApi\n */\nclass LocationStrategy {\n historyGo(relativePosition) {\n throw new Error(ngDevMode ? 'Not implemented' : '');\n }\n static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"19.2.2\", ngImport: i0, type: LocationStrategy, deps: [], target: i0.ɵɵFactoryTarget.Injectable });\n static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: \"12.0.0\", version: \"19.2.2\", ngImport: i0, type: LocationStrategy, providedIn: 'root', useFactory: () => inject(PathLocationStrategy) });\n}\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"19.2.2\", ngImport: i0, type: LocationStrategy, decorators: [{\n type: Injectable,\n args: [{ providedIn: 'root', useFactory: () => inject(PathLocationStrategy) }]\n }] });\n/**\n * A predefined DI token for the base href\n * to be used with the `PathLocationStrategy`.\n * The base href is the URL prefix that should be preserved when generating\n * and recognizing URLs.\n *\n * @usageNotes\n *\n * The following example shows how to use this token to configure the root app injector\n * with a base href value, so that the DI framework can supply the dependency anywhere in the app.\n *\n * ```ts\n * import {NgModule} from '@angular/core';\n * import {APP_BASE_HREF} from '@angular/common';\n *\n * @NgModule({\n * providers: [{provide: APP_BASE_HREF, useValue: '/my/app'}]\n * })\n * class AppModule {}\n * ```\n *\n * @publicApi\n */\nconst APP_BASE_HREF = new InjectionToken(ngDevMode ? 'appBaseHref' : '');\n/**\n * @description\n * A {@link LocationStrategy} used to configure the {@link Location} service to\n * represent its state in the\n * [path](https://en.wikipedia.org/wiki/Uniform_Resource_Locator#Syntax) of the\n * browser's URL.\n *\n * If you're using `PathLocationStrategy`, you may provide a {@link APP_BASE_HREF}\n * or add a `Today is {{today | date}}
\n *Or if you prefer, {{today | date:'fullDate'}}
\n *The time is {{today | date:'h:mm a z'}}
\n *{minIntegerDigits}.{minFractionDigits}-{maxFractionDigits}
.\n * - `minIntegerDigits`: The minimum number of integer digits before the decimal point.\n * Default is `1`.\n * - `minFractionDigits`: The minimum number of digits after the decimal point.\n * Default is `0`.\n * - `maxFractionDigits`: The maximum number of digits after the decimal point.\n * Default is `0`.\n * @param locale A locale code for the locale format rules to use.\n * When not supplied, uses the value of `LOCALE_ID`, which is `en-US` by default.\n * See [Setting your app locale](guide/i18n/locale-id).\n */\n transform(value, digitsInfo, locale) {\n if (!isValue(value))\n return null;\n locale ||= this._locale;\n try {\n const num = strToNumber(value);\n return formatPercent(num, locale, digitsInfo);\n }\n catch (error) {\n throw invalidPipeArgumentError(PercentPipe, error.message);\n }\n }\n static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"19.2.2\", ngImport: i0, type: PercentPipe, deps: [{ token: LOCALE_ID }], target: i0.ɵɵFactoryTarget.Pipe });\n static ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: \"14.0.0\", version: \"19.2.2\", ngImport: i0, type: PercentPipe, isStandalone: true, name: \"percent\" });\n}\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"19.2.2\", ngImport: i0, type: PercentPipe, decorators: [{\n type: Pipe,\n args: [{\n name: 'percent',\n }]\n }], ctorParameters: () => [{ type: undefined, decorators: [{\n type: Inject,\n args: [LOCALE_ID]\n }] }] });\n/**\n * @ngModule CommonModule\n * @description\n *\n * Transforms a number to a currency string, formatted according to locale rules\n * that determine group sizing and separator, decimal-point character,\n * and other locale-specific configurations.\n *\n *\n * @see {@link getCurrencySymbol}\n * @see {@link formatCurrency}\n *\n * @usageNotes\n * The following code shows how the pipe transforms numbers\n * into text strings, according to various format specifications,\n * where the caller's default locale is `en-US`.\n *\n * {@example common/pipes/ts/currency_pipe.ts region='CurrencyPipe'}\n *\n * @publicApi\n */\nclass CurrencyPipe {\n _locale;\n _defaultCurrencyCode;\n constructor(_locale, _defaultCurrencyCode = 'USD') {\n this._locale = _locale;\n this._defaultCurrencyCode = _defaultCurrencyCode;\n }\n transform(value, currencyCode = this._defaultCurrencyCode, display = 'symbol', digitsInfo, locale) {\n if (!isValue(value))\n return null;\n locale ||= this._locale;\n if (typeof display === 'boolean') {\n if ((typeof ngDevMode === 'undefined' || ngDevMode) && console && console.warn) {\n console.warn(`Warning: the currency pipe has been changed in Angular v5. The symbolDisplay option (third parameter) is now a string instead of a boolean. The accepted values are \"code\", \"symbol\" or \"symbol-narrow\".`);\n }\n display = display ? 'symbol' : 'code';\n }\n let currency = currencyCode || this._defaultCurrencyCode;\n if (display !== 'code') {\n if (display === 'symbol' || display === 'symbol-narrow') {\n currency = getCurrencySymbol(currency, display === 'symbol' ? 'wide' : 'narrow', locale);\n }\n else {\n currency = display;\n }\n }\n try {\n const num = strToNumber(value);\n return formatCurrency(num, locale, currency, currencyCode, digitsInfo);\n }\n catch (error) {\n throw invalidPipeArgumentError(CurrencyPipe, error.message);\n }\n }\n static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"19.2.2\", ngImport: i0, type: CurrencyPipe, deps: [{ token: LOCALE_ID }, { token: DEFAULT_CURRENCY_CODE }], target: i0.ɵɵFactoryTarget.Pipe });\n static ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: \"14.0.0\", version: \"19.2.2\", ngImport: i0, type: CurrencyPipe, isStandalone: true, name: \"currency\" });\n}\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"19.2.2\", ngImport: i0, type: CurrencyPipe, decorators: [{\n type: Pipe,\n args: [{\n name: 'currency',\n }]\n }], ctorParameters: () => [{ type: undefined, decorators: [{\n type: Inject,\n args: [LOCALE_ID]\n }] }, { type: undefined, decorators: [{\n type: Inject,\n args: [DEFAULT_CURRENCY_CODE]\n }] }] });\nfunction isValue(value) {\n return !(value == null || value === '' || value !== value);\n}\n/**\n * Transforms a string into a number (if needed).\n */\nfunction strToNumber(value) {\n // Convert strings to numbers\n if (typeof value === 'string' && !isNaN(Number(value) - parseFloat(value))) {\n return Number(value);\n }\n if (typeof value !== 'number') {\n throw new Error(`${value} is not a number`);\n }\n return value;\n}\n\n/**\n * @ngModule CommonModule\n * @description\n *\n * Creates a new `Array` or `String` containing a subset (slice) of the elements.\n *\n * @usageNotes\n *\n * All behavior is based on the expected behavior of the JavaScript API `Array.prototype.slice()`\n * and `String.prototype.slice()`.\n *\n * When operating on an `Array`, the returned `Array` is always a copy even when all\n * the elements are being returned.\n *\n * When operating on a blank value, the pipe returns the blank value.\n *\n * ### List Example\n *\n * This `ngFor` example:\n *\n * {@example common/pipes/ts/slice_pipe.ts region='SlicePipe_list'}\n *\n * produces the following:\n *\n * ```html\n * {{ 'Intellitrailer.AllowLocationAccessInfo.Text' | translate : 'In order to start the rent, please allow to access the location.' }}
\r\n \r\nI appen gör du enkelt en bokningsförfrågan som matchar dina önskemål om tid, plats och storlek. När du har hittat rätt anger du dina kontaktuppgifter och registrerar ett betalkort.
\r\nBetalning sker först när du hämtar ut ditt släp.
\r\nVi arbetar stenhårt för att matcha ihop din bokning med ett släp. Bokar du inom en vecka kan vi i de flesta fall bekräfta din bokning direkt. Kan vi inte det kommer vi aktivt bevaka din bokning tills vi hittar ett släp som passar dina önskemål.
\r\nNär vi hittat ett passande släp till dig kommer vi att reservera det och bekräfta din bokning. Du kan lugnt luta dig tillbaka och fortsätta packa.
\r\nBege dig till stationen på bokad tid och hämta ut ditt släp.
\r\nKör försiktigt!
\r\n{{ 'Intellitrailer.Booking.Customerform.AccountInfo' | translate: 'Your mobile phone and email will be used when signing in to your account in the future.' }}
\r\n\r\n {{ 'Intellitrailer.MyPage.ValidateAccount.QuestionRecievedCode' | translate : 'Did you not recieve a code?' }}\r\n
\r\n\r\n \r\n {{ 'Intellitrailer.MyPage.ValidateAccount.SendNewCode' | translate : 'Send new code' }}\r\n \r\n
\r\n\r\n {{ 'Intellitrailer.MyPage.ValidateAccount.Sent' | translate : 'Sent!' }}\r\n ({{ 'Intellitrailer.MyPage.ValidateAccount.SendAnotherCode' | translate : 'Send another code' }})\r\n
\r\n\r\n {{ 'Intellitrailer.MyPage.ValidateAccount.SendingNewCode' | translate : 'Sending new code' }}...\r\n
\r\n \r\n{{ 'Intellitrailer.Rental.ChangeObject.ChangePrompt' | translate : 'Please change to another available trailer below.' }}
\r\n\r\n{{ 'Intellitrailer.Rental.ChangeObject.CallPrompt' | translate : 'Please call the number below to get help with resolving this issue' }}
\r\n0701234567
\r\ndisclose-booking works!
\r\n","{{'Intellitrailer.Rental.ReturnComplete.msgInviteFriendsInfo' | translate : 'Invite a friend with your unique referral link and they will receive a discount on their first purchase!'}}
\r\n }\r\n @else {\r\n \r\n }\r\n{{ 'Intellitrailer.Rental.SecurityCheck.txtFaultsInfo' | translate : 'You have marked something as faulty. In the next step you will be asked to take a photo of that part to document it for us.' }}
\r\n{{ 'Intellitrailer.Rental.Start.msgErrorCode' | translate : 'Error code' }}: {{ errorCode }}
\r\n\r\n{{ 'Intellitrailer.Rental.Start.Error10Message1' | translate : 'The booking cannot be started. It may have already been started, or there might be an issue with the booking details.' }}
\r\n{{ 'Intellitrailer.Rental.Start.Error10Message2' | translate : 'Please check and try again.' }}
\r\n \r\n{{ 'Intellitrailer.Rental.Start.Error9Message1' | translate : 'The booking cannot be started. A trailer is not assigned to this booking, or there might be an issue with the booking details.' }}
\r\n{{ 'Intellitrailer.Rental.Start.Error9Message2' | translate : 'Please check and try again or contact support for assistance.' }}
\r\n \r\n{{ 'Intellitrailer.Rental.Start.Error8Message1' | translate : 'The booking cannot be started. We couldn’t find the booking, or there might be an issue with the booking details.' }}
\r\n{{ 'Intellitrailer.Rental.Start.Error8Message2' | translate : 'Please check and try again.' }}
\r\n \r\n{{ 'Intellitrailer.Rental.Stop.msgErrorCode' | translate : 'ErrorCode' }}: {{ errorCode }}
\r\n\r\n{{ 'Intellitrailer.Rental.Stop.Error10Message1' | translate : 'The return cannot be completed. The booking may already be returned, or there might be an issue with the booking details.' }}
\r\n{{ 'Intellitrailer.Rental.Stop.Error10Message2' | translate : 'Please check and try again.' }}
\r\n \r\n{{ 'Intellitrailer.Rental.Stop.Error8Message1' | translate : 'The return cannot be completed. We couldn’t find the booking, or there might be an issue with the booking details.' }}
\r\n{{ 'Intellitrailer.Rental.Stop.Error8Message2' | translate : 'Please check and try again.' }}
\r\n \r\n\r\n{{ 'T4.Database.PhotoAngleDescription.' + photo.angle?.Id + '_Name' | translate : photo.angle?.Description }}
\r\n\r\n{{ 'T4.Database.PhotoAngle.' + photo.angle?.Id + '_Name' | translate : photo.angle?.Name }}
\r\n{{ 'Intellitrailer.Rental.Pickup.DocumentDescription' | translate : 'Please take a clear picture to document any issues or damage you´ve noticed with the trailer.' }}
\r\n{{ 'Intellitrailer.Home.UseUse4Free.lblMessage' | translate : 'Please download and use the new Use4Free app to rent your trailer.' }}
\r\n{{ 'Intellitrailer.CameraPermissionRequired.Text' | translate : 'You are now going to take photos of the trailer to document the current state. Therefor the app needs access to your camera.'}}
\r\n{{ 'Intellitrailer.CameraPermissionRequired.OpenSettingsInfo' | translate : 'In order to take photos of the trailer, please go to settings and give camera access'}}
\r\n \r\n \r\n \r\n0\" class=\"keepInMindStep\">{{ 'Intellitrailer.Rental.keepinmind.step_1a' | translate : 'Remember to lock the trailer on return.' }}
\r\n1\" class=\"keepInMindStep\">{{ 'Intellitrailer.Rental.keepinmind.step_2a' | translate : 'Don`t forget to end the rental in the app when you have returned the trailer.' }}
\r\n{{'Intellitrailer.SelectFamily.txtWelcomeMessage.' + appSettings.settings.theme | translate: 'Welcome to ' + appSettings.settings.theme + '!'}}
\r\n{{ 'Intellitrailer.Booking.ExtendBookingTimePicker.CurrentTime' | translate : 'Current time return'}} : {{ this.booking.ReturnTime.toDate() | date:'MMM dd, HH:mm' | uppercase }}
\r\n\r\n{{ 'Intellitrailer.Booking.ExtendBookingTimePicker.NewTime' | translate : 'New time return'}} : {{ _returnTime.toDate() | date:'MMM dd, HH:mm' | uppercase}}
\r\n\r\n {{ 'Intellitrailer.Booking.ExtendBookingTimePicker.AdditionalCost' | translate : 'Additional Cost'}} : {{ additionalCost | currency }}\r\n
\r\n\r\n {{'Intellitrailer.Booking.selectedObjectInfo.txtInfo_' + bookingState.booking.PrimaryType.Id | translate: 'The varubil is not a part of the Use4Free concept other than the ability to make the booking through our app. Therefore, the car cannot be used for 3 hours for free.'}}\r\n
\r\n {{ 'Intellitrailer.Booking.selectedObjectInfo.txtThanks' | translate: 'Thank you for your understanding.' }}\r\n
{{ 'Intellitrailer.BTPermissionInfo.Text' | translate : 'Our trailers are equipped with a bluetooth lock. In order to unlock it you need to allow the app to connect to bluetooth devices.'}}
\r\n \r\n \r\n{{ 'Intellitrailer.LocationPermissionInfo.Text' | translate : 'In order to determine that you are at the correct location for pickup/return of the trailer and to connect to the bluetooth lock we need to access your location. This information is not stored in any way.'}}
\r\n \r\n \r\n{{ 'Intellitrailer.Rental.NokeLock.ActiveLock' | translate : 'Gently press on the bottom part of the lock to activate it. ' }}
\r\n \r\n{{ 'Intellitrailer.Rental.NokeLock.UnlockingInfo' | translate: 'This process normally takes between 5 and 10 seconds' }}
\r\n{{ 'Intellitrailer.Rental.NokeLock.txtLockNotOpen1' | translate: 'Sometimes the shackle gets stuck, if it does try this:'}}
\r\n{{ 'Intellitrailer.Rental.NokeLock.txtLockNotOpen2' | translate: 'Shake the lock for 5-10 seconds.'}}
\r\n{{ 'Intellitrailer.Rental.NokeLock.txtLockNotOpen3' | translate: 'Pull the lock downward at the same time you unlock it in the app.'}}
\r\n \r\n{{ 'Intellitrailer.Rental.NokeLock.NotFoundInfo' | translate : 'Make sure you are at the correct trailer.' }}
\r\n \r\n{{ 'Intellitrailer.Rental.NokeLock.msgBluetoothError-1b' | translate : 'Verify that the light on the bottom of the lock lights upp when you press it. If this problem persists, please restart the app.' }}
\r\n \r\n{{ 'Intellitrailer.Rental.NokeLock.msgBluetoothError0' | translate : 'Access to bluetooth is required to be able to unlock the lock. Please grant the permissions in you phone settings. Or re-install the app and it will ask you for the permission again.' }}
\r\n \r\n \r\n{{ 'Intellitrailer.Rental.NokeLock.msgBluetoothError1' | translate : 'Access to bluetooth is required to be able to unlock the lock. Please enable bluetooth and try again.' }}
\r\n \r\n{{ 'Intellitrailer.Rental.NokeLock.msgLocationError0' | translate : 'Access to location is required to be able to unlock the lock. Please grant the permissions in you phone settings. Or re-install the app and it will ask you for the permission again.' }}
\r\n \r\n \r\n{{ 'Intellitrailer.Rental.NokeLock.msgLocationError1' | translate : 'Access to Location is required to be able to unlock the lock. Please enable Location and try again.' }}
\r\n \r\n{{ 'Intellitrailer.Rental.IglooLock.IglooUnlockWaiting' | translate: 'Please wait while we generate the unlock pin' }}...
\r\n{{ 'Intellitrailer.Rental.IglooLock.IglooUnlockInfo1' | translate: 'Please enter the below pin to unlock.' }}
\r\n{{ 'Intellitrailer.Rental.IglooLock.IglooNotFoundInfo2' | translate : 'Please make sure you are at the correct trailer.' }}
\r\n{{ 'Intellitrailer.Rental.IglooLock.IglooNotFoundInfo1' | translate : 'Verify the lock number provided below with the trailer lock to ensure you are at the correct trailer.' }}
\r\n{{ 'Intellitrailer.Rental.IglooLock.Igloo.NotFoundLockNo' | translate : 'Lock'}}: {{iglooLock}}
\r\n \r\n{{ 'Intellitrailer.NfcRequired.Text' | translate : 'You need to enable the NFC service on your device to continue'}}
\r\n{{ 'Intellitrailer.Rental.NFCNoLock.msgGuide_b' | translate : 'This trailer is equipped with a system to identify it and to control the tracking mechanism.' }}
\r\n{{ 'Intellitrailer.Rental.NFCNoLock.msgGuide_c' | translate : 'Please locate the corresponding area to scan on the front of the trailer. And click the button below.' }}
\r\n{{ 'Intellitrailer.Rental.NFCNoLock.UnlockingInfoNFC_ios' | translate: 'Scan the trailer using the top of your device. You might need to move it around a bit.' }}
\r\n{{ 'Intellitrailer.Rental.NFCNoLock.UnlockingInfoNFC_android' | translate: 'Place the back of your phone on the correct area of the trailer. You might need to move it around a bit.' }}
\r\n{{ 'Intellitrailer.Rental.NFCNoLock.UnlockingInfoNFC_generic' | translate: 'Scan the trailer with your device. You might need to move it around a bit.' }}
\r\n{{ 'Intellitrailer.Rental.NFCNoLock.NotFoundInfo4' | translate : 'Make sure that you are holding your phone correctly, with the reader towards the trailer.' }}
\r\n{{ 'Intellitrailer.Rental.NFCNoLock.msgWrongTag4' | translate : 'The trailer you have scanned was not the expected one. Please verify that you are at the correct trailer and try again.' }}
\r\n\r\n {{ campaign.Comment }}\r\n
\r\n\r\n \r\n \r\n \r\n \r\ncampaign.ValidFrom\" style=\"font-size:13px; color:gray; margin:0; margin-top:10px;\">{{ 'Intellitrailer.MyPage.CampaignCard.dateUntil' | translate:'Valid until'}} {{campaign.ValidThrough | date: 'dd-MMM' }}
\r\n{{ 'Intellitrailer.MyPage.CampaignCard.dateBetween1' | translate:'Valid between'}} {{campaign.ValidFrom | date: 'dd-MMM'}} {{ 'T4.CampaignCard.dateBetween2' | translate:'and'}} {{campaign.ValidThrough | date: 'dd-MMM' }}
\r\n{{ 'Intellitrailer.MyPage.CampaignCard.txtDisclamer1' | translate:'The coupon is redeemed at '}}{{campaign.Issuer}}{{ 'Intellitrailer.MyPage.CampaignCard.txtDisclamer2' | translate:', show the code at the checkout.'}}
\r\n{{ 'Intellitrailer.MyPage.MyCampaings.msgNoCurrentOffers' | translate : 'You have no current offers.' }}
\r\n\r\n {{campaign.Title}}\r\n
\r\n\r\n
\r\n {{campaign.Comment}}\r\n
\r\nActivated: {{activatedAt | date: 'MMM d, hh:mm'}}
\r\nTap to see your offer!
\r\n\r\n Invite your friends and share the discount code with them to get discount in the booking!\r\n
\r\n \r\nShare the coupons
\r\n\r\n Your friends should use the discount coupon to get the discount while booking.\r\n
\r\nDon't let your coupons expire
\r\n\r\n You have 30 days from the time a discount coupon is issued until it expires.\r\n
\r\n{{ hoveredLocation.Address }}, {{ hoveredLocation.City }} {{ hoveredLocation.ZipCode }}, {{hoveredLocation.Country}}
\r\n{{ hoveredLocation.OpenHours }}
\r\nÖppet dygnet runt
\r\n