Merge branch 'main' of gitea.suda.codes:giteauser/ghostfolio-mirror
This commit is contained in:
commit
021ef11daa
31
CHANGELOG.md
31
CHANGELOG.md
@ -9,17 +9,48 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
|
||||||
|
- Extended the content of the _Self-Hosting_ section by the benchmarks concept on the Frequently Asked Questions (FAQ) page
|
||||||
|
- Set the permissions (`chmod 0700`) on `entrypoint.sh` in the `Dockerfile`
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
|
||||||
|
- Disabled the text hover effect in the chart of the holdings tab on the home page (experimental)
|
||||||
|
- Improved the usability to customize the rule thresholds in the _X-ray_ section by introducing units (experimental)
|
||||||
|
- Switched to adjusted market prices (splits and dividends) in the get historical functionality of the _EOD Historical Data_ service
|
||||||
|
- Improved the language localization for German (`de`)
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
|
||||||
|
- Fixed the usage of the environment variable `PROCESSOR_PORTFOLIO_SNAPSHOT_COMPUTATION_CONCURRENCY`
|
||||||
|
|
||||||
|
## 2.115.0 - 2024-10-14
|
||||||
|
|
||||||
|
### Added
|
||||||
|
|
||||||
- Added the name to the tooltip of the chart of the holdings tab on the home page (experimental)
|
- Added the name to the tooltip of the chart of the holdings tab on the home page (experimental)
|
||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
|
|
||||||
|
- Improved the backgrounds of the chart of the holdings tab on the home page (experimental)
|
||||||
|
- Improved the labels of the chart of the holdings tab on the home page (experimental)
|
||||||
|
- Improved the usability to customize the rule thresholds in the _X-ray_ section by introducing sliders (experimental)
|
||||||
|
- Refactored the rule thresholds in the _X-ray_ section (experimental)
|
||||||
- Exposed the timeout of the portfolio snapshot computation as an environment variable (`PROCESSOR_PORTFOLIO_SNAPSHOT_COMPUTATION_TIMEOUT`)
|
- Exposed the timeout of the portfolio snapshot computation as an environment variable (`PROCESSOR_PORTFOLIO_SNAPSHOT_COMPUTATION_TIMEOUT`)
|
||||||
|
- Harmonized the processor concurrency environment variables
|
||||||
- Improved the portfolio unit tests to work with exported activity files
|
- Improved the portfolio unit tests to work with exported activity files
|
||||||
|
- Enabled the `noUnusedLocals` compiler option in the `tsconfig`
|
||||||
|
- Enabled the `noUnusedParameters` compiler option in the `tsconfig`
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
|
|
||||||
- Considered the language of the user settings on login with _Security Token_
|
- Considered the language of the user settings on login with _Security Token_
|
||||||
|
|
||||||
|
### Todo
|
||||||
|
|
||||||
|
- Rename the environment variable from `PROCESSOR_CONCURRENCY_GATHER_ASSET_PROFILE` to `PROCESSOR_GATHER_ASSET_PROFILE_CONCURRENCY`
|
||||||
|
- Rename the environment variable from `PROCESSOR_CONCURRENCY_GATHER_HISTORICAL_MARKET_DATA` to `PROCESSOR_GATHER_HISTORICAL_MARKET_DATA_CONCURRENCY`
|
||||||
|
- Rename the environment variable from `PROCESSOR_CONCURRENCY_PORTFOLIO_SNAPSHOT` to `PROCESSOR_PORTFOLIO_SNAPSHOT_COMPUTATION_CONCURRENCY`
|
||||||
|
|
||||||
## 2.114.0 - 2024-10-10
|
## 2.114.0 - 2024-10-10
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
@ -61,6 +61,7 @@ RUN apt-get update && apt-get install -y --no-install-suggests \
|
|||||||
|
|
||||||
COPY --chown=node:node --from=builder /ghostfolio/dist/apps /ghostfolio/apps
|
COPY --chown=node:node --from=builder /ghostfolio/dist/apps /ghostfolio/apps
|
||||||
COPY --chown=node:node ./docker/entrypoint.sh /ghostfolio/entrypoint.sh
|
COPY --chown=node:node ./docker/entrypoint.sh /ghostfolio/entrypoint.sh
|
||||||
|
RUN chmod 0700 /ghostfolio/entrypoint.sh
|
||||||
WORKDIR /ghostfolio/apps/api
|
WORKDIR /ghostfolio/apps/api
|
||||||
EXPOSE ${PORT:-3333}
|
EXPOSE ${PORT:-3333}
|
||||||
USER node
|
USER node
|
||||||
|
@ -36,6 +36,6 @@ export class CreateAccountDto {
|
|||||||
name: string;
|
name: string;
|
||||||
|
|
||||||
@IsString()
|
@IsString()
|
||||||
@ValidateIf((object, value) => value !== null)
|
@ValidateIf((_object, value) => value !== null)
|
||||||
platformId: string | null;
|
platformId: string | null;
|
||||||
}
|
}
|
||||||
|
@ -35,6 +35,6 @@ export class UpdateAccountDto {
|
|||||||
name: string;
|
name: string;
|
||||||
|
|
||||||
@IsString()
|
@IsString()
|
||||||
@ValidateIf((object, value) => value !== null)
|
@ValidateIf((_object, value) => value !== null)
|
||||||
platformId: string | null;
|
platformId: string | null;
|
||||||
}
|
}
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
import {
|
import {
|
||||||
DATA_GATHERING_QUEUE,
|
DATA_GATHERING_QUEUE,
|
||||||
PORTFOLIO_SNAPSHOT_QUEUE,
|
PORTFOLIO_SNAPSHOT_COMPUTATION_QUEUE,
|
||||||
QUEUE_JOB_STATUS_LIST
|
QUEUE_JOB_STATUS_LIST
|
||||||
} from '@ghostfolio/common/config';
|
} from '@ghostfolio/common/config';
|
||||||
import { AdminJobs } from '@ghostfolio/common/interfaces';
|
import { AdminJobs } from '@ghostfolio/common/interfaces';
|
||||||
@ -14,7 +14,7 @@ export class QueueService {
|
|||||||
public constructor(
|
public constructor(
|
||||||
@InjectQueue(DATA_GATHERING_QUEUE)
|
@InjectQueue(DATA_GATHERING_QUEUE)
|
||||||
private readonly dataGatheringQueue: Queue,
|
private readonly dataGatheringQueue: Queue,
|
||||||
@InjectQueue(PORTFOLIO_SNAPSHOT_QUEUE)
|
@InjectQueue(PORTFOLIO_SNAPSHOT_COMPUTATION_QUEUE)
|
||||||
private readonly portfolioSnapshotQueue: Queue
|
private readonly portfolioSnapshotQueue: Queue
|
||||||
) {}
|
) {}
|
||||||
|
|
||||||
|
@ -14,12 +14,12 @@ import {
|
|||||||
Req,
|
Req,
|
||||||
Res,
|
Res,
|
||||||
UseGuards,
|
UseGuards,
|
||||||
VERSION_NEUTRAL,
|
Version,
|
||||||
Version
|
VERSION_NEUTRAL
|
||||||
} from '@nestjs/common';
|
} from '@nestjs/common';
|
||||||
import { AuthGuard } from '@nestjs/passport';
|
import { AuthGuard } from '@nestjs/passport';
|
||||||
import { Request, Response } from 'express';
|
import { Request, Response } from 'express';
|
||||||
import { StatusCodes, getReasonPhrase } from 'http-status-codes';
|
import { getReasonPhrase, StatusCodes } from 'http-status-codes';
|
||||||
|
|
||||||
import { AuthService } from './auth.service';
|
import { AuthService } from './auth.service';
|
||||||
import {
|
import {
|
||||||
@ -130,10 +130,7 @@ export class AuthController {
|
|||||||
public async verifyAttestation(
|
public async verifyAttestation(
|
||||||
@Body() body: { deviceName: string; credential: AttestationCredentialJSON }
|
@Body() body: { deviceName: string; credential: AttestationCredentialJSON }
|
||||||
) {
|
) {
|
||||||
return this.webAuthService.verifyAttestation(
|
return this.webAuthService.verifyAttestation(body.credential);
|
||||||
body.deviceName,
|
|
||||||
body.credential
|
|
||||||
);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Post('webauthn/generate-assertion-options')
|
@Post('webauthn/generate-assertion-options')
|
||||||
|
@ -11,7 +11,7 @@ import { AuthService } from './auth.service';
|
|||||||
export class GoogleStrategy extends PassportStrategy(Strategy, 'google') {
|
export class GoogleStrategy extends PassportStrategy(Strategy, 'google') {
|
||||||
public constructor(
|
public constructor(
|
||||||
private readonly authService: AuthService,
|
private readonly authService: AuthService,
|
||||||
private readonly configurationService: ConfigurationService
|
configurationService: ConfigurationService
|
||||||
) {
|
) {
|
||||||
super({
|
super({
|
||||||
callbackURL: `${configurationService.get(
|
callbackURL: `${configurationService.get(
|
||||||
@ -25,9 +25,9 @@ export class GoogleStrategy extends PassportStrategy(Strategy, 'google') {
|
|||||||
}
|
}
|
||||||
|
|
||||||
public async validate(
|
public async validate(
|
||||||
request: any,
|
_request: any,
|
||||||
token: string,
|
_token: string,
|
||||||
refreshToken: string,
|
_refreshToken: string,
|
||||||
profile: Profile,
|
profile: Profile,
|
||||||
done: Function
|
done: Function
|
||||||
) {
|
) {
|
||||||
|
@ -13,16 +13,16 @@ import {
|
|||||||
import { REQUEST } from '@nestjs/core';
|
import { REQUEST } from '@nestjs/core';
|
||||||
import { JwtService } from '@nestjs/jwt';
|
import { JwtService } from '@nestjs/jwt';
|
||||||
import {
|
import {
|
||||||
|
generateAuthenticationOptions,
|
||||||
GenerateAuthenticationOptionsOpts,
|
GenerateAuthenticationOptionsOpts,
|
||||||
|
generateRegistrationOptions,
|
||||||
GenerateRegistrationOptionsOpts,
|
GenerateRegistrationOptionsOpts,
|
||||||
VerifiedAuthenticationResponse,
|
VerifiedAuthenticationResponse,
|
||||||
VerifiedRegistrationResponse,
|
VerifiedRegistrationResponse,
|
||||||
VerifyAuthenticationResponseOpts,
|
|
||||||
VerifyRegistrationResponseOpts,
|
|
||||||
generateAuthenticationOptions,
|
|
||||||
generateRegistrationOptions,
|
|
||||||
verifyAuthenticationResponse,
|
verifyAuthenticationResponse,
|
||||||
verifyRegistrationResponse
|
VerifyAuthenticationResponseOpts,
|
||||||
|
verifyRegistrationResponse,
|
||||||
|
VerifyRegistrationResponseOpts
|
||||||
} from '@simplewebauthn/server';
|
} from '@simplewebauthn/server';
|
||||||
|
|
||||||
import {
|
import {
|
||||||
@ -80,7 +80,6 @@ export class WebAuthService {
|
|||||||
}
|
}
|
||||||
|
|
||||||
public async verifyAttestation(
|
public async verifyAttestation(
|
||||||
deviceName: string,
|
|
||||||
credential: AttestationCredentialJSON
|
credential: AttestationCredentialJSON
|
||||||
): Promise<AuthDeviceDto> {
|
): Promise<AuthDeviceDto> {
|
||||||
const user = this.request.user;
|
const user = this.request.user;
|
||||||
|
@ -15,8 +15,8 @@ import { getIntervalFromDateRange } from '@ghostfolio/common/calculation-helper'
|
|||||||
import {
|
import {
|
||||||
PORTFOLIO_SNAPSHOT_PROCESS_JOB_NAME,
|
PORTFOLIO_SNAPSHOT_PROCESS_JOB_NAME,
|
||||||
PORTFOLIO_SNAPSHOT_PROCESS_JOB_OPTIONS,
|
PORTFOLIO_SNAPSHOT_PROCESS_JOB_OPTIONS,
|
||||||
PORTFOLIO_SNAPSHOT_QUEUE_PRIORITY_HIGH,
|
PORTFOLIO_SNAPSHOT_COMPUTATION_QUEUE_PRIORITY_HIGH,
|
||||||
PORTFOLIO_SNAPSHOT_QUEUE_PRIORITY_LOW
|
PORTFOLIO_SNAPSHOT_COMPUTATION_QUEUE_PRIORITY_LOW
|
||||||
} from '@ghostfolio/common/config';
|
} from '@ghostfolio/common/config';
|
||||||
import {
|
import {
|
||||||
DATE_FORMAT,
|
DATE_FORMAT,
|
||||||
@ -1080,7 +1080,7 @@ export abstract class PortfolioCalculator {
|
|||||||
opts: {
|
opts: {
|
||||||
...PORTFOLIO_SNAPSHOT_PROCESS_JOB_OPTIONS,
|
...PORTFOLIO_SNAPSHOT_PROCESS_JOB_OPTIONS,
|
||||||
jobId,
|
jobId,
|
||||||
priority: PORTFOLIO_SNAPSHOT_QUEUE_PRIORITY_LOW
|
priority: PORTFOLIO_SNAPSHOT_COMPUTATION_QUEUE_PRIORITY_LOW
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
@ -1096,7 +1096,7 @@ export abstract class PortfolioCalculator {
|
|||||||
opts: {
|
opts: {
|
||||||
...PORTFOLIO_SNAPSHOT_PROCESS_JOB_OPTIONS,
|
...PORTFOLIO_SNAPSHOT_PROCESS_JOB_OPTIONS,
|
||||||
jobId,
|
jobId,
|
||||||
priority: PORTFOLIO_SNAPSHOT_QUEUE_PRIORITY_HIGH
|
priority: PORTFOLIO_SNAPSHOT_COMPUTATION_QUEUE_PRIORITY_HIGH
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
@ -1,6 +1,8 @@
|
|||||||
|
import { CreateOrderDto } from '@ghostfolio/api/app/order/create-order.dto';
|
||||||
import { Activity } from '@ghostfolio/api/app/order/interfaces/activities.interface';
|
import { Activity } from '@ghostfolio/api/app/order/interfaces/activities.interface';
|
||||||
import {
|
import {
|
||||||
activityDummyData,
|
activityDummyData,
|
||||||
|
loadActivityExportFile,
|
||||||
symbolProfileDummyData,
|
symbolProfileDummyData,
|
||||||
userDummyData
|
userDummyData
|
||||||
} from '@ghostfolio/api/app/portfolio/calculator/portfolio-calculator-test-utils';
|
} from '@ghostfolio/api/app/portfolio/calculator/portfolio-calculator-test-utils';
|
||||||
@ -20,6 +22,7 @@ import { parseDate } from '@ghostfolio/common/helper';
|
|||||||
|
|
||||||
import { Big } from 'big.js';
|
import { Big } from 'big.js';
|
||||||
import { last } from 'lodash';
|
import { last } from 'lodash';
|
||||||
|
import { join } from 'path';
|
||||||
|
|
||||||
jest.mock('@ghostfolio/api/app/portfolio/current-rate.service', () => {
|
jest.mock('@ghostfolio/api/app/portfolio/current-rate.service', () => {
|
||||||
return {
|
return {
|
||||||
@ -52,6 +55,8 @@ jest.mock('@ghostfolio/api/app/redis-cache/redis-cache.service', () => {
|
|||||||
});
|
});
|
||||||
|
|
||||||
describe('PortfolioCalculator', () => {
|
describe('PortfolioCalculator', () => {
|
||||||
|
let activityDtos: CreateOrderDto[];
|
||||||
|
|
||||||
let configurationService: ConfigurationService;
|
let configurationService: ConfigurationService;
|
||||||
let currentRateService: CurrentRateService;
|
let currentRateService: CurrentRateService;
|
||||||
let exchangeRateDataService: ExchangeRateDataService;
|
let exchangeRateDataService: ExchangeRateDataService;
|
||||||
@ -59,6 +64,15 @@ describe('PortfolioCalculator', () => {
|
|||||||
let portfolioSnapshotService: PortfolioSnapshotService;
|
let portfolioSnapshotService: PortfolioSnapshotService;
|
||||||
let redisCacheService: RedisCacheService;
|
let redisCacheService: RedisCacheService;
|
||||||
|
|
||||||
|
beforeAll(() => {
|
||||||
|
activityDtos = loadActivityExportFile(
|
||||||
|
join(
|
||||||
|
__dirname,
|
||||||
|
'../../../../../../../test/import/ok-novn-buy-and-sell-partially.json'
|
||||||
|
)
|
||||||
|
);
|
||||||
|
});
|
||||||
|
|
||||||
beforeEach(() => {
|
beforeEach(() => {
|
||||||
configurationService = new ConfigurationService();
|
configurationService = new ConfigurationService();
|
||||||
|
|
||||||
@ -88,38 +102,18 @@ describe('PortfolioCalculator', () => {
|
|||||||
it.only('with NOVN.SW buy and sell partially', async () => {
|
it.only('with NOVN.SW buy and sell partially', async () => {
|
||||||
jest.useFakeTimers().setSystemTime(parseDate('2022-04-11').getTime());
|
jest.useFakeTimers().setSystemTime(parseDate('2022-04-11').getTime());
|
||||||
|
|
||||||
const activities: Activity[] = [
|
const activities: Activity[] = activityDtos.map((activity) => ({
|
||||||
{
|
...activityDummyData,
|
||||||
...activityDummyData,
|
...activity,
|
||||||
date: new Date('2022-03-07'),
|
date: parseDate(activity.date),
|
||||||
fee: 1.3,
|
SymbolProfile: {
|
||||||
quantity: 2,
|
...symbolProfileDummyData,
|
||||||
SymbolProfile: {
|
currency: activity.currency,
|
||||||
...symbolProfileDummyData,
|
dataSource: activity.dataSource,
|
||||||
currency: 'CHF',
|
name: 'Novartis AG',
|
||||||
dataSource: 'YAHOO',
|
symbol: activity.symbol
|
||||||
name: 'Novartis AG',
|
|
||||||
symbol: 'NOVN.SW'
|
|
||||||
},
|
|
||||||
type: 'BUY',
|
|
||||||
unitPrice: 75.8
|
|
||||||
},
|
|
||||||
{
|
|
||||||
...activityDummyData,
|
|
||||||
date: new Date('2022-04-08'),
|
|
||||||
fee: 2.95,
|
|
||||||
quantity: 1,
|
|
||||||
SymbolProfile: {
|
|
||||||
...symbolProfileDummyData,
|
|
||||||
currency: 'CHF',
|
|
||||||
dataSource: 'YAHOO',
|
|
||||||
name: 'Novartis AG',
|
|
||||||
symbol: 'NOVN.SW'
|
|
||||||
},
|
|
||||||
type: 'SELL',
|
|
||||||
unitPrice: 85.73
|
|
||||||
}
|
}
|
||||||
];
|
}));
|
||||||
|
|
||||||
const portfolioCalculator = portfolioCalculatorFactory.createCalculator({
|
const portfolioCalculator = portfolioCalculatorFactory.createCalculator({
|
||||||
activities,
|
activities,
|
||||||
|
@ -24,13 +24,10 @@ export class RulesService {
|
|||||||
return {
|
return {
|
||||||
evaluation,
|
evaluation,
|
||||||
value,
|
value,
|
||||||
|
configuration: rule.getConfiguration(),
|
||||||
isActive: true,
|
isActive: true,
|
||||||
key: rule.getKey(),
|
key: rule.getKey(),
|
||||||
name: rule.getName(),
|
name: rule.getName()
|
||||||
settings: <PortfolioReportRule['settings']>{
|
|
||||||
thresholdMax: settings['thresholdMax'],
|
|
||||||
thresholdMin: settings['thresholdMin']
|
|
||||||
}
|
|
||||||
};
|
};
|
||||||
} else {
|
} else {
|
||||||
return {
|
return {
|
||||||
|
@ -2,6 +2,12 @@ import { OrderService } from '@ghostfolio/api/app/order/order.service';
|
|||||||
import { SubscriptionService } from '@ghostfolio/api/app/subscription/subscription.service';
|
import { SubscriptionService } from '@ghostfolio/api/app/subscription/subscription.service';
|
||||||
import { environment } from '@ghostfolio/api/environments/environment';
|
import { environment } from '@ghostfolio/api/environments/environment';
|
||||||
import { PortfolioChangedEvent } from '@ghostfolio/api/events/portfolio-changed.event';
|
import { PortfolioChangedEvent } from '@ghostfolio/api/events/portfolio-changed.event';
|
||||||
|
import { AccountClusterRiskCurrentInvestment } from '@ghostfolio/api/models/rules/account-cluster-risk/current-investment';
|
||||||
|
import { AccountClusterRiskSingleAccount } from '@ghostfolio/api/models/rules/account-cluster-risk/single-account';
|
||||||
|
import { CurrencyClusterRiskBaseCurrencyCurrentInvestment } from '@ghostfolio/api/models/rules/currency-cluster-risk/base-currency-current-investment';
|
||||||
|
import { CurrencyClusterRiskCurrentInvestment } from '@ghostfolio/api/models/rules/currency-cluster-risk/current-investment';
|
||||||
|
import { EmergencyFundSetup } from '@ghostfolio/api/models/rules/emergency-fund/emergency-fund-setup';
|
||||||
|
import { FeeRatioInitialInvestment } from '@ghostfolio/api/models/rules/fees/fee-ratio-initial-investment';
|
||||||
import { ConfigurationService } from '@ghostfolio/api/services/configuration/configuration.service';
|
import { ConfigurationService } from '@ghostfolio/api/services/configuration/configuration.service';
|
||||||
import { I18nService } from '@ghostfolio/api/services/i18n/i18n.service';
|
import { I18nService } from '@ghostfolio/api/services/i18n/i18n.service';
|
||||||
import { PrismaService } from '@ghostfolio/api/services/prisma/prisma.service';
|
import { PrismaService } from '@ghostfolio/api/services/prisma/prisma.service';
|
||||||
@ -200,17 +206,35 @@ export class UserService {
|
|||||||
(user.Settings.settings as UserSettings).viewMode = 'DEFAULT';
|
(user.Settings.settings as UserSettings).viewMode = 'DEFAULT';
|
||||||
}
|
}
|
||||||
|
|
||||||
// Set default values for X-ray rules
|
(user.Settings.settings as UserSettings).xRayRules = {
|
||||||
if (!(user.Settings.settings as UserSettings).xRayRules) {
|
AccountClusterRiskCurrentInvestment:
|
||||||
(user.Settings.settings as UserSettings).xRayRules = {
|
new AccountClusterRiskCurrentInvestment(undefined, {}).getSettings(
|
||||||
AccountClusterRiskCurrentInvestment: { isActive: true },
|
user.Settings.settings
|
||||||
AccountClusterRiskSingleAccount: { isActive: true },
|
),
|
||||||
CurrencyClusterRiskBaseCurrencyCurrentInvestment: { isActive: true },
|
AccountClusterRiskSingleAccount: new AccountClusterRiskSingleAccount(
|
||||||
CurrencyClusterRiskCurrentInvestment: { isActive: true },
|
undefined,
|
||||||
EmergencyFundSetup: { isActive: true },
|
{}
|
||||||
FeeRatioInitialInvestment: { isActive: true }
|
).getSettings(user.Settings.settings),
|
||||||
};
|
CurrencyClusterRiskBaseCurrencyCurrentInvestment:
|
||||||
}
|
new CurrencyClusterRiskBaseCurrencyCurrentInvestment(
|
||||||
|
undefined,
|
||||||
|
undefined
|
||||||
|
).getSettings(user.Settings.settings),
|
||||||
|
CurrencyClusterRiskCurrentInvestment:
|
||||||
|
new CurrencyClusterRiskCurrentInvestment(
|
||||||
|
undefined,
|
||||||
|
undefined
|
||||||
|
).getSettings(user.Settings.settings),
|
||||||
|
EmergencyFundSetup: new EmergencyFundSetup(
|
||||||
|
undefined,
|
||||||
|
undefined
|
||||||
|
).getSettings(user.Settings.settings),
|
||||||
|
FeeRatioInitialInvestment: new FeeRatioInitialInvestment(
|
||||||
|
undefined,
|
||||||
|
undefined,
|
||||||
|
undefined
|
||||||
|
).getSettings(user.Settings.settings)
|
||||||
|
};
|
||||||
|
|
||||||
let currentPermissions = getPermissions(user.role);
|
let currentPermissions = getPermissions(user.role);
|
||||||
|
|
||||||
|
@ -21,7 +21,7 @@ export class TransformDataSourceInResponseInterceptor<T>
|
|||||||
) {}
|
) {}
|
||||||
|
|
||||||
public intercept(
|
public intercept(
|
||||||
context: ExecutionContext,
|
_context: ExecutionContext,
|
||||||
next: CallHandler<T>
|
next: CallHandler<T>
|
||||||
): Observable<any> {
|
): Observable<any> {
|
||||||
return next.handle().pipe(
|
return next.handle().pipe(
|
||||||
|
@ -1,7 +1,11 @@
|
|||||||
import { RuleSettings } from '@ghostfolio/api/models/interfaces/rule-settings.interface';
|
import { RuleSettings } from '@ghostfolio/api/models/interfaces/rule-settings.interface';
|
||||||
import { ExchangeRateDataService } from '@ghostfolio/api/services/exchange-rate-data/exchange-rate-data.service';
|
import { ExchangeRateDataService } from '@ghostfolio/api/services/exchange-rate-data/exchange-rate-data.service';
|
||||||
import { groupBy } from '@ghostfolio/common/helper';
|
import { groupBy } from '@ghostfolio/common/helper';
|
||||||
import { PortfolioPosition, UserSettings } from '@ghostfolio/common/interfaces';
|
import {
|
||||||
|
PortfolioPosition,
|
||||||
|
PortfolioReportRule,
|
||||||
|
UserSettings
|
||||||
|
} from '@ghostfolio/common/interfaces';
|
||||||
|
|
||||||
import { Big } from 'big.js';
|
import { Big } from 'big.js';
|
||||||
|
|
||||||
@ -65,5 +69,9 @@ export abstract class Rule<T extends RuleSettings> implements RuleInterface<T> {
|
|||||||
|
|
||||||
public abstract evaluate(aRuleSettings: T): EvaluationResult;
|
public abstract evaluate(aRuleSettings: T): EvaluationResult;
|
||||||
|
|
||||||
|
public abstract getConfiguration(): Partial<
|
||||||
|
PortfolioReportRule['configuration']
|
||||||
|
>;
|
||||||
|
|
||||||
public abstract getSettings(aUserSettings: UserSettings): T;
|
public abstract getSettings(aUserSettings: UserSettings): T;
|
||||||
}
|
}
|
||||||
|
@ -76,11 +76,23 @@ export class AccountClusterRiskCurrentInvestment extends Rule<Settings> {
|
|||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public getConfiguration() {
|
||||||
|
return {
|
||||||
|
threshold: {
|
||||||
|
max: 1,
|
||||||
|
min: 0,
|
||||||
|
step: 0.01,
|
||||||
|
unit: '%'
|
||||||
|
},
|
||||||
|
thresholdMax: true
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
public getSettings({ baseCurrency, xRayRules }: UserSettings): Settings {
|
public getSettings({ baseCurrency, xRayRules }: UserSettings): Settings {
|
||||||
return {
|
return {
|
||||||
baseCurrency,
|
baseCurrency,
|
||||||
isActive: xRayRules[this.getKey()].isActive,
|
isActive: xRayRules?.[this.getKey()].isActive ?? true,
|
||||||
thresholdMax: xRayRules[this.getKey()]?.thresholdMax ?? 0.5
|
thresholdMax: xRayRules?.[this.getKey()]?.thresholdMax ?? 0.5
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -34,9 +34,13 @@ export class AccountClusterRiskSingleAccount extends Rule<RuleSettings> {
|
|||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public getConfiguration() {
|
||||||
|
return undefined;
|
||||||
|
}
|
||||||
|
|
||||||
public getSettings({ xRayRules }: UserSettings): RuleSettings {
|
public getSettings({ xRayRules }: UserSettings): RuleSettings {
|
||||||
return {
|
return {
|
||||||
isActive: xRayRules[this.getKey()].isActive
|
isActive: xRayRules?.[this.getKey()].isActive ?? true
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -61,10 +61,14 @@ export class CurrencyClusterRiskBaseCurrencyCurrentInvestment extends Rule<Setti
|
|||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public getConfiguration() {
|
||||||
|
return undefined;
|
||||||
|
}
|
||||||
|
|
||||||
public getSettings({ baseCurrency, xRayRules }: UserSettings): Settings {
|
public getSettings({ baseCurrency, xRayRules }: UserSettings): Settings {
|
||||||
return {
|
return {
|
||||||
baseCurrency,
|
baseCurrency,
|
||||||
isActive: xRayRules[this.getKey()].isActive
|
isActive: xRayRules?.[this.getKey()].isActive ?? true
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -61,11 +61,23 @@ export class CurrencyClusterRiskCurrentInvestment extends Rule<Settings> {
|
|||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public getConfiguration() {
|
||||||
|
return {
|
||||||
|
threshold: {
|
||||||
|
max: 1,
|
||||||
|
min: 0,
|
||||||
|
step: 0.01,
|
||||||
|
unit: '%'
|
||||||
|
},
|
||||||
|
thresholdMax: true
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
public getSettings({ baseCurrency, xRayRules }: UserSettings): Settings {
|
public getSettings({ baseCurrency, xRayRules }: UserSettings): Settings {
|
||||||
return {
|
return {
|
||||||
baseCurrency,
|
baseCurrency,
|
||||||
isActive: xRayRules[this.getKey()].isActive,
|
isActive: xRayRules?.[this.getKey()].isActive ?? true,
|
||||||
thresholdMax: xRayRules[this.getKey()]?.thresholdMax ?? 0.5
|
thresholdMax: xRayRules?.[this.getKey()]?.thresholdMax ?? 0.5
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -32,10 +32,14 @@ export class EmergencyFundSetup extends Rule<Settings> {
|
|||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public getConfiguration() {
|
||||||
|
return undefined;
|
||||||
|
}
|
||||||
|
|
||||||
public getSettings({ baseCurrency, xRayRules }: UserSettings): Settings {
|
public getSettings({ baseCurrency, xRayRules }: UserSettings): Settings {
|
||||||
return {
|
return {
|
||||||
baseCurrency,
|
baseCurrency,
|
||||||
isActive: xRayRules[this.getKey()].isActive
|
isActive: xRayRules?.[this.getKey()].isActive ?? true
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -43,11 +43,23 @@ export class FeeRatioInitialInvestment extends Rule<Settings> {
|
|||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public getConfiguration() {
|
||||||
|
return {
|
||||||
|
threshold: {
|
||||||
|
max: 0.1,
|
||||||
|
min: 0,
|
||||||
|
step: 0.0025,
|
||||||
|
unit: '%'
|
||||||
|
},
|
||||||
|
thresholdMax: true
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
public getSettings({ baseCurrency, xRayRules }: UserSettings): Settings {
|
public getSettings({ baseCurrency, xRayRules }: UserSettings): Settings {
|
||||||
return {
|
return {
|
||||||
baseCurrency,
|
baseCurrency,
|
||||||
isActive: xRayRules[this.getKey()].isActive,
|
isActive: xRayRules?.[this.getKey()].isActive ?? true,
|
||||||
thresholdMax: xRayRules[this.getKey()]?.thresholdMax ?? 0.01
|
thresholdMax: xRayRules?.[this.getKey()]?.thresholdMax ?? 0.01
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,9 +1,9 @@
|
|||||||
import { Environment } from '@ghostfolio/api/services/interfaces/environment.interface';
|
import { Environment } from '@ghostfolio/api/services/interfaces/environment.interface';
|
||||||
import {
|
import {
|
||||||
CACHE_TTL_NO_CACHE,
|
CACHE_TTL_NO_CACHE,
|
||||||
DEFAULT_PROCESSOR_CONCURRENCY_GATHER_ASSET_PROFILE,
|
DEFAULT_PROCESSOR_GATHER_ASSET_PROFILE_CONCURRENCY,
|
||||||
DEFAULT_PROCESSOR_CONCURRENCY_GATHER_HISTORICAL_MARKET_DATA,
|
DEFAULT_PROCESSOR_GATHER_HISTORICAL_MARKET_DATA_CONCURRENCY,
|
||||||
DEFAULT_PROCESSOR_CONCURRENCY_PORTFOLIO_SNAPSHOT,
|
DEFAULT_PROCESSOR_PORTFOLIO_SNAPSHOT_COMPUTATION_CONCURRENCY,
|
||||||
DEFAULT_PROCESSOR_PORTFOLIO_SNAPSHOT_COMPUTATION_TIMEOUT,
|
DEFAULT_PROCESSOR_PORTFOLIO_SNAPSHOT_COMPUTATION_TIMEOUT,
|
||||||
DEFAULT_ROOT_URL
|
DEFAULT_ROOT_URL
|
||||||
} from '@ghostfolio/common/config';
|
} from '@ghostfolio/common/config';
|
||||||
@ -51,14 +51,14 @@ export class ConfigurationService {
|
|||||||
MAX_ACTIVITIES_TO_IMPORT: num({ default: Number.MAX_SAFE_INTEGER }),
|
MAX_ACTIVITIES_TO_IMPORT: num({ default: Number.MAX_SAFE_INTEGER }),
|
||||||
MAX_CHART_ITEMS: num({ default: 365 }),
|
MAX_CHART_ITEMS: num({ default: 365 }),
|
||||||
PORT: port({ default: 3333 }),
|
PORT: port({ default: 3333 }),
|
||||||
PROCESSOR_CONCURRENCY_GATHER_ASSET_PROFILE: num({
|
PROCESSOR_GATHER_ASSET_PROFILE_CONCURRENCY: num({
|
||||||
default: DEFAULT_PROCESSOR_CONCURRENCY_GATHER_ASSET_PROFILE
|
default: DEFAULT_PROCESSOR_GATHER_ASSET_PROFILE_CONCURRENCY
|
||||||
}),
|
}),
|
||||||
PROCESSOR_CONCURRENCY_GATHER_HISTORICAL_MARKET_DATA: num({
|
PROCESSOR_GATHER_HISTORICAL_MARKET_DATA_CONCURRENCY: num({
|
||||||
default: DEFAULT_PROCESSOR_CONCURRENCY_GATHER_HISTORICAL_MARKET_DATA
|
default: DEFAULT_PROCESSOR_GATHER_HISTORICAL_MARKET_DATA_CONCURRENCY
|
||||||
}),
|
}),
|
||||||
PROCESSOR_CONCURRENCY_PORTFOLIO_SNAPSHOT: num({
|
PROCESSOR_PORTFOLIO_SNAPSHOT_COMPUTATION_CONCURRENCY: num({
|
||||||
default: DEFAULT_PROCESSOR_CONCURRENCY_PORTFOLIO_SNAPSHOT
|
default: DEFAULT_PROCESSOR_PORTFOLIO_SNAPSHOT_COMPUTATION_CONCURRENCY
|
||||||
}),
|
}),
|
||||||
PROCESSOR_PORTFOLIO_SNAPSHOT_COMPUTATION_TIMEOUT: num({
|
PROCESSOR_PORTFOLIO_SNAPSHOT_COMPUTATION_TIMEOUT: num({
|
||||||
default: DEFAULT_PROCESSOR_PORTFOLIO_SNAPSHOT_COMPUTATION_TIMEOUT
|
default: DEFAULT_PROCESSOR_PORTFOLIO_SNAPSHOT_COMPUTATION_TIMEOUT
|
||||||
|
@ -1,4 +1,3 @@
|
|||||||
import { ConfigurationService } from '@ghostfolio/api/services/configuration/configuration.service';
|
|
||||||
import { CryptocurrencyService } from '@ghostfolio/api/services/cryptocurrency/cryptocurrency.service';
|
import { CryptocurrencyService } from '@ghostfolio/api/services/cryptocurrency/cryptocurrency.service';
|
||||||
|
|
||||||
import { YahooFinanceDataEnhancerService } from './yahoo-finance.service';
|
import { YahooFinanceDataEnhancerService } from './yahoo-finance.service';
|
||||||
@ -26,16 +25,13 @@ jest.mock(
|
|||||||
);
|
);
|
||||||
|
|
||||||
describe('YahooFinanceDataEnhancerService', () => {
|
describe('YahooFinanceDataEnhancerService', () => {
|
||||||
let configurationService: ConfigurationService;
|
|
||||||
let cryptocurrencyService: CryptocurrencyService;
|
let cryptocurrencyService: CryptocurrencyService;
|
||||||
let yahooFinanceDataEnhancerService: YahooFinanceDataEnhancerService;
|
let yahooFinanceDataEnhancerService: YahooFinanceDataEnhancerService;
|
||||||
|
|
||||||
beforeAll(async () => {
|
beforeAll(async () => {
|
||||||
configurationService = new ConfigurationService();
|
|
||||||
cryptocurrencyService = new CryptocurrencyService();
|
cryptocurrencyService = new CryptocurrencyService();
|
||||||
|
|
||||||
yahooFinanceDataEnhancerService = new YahooFinanceDataEnhancerService(
|
yahooFinanceDataEnhancerService = new YahooFinanceDataEnhancerService(
|
||||||
configurationService,
|
|
||||||
cryptocurrencyService
|
cryptocurrencyService
|
||||||
);
|
);
|
||||||
});
|
});
|
||||||
|
@ -1,4 +1,3 @@
|
|||||||
import { ConfigurationService } from '@ghostfolio/api/services/configuration/configuration.service';
|
|
||||||
import { CryptocurrencyService } from '@ghostfolio/api/services/cryptocurrency/cryptocurrency.service';
|
import { CryptocurrencyService } from '@ghostfolio/api/services/cryptocurrency/cryptocurrency.service';
|
||||||
import { DataEnhancerInterface } from '@ghostfolio/api/services/data-provider/interfaces/data-enhancer.interface';
|
import { DataEnhancerInterface } from '@ghostfolio/api/services/data-provider/interfaces/data-enhancer.interface';
|
||||||
import {
|
import {
|
||||||
@ -24,7 +23,6 @@ import type { Price } from 'yahoo-finance2/dist/esm/src/modules/quoteSummary-ifa
|
|||||||
@Injectable()
|
@Injectable()
|
||||||
export class YahooFinanceDataEnhancerService implements DataEnhancerInterface {
|
export class YahooFinanceDataEnhancerService implements DataEnhancerInterface {
|
||||||
public constructor(
|
public constructor(
|
||||||
private readonly configurationService: ConfigurationService,
|
|
||||||
private readonly cryptocurrencyService: CryptocurrencyService
|
private readonly cryptocurrencyService: CryptocurrencyService
|
||||||
) {}
|
) {}
|
||||||
|
|
||||||
|
@ -163,10 +163,10 @@ export class EodHistoricalDataService implements DataProviderInterface {
|
|||||||
).json<any>();
|
).json<any>();
|
||||||
|
|
||||||
return response.reduce(
|
return response.reduce(
|
||||||
(result, { close, date }) => {
|
(result, { adjusted_close, date }) => {
|
||||||
if (isNumber(close)) {
|
if (isNumber(adjusted_close)) {
|
||||||
result[this.convertFromEodSymbol(symbol)][date] = {
|
result[this.convertFromEodSymbol(symbol)][date] = {
|
||||||
marketPrice: close
|
marketPrice: adjusted_close
|
||||||
};
|
};
|
||||||
} else {
|
} else {
|
||||||
Logger.error(
|
Logger.error(
|
||||||
|
@ -76,7 +76,7 @@ export class GoogleSheetsService implements DataProviderInterface {
|
|||||||
} = {};
|
} = {};
|
||||||
|
|
||||||
rows
|
rows
|
||||||
.filter((row, index) => {
|
.filter((_row, index) => {
|
||||||
return index >= 1;
|
return index >= 1;
|
||||||
})
|
})
|
||||||
.forEach((row) => {
|
.forEach((row) => {
|
||||||
|
@ -30,6 +30,10 @@ export interface Environment extends CleanedEnvAccessors {
|
|||||||
MAX_ACTIVITIES_TO_IMPORT: number;
|
MAX_ACTIVITIES_TO_IMPORT: number;
|
||||||
MAX_CHART_ITEMS: number;
|
MAX_CHART_ITEMS: number;
|
||||||
PORT: number;
|
PORT: number;
|
||||||
|
PROCESSOR_GATHER_ASSET_PROFILE_CONCURRENCY: number;
|
||||||
|
PROCESSOR_GATHER_HISTORICAL_MARKET_DATA_CONCURRENCY: number;
|
||||||
|
PROCESSOR_PORTFOLIO_SNAPSHOT_COMPUTATION_CONCURRENCY: number;
|
||||||
|
PROCESSOR_PORTFOLIO_SNAPSHOT_COMPUTATION_TIMEOUT: number;
|
||||||
REDIS_DB: number;
|
REDIS_DB: number;
|
||||||
REDIS_HOST: string;
|
REDIS_HOST: string;
|
||||||
REDIS_PASSWORD: string;
|
REDIS_PASSWORD: string;
|
||||||
|
@ -3,8 +3,8 @@ import { IDataGatheringItem } from '@ghostfolio/api/services/interfaces/interfac
|
|||||||
import { MarketDataService } from '@ghostfolio/api/services/market-data/market-data.service';
|
import { MarketDataService } from '@ghostfolio/api/services/market-data/market-data.service';
|
||||||
import {
|
import {
|
||||||
DATA_GATHERING_QUEUE,
|
DATA_GATHERING_QUEUE,
|
||||||
DEFAULT_PROCESSOR_CONCURRENCY_GATHER_ASSET_PROFILE,
|
DEFAULT_PROCESSOR_GATHER_ASSET_PROFILE_CONCURRENCY,
|
||||||
DEFAULT_PROCESSOR_CONCURRENCY_GATHER_HISTORICAL_MARKET_DATA,
|
DEFAULT_PROCESSOR_GATHER_HISTORICAL_MARKET_DATA_CONCURRENCY,
|
||||||
GATHER_ASSET_PROFILE_PROCESS,
|
GATHER_ASSET_PROFILE_PROCESS,
|
||||||
GATHER_HISTORICAL_MARKET_DATA_PROCESS_JOB_NAME
|
GATHER_HISTORICAL_MARKET_DATA_PROCESS_JOB_NAME
|
||||||
} from '@ghostfolio/common/config';
|
} from '@ghostfolio/common/config';
|
||||||
@ -38,8 +38,8 @@ export class DataGatheringProcessor {
|
|||||||
|
|
||||||
@Process({
|
@Process({
|
||||||
concurrency: parseInt(
|
concurrency: parseInt(
|
||||||
process.env.PROCESSOR_CONCURRENCY_GATHER_ASSET_PROFILE ??
|
process.env.PROCESSOR_GATHER_ASSET_PROFILE_CONCURRENCY ??
|
||||||
DEFAULT_PROCESSOR_CONCURRENCY_GATHER_ASSET_PROFILE.toString(),
|
DEFAULT_PROCESSOR_GATHER_ASSET_PROFILE_CONCURRENCY.toString(),
|
||||||
10
|
10
|
||||||
),
|
),
|
||||||
name: GATHER_ASSET_PROFILE_PROCESS
|
name: GATHER_ASSET_PROFILE_PROCESS
|
||||||
@ -69,8 +69,8 @@ export class DataGatheringProcessor {
|
|||||||
|
|
||||||
@Process({
|
@Process({
|
||||||
concurrency: parseInt(
|
concurrency: parseInt(
|
||||||
process.env.PROCESSOR_CONCURRENCY_GATHER_HISTORICAL_MARKET_DATA ??
|
process.env.PROCESSOR_GATHER_HISTORICAL_MARKET_DATA_CONCURRENCY ??
|
||||||
DEFAULT_PROCESSOR_CONCURRENCY_GATHER_HISTORICAL_MARKET_DATA.toString(),
|
DEFAULT_PROCESSOR_GATHER_HISTORICAL_MARKET_DATA_CONCURRENCY.toString(),
|
||||||
10
|
10
|
||||||
),
|
),
|
||||||
name: GATHER_HISTORICAL_MARKET_DATA_PROCESS_JOB_NAME
|
name: GATHER_HISTORICAL_MARKET_DATA_PROCESS_JOB_NAME
|
||||||
|
@ -10,7 +10,7 @@ import { MarketDataModule } from '@ghostfolio/api/services/market-data/market-da
|
|||||||
import { PortfolioSnapshotService } from '@ghostfolio/api/services/queues/portfolio-snapshot/portfolio-snapshot.service';
|
import { PortfolioSnapshotService } from '@ghostfolio/api/services/queues/portfolio-snapshot/portfolio-snapshot.service';
|
||||||
import {
|
import {
|
||||||
DEFAULT_PROCESSOR_PORTFOLIO_SNAPSHOT_COMPUTATION_TIMEOUT,
|
DEFAULT_PROCESSOR_PORTFOLIO_SNAPSHOT_COMPUTATION_TIMEOUT,
|
||||||
PORTFOLIO_SNAPSHOT_QUEUE
|
PORTFOLIO_SNAPSHOT_COMPUTATION_QUEUE
|
||||||
} from '@ghostfolio/common/config';
|
} from '@ghostfolio/common/config';
|
||||||
|
|
||||||
import { BullModule } from '@nestjs/bull';
|
import { BullModule } from '@nestjs/bull';
|
||||||
@ -23,7 +23,7 @@ import { PortfolioSnapshotProcessor } from './portfolio-snapshot.processor';
|
|||||||
imports: [
|
imports: [
|
||||||
AccountBalanceModule,
|
AccountBalanceModule,
|
||||||
BullModule.registerQueue({
|
BullModule.registerQueue({
|
||||||
name: PORTFOLIO_SNAPSHOT_QUEUE,
|
name: PORTFOLIO_SNAPSHOT_COMPUTATION_QUEUE,
|
||||||
settings: {
|
settings: {
|
||||||
lockDuration: parseInt(
|
lockDuration: parseInt(
|
||||||
process.env.PROCESSOR_PORTFOLIO_SNAPSHOT_COMPUTATION_TIMEOUT ??
|
process.env.PROCESSOR_PORTFOLIO_SNAPSHOT_COMPUTATION_TIMEOUT ??
|
||||||
|
@ -9,9 +9,9 @@ import { RedisCacheService } from '@ghostfolio/api/app/redis-cache/redis-cache.s
|
|||||||
import { ConfigurationService } from '@ghostfolio/api/services/configuration/configuration.service';
|
import { ConfigurationService } from '@ghostfolio/api/services/configuration/configuration.service';
|
||||||
import {
|
import {
|
||||||
CACHE_TTL_INFINITE,
|
CACHE_TTL_INFINITE,
|
||||||
DEFAULT_PROCESSOR_CONCURRENCY_PORTFOLIO_SNAPSHOT,
|
DEFAULT_PROCESSOR_PORTFOLIO_SNAPSHOT_COMPUTATION_CONCURRENCY,
|
||||||
PORTFOLIO_SNAPSHOT_PROCESS_JOB_NAME,
|
PORTFOLIO_SNAPSHOT_PROCESS_JOB_NAME,
|
||||||
PORTFOLIO_SNAPSHOT_QUEUE
|
PORTFOLIO_SNAPSHOT_COMPUTATION_QUEUE
|
||||||
} from '@ghostfolio/common/config';
|
} from '@ghostfolio/common/config';
|
||||||
|
|
||||||
import { Process, Processor } from '@nestjs/bull';
|
import { Process, Processor } from '@nestjs/bull';
|
||||||
@ -22,7 +22,7 @@ import { addMilliseconds } from 'date-fns';
|
|||||||
import { IPortfolioSnapshotQueueJob } from './interfaces/portfolio-snapshot-queue-job.interface';
|
import { IPortfolioSnapshotQueueJob } from './interfaces/portfolio-snapshot-queue-job.interface';
|
||||||
|
|
||||||
@Injectable()
|
@Injectable()
|
||||||
@Processor(PORTFOLIO_SNAPSHOT_QUEUE)
|
@Processor(PORTFOLIO_SNAPSHOT_COMPUTATION_QUEUE)
|
||||||
export class PortfolioSnapshotProcessor {
|
export class PortfolioSnapshotProcessor {
|
||||||
public constructor(
|
public constructor(
|
||||||
private readonly accountBalanceService: AccountBalanceService,
|
private readonly accountBalanceService: AccountBalanceService,
|
||||||
@ -34,8 +34,8 @@ export class PortfolioSnapshotProcessor {
|
|||||||
|
|
||||||
@Process({
|
@Process({
|
||||||
concurrency: parseInt(
|
concurrency: parseInt(
|
||||||
process.env.PROCESSOR_CONCURRENCY_PORTFOLIO_SNAPSHOT ??
|
process.env.PROCESSOR_PORTFOLIO_SNAPSHOT_COMPUTATION_CONCURRENCY ??
|
||||||
DEFAULT_PROCESSOR_CONCURRENCY_PORTFOLIO_SNAPSHOT.toString(),
|
DEFAULT_PROCESSOR_PORTFOLIO_SNAPSHOT_COMPUTATION_CONCURRENCY.toString(),
|
||||||
10
|
10
|
||||||
),
|
),
|
||||||
name: PORTFOLIO_SNAPSHOT_PROCESS_JOB_NAME
|
name: PORTFOLIO_SNAPSHOT_PROCESS_JOB_NAME
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
import { PORTFOLIO_SNAPSHOT_QUEUE } from '@ghostfolio/common/config';
|
import { PORTFOLIO_SNAPSHOT_COMPUTATION_QUEUE } from '@ghostfolio/common/config';
|
||||||
|
|
||||||
import { InjectQueue } from '@nestjs/bull';
|
import { InjectQueue } from '@nestjs/bull';
|
||||||
import { Injectable } from '@nestjs/common';
|
import { Injectable } from '@nestjs/common';
|
||||||
@ -9,7 +9,7 @@ import { IPortfolioSnapshotQueueJob } from './interfaces/portfolio-snapshot-queu
|
|||||||
@Injectable()
|
@Injectable()
|
||||||
export class PortfolioSnapshotService {
|
export class PortfolioSnapshotService {
|
||||||
public constructor(
|
public constructor(
|
||||||
@InjectQueue(PORTFOLIO_SNAPSHOT_QUEUE)
|
@InjectQueue(PORTFOLIO_SNAPSHOT_COMPUTATION_QUEUE)
|
||||||
private readonly portfolioSnapshotQueue: Queue
|
private readonly portfolioSnapshotQueue: Queue
|
||||||
) {}
|
) {}
|
||||||
|
|
||||||
|
@ -29,12 +29,13 @@ import { SymbolProfile } from '@prisma/client';
|
|||||||
import {
|
import {
|
||||||
Chart,
|
Chart,
|
||||||
ChartData,
|
ChartData,
|
||||||
|
LinearScale,
|
||||||
LineController,
|
LineController,
|
||||||
LineElement,
|
LineElement,
|
||||||
LinearScale,
|
|
||||||
PointElement,
|
PointElement,
|
||||||
TimeScale,
|
TimeScale,
|
||||||
Tooltip
|
Tooltip,
|
||||||
|
TooltipPosition
|
||||||
} from 'chart.js';
|
} from 'chart.js';
|
||||||
import 'chartjs-adapter-date-fns';
|
import 'chartjs-adapter-date-fns';
|
||||||
import annotationPlugin from 'chartjs-plugin-annotation';
|
import annotationPlugin from 'chartjs-plugin-annotation';
|
||||||
@ -74,7 +75,7 @@ export class BenchmarkComparatorComponent implements OnChanges, OnDestroy {
|
|||||||
Tooltip
|
Tooltip
|
||||||
);
|
);
|
||||||
|
|
||||||
Tooltip.positioners['top'] = (elements, position) =>
|
Tooltip.positioners['top'] = (_elements, position: TooltipPosition) =>
|
||||||
getTooltipPositionerMapTop(this.chart, position);
|
getTooltipPositionerMapTop(this.chart, position);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -29,12 +29,13 @@ import {
|
|||||||
BarElement,
|
BarElement,
|
||||||
Chart,
|
Chart,
|
||||||
ChartData,
|
ChartData,
|
||||||
|
LinearScale,
|
||||||
LineController,
|
LineController,
|
||||||
LineElement,
|
LineElement,
|
||||||
LinearScale,
|
|
||||||
PointElement,
|
PointElement,
|
||||||
TimeScale,
|
TimeScale,
|
||||||
Tooltip
|
Tooltip,
|
||||||
|
TooltipPosition
|
||||||
} from 'chart.js';
|
} from 'chart.js';
|
||||||
import 'chartjs-adapter-date-fns';
|
import 'chartjs-adapter-date-fns';
|
||||||
import annotationPlugin from 'chartjs-plugin-annotation';
|
import annotationPlugin from 'chartjs-plugin-annotation';
|
||||||
@ -79,7 +80,7 @@ export class InvestmentChartComponent implements OnChanges, OnDestroy {
|
|||||||
Tooltip
|
Tooltip
|
||||||
);
|
);
|
||||||
|
|
||||||
Tooltip.positioners['top'] = (elements, position) =>
|
Tooltip.positioners['top'] = (_elements, position: TooltipPosition) =>
|
||||||
getTooltipPositionerMapTop(this.chart, position);
|
getTooltipPositionerMapTop(this.chart, position);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1,5 +1,7 @@
|
|||||||
import { PortfolioReportRule } from '@ghostfolio/common/interfaces';
|
import { PortfolioReportRule } from '@ghostfolio/common/interfaces';
|
||||||
|
import { XRayRulesSettings } from '@ghostfolio/common/types';
|
||||||
|
|
||||||
export interface IRuleSettingsDialogParams {
|
export interface IRuleSettingsDialogParams {
|
||||||
rule: PortfolioReportRule;
|
rule: PortfolioReportRule;
|
||||||
|
settings: XRayRulesSettings['AccountClusterRiskCurrentInvestment'];
|
||||||
}
|
}
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
import { PortfolioReportRule } from '@ghostfolio/common/interfaces';
|
import { XRayRulesSettings } from '@ghostfolio/common/types';
|
||||||
|
|
||||||
import { CommonModule } from '@angular/common';
|
import { CommonModule } from '@angular/common';
|
||||||
import { Component, Inject } from '@angular/core';
|
import { Component, Inject } from '@angular/core';
|
||||||
@ -9,8 +9,7 @@ import {
|
|||||||
MatDialogModule,
|
MatDialogModule,
|
||||||
MatDialogRef
|
MatDialogRef
|
||||||
} from '@angular/material/dialog';
|
} from '@angular/material/dialog';
|
||||||
import { MatFormFieldModule } from '@angular/material/form-field';
|
import { MatSliderModule } from '@angular/material/slider';
|
||||||
import { MatInputModule } from '@angular/material/input';
|
|
||||||
|
|
||||||
import { IRuleSettingsDialogParams } from './interfaces/interfaces';
|
import { IRuleSettingsDialogParams } from './interfaces/interfaces';
|
||||||
|
|
||||||
@ -20,8 +19,7 @@ import { IRuleSettingsDialogParams } from './interfaces/interfaces';
|
|||||||
FormsModule,
|
FormsModule,
|
||||||
MatButtonModule,
|
MatButtonModule,
|
||||||
MatDialogModule,
|
MatDialogModule,
|
||||||
MatFormFieldModule,
|
MatSliderModule
|
||||||
MatInputModule
|
|
||||||
],
|
],
|
||||||
selector: 'gf-rule-settings-dialog',
|
selector: 'gf-rule-settings-dialog',
|
||||||
standalone: true,
|
standalone: true,
|
||||||
@ -29,12 +27,10 @@ import { IRuleSettingsDialogParams } from './interfaces/interfaces';
|
|||||||
templateUrl: './rule-settings-dialog.html'
|
templateUrl: './rule-settings-dialog.html'
|
||||||
})
|
})
|
||||||
export class GfRuleSettingsDialogComponent {
|
export class GfRuleSettingsDialogComponent {
|
||||||
public settings: PortfolioReportRule['settings'];
|
public settings: XRayRulesSettings['AccountClusterRiskCurrentInvestment'];
|
||||||
|
|
||||||
public constructor(
|
public constructor(
|
||||||
@Inject(MAT_DIALOG_DATA) public data: IRuleSettingsDialogParams,
|
@Inject(MAT_DIALOG_DATA) public data: IRuleSettingsDialogParams,
|
||||||
public dialogRef: MatDialogRef<GfRuleSettingsDialogComponent>
|
public dialogRef: MatDialogRef<GfRuleSettingsDialogComponent>
|
||||||
) {
|
) {}
|
||||||
this.settings = this.data.rule.settings;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -1,37 +1,85 @@
|
|||||||
<div mat-dialog-title>{{ data.rule.name }}</div>
|
<div mat-dialog-title>{{ data.rule.name }}</div>
|
||||||
|
|
||||||
<div class="py-3" mat-dialog-content>
|
<div class="py-3" mat-dialog-content>
|
||||||
<mat-form-field
|
<div
|
||||||
appearance="outline"
|
|
||||||
class="w-100"
|
class="w-100"
|
||||||
[ngClass]="{ 'd-none': settings.thresholdMin === undefined }"
|
[ngClass]="{ 'd-none': !data.rule.configuration.thresholdMin }"
|
||||||
>
|
>
|
||||||
<mat-label i18n>Threshold Min</mat-label>
|
<h6 class="mb-0">
|
||||||
<input
|
<ng-container i18n>Threshold Min</ng-container>:
|
||||||
matInput
|
@if (data.rule.configuration.threshold.unit === '%') {
|
||||||
|
{{ data.settings.thresholdMin | percent: '1.2-2' }}
|
||||||
|
} @else {
|
||||||
|
{{ data.settings.thresholdMin }}
|
||||||
|
}
|
||||||
|
</h6>
|
||||||
|
@if (data.rule.configuration.threshold.unit === '%') {
|
||||||
|
<label>{{
|
||||||
|
data.rule.configuration.threshold.min | percent: '1.2-2'
|
||||||
|
}}</label>
|
||||||
|
} @else {
|
||||||
|
<label>{{ data.rule.configuration.threshold.min }}</label>
|
||||||
|
}
|
||||||
|
<mat-slider
|
||||||
name="thresholdMin"
|
name="thresholdMin"
|
||||||
type="number"
|
[max]="data.rule.configuration.threshold.max"
|
||||||
[(ngModel)]="settings.thresholdMin"
|
[min]="data.rule.configuration.threshold.min"
|
||||||
/>
|
[step]="data.rule.configuration.threshold.step"
|
||||||
</mat-form-field>
|
>
|
||||||
<mat-form-field
|
<input matSliderThumb [(ngModel)]="data.settings.thresholdMin" />
|
||||||
appearance="outline"
|
</mat-slider>
|
||||||
|
@if (data.rule.configuration.threshold.unit === '%') {
|
||||||
|
<label>{{
|
||||||
|
data.rule.configuration.threshold.max | percent: '1.2-2'
|
||||||
|
}}</label>
|
||||||
|
} @else {
|
||||||
|
<label>{{ data.rule.configuration.threshold.max }}</label>
|
||||||
|
}
|
||||||
|
</div>
|
||||||
|
<div
|
||||||
class="w-100"
|
class="w-100"
|
||||||
[ngClass]="{ 'd-none': settings.thresholdMax === undefined }"
|
[ngClass]="{ 'd-none': !data.rule.configuration.thresholdMax }"
|
||||||
>
|
>
|
||||||
<mat-label i18n>Threshold Max</mat-label>
|
<h6 class="mb-0">
|
||||||
<input
|
<ng-container i18n>Threshold Max</ng-container>:
|
||||||
matInput
|
@if (data.rule.configuration.threshold.unit === '%') {
|
||||||
|
{{ data.settings.thresholdMax | percent: '1.2-2' }}
|
||||||
|
} @else {
|
||||||
|
{{ data.settings.thresholdMax }}
|
||||||
|
}
|
||||||
|
</h6>
|
||||||
|
@if (data.rule.configuration.threshold.unit === '%') {
|
||||||
|
<label>{{
|
||||||
|
data.rule.configuration.threshold.min | percent: '1.2-2'
|
||||||
|
}}</label>
|
||||||
|
} @else {
|
||||||
|
<label>{{ data.rule.configuration.threshold.min }}</label>
|
||||||
|
}
|
||||||
|
<mat-slider
|
||||||
name="thresholdMax"
|
name="thresholdMax"
|
||||||
type="number"
|
[max]="data.rule.configuration.threshold.max"
|
||||||
[(ngModel)]="settings.thresholdMax"
|
[min]="data.rule.configuration.threshold.min"
|
||||||
/>
|
[step]="data.rule.configuration.threshold.step"
|
||||||
</mat-form-field>
|
>
|
||||||
|
<input matSliderThumb [(ngModel)]="data.settings.thresholdMax" />
|
||||||
|
</mat-slider>
|
||||||
|
@if (data.rule.configuration.threshold.unit === '%') {
|
||||||
|
<label>{{
|
||||||
|
data.rule.configuration.threshold.max | percent: '1.2-2'
|
||||||
|
}}</label>
|
||||||
|
} @else {
|
||||||
|
<label>{{ data.rule.configuration.threshold.max }}</label>
|
||||||
|
}
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div align="end" mat-dialog-actions>
|
<div align="end" mat-dialog-actions>
|
||||||
<button i18n mat-button (click)="dialogRef.close()">Close</button>
|
<button i18n mat-button (click)="dialogRef.close()">Close</button>
|
||||||
<button color="primary" mat-flat-button (click)="dialogRef.close(settings)">
|
<button
|
||||||
|
color="primary"
|
||||||
|
mat-flat-button
|
||||||
|
(click)="dialogRef.close(data.settings)"
|
||||||
|
>
|
||||||
<ng-container i18n>Save</ng-container>
|
<ng-container i18n>Save</ng-container>
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
|
@ -62,7 +62,7 @@
|
|||||||
<ion-icon name="ellipsis-horizontal" />
|
<ion-icon name="ellipsis-horizontal" />
|
||||||
</button>
|
</button>
|
||||||
<mat-menu #rulesMenu="matMenu" xPosition="before">
|
<mat-menu #rulesMenu="matMenu" xPosition="before">
|
||||||
@if (rule?.isActive && !isEmpty(rule.settings)) {
|
@if (rule?.isActive && rule?.configuration) {
|
||||||
<button mat-menu-item (click)="onCustomizeRule(rule)">
|
<button mat-menu-item (click)="onCustomizeRule(rule)">
|
||||||
<ng-container i18n>Customize</ng-container>...
|
<ng-container i18n>Customize</ng-container>...
|
||||||
</button>
|
</button>
|
||||||
|
@ -1,5 +1,7 @@
|
|||||||
import { UpdateUserSettingDto } from '@ghostfolio/api/app/user/update-user-setting.dto';
|
import { UpdateUserSettingDto } from '@ghostfolio/api/app/user/update-user-setting.dto';
|
||||||
|
import { RuleSettings } from '@ghostfolio/api/models/interfaces/rule-settings.interface';
|
||||||
import { PortfolioReportRule } from '@ghostfolio/common/interfaces';
|
import { PortfolioReportRule } from '@ghostfolio/common/interfaces';
|
||||||
|
import { XRayRulesSettings } from '@ghostfolio/common/types';
|
||||||
|
|
||||||
import {
|
import {
|
||||||
ChangeDetectionStrategy,
|
ChangeDetectionStrategy,
|
||||||
@ -10,7 +12,6 @@ import {
|
|||||||
Output
|
Output
|
||||||
} from '@angular/core';
|
} from '@angular/core';
|
||||||
import { MatDialog } from '@angular/material/dialog';
|
import { MatDialog } from '@angular/material/dialog';
|
||||||
import { isEmpty } from 'lodash';
|
|
||||||
import { DeviceDetectorService } from 'ngx-device-detector';
|
import { DeviceDetectorService } from 'ngx-device-detector';
|
||||||
import { Subject, takeUntil } from 'rxjs';
|
import { Subject, takeUntil } from 'rxjs';
|
||||||
|
|
||||||
@ -27,11 +28,10 @@ export class RuleComponent implements OnInit {
|
|||||||
@Input() hasPermissionToUpdateUserSettings: boolean;
|
@Input() hasPermissionToUpdateUserSettings: boolean;
|
||||||
@Input() isLoading: boolean;
|
@Input() isLoading: boolean;
|
||||||
@Input() rule: PortfolioReportRule;
|
@Input() rule: PortfolioReportRule;
|
||||||
|
@Input() settings: XRayRulesSettings['AccountClusterRiskCurrentInvestment'];
|
||||||
|
|
||||||
@Output() ruleUpdated = new EventEmitter<UpdateUserSettingDto>();
|
@Output() ruleUpdated = new EventEmitter<UpdateUserSettingDto>();
|
||||||
|
|
||||||
public isEmpty = isEmpty;
|
|
||||||
|
|
||||||
private deviceType: string;
|
private deviceType: string;
|
||||||
private unsubscribeSubject = new Subject<void>();
|
private unsubscribeSubject = new Subject<void>();
|
||||||
|
|
||||||
@ -46,16 +46,17 @@ export class RuleComponent implements OnInit {
|
|||||||
|
|
||||||
public onCustomizeRule(rule: PortfolioReportRule) {
|
public onCustomizeRule(rule: PortfolioReportRule) {
|
||||||
const dialogRef = this.dialog.open(GfRuleSettingsDialogComponent, {
|
const dialogRef = this.dialog.open(GfRuleSettingsDialogComponent, {
|
||||||
data: <IRuleSettingsDialogParams>{
|
data: {
|
||||||
rule
|
rule,
|
||||||
},
|
settings: this.settings
|
||||||
|
} as IRuleSettingsDialogParams,
|
||||||
width: this.deviceType === 'mobile' ? '100vw' : '50rem'
|
width: this.deviceType === 'mobile' ? '100vw' : '50rem'
|
||||||
});
|
});
|
||||||
|
|
||||||
dialogRef
|
dialogRef
|
||||||
.afterClosed()
|
.afterClosed()
|
||||||
.pipe(takeUntil(this.unsubscribeSubject))
|
.pipe(takeUntil(this.unsubscribeSubject))
|
||||||
.subscribe((settings: PortfolioReportRule['settings']) => {
|
.subscribe((settings: RuleSettings) => {
|
||||||
if (settings) {
|
if (settings) {
|
||||||
this.ruleUpdated.emit({
|
this.ruleUpdated.emit({
|
||||||
xRayRules: {
|
xRayRules: {
|
||||||
|
@ -12,6 +12,7 @@
|
|||||||
hasPermissionToUpdateUserSettings
|
hasPermissionToUpdateUserSettings
|
||||||
"
|
"
|
||||||
[rule]="rule"
|
[rule]="rule"
|
||||||
|
[settings]="settings?.[rule.key]"
|
||||||
(ruleUpdated)="onRuleUpdated($event)"
|
(ruleUpdated)="onRuleUpdated($event)"
|
||||||
/>
|
/>
|
||||||
}
|
}
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
import { UpdateUserSettingDto } from '@ghostfolio/api/app/user/update-user-setting.dto';
|
import { UpdateUserSettingDto } from '@ghostfolio/api/app/user/update-user-setting.dto';
|
||||||
import { PortfolioReportRule } from '@ghostfolio/common/interfaces';
|
import { PortfolioReportRule } from '@ghostfolio/common/interfaces';
|
||||||
|
import { XRayRulesSettings } from '@ghostfolio/common/types';
|
||||||
|
|
||||||
import {
|
import {
|
||||||
ChangeDetectionStrategy,
|
ChangeDetectionStrategy,
|
||||||
@ -19,11 +20,10 @@ export class RulesComponent {
|
|||||||
@Input() hasPermissionToUpdateUserSettings: boolean;
|
@Input() hasPermissionToUpdateUserSettings: boolean;
|
||||||
@Input() isLoading: boolean;
|
@Input() isLoading: boolean;
|
||||||
@Input() rules: PortfolioReportRule[];
|
@Input() rules: PortfolioReportRule[];
|
||||||
|
@Input() settings: XRayRulesSettings;
|
||||||
|
|
||||||
@Output() rulesUpdated = new EventEmitter<UpdateUserSettingDto>();
|
@Output() rulesUpdated = new EventEmitter<UpdateUserSettingDto>();
|
||||||
|
|
||||||
public constructor() {}
|
|
||||||
|
|
||||||
public onRuleUpdated(event: UpdateUserSettingDto) {
|
public onRuleUpdated(event: UpdateUserSettingDto) {
|
||||||
this.rulesUpdated.emit(event);
|
this.rulesUpdated.emit(event);
|
||||||
}
|
}
|
||||||
|
@ -51,8 +51,8 @@
|
|||||||
manually enter it.
|
manually enter it.
|
||||||
</p>
|
</p>
|
||||||
<ol>
|
<ol>
|
||||||
<li>Go to the <i>Admin Control</i> panel</li>
|
<li>Open the <i>Admin Control</i> panel</li>
|
||||||
<li>Go to the <i>Market Data</i> section</li>
|
<li>Navigate to the <i>Market Data</i> section</li>
|
||||||
<li>Click on the <i>+</i> button</li>
|
<li>Click on the <i>+</i> button</li>
|
||||||
<li>Switch to <i>Add Currency</i></li>
|
<li>Switch to <i>Add Currency</i></li>
|
||||||
<li>Insert e.g. <code>EUR</code> for Euro</li>
|
<li>Insert e.g. <code>EUR</code> for Euro</li>
|
||||||
@ -78,8 +78,8 @@
|
|||||||
do the following:
|
do the following:
|
||||||
</p>
|
</p>
|
||||||
<ol>
|
<ol>
|
||||||
<li>Go to the <i>Admin Control</i> panel</li>
|
<li>Open the <i>Admin Control</i> panel</li>
|
||||||
<li>Go to the <i>Market Data</i> section</li>
|
<li>Navigate to the <i>Market Data</i> section</li>
|
||||||
<li>Select <i>Filter by Currencies</i></li>
|
<li>Select <i>Filter by Currencies</i></li>
|
||||||
<li>Find the entry <i>USDEUR</i></li>
|
<li>Find the entry <i>USDEUR</i></li>
|
||||||
<li>
|
<li>
|
||||||
@ -105,8 +105,8 @@
|
|||||||
</mat-card-header>
|
</mat-card-header>
|
||||||
<mat-card-content>
|
<mat-card-content>
|
||||||
<ol>
|
<ol>
|
||||||
<li>Go to the <i>Admin Control</i> panel</li>
|
<li>Open the <i>Admin Control</i> panel</li>
|
||||||
<li>Go to the <i>Settings</i> section</li>
|
<li>Navigate to the <i>Settings</i> section</li>
|
||||||
<li>Click on the <i>Add Platform</i> button</li>
|
<li>Click on the <i>Add Platform</i> button</li>
|
||||||
</ol>
|
</ol>
|
||||||
</mat-card-content>
|
</mat-card-content>
|
||||||
@ -117,8 +117,8 @@
|
|||||||
</mat-card-header>
|
</mat-card-header>
|
||||||
<mat-card-content>
|
<mat-card-content>
|
||||||
<ol>
|
<ol>
|
||||||
<li>Go to the <i>Admin Control</i> panel</li>
|
<li>Open the <i>Admin Control</i> panel</li>
|
||||||
<li>Go to the <i>Settings</i> section</li>
|
<li>Navigate to the <i>Settings</i> section</li>
|
||||||
<li>Click on the <i>Add Tag</i> button</li>
|
<li>Click on the <i>Add Tag</i> button</li>
|
||||||
</ol>
|
</ol>
|
||||||
</mat-card-content>
|
</mat-card-content>
|
||||||
@ -133,6 +133,24 @@
|
|||||||
providers are considered experimental.</mat-card-content
|
providers are considered experimental.</mat-card-content
|
||||||
>
|
>
|
||||||
</mat-card>
|
</mat-card>
|
||||||
|
<mat-card appearance="outlined" class="mb-3">
|
||||||
|
<mat-card-header>
|
||||||
|
<mat-card-title>How do I set up a benchmark?</mat-card-title>
|
||||||
|
</mat-card-header>
|
||||||
|
<mat-card-content>
|
||||||
|
<p>
|
||||||
|
To compare your performance with benchmarks like
|
||||||
|
<i>Bitcoin</i>, <i>Gold</i>, or the <i>S&P 500</i>, follow these
|
||||||
|
steps.
|
||||||
|
</p>
|
||||||
|
<ol>
|
||||||
|
<li>Open the <i>Admin Control</i> panel</li>
|
||||||
|
<li>Navigate to the <i>Market Data</i> section</li>
|
||||||
|
<li>Choose an asset profile</li>
|
||||||
|
<li>In the dialog, check the <i>Benchmark</i> box</li>
|
||||||
|
</ol>
|
||||||
|
</mat-card-content>
|
||||||
|
</mat-card>
|
||||||
<mat-card appearance="outlined" class="mb-3">
|
<mat-card appearance="outlined" class="mb-3">
|
||||||
<mat-card-header>
|
<mat-card-header>
|
||||||
<mat-card-title>How do I add a custom asset?</mat-card-title>
|
<mat-card-title>How do I add a custom asset?</mat-card-title>
|
||||||
@ -143,8 +161,8 @@
|
|||||||
provider, you can create a custom asset as follows.
|
provider, you can create a custom asset as follows.
|
||||||
</p>
|
</p>
|
||||||
<ol>
|
<ol>
|
||||||
<li>Go to the <i>Admin Control</i> panel</li>
|
<li>Open the <i>Admin Control</i> panel</li>
|
||||||
<li>Go to the <i>Market Data</i> section</li>
|
<li>Navigate to the <i>Market Data</i> section</li>
|
||||||
<li>Create an asset profile</li>
|
<li>Create an asset profile</li>
|
||||||
<li>Select <i>Add Manually</i> and enter a unique symbol</li>
|
<li>Select <i>Add Manually</i> and enter a unique symbol</li>
|
||||||
<li>Edit your asset profile</li>
|
<li>Edit your asset profile</li>
|
||||||
|
@ -138,6 +138,11 @@ export class FirePageComponent implements OnDestroy, OnInit {
|
|||||||
.putUserSetting(event)
|
.putUserSetting(event)
|
||||||
.pipe(takeUntil(this.unsubscribeSubject))
|
.pipe(takeUntil(this.unsubscribeSubject))
|
||||||
.subscribe(() => {
|
.subscribe(() => {
|
||||||
|
this.userService
|
||||||
|
.get(true)
|
||||||
|
.pipe(takeUntil(this.unsubscribeSubject))
|
||||||
|
.subscribe();
|
||||||
|
|
||||||
this.initializePortfolioReport();
|
this.initializePortfolioReport();
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
@ -132,6 +132,7 @@
|
|||||||
"
|
"
|
||||||
[isLoading]="isLoadingPortfolioReport"
|
[isLoading]="isLoadingPortfolioReport"
|
||||||
[rules]="emergencyFundRules"
|
[rules]="emergencyFundRules"
|
||||||
|
[settings]="user?.settings?.xRayRules"
|
||||||
(rulesUpdated)="onRulesUpdated($event)"
|
(rulesUpdated)="onRulesUpdated($event)"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
@ -150,6 +151,7 @@
|
|||||||
"
|
"
|
||||||
[isLoading]="isLoadingPortfolioReport"
|
[isLoading]="isLoadingPortfolioReport"
|
||||||
[rules]="currencyClusterRiskRules"
|
[rules]="currencyClusterRiskRules"
|
||||||
|
[settings]="user?.settings?.xRayRules"
|
||||||
(rulesUpdated)="onRulesUpdated($event)"
|
(rulesUpdated)="onRulesUpdated($event)"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
@ -168,6 +170,7 @@
|
|||||||
"
|
"
|
||||||
[isLoading]="isLoadingPortfolioReport"
|
[isLoading]="isLoadingPortfolioReport"
|
||||||
[rules]="accountClusterRiskRules"
|
[rules]="accountClusterRiskRules"
|
||||||
|
[settings]="user?.settings?.xRayRules"
|
||||||
(rulesUpdated)="onRulesUpdated($event)"
|
(rulesUpdated)="onRulesUpdated($event)"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
@ -186,6 +189,7 @@
|
|||||||
"
|
"
|
||||||
[isLoading]="isLoadingPortfolioReport"
|
[isLoading]="isLoadingPortfolioReport"
|
||||||
[rules]="feeRules"
|
[rules]="feeRules"
|
||||||
|
[settings]="user?.settings?.xRayRules"
|
||||||
(rulesUpdated)="onRulesUpdated($event)"
|
(rulesUpdated)="onRulesUpdated($event)"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
@ -200,6 +204,7 @@
|
|||||||
"
|
"
|
||||||
[isLoading]="isLoadingPortfolioReport"
|
[isLoading]="isLoadingPortfolioReport"
|
||||||
[rules]="inactiveRules"
|
[rules]="inactiveRules"
|
||||||
|
[settings]="user?.settings?.xRayRules"
|
||||||
(rulesUpdated)="onRulesUpdated($event)"
|
(rulesUpdated)="onRulesUpdated($event)"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
@ -1471,7 +1471,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">apps/client/src/app/components/rule/rule-settings-dialog/rule-settings-dialog.html</context>
|
<context context-type="sourcefile">apps/client/src/app/components/rule/rule-settings-dialog/rule-settings-dialog.html</context>
|
||||||
<context context-type="linenumber">35</context>
|
<context context-type="linenumber">53</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">apps/client/src/app/components/user-account-access/create-or-update-access-dialog/create-or-update-access-dialog.html</context>
|
<context context-type="sourcefile">apps/client/src/app/components/user-account-access/create-or-update-access-dialog/create-or-update-access-dialog.html</context>
|
||||||
@ -2303,7 +2303,7 @@
|
|||||||
<target state="translated">Portfolio</target>
|
<target state="translated">Portfolio</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">apps/client/src/app/components/benchmark-comparator/benchmark-comparator.component.ts</context>
|
<context context-type="sourcefile">apps/client/src/app/components/benchmark-comparator/benchmark-comparator.component.ts</context>
|
||||||
<context context-type="linenumber">116</context>
|
<context context-type="linenumber">117</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">apps/client/src/app/pages/portfolio/portfolio-page-routing.module.ts</context>
|
<context context-type="sourcefile">apps/client/src/app/pages/portfolio/portfolio-page-routing.module.ts</context>
|
||||||
@ -2319,7 +2319,7 @@
|
|||||||
<target state="translated">Punt de Referència</target>
|
<target state="translated">Punt de Referència</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">apps/client/src/app/components/benchmark-comparator/benchmark-comparator.component.ts</context>
|
<context context-type="sourcefile">apps/client/src/app/components/benchmark-comparator/benchmark-comparator.component.ts</context>
|
||||||
<context context-type="linenumber">128</context>
|
<context context-type="linenumber">129</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="68ca4a6d3699c0b1141421f8ca995cb1ed736128" datatype="html">
|
<trans-unit id="68ca4a6d3699c0b1141421f8ca995cb1ed736128" datatype="html">
|
||||||
@ -2579,7 +2579,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">apps/client/src/app/pages/portfolio/fire/fire-page.html</context>
|
<context context-type="sourcefile">apps/client/src/app/pages/portfolio/fire/fire-page.html</context>
|
||||||
<context context-type="linenumber">176</context>
|
<context context-type="linenumber">179</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="f2005fa461c06dc2e04d8918bbabedf23604b5b7" datatype="html">
|
<trans-unit id="f2005fa461c06dc2e04d8918bbabedf23604b5b7" datatype="html">
|
||||||
@ -2635,7 +2635,7 @@
|
|||||||
<target state="translated">Gestionar Activitats</target>
|
<target state="translated">Gestionar Activitats</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">apps/client/src/app/components/home-holdings/home-holdings.html</context>
|
<context context-type="sourcefile">apps/client/src/app/components/home-holdings/home-holdings.html</context>
|
||||||
<context context-type="linenumber">62</context>
|
<context context-type="linenumber">65</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="5486880308148746399" datatype="html">
|
<trans-unit id="5486880308148746399" datatype="html">
|
||||||
@ -2767,7 +2767,7 @@
|
|||||||
<target state="new">Total Amount</target>
|
<target state="new">Total Amount</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">apps/client/src/app/components/investment-chart/investment-chart.component.ts</context>
|
<context context-type="sourcefile">apps/client/src/app/components/investment-chart/investment-chart.component.ts</context>
|
||||||
<context context-type="linenumber">141</context>
|
<context context-type="linenumber">142</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="8192718423057883427" datatype="html">
|
<trans-unit id="8192718423057883427" datatype="html">
|
||||||
@ -2775,7 +2775,7 @@
|
|||||||
<target state="new">Savings Rate</target>
|
<target state="new">Savings Rate</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">apps/client/src/app/components/investment-chart/investment-chart.component.ts</context>
|
<context context-type="sourcefile">apps/client/src/app/components/investment-chart/investment-chart.component.ts</context>
|
||||||
<context context-type="linenumber">213</context>
|
<context context-type="linenumber">214</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="6a95e051c4fd80012488effb15d2842b2155ae5e" datatype="html">
|
<trans-unit id="6a95e051c4fd80012488effb15d2842b2155ae5e" datatype="html">
|
||||||
@ -3163,7 +3163,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
||||||
<context context-type="linenumber">217</context>
|
<context context-type="linenumber">210</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="7377728350294749129" datatype="html">
|
<trans-unit id="7377728350294749129" datatype="html">
|
||||||
@ -3175,7 +3175,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
||||||
<context context-type="linenumber">227</context>
|
<context context-type="linenumber">220</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="8768104874317770689" datatype="html">
|
<trans-unit id="8768104874317770689" datatype="html">
|
||||||
@ -3187,7 +3187,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
||||||
<context context-type="linenumber">231</context>
|
<context context-type="linenumber">224</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="7304247106520037555" datatype="html">
|
<trans-unit id="7304247106520037555" datatype="html">
|
||||||
@ -3199,7 +3199,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
||||||
<context context-type="linenumber">253</context>
|
<context context-type="linenumber">246</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="3667949571823271511" datatype="html">
|
<trans-unit id="3667949571823271511" datatype="html">
|
||||||
@ -3211,7 +3211,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
||||||
<context context-type="linenumber">256</context>
|
<context context-type="linenumber">249</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="2570446216260149991" datatype="html">
|
<trans-unit id="2570446216260149991" datatype="html">
|
||||||
@ -5199,7 +5199,7 @@
|
|||||||
<target state="new">Currency Cluster Risks</target>
|
<target state="new">Currency Cluster Risks</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">apps/client/src/app/pages/portfolio/fire/fire-page.html</context>
|
<context context-type="sourcefile">apps/client/src/app/pages/portfolio/fire/fire-page.html</context>
|
||||||
<context context-type="linenumber">140</context>
|
<context context-type="linenumber">141</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="c7b797e5df289241021db16010efb6ac3c6cfb86" datatype="html">
|
<trans-unit id="c7b797e5df289241021db16010efb6ac3c6cfb86" datatype="html">
|
||||||
@ -5207,7 +5207,7 @@
|
|||||||
<target state="new">Account Cluster Risks</target>
|
<target state="new">Account Cluster Risks</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">apps/client/src/app/pages/portfolio/fire/fire-page.html</context>
|
<context context-type="sourcefile">apps/client/src/app/pages/portfolio/fire/fire-page.html</context>
|
||||||
<context context-type="linenumber">158</context>
|
<context context-type="linenumber">160</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="5080775557941296581" datatype="html">
|
<trans-unit id="5080775557941296581" datatype="html">
|
||||||
@ -5995,7 +5995,7 @@
|
|||||||
<target state="new">Find holding...</target>
|
<target state="new">Find holding...</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
||||||
<context context-type="linenumber">140</context>
|
<context context-type="linenumber">139</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="3105754554141014845" datatype="html">
|
<trans-unit id="3105754554141014845" datatype="html">
|
||||||
@ -6003,7 +6003,7 @@
|
|||||||
<target state="new">Week to date</target>
|
<target state="new">Week to date</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
||||||
<context context-type="linenumber">219</context>
|
<context context-type="linenumber">212</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="7451343426685730864" datatype="html">
|
<trans-unit id="7451343426685730864" datatype="html">
|
||||||
@ -6011,7 +6011,7 @@
|
|||||||
<target state="new">WTD</target>
|
<target state="new">WTD</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
||||||
<context context-type="linenumber">219</context>
|
<context context-type="linenumber">212</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="358501326846847310" datatype="html">
|
<trans-unit id="358501326846847310" datatype="html">
|
||||||
@ -6019,7 +6019,7 @@
|
|||||||
<target state="new">Month to date</target>
|
<target state="new">Month to date</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
||||||
<context context-type="linenumber">223</context>
|
<context context-type="linenumber">216</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="399380803601269035" datatype="html">
|
<trans-unit id="399380803601269035" datatype="html">
|
||||||
@ -6027,7 +6027,7 @@
|
|||||||
<target state="new">MTD</target>
|
<target state="new">MTD</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
||||||
<context context-type="linenumber">223</context>
|
<context context-type="linenumber">216</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="2593751087640318641" datatype="html">
|
<trans-unit id="2593751087640318641" datatype="html">
|
||||||
@ -6035,7 +6035,7 @@
|
|||||||
<target state="new">Year to date</target>
|
<target state="new">Year to date</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
||||||
<context context-type="linenumber">227</context>
|
<context context-type="linenumber">220</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="6479044529603381727" datatype="html">
|
<trans-unit id="6479044529603381727" datatype="html">
|
||||||
@ -6043,7 +6043,7 @@
|
|||||||
<target state="new">year</target>
|
<target state="new">year</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
||||||
<context context-type="linenumber">231</context>
|
<context context-type="linenumber">224</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="7658073495909471632" datatype="html">
|
<trans-unit id="7658073495909471632" datatype="html">
|
||||||
@ -6051,7 +6051,7 @@
|
|||||||
<target state="new">years</target>
|
<target state="new">years</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
||||||
<context context-type="linenumber">253</context>
|
<context context-type="linenumber">246</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="cd206f0509271d9e611747bef0713c7df048d3af" datatype="html">
|
<trans-unit id="cd206f0509271d9e611747bef0713c7df048d3af" datatype="html">
|
||||||
@ -6991,7 +6991,7 @@
|
|||||||
<target state="new">Inactive</target>
|
<target state="new">Inactive</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">apps/client/src/app/pages/portfolio/fire/fire-page.html</context>
|
<context context-type="sourcefile">apps/client/src/app/pages/portfolio/fire/fire-page.html</context>
|
||||||
<context context-type="linenumber">194</context>
|
<context context-type="linenumber">198</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="2159130950882492111" datatype="html">
|
<trans-unit id="2159130950882492111" datatype="html">
|
||||||
@ -7063,7 +7063,7 @@
|
|||||||
<target state="new">Threshold Max</target>
|
<target state="new">Threshold Max</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">apps/client/src/app/components/rule/rule-settings-dialog/rule-settings-dialog.html</context>
|
<context context-type="sourcefile">apps/client/src/app/components/rule/rule-settings-dialog/rule-settings-dialog.html</context>
|
||||||
<context context-type="linenumber">22</context>
|
<context context-type="linenumber">29</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="f4e529ae5ffd73001d1ff4bbdeeb0a72e342e5c8" datatype="html">
|
<trans-unit id="f4e529ae5ffd73001d1ff4bbdeeb0a72e342e5c8" datatype="html">
|
||||||
@ -7071,7 +7071,7 @@
|
|||||||
<target state="new">Close</target>
|
<target state="new">Close</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">apps/client/src/app/components/rule/rule-settings-dialog/rule-settings-dialog.html</context>
|
<context context-type="sourcefile">apps/client/src/app/components/rule/rule-settings-dialog/rule-settings-dialog.html</context>
|
||||||
<context context-type="linenumber">33</context>
|
<context context-type="linenumber">47</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="072d4d4ec83a5a97345a1c13b90c213b47326d09" datatype="html">
|
<trans-unit id="072d4d4ec83a5a97345a1c13b90c213b47326d09" datatype="html">
|
||||||
|
@ -554,7 +554,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">apps/client/src/app/components/rule/rule-settings-dialog/rule-settings-dialog.html</context>
|
<context context-type="sourcefile">apps/client/src/app/components/rule/rule-settings-dialog/rule-settings-dialog.html</context>
|
||||||
<context context-type="linenumber">35</context>
|
<context context-type="linenumber">53</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">apps/client/src/app/components/user-account-access/create-or-update-access-dialog/create-or-update-access-dialog.html</context>
|
<context context-type="sourcefile">apps/client/src/app/components/user-account-access/create-or-update-access-dialog/create-or-update-access-dialog.html</context>
|
||||||
@ -1058,7 +1058,7 @@
|
|||||||
<target state="translated">Aktivitäten verwalten</target>
|
<target state="translated">Aktivitäten verwalten</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">apps/client/src/app/components/home-holdings/home-holdings.html</context>
|
<context context-type="sourcefile">apps/client/src/app/components/home-holdings/home-holdings.html</context>
|
||||||
<context context-type="linenumber">62</context>
|
<context context-type="linenumber">65</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="ce718ababbce63d776cf8b1f91412beb4c0a6e04" datatype="html">
|
<trans-unit id="ce718ababbce63d776cf8b1f91412beb4c0a6e04" datatype="html">
|
||||||
@ -1414,7 +1414,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
||||||
<context context-type="linenumber">217</context>
|
<context context-type="linenumber">210</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="7377728350294749129" datatype="html">
|
<trans-unit id="7377728350294749129" datatype="html">
|
||||||
@ -1426,7 +1426,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
||||||
<context context-type="linenumber">227</context>
|
<context context-type="linenumber">220</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="8768104874317770689" datatype="html">
|
<trans-unit id="8768104874317770689" datatype="html">
|
||||||
@ -1438,7 +1438,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
||||||
<context context-type="linenumber">231</context>
|
<context context-type="linenumber">224</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="7304247106520037555" datatype="html">
|
<trans-unit id="7304247106520037555" datatype="html">
|
||||||
@ -1450,7 +1450,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
||||||
<context context-type="linenumber">253</context>
|
<context context-type="linenumber">246</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="3667949571823271511" datatype="html">
|
<trans-unit id="3667949571823271511" datatype="html">
|
||||||
@ -1462,7 +1462,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
||||||
<context context-type="linenumber">256</context>
|
<context context-type="linenumber">249</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="1579692722565712588" datatype="html">
|
<trans-unit id="1579692722565712588" datatype="html">
|
||||||
@ -2374,7 +2374,7 @@
|
|||||||
<target state="translated">Portfolio</target>
|
<target state="translated">Portfolio</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">apps/client/src/app/components/benchmark-comparator/benchmark-comparator.component.ts</context>
|
<context context-type="sourcefile">apps/client/src/app/components/benchmark-comparator/benchmark-comparator.component.ts</context>
|
||||||
<context context-type="linenumber">116</context>
|
<context context-type="linenumber">117</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">apps/client/src/app/pages/portfolio/portfolio-page-routing.module.ts</context>
|
<context context-type="sourcefile">apps/client/src/app/pages/portfolio/portfolio-page-routing.module.ts</context>
|
||||||
@ -2898,7 +2898,7 @@
|
|||||||
<target state="translated">Benchmark</target>
|
<target state="translated">Benchmark</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">apps/client/src/app/components/benchmark-comparator/benchmark-comparator.component.ts</context>
|
<context context-type="sourcefile">apps/client/src/app/components/benchmark-comparator/benchmark-comparator.component.ts</context>
|
||||||
<context context-type="linenumber">128</context>
|
<context context-type="linenumber">129</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="4210837540bca56dca96fcc451518659d06ad02a" datatype="html">
|
<trans-unit id="4210837540bca56dca96fcc451518659d06ad02a" datatype="html">
|
||||||
@ -2962,7 +2962,7 @@
|
|||||||
<target state="translated">Gesamtbetrag</target>
|
<target state="translated">Gesamtbetrag</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">apps/client/src/app/components/investment-chart/investment-chart.component.ts</context>
|
<context context-type="sourcefile">apps/client/src/app/components/investment-chart/investment-chart.component.ts</context>
|
||||||
<context context-type="linenumber">141</context>
|
<context context-type="linenumber">142</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="f1a355a1af2e818050a3af693ac8b521fa7edc5f" datatype="html">
|
<trans-unit id="f1a355a1af2e818050a3af693ac8b521fa7edc5f" datatype="html">
|
||||||
@ -2978,7 +2978,7 @@
|
|||||||
<target state="translated">Sparrate</target>
|
<target state="translated">Sparrate</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">apps/client/src/app/components/investment-chart/investment-chart.component.ts</context>
|
<context context-type="sourcefile">apps/client/src/app/components/investment-chart/investment-chart.component.ts</context>
|
||||||
<context context-type="linenumber">213</context>
|
<context context-type="linenumber">214</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="4086606389696938932" datatype="html">
|
<trans-unit id="4086606389696938932" datatype="html">
|
||||||
@ -3730,7 +3730,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">apps/client/src/app/pages/portfolio/fire/fire-page.html</context>
|
<context context-type="sourcefile">apps/client/src/app/pages/portfolio/fire/fire-page.html</context>
|
||||||
<context context-type="linenumber">176</context>
|
<context context-type="linenumber">179</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="a6f322a22d0ae0b95dd9c70d43ba2c92de7ed49b" datatype="html">
|
<trans-unit id="a6f322a22d0ae0b95dd9c70d43ba2c92de7ed49b" datatype="html">
|
||||||
@ -5843,7 +5843,7 @@
|
|||||||
<target state="translated">Währungsklumpenrisiken</target>
|
<target state="translated">Währungsklumpenrisiken</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">apps/client/src/app/pages/portfolio/fire/fire-page.html</context>
|
<context context-type="sourcefile">apps/client/src/app/pages/portfolio/fire/fire-page.html</context>
|
||||||
<context context-type="linenumber">140</context>
|
<context context-type="linenumber">141</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="c7b797e5df289241021db16010efb6ac3c6cfb86" datatype="html">
|
<trans-unit id="c7b797e5df289241021db16010efb6ac3c6cfb86" datatype="html">
|
||||||
@ -5851,7 +5851,7 @@
|
|||||||
<target state="translated">Kontoklumpenrisiken</target>
|
<target state="translated">Kontoklumpenrisiken</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">apps/client/src/app/pages/portfolio/fire/fire-page.html</context>
|
<context context-type="sourcefile">apps/client/src/app/pages/portfolio/fire/fire-page.html</context>
|
||||||
<context context-type="linenumber">158</context>
|
<context context-type="linenumber">160</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="4b00337456de4a757f7abc8224d8b391f5d0634a" datatype="html">
|
<trans-unit id="4b00337456de4a757f7abc8224d8b391f5d0634a" datatype="html">
|
||||||
@ -5943,7 +5943,7 @@
|
|||||||
<target state="translated">Finde Position...</target>
|
<target state="translated">Finde Position...</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
||||||
<context context-type="linenumber">140</context>
|
<context context-type="linenumber">139</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="cd206f0509271d9e611747bef0713c7df048d3af" datatype="html">
|
<trans-unit id="cd206f0509271d9e611747bef0713c7df048d3af" datatype="html">
|
||||||
@ -6311,7 +6311,7 @@
|
|||||||
<target state="translated">Seit Wochenbeginn</target>
|
<target state="translated">Seit Wochenbeginn</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
||||||
<context context-type="linenumber">219</context>
|
<context context-type="linenumber">212</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="7451343426685730864" datatype="html">
|
<trans-unit id="7451343426685730864" datatype="html">
|
||||||
@ -6319,7 +6319,7 @@
|
|||||||
<target state="translated">WTD</target>
|
<target state="translated">WTD</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
||||||
<context context-type="linenumber">219</context>
|
<context context-type="linenumber">212</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="358501326846847310" datatype="html">
|
<trans-unit id="358501326846847310" datatype="html">
|
||||||
@ -6327,7 +6327,7 @@
|
|||||||
<target state="translated">Seit Monatsbeginn</target>
|
<target state="translated">Seit Monatsbeginn</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
||||||
<context context-type="linenumber">223</context>
|
<context context-type="linenumber">216</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="399380803601269035" datatype="html">
|
<trans-unit id="399380803601269035" datatype="html">
|
||||||
@ -6335,7 +6335,7 @@
|
|||||||
<target state="translated">MTD</target>
|
<target state="translated">MTD</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
||||||
<context context-type="linenumber">223</context>
|
<context context-type="linenumber">216</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="2593751087640318641" datatype="html">
|
<trans-unit id="2593751087640318641" datatype="html">
|
||||||
@ -6343,7 +6343,7 @@
|
|||||||
<target state="translated">Seit Jahresbeginn</target>
|
<target state="translated">Seit Jahresbeginn</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
||||||
<context context-type="linenumber">227</context>
|
<context context-type="linenumber">220</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="6829218544e108e152f5fa72cb79c4ccb82e0d06" datatype="html">
|
<trans-unit id="6829218544e108e152f5fa72cb79c4ccb82e0d06" datatype="html">
|
||||||
@ -6387,7 +6387,7 @@
|
|||||||
<target state="translated">Jahr</target>
|
<target state="translated">Jahr</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
||||||
<context context-type="linenumber">231</context>
|
<context context-type="linenumber">224</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="7658073495909471632" datatype="html">
|
<trans-unit id="7658073495909471632" datatype="html">
|
||||||
@ -6395,7 +6395,7 @@
|
|||||||
<target state="translated">Jahre</target>
|
<target state="translated">Jahre</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
||||||
<context context-type="linenumber">253</context>
|
<context context-type="linenumber">246</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="7b5a5b1697006355467454025b820fd98de32074" datatype="html">
|
<trans-unit id="7b5a5b1697006355467454025b820fd98de32074" datatype="html">
|
||||||
@ -6991,7 +6991,7 @@
|
|||||||
<target state="translated">Inaktiv</target>
|
<target state="translated">Inaktiv</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">apps/client/src/app/pages/portfolio/fire/fire-page.html</context>
|
<context context-type="sourcefile">apps/client/src/app/pages/portfolio/fire/fire-page.html</context>
|
||||||
<context context-type="linenumber">194</context>
|
<context context-type="linenumber">198</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="2159130950882492111" datatype="html">
|
<trans-unit id="2159130950882492111" datatype="html">
|
||||||
@ -7063,7 +7063,7 @@
|
|||||||
<target state="new">Threshold Max</target>
|
<target state="new">Threshold Max</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">apps/client/src/app/components/rule/rule-settings-dialog/rule-settings-dialog.html</context>
|
<context context-type="sourcefile">apps/client/src/app/components/rule/rule-settings-dialog/rule-settings-dialog.html</context>
|
||||||
<context context-type="linenumber">22</context>
|
<context context-type="linenumber">29</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="f4e529ae5ffd73001d1ff4bbdeeb0a72e342e5c8" datatype="html">
|
<trans-unit id="f4e529ae5ffd73001d1ff4bbdeeb0a72e342e5c8" datatype="html">
|
||||||
@ -7071,7 +7071,7 @@
|
|||||||
<target state="translated">Schliessen</target>
|
<target state="translated">Schliessen</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">apps/client/src/app/components/rule/rule-settings-dialog/rule-settings-dialog.html</context>
|
<context context-type="sourcefile">apps/client/src/app/components/rule/rule-settings-dialog/rule-settings-dialog.html</context>
|
||||||
<context context-type="linenumber">33</context>
|
<context context-type="linenumber">47</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="072d4d4ec83a5a97345a1c13b90c213b47326d09" datatype="html">
|
<trans-unit id="072d4d4ec83a5a97345a1c13b90c213b47326d09" datatype="html">
|
||||||
|
@ -555,7 +555,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">apps/client/src/app/components/rule/rule-settings-dialog/rule-settings-dialog.html</context>
|
<context context-type="sourcefile">apps/client/src/app/components/rule/rule-settings-dialog/rule-settings-dialog.html</context>
|
||||||
<context context-type="linenumber">35</context>
|
<context context-type="linenumber">53</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">apps/client/src/app/components/user-account-access/create-or-update-access-dialog/create-or-update-access-dialog.html</context>
|
<context context-type="sourcefile">apps/client/src/app/components/user-account-access/create-or-update-access-dialog/create-or-update-access-dialog.html</context>
|
||||||
@ -1059,7 +1059,7 @@
|
|||||||
<target state="translated">Gestión de las operaciones</target>
|
<target state="translated">Gestión de las operaciones</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">apps/client/src/app/components/home-holdings/home-holdings.html</context>
|
<context context-type="sourcefile">apps/client/src/app/components/home-holdings/home-holdings.html</context>
|
||||||
<context context-type="linenumber">62</context>
|
<context context-type="linenumber">65</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="ce718ababbce63d776cf8b1f91412beb4c0a6e04" datatype="html">
|
<trans-unit id="ce718ababbce63d776cf8b1f91412beb4c0a6e04" datatype="html">
|
||||||
@ -1415,7 +1415,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
||||||
<context context-type="linenumber">217</context>
|
<context context-type="linenumber">210</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="7377728350294749129" datatype="html">
|
<trans-unit id="7377728350294749129" datatype="html">
|
||||||
@ -1427,7 +1427,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
||||||
<context context-type="linenumber">227</context>
|
<context context-type="linenumber">220</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="8768104874317770689" datatype="html">
|
<trans-unit id="8768104874317770689" datatype="html">
|
||||||
@ -1439,7 +1439,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
||||||
<context context-type="linenumber">231</context>
|
<context context-type="linenumber">224</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="7304247106520037555" datatype="html">
|
<trans-unit id="7304247106520037555" datatype="html">
|
||||||
@ -1451,7 +1451,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
||||||
<context context-type="linenumber">253</context>
|
<context context-type="linenumber">246</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="3667949571823271511" datatype="html">
|
<trans-unit id="3667949571823271511" datatype="html">
|
||||||
@ -1463,7 +1463,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
||||||
<context context-type="linenumber">256</context>
|
<context context-type="linenumber">249</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="1579692722565712588" datatype="html">
|
<trans-unit id="1579692722565712588" datatype="html">
|
||||||
@ -2375,7 +2375,7 @@
|
|||||||
<target state="translated">Cartera</target>
|
<target state="translated">Cartera</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">apps/client/src/app/components/benchmark-comparator/benchmark-comparator.component.ts</context>
|
<context context-type="sourcefile">apps/client/src/app/components/benchmark-comparator/benchmark-comparator.component.ts</context>
|
||||||
<context context-type="linenumber">116</context>
|
<context context-type="linenumber">117</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">apps/client/src/app/pages/portfolio/portfolio-page-routing.module.ts</context>
|
<context context-type="sourcefile">apps/client/src/app/pages/portfolio/portfolio-page-routing.module.ts</context>
|
||||||
@ -2891,7 +2891,7 @@
|
|||||||
<target state="translated">Benchmark</target>
|
<target state="translated">Benchmark</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">apps/client/src/app/components/benchmark-comparator/benchmark-comparator.component.ts</context>
|
<context context-type="sourcefile">apps/client/src/app/components/benchmark-comparator/benchmark-comparator.component.ts</context>
|
||||||
<context context-type="linenumber">128</context>
|
<context context-type="linenumber">129</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="44fcf77e86dc038202ebad6b46d1d833d60d781b" datatype="html">
|
<trans-unit id="44fcf77e86dc038202ebad6b46d1d833d60d781b" datatype="html">
|
||||||
@ -2963,7 +2963,7 @@
|
|||||||
<target state="translated">Importe total</target>
|
<target state="translated">Importe total</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">apps/client/src/app/components/investment-chart/investment-chart.component.ts</context>
|
<context context-type="sourcefile">apps/client/src/app/components/investment-chart/investment-chart.component.ts</context>
|
||||||
<context context-type="linenumber">141</context>
|
<context context-type="linenumber">142</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="f1a355a1af2e818050a3af693ac8b521fa7edc5f" datatype="html">
|
<trans-unit id="f1a355a1af2e818050a3af693ac8b521fa7edc5f" datatype="html">
|
||||||
@ -2979,7 +2979,7 @@
|
|||||||
<target state="translated">Tasa de ahorro</target>
|
<target state="translated">Tasa de ahorro</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">apps/client/src/app/components/investment-chart/investment-chart.component.ts</context>
|
<context context-type="sourcefile">apps/client/src/app/components/investment-chart/investment-chart.component.ts</context>
|
||||||
<context context-type="linenumber">213</context>
|
<context context-type="linenumber">214</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="4086606389696938932" datatype="html">
|
<trans-unit id="4086606389696938932" datatype="html">
|
||||||
@ -3731,7 +3731,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">apps/client/src/app/pages/portfolio/fire/fire-page.html</context>
|
<context context-type="sourcefile">apps/client/src/app/pages/portfolio/fire/fire-page.html</context>
|
||||||
<context context-type="linenumber">176</context>
|
<context context-type="linenumber">179</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="a6f322a22d0ae0b95dd9c70d43ba2c92de7ed49b" datatype="html">
|
<trans-unit id="a6f322a22d0ae0b95dd9c70d43ba2c92de7ed49b" datatype="html">
|
||||||
@ -5844,7 +5844,7 @@
|
|||||||
<target state="new">Currency Cluster Risks</target>
|
<target state="new">Currency Cluster Risks</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">apps/client/src/app/pages/portfolio/fire/fire-page.html</context>
|
<context context-type="sourcefile">apps/client/src/app/pages/portfolio/fire/fire-page.html</context>
|
||||||
<context context-type="linenumber">140</context>
|
<context context-type="linenumber">141</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="c7b797e5df289241021db16010efb6ac3c6cfb86" datatype="html">
|
<trans-unit id="c7b797e5df289241021db16010efb6ac3c6cfb86" datatype="html">
|
||||||
@ -5852,7 +5852,7 @@
|
|||||||
<target state="new">Account Cluster Risks</target>
|
<target state="new">Account Cluster Risks</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">apps/client/src/app/pages/portfolio/fire/fire-page.html</context>
|
<context context-type="sourcefile">apps/client/src/app/pages/portfolio/fire/fire-page.html</context>
|
||||||
<context context-type="linenumber">158</context>
|
<context context-type="linenumber">160</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="4b00337456de4a757f7abc8224d8b391f5d0634a" datatype="html">
|
<trans-unit id="4b00337456de4a757f7abc8224d8b391f5d0634a" datatype="html">
|
||||||
@ -5944,7 +5944,7 @@
|
|||||||
<target state="new">Find holding...</target>
|
<target state="new">Find holding...</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
||||||
<context context-type="linenumber">140</context>
|
<context context-type="linenumber">139</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="cd206f0509271d9e611747bef0713c7df048d3af" datatype="html">
|
<trans-unit id="cd206f0509271d9e611747bef0713c7df048d3af" datatype="html">
|
||||||
@ -6312,7 +6312,7 @@
|
|||||||
<target state="new">Week to date</target>
|
<target state="new">Week to date</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
||||||
<context context-type="linenumber">219</context>
|
<context context-type="linenumber">212</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="7451343426685730864" datatype="html">
|
<trans-unit id="7451343426685730864" datatype="html">
|
||||||
@ -6320,7 +6320,7 @@
|
|||||||
<target state="new">WTD</target>
|
<target state="new">WTD</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
||||||
<context context-type="linenumber">219</context>
|
<context context-type="linenumber">212</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="358501326846847310" datatype="html">
|
<trans-unit id="358501326846847310" datatype="html">
|
||||||
@ -6328,7 +6328,7 @@
|
|||||||
<target state="new">Month to date</target>
|
<target state="new">Month to date</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
||||||
<context context-type="linenumber">223</context>
|
<context context-type="linenumber">216</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="399380803601269035" datatype="html">
|
<trans-unit id="399380803601269035" datatype="html">
|
||||||
@ -6336,7 +6336,7 @@
|
|||||||
<target state="new">MTD</target>
|
<target state="new">MTD</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
||||||
<context context-type="linenumber">223</context>
|
<context context-type="linenumber">216</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="2593751087640318641" datatype="html">
|
<trans-unit id="2593751087640318641" datatype="html">
|
||||||
@ -6344,7 +6344,7 @@
|
|||||||
<target state="new">Year to date</target>
|
<target state="new">Year to date</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
||||||
<context context-type="linenumber">227</context>
|
<context context-type="linenumber">220</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="6829218544e108e152f5fa72cb79c4ccb82e0d06" datatype="html">
|
<trans-unit id="6829218544e108e152f5fa72cb79c4ccb82e0d06" datatype="html">
|
||||||
@ -6388,7 +6388,7 @@
|
|||||||
<target state="translated">año</target>
|
<target state="translated">año</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
||||||
<context context-type="linenumber">231</context>
|
<context context-type="linenumber">224</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="7658073495909471632" datatype="html">
|
<trans-unit id="7658073495909471632" datatype="html">
|
||||||
@ -6396,7 +6396,7 @@
|
|||||||
<target state="translated">años</target>
|
<target state="translated">años</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
||||||
<context context-type="linenumber">253</context>
|
<context context-type="linenumber">246</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="7b5a5b1697006355467454025b820fd98de32074" datatype="html">
|
<trans-unit id="7b5a5b1697006355467454025b820fd98de32074" datatype="html">
|
||||||
@ -6992,7 +6992,7 @@
|
|||||||
<target state="new">Inactive</target>
|
<target state="new">Inactive</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">apps/client/src/app/pages/portfolio/fire/fire-page.html</context>
|
<context context-type="sourcefile">apps/client/src/app/pages/portfolio/fire/fire-page.html</context>
|
||||||
<context context-type="linenumber">194</context>
|
<context context-type="linenumber">198</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="2159130950882492111" datatype="html">
|
<trans-unit id="2159130950882492111" datatype="html">
|
||||||
@ -7064,7 +7064,7 @@
|
|||||||
<target state="new">Threshold Max</target>
|
<target state="new">Threshold Max</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">apps/client/src/app/components/rule/rule-settings-dialog/rule-settings-dialog.html</context>
|
<context context-type="sourcefile">apps/client/src/app/components/rule/rule-settings-dialog/rule-settings-dialog.html</context>
|
||||||
<context context-type="linenumber">22</context>
|
<context context-type="linenumber">29</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="f4e529ae5ffd73001d1ff4bbdeeb0a72e342e5c8" datatype="html">
|
<trans-unit id="f4e529ae5ffd73001d1ff4bbdeeb0a72e342e5c8" datatype="html">
|
||||||
@ -7072,7 +7072,7 @@
|
|||||||
<target state="new">Close</target>
|
<target state="new">Close</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">apps/client/src/app/components/rule/rule-settings-dialog/rule-settings-dialog.html</context>
|
<context context-type="sourcefile">apps/client/src/app/components/rule/rule-settings-dialog/rule-settings-dialog.html</context>
|
||||||
<context context-type="linenumber">33</context>
|
<context context-type="linenumber">47</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="072d4d4ec83a5a97345a1c13b90c213b47326d09" datatype="html">
|
<trans-unit id="072d4d4ec83a5a97345a1c13b90c213b47326d09" datatype="html">
|
||||||
|
@ -614,7 +614,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">apps/client/src/app/components/rule/rule-settings-dialog/rule-settings-dialog.html</context>
|
<context context-type="sourcefile">apps/client/src/app/components/rule/rule-settings-dialog/rule-settings-dialog.html</context>
|
||||||
<context context-type="linenumber">35</context>
|
<context context-type="linenumber">53</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">apps/client/src/app/components/user-account-access/create-or-update-access-dialog/create-or-update-access-dialog.html</context>
|
<context context-type="sourcefile">apps/client/src/app/components/user-account-access/create-or-update-access-dialog/create-or-update-access-dialog.html</context>
|
||||||
@ -1142,7 +1142,7 @@
|
|||||||
<target state="translated">Portefeuille</target>
|
<target state="translated">Portefeuille</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">apps/client/src/app/components/benchmark-comparator/benchmark-comparator.component.ts</context>
|
<context context-type="sourcefile">apps/client/src/app/components/benchmark-comparator/benchmark-comparator.component.ts</context>
|
||||||
<context context-type="linenumber">116</context>
|
<context context-type="linenumber">117</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">apps/client/src/app/pages/portfolio/portfolio-page-routing.module.ts</context>
|
<context context-type="sourcefile">apps/client/src/app/pages/portfolio/portfolio-page-routing.module.ts</context>
|
||||||
@ -1158,7 +1158,7 @@
|
|||||||
<target state="translated">Référence</target>
|
<target state="translated">Référence</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">apps/client/src/app/components/benchmark-comparator/benchmark-comparator.component.ts</context>
|
<context context-type="sourcefile">apps/client/src/app/components/benchmark-comparator/benchmark-comparator.component.ts</context>
|
||||||
<context context-type="linenumber">128</context>
|
<context context-type="linenumber">129</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="68ca4a6d3699c0b1141421f8ca995cb1ed736128" datatype="html">
|
<trans-unit id="68ca4a6d3699c0b1141421f8ca995cb1ed736128" datatype="html">
|
||||||
@ -1378,7 +1378,7 @@
|
|||||||
<target state="translated">Gérer les Activités</target>
|
<target state="translated">Gérer les Activités</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">apps/client/src/app/components/home-holdings/home-holdings.html</context>
|
<context context-type="sourcefile">apps/client/src/app/components/home-holdings/home-holdings.html</context>
|
||||||
<context context-type="linenumber">62</context>
|
<context context-type="linenumber">65</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="5486880308148746399" datatype="html">
|
<trans-unit id="5486880308148746399" datatype="html">
|
||||||
@ -1426,7 +1426,7 @@
|
|||||||
<target state="translated">Montant Total</target>
|
<target state="translated">Montant Total</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">apps/client/src/app/components/investment-chart/investment-chart.component.ts</context>
|
<context context-type="sourcefile">apps/client/src/app/components/investment-chart/investment-chart.component.ts</context>
|
||||||
<context context-type="linenumber">141</context>
|
<context context-type="linenumber">142</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="8192718423057883427" datatype="html">
|
<trans-unit id="8192718423057883427" datatype="html">
|
||||||
@ -1434,7 +1434,7 @@
|
|||||||
<target state="translated">Taux d’Épargne</target>
|
<target state="translated">Taux d’Épargne</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">apps/client/src/app/components/investment-chart/investment-chart.component.ts</context>
|
<context context-type="sourcefile">apps/client/src/app/components/investment-chart/investment-chart.component.ts</context>
|
||||||
<context context-type="linenumber">213</context>
|
<context context-type="linenumber">214</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="6a95e051c4fd80012488effb15d2842b2155ae5e" datatype="html">
|
<trans-unit id="6a95e051c4fd80012488effb15d2842b2155ae5e" datatype="html">
|
||||||
@ -1726,7 +1726,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
||||||
<context context-type="linenumber">217</context>
|
<context context-type="linenumber">210</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="7377728350294749129" datatype="html">
|
<trans-unit id="7377728350294749129" datatype="html">
|
||||||
@ -1738,7 +1738,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
||||||
<context context-type="linenumber">227</context>
|
<context context-type="linenumber">220</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="8768104874317770689" datatype="html">
|
<trans-unit id="8768104874317770689" datatype="html">
|
||||||
@ -1750,7 +1750,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
||||||
<context context-type="linenumber">231</context>
|
<context context-type="linenumber">224</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="7304247106520037555" datatype="html">
|
<trans-unit id="7304247106520037555" datatype="html">
|
||||||
@ -1762,7 +1762,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
||||||
<context context-type="linenumber">253</context>
|
<context context-type="linenumber">246</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="3667949571823271511" datatype="html">
|
<trans-unit id="3667949571823271511" datatype="html">
|
||||||
@ -1774,7 +1774,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
||||||
<context context-type="linenumber">256</context>
|
<context context-type="linenumber">249</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="4190182554887994764" datatype="html">
|
<trans-unit id="4190182554887994764" datatype="html">
|
||||||
@ -3730,7 +3730,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">apps/client/src/app/pages/portfolio/fire/fire-page.html</context>
|
<context context-type="sourcefile">apps/client/src/app/pages/portfolio/fire/fire-page.html</context>
|
||||||
<context context-type="linenumber">176</context>
|
<context context-type="linenumber">179</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="a6f322a22d0ae0b95dd9c70d43ba2c92de7ed49b" datatype="html">
|
<trans-unit id="a6f322a22d0ae0b95dd9c70d43ba2c92de7ed49b" datatype="html">
|
||||||
@ -5843,7 +5843,7 @@
|
|||||||
<target state="translated">Risques de change</target>
|
<target state="translated">Risques de change</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">apps/client/src/app/pages/portfolio/fire/fire-page.html</context>
|
<context context-type="sourcefile">apps/client/src/app/pages/portfolio/fire/fire-page.html</context>
|
||||||
<context context-type="linenumber">140</context>
|
<context context-type="linenumber">141</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="c7b797e5df289241021db16010efb6ac3c6cfb86" datatype="html">
|
<trans-unit id="c7b797e5df289241021db16010efb6ac3c6cfb86" datatype="html">
|
||||||
@ -5851,7 +5851,7 @@
|
|||||||
<target state="translated">Risques liés aux regroupements de comptes</target>
|
<target state="translated">Risques liés aux regroupements de comptes</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">apps/client/src/app/pages/portfolio/fire/fire-page.html</context>
|
<context context-type="sourcefile">apps/client/src/app/pages/portfolio/fire/fire-page.html</context>
|
||||||
<context context-type="linenumber">158</context>
|
<context context-type="linenumber">160</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="4b00337456de4a757f7abc8224d8b391f5d0634a" datatype="html">
|
<trans-unit id="4b00337456de4a757f7abc8224d8b391f5d0634a" datatype="html">
|
||||||
@ -5943,7 +5943,7 @@
|
|||||||
<target state="translated">Chercher un actif...</target>
|
<target state="translated">Chercher un actif...</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
||||||
<context context-type="linenumber">140</context>
|
<context context-type="linenumber">139</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="cd206f0509271d9e611747bef0713c7df048d3af" datatype="html">
|
<trans-unit id="cd206f0509271d9e611747bef0713c7df048d3af" datatype="html">
|
||||||
@ -6311,7 +6311,7 @@
|
|||||||
<target state="translated">Week to date</target>
|
<target state="translated">Week to date</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
||||||
<context context-type="linenumber">219</context>
|
<context context-type="linenumber">212</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="7451343426685730864" datatype="html">
|
<trans-unit id="7451343426685730864" datatype="html">
|
||||||
@ -6319,7 +6319,7 @@
|
|||||||
<target state="translated">WTD</target>
|
<target state="translated">WTD</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
||||||
<context context-type="linenumber">219</context>
|
<context context-type="linenumber">212</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="358501326846847310" datatype="html">
|
<trans-unit id="358501326846847310" datatype="html">
|
||||||
@ -6327,7 +6327,7 @@
|
|||||||
<target state="translated">Month to date</target>
|
<target state="translated">Month to date</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
||||||
<context context-type="linenumber">223</context>
|
<context context-type="linenumber">216</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="399380803601269035" datatype="html">
|
<trans-unit id="399380803601269035" datatype="html">
|
||||||
@ -6335,7 +6335,7 @@
|
|||||||
<target state="translated">MTD</target>
|
<target state="translated">MTD</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
||||||
<context context-type="linenumber">223</context>
|
<context context-type="linenumber">216</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="2593751087640318641" datatype="html">
|
<trans-unit id="2593751087640318641" datatype="html">
|
||||||
@ -6343,7 +6343,7 @@
|
|||||||
<target state="translated">Year to date</target>
|
<target state="translated">Year to date</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
||||||
<context context-type="linenumber">227</context>
|
<context context-type="linenumber">220</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="6829218544e108e152f5fa72cb79c4ccb82e0d06" datatype="html">
|
<trans-unit id="6829218544e108e152f5fa72cb79c4ccb82e0d06" datatype="html">
|
||||||
@ -6387,7 +6387,7 @@
|
|||||||
<target state="translated">année</target>
|
<target state="translated">année</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
||||||
<context context-type="linenumber">231</context>
|
<context context-type="linenumber">224</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="7658073495909471632" datatype="html">
|
<trans-unit id="7658073495909471632" datatype="html">
|
||||||
@ -6395,7 +6395,7 @@
|
|||||||
<target state="translated">années</target>
|
<target state="translated">années</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
||||||
<context context-type="linenumber">253</context>
|
<context context-type="linenumber">246</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="7b5a5b1697006355467454025b820fd98de32074" datatype="html">
|
<trans-unit id="7b5a5b1697006355467454025b820fd98de32074" datatype="html">
|
||||||
@ -6991,7 +6991,7 @@
|
|||||||
<target state="translated">Inactif</target>
|
<target state="translated">Inactif</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">apps/client/src/app/pages/portfolio/fire/fire-page.html</context>
|
<context context-type="sourcefile">apps/client/src/app/pages/portfolio/fire/fire-page.html</context>
|
||||||
<context context-type="linenumber">194</context>
|
<context context-type="linenumber">198</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="2159130950882492111" datatype="html">
|
<trans-unit id="2159130950882492111" datatype="html">
|
||||||
@ -7063,7 +7063,7 @@
|
|||||||
<target state="new">Threshold Max</target>
|
<target state="new">Threshold Max</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">apps/client/src/app/components/rule/rule-settings-dialog/rule-settings-dialog.html</context>
|
<context context-type="sourcefile">apps/client/src/app/components/rule/rule-settings-dialog/rule-settings-dialog.html</context>
|
||||||
<context context-type="linenumber">22</context>
|
<context context-type="linenumber">29</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="f4e529ae5ffd73001d1ff4bbdeeb0a72e342e5c8" datatype="html">
|
<trans-unit id="f4e529ae5ffd73001d1ff4bbdeeb0a72e342e5c8" datatype="html">
|
||||||
@ -7071,7 +7071,7 @@
|
|||||||
<target state="new">Close</target>
|
<target state="new">Close</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">apps/client/src/app/components/rule/rule-settings-dialog/rule-settings-dialog.html</context>
|
<context context-type="sourcefile">apps/client/src/app/components/rule/rule-settings-dialog/rule-settings-dialog.html</context>
|
||||||
<context context-type="linenumber">33</context>
|
<context context-type="linenumber">47</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="072d4d4ec83a5a97345a1c13b90c213b47326d09" datatype="html">
|
<trans-unit id="072d4d4ec83a5a97345a1c13b90c213b47326d09" datatype="html">
|
||||||
|
@ -555,7 +555,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">apps/client/src/app/components/rule/rule-settings-dialog/rule-settings-dialog.html</context>
|
<context context-type="sourcefile">apps/client/src/app/components/rule/rule-settings-dialog/rule-settings-dialog.html</context>
|
||||||
<context context-type="linenumber">35</context>
|
<context context-type="linenumber">53</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">apps/client/src/app/components/user-account-access/create-or-update-access-dialog/create-or-update-access-dialog.html</context>
|
<context context-type="sourcefile">apps/client/src/app/components/user-account-access/create-or-update-access-dialog/create-or-update-access-dialog.html</context>
|
||||||
@ -1059,7 +1059,7 @@
|
|||||||
<target state="translated">Gestione delle attività</target>
|
<target state="translated">Gestione delle attività</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">apps/client/src/app/components/home-holdings/home-holdings.html</context>
|
<context context-type="sourcefile">apps/client/src/app/components/home-holdings/home-holdings.html</context>
|
||||||
<context context-type="linenumber">62</context>
|
<context context-type="linenumber">65</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="ce718ababbce63d776cf8b1f91412beb4c0a6e04" datatype="html">
|
<trans-unit id="ce718ababbce63d776cf8b1f91412beb4c0a6e04" datatype="html">
|
||||||
@ -1415,7 +1415,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
||||||
<context context-type="linenumber">217</context>
|
<context context-type="linenumber">210</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="7377728350294749129" datatype="html">
|
<trans-unit id="7377728350294749129" datatype="html">
|
||||||
@ -1427,7 +1427,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
||||||
<context context-type="linenumber">227</context>
|
<context context-type="linenumber">220</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="8768104874317770689" datatype="html">
|
<trans-unit id="8768104874317770689" datatype="html">
|
||||||
@ -1439,7 +1439,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
||||||
<context context-type="linenumber">231</context>
|
<context context-type="linenumber">224</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="7304247106520037555" datatype="html">
|
<trans-unit id="7304247106520037555" datatype="html">
|
||||||
@ -1451,7 +1451,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
||||||
<context context-type="linenumber">253</context>
|
<context context-type="linenumber">246</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="3667949571823271511" datatype="html">
|
<trans-unit id="3667949571823271511" datatype="html">
|
||||||
@ -1463,7 +1463,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
||||||
<context context-type="linenumber">256</context>
|
<context context-type="linenumber">249</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="1579692722565712588" datatype="html">
|
<trans-unit id="1579692722565712588" datatype="html">
|
||||||
@ -2375,7 +2375,7 @@
|
|||||||
<target state="translated">Portafoglio</target>
|
<target state="translated">Portafoglio</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">apps/client/src/app/components/benchmark-comparator/benchmark-comparator.component.ts</context>
|
<context context-type="sourcefile">apps/client/src/app/components/benchmark-comparator/benchmark-comparator.component.ts</context>
|
||||||
<context context-type="linenumber">116</context>
|
<context context-type="linenumber">117</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">apps/client/src/app/pages/portfolio/portfolio-page-routing.module.ts</context>
|
<context context-type="sourcefile">apps/client/src/app/pages/portfolio/portfolio-page-routing.module.ts</context>
|
||||||
@ -2891,7 +2891,7 @@
|
|||||||
<target state="translated">Benchmark</target>
|
<target state="translated">Benchmark</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">apps/client/src/app/components/benchmark-comparator/benchmark-comparator.component.ts</context>
|
<context context-type="sourcefile">apps/client/src/app/components/benchmark-comparator/benchmark-comparator.component.ts</context>
|
||||||
<context context-type="linenumber">128</context>
|
<context context-type="linenumber">129</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="44fcf77e86dc038202ebad6b46d1d833d60d781b" datatype="html">
|
<trans-unit id="44fcf77e86dc038202ebad6b46d1d833d60d781b" datatype="html">
|
||||||
@ -2963,7 +2963,7 @@
|
|||||||
<target state="translated">Importo totale</target>
|
<target state="translated">Importo totale</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">apps/client/src/app/components/investment-chart/investment-chart.component.ts</context>
|
<context context-type="sourcefile">apps/client/src/app/components/investment-chart/investment-chart.component.ts</context>
|
||||||
<context context-type="linenumber">141</context>
|
<context context-type="linenumber">142</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="f1a355a1af2e818050a3af693ac8b521fa7edc5f" datatype="html">
|
<trans-unit id="f1a355a1af2e818050a3af693ac8b521fa7edc5f" datatype="html">
|
||||||
@ -2979,7 +2979,7 @@
|
|||||||
<target state="translated">Tasso di risparmio</target>
|
<target state="translated">Tasso di risparmio</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">apps/client/src/app/components/investment-chart/investment-chart.component.ts</context>
|
<context context-type="sourcefile">apps/client/src/app/components/investment-chart/investment-chart.component.ts</context>
|
||||||
<context context-type="linenumber">213</context>
|
<context context-type="linenumber">214</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="4086606389696938932" datatype="html">
|
<trans-unit id="4086606389696938932" datatype="html">
|
||||||
@ -3731,7 +3731,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">apps/client/src/app/pages/portfolio/fire/fire-page.html</context>
|
<context context-type="sourcefile">apps/client/src/app/pages/portfolio/fire/fire-page.html</context>
|
||||||
<context context-type="linenumber">176</context>
|
<context context-type="linenumber">179</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="a6f322a22d0ae0b95dd9c70d43ba2c92de7ed49b" datatype="html">
|
<trans-unit id="a6f322a22d0ae0b95dd9c70d43ba2c92de7ed49b" datatype="html">
|
||||||
@ -5844,7 +5844,7 @@
|
|||||||
<target state="new">Currency Cluster Risks</target>
|
<target state="new">Currency Cluster Risks</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">apps/client/src/app/pages/portfolio/fire/fire-page.html</context>
|
<context context-type="sourcefile">apps/client/src/app/pages/portfolio/fire/fire-page.html</context>
|
||||||
<context context-type="linenumber">140</context>
|
<context context-type="linenumber">141</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="c7b797e5df289241021db16010efb6ac3c6cfb86" datatype="html">
|
<trans-unit id="c7b797e5df289241021db16010efb6ac3c6cfb86" datatype="html">
|
||||||
@ -5852,7 +5852,7 @@
|
|||||||
<target state="new">Account Cluster Risks</target>
|
<target state="new">Account Cluster Risks</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">apps/client/src/app/pages/portfolio/fire/fire-page.html</context>
|
<context context-type="sourcefile">apps/client/src/app/pages/portfolio/fire/fire-page.html</context>
|
||||||
<context context-type="linenumber">158</context>
|
<context context-type="linenumber">160</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="4b00337456de4a757f7abc8224d8b391f5d0634a" datatype="html">
|
<trans-unit id="4b00337456de4a757f7abc8224d8b391f5d0634a" datatype="html">
|
||||||
@ -5944,7 +5944,7 @@
|
|||||||
<target state="translated">Trova possedimenti...</target>
|
<target state="translated">Trova possedimenti...</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
||||||
<context context-type="linenumber">140</context>
|
<context context-type="linenumber">139</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="cd206f0509271d9e611747bef0713c7df048d3af" datatype="html">
|
<trans-unit id="cd206f0509271d9e611747bef0713c7df048d3af" datatype="html">
|
||||||
@ -6312,7 +6312,7 @@
|
|||||||
<target state="translated">Da inizio settimana</target>
|
<target state="translated">Da inizio settimana</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
||||||
<context context-type="linenumber">219</context>
|
<context context-type="linenumber">212</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="7451343426685730864" datatype="html">
|
<trans-unit id="7451343426685730864" datatype="html">
|
||||||
@ -6320,7 +6320,7 @@
|
|||||||
<target state="new">WTD</target>
|
<target state="new">WTD</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
||||||
<context context-type="linenumber">219</context>
|
<context context-type="linenumber">212</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="358501326846847310" datatype="html">
|
<trans-unit id="358501326846847310" datatype="html">
|
||||||
@ -6328,7 +6328,7 @@
|
|||||||
<target state="translated">Da inizio mese</target>
|
<target state="translated">Da inizio mese</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
||||||
<context context-type="linenumber">223</context>
|
<context context-type="linenumber">216</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="399380803601269035" datatype="html">
|
<trans-unit id="399380803601269035" datatype="html">
|
||||||
@ -6336,7 +6336,7 @@
|
|||||||
<target state="new">MTD</target>
|
<target state="new">MTD</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
||||||
<context context-type="linenumber">223</context>
|
<context context-type="linenumber">216</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="2593751087640318641" datatype="html">
|
<trans-unit id="2593751087640318641" datatype="html">
|
||||||
@ -6344,7 +6344,7 @@
|
|||||||
<target state="translated">Da inizio anno</target>
|
<target state="translated">Da inizio anno</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
||||||
<context context-type="linenumber">227</context>
|
<context context-type="linenumber">220</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="6829218544e108e152f5fa72cb79c4ccb82e0d06" datatype="html">
|
<trans-unit id="6829218544e108e152f5fa72cb79c4ccb82e0d06" datatype="html">
|
||||||
@ -6388,7 +6388,7 @@
|
|||||||
<target state="translated">anno</target>
|
<target state="translated">anno</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
||||||
<context context-type="linenumber">231</context>
|
<context context-type="linenumber">224</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="7658073495909471632" datatype="html">
|
<trans-unit id="7658073495909471632" datatype="html">
|
||||||
@ -6396,7 +6396,7 @@
|
|||||||
<target state="translated">anni</target>
|
<target state="translated">anni</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
||||||
<context context-type="linenumber">253</context>
|
<context context-type="linenumber">246</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="7b5a5b1697006355467454025b820fd98de32074" datatype="html">
|
<trans-unit id="7b5a5b1697006355467454025b820fd98de32074" datatype="html">
|
||||||
@ -6992,7 +6992,7 @@
|
|||||||
<target state="translated">Inattivo</target>
|
<target state="translated">Inattivo</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">apps/client/src/app/pages/portfolio/fire/fire-page.html</context>
|
<context context-type="sourcefile">apps/client/src/app/pages/portfolio/fire/fire-page.html</context>
|
||||||
<context context-type="linenumber">194</context>
|
<context context-type="linenumber">198</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="2159130950882492111" datatype="html">
|
<trans-unit id="2159130950882492111" datatype="html">
|
||||||
@ -7064,7 +7064,7 @@
|
|||||||
<target state="new">Threshold Max</target>
|
<target state="new">Threshold Max</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">apps/client/src/app/components/rule/rule-settings-dialog/rule-settings-dialog.html</context>
|
<context context-type="sourcefile">apps/client/src/app/components/rule/rule-settings-dialog/rule-settings-dialog.html</context>
|
||||||
<context context-type="linenumber">22</context>
|
<context context-type="linenumber">29</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="f4e529ae5ffd73001d1ff4bbdeeb0a72e342e5c8" datatype="html">
|
<trans-unit id="f4e529ae5ffd73001d1ff4bbdeeb0a72e342e5c8" datatype="html">
|
||||||
@ -7072,7 +7072,7 @@
|
|||||||
<target state="new">Close</target>
|
<target state="new">Close</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">apps/client/src/app/components/rule/rule-settings-dialog/rule-settings-dialog.html</context>
|
<context context-type="sourcefile">apps/client/src/app/components/rule/rule-settings-dialog/rule-settings-dialog.html</context>
|
||||||
<context context-type="linenumber">33</context>
|
<context context-type="linenumber">47</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="072d4d4ec83a5a97345a1c13b90c213b47326d09" datatype="html">
|
<trans-unit id="072d4d4ec83a5a97345a1c13b90c213b47326d09" datatype="html">
|
||||||
|
@ -554,7 +554,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">apps/client/src/app/components/rule/rule-settings-dialog/rule-settings-dialog.html</context>
|
<context context-type="sourcefile">apps/client/src/app/components/rule/rule-settings-dialog/rule-settings-dialog.html</context>
|
||||||
<context context-type="linenumber">35</context>
|
<context context-type="linenumber">53</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">apps/client/src/app/components/user-account-access/create-or-update-access-dialog/create-or-update-access-dialog.html</context>
|
<context context-type="sourcefile">apps/client/src/app/components/user-account-access/create-or-update-access-dialog/create-or-update-access-dialog.html</context>
|
||||||
@ -1058,7 +1058,7 @@
|
|||||||
<target state="translated">Activiteiten beheren</target>
|
<target state="translated">Activiteiten beheren</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">apps/client/src/app/components/home-holdings/home-holdings.html</context>
|
<context context-type="sourcefile">apps/client/src/app/components/home-holdings/home-holdings.html</context>
|
||||||
<context context-type="linenumber">62</context>
|
<context context-type="linenumber">65</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="ce718ababbce63d776cf8b1f91412beb4c0a6e04" datatype="html">
|
<trans-unit id="ce718ababbce63d776cf8b1f91412beb4c0a6e04" datatype="html">
|
||||||
@ -1414,7 +1414,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
||||||
<context context-type="linenumber">217</context>
|
<context context-type="linenumber">210</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="7377728350294749129" datatype="html">
|
<trans-unit id="7377728350294749129" datatype="html">
|
||||||
@ -1426,7 +1426,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
||||||
<context context-type="linenumber">227</context>
|
<context context-type="linenumber">220</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="8768104874317770689" datatype="html">
|
<trans-unit id="8768104874317770689" datatype="html">
|
||||||
@ -1438,7 +1438,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
||||||
<context context-type="linenumber">231</context>
|
<context context-type="linenumber">224</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="7304247106520037555" datatype="html">
|
<trans-unit id="7304247106520037555" datatype="html">
|
||||||
@ -1450,7 +1450,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
||||||
<context context-type="linenumber">253</context>
|
<context context-type="linenumber">246</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="3667949571823271511" datatype="html">
|
<trans-unit id="3667949571823271511" datatype="html">
|
||||||
@ -1462,7 +1462,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
||||||
<context context-type="linenumber">256</context>
|
<context context-type="linenumber">249</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="1579692722565712588" datatype="html">
|
<trans-unit id="1579692722565712588" datatype="html">
|
||||||
@ -2374,7 +2374,7 @@
|
|||||||
<target state="translated">Portefeuille</target>
|
<target state="translated">Portefeuille</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">apps/client/src/app/components/benchmark-comparator/benchmark-comparator.component.ts</context>
|
<context context-type="sourcefile">apps/client/src/app/components/benchmark-comparator/benchmark-comparator.component.ts</context>
|
||||||
<context context-type="linenumber">116</context>
|
<context context-type="linenumber">117</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">apps/client/src/app/pages/portfolio/portfolio-page-routing.module.ts</context>
|
<context context-type="sourcefile">apps/client/src/app/pages/portfolio/portfolio-page-routing.module.ts</context>
|
||||||
@ -2890,7 +2890,7 @@
|
|||||||
<target state="translated">Benchmark</target>
|
<target state="translated">Benchmark</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">apps/client/src/app/components/benchmark-comparator/benchmark-comparator.component.ts</context>
|
<context context-type="sourcefile">apps/client/src/app/components/benchmark-comparator/benchmark-comparator.component.ts</context>
|
||||||
<context context-type="linenumber">128</context>
|
<context context-type="linenumber">129</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="44fcf77e86dc038202ebad6b46d1d833d60d781b" datatype="html">
|
<trans-unit id="44fcf77e86dc038202ebad6b46d1d833d60d781b" datatype="html">
|
||||||
@ -2962,7 +2962,7 @@
|
|||||||
<target state="translated">Totaalbedrag</target>
|
<target state="translated">Totaalbedrag</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">apps/client/src/app/components/investment-chart/investment-chart.component.ts</context>
|
<context context-type="sourcefile">apps/client/src/app/components/investment-chart/investment-chart.component.ts</context>
|
||||||
<context context-type="linenumber">141</context>
|
<context context-type="linenumber">142</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="f1a355a1af2e818050a3af693ac8b521fa7edc5f" datatype="html">
|
<trans-unit id="f1a355a1af2e818050a3af693ac8b521fa7edc5f" datatype="html">
|
||||||
@ -2978,7 +2978,7 @@
|
|||||||
<target state="translated">Spaarrente</target>
|
<target state="translated">Spaarrente</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">apps/client/src/app/components/investment-chart/investment-chart.component.ts</context>
|
<context context-type="sourcefile">apps/client/src/app/components/investment-chart/investment-chart.component.ts</context>
|
||||||
<context context-type="linenumber">213</context>
|
<context context-type="linenumber">214</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="4086606389696938932" datatype="html">
|
<trans-unit id="4086606389696938932" datatype="html">
|
||||||
@ -3730,7 +3730,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">apps/client/src/app/pages/portfolio/fire/fire-page.html</context>
|
<context context-type="sourcefile">apps/client/src/app/pages/portfolio/fire/fire-page.html</context>
|
||||||
<context context-type="linenumber">176</context>
|
<context context-type="linenumber">179</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="a6f322a22d0ae0b95dd9c70d43ba2c92de7ed49b" datatype="html">
|
<trans-unit id="a6f322a22d0ae0b95dd9c70d43ba2c92de7ed49b" datatype="html">
|
||||||
@ -5843,7 +5843,7 @@
|
|||||||
<target state="new">Currency Cluster Risks</target>
|
<target state="new">Currency Cluster Risks</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">apps/client/src/app/pages/portfolio/fire/fire-page.html</context>
|
<context context-type="sourcefile">apps/client/src/app/pages/portfolio/fire/fire-page.html</context>
|
||||||
<context context-type="linenumber">140</context>
|
<context context-type="linenumber">141</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="c7b797e5df289241021db16010efb6ac3c6cfb86" datatype="html">
|
<trans-unit id="c7b797e5df289241021db16010efb6ac3c6cfb86" datatype="html">
|
||||||
@ -5851,7 +5851,7 @@
|
|||||||
<target state="new">Account Cluster Risks</target>
|
<target state="new">Account Cluster Risks</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">apps/client/src/app/pages/portfolio/fire/fire-page.html</context>
|
<context context-type="sourcefile">apps/client/src/app/pages/portfolio/fire/fire-page.html</context>
|
||||||
<context context-type="linenumber">158</context>
|
<context context-type="linenumber">160</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="4b00337456de4a757f7abc8224d8b391f5d0634a" datatype="html">
|
<trans-unit id="4b00337456de4a757f7abc8224d8b391f5d0634a" datatype="html">
|
||||||
@ -5943,7 +5943,7 @@
|
|||||||
<target state="new">Find holding...</target>
|
<target state="new">Find holding...</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
||||||
<context context-type="linenumber">140</context>
|
<context context-type="linenumber">139</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="cd206f0509271d9e611747bef0713c7df048d3af" datatype="html">
|
<trans-unit id="cd206f0509271d9e611747bef0713c7df048d3af" datatype="html">
|
||||||
@ -6311,7 +6311,7 @@
|
|||||||
<target state="new">Week to date</target>
|
<target state="new">Week to date</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
||||||
<context context-type="linenumber">219</context>
|
<context context-type="linenumber">212</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="7451343426685730864" datatype="html">
|
<trans-unit id="7451343426685730864" datatype="html">
|
||||||
@ -6319,7 +6319,7 @@
|
|||||||
<target state="new">WTD</target>
|
<target state="new">WTD</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
||||||
<context context-type="linenumber">219</context>
|
<context context-type="linenumber">212</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="358501326846847310" datatype="html">
|
<trans-unit id="358501326846847310" datatype="html">
|
||||||
@ -6327,7 +6327,7 @@
|
|||||||
<target state="new">Month to date</target>
|
<target state="new">Month to date</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
||||||
<context context-type="linenumber">223</context>
|
<context context-type="linenumber">216</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="399380803601269035" datatype="html">
|
<trans-unit id="399380803601269035" datatype="html">
|
||||||
@ -6335,7 +6335,7 @@
|
|||||||
<target state="new">MTD</target>
|
<target state="new">MTD</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
||||||
<context context-type="linenumber">223</context>
|
<context context-type="linenumber">216</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="2593751087640318641" datatype="html">
|
<trans-unit id="2593751087640318641" datatype="html">
|
||||||
@ -6343,7 +6343,7 @@
|
|||||||
<target state="new">Year to date</target>
|
<target state="new">Year to date</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
||||||
<context context-type="linenumber">227</context>
|
<context context-type="linenumber">220</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="6829218544e108e152f5fa72cb79c4ccb82e0d06" datatype="html">
|
<trans-unit id="6829218544e108e152f5fa72cb79c4ccb82e0d06" datatype="html">
|
||||||
@ -6387,7 +6387,7 @@
|
|||||||
<target state="new">year</target>
|
<target state="new">year</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
||||||
<context context-type="linenumber">231</context>
|
<context context-type="linenumber">224</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="7658073495909471632" datatype="html">
|
<trans-unit id="7658073495909471632" datatype="html">
|
||||||
@ -6395,7 +6395,7 @@
|
|||||||
<target state="new">years</target>
|
<target state="new">years</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
||||||
<context context-type="linenumber">253</context>
|
<context context-type="linenumber">246</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="7b5a5b1697006355467454025b820fd98de32074" datatype="html">
|
<trans-unit id="7b5a5b1697006355467454025b820fd98de32074" datatype="html">
|
||||||
@ -6991,7 +6991,7 @@
|
|||||||
<target state="new">Inactive</target>
|
<target state="new">Inactive</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">apps/client/src/app/pages/portfolio/fire/fire-page.html</context>
|
<context context-type="sourcefile">apps/client/src/app/pages/portfolio/fire/fire-page.html</context>
|
||||||
<context context-type="linenumber">194</context>
|
<context context-type="linenumber">198</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="2159130950882492111" datatype="html">
|
<trans-unit id="2159130950882492111" datatype="html">
|
||||||
@ -7063,7 +7063,7 @@
|
|||||||
<target state="new">Threshold Max</target>
|
<target state="new">Threshold Max</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">apps/client/src/app/components/rule/rule-settings-dialog/rule-settings-dialog.html</context>
|
<context context-type="sourcefile">apps/client/src/app/components/rule/rule-settings-dialog/rule-settings-dialog.html</context>
|
||||||
<context context-type="linenumber">22</context>
|
<context context-type="linenumber">29</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="f4e529ae5ffd73001d1ff4bbdeeb0a72e342e5c8" datatype="html">
|
<trans-unit id="f4e529ae5ffd73001d1ff4bbdeeb0a72e342e5c8" datatype="html">
|
||||||
@ -7071,7 +7071,7 @@
|
|||||||
<target state="new">Close</target>
|
<target state="new">Close</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">apps/client/src/app/components/rule/rule-settings-dialog/rule-settings-dialog.html</context>
|
<context context-type="sourcefile">apps/client/src/app/components/rule/rule-settings-dialog/rule-settings-dialog.html</context>
|
||||||
<context context-type="linenumber">33</context>
|
<context context-type="linenumber">47</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="072d4d4ec83a5a97345a1c13b90c213b47326d09" datatype="html">
|
<trans-unit id="072d4d4ec83a5a97345a1c13b90c213b47326d09" datatype="html">
|
||||||
|
@ -1363,7 +1363,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">apps/client/src/app/components/rule/rule-settings-dialog/rule-settings-dialog.html</context>
|
<context context-type="sourcefile">apps/client/src/app/components/rule/rule-settings-dialog/rule-settings-dialog.html</context>
|
||||||
<context context-type="linenumber">35</context>
|
<context context-type="linenumber">53</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">apps/client/src/app/components/user-account-access/create-or-update-access-dialog/create-or-update-access-dialog.html</context>
|
<context context-type="sourcefile">apps/client/src/app/components/user-account-access/create-or-update-access-dialog/create-or-update-access-dialog.html</context>
|
||||||
@ -2131,7 +2131,7 @@
|
|||||||
<target state="translated">Portfel</target>
|
<target state="translated">Portfel</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">apps/client/src/app/components/benchmark-comparator/benchmark-comparator.component.ts</context>
|
<context context-type="sourcefile">apps/client/src/app/components/benchmark-comparator/benchmark-comparator.component.ts</context>
|
||||||
<context context-type="linenumber">116</context>
|
<context context-type="linenumber">117</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">apps/client/src/app/pages/portfolio/portfolio-page-routing.module.ts</context>
|
<context context-type="sourcefile">apps/client/src/app/pages/portfolio/portfolio-page-routing.module.ts</context>
|
||||||
@ -2147,7 +2147,7 @@
|
|||||||
<target state="translated">Poziom Odniesienia (Benchmark)</target>
|
<target state="translated">Poziom Odniesienia (Benchmark)</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">apps/client/src/app/components/benchmark-comparator/benchmark-comparator.component.ts</context>
|
<context context-type="sourcefile">apps/client/src/app/components/benchmark-comparator/benchmark-comparator.component.ts</context>
|
||||||
<context context-type="linenumber">128</context>
|
<context context-type="linenumber">129</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="68ca4a6d3699c0b1141421f8ca995cb1ed736128" datatype="html">
|
<trans-unit id="68ca4a6d3699c0b1141421f8ca995cb1ed736128" datatype="html">
|
||||||
@ -2283,7 +2283,7 @@
|
|||||||
<target state="translated">Zarządzaj Aktywnościami</target>
|
<target state="translated">Zarządzaj Aktywnościami</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">apps/client/src/app/components/home-holdings/home-holdings.html</context>
|
<context context-type="sourcefile">apps/client/src/app/components/home-holdings/home-holdings.html</context>
|
||||||
<context context-type="linenumber">62</context>
|
<context context-type="linenumber">65</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="5486880308148746399" datatype="html">
|
<trans-unit id="5486880308148746399" datatype="html">
|
||||||
@ -2415,7 +2415,7 @@
|
|||||||
<target state="translated">Całkowita Kwota</target>
|
<target state="translated">Całkowita Kwota</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">apps/client/src/app/components/investment-chart/investment-chart.component.ts</context>
|
<context context-type="sourcefile">apps/client/src/app/components/investment-chart/investment-chart.component.ts</context>
|
||||||
<context context-type="linenumber">141</context>
|
<context context-type="linenumber">142</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="8192718423057883427" datatype="html">
|
<trans-unit id="8192718423057883427" datatype="html">
|
||||||
@ -2423,7 +2423,7 @@
|
|||||||
<target state="translated">Stopa Oszczędności</target>
|
<target state="translated">Stopa Oszczędności</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">apps/client/src/app/components/investment-chart/investment-chart.component.ts</context>
|
<context context-type="sourcefile">apps/client/src/app/components/investment-chart/investment-chart.component.ts</context>
|
||||||
<context context-type="linenumber">213</context>
|
<context context-type="linenumber">214</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="6a95e051c4fd80012488effb15d2842b2155ae5e" datatype="html">
|
<trans-unit id="6a95e051c4fd80012488effb15d2842b2155ae5e" datatype="html">
|
||||||
@ -2551,7 +2551,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">apps/client/src/app/pages/portfolio/fire/fire-page.html</context>
|
<context context-type="sourcefile">apps/client/src/app/pages/portfolio/fire/fire-page.html</context>
|
||||||
<context context-type="linenumber">176</context>
|
<context context-type="linenumber">179</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="de518fa0cd3a454e84102c0d9984c4a3cfdb590d" datatype="html">
|
<trans-unit id="de518fa0cd3a454e84102c0d9984c4a3cfdb590d" datatype="html">
|
||||||
@ -2915,7 +2915,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
||||||
<context context-type="linenumber">217</context>
|
<context context-type="linenumber">210</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="7377728350294749129" datatype="html">
|
<trans-unit id="7377728350294749129" datatype="html">
|
||||||
@ -2927,7 +2927,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
||||||
<context context-type="linenumber">227</context>
|
<context context-type="linenumber">220</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="8768104874317770689" datatype="html">
|
<trans-unit id="8768104874317770689" datatype="html">
|
||||||
@ -2939,7 +2939,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
||||||
<context context-type="linenumber">231</context>
|
<context context-type="linenumber">224</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="7304247106520037555" datatype="html">
|
<trans-unit id="7304247106520037555" datatype="html">
|
||||||
@ -2951,7 +2951,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
||||||
<context context-type="linenumber">253</context>
|
<context context-type="linenumber">246</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="3667949571823271511" datatype="html">
|
<trans-unit id="3667949571823271511" datatype="html">
|
||||||
@ -2963,7 +2963,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
||||||
<context context-type="linenumber">256</context>
|
<context context-type="linenumber">249</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="5e41f1b4c46ad9e0a9bc83fa36445483aa5cc324" datatype="html">
|
<trans-unit id="5e41f1b4c46ad9e0a9bc83fa36445483aa5cc324" datatype="html">
|
||||||
@ -4727,7 +4727,7 @@
|
|||||||
<target state="new">Currency Cluster Risks</target>
|
<target state="new">Currency Cluster Risks</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">apps/client/src/app/pages/portfolio/fire/fire-page.html</context>
|
<context context-type="sourcefile">apps/client/src/app/pages/portfolio/fire/fire-page.html</context>
|
||||||
<context context-type="linenumber">140</context>
|
<context context-type="linenumber">141</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="c7b797e5df289241021db16010efb6ac3c6cfb86" datatype="html">
|
<trans-unit id="c7b797e5df289241021db16010efb6ac3c6cfb86" datatype="html">
|
||||||
@ -4735,7 +4735,7 @@
|
|||||||
<target state="new">Account Cluster Risks</target>
|
<target state="new">Account Cluster Risks</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">apps/client/src/app/pages/portfolio/fire/fire-page.html</context>
|
<context context-type="sourcefile">apps/client/src/app/pages/portfolio/fire/fire-page.html</context>
|
||||||
<context context-type="linenumber">158</context>
|
<context context-type="linenumber">160</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="4945c8e3bbf650f8dc6d03b16553f2c0bac42b11" datatype="html">
|
<trans-unit id="4945c8e3bbf650f8dc6d03b16553f2c0bac42b11" datatype="html">
|
||||||
@ -5511,7 +5511,7 @@
|
|||||||
<target state="translated">Znajdź portfel akcji...</target>
|
<target state="translated">Znajdź portfel akcji...</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
||||||
<context context-type="linenumber">140</context>
|
<context context-type="linenumber">139</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="cd206f0509271d9e611747bef0713c7df048d3af" datatype="html">
|
<trans-unit id="cd206f0509271d9e611747bef0713c7df048d3af" datatype="html">
|
||||||
@ -6311,7 +6311,7 @@
|
|||||||
<target state="new">Week to date</target>
|
<target state="new">Week to date</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
||||||
<context context-type="linenumber">219</context>
|
<context context-type="linenumber">212</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="7451343426685730864" datatype="html">
|
<trans-unit id="7451343426685730864" datatype="html">
|
||||||
@ -6319,7 +6319,7 @@
|
|||||||
<target state="new">WTD</target>
|
<target state="new">WTD</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
||||||
<context context-type="linenumber">219</context>
|
<context context-type="linenumber">212</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="358501326846847310" datatype="html">
|
<trans-unit id="358501326846847310" datatype="html">
|
||||||
@ -6327,7 +6327,7 @@
|
|||||||
<target state="new">Month to date</target>
|
<target state="new">Month to date</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
||||||
<context context-type="linenumber">223</context>
|
<context context-type="linenumber">216</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="399380803601269035" datatype="html">
|
<trans-unit id="399380803601269035" datatype="html">
|
||||||
@ -6335,7 +6335,7 @@
|
|||||||
<target state="new">MTD</target>
|
<target state="new">MTD</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
||||||
<context context-type="linenumber">223</context>
|
<context context-type="linenumber">216</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="2593751087640318641" datatype="html">
|
<trans-unit id="2593751087640318641" datatype="html">
|
||||||
@ -6343,7 +6343,7 @@
|
|||||||
<target state="new">Year to date</target>
|
<target state="new">Year to date</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
||||||
<context context-type="linenumber">227</context>
|
<context context-type="linenumber">220</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="6829218544e108e152f5fa72cb79c4ccb82e0d06" datatype="html">
|
<trans-unit id="6829218544e108e152f5fa72cb79c4ccb82e0d06" datatype="html">
|
||||||
@ -6387,7 +6387,7 @@
|
|||||||
<target state="new">year</target>
|
<target state="new">year</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
||||||
<context context-type="linenumber">231</context>
|
<context context-type="linenumber">224</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="7658073495909471632" datatype="html">
|
<trans-unit id="7658073495909471632" datatype="html">
|
||||||
@ -6395,7 +6395,7 @@
|
|||||||
<target state="new">years</target>
|
<target state="new">years</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
||||||
<context context-type="linenumber">253</context>
|
<context context-type="linenumber">246</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="7b5a5b1697006355467454025b820fd98de32074" datatype="html">
|
<trans-unit id="7b5a5b1697006355467454025b820fd98de32074" datatype="html">
|
||||||
@ -6991,7 +6991,7 @@
|
|||||||
<target state="translated">Nieaktywny</target>
|
<target state="translated">Nieaktywny</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">apps/client/src/app/pages/portfolio/fire/fire-page.html</context>
|
<context context-type="sourcefile">apps/client/src/app/pages/portfolio/fire/fire-page.html</context>
|
||||||
<context context-type="linenumber">194</context>
|
<context context-type="linenumber">198</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="2159130950882492111" datatype="html">
|
<trans-unit id="2159130950882492111" datatype="html">
|
||||||
@ -7063,7 +7063,7 @@
|
|||||||
<target state="new">Threshold Max</target>
|
<target state="new">Threshold Max</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">apps/client/src/app/components/rule/rule-settings-dialog/rule-settings-dialog.html</context>
|
<context context-type="sourcefile">apps/client/src/app/components/rule/rule-settings-dialog/rule-settings-dialog.html</context>
|
||||||
<context context-type="linenumber">22</context>
|
<context context-type="linenumber">29</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="f4e529ae5ffd73001d1ff4bbdeeb0a72e342e5c8" datatype="html">
|
<trans-unit id="f4e529ae5ffd73001d1ff4bbdeeb0a72e342e5c8" datatype="html">
|
||||||
@ -7071,7 +7071,7 @@
|
|||||||
<target state="new">Close</target>
|
<target state="new">Close</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">apps/client/src/app/components/rule/rule-settings-dialog/rule-settings-dialog.html</context>
|
<context context-type="sourcefile">apps/client/src/app/components/rule/rule-settings-dialog/rule-settings-dialog.html</context>
|
||||||
<context context-type="linenumber">33</context>
|
<context context-type="linenumber">47</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="072d4d4ec83a5a97345a1c13b90c213b47326d09" datatype="html">
|
<trans-unit id="072d4d4ec83a5a97345a1c13b90c213b47326d09" datatype="html">
|
||||||
|
@ -614,7 +614,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">apps/client/src/app/components/rule/rule-settings-dialog/rule-settings-dialog.html</context>
|
<context context-type="sourcefile">apps/client/src/app/components/rule/rule-settings-dialog/rule-settings-dialog.html</context>
|
||||||
<context context-type="linenumber">35</context>
|
<context context-type="linenumber">53</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">apps/client/src/app/components/user-account-access/create-or-update-access-dialog/create-or-update-access-dialog.html</context>
|
<context context-type="sourcefile">apps/client/src/app/components/user-account-access/create-or-update-access-dialog/create-or-update-access-dialog.html</context>
|
||||||
@ -1006,7 +1006,7 @@
|
|||||||
<target state="translated">Portefólio</target>
|
<target state="translated">Portefólio</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">apps/client/src/app/components/benchmark-comparator/benchmark-comparator.component.ts</context>
|
<context context-type="sourcefile">apps/client/src/app/components/benchmark-comparator/benchmark-comparator.component.ts</context>
|
||||||
<context context-type="linenumber">116</context>
|
<context context-type="linenumber">117</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">apps/client/src/app/pages/portfolio/portfolio-page-routing.module.ts</context>
|
<context context-type="sourcefile">apps/client/src/app/pages/portfolio/portfolio-page-routing.module.ts</context>
|
||||||
@ -1022,7 +1022,7 @@
|
|||||||
<target state="translated">Referência</target>
|
<target state="translated">Referência</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">apps/client/src/app/components/benchmark-comparator/benchmark-comparator.component.ts</context>
|
<context context-type="sourcefile">apps/client/src/app/components/benchmark-comparator/benchmark-comparator.component.ts</context>
|
||||||
<context context-type="linenumber">128</context>
|
<context context-type="linenumber">129</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="68ca4a6d3699c0b1141421f8ca995cb1ed736128" datatype="html">
|
<trans-unit id="68ca4a6d3699c0b1141421f8ca995cb1ed736128" datatype="html">
|
||||||
@ -1242,7 +1242,7 @@
|
|||||||
<target state="translated">Gerir Atividades</target>
|
<target state="translated">Gerir Atividades</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">apps/client/src/app/components/home-holdings/home-holdings.html</context>
|
<context context-type="sourcefile">apps/client/src/app/components/home-holdings/home-holdings.html</context>
|
||||||
<context context-type="linenumber">62</context>
|
<context context-type="linenumber">65</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="5486880308148746399" datatype="html">
|
<trans-unit id="5486880308148746399" datatype="html">
|
||||||
@ -1298,7 +1298,7 @@
|
|||||||
<target state="translated">Valor Total</target>
|
<target state="translated">Valor Total</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">apps/client/src/app/components/investment-chart/investment-chart.component.ts</context>
|
<context context-type="sourcefile">apps/client/src/app/components/investment-chart/investment-chart.component.ts</context>
|
||||||
<context context-type="linenumber">141</context>
|
<context context-type="linenumber">142</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="8192718423057883427" datatype="html">
|
<trans-unit id="8192718423057883427" datatype="html">
|
||||||
@ -1306,7 +1306,7 @@
|
|||||||
<target state="translated">Taxa de Poupança</target>
|
<target state="translated">Taxa de Poupança</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">apps/client/src/app/components/investment-chart/investment-chart.component.ts</context>
|
<context context-type="sourcefile">apps/client/src/app/components/investment-chart/investment-chart.component.ts</context>
|
||||||
<context context-type="linenumber">213</context>
|
<context context-type="linenumber">214</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="6a95e051c4fd80012488effb15d2842b2155ae5e" datatype="html">
|
<trans-unit id="6a95e051c4fd80012488effb15d2842b2155ae5e" datatype="html">
|
||||||
@ -1706,7 +1706,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
||||||
<context context-type="linenumber">217</context>
|
<context context-type="linenumber">210</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="7377728350294749129" datatype="html">
|
<trans-unit id="7377728350294749129" datatype="html">
|
||||||
@ -1718,7 +1718,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
||||||
<context context-type="linenumber">227</context>
|
<context context-type="linenumber">220</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="8768104874317770689" datatype="html">
|
<trans-unit id="8768104874317770689" datatype="html">
|
||||||
@ -1730,7 +1730,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
||||||
<context context-type="linenumber">231</context>
|
<context context-type="linenumber">224</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="7304247106520037555" datatype="html">
|
<trans-unit id="7304247106520037555" datatype="html">
|
||||||
@ -1742,7 +1742,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
||||||
<context context-type="linenumber">253</context>
|
<context context-type="linenumber">246</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="3667949571823271511" datatype="html">
|
<trans-unit id="3667949571823271511" datatype="html">
|
||||||
@ -1754,7 +1754,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
||||||
<context context-type="linenumber">256</context>
|
<context context-type="linenumber">249</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="4190182554887994764" datatype="html">
|
<trans-unit id="4190182554887994764" datatype="html">
|
||||||
@ -3730,7 +3730,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">apps/client/src/app/pages/portfolio/fire/fire-page.html</context>
|
<context context-type="sourcefile">apps/client/src/app/pages/portfolio/fire/fire-page.html</context>
|
||||||
<context context-type="linenumber">176</context>
|
<context context-type="linenumber">179</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="a6f322a22d0ae0b95dd9c70d43ba2c92de7ed49b" datatype="html">
|
<trans-unit id="a6f322a22d0ae0b95dd9c70d43ba2c92de7ed49b" datatype="html">
|
||||||
@ -5843,7 +5843,7 @@
|
|||||||
<target state="new">Currency Cluster Risks</target>
|
<target state="new">Currency Cluster Risks</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">apps/client/src/app/pages/portfolio/fire/fire-page.html</context>
|
<context context-type="sourcefile">apps/client/src/app/pages/portfolio/fire/fire-page.html</context>
|
||||||
<context context-type="linenumber">140</context>
|
<context context-type="linenumber">141</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="c7b797e5df289241021db16010efb6ac3c6cfb86" datatype="html">
|
<trans-unit id="c7b797e5df289241021db16010efb6ac3c6cfb86" datatype="html">
|
||||||
@ -5851,7 +5851,7 @@
|
|||||||
<target state="new">Account Cluster Risks</target>
|
<target state="new">Account Cluster Risks</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">apps/client/src/app/pages/portfolio/fire/fire-page.html</context>
|
<context context-type="sourcefile">apps/client/src/app/pages/portfolio/fire/fire-page.html</context>
|
||||||
<context context-type="linenumber">158</context>
|
<context context-type="linenumber">160</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="4b00337456de4a757f7abc8224d8b391f5d0634a" datatype="html">
|
<trans-unit id="4b00337456de4a757f7abc8224d8b391f5d0634a" datatype="html">
|
||||||
@ -5943,7 +5943,7 @@
|
|||||||
<target state="new">Find holding...</target>
|
<target state="new">Find holding...</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
||||||
<context context-type="linenumber">140</context>
|
<context context-type="linenumber">139</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="cd206f0509271d9e611747bef0713c7df048d3af" datatype="html">
|
<trans-unit id="cd206f0509271d9e611747bef0713c7df048d3af" datatype="html">
|
||||||
@ -6311,7 +6311,7 @@
|
|||||||
<target state="new">Week to date</target>
|
<target state="new">Week to date</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
||||||
<context context-type="linenumber">219</context>
|
<context context-type="linenumber">212</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="7451343426685730864" datatype="html">
|
<trans-unit id="7451343426685730864" datatype="html">
|
||||||
@ -6319,7 +6319,7 @@
|
|||||||
<target state="new">WTD</target>
|
<target state="new">WTD</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
||||||
<context context-type="linenumber">219</context>
|
<context context-type="linenumber">212</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="358501326846847310" datatype="html">
|
<trans-unit id="358501326846847310" datatype="html">
|
||||||
@ -6327,7 +6327,7 @@
|
|||||||
<target state="new">Month to date</target>
|
<target state="new">Month to date</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
||||||
<context context-type="linenumber">223</context>
|
<context context-type="linenumber">216</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="399380803601269035" datatype="html">
|
<trans-unit id="399380803601269035" datatype="html">
|
||||||
@ -6335,7 +6335,7 @@
|
|||||||
<target state="new">MTD</target>
|
<target state="new">MTD</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
||||||
<context context-type="linenumber">223</context>
|
<context context-type="linenumber">216</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="2593751087640318641" datatype="html">
|
<trans-unit id="2593751087640318641" datatype="html">
|
||||||
@ -6343,7 +6343,7 @@
|
|||||||
<target state="new">Year to date</target>
|
<target state="new">Year to date</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
||||||
<context context-type="linenumber">227</context>
|
<context context-type="linenumber">220</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="6829218544e108e152f5fa72cb79c4ccb82e0d06" datatype="html">
|
<trans-unit id="6829218544e108e152f5fa72cb79c4ccb82e0d06" datatype="html">
|
||||||
@ -6387,7 +6387,7 @@
|
|||||||
<target state="new">year</target>
|
<target state="new">year</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
||||||
<context context-type="linenumber">231</context>
|
<context context-type="linenumber">224</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="7658073495909471632" datatype="html">
|
<trans-unit id="7658073495909471632" datatype="html">
|
||||||
@ -6395,7 +6395,7 @@
|
|||||||
<target state="new">years</target>
|
<target state="new">years</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
||||||
<context context-type="linenumber">253</context>
|
<context context-type="linenumber">246</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="7b5a5b1697006355467454025b820fd98de32074" datatype="html">
|
<trans-unit id="7b5a5b1697006355467454025b820fd98de32074" datatype="html">
|
||||||
@ -6991,7 +6991,7 @@
|
|||||||
<target state="new">Inactive</target>
|
<target state="new">Inactive</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">apps/client/src/app/pages/portfolio/fire/fire-page.html</context>
|
<context context-type="sourcefile">apps/client/src/app/pages/portfolio/fire/fire-page.html</context>
|
||||||
<context context-type="linenumber">194</context>
|
<context context-type="linenumber">198</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="2159130950882492111" datatype="html">
|
<trans-unit id="2159130950882492111" datatype="html">
|
||||||
@ -7063,7 +7063,7 @@
|
|||||||
<target state="new">Threshold Max</target>
|
<target state="new">Threshold Max</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">apps/client/src/app/components/rule/rule-settings-dialog/rule-settings-dialog.html</context>
|
<context context-type="sourcefile">apps/client/src/app/components/rule/rule-settings-dialog/rule-settings-dialog.html</context>
|
||||||
<context context-type="linenumber">22</context>
|
<context context-type="linenumber">29</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="f4e529ae5ffd73001d1ff4bbdeeb0a72e342e5c8" datatype="html">
|
<trans-unit id="f4e529ae5ffd73001d1ff4bbdeeb0a72e342e5c8" datatype="html">
|
||||||
@ -7071,7 +7071,7 @@
|
|||||||
<target state="new">Close</target>
|
<target state="new">Close</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">apps/client/src/app/components/rule/rule-settings-dialog/rule-settings-dialog.html</context>
|
<context context-type="sourcefile">apps/client/src/app/components/rule/rule-settings-dialog/rule-settings-dialog.html</context>
|
||||||
<context context-type="linenumber">33</context>
|
<context context-type="linenumber">47</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="072d4d4ec83a5a97345a1c13b90c213b47326d09" datatype="html">
|
<trans-unit id="072d4d4ec83a5a97345a1c13b90c213b47326d09" datatype="html">
|
||||||
|
@ -1327,7 +1327,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">apps/client/src/app/components/rule/rule-settings-dialog/rule-settings-dialog.html</context>
|
<context context-type="sourcefile">apps/client/src/app/components/rule/rule-settings-dialog/rule-settings-dialog.html</context>
|
||||||
<context context-type="linenumber">35</context>
|
<context context-type="linenumber">53</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">apps/client/src/app/components/user-account-access/create-or-update-access-dialog/create-or-update-access-dialog.html</context>
|
<context context-type="sourcefile">apps/client/src/app/components/user-account-access/create-or-update-access-dialog/create-or-update-access-dialog.html</context>
|
||||||
@ -1995,7 +1995,7 @@
|
|||||||
<target state="translated">Portföy</target>
|
<target state="translated">Portföy</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">apps/client/src/app/components/benchmark-comparator/benchmark-comparator.component.ts</context>
|
<context context-type="sourcefile">apps/client/src/app/components/benchmark-comparator/benchmark-comparator.component.ts</context>
|
||||||
<context context-type="linenumber">116</context>
|
<context context-type="linenumber">117</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">apps/client/src/app/pages/portfolio/portfolio-page-routing.module.ts</context>
|
<context context-type="sourcefile">apps/client/src/app/pages/portfolio/portfolio-page-routing.module.ts</context>
|
||||||
@ -2011,7 +2011,7 @@
|
|||||||
<target state="translated">Karşılaştırma Ölçütü</target>
|
<target state="translated">Karşılaştırma Ölçütü</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">apps/client/src/app/components/benchmark-comparator/benchmark-comparator.component.ts</context>
|
<context context-type="sourcefile">apps/client/src/app/components/benchmark-comparator/benchmark-comparator.component.ts</context>
|
||||||
<context context-type="linenumber">128</context>
|
<context context-type="linenumber">129</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="68ca4a6d3699c0b1141421f8ca995cb1ed736128" datatype="html">
|
<trans-unit id="68ca4a6d3699c0b1141421f8ca995cb1ed736128" datatype="html">
|
||||||
@ -2135,7 +2135,7 @@
|
|||||||
<target state="translated">İşlemleri Yönet</target>
|
<target state="translated">İşlemleri Yönet</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">apps/client/src/app/components/home-holdings/home-holdings.html</context>
|
<context context-type="sourcefile">apps/client/src/app/components/home-holdings/home-holdings.html</context>
|
||||||
<context context-type="linenumber">62</context>
|
<context context-type="linenumber">65</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="5486880308148746399" datatype="html">
|
<trans-unit id="5486880308148746399" datatype="html">
|
||||||
@ -2267,7 +2267,7 @@
|
|||||||
<target state="translated">Toplam Tutar</target>
|
<target state="translated">Toplam Tutar</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">apps/client/src/app/components/investment-chart/investment-chart.component.ts</context>
|
<context context-type="sourcefile">apps/client/src/app/components/investment-chart/investment-chart.component.ts</context>
|
||||||
<context context-type="linenumber">141</context>
|
<context context-type="linenumber">142</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="8192718423057883427" datatype="html">
|
<trans-unit id="8192718423057883427" datatype="html">
|
||||||
@ -2275,7 +2275,7 @@
|
|||||||
<target state="translated">Tasarruf Oranı</target>
|
<target state="translated">Tasarruf Oranı</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">apps/client/src/app/components/investment-chart/investment-chart.component.ts</context>
|
<context context-type="sourcefile">apps/client/src/app/components/investment-chart/investment-chart.component.ts</context>
|
||||||
<context context-type="linenumber">213</context>
|
<context context-type="linenumber">214</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="6a95e051c4fd80012488effb15d2842b2155ae5e" datatype="html">
|
<trans-unit id="6a95e051c4fd80012488effb15d2842b2155ae5e" datatype="html">
|
||||||
@ -2591,7 +2591,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">apps/client/src/app/pages/portfolio/fire/fire-page.html</context>
|
<context context-type="sourcefile">apps/client/src/app/pages/portfolio/fire/fire-page.html</context>
|
||||||
<context context-type="linenumber">176</context>
|
<context context-type="linenumber">179</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="43d544c2e88959f6c59cc4db419528fb0776bd6c" datatype="html">
|
<trans-unit id="43d544c2e88959f6c59cc4db419528fb0776bd6c" datatype="html">
|
||||||
@ -2759,7 +2759,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
||||||
<context context-type="linenumber">217</context>
|
<context context-type="linenumber">210</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="7377728350294749129" datatype="html">
|
<trans-unit id="7377728350294749129" datatype="html">
|
||||||
@ -2771,7 +2771,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
||||||
<context context-type="linenumber">227</context>
|
<context context-type="linenumber">220</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="8768104874317770689" datatype="html">
|
<trans-unit id="8768104874317770689" datatype="html">
|
||||||
@ -2783,7 +2783,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
||||||
<context context-type="linenumber">231</context>
|
<context context-type="linenumber">224</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="7304247106520037555" datatype="html">
|
<trans-unit id="7304247106520037555" datatype="html">
|
||||||
@ -2795,7 +2795,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
||||||
<context context-type="linenumber">253</context>
|
<context context-type="linenumber">246</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="3667949571823271511" datatype="html">
|
<trans-unit id="3667949571823271511" datatype="html">
|
||||||
@ -2807,7 +2807,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
||||||
<context context-type="linenumber">256</context>
|
<context context-type="linenumber">249</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="4190182554887994764" datatype="html">
|
<trans-unit id="4190182554887994764" datatype="html">
|
||||||
@ -5843,7 +5843,7 @@
|
|||||||
<target state="translated">Kur Kümelenme Riskleri (Currency Cluster Risks)</target>
|
<target state="translated">Kur Kümelenme Riskleri (Currency Cluster Risks)</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">apps/client/src/app/pages/portfolio/fire/fire-page.html</context>
|
<context context-type="sourcefile">apps/client/src/app/pages/portfolio/fire/fire-page.html</context>
|
||||||
<context context-type="linenumber">140</context>
|
<context context-type="linenumber">141</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="c7b797e5df289241021db16010efb6ac3c6cfb86" datatype="html">
|
<trans-unit id="c7b797e5df289241021db16010efb6ac3c6cfb86" datatype="html">
|
||||||
@ -5851,7 +5851,7 @@
|
|||||||
<target state="translated">Hesap Kümelenme Riski (Account Cluster Risks)</target>
|
<target state="translated">Hesap Kümelenme Riski (Account Cluster Risks)</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">apps/client/src/app/pages/portfolio/fire/fire-page.html</context>
|
<context context-type="sourcefile">apps/client/src/app/pages/portfolio/fire/fire-page.html</context>
|
||||||
<context context-type="linenumber">158</context>
|
<context context-type="linenumber">160</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="4b00337456de4a757f7abc8224d8b391f5d0634a" datatype="html">
|
<trans-unit id="4b00337456de4a757f7abc8224d8b391f5d0634a" datatype="html">
|
||||||
@ -5943,7 +5943,7 @@
|
|||||||
<target state="translated">Sahip olunan varlıkları bul...</target>
|
<target state="translated">Sahip olunan varlıkları bul...</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
||||||
<context context-type="linenumber">140</context>
|
<context context-type="linenumber">139</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="cd206f0509271d9e611747bef0713c7df048d3af" datatype="html">
|
<trans-unit id="cd206f0509271d9e611747bef0713c7df048d3af" datatype="html">
|
||||||
@ -6311,7 +6311,7 @@
|
|||||||
<target state="new">Week to date</target>
|
<target state="new">Week to date</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
||||||
<context context-type="linenumber">219</context>
|
<context context-type="linenumber">212</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="7451343426685730864" datatype="html">
|
<trans-unit id="7451343426685730864" datatype="html">
|
||||||
@ -6319,7 +6319,7 @@
|
|||||||
<target state="new">WTD</target>
|
<target state="new">WTD</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
||||||
<context context-type="linenumber">219</context>
|
<context context-type="linenumber">212</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="358501326846847310" datatype="html">
|
<trans-unit id="358501326846847310" datatype="html">
|
||||||
@ -6327,7 +6327,7 @@
|
|||||||
<target state="new">Month to date</target>
|
<target state="new">Month to date</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
||||||
<context context-type="linenumber">223</context>
|
<context context-type="linenumber">216</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="399380803601269035" datatype="html">
|
<trans-unit id="399380803601269035" datatype="html">
|
||||||
@ -6335,7 +6335,7 @@
|
|||||||
<target state="new">MTD</target>
|
<target state="new">MTD</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
||||||
<context context-type="linenumber">223</context>
|
<context context-type="linenumber">216</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="2593751087640318641" datatype="html">
|
<trans-unit id="2593751087640318641" datatype="html">
|
||||||
@ -6343,7 +6343,7 @@
|
|||||||
<target state="new">Year to date</target>
|
<target state="new">Year to date</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
||||||
<context context-type="linenumber">227</context>
|
<context context-type="linenumber">220</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="6829218544e108e152f5fa72cb79c4ccb82e0d06" datatype="html">
|
<trans-unit id="6829218544e108e152f5fa72cb79c4ccb82e0d06" datatype="html">
|
||||||
@ -6387,7 +6387,7 @@
|
|||||||
<target state="new">year</target>
|
<target state="new">year</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
||||||
<context context-type="linenumber">231</context>
|
<context context-type="linenumber">224</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="7658073495909471632" datatype="html">
|
<trans-unit id="7658073495909471632" datatype="html">
|
||||||
@ -6395,7 +6395,7 @@
|
|||||||
<target state="new">years</target>
|
<target state="new">years</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
||||||
<context context-type="linenumber">253</context>
|
<context context-type="linenumber">246</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="7b5a5b1697006355467454025b820fd98de32074" datatype="html">
|
<trans-unit id="7b5a5b1697006355467454025b820fd98de32074" datatype="html">
|
||||||
@ -6991,7 +6991,7 @@
|
|||||||
<target state="new">Inactive</target>
|
<target state="new">Inactive</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">apps/client/src/app/pages/portfolio/fire/fire-page.html</context>
|
<context context-type="sourcefile">apps/client/src/app/pages/portfolio/fire/fire-page.html</context>
|
||||||
<context context-type="linenumber">194</context>
|
<context context-type="linenumber">198</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="2159130950882492111" datatype="html">
|
<trans-unit id="2159130950882492111" datatype="html">
|
||||||
@ -7063,7 +7063,7 @@
|
|||||||
<target state="new">Threshold Max</target>
|
<target state="new">Threshold Max</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">apps/client/src/app/components/rule/rule-settings-dialog/rule-settings-dialog.html</context>
|
<context context-type="sourcefile">apps/client/src/app/components/rule/rule-settings-dialog/rule-settings-dialog.html</context>
|
||||||
<context context-type="linenumber">22</context>
|
<context context-type="linenumber">29</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="f4e529ae5ffd73001d1ff4bbdeeb0a72e342e5c8" datatype="html">
|
<trans-unit id="f4e529ae5ffd73001d1ff4bbdeeb0a72e342e5c8" datatype="html">
|
||||||
@ -7071,7 +7071,7 @@
|
|||||||
<target state="new">Close</target>
|
<target state="new">Close</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">apps/client/src/app/components/rule/rule-settings-dialog/rule-settings-dialog.html</context>
|
<context context-type="sourcefile">apps/client/src/app/components/rule/rule-settings-dialog/rule-settings-dialog.html</context>
|
||||||
<context context-type="linenumber">33</context>
|
<context context-type="linenumber">47</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="072d4d4ec83a5a97345a1c13b90c213b47326d09" datatype="html">
|
<trans-unit id="072d4d4ec83a5a97345a1c13b90c213b47326d09" datatype="html">
|
||||||
|
@ -1312,7 +1312,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">apps/client/src/app/components/rule/rule-settings-dialog/rule-settings-dialog.html</context>
|
<context context-type="sourcefile">apps/client/src/app/components/rule/rule-settings-dialog/rule-settings-dialog.html</context>
|
||||||
<context context-type="linenumber">35</context>
|
<context context-type="linenumber">53</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">apps/client/src/app/components/user-account-access/create-or-update-access-dialog/create-or-update-access-dialog.html</context>
|
<context context-type="sourcefile">apps/client/src/app/components/user-account-access/create-or-update-access-dialog/create-or-update-access-dialog.html</context>
|
||||||
@ -2013,7 +2013,7 @@
|
|||||||
<source>Portfolio</source>
|
<source>Portfolio</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">apps/client/src/app/components/benchmark-comparator/benchmark-comparator.component.ts</context>
|
<context context-type="sourcefile">apps/client/src/app/components/benchmark-comparator/benchmark-comparator.component.ts</context>
|
||||||
<context context-type="linenumber">116</context>
|
<context context-type="linenumber">117</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">apps/client/src/app/pages/portfolio/portfolio-page-routing.module.ts</context>
|
<context context-type="sourcefile">apps/client/src/app/pages/portfolio/portfolio-page-routing.module.ts</context>
|
||||||
@ -2028,7 +2028,7 @@
|
|||||||
<source>Benchmark</source>
|
<source>Benchmark</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">apps/client/src/app/components/benchmark-comparator/benchmark-comparator.component.ts</context>
|
<context context-type="sourcefile">apps/client/src/app/components/benchmark-comparator/benchmark-comparator.component.ts</context>
|
||||||
<context context-type="linenumber">128</context>
|
<context context-type="linenumber">129</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="68ca4a6d3699c0b1141421f8ca995cb1ed736128" datatype="html">
|
<trans-unit id="68ca4a6d3699c0b1141421f8ca995cb1ed736128" datatype="html">
|
||||||
@ -2151,7 +2151,7 @@
|
|||||||
<source>Manage Activities</source>
|
<source>Manage Activities</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">apps/client/src/app/components/home-holdings/home-holdings.html</context>
|
<context context-type="sourcefile">apps/client/src/app/components/home-holdings/home-holdings.html</context>
|
||||||
<context context-type="linenumber">62</context>
|
<context context-type="linenumber">65</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="5486880308148746399" datatype="html">
|
<trans-unit id="5486880308148746399" datatype="html">
|
||||||
@ -2268,14 +2268,14 @@
|
|||||||
<source>Total Amount</source>
|
<source>Total Amount</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">apps/client/src/app/components/investment-chart/investment-chart.component.ts</context>
|
<context context-type="sourcefile">apps/client/src/app/components/investment-chart/investment-chart.component.ts</context>
|
||||||
<context context-type="linenumber">141</context>
|
<context context-type="linenumber">142</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="8192718423057883427" datatype="html">
|
<trans-unit id="8192718423057883427" datatype="html">
|
||||||
<source>Savings Rate</source>
|
<source>Savings Rate</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">apps/client/src/app/components/investment-chart/investment-chart.component.ts</context>
|
<context context-type="sourcefile">apps/client/src/app/components/investment-chart/investment-chart.component.ts</context>
|
||||||
<context context-type="linenumber">213</context>
|
<context context-type="linenumber">214</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="6a95e051c4fd80012488effb15d2842b2155ae5e" datatype="html">
|
<trans-unit id="6a95e051c4fd80012488effb15d2842b2155ae5e" datatype="html">
|
||||||
@ -2392,7 +2392,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">apps/client/src/app/pages/portfolio/fire/fire-page.html</context>
|
<context context-type="sourcefile">apps/client/src/app/pages/portfolio/fire/fire-page.html</context>
|
||||||
<context context-type="linenumber">176</context>
|
<context context-type="linenumber">179</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="de518fa0cd3a454e84102c0d9984c4a3cfdb590d" datatype="html">
|
<trans-unit id="de518fa0cd3a454e84102c0d9984c4a3cfdb590d" datatype="html">
|
||||||
@ -2723,7 +2723,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
||||||
<context context-type="linenumber">217</context>
|
<context context-type="linenumber">210</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="7377728350294749129" datatype="html">
|
<trans-unit id="7377728350294749129" datatype="html">
|
||||||
@ -2734,7 +2734,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
||||||
<context context-type="linenumber">227</context>
|
<context context-type="linenumber">220</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="8768104874317770689" datatype="html">
|
<trans-unit id="8768104874317770689" datatype="html">
|
||||||
@ -2745,7 +2745,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
||||||
<context context-type="linenumber">231</context>
|
<context context-type="linenumber">224</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="7304247106520037555" datatype="html">
|
<trans-unit id="7304247106520037555" datatype="html">
|
||||||
@ -2756,7 +2756,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
||||||
<context context-type="linenumber">253</context>
|
<context context-type="linenumber">246</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="3667949571823271511" datatype="html">
|
<trans-unit id="3667949571823271511" datatype="html">
|
||||||
@ -2767,7 +2767,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
||||||
<context context-type="linenumber">256</context>
|
<context context-type="linenumber">249</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="5e41f1b4c46ad9e0a9bc83fa36445483aa5cc324" datatype="html">
|
<trans-unit id="5e41f1b4c46ad9e0a9bc83fa36445483aa5cc324" datatype="html">
|
||||||
@ -4337,14 +4337,14 @@
|
|||||||
<source>Currency Cluster Risks</source>
|
<source>Currency Cluster Risks</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">apps/client/src/app/pages/portfolio/fire/fire-page.html</context>
|
<context context-type="sourcefile">apps/client/src/app/pages/portfolio/fire/fire-page.html</context>
|
||||||
<context context-type="linenumber">140</context>
|
<context context-type="linenumber">141</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="c7b797e5df289241021db16010efb6ac3c6cfb86" datatype="html">
|
<trans-unit id="c7b797e5df289241021db16010efb6ac3c6cfb86" datatype="html">
|
||||||
<source>Account Cluster Risks</source>
|
<source>Account Cluster Risks</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">apps/client/src/app/pages/portfolio/fire/fire-page.html</context>
|
<context context-type="sourcefile">apps/client/src/app/pages/portfolio/fire/fire-page.html</context>
|
||||||
<context context-type="linenumber">158</context>
|
<context context-type="linenumber">160</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="4945c8e3bbf650f8dc6d03b16553f2c0bac42b11" datatype="html">
|
<trans-unit id="4945c8e3bbf650f8dc6d03b16553f2c0bac42b11" datatype="html">
|
||||||
@ -5071,7 +5071,7 @@
|
|||||||
<source>Find holding...</source>
|
<source>Find holding...</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
||||||
<context context-type="linenumber">140</context>
|
<context context-type="linenumber">139</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="cd206f0509271d9e611747bef0713c7df048d3af" datatype="html">
|
<trans-unit id="cd206f0509271d9e611747bef0713c7df048d3af" datatype="html">
|
||||||
@ -5734,35 +5734,35 @@
|
|||||||
<source>Year to date</source>
|
<source>Year to date</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
||||||
<context context-type="linenumber">227</context>
|
<context context-type="linenumber">220</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="3105754554141014845" datatype="html">
|
<trans-unit id="3105754554141014845" datatype="html">
|
||||||
<source>Week to date</source>
|
<source>Week to date</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
||||||
<context context-type="linenumber">219</context>
|
<context context-type="linenumber">212</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="358501326846847310" datatype="html">
|
<trans-unit id="358501326846847310" datatype="html">
|
||||||
<source>Month to date</source>
|
<source>Month to date</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
||||||
<context context-type="linenumber">223</context>
|
<context context-type="linenumber">216</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="399380803601269035" datatype="html">
|
<trans-unit id="399380803601269035" datatype="html">
|
||||||
<source>MTD</source>
|
<source>MTD</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
||||||
<context context-type="linenumber">223</context>
|
<context context-type="linenumber">216</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="7451343426685730864" datatype="html">
|
<trans-unit id="7451343426685730864" datatype="html">
|
||||||
<source>WTD</source>
|
<source>WTD</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
||||||
<context context-type="linenumber">219</context>
|
<context context-type="linenumber">212</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="051f7201e65df238102b8f33aeb2f993bba280bb" datatype="html">
|
<trans-unit id="051f7201e65df238102b8f33aeb2f993bba280bb" datatype="html">
|
||||||
@ -5801,14 +5801,14 @@
|
|||||||
<source>year</source>
|
<source>year</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
||||||
<context context-type="linenumber">231</context>
|
<context context-type="linenumber">224</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="7658073495909471632" datatype="html">
|
<trans-unit id="7658073495909471632" datatype="html">
|
||||||
<source>years</source>
|
<source>years</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
||||||
<context context-type="linenumber">253</context>
|
<context context-type="linenumber">246</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="73864299814955e733ade6e3e7204548b7b9adae" datatype="html">
|
<trans-unit id="73864299814955e733ade6e3e7204548b7b9adae" datatype="html">
|
||||||
@ -6331,7 +6331,7 @@
|
|||||||
<source>Inactive</source>
|
<source>Inactive</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">apps/client/src/app/pages/portfolio/fire/fire-page.html</context>
|
<context context-type="sourcefile">apps/client/src/app/pages/portfolio/fire/fire-page.html</context>
|
||||||
<context context-type="linenumber">194</context>
|
<context context-type="linenumber">198</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="7819314041543176992" datatype="html">
|
<trans-unit id="7819314041543176992" datatype="html">
|
||||||
@ -6359,7 +6359,7 @@
|
|||||||
<source>Threshold Max</source>
|
<source>Threshold Max</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">apps/client/src/app/components/rule/rule-settings-dialog/rule-settings-dialog.html</context>
|
<context context-type="sourcefile">apps/client/src/app/components/rule/rule-settings-dialog/rule-settings-dialog.html</context>
|
||||||
<context context-type="linenumber">22</context>
|
<context context-type="linenumber">29</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="072d4d4ec83a5a97345a1c13b90c213b47326d09" datatype="html">
|
<trans-unit id="072d4d4ec83a5a97345a1c13b90c213b47326d09" datatype="html">
|
||||||
@ -6408,7 +6408,7 @@
|
|||||||
<source>Close</source>
|
<source>Close</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">apps/client/src/app/components/rule/rule-settings-dialog/rule-settings-dialog.html</context>
|
<context context-type="sourcefile">apps/client/src/app/components/rule/rule-settings-dialog/rule-settings-dialog.html</context>
|
||||||
<context context-type="linenumber">33</context>
|
<context context-type="linenumber">47</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="06296af0cdaf7bed02043379359ed1975fc22077" datatype="html">
|
<trans-unit id="06296af0cdaf7bed02043379359ed1975fc22077" datatype="html">
|
||||||
|
@ -1372,7 +1372,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">apps/client/src/app/components/rule/rule-settings-dialog/rule-settings-dialog.html</context>
|
<context context-type="sourcefile">apps/client/src/app/components/rule/rule-settings-dialog/rule-settings-dialog.html</context>
|
||||||
<context context-type="linenumber">35</context>
|
<context context-type="linenumber">53</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">apps/client/src/app/components/user-account-access/create-or-update-access-dialog/create-or-update-access-dialog.html</context>
|
<context context-type="sourcefile">apps/client/src/app/components/user-account-access/create-or-update-access-dialog/create-or-update-access-dialog.html</context>
|
||||||
@ -2148,7 +2148,7 @@
|
|||||||
<target state="translated">文件夹</target>
|
<target state="translated">文件夹</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">apps/client/src/app/components/benchmark-comparator/benchmark-comparator.component.ts</context>
|
<context context-type="sourcefile">apps/client/src/app/components/benchmark-comparator/benchmark-comparator.component.ts</context>
|
||||||
<context context-type="linenumber">116</context>
|
<context context-type="linenumber">117</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">apps/client/src/app/pages/portfolio/portfolio-page-routing.module.ts</context>
|
<context context-type="sourcefile">apps/client/src/app/pages/portfolio/portfolio-page-routing.module.ts</context>
|
||||||
@ -2164,7 +2164,7 @@
|
|||||||
<target state="translated">基准</target>
|
<target state="translated">基准</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">apps/client/src/app/components/benchmark-comparator/benchmark-comparator.component.ts</context>
|
<context context-type="sourcefile">apps/client/src/app/components/benchmark-comparator/benchmark-comparator.component.ts</context>
|
||||||
<context context-type="linenumber">128</context>
|
<context context-type="linenumber">129</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="68ca4a6d3699c0b1141421f8ca995cb1ed736128" datatype="html">
|
<trans-unit id="68ca4a6d3699c0b1141421f8ca995cb1ed736128" datatype="html">
|
||||||
@ -2300,7 +2300,7 @@
|
|||||||
<target state="translated">管理活动</target>
|
<target state="translated">管理活动</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">apps/client/src/app/components/home-holdings/home-holdings.html</context>
|
<context context-type="sourcefile">apps/client/src/app/components/home-holdings/home-holdings.html</context>
|
||||||
<context context-type="linenumber">62</context>
|
<context context-type="linenumber">65</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="5486880308148746399" datatype="html">
|
<trans-unit id="5486880308148746399" datatype="html">
|
||||||
@ -2432,7 +2432,7 @@
|
|||||||
<target state="translated">总金额</target>
|
<target state="translated">总金额</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">apps/client/src/app/components/investment-chart/investment-chart.component.ts</context>
|
<context context-type="sourcefile">apps/client/src/app/components/investment-chart/investment-chart.component.ts</context>
|
||||||
<context context-type="linenumber">141</context>
|
<context context-type="linenumber">142</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="8192718423057883427" datatype="html">
|
<trans-unit id="8192718423057883427" datatype="html">
|
||||||
@ -2440,7 +2440,7 @@
|
|||||||
<target state="translated">储蓄率</target>
|
<target state="translated">储蓄率</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">apps/client/src/app/components/investment-chart/investment-chart.component.ts</context>
|
<context context-type="sourcefile">apps/client/src/app/components/investment-chart/investment-chart.component.ts</context>
|
||||||
<context context-type="linenumber">213</context>
|
<context context-type="linenumber">214</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="6a95e051c4fd80012488effb15d2842b2155ae5e" datatype="html">
|
<trans-unit id="6a95e051c4fd80012488effb15d2842b2155ae5e" datatype="html">
|
||||||
@ -2568,7 +2568,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">apps/client/src/app/pages/portfolio/fire/fire-page.html</context>
|
<context context-type="sourcefile">apps/client/src/app/pages/portfolio/fire/fire-page.html</context>
|
||||||
<context context-type="linenumber">176</context>
|
<context context-type="linenumber">179</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="de518fa0cd3a454e84102c0d9984c4a3cfdb590d" datatype="html">
|
<trans-unit id="de518fa0cd3a454e84102c0d9984c4a3cfdb590d" datatype="html">
|
||||||
@ -2932,7 +2932,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
||||||
<context context-type="linenumber">217</context>
|
<context context-type="linenumber">210</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="7377728350294749129" datatype="html">
|
<trans-unit id="7377728350294749129" datatype="html">
|
||||||
@ -2944,7 +2944,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
||||||
<context context-type="linenumber">227</context>
|
<context context-type="linenumber">220</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="8768104874317770689" datatype="html">
|
<trans-unit id="8768104874317770689" datatype="html">
|
||||||
@ -2956,7 +2956,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
||||||
<context context-type="linenumber">231</context>
|
<context context-type="linenumber">224</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="7304247106520037555" datatype="html">
|
<trans-unit id="7304247106520037555" datatype="html">
|
||||||
@ -2968,7 +2968,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
||||||
<context context-type="linenumber">253</context>
|
<context context-type="linenumber">246</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="3667949571823271511" datatype="html">
|
<trans-unit id="3667949571823271511" datatype="html">
|
||||||
@ -2980,7 +2980,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
||||||
<context context-type="linenumber">256</context>
|
<context context-type="linenumber">249</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="5e41f1b4c46ad9e0a9bc83fa36445483aa5cc324" datatype="html">
|
<trans-unit id="5e41f1b4c46ad9e0a9bc83fa36445483aa5cc324" datatype="html">
|
||||||
@ -4744,7 +4744,7 @@
|
|||||||
<target state="translated">货币集群风险</target>
|
<target state="translated">货币集群风险</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">apps/client/src/app/pages/portfolio/fire/fire-page.html</context>
|
<context context-type="sourcefile">apps/client/src/app/pages/portfolio/fire/fire-page.html</context>
|
||||||
<context context-type="linenumber">140</context>
|
<context context-type="linenumber">141</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="c7b797e5df289241021db16010efb6ac3c6cfb86" datatype="html">
|
<trans-unit id="c7b797e5df289241021db16010efb6ac3c6cfb86" datatype="html">
|
||||||
@ -4752,7 +4752,7 @@
|
|||||||
<target state="translated">账户集群风险</target>
|
<target state="translated">账户集群风险</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">apps/client/src/app/pages/portfolio/fire/fire-page.html</context>
|
<context context-type="sourcefile">apps/client/src/app/pages/portfolio/fire/fire-page.html</context>
|
||||||
<context context-type="linenumber">158</context>
|
<context context-type="linenumber">160</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="4945c8e3bbf650f8dc6d03b16553f2c0bac42b11" datatype="html">
|
<trans-unit id="4945c8e3bbf650f8dc6d03b16553f2c0bac42b11" datatype="html">
|
||||||
@ -5560,7 +5560,7 @@
|
|||||||
<target state="translated">查找持有...</target>
|
<target state="translated">查找持有...</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
||||||
<context context-type="linenumber">140</context>
|
<context context-type="linenumber">139</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="cd206f0509271d9e611747bef0713c7df048d3af" datatype="html">
|
<trans-unit id="cd206f0509271d9e611747bef0713c7df048d3af" datatype="html">
|
||||||
@ -6312,7 +6312,7 @@
|
|||||||
<target state="translated">今年迄今为止</target>
|
<target state="translated">今年迄今为止</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
||||||
<context context-type="linenumber">227</context>
|
<context context-type="linenumber">220</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="3105754554141014845" datatype="html">
|
<trans-unit id="3105754554141014845" datatype="html">
|
||||||
@ -6320,7 +6320,7 @@
|
|||||||
<target state="translated">本周至今</target>
|
<target state="translated">本周至今</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
||||||
<context context-type="linenumber">219</context>
|
<context context-type="linenumber">212</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="358501326846847310" datatype="html">
|
<trans-unit id="358501326846847310" datatype="html">
|
||||||
@ -6328,7 +6328,7 @@
|
|||||||
<target state="translated">本月至今</target>
|
<target state="translated">本月至今</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
||||||
<context context-type="linenumber">223</context>
|
<context context-type="linenumber">216</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="399380803601269035" datatype="html">
|
<trans-unit id="399380803601269035" datatype="html">
|
||||||
@ -6336,7 +6336,7 @@
|
|||||||
<target state="translated">最大输运量</target>
|
<target state="translated">最大输运量</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
||||||
<context context-type="linenumber">223</context>
|
<context context-type="linenumber">216</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="7451343426685730864" datatype="html">
|
<trans-unit id="7451343426685730864" datatype="html">
|
||||||
@ -6344,7 +6344,7 @@
|
|||||||
<target state="translated">世界贸易组织</target>
|
<target state="translated">世界贸易组织</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
||||||
<context context-type="linenumber">219</context>
|
<context context-type="linenumber">212</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="051f7201e65df238102b8f33aeb2f993bba280bb" datatype="html">
|
<trans-unit id="051f7201e65df238102b8f33aeb2f993bba280bb" datatype="html">
|
||||||
@ -6388,7 +6388,7 @@
|
|||||||
<target state="translated">年</target>
|
<target state="translated">年</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
||||||
<context context-type="linenumber">231</context>
|
<context context-type="linenumber">224</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="7658073495909471632" datatype="html">
|
<trans-unit id="7658073495909471632" datatype="html">
|
||||||
@ -6396,7 +6396,7 @@
|
|||||||
<target state="translated">年</target>
|
<target state="translated">年</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
<context context-type="sourcefile">libs/ui/src/lib/assistant/assistant.component.ts</context>
|
||||||
<context context-type="linenumber">253</context>
|
<context context-type="linenumber">246</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="73864299814955e733ade6e3e7204548b7b9adae" datatype="html">
|
<trans-unit id="73864299814955e733ade6e3e7204548b7b9adae" datatype="html">
|
||||||
@ -6992,7 +6992,7 @@
|
|||||||
<target state="new">Inactive</target>
|
<target state="new">Inactive</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">apps/client/src/app/pages/portfolio/fire/fire-page.html</context>
|
<context context-type="sourcefile">apps/client/src/app/pages/portfolio/fire/fire-page.html</context>
|
||||||
<context context-type="linenumber">194</context>
|
<context context-type="linenumber">198</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="2159130950882492111" datatype="html">
|
<trans-unit id="2159130950882492111" datatype="html">
|
||||||
@ -7064,7 +7064,7 @@
|
|||||||
<target state="new">Threshold Max</target>
|
<target state="new">Threshold Max</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">apps/client/src/app/components/rule/rule-settings-dialog/rule-settings-dialog.html</context>
|
<context context-type="sourcefile">apps/client/src/app/components/rule/rule-settings-dialog/rule-settings-dialog.html</context>
|
||||||
<context context-type="linenumber">22</context>
|
<context context-type="linenumber">29</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="f4e529ae5ffd73001d1ff4bbdeeb0a72e342e5c8" datatype="html">
|
<trans-unit id="f4e529ae5ffd73001d1ff4bbdeeb0a72e342e5c8" datatype="html">
|
||||||
@ -7072,7 +7072,7 @@
|
|||||||
<target state="new">Close</target>
|
<target state="new">Close</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">apps/client/src/app/components/rule/rule-settings-dialog/rule-settings-dialog.html</context>
|
<context context-type="sourcefile">apps/client/src/app/components/rule/rule-settings-dialog/rule-settings-dialog.html</context>
|
||||||
<context context-type="linenumber">33</context>
|
<context context-type="linenumber">47</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="072d4d4ec83a5a97345a1c13b90c213b47326d09" datatype="html">
|
<trans-unit id="072d4d4ec83a5a97345a1c13b90c213b47326d09" datatype="html">
|
||||||
|
@ -103,7 +103,7 @@ export function getVerticalHoverLinePlugin(
|
|||||||
colorScheme?: ColorScheme
|
colorScheme?: ColorScheme
|
||||||
) {
|
) {
|
||||||
return {
|
return {
|
||||||
afterDatasetsDraw: (chart, x, options) => {
|
afterDatasetsDraw: (chart, _, options) => {
|
||||||
const active = chart.getActiveElements();
|
const active = chart.getActiveElements();
|
||||||
|
|
||||||
if (!active || active.length === 0) {
|
if (!active || active.length === 0) {
|
||||||
|
@ -40,17 +40,19 @@ export const DATA_GATHERING_QUEUE_PRIORITY_MEDIUM = Math.round(
|
|||||||
DATA_GATHERING_QUEUE_PRIORITY_LOW / 2
|
DATA_GATHERING_QUEUE_PRIORITY_LOW / 2
|
||||||
);
|
);
|
||||||
|
|
||||||
export const PORTFOLIO_SNAPSHOT_QUEUE = 'PORTFOLIO_SNAPSHOT_QUEUE';
|
export const PORTFOLIO_SNAPSHOT_COMPUTATION_QUEUE =
|
||||||
export const PORTFOLIO_SNAPSHOT_QUEUE_PRIORITY_HIGH = 1;
|
'PORTFOLIO_SNAPSHOT_COMPUTATION_QUEUE';
|
||||||
export const PORTFOLIO_SNAPSHOT_QUEUE_PRIORITY_LOW = Number.MAX_SAFE_INTEGER;
|
export const PORTFOLIO_SNAPSHOT_COMPUTATION_QUEUE_PRIORITY_HIGH = 1;
|
||||||
|
export const PORTFOLIO_SNAPSHOT_COMPUTATION_QUEUE_PRIORITY_LOW =
|
||||||
|
Number.MAX_SAFE_INTEGER;
|
||||||
|
|
||||||
export const DEFAULT_CURRENCY = 'USD';
|
export const DEFAULT_CURRENCY = 'USD';
|
||||||
export const DEFAULT_DATE_FORMAT_MONTH_YEAR = 'MMM yyyy';
|
export const DEFAULT_DATE_FORMAT_MONTH_YEAR = 'MMM yyyy';
|
||||||
export const DEFAULT_LANGUAGE_CODE = 'en';
|
export const DEFAULT_LANGUAGE_CODE = 'en';
|
||||||
export const DEFAULT_PAGE_SIZE = 50;
|
export const DEFAULT_PAGE_SIZE = 50;
|
||||||
export const DEFAULT_PROCESSOR_CONCURRENCY_GATHER_ASSET_PROFILE = 1;
|
export const DEFAULT_PROCESSOR_GATHER_ASSET_PROFILE_CONCURRENCY = 1;
|
||||||
export const DEFAULT_PROCESSOR_CONCURRENCY_GATHER_HISTORICAL_MARKET_DATA = 1;
|
export const DEFAULT_PROCESSOR_GATHER_HISTORICAL_MARKET_DATA_CONCURRENCY = 1;
|
||||||
export const DEFAULT_PROCESSOR_CONCURRENCY_PORTFOLIO_SNAPSHOT = 1;
|
export const DEFAULT_PROCESSOR_PORTFOLIO_SNAPSHOT_COMPUTATION_CONCURRENCY = 1;
|
||||||
export const DEFAULT_PROCESSOR_PORTFOLIO_SNAPSHOT_COMPUTATION_TIMEOUT = 30000;
|
export const DEFAULT_PROCESSOR_PORTFOLIO_SNAPSHOT_COMPUTATION_TIMEOUT = 30000;
|
||||||
export const DEFAULT_ROOT_URL = 'https://localhost:4200';
|
export const DEFAULT_ROOT_URL = 'https://localhost:4200';
|
||||||
|
|
||||||
|
@ -1,11 +1,17 @@
|
|||||||
export interface PortfolioReportRule {
|
export interface PortfolioReportRule {
|
||||||
|
configuration?: {
|
||||||
|
threshold?: {
|
||||||
|
max: number;
|
||||||
|
min: number;
|
||||||
|
step: number;
|
||||||
|
unit?: string;
|
||||||
|
};
|
||||||
|
thresholdMax?: boolean;
|
||||||
|
thresholdMin?: boolean;
|
||||||
|
};
|
||||||
evaluation?: string;
|
evaluation?: string;
|
||||||
isActive: boolean;
|
isActive: boolean;
|
||||||
key: string;
|
key: string;
|
||||||
name: string;
|
name: string;
|
||||||
settings?: {
|
|
||||||
thresholdMax?: number;
|
|
||||||
thresholdMin?: number;
|
|
||||||
};
|
|
||||||
value?: boolean;
|
value?: boolean;
|
||||||
}
|
}
|
||||||
|
@ -1,5 +1,3 @@
|
|||||||
import { PortfolioReportRule } from '@ghostfolio/common/interfaces';
|
|
||||||
|
|
||||||
export type XRayRulesSettings = {
|
export type XRayRulesSettings = {
|
||||||
AccountClusterRiskCurrentInvestment?: RuleSettings;
|
AccountClusterRiskCurrentInvestment?: RuleSettings;
|
||||||
AccountClusterRiskSingleAccount?: RuleSettings;
|
AccountClusterRiskSingleAccount?: RuleSettings;
|
||||||
@ -9,6 +7,8 @@ export type XRayRulesSettings = {
|
|||||||
FeeRatioInitialInvestment?: RuleSettings;
|
FeeRatioInitialInvestment?: RuleSettings;
|
||||||
};
|
};
|
||||||
|
|
||||||
interface RuleSettings extends Pick<PortfolioReportRule, 'settings'> {
|
interface RuleSettings {
|
||||||
isActive: boolean;
|
isActive: boolean;
|
||||||
|
thresholdMax?: number;
|
||||||
|
thresholdMin?: number;
|
||||||
}
|
}
|
||||||
|
@ -27,12 +27,13 @@ import {
|
|||||||
import {
|
import {
|
||||||
Chart,
|
Chart,
|
||||||
Filler,
|
Filler,
|
||||||
|
LinearScale,
|
||||||
LineController,
|
LineController,
|
||||||
LineElement,
|
LineElement,
|
||||||
LinearScale,
|
|
||||||
PointElement,
|
PointElement,
|
||||||
TimeScale,
|
TimeScale,
|
||||||
Tooltip
|
Tooltip,
|
||||||
|
TooltipPosition
|
||||||
} from 'chart.js';
|
} from 'chart.js';
|
||||||
import 'chartjs-adapter-date-fns';
|
import 'chartjs-adapter-date-fns';
|
||||||
import { NgxSkeletonLoaderModule } from 'ngx-skeleton-loader';
|
import { NgxSkeletonLoaderModule } from 'ngx-skeleton-loader';
|
||||||
@ -85,7 +86,7 @@ export class GfLineChartComponent
|
|||||||
Tooltip
|
Tooltip
|
||||||
);
|
);
|
||||||
|
|
||||||
Tooltip.positioners['top'] = (elements, position) =>
|
Tooltip.positioners['top'] = (_elements, position: TooltipPosition) =>
|
||||||
getTooltipPositionerMapTop(this.chart, position);
|
getTooltipPositionerMapTop(this.chart, position);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -87,11 +87,11 @@ export class GfTreemapChartComponent
|
|||||||
|
|
||||||
const { endDate, startDate } = getIntervalFromDateRange(this.dateRange);
|
const { endDate, startDate } = getIntervalFromDateRange(this.dateRange);
|
||||||
|
|
||||||
const data: ChartConfiguration['data'] = <any>{
|
const data: ChartConfiguration['data'] = {
|
||||||
datasets: [
|
datasets: [
|
||||||
{
|
{
|
||||||
backgroundColor(ctx) {
|
backgroundColor(ctx) {
|
||||||
const annualizedNetPerformancePercentWithCurrencyEffect =
|
let annualizedNetPerformancePercentWithCurrencyEffect =
|
||||||
getAnnualizedPerformancePercent({
|
getAnnualizedPerformancePercent({
|
||||||
daysInMarket: differenceInDays(
|
daysInMarket: differenceInDays(
|
||||||
endDate,
|
endDate,
|
||||||
@ -105,6 +105,12 @@ export class GfTreemapChartComponent
|
|||||||
)
|
)
|
||||||
}).toNumber();
|
}).toNumber();
|
||||||
|
|
||||||
|
// Round to 2 decimal places
|
||||||
|
annualizedNetPerformancePercentWithCurrencyEffect =
|
||||||
|
Math.round(
|
||||||
|
annualizedNetPerformancePercentWithCurrencyEffect * 100
|
||||||
|
) / 100;
|
||||||
|
|
||||||
if (
|
if (
|
||||||
annualizedNetPerformancePercentWithCurrencyEffect >
|
annualizedNetPerformancePercentWithCurrencyEffect >
|
||||||
0.03 * GfTreemapChartComponent.HEAT_MULTIPLIER
|
0.03 * GfTreemapChartComponent.HEAT_MULTIPLIER
|
||||||
@ -123,8 +129,11 @@ export class GfTreemapChartComponent
|
|||||||
} else if (annualizedNetPerformancePercentWithCurrencyEffect > 0) {
|
} else if (annualizedNetPerformancePercentWithCurrencyEffect > 0) {
|
||||||
return green[3];
|
return green[3];
|
||||||
} else if (
|
} else if (
|
||||||
annualizedNetPerformancePercentWithCurrencyEffect === 0
|
Math.abs(annualizedNetPerformancePercentWithCurrencyEffect) === 0
|
||||||
) {
|
) {
|
||||||
|
annualizedNetPerformancePercentWithCurrencyEffect = Math.abs(
|
||||||
|
annualizedNetPerformancePercentWithCurrencyEffect
|
||||||
|
);
|
||||||
return gray[3];
|
return gray[3];
|
||||||
} else if (
|
} else if (
|
||||||
annualizedNetPerformancePercentWithCurrencyEffect >
|
annualizedNetPerformancePercentWithCurrencyEffect >
|
||||||
@ -151,36 +160,35 @@ export class GfTreemapChartComponent
|
|||||||
align: 'left',
|
align: 'left',
|
||||||
color: ['white'],
|
color: ['white'],
|
||||||
display: true,
|
display: true,
|
||||||
font: [{ size: 14 }, { size: 11 }, { lineHeight: 2, size: 14 }],
|
font: [{ size: 16 }, { lineHeight: 1.5, size: 14 }],
|
||||||
formatter(ctx) {
|
formatter(ctx) {
|
||||||
const netPerformancePercentWithCurrencyEffect =
|
const netPerformancePercentWithCurrencyEffect =
|
||||||
ctx.raw._data.netPerformancePercentWithCurrencyEffect;
|
ctx.raw._data.netPerformancePercentWithCurrencyEffect;
|
||||||
|
|
||||||
return [
|
return [
|
||||||
ctx.raw._data.name,
|
|
||||||
ctx.raw._data.symbol,
|
ctx.raw._data.symbol,
|
||||||
`${netPerformancePercentWithCurrencyEffect > 0 ? '+' : ''}${(ctx.raw._data.netPerformancePercentWithCurrencyEffect * 100).toFixed(2)}%`
|
`${netPerformancePercentWithCurrencyEffect > 0 ? '+' : ''}${(ctx.raw._data.netPerformancePercentWithCurrencyEffect * 100).toFixed(2)}%`
|
||||||
];
|
];
|
||||||
},
|
},
|
||||||
|
hoverColor: 'white',
|
||||||
position: 'top'
|
position: 'top'
|
||||||
},
|
},
|
||||||
spacing: 1,
|
spacing: 1,
|
||||||
tree: this.holdings
|
tree: this.holdings
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
};
|
} as any;
|
||||||
|
|
||||||
if (this.chartCanvas) {
|
if (this.chartCanvas) {
|
||||||
if (this.chart) {
|
if (this.chart) {
|
||||||
this.chart.data = data;
|
this.chart.data = data;
|
||||||
this.chart.options.plugins.tooltip = <unknown>(
|
this.chart.options.plugins.tooltip =
|
||||||
this.getTooltipPluginConfiguration()
|
this.getTooltipPluginConfiguration() as unknown;
|
||||||
);
|
|
||||||
this.chart.update();
|
this.chart.update();
|
||||||
} else {
|
} else {
|
||||||
this.chart = new Chart(this.chartCanvas.nativeElement, {
|
this.chart = new Chart(this.chartCanvas.nativeElement, {
|
||||||
data,
|
data,
|
||||||
options: <unknown>{
|
options: {
|
||||||
animation: false,
|
animation: false,
|
||||||
onClick: (event, activeElements) => {
|
onClick: (event, activeElements) => {
|
||||||
try {
|
try {
|
||||||
@ -209,7 +217,7 @@ export class GfTreemapChartComponent
|
|||||||
plugins: {
|
plugins: {
|
||||||
tooltip: this.getTooltipPluginConfiguration()
|
tooltip: this.getTooltipPluginConfiguration()
|
||||||
}
|
}
|
||||||
},
|
} as unknown,
|
||||||
type: 'treemap'
|
type: 'treemap'
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
@ -231,7 +239,7 @@ export class GfTreemapChartComponent
|
|||||||
const symbol = context.raw._data.symbol;
|
const symbol = context.raw._data.symbol;
|
||||||
|
|
||||||
if (context.raw._data.valueInBaseCurrency !== null) {
|
if (context.raw._data.valueInBaseCurrency !== null) {
|
||||||
const value = <number>context.raw._data.valueInBaseCurrency;
|
const value = context.raw._data.valueInBaseCurrency as number;
|
||||||
|
|
||||||
return [
|
return [
|
||||||
`${name ?? symbol}`,
|
`${name ?? symbol}`,
|
||||||
@ -242,7 +250,7 @@ export class GfTreemapChartComponent
|
|||||||
];
|
];
|
||||||
} else {
|
} else {
|
||||||
const percentage =
|
const percentage =
|
||||||
<number>context.raw._data.allocationInPercentage * 100;
|
(context.raw._data.allocationInPercentage as number) * 100;
|
||||||
|
|
||||||
return [`${name ?? symbol}`, `${percentage.toFixed(2)}%`];
|
return [`${name ?? symbol}`, `${percentage.toFixed(2)}%`];
|
||||||
}
|
}
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "ghostfolio",
|
"name": "ghostfolio",
|
||||||
"version": "2.114.0",
|
"version": "2.115.0",
|
||||||
"homepage": "https://ghostfol.io",
|
"homepage": "https://ghostfol.io",
|
||||||
"license": "AGPL-3.0",
|
"license": "AGPL-3.0",
|
||||||
"repository": "https://github.com/ghostfolio/ghostfolio",
|
"repository": "https://github.com/ghostfolio/ghostfolio",
|
||||||
|
@ -5,23 +5,23 @@
|
|||||||
},
|
},
|
||||||
"activities": [
|
"activities": [
|
||||||
{
|
{
|
||||||
"fee": 0,
|
"fee": 1.3,
|
||||||
"quantity": 1,
|
"quantity": 1,
|
||||||
"type": "SELL",
|
"type": "SELL",
|
||||||
"unitPrice": 85.73,
|
"unitPrice": 85.73,
|
||||||
"currency": "CHF",
|
"currency": "CHF",
|
||||||
"dataSource": "YAHOO",
|
"dataSource": "YAHOO",
|
||||||
"date": "2022-04-07T22:00:00.000Z",
|
"date": "2022-04-08T00:00:00.000Z",
|
||||||
"symbol": "NOVN.SW"
|
"symbol": "NOVN.SW"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"fee": 0,
|
"fee": 2.95,
|
||||||
"quantity": 2,
|
"quantity": 2,
|
||||||
"type": "BUY",
|
"type": "BUY",
|
||||||
"unitPrice": 75.8,
|
"unitPrice": 75.8,
|
||||||
"currency": "CHF",
|
"currency": "CHF",
|
||||||
"dataSource": "YAHOO",
|
"dataSource": "YAHOO",
|
||||||
"date": "2022-03-06T23:00:00.000Z",
|
"date": "2022-03-07T00:00:00.000Z",
|
||||||
"symbol": "NOVN.SW"
|
"symbol": "NOVN.SW"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
@ -31,8 +31,8 @@
|
|||||||
"noImplicitThis": false,
|
"noImplicitThis": false,
|
||||||
"noImplicitOverride": false,
|
"noImplicitOverride": false,
|
||||||
"noPropertyAccessFromIndexSignature": false,
|
"noPropertyAccessFromIndexSignature": false,
|
||||||
"noUnusedLocals": false,
|
"noUnusedLocals": true,
|
||||||
"noUnusedParameters": false,
|
"noUnusedParameters": true,
|
||||||
"allowUnreachableCode": true
|
"allowUnreachableCode": true
|
||||||
},
|
},
|
||||||
"exclude": ["node_modules", "tmp"]
|
"exclude": ["node_modules", "tmp"]
|
||||||
|
Loading…
x
Reference in New Issue
Block a user