Merge branch 'main' of github.com:ghostfolio/ghostfolio
All checks were successful
Docker image CD / build_and_push (push) Successful in 22m17s
All checks were successful
Docker image CD / build_and_push (push) Successful in 22m17s
This commit is contained in:
commit
b8d356a949
@ -5,7 +5,7 @@ All notable changes to this project will be documented in this file.
|
||||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
||||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||
|
||||
## Unreleased
|
||||
## 2.162.1 - 2025-05-24
|
||||
|
||||
### Added
|
||||
|
||||
@ -14,6 +14,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||
|
||||
### Changed
|
||||
|
||||
- Increased the robustness of the search in the _Yahoo Finance_ service by catching schema validation errors
|
||||
- Improved the symbol lookup results by removing the currency from the name of cryptocurrencies (experimental)
|
||||
- Harmonized the data providers management style of the admin control panel
|
||||
- Extended the data providers management of the admin control panel by the asset profile count
|
||||
@ -33,6 +34,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||
- Improved the language localization for Portuguese (`pt`)
|
||||
- Upgraded `countup.js` from version `2.8.0` to `2.8.2`
|
||||
- Upgraded `nestjs` from version `10.4.15` to `11.0.12`
|
||||
- Upgraded `prisma` from version `6.7.0` to `6.8.2`
|
||||
- Upgraded `twitter-api-v2` from version `1.14.2` to `1.23.0`
|
||||
- Upgraded `yahoo-finance2` from version `2.11.3` to `3.3.3`
|
||||
|
||||
@ -40,6 +42,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||
|
||||
- Displayed the button to fetch the current market price only if the activity is not in a custom currency
|
||||
- Fixed an issue in the watchlist endpoint (`POST`) related to the `HasPermissionGuard`
|
||||
- Improved the text alignment of the allocations by ETF holding on the allocations page (experimental)
|
||||
|
||||
## 2.161.0 - 2025-05-06
|
||||
|
||||
|
@ -135,7 +135,10 @@ export class AdminService {
|
||||
}
|
||||
|
||||
public async get({ user }: { user: UserWithSettings }): Promise<AdminData> {
|
||||
const dataSources = await this.dataProviderService.getDataSources({ user });
|
||||
const dataSources = await this.dataProviderService.getDataSources({
|
||||
user,
|
||||
includeGhostfolio: true
|
||||
});
|
||||
|
||||
const [settings, transactionCount, userCount] = await Promise.all([
|
||||
this.propertyService.get(),
|
||||
|
@ -80,7 +80,7 @@ export class RedisCacheService {
|
||||
|
||||
public async isHealthy() {
|
||||
try {
|
||||
const isHealthy = await Promise.race([
|
||||
await Promise.race([
|
||||
this.getKeys(),
|
||||
new Promise((_, reject) =>
|
||||
setTimeout(
|
||||
@ -90,7 +90,7 @@ export class RedisCacheService {
|
||||
)
|
||||
]);
|
||||
|
||||
return isHealthy === 'PONG';
|
||||
return true;
|
||||
} catch (error) {
|
||||
return false;
|
||||
}
|
||||
|
@ -43,7 +43,16 @@ export class TransformDataSourceInRequestInterceptor<T>
|
||||
const dataSourceValue = request[type]?.dataSource;
|
||||
|
||||
if (dataSourceValue && !DataSource[dataSourceValue]) {
|
||||
request[type].dataSource = decodeDataSource(dataSourceValue);
|
||||
// In Express 5, request.query is read-only, so request[type].dataSource cannot be directly modified
|
||||
Object.defineProperty(request, type, {
|
||||
configurable: true,
|
||||
enumerable: true,
|
||||
value: {
|
||||
...request[type],
|
||||
dataSource: decodeDataSource(dataSourceValue)
|
||||
},
|
||||
writable: true
|
||||
});
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -163,8 +163,10 @@ export class DataProviderService {
|
||||
}
|
||||
|
||||
public async getDataSources({
|
||||
includeGhostfolio = false,
|
||||
user
|
||||
}: {
|
||||
includeGhostfolio?: boolean;
|
||||
user: UserWithSettings;
|
||||
}): Promise<DataSource[]> {
|
||||
let dataSourcesKey: 'DATA_SOURCES' | 'DATA_SOURCES_LEGACY' = 'DATA_SOURCES';
|
||||
@ -187,7 +189,7 @@ export class DataProviderService {
|
||||
PROPERTY_API_KEY_GHOSTFOLIO
|
||||
)) as string;
|
||||
|
||||
if (ghostfolioApiKey || hasRole(user, 'ADMIN')) {
|
||||
if (includeGhostfolio || ghostfolioApiKey) {
|
||||
dataSources.push('GHOSTFOLIO');
|
||||
}
|
||||
|
||||
|
@ -30,8 +30,11 @@ import {
|
||||
HistoricalDividendsResult,
|
||||
HistoricalHistoryResult
|
||||
} from 'yahoo-finance2/esm/src/modules/historical';
|
||||
import { Quote } from 'yahoo-finance2/esm/src/modules/quote';
|
||||
import { SearchQuoteNonYahoo } from 'yahoo-finance2/script/src/modules/search';
|
||||
import {
|
||||
Quote,
|
||||
QuoteResponseArray
|
||||
} from 'yahoo-finance2/esm/src/modules/quote';
|
||||
import { SearchQuoteNonYahoo } from 'yahoo-finance2/esm/src/modules/search';
|
||||
|
||||
@Injectable()
|
||||
export class YahooFinanceService implements DataProviderInterface {
|
||||
@ -281,11 +284,19 @@ export class YahooFinanceService implements DataProviderInterface {
|
||||
return true;
|
||||
});
|
||||
|
||||
const marketData = await this.yahooFinance.quote(
|
||||
quotes.map(({ symbol }) => {
|
||||
return symbol;
|
||||
})
|
||||
);
|
||||
let marketData: QuoteResponseArray = [];
|
||||
|
||||
try {
|
||||
marketData = await this.yahooFinance.quote(
|
||||
quotes.map(({ symbol }) => {
|
||||
return symbol;
|
||||
})
|
||||
);
|
||||
} catch (error) {
|
||||
if (error?.result?.length > 0) {
|
||||
marketData = error.result;
|
||||
}
|
||||
}
|
||||
|
||||
for (const marketDataItem of marketData) {
|
||||
const quote = quotes.find((currentQuote) => {
|
||||
|
@ -368,7 +368,7 @@
|
||||
<trans-unit id="8379314117913380516" datatype="html">
|
||||
<source>about</source>
|
||||
<target state="translated">sobre</target>
|
||||
<note priority="1" from="description">snake-case</note>
|
||||
<note priority="1" from="description">kebab-case</note>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">libs/common/src/lib/paths.ts</context>
|
||||
<context context-type="linenumber">37</context>
|
||||
@ -377,7 +377,7 @@
|
||||
<trans-unit id="6099902667884446960" datatype="html">
|
||||
<source>license</source>
|
||||
<target state="translated">llicències</target>
|
||||
<note priority="1" from="description">snake-case</note>
|
||||
<note priority="1" from="description">kebab-case</note>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">libs/common/src/lib/paths.ts</context>
|
||||
<context context-type="linenumber">43</context>
|
||||
@ -386,7 +386,7 @@
|
||||
<trans-unit id="6948811958230386934" datatype="html">
|
||||
<source>privacy-policy</source>
|
||||
<target state="translated">política de privacitat</target>
|
||||
<note priority="1" from="description">snake-case</note>
|
||||
<note priority="1" from="description">kebab-case</note>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">libs/common/src/lib/paths.ts</context>
|
||||
<context context-type="linenumber">48</context>
|
||||
@ -395,7 +395,7 @@
|
||||
<trans-unit id="4656883433287439415" datatype="html">
|
||||
<source>faq</source>
|
||||
<target state="translated">faq</target>
|
||||
<note priority="1" from="description">snake-case</note>
|
||||
<note priority="1" from="description">kebab-case</note>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">libs/common/src/lib/paths.ts</context>
|
||||
<context context-type="linenumber">39</context>
|
||||
@ -404,7 +404,7 @@
|
||||
<trans-unit id="6703761340382395781" datatype="html">
|
||||
<source>features</source>
|
||||
<target state="translated">característiques</target>
|
||||
<note priority="1" from="description">snake-case</note>
|
||||
<note priority="1" from="description">kebab-case</note>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">libs/common/src/lib/paths.ts</context>
|
||||
<context context-type="linenumber">40</context>
|
||||
@ -413,7 +413,7 @@
|
||||
<trans-unit id="8566970793924820888" datatype="html">
|
||||
<source>markets</source>
|
||||
<target state="translated">mercats</target>
|
||||
<note priority="1" from="description">snake-case</note>
|
||||
<note priority="1" from="description">kebab-case</note>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">libs/common/src/lib/paths.ts</context>
|
||||
<context context-type="linenumber">44</context>
|
||||
@ -422,7 +422,7 @@
|
||||
<trans-unit id="9167640275204796639" datatype="html">
|
||||
<source>pricing</source>
|
||||
<target state="translated">preu</target>
|
||||
<note priority="1" from="description">snake-case</note>
|
||||
<note priority="1" from="description">kebab-case</note>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">libs/common/src/lib/paths.ts</context>
|
||||
<context context-type="linenumber">47</context>
|
||||
@ -431,7 +431,7 @@
|
||||
<trans-unit id="5915338689523424386" datatype="html">
|
||||
<source>register</source>
|
||||
<target state="translated">registrar-se</target>
|
||||
<note priority="1" from="description">snake-case</note>
|
||||
<note priority="1" from="description">kebab-case</note>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">libs/common/src/lib/paths.ts</context>
|
||||
<context context-type="linenumber">49</context>
|
||||
@ -440,7 +440,7 @@
|
||||
<trans-unit id="4002166200801232073" datatype="html">
|
||||
<source>resources</source>
|
||||
<target state="translated">recursos</target>
|
||||
<note priority="1" from="description">snake-case</note>
|
||||
<note priority="1" from="description">kebab-case</note>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">libs/common/src/lib/paths.ts</context>
|
||||
<context context-type="linenumber">50</context>
|
||||
@ -3549,7 +3549,7 @@
|
||||
<trans-unit id="1677491810118195784" datatype="html">
|
||||
<source>self-hosting</source>
|
||||
<target state="translated">autoallotjament</target>
|
||||
<note priority="1" from="description">snake-case</note>
|
||||
<note priority="1" from="description">kebab-case</note>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">libs/common/src/lib/paths.ts</context>
|
||||
<context context-type="linenumber">51</context>
|
||||
@ -5114,7 +5114,7 @@
|
||||
<trans-unit id="5827613432388799534" datatype="html">
|
||||
<source>open-source-alternative-to</source>
|
||||
<target state="new">open-source-alternative-to</target>
|
||||
<note priority="1" from="description">snake-case</note>
|
||||
<note priority="1" from="description">kebab-case</note>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">libs/common/src/lib/paths.ts</context>
|
||||
<context context-type="linenumber">45</context>
|
||||
@ -6947,7 +6947,7 @@
|
||||
<trans-unit id="7491998780064454778" datatype="html">
|
||||
<source>guides</source>
|
||||
<target state="new">guides</target>
|
||||
<note priority="1" from="description">snake-case</note>
|
||||
<note priority="1" from="description">kebab-case</note>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">libs/common/src/lib/paths.ts</context>
|
||||
<context context-type="linenumber">42</context>
|
||||
@ -6956,7 +6956,7 @@
|
||||
<trans-unit id="6255655462254999912" datatype="html">
|
||||
<source>glossary</source>
|
||||
<target state="new">glossary</target>
|
||||
<note priority="1" from="description">snake-case</note>
|
||||
<note priority="1" from="description">kebab-case</note>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">libs/common/src/lib/paths.ts</context>
|
||||
<context context-type="linenumber">41</context>
|
||||
@ -7417,7 +7417,7 @@
|
||||
<trans-unit id="814674835685440667" datatype="html">
|
||||
<source>terms-of-service</source>
|
||||
<target state="new">terms-of-service</target>
|
||||
<note priority="1" from="description">snake-case</note>
|
||||
<note priority="1" from="description">kebab-case</note>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">libs/common/src/lib/paths.ts</context>
|
||||
<context context-type="linenumber">52</context>
|
||||
@ -7598,7 +7598,7 @@
|
||||
<trans-unit id="793097298820646129" datatype="html">
|
||||
<source>changelog</source>
|
||||
<target state="new">changelog</target>
|
||||
<note priority="1" from="description">snake-case</note>
|
||||
<note priority="1" from="description">kebab-case</note>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">libs/common/src/lib/paths.ts</context>
|
||||
<context context-type="linenumber">38</context>
|
||||
@ -7607,7 +7607,7 @@
|
||||
<trans-unit id="5929637553579019226" datatype="html">
|
||||
<source>oss-friends</source>
|
||||
<target state="new">oss-friends</target>
|
||||
<note priority="1" from="description">snake-case</note>
|
||||
<note priority="1" from="description">kebab-case</note>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">libs/common/src/lib/paths.ts</context>
|
||||
<context context-type="linenumber">46</context>
|
||||
|
@ -5172,7 +5172,7 @@
|
||||
<trans-unit id="4656883433287439415" datatype="html">
|
||||
<source>faq</source>
|
||||
<target state="translated">haeufig-gestellte-fragen</target>
|
||||
<note priority="1" from="description">snake-case</note>
|
||||
<note priority="1" from="description">kebab-case</note>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">libs/common/src/lib/paths.ts</context>
|
||||
<context context-type="linenumber">39</context>
|
||||
@ -5181,7 +5181,7 @@
|
||||
<trans-unit id="6703761340382395781" datatype="html">
|
||||
<source>features</source>
|
||||
<target state="translated">features</target>
|
||||
<note priority="1" from="description">snake-case</note>
|
||||
<note priority="1" from="description">kebab-case</note>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">libs/common/src/lib/paths.ts</context>
|
||||
<context context-type="linenumber">40</context>
|
||||
@ -5190,7 +5190,7 @@
|
||||
<trans-unit id="8379314117913380516" datatype="html">
|
||||
<source>about</source>
|
||||
<target state="translated">ueber-uns</target>
|
||||
<note priority="1" from="description">snake-case</note>
|
||||
<note priority="1" from="description">kebab-case</note>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">libs/common/src/lib/paths.ts</context>
|
||||
<context context-type="linenumber">37</context>
|
||||
@ -5199,7 +5199,7 @@
|
||||
<trans-unit id="6948811958230386934" datatype="html">
|
||||
<source>privacy-policy</source>
|
||||
<target state="translated">datenschutzbestimmungen</target>
|
||||
<note priority="1" from="description">snake-case</note>
|
||||
<note priority="1" from="description">kebab-case</note>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">libs/common/src/lib/paths.ts</context>
|
||||
<context context-type="linenumber">48</context>
|
||||
@ -5208,7 +5208,7 @@
|
||||
<trans-unit id="6099902667884446960" datatype="html">
|
||||
<source>license</source>
|
||||
<target state="translated">lizenz</target>
|
||||
<note priority="1" from="description">snake-case</note>
|
||||
<note priority="1" from="description">kebab-case</note>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">libs/common/src/lib/paths.ts</context>
|
||||
<context context-type="linenumber">43</context>
|
||||
@ -5217,7 +5217,7 @@
|
||||
<trans-unit id="8566970793924820888" datatype="html">
|
||||
<source>markets</source>
|
||||
<target state="translated">maerkte</target>
|
||||
<note priority="1" from="description">snake-case</note>
|
||||
<note priority="1" from="description">kebab-case</note>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">libs/common/src/lib/paths.ts</context>
|
||||
<context context-type="linenumber">44</context>
|
||||
@ -5226,7 +5226,7 @@
|
||||
<trans-unit id="9167640275204796639" datatype="html">
|
||||
<source>pricing</source>
|
||||
<target state="translated">preise</target>
|
||||
<note priority="1" from="description">snake-case</note>
|
||||
<note priority="1" from="description">kebab-case</note>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">libs/common/src/lib/paths.ts</context>
|
||||
<context context-type="linenumber">47</context>
|
||||
@ -5235,7 +5235,7 @@
|
||||
<trans-unit id="5915338689523424386" datatype="html">
|
||||
<source>register</source>
|
||||
<target state="translated">registrierung</target>
|
||||
<note priority="1" from="description">snake-case</note>
|
||||
<note priority="1" from="description">kebab-case</note>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">libs/common/src/lib/paths.ts</context>
|
||||
<context context-type="linenumber">49</context>
|
||||
@ -5244,7 +5244,7 @@
|
||||
<trans-unit id="4002166200801232073" datatype="html">
|
||||
<source>resources</source>
|
||||
<target state="translated">ressourcen</target>
|
||||
<note priority="1" from="description">snake-case</note>
|
||||
<note priority="1" from="description">kebab-case</note>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">libs/common/src/lib/paths.ts</context>
|
||||
<context context-type="linenumber">50</context>
|
||||
@ -5317,7 +5317,7 @@
|
||||
<trans-unit id="5827613432388799534" datatype="html">
|
||||
<source>open-source-alternative-to</source>
|
||||
<target state="translated">open-source-alternative-zu</target>
|
||||
<note priority="1" from="description">snake-case</note>
|
||||
<note priority="1" from="description">kebab-case</note>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">libs/common/src/lib/paths.ts</context>
|
||||
<context context-type="linenumber">45</context>
|
||||
@ -6094,7 +6094,7 @@
|
||||
<trans-unit id="1677491810118195784" datatype="html">
|
||||
<source>self-hosting</source>
|
||||
<target state="translated">self-hosting</target>
|
||||
<note priority="1" from="description">snake-case</note>
|
||||
<note priority="1" from="description">kebab-case</note>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">libs/common/src/lib/paths.ts</context>
|
||||
<context context-type="linenumber">51</context>
|
||||
@ -6971,7 +6971,7 @@
|
||||
<trans-unit id="7491998780064454778" datatype="html">
|
||||
<source>guides</source>
|
||||
<target state="translated">ratgeber</target>
|
||||
<note priority="1" from="description">snake-case</note>
|
||||
<note priority="1" from="description">kebab-case</note>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">libs/common/src/lib/paths.ts</context>
|
||||
<context context-type="linenumber">42</context>
|
||||
@ -6980,7 +6980,7 @@
|
||||
<trans-unit id="6255655462254999912" datatype="html">
|
||||
<source>glossary</source>
|
||||
<target state="translated">lexikon</target>
|
||||
<note priority="1" from="description">snake-case</note>
|
||||
<note priority="1" from="description">kebab-case</note>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">libs/common/src/lib/paths.ts</context>
|
||||
<context context-type="linenumber">41</context>
|
||||
@ -7441,7 +7441,7 @@
|
||||
<trans-unit id="814674835685440667" datatype="html">
|
||||
<source>terms-of-service</source>
|
||||
<target state="translated">allgemeine-geschaeftsbedingungen</target>
|
||||
<note priority="1" from="description">snake-case</note>
|
||||
<note priority="1" from="description">kebab-case</note>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">libs/common/src/lib/paths.ts</context>
|
||||
<context context-type="linenumber">52</context>
|
||||
@ -7598,7 +7598,7 @@
|
||||
<trans-unit id="793097298820646129" datatype="html">
|
||||
<source>changelog</source>
|
||||
<target state="new">changelog</target>
|
||||
<note priority="1" from="description">snake-case</note>
|
||||
<note priority="1" from="description">kebab-case</note>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">libs/common/src/lib/paths.ts</context>
|
||||
<context context-type="linenumber">38</context>
|
||||
@ -7607,7 +7607,7 @@
|
||||
<trans-unit id="5929637553579019226" datatype="html">
|
||||
<source>oss-friends</source>
|
||||
<target state="new">oss-friends</target>
|
||||
<note priority="1" from="description">snake-case</note>
|
||||
<note priority="1" from="description">kebab-case</note>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">libs/common/src/lib/paths.ts</context>
|
||||
<context context-type="linenumber">46</context>
|
||||
|
@ -5149,7 +5149,7 @@
|
||||
<trans-unit id="4656883433287439415" datatype="html">
|
||||
<source>faq</source>
|
||||
<target state="translated">preguntas-mas-frecuentes</target>
|
||||
<note priority="1" from="description">snake-case</note>
|
||||
<note priority="1" from="description">kebab-case</note>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">libs/common/src/lib/paths.ts</context>
|
||||
<context context-type="linenumber">39</context>
|
||||
@ -5158,7 +5158,7 @@
|
||||
<trans-unit id="6703761340382395781" datatype="html">
|
||||
<source>features</source>
|
||||
<target state="translated">funcionalidades</target>
|
||||
<note priority="1" from="description">snake-case</note>
|
||||
<note priority="1" from="description">kebab-case</note>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">libs/common/src/lib/paths.ts</context>
|
||||
<context context-type="linenumber">40</context>
|
||||
@ -5167,7 +5167,7 @@
|
||||
<trans-unit id="8379314117913380516" datatype="html">
|
||||
<source>about</source>
|
||||
<target state="translated">sobre</target>
|
||||
<note priority="1" from="description">snake-case</note>
|
||||
<note priority="1" from="description">kebab-case</note>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">libs/common/src/lib/paths.ts</context>
|
||||
<context context-type="linenumber">37</context>
|
||||
@ -5176,7 +5176,7 @@
|
||||
<trans-unit id="6948811958230386934" datatype="html">
|
||||
<source>privacy-policy</source>
|
||||
<target state="translated">politica-de-privacidad</target>
|
||||
<note priority="1" from="description">snake-case</note>
|
||||
<note priority="1" from="description">kebab-case</note>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">libs/common/src/lib/paths.ts</context>
|
||||
<context context-type="linenumber">48</context>
|
||||
@ -5185,7 +5185,7 @@
|
||||
<trans-unit id="6099902667884446960" datatype="html">
|
||||
<source>license</source>
|
||||
<target state="translated">licencia</target>
|
||||
<note priority="1" from="description">snake-case</note>
|
||||
<note priority="1" from="description">kebab-case</note>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">libs/common/src/lib/paths.ts</context>
|
||||
<context context-type="linenumber">43</context>
|
||||
@ -5194,7 +5194,7 @@
|
||||
<trans-unit id="8566970793924820888" datatype="html">
|
||||
<source>markets</source>
|
||||
<target state="translated">mercados</target>
|
||||
<note priority="1" from="description">snake-case</note>
|
||||
<note priority="1" from="description">kebab-case</note>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">libs/common/src/lib/paths.ts</context>
|
||||
<context context-type="linenumber">44</context>
|
||||
@ -5203,7 +5203,7 @@
|
||||
<trans-unit id="9167640275204796639" datatype="html">
|
||||
<source>pricing</source>
|
||||
<target state="translated">precios</target>
|
||||
<note priority="1" from="description">snake-case</note>
|
||||
<note priority="1" from="description">kebab-case</note>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">libs/common/src/lib/paths.ts</context>
|
||||
<context context-type="linenumber">47</context>
|
||||
@ -5212,7 +5212,7 @@
|
||||
<trans-unit id="5915338689523424386" datatype="html">
|
||||
<source>register</source>
|
||||
<target state="translated">registro</target>
|
||||
<note priority="1" from="description">snake-case</note>
|
||||
<note priority="1" from="description">kebab-case</note>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">libs/common/src/lib/paths.ts</context>
|
||||
<context context-type="linenumber">49</context>
|
||||
@ -5221,7 +5221,7 @@
|
||||
<trans-unit id="4002166200801232073" datatype="html">
|
||||
<source>resources</source>
|
||||
<target state="translated">recursos</target>
|
||||
<note priority="1" from="description">snake-case</note>
|
||||
<note priority="1" from="description">kebab-case</note>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">libs/common/src/lib/paths.ts</context>
|
||||
<context context-type="linenumber">50</context>
|
||||
@ -5294,7 +5294,7 @@
|
||||
<trans-unit id="5827613432388799534" datatype="html">
|
||||
<source>open-source-alternative-to</source>
|
||||
<target state="translated">alternativa-de-software-libre-a</target>
|
||||
<note priority="1" from="description">snake-case</note>
|
||||
<note priority="1" from="description">kebab-case</note>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">libs/common/src/lib/paths.ts</context>
|
||||
<context context-type="linenumber">45</context>
|
||||
@ -6071,7 +6071,7 @@
|
||||
<trans-unit id="1677491810118195784" datatype="html">
|
||||
<source>self-hosting</source>
|
||||
<target state="translated">auto alojado</target>
|
||||
<note priority="1" from="description">snake-case</note>
|
||||
<note priority="1" from="description">kebab-case</note>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">libs/common/src/lib/paths.ts</context>
|
||||
<context context-type="linenumber">51</context>
|
||||
@ -6948,7 +6948,7 @@
|
||||
<trans-unit id="7491998780064454778" datatype="html">
|
||||
<source>guides</source>
|
||||
<target state="new">guides</target>
|
||||
<note priority="1" from="description">snake-case</note>
|
||||
<note priority="1" from="description">kebab-case</note>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">libs/common/src/lib/paths.ts</context>
|
||||
<context context-type="linenumber">42</context>
|
||||
@ -6957,7 +6957,7 @@
|
||||
<trans-unit id="6255655462254999912" datatype="html">
|
||||
<source>glossary</source>
|
||||
<target state="new">glossary</target>
|
||||
<note priority="1" from="description">snake-case</note>
|
||||
<note priority="1" from="description">kebab-case</note>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">libs/common/src/lib/paths.ts</context>
|
||||
<context context-type="linenumber">41</context>
|
||||
@ -7418,7 +7418,7 @@
|
||||
<trans-unit id="814674835685440667" datatype="html">
|
||||
<source>terms-of-service</source>
|
||||
<target state="new">terms-of-service</target>
|
||||
<note priority="1" from="description">snake-case</note>
|
||||
<note priority="1" from="description">kebab-case</note>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">libs/common/src/lib/paths.ts</context>
|
||||
<context context-type="linenumber">52</context>
|
||||
@ -7599,7 +7599,7 @@
|
||||
<trans-unit id="793097298820646129" datatype="html">
|
||||
<source>changelog</source>
|
||||
<target state="new">changelog</target>
|
||||
<note priority="1" from="description">snake-case</note>
|
||||
<note priority="1" from="description">kebab-case</note>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">libs/common/src/lib/paths.ts</context>
|
||||
<context context-type="linenumber">38</context>
|
||||
@ -7608,7 +7608,7 @@
|
||||
<trans-unit id="5929637553579019226" datatype="html">
|
||||
<source>oss-friends</source>
|
||||
<target state="new">oss-friends</target>
|
||||
<note priority="1" from="description">snake-case</note>
|
||||
<note priority="1" from="description">kebab-case</note>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">libs/common/src/lib/paths.ts</context>
|
||||
<context context-type="linenumber">46</context>
|
||||
|
@ -5148,7 +5148,7 @@
|
||||
<trans-unit id="4656883433287439415" datatype="html">
|
||||
<source>faq</source>
|
||||
<target state="translated">foire-aux-questions</target>
|
||||
<note priority="1" from="description">snake-case</note>
|
||||
<note priority="1" from="description">kebab-case</note>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">libs/common/src/lib/paths.ts</context>
|
||||
<context context-type="linenumber">39</context>
|
||||
@ -5157,7 +5157,7 @@
|
||||
<trans-unit id="6703761340382395781" datatype="html">
|
||||
<source>features</source>
|
||||
<target state="translated">fonctionnalites</target>
|
||||
<note priority="1" from="description">snake-case</note>
|
||||
<note priority="1" from="description">kebab-case</note>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">libs/common/src/lib/paths.ts</context>
|
||||
<context context-type="linenumber">40</context>
|
||||
@ -5166,7 +5166,7 @@
|
||||
<trans-unit id="8379314117913380516" datatype="html">
|
||||
<source>about</source>
|
||||
<target state="translated">a-propos</target>
|
||||
<note priority="1" from="description">snake-case</note>
|
||||
<note priority="1" from="description">kebab-case</note>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">libs/common/src/lib/paths.ts</context>
|
||||
<context context-type="linenumber">37</context>
|
||||
@ -5175,7 +5175,7 @@
|
||||
<trans-unit id="6948811958230386934" datatype="html">
|
||||
<source>privacy-policy</source>
|
||||
<target state="translated">politique-de-confidentialite</target>
|
||||
<note priority="1" from="description">snake-case</note>
|
||||
<note priority="1" from="description">kebab-case</note>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">libs/common/src/lib/paths.ts</context>
|
||||
<context context-type="linenumber">48</context>
|
||||
@ -5184,7 +5184,7 @@
|
||||
<trans-unit id="6099902667884446960" datatype="html">
|
||||
<source>license</source>
|
||||
<target state="translated">licence</target>
|
||||
<note priority="1" from="description">snake-case</note>
|
||||
<note priority="1" from="description">kebab-case</note>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">libs/common/src/lib/paths.ts</context>
|
||||
<context context-type="linenumber">43</context>
|
||||
@ -5193,7 +5193,7 @@
|
||||
<trans-unit id="8566970793924820888" datatype="html">
|
||||
<source>markets</source>
|
||||
<target state="translated">marches</target>
|
||||
<note priority="1" from="description">snake-case</note>
|
||||
<note priority="1" from="description">kebab-case</note>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">libs/common/src/lib/paths.ts</context>
|
||||
<context context-type="linenumber">44</context>
|
||||
@ -5202,7 +5202,7 @@
|
||||
<trans-unit id="9167640275204796639" datatype="html">
|
||||
<source>pricing</source>
|
||||
<target state="translated">prix</target>
|
||||
<note priority="1" from="description">snake-case</note>
|
||||
<note priority="1" from="description">kebab-case</note>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">libs/common/src/lib/paths.ts</context>
|
||||
<context context-type="linenumber">47</context>
|
||||
@ -5211,7 +5211,7 @@
|
||||
<trans-unit id="5915338689523424386" datatype="html">
|
||||
<source>register</source>
|
||||
<target state="translated">enregistrement</target>
|
||||
<note priority="1" from="description">snake-case</note>
|
||||
<note priority="1" from="description">kebab-case</note>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">libs/common/src/lib/paths.ts</context>
|
||||
<context context-type="linenumber">49</context>
|
||||
@ -5220,7 +5220,7 @@
|
||||
<trans-unit id="4002166200801232073" datatype="html">
|
||||
<source>resources</source>
|
||||
<target state="translated">ressources</target>
|
||||
<note priority="1" from="description">snake-case</note>
|
||||
<note priority="1" from="description">kebab-case</note>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">libs/common/src/lib/paths.ts</context>
|
||||
<context context-type="linenumber">50</context>
|
||||
@ -5293,7 +5293,7 @@
|
||||
<trans-unit id="5827613432388799534" datatype="html">
|
||||
<source>open-source-alternative-to</source>
|
||||
<target state="translated">alternative-open-source-a</target>
|
||||
<note priority="1" from="description">snake-case</note>
|
||||
<note priority="1" from="description">kebab-case</note>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">libs/common/src/lib/paths.ts</context>
|
||||
<context context-type="linenumber">45</context>
|
||||
@ -6070,7 +6070,7 @@
|
||||
<trans-unit id="1677491810118195784" datatype="html">
|
||||
<source>self-hosting</source>
|
||||
<target state="translated">self-hosting</target>
|
||||
<note priority="1" from="description">snake-case</note>
|
||||
<note priority="1" from="description">kebab-case</note>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">libs/common/src/lib/paths.ts</context>
|
||||
<context context-type="linenumber">51</context>
|
||||
@ -6947,7 +6947,7 @@
|
||||
<trans-unit id="7491998780064454778" datatype="html">
|
||||
<source>guides</source>
|
||||
<target state="translated">guides</target>
|
||||
<note priority="1" from="description">snake-case</note>
|
||||
<note priority="1" from="description">kebab-case</note>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">libs/common/src/lib/paths.ts</context>
|
||||
<context context-type="linenumber">42</context>
|
||||
@ -6956,7 +6956,7 @@
|
||||
<trans-unit id="6255655462254999912" datatype="html">
|
||||
<source>glossary</source>
|
||||
<target state="translated">glossaire</target>
|
||||
<note priority="1" from="description">snake-case</note>
|
||||
<note priority="1" from="description">kebab-case</note>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">libs/common/src/lib/paths.ts</context>
|
||||
<context context-type="linenumber">41</context>
|
||||
@ -7417,7 +7417,7 @@
|
||||
<trans-unit id="814674835685440667" datatype="html">
|
||||
<source>terms-of-service</source>
|
||||
<target state="translated">conditions-d-utilisation</target>
|
||||
<note priority="1" from="description">snake-case</note>
|
||||
<note priority="1" from="description">kebab-case</note>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">libs/common/src/lib/paths.ts</context>
|
||||
<context context-type="linenumber">52</context>
|
||||
@ -7598,7 +7598,7 @@
|
||||
<trans-unit id="793097298820646129" datatype="html">
|
||||
<source>changelog</source>
|
||||
<target state="new">changelog</target>
|
||||
<note priority="1" from="description">snake-case</note>
|
||||
<note priority="1" from="description">kebab-case</note>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">libs/common/src/lib/paths.ts</context>
|
||||
<context context-type="linenumber">38</context>
|
||||
@ -7607,7 +7607,7 @@
|
||||
<trans-unit id="5929637553579019226" datatype="html">
|
||||
<source>oss-friends</source>
|
||||
<target state="new">oss-friends</target>
|
||||
<note priority="1" from="description">snake-case</note>
|
||||
<note priority="1" from="description">kebab-case</note>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">libs/common/src/lib/paths.ts</context>
|
||||
<context context-type="linenumber">46</context>
|
||||
|
@ -5149,7 +5149,7 @@
|
||||
<trans-unit id="4656883433287439415" datatype="html">
|
||||
<source>faq</source>
|
||||
<target state="translated">domande-piu-frequenti</target>
|
||||
<note priority="1" from="description">snake-case</note>
|
||||
<note priority="1" from="description">kebab-case</note>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">libs/common/src/lib/paths.ts</context>
|
||||
<context context-type="linenumber">39</context>
|
||||
@ -5158,7 +5158,7 @@
|
||||
<trans-unit id="6703761340382395781" datatype="html">
|
||||
<source>features</source>
|
||||
<target state="translated">funzionalita</target>
|
||||
<note priority="1" from="description">snake-case</note>
|
||||
<note priority="1" from="description">kebab-case</note>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">libs/common/src/lib/paths.ts</context>
|
||||
<context context-type="linenumber">40</context>
|
||||
@ -5167,7 +5167,7 @@
|
||||
<trans-unit id="8379314117913380516" datatype="html">
|
||||
<source>about</source>
|
||||
<target state="translated">informazioni-su</target>
|
||||
<note priority="1" from="description">snake-case</note>
|
||||
<note priority="1" from="description">kebab-case</note>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">libs/common/src/lib/paths.ts</context>
|
||||
<context context-type="linenumber">37</context>
|
||||
@ -5176,7 +5176,7 @@
|
||||
<trans-unit id="6948811958230386934" datatype="html">
|
||||
<source>privacy-policy</source>
|
||||
<target state="translated">informativa-sulla-privacy</target>
|
||||
<note priority="1" from="description">snake-case</note>
|
||||
<note priority="1" from="description">kebab-case</note>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">libs/common/src/lib/paths.ts</context>
|
||||
<context context-type="linenumber">48</context>
|
||||
@ -5185,7 +5185,7 @@
|
||||
<trans-unit id="6099902667884446960" datatype="html">
|
||||
<source>license</source>
|
||||
<target state="translated">licenza</target>
|
||||
<note priority="1" from="description">snake-case</note>
|
||||
<note priority="1" from="description">kebab-case</note>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">libs/common/src/lib/paths.ts</context>
|
||||
<context context-type="linenumber">43</context>
|
||||
@ -5194,7 +5194,7 @@
|
||||
<trans-unit id="8566970793924820888" datatype="html">
|
||||
<source>markets</source>
|
||||
<target state="translated">mercati</target>
|
||||
<note priority="1" from="description">snake-case</note>
|
||||
<note priority="1" from="description">kebab-case</note>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">libs/common/src/lib/paths.ts</context>
|
||||
<context context-type="linenumber">44</context>
|
||||
@ -5203,7 +5203,7 @@
|
||||
<trans-unit id="9167640275204796639" datatype="html">
|
||||
<source>pricing</source>
|
||||
<target state="translated">prezzi</target>
|
||||
<note priority="1" from="description">snake-case</note>
|
||||
<note priority="1" from="description">kebab-case</note>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">libs/common/src/lib/paths.ts</context>
|
||||
<context context-type="linenumber">47</context>
|
||||
@ -5212,7 +5212,7 @@
|
||||
<trans-unit id="5915338689523424386" datatype="html">
|
||||
<source>register</source>
|
||||
<target state="translated">iscrizione</target>
|
||||
<note priority="1" from="description">snake-case</note>
|
||||
<note priority="1" from="description">kebab-case</note>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">libs/common/src/lib/paths.ts</context>
|
||||
<context context-type="linenumber">49</context>
|
||||
@ -5221,7 +5221,7 @@
|
||||
<trans-unit id="4002166200801232073" datatype="html">
|
||||
<source>resources</source>
|
||||
<target state="translated">risorse</target>
|
||||
<note priority="1" from="description">snake-case</note>
|
||||
<note priority="1" from="description">kebab-case</note>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">libs/common/src/lib/paths.ts</context>
|
||||
<context context-type="linenumber">50</context>
|
||||
@ -5294,7 +5294,7 @@
|
||||
<trans-unit id="5827613432388799534" datatype="html">
|
||||
<source>open-source-alternative-to</source>
|
||||
<target state="translated">alternativa-open-source-a</target>
|
||||
<note priority="1" from="description">snake-case</note>
|
||||
<note priority="1" from="description">kebab-case</note>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">libs/common/src/lib/paths.ts</context>
|
||||
<context context-type="linenumber">45</context>
|
||||
@ -6071,7 +6071,7 @@
|
||||
<trans-unit id="1677491810118195784" datatype="html">
|
||||
<source>self-hosting</source>
|
||||
<target state="translated">self-hosting</target>
|
||||
<note priority="1" from="description">snake-case</note>
|
||||
<note priority="1" from="description">kebab-case</note>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">libs/common/src/lib/paths.ts</context>
|
||||
<context context-type="linenumber">51</context>
|
||||
@ -6948,7 +6948,7 @@
|
||||
<trans-unit id="7491998780064454778" datatype="html">
|
||||
<source>guides</source>
|
||||
<target state="translated">guide</target>
|
||||
<note priority="1" from="description">snake-case</note>
|
||||
<note priority="1" from="description">kebab-case</note>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">libs/common/src/lib/paths.ts</context>
|
||||
<context context-type="linenumber">42</context>
|
||||
@ -6957,7 +6957,7 @@
|
||||
<trans-unit id="6255655462254999912" datatype="html">
|
||||
<source>glossary</source>
|
||||
<target state="translated">glossario</target>
|
||||
<note priority="1" from="description">snake-case</note>
|
||||
<note priority="1" from="description">kebab-case</note>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">libs/common/src/lib/paths.ts</context>
|
||||
<context context-type="linenumber">41</context>
|
||||
@ -7418,7 +7418,7 @@
|
||||
<trans-unit id="814674835685440667" datatype="html">
|
||||
<source>terms-of-service</source>
|
||||
<target state="translated">termini-e-condizioni</target>
|
||||
<note priority="1" from="description">snake-case</note>
|
||||
<note priority="1" from="description">kebab-case</note>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">libs/common/src/lib/paths.ts</context>
|
||||
<context context-type="linenumber">52</context>
|
||||
@ -7599,7 +7599,7 @@
|
||||
<trans-unit id="793097298820646129" datatype="html">
|
||||
<source>changelog</source>
|
||||
<target state="new">changelog</target>
|
||||
<note priority="1" from="description">snake-case</note>
|
||||
<note priority="1" from="description">kebab-case</note>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">libs/common/src/lib/paths.ts</context>
|
||||
<context context-type="linenumber">38</context>
|
||||
@ -7608,7 +7608,7 @@
|
||||
<trans-unit id="5929637553579019226" datatype="html">
|
||||
<source>oss-friends</source>
|
||||
<target state="new">oss-friends</target>
|
||||
<note priority="1" from="description">snake-case</note>
|
||||
<note priority="1" from="description">kebab-case</note>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">libs/common/src/lib/paths.ts</context>
|
||||
<context context-type="linenumber">46</context>
|
||||
|
@ -5148,7 +5148,7 @@
|
||||
<trans-unit id="4656883433287439415" datatype="html">
|
||||
<source>faq</source>
|
||||
<target state="translated">veelgestelde-vragen</target>
|
||||
<note priority="1" from="description">snake-case</note>
|
||||
<note priority="1" from="description">kebab-case</note>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">libs/common/src/lib/paths.ts</context>
|
||||
<context context-type="linenumber">39</context>
|
||||
@ -5157,7 +5157,7 @@
|
||||
<trans-unit id="6703761340382395781" datatype="html">
|
||||
<source>features</source>
|
||||
<target state="translated">functionaliteiten</target>
|
||||
<note priority="1" from="description">snake-case</note>
|
||||
<note priority="1" from="description">kebab-case</note>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">libs/common/src/lib/paths.ts</context>
|
||||
<context context-type="linenumber">40</context>
|
||||
@ -5166,7 +5166,7 @@
|
||||
<trans-unit id="8379314117913380516" datatype="html">
|
||||
<source>about</source>
|
||||
<target state="translated">over</target>
|
||||
<note priority="1" from="description">snake-case</note>
|
||||
<note priority="1" from="description">kebab-case</note>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">libs/common/src/lib/paths.ts</context>
|
||||
<context context-type="linenumber">37</context>
|
||||
@ -5175,7 +5175,7 @@
|
||||
<trans-unit id="6948811958230386934" datatype="html">
|
||||
<source>privacy-policy</source>
|
||||
<target state="translated">privacybeleid</target>
|
||||
<note priority="1" from="description">snake-case</note>
|
||||
<note priority="1" from="description">kebab-case</note>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">libs/common/src/lib/paths.ts</context>
|
||||
<context context-type="linenumber">48</context>
|
||||
@ -5184,7 +5184,7 @@
|
||||
<trans-unit id="6099902667884446960" datatype="html">
|
||||
<source>license</source>
|
||||
<target state="translated">licentie</target>
|
||||
<note priority="1" from="description">snake-case</note>
|
||||
<note priority="1" from="description">kebab-case</note>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">libs/common/src/lib/paths.ts</context>
|
||||
<context context-type="linenumber">43</context>
|
||||
@ -5193,7 +5193,7 @@
|
||||
<trans-unit id="8566970793924820888" datatype="html">
|
||||
<source>markets</source>
|
||||
<target state="translated">markten</target>
|
||||
<note priority="1" from="description">snake-case</note>
|
||||
<note priority="1" from="description">kebab-case</note>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">libs/common/src/lib/paths.ts</context>
|
||||
<context context-type="linenumber">44</context>
|
||||
@ -5202,7 +5202,7 @@
|
||||
<trans-unit id="9167640275204796639" datatype="html">
|
||||
<source>pricing</source>
|
||||
<target state="translated">prijzen</target>
|
||||
<note priority="1" from="description">snake-case</note>
|
||||
<note priority="1" from="description">kebab-case</note>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">libs/common/src/lib/paths.ts</context>
|
||||
<context context-type="linenumber">47</context>
|
||||
@ -5211,7 +5211,7 @@
|
||||
<trans-unit id="5915338689523424386" datatype="html">
|
||||
<source>register</source>
|
||||
<target state="translated">registratie</target>
|
||||
<note priority="1" from="description">snake-case</note>
|
||||
<note priority="1" from="description">kebab-case</note>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">libs/common/src/lib/paths.ts</context>
|
||||
<context context-type="linenumber">49</context>
|
||||
@ -5220,7 +5220,7 @@
|
||||
<trans-unit id="4002166200801232073" datatype="html">
|
||||
<source>resources</source>
|
||||
<target state="translated">bronnen</target>
|
||||
<note priority="1" from="description">snake-case</note>
|
||||
<note priority="1" from="description">kebab-case</note>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">libs/common/src/lib/paths.ts</context>
|
||||
<context context-type="linenumber">50</context>
|
||||
@ -5293,7 +5293,7 @@
|
||||
<trans-unit id="5827613432388799534" datatype="html">
|
||||
<source>open-source-alternative-to</source>
|
||||
<target state="translated">open-source-alternatief-voor</target>
|
||||
<note priority="1" from="description">snake-case</note>
|
||||
<note priority="1" from="description">kebab-case</note>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">libs/common/src/lib/paths.ts</context>
|
||||
<context context-type="linenumber">45</context>
|
||||
@ -6070,7 +6070,7 @@
|
||||
<trans-unit id="1677491810118195784" datatype="html">
|
||||
<source>self-hosting</source>
|
||||
<target state="translated">zelf hosten</target>
|
||||
<note priority="1" from="description">snake-case</note>
|
||||
<note priority="1" from="description">kebab-case</note>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">libs/common/src/lib/paths.ts</context>
|
||||
<context context-type="linenumber">51</context>
|
||||
@ -6947,7 +6947,7 @@
|
||||
<trans-unit id="7491998780064454778" datatype="html">
|
||||
<source>guides</source>
|
||||
<target state="translated">gidsen</target>
|
||||
<note priority="1" from="description">snake-case</note>
|
||||
<note priority="1" from="description">kebab-case</note>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">libs/common/src/lib/paths.ts</context>
|
||||
<context context-type="linenumber">42</context>
|
||||
@ -6956,7 +6956,7 @@
|
||||
<trans-unit id="6255655462254999912" datatype="html">
|
||||
<source>glossary</source>
|
||||
<target state="translated">woordenlijst</target>
|
||||
<note priority="1" from="description">snake-case</note>
|
||||
<note priority="1" from="description">kebab-case</note>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">libs/common/src/lib/paths.ts</context>
|
||||
<context context-type="linenumber">41</context>
|
||||
@ -7417,7 +7417,7 @@
|
||||
<trans-unit id="814674835685440667" datatype="html">
|
||||
<source>terms-of-service</source>
|
||||
<target state="translated">servicevoorwaarden</target>
|
||||
<note priority="1" from="description">snake-case</note>
|
||||
<note priority="1" from="description">kebab-case</note>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">libs/common/src/lib/paths.ts</context>
|
||||
<context context-type="linenumber">52</context>
|
||||
@ -7598,7 +7598,7 @@
|
||||
<trans-unit id="793097298820646129" datatype="html">
|
||||
<source>changelog</source>
|
||||
<target state="new">changelog</target>
|
||||
<note priority="1" from="description">snake-case</note>
|
||||
<note priority="1" from="description">kebab-case</note>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">libs/common/src/lib/paths.ts</context>
|
||||
<context context-type="linenumber">38</context>
|
||||
@ -7607,7 +7607,7 @@
|
||||
<trans-unit id="5929637553579019226" datatype="html">
|
||||
<source>oss-friends</source>
|
||||
<target state="new">oss-friends</target>
|
||||
<note priority="1" from="description">snake-case</note>
|
||||
<note priority="1" from="description">kebab-case</note>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">libs/common/src/lib/paths.ts</context>
|
||||
<context context-type="linenumber">46</context>
|
||||
|
@ -4,7 +4,7 @@
|
||||
<trans-unit id="8379314117913380516" datatype="html">
|
||||
<source>about</source>
|
||||
<target state="translated">o-ghostfolio</target>
|
||||
<note priority="1" from="description">snake-case</note>
|
||||
<note priority="1" from="description">kebab-case</note>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">libs/common/src/lib/paths.ts</context>
|
||||
<context context-type="linenumber">37</context>
|
||||
@ -13,7 +13,7 @@
|
||||
<trans-unit id="4656883433287439415" datatype="html">
|
||||
<source>faq</source>
|
||||
<target state="translated">faq</target>
|
||||
<note priority="1" from="description">snake-case</note>
|
||||
<note priority="1" from="description">kebab-case</note>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">libs/common/src/lib/paths.ts</context>
|
||||
<context context-type="linenumber">39</context>
|
||||
@ -22,7 +22,7 @@
|
||||
<trans-unit id="6703761340382395781" datatype="html">
|
||||
<source>features</source>
|
||||
<target state="translated">funkcje</target>
|
||||
<note priority="1" from="description">snake-case</note>
|
||||
<note priority="1" from="description">kebab-case</note>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">libs/common/src/lib/paths.ts</context>
|
||||
<context context-type="linenumber">40</context>
|
||||
@ -31,7 +31,7 @@
|
||||
<trans-unit id="6099902667884446960" datatype="html">
|
||||
<source>license</source>
|
||||
<target state="translated">licencja</target>
|
||||
<note priority="1" from="description">snake-case</note>
|
||||
<note priority="1" from="description">kebab-case</note>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">libs/common/src/lib/paths.ts</context>
|
||||
<context context-type="linenumber">43</context>
|
||||
@ -40,7 +40,7 @@
|
||||
<trans-unit id="8566970793924820888" datatype="html">
|
||||
<source>markets</source>
|
||||
<target state="translated">rynki</target>
|
||||
<note priority="1" from="description">snake-case</note>
|
||||
<note priority="1" from="description">kebab-case</note>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">libs/common/src/lib/paths.ts</context>
|
||||
<context context-type="linenumber">44</context>
|
||||
@ -49,7 +49,7 @@
|
||||
<trans-unit id="9167640275204796639" datatype="html">
|
||||
<source>pricing</source>
|
||||
<target state="translated">cennik</target>
|
||||
<note priority="1" from="description">snake-case</note>
|
||||
<note priority="1" from="description">kebab-case</note>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">libs/common/src/lib/paths.ts</context>
|
||||
<context context-type="linenumber">47</context>
|
||||
@ -58,7 +58,7 @@
|
||||
<trans-unit id="6948811958230386934" datatype="html">
|
||||
<source>privacy-policy</source>
|
||||
<target state="translated">polityka-prywatnosci</target>
|
||||
<note priority="1" from="description">snake-case</note>
|
||||
<note priority="1" from="description">kebab-case</note>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">libs/common/src/lib/paths.ts</context>
|
||||
<context context-type="linenumber">48</context>
|
||||
@ -67,7 +67,7 @@
|
||||
<trans-unit id="5915338689523424386" datatype="html">
|
||||
<source>register</source>
|
||||
<target state="translated">zarejestruj</target>
|
||||
<note priority="1" from="description">snake-case</note>
|
||||
<note priority="1" from="description">kebab-case</note>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">libs/common/src/lib/paths.ts</context>
|
||||
<context context-type="linenumber">49</context>
|
||||
@ -76,7 +76,7 @@
|
||||
<trans-unit id="4002166200801232073" datatype="html">
|
||||
<source>resources</source>
|
||||
<target state="translated">zasoby</target>
|
||||
<note priority="1" from="description">snake-case</note>
|
||||
<note priority="1" from="description">kebab-case</note>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">libs/common/src/lib/paths.ts</context>
|
||||
<context context-type="linenumber">50</context>
|
||||
@ -4681,7 +4681,7 @@
|
||||
<trans-unit id="5827613432388799534" datatype="html">
|
||||
<source>open-source-alternative-to</source>
|
||||
<target state="translated">alternatywa-open-source-dla</target>
|
||||
<note priority="1" from="description">snake-case</note>
|
||||
<note priority="1" from="description">kebab-case</note>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">libs/common/src/lib/paths.ts</context>
|
||||
<context context-type="linenumber">45</context>
|
||||
@ -6070,7 +6070,7 @@
|
||||
<trans-unit id="1677491810118195784" datatype="html">
|
||||
<source>self-hosting</source>
|
||||
<target state="translated">wlasny-hosting</target>
|
||||
<note priority="1" from="description">snake-case</note>
|
||||
<note priority="1" from="description">kebab-case</note>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">libs/common/src/lib/paths.ts</context>
|
||||
<context context-type="linenumber">51</context>
|
||||
@ -6947,7 +6947,7 @@
|
||||
<trans-unit id="7491998780064454778" datatype="html">
|
||||
<source>guides</source>
|
||||
<target state="translated">poradniki</target>
|
||||
<note priority="1" from="description">snake-case</note>
|
||||
<note priority="1" from="description">kebab-case</note>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">libs/common/src/lib/paths.ts</context>
|
||||
<context context-type="linenumber">42</context>
|
||||
@ -6956,7 +6956,7 @@
|
||||
<trans-unit id="6255655462254999912" datatype="html">
|
||||
<source>glossary</source>
|
||||
<target state="translated">slowniczek</target>
|
||||
<note priority="1" from="description">snake-case</note>
|
||||
<note priority="1" from="description">kebab-case</note>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">libs/common/src/lib/paths.ts</context>
|
||||
<context context-type="linenumber">41</context>
|
||||
@ -7417,7 +7417,7 @@
|
||||
<trans-unit id="814674835685440667" datatype="html">
|
||||
<source>terms-of-service</source>
|
||||
<target state="translated">warunki-świadczenia-usług</target>
|
||||
<note priority="1" from="description">snake-case</note>
|
||||
<note priority="1" from="description">kebab-case</note>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">libs/common/src/lib/paths.ts</context>
|
||||
<context context-type="linenumber">52</context>
|
||||
@ -7598,7 +7598,7 @@
|
||||
<trans-unit id="793097298820646129" datatype="html">
|
||||
<source>changelog</source>
|
||||
<target state="new">changelog</target>
|
||||
<note priority="1" from="description">snake-case</note>
|
||||
<note priority="1" from="description">kebab-case</note>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">libs/common/src/lib/paths.ts</context>
|
||||
<context context-type="linenumber">38</context>
|
||||
@ -7607,7 +7607,7 @@
|
||||
<trans-unit id="5929637553579019226" datatype="html">
|
||||
<source>oss-friends</source>
|
||||
<target state="new">oss-friends</target>
|
||||
<note priority="1" from="description">snake-case</note>
|
||||
<note priority="1" from="description">kebab-case</note>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">libs/common/src/lib/paths.ts</context>
|
||||
<context context-type="linenumber">46</context>
|
||||
|
@ -5148,7 +5148,7 @@
|
||||
<trans-unit id="4656883433287439415" datatype="html">
|
||||
<source>faq</source>
|
||||
<target state="translated">perguntas-mais-frequentes</target>
|
||||
<note priority="1" from="description">snake-case</note>
|
||||
<note priority="1" from="description">kebab-case</note>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">libs/common/src/lib/paths.ts</context>
|
||||
<context context-type="linenumber">39</context>
|
||||
@ -5157,7 +5157,7 @@
|
||||
<trans-unit id="6703761340382395781" datatype="html">
|
||||
<source>features</source>
|
||||
<target state="translated">funcionalidades</target>
|
||||
<note priority="1" from="description">snake-case</note>
|
||||
<note priority="1" from="description">kebab-case</note>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">libs/common/src/lib/paths.ts</context>
|
||||
<context context-type="linenumber">40</context>
|
||||
@ -5166,7 +5166,7 @@
|
||||
<trans-unit id="8379314117913380516" datatype="html">
|
||||
<source>about</source>
|
||||
<target state="translated">sobre</target>
|
||||
<note priority="1" from="description">snake-case</note>
|
||||
<note priority="1" from="description">kebab-case</note>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">libs/common/src/lib/paths.ts</context>
|
||||
<context context-type="linenumber">37</context>
|
||||
@ -5175,7 +5175,7 @@
|
||||
<trans-unit id="6948811958230386934" datatype="html">
|
||||
<source>privacy-policy</source>
|
||||
<target state="translated">politica-de-privacidade</target>
|
||||
<note priority="1" from="description">snake-case</note>
|
||||
<note priority="1" from="description">kebab-case</note>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">libs/common/src/lib/paths.ts</context>
|
||||
<context context-type="linenumber">48</context>
|
||||
@ -5184,7 +5184,7 @@
|
||||
<trans-unit id="6099902667884446960" datatype="html">
|
||||
<source>license</source>
|
||||
<target state="translated">licenca</target>
|
||||
<note priority="1" from="description">snake-case</note>
|
||||
<note priority="1" from="description">kebab-case</note>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">libs/common/src/lib/paths.ts</context>
|
||||
<context context-type="linenumber">43</context>
|
||||
@ -5193,7 +5193,7 @@
|
||||
<trans-unit id="8566970793924820888" datatype="html">
|
||||
<source>markets</source>
|
||||
<target state="translated">mercados</target>
|
||||
<note priority="1" from="description">snake-case</note>
|
||||
<note priority="1" from="description">kebab-case</note>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">libs/common/src/lib/paths.ts</context>
|
||||
<context context-type="linenumber">44</context>
|
||||
@ -5202,7 +5202,7 @@
|
||||
<trans-unit id="9167640275204796639" datatype="html">
|
||||
<source>pricing</source>
|
||||
<target state="translated">precos</target>
|
||||
<note priority="1" from="description">snake-case</note>
|
||||
<note priority="1" from="description">kebab-case</note>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">libs/common/src/lib/paths.ts</context>
|
||||
<context context-type="linenumber">47</context>
|
||||
@ -5211,7 +5211,7 @@
|
||||
<trans-unit id="5915338689523424386" datatype="html">
|
||||
<source>register</source>
|
||||
<target state="translated">registo</target>
|
||||
<note priority="1" from="description">snake-case</note>
|
||||
<note priority="1" from="description">kebab-case</note>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">libs/common/src/lib/paths.ts</context>
|
||||
<context context-type="linenumber">49</context>
|
||||
@ -5220,7 +5220,7 @@
|
||||
<trans-unit id="4002166200801232073" datatype="html">
|
||||
<source>resources</source>
|
||||
<target state="translated">recursos</target>
|
||||
<note priority="1" from="description">snake-case</note>
|
||||
<note priority="1" from="description">kebab-case</note>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">libs/common/src/lib/paths.ts</context>
|
||||
<context context-type="linenumber">50</context>
|
||||
@ -5293,7 +5293,7 @@
|
||||
<trans-unit id="5827613432388799534" datatype="html">
|
||||
<source>open-source-alternative-to</source>
|
||||
<target state="translated">alternativa-de-software-livre-ao</target>
|
||||
<note priority="1" from="description">snake-case</note>
|
||||
<note priority="1" from="description">kebab-case</note>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">libs/common/src/lib/paths.ts</context>
|
||||
<context context-type="linenumber">45</context>
|
||||
@ -6070,7 +6070,7 @@
|
||||
<trans-unit id="1677491810118195784" datatype="html">
|
||||
<source>self-hosting</source>
|
||||
<target state="new">self-hosting</target>
|
||||
<note priority="1" from="description">snake-case</note>
|
||||
<note priority="1" from="description">kebab-case</note>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">libs/common/src/lib/paths.ts</context>
|
||||
<context context-type="linenumber">51</context>
|
||||
@ -6947,7 +6947,7 @@
|
||||
<trans-unit id="7491998780064454778" datatype="html">
|
||||
<source>guides</source>
|
||||
<target state="new">guides</target>
|
||||
<note priority="1" from="description">snake-case</note>
|
||||
<note priority="1" from="description">kebab-case</note>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">libs/common/src/lib/paths.ts</context>
|
||||
<context context-type="linenumber">42</context>
|
||||
@ -6956,7 +6956,7 @@
|
||||
<trans-unit id="6255655462254999912" datatype="html">
|
||||
<source>glossary</source>
|
||||
<target state="new">glossary</target>
|
||||
<note priority="1" from="description">snake-case</note>
|
||||
<note priority="1" from="description">kebab-case</note>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">libs/common/src/lib/paths.ts</context>
|
||||
<context context-type="linenumber">41</context>
|
||||
@ -7417,7 +7417,7 @@
|
||||
<trans-unit id="814674835685440667" datatype="html">
|
||||
<source>terms-of-service</source>
|
||||
<target state="new">terms-of-service</target>
|
||||
<note priority="1" from="description">snake-case</note>
|
||||
<note priority="1" from="description">kebab-case</note>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">libs/common/src/lib/paths.ts</context>
|
||||
<context context-type="linenumber">52</context>
|
||||
@ -7598,7 +7598,7 @@
|
||||
<trans-unit id="793097298820646129" datatype="html">
|
||||
<source>changelog</source>
|
||||
<target state="new">changelog</target>
|
||||
<note priority="1" from="description">snake-case</note>
|
||||
<note priority="1" from="description">kebab-case</note>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">libs/common/src/lib/paths.ts</context>
|
||||
<context context-type="linenumber">38</context>
|
||||
@ -7607,7 +7607,7 @@
|
||||
<trans-unit id="5929637553579019226" datatype="html">
|
||||
<source>oss-friends</source>
|
||||
<target state="new">oss-friends</target>
|
||||
<note priority="1" from="description">snake-case</note>
|
||||
<note priority="1" from="description">kebab-case</note>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">libs/common/src/lib/paths.ts</context>
|
||||
<context context-type="linenumber">46</context>
|
||||
|
@ -4,7 +4,7 @@
|
||||
<trans-unit id="8379314117913380516" datatype="html">
|
||||
<source>about</source>
|
||||
<target state="translated">hakkinda</target>
|
||||
<note priority="1" from="description">snake-case</note>
|
||||
<note priority="1" from="description">kebab-case</note>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">libs/common/src/lib/paths.ts</context>
|
||||
<context context-type="linenumber">37</context>
|
||||
@ -13,7 +13,7 @@
|
||||
<trans-unit id="4656883433287439415" datatype="html">
|
||||
<source>faq</source>
|
||||
<target state="translated">sss</target>
|
||||
<note priority="1" from="description">snake-case</note>
|
||||
<note priority="1" from="description">kebab-case</note>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">libs/common/src/lib/paths.ts</context>
|
||||
<context context-type="linenumber">39</context>
|
||||
@ -22,7 +22,7 @@
|
||||
<trans-unit id="6703761340382395781" datatype="html">
|
||||
<source>features</source>
|
||||
<target state="translated">oezellikler</target>
|
||||
<note priority="1" from="description">snake-case</note>
|
||||
<note priority="1" from="description">kebab-case</note>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">libs/common/src/lib/paths.ts</context>
|
||||
<context context-type="linenumber">40</context>
|
||||
@ -31,7 +31,7 @@
|
||||
<trans-unit id="6099902667884446960" datatype="html">
|
||||
<source>license</source>
|
||||
<target state="translated">lisans</target>
|
||||
<note priority="1" from="description">snake-case</note>
|
||||
<note priority="1" from="description">kebab-case</note>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">libs/common/src/lib/paths.ts</context>
|
||||
<context context-type="linenumber">43</context>
|
||||
@ -40,7 +40,7 @@
|
||||
<trans-unit id="8566970793924820888" datatype="html">
|
||||
<source>markets</source>
|
||||
<target state="translated">piyasalar</target>
|
||||
<note priority="1" from="description">snake-case</note>
|
||||
<note priority="1" from="description">kebab-case</note>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">libs/common/src/lib/paths.ts</context>
|
||||
<context context-type="linenumber">44</context>
|
||||
@ -49,7 +49,7 @@
|
||||
<trans-unit id="9167640275204796639" datatype="html">
|
||||
<source>pricing</source>
|
||||
<target state="translated">fiyatlandirma</target>
|
||||
<note priority="1" from="description">snake-case</note>
|
||||
<note priority="1" from="description">kebab-case</note>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">libs/common/src/lib/paths.ts</context>
|
||||
<context context-type="linenumber">47</context>
|
||||
@ -58,7 +58,7 @@
|
||||
<trans-unit id="6948811958230386934" datatype="html">
|
||||
<source>privacy-policy</source>
|
||||
<target state="translated">gizlilik-politikasi</target>
|
||||
<note priority="1" from="description">snake-case</note>
|
||||
<note priority="1" from="description">kebab-case</note>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">libs/common/src/lib/paths.ts</context>
|
||||
<context context-type="linenumber">48</context>
|
||||
@ -67,7 +67,7 @@
|
||||
<trans-unit id="5915338689523424386" datatype="html">
|
||||
<source>register</source>
|
||||
<target state="translated">kayit-ol</target>
|
||||
<note priority="1" from="description">snake-case</note>
|
||||
<note priority="1" from="description">kebab-case</note>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">libs/common/src/lib/paths.ts</context>
|
||||
<context context-type="linenumber">49</context>
|
||||
@ -76,7 +76,7 @@
|
||||
<trans-unit id="4002166200801232073" datatype="html">
|
||||
<source>resources</source>
|
||||
<target state="translated">kaynaklar</target>
|
||||
<note priority="1" from="description">snake-case</note>
|
||||
<note priority="1" from="description">kebab-case</note>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">libs/common/src/lib/paths.ts</context>
|
||||
<context context-type="linenumber">50</context>
|
||||
@ -4177,7 +4177,7 @@
|
||||
<trans-unit id="5827613432388799534" datatype="html">
|
||||
<source>open-source-alternative-to</source>
|
||||
<target state="translated">Açık kaynak alternatif</target>
|
||||
<note priority="1" from="description">snake-case</note>
|
||||
<note priority="1" from="description">kebab-case</note>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">libs/common/src/lib/paths.ts</context>
|
||||
<context context-type="linenumber">45</context>
|
||||
@ -6070,7 +6070,7 @@
|
||||
<trans-unit id="1677491810118195784" datatype="html">
|
||||
<source>self-hosting</source>
|
||||
<target state="translated">Kendini-Barındırma</target>
|
||||
<note priority="1" from="description">snake-case</note>
|
||||
<note priority="1" from="description">kebab-case</note>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">libs/common/src/lib/paths.ts</context>
|
||||
<context context-type="linenumber">51</context>
|
||||
@ -6947,7 +6947,7 @@
|
||||
<trans-unit id="7491998780064454778" datatype="html">
|
||||
<source>guides</source>
|
||||
<target state="translated">kılavuzlar</target>
|
||||
<note priority="1" from="description">snake-case</note>
|
||||
<note priority="1" from="description">kebab-case</note>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">libs/common/src/lib/paths.ts</context>
|
||||
<context context-type="linenumber">42</context>
|
||||
@ -6956,7 +6956,7 @@
|
||||
<trans-unit id="6255655462254999912" datatype="html">
|
||||
<source>glossary</source>
|
||||
<target state="translated">sözlük</target>
|
||||
<note priority="1" from="description">snake-case</note>
|
||||
<note priority="1" from="description">kebab-case</note>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">libs/common/src/lib/paths.ts</context>
|
||||
<context context-type="linenumber">41</context>
|
||||
@ -7417,7 +7417,7 @@
|
||||
<trans-unit id="814674835685440667" datatype="html">
|
||||
<source>terms-of-service</source>
|
||||
<target state="translated">Hizmet Koşulları</target>
|
||||
<note priority="1" from="description">snake-case</note>
|
||||
<note priority="1" from="description">kebab-case</note>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">libs/common/src/lib/paths.ts</context>
|
||||
<context context-type="linenumber">52</context>
|
||||
@ -7598,7 +7598,7 @@
|
||||
<trans-unit id="793097298820646129" datatype="html">
|
||||
<source>changelog</source>
|
||||
<target state="new">changelog</target>
|
||||
<note priority="1" from="description">snake-case</note>
|
||||
<note priority="1" from="description">kebab-case</note>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">libs/common/src/lib/paths.ts</context>
|
||||
<context context-type="linenumber">38</context>
|
||||
@ -7607,7 +7607,7 @@
|
||||
<trans-unit id="5929637553579019226" datatype="html">
|
||||
<source>oss-friends</source>
|
||||
<target state="new">oss-friends</target>
|
||||
<note priority="1" from="description">snake-case</note>
|
||||
<note priority="1" from="description">kebab-case</note>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">libs/common/src/lib/paths.ts</context>
|
||||
<context context-type="linenumber">46</context>
|
||||
|
@ -368,7 +368,7 @@
|
||||
<trans-unit id="8379314117913380516" datatype="html">
|
||||
<source>about</source>
|
||||
<target state="translated">about</target>
|
||||
<note priority="1" from="description">snake-case</note>
|
||||
<note priority="1" from="description">kebab-case</note>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">libs/common/src/lib/paths.ts</context>
|
||||
<context context-type="linenumber">37</context>
|
||||
@ -377,7 +377,7 @@
|
||||
<trans-unit id="6099902667884446960" datatype="html">
|
||||
<source>license</source>
|
||||
<target state="translated">license</target>
|
||||
<note priority="1" from="description">snake-case</note>
|
||||
<note priority="1" from="description">kebab-case</note>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">libs/common/src/lib/paths.ts</context>
|
||||
<context context-type="linenumber">43</context>
|
||||
@ -386,7 +386,7 @@
|
||||
<trans-unit id="6948811958230386934" datatype="html">
|
||||
<source>privacy-policy</source>
|
||||
<target state="translated">privacy-policy</target>
|
||||
<note priority="1" from="description">snake-case</note>
|
||||
<note priority="1" from="description">kebab-case</note>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">libs/common/src/lib/paths.ts</context>
|
||||
<context context-type="linenumber">48</context>
|
||||
@ -395,7 +395,7 @@
|
||||
<trans-unit id="4656883433287439415" datatype="html">
|
||||
<source>faq</source>
|
||||
<target state="translated">faq</target>
|
||||
<note priority="1" from="description">snake-case</note>
|
||||
<note priority="1" from="description">kebab-case</note>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">libs/common/src/lib/paths.ts</context>
|
||||
<context context-type="linenumber">39</context>
|
||||
@ -404,7 +404,7 @@
|
||||
<trans-unit id="6703761340382395781" datatype="html">
|
||||
<source>features</source>
|
||||
<target state="translated">features</target>
|
||||
<note priority="1" from="description">snake-case</note>
|
||||
<note priority="1" from="description">kebab-case</note>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">libs/common/src/lib/paths.ts</context>
|
||||
<context context-type="linenumber">40</context>
|
||||
@ -413,7 +413,7 @@
|
||||
<trans-unit id="8566970793924820888" datatype="html">
|
||||
<source>markets</source>
|
||||
<target state="translated">markets</target>
|
||||
<note priority="1" from="description">snake-case</note>
|
||||
<note priority="1" from="description">kebab-case</note>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">libs/common/src/lib/paths.ts</context>
|
||||
<context context-type="linenumber">44</context>
|
||||
@ -422,7 +422,7 @@
|
||||
<trans-unit id="9167640275204796639" datatype="html">
|
||||
<source>pricing</source>
|
||||
<target state="translated">pricing</target>
|
||||
<note priority="1" from="description">snake-case</note>
|
||||
<note priority="1" from="description">kebab-case</note>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">libs/common/src/lib/paths.ts</context>
|
||||
<context context-type="linenumber">47</context>
|
||||
@ -431,7 +431,7 @@
|
||||
<trans-unit id="5915338689523424386" datatype="html">
|
||||
<source>register</source>
|
||||
<target state="translated">register</target>
|
||||
<note priority="1" from="description">snake-case</note>
|
||||
<note priority="1" from="description">kebab-case</note>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">libs/common/src/lib/paths.ts</context>
|
||||
<context context-type="linenumber">49</context>
|
||||
@ -440,7 +440,7 @@
|
||||
<trans-unit id="4002166200801232073" datatype="html">
|
||||
<source>resources</source>
|
||||
<target state="translated">resources</target>
|
||||
<note priority="1" from="description">snake-case</note>
|
||||
<note priority="1" from="description">kebab-case</note>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">libs/common/src/lib/paths.ts</context>
|
||||
<context context-type="linenumber">50</context>
|
||||
@ -3765,7 +3765,7 @@
|
||||
<trans-unit id="1677491810118195784" datatype="html">
|
||||
<source>self-hosting</source>
|
||||
<target state="translated">самохостинг</target>
|
||||
<note priority="1" from="description">snake-case</note>
|
||||
<note priority="1" from="description">kebab-case</note>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">libs/common/src/lib/paths.ts</context>
|
||||
<context context-type="linenumber">51</context>
|
||||
@ -5470,7 +5470,7 @@
|
||||
<trans-unit id="7491998780064454778" datatype="html">
|
||||
<source>guides</source>
|
||||
<target state="translated">guides</target>
|
||||
<note priority="1" from="description">snake-case</note>
|
||||
<note priority="1" from="description">kebab-case</note>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">libs/common/src/lib/paths.ts</context>
|
||||
<context context-type="linenumber">42</context>
|
||||
@ -5479,7 +5479,7 @@
|
||||
<trans-unit id="6255655462254999912" datatype="html">
|
||||
<source>glossary</source>
|
||||
<target state="translated">glossary</target>
|
||||
<note priority="1" from="description">snake-case</note>
|
||||
<note priority="1" from="description">kebab-case</note>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">libs/common/src/lib/paths.ts</context>
|
||||
<context context-type="linenumber">41</context>
|
||||
@ -5496,7 +5496,7 @@
|
||||
<trans-unit id="5827613432388799534" datatype="html">
|
||||
<source>open-source-alternative-to</source>
|
||||
<target state="translated">відкритий-альтернативний-для</target>
|
||||
<note priority="1" from="description">snake-case</note>
|
||||
<note priority="1" from="description">kebab-case</note>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">libs/common/src/lib/paths.ts</context>
|
||||
<context context-type="linenumber">45</context>
|
||||
@ -7417,7 +7417,7 @@
|
||||
<trans-unit id="814674835685440667" datatype="html">
|
||||
<source>terms-of-service</source>
|
||||
<target state="new">terms-of-service</target>
|
||||
<note priority="1" from="description">snake-case</note>
|
||||
<note priority="1" from="description">kebab-case</note>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">libs/common/src/lib/paths.ts</context>
|
||||
<context context-type="linenumber">52</context>
|
||||
@ -7598,7 +7598,7 @@
|
||||
<trans-unit id="793097298820646129" datatype="html">
|
||||
<source>changelog</source>
|
||||
<target state="new">changelog</target>
|
||||
<note priority="1" from="description">snake-case</note>
|
||||
<note priority="1" from="description">kebab-case</note>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">libs/common/src/lib/paths.ts</context>
|
||||
<context context-type="linenumber">38</context>
|
||||
@ -7607,7 +7607,7 @@
|
||||
<trans-unit id="5929637553579019226" datatype="html">
|
||||
<source>oss-friends</source>
|
||||
<target state="new">oss-friends</target>
|
||||
<note priority="1" from="description">snake-case</note>
|
||||
<note priority="1" from="description">kebab-case</note>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">libs/common/src/lib/paths.ts</context>
|
||||
<context context-type="linenumber">46</context>
|
||||
|
@ -4,7 +4,7 @@
|
||||
<body>
|
||||
<trans-unit id="8379314117913380516" datatype="html">
|
||||
<source>about</source>
|
||||
<note priority="1" from="description">snake-case</note>
|
||||
<note priority="1" from="description">kebab-case</note>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">libs/common/src/lib/paths.ts</context>
|
||||
<context context-type="linenumber">37</context>
|
||||
@ -12,7 +12,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit id="4656883433287439415" datatype="html">
|
||||
<source>faq</source>
|
||||
<note priority="1" from="description">snake-case</note>
|
||||
<note priority="1" from="description">kebab-case</note>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">libs/common/src/lib/paths.ts</context>
|
||||
<context context-type="linenumber">39</context>
|
||||
@ -20,7 +20,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit id="6703761340382395781" datatype="html">
|
||||
<source>features</source>
|
||||
<note priority="1" from="description">snake-case</note>
|
||||
<note priority="1" from="description">kebab-case</note>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">libs/common/src/lib/paths.ts</context>
|
||||
<context context-type="linenumber">40</context>
|
||||
@ -28,7 +28,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit id="6099902667884446960" datatype="html">
|
||||
<source>license</source>
|
||||
<note priority="1" from="description">snake-case</note>
|
||||
<note priority="1" from="description">kebab-case</note>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">libs/common/src/lib/paths.ts</context>
|
||||
<context context-type="linenumber">43</context>
|
||||
@ -36,7 +36,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit id="8566970793924820888" datatype="html">
|
||||
<source>markets</source>
|
||||
<note priority="1" from="description">snake-case</note>
|
||||
<note priority="1" from="description">kebab-case</note>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">libs/common/src/lib/paths.ts</context>
|
||||
<context context-type="linenumber">44</context>
|
||||
@ -44,7 +44,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit id="9167640275204796639" datatype="html">
|
||||
<source>pricing</source>
|
||||
<note priority="1" from="description">snake-case</note>
|
||||
<note priority="1" from="description">kebab-case</note>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">libs/common/src/lib/paths.ts</context>
|
||||
<context context-type="linenumber">47</context>
|
||||
@ -52,7 +52,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit id="6948811958230386934" datatype="html">
|
||||
<source>privacy-policy</source>
|
||||
<note priority="1" from="description">snake-case</note>
|
||||
<note priority="1" from="description">kebab-case</note>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">libs/common/src/lib/paths.ts</context>
|
||||
<context context-type="linenumber">48</context>
|
||||
@ -60,7 +60,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit id="5915338689523424386" datatype="html">
|
||||
<source>register</source>
|
||||
<note priority="1" from="description">snake-case</note>
|
||||
<note priority="1" from="description">kebab-case</note>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">libs/common/src/lib/paths.ts</context>
|
||||
<context context-type="linenumber">49</context>
|
||||
@ -68,7 +68,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit id="4002166200801232073" datatype="html">
|
||||
<source>resources</source>
|
||||
<note priority="1" from="description">snake-case</note>
|
||||
<note priority="1" from="description">kebab-case</note>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">libs/common/src/lib/paths.ts</context>
|
||||
<context context-type="linenumber">50</context>
|
||||
@ -4283,7 +4283,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit id="5827613432388799534" datatype="html">
|
||||
<source>open-source-alternative-to</source>
|
||||
<note priority="1" from="description">snake-case</note>
|
||||
<note priority="1" from="description">kebab-case</note>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">libs/common/src/lib/paths.ts</context>
|
||||
<context context-type="linenumber">45</context>
|
||||
@ -5472,7 +5472,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit id="1677491810118195784" datatype="html">
|
||||
<source>self-hosting</source>
|
||||
<note priority="1" from="description">snake-case</note>
|
||||
<note priority="1" from="description">kebab-case</note>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">libs/common/src/lib/paths.ts</context>
|
||||
<context context-type="linenumber">51</context>
|
||||
@ -6270,7 +6270,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit id="6255655462254999912" datatype="html">
|
||||
<source>glossary</source>
|
||||
<note priority="1" from="description">snake-case</note>
|
||||
<note priority="1" from="description">kebab-case</note>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">libs/common/src/lib/paths.ts</context>
|
||||
<context context-type="linenumber">41</context>
|
||||
@ -6289,7 +6289,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit id="7491998780064454778" datatype="html">
|
||||
<source>guides</source>
|
||||
<note priority="1" from="description">snake-case</note>
|
||||
<note priority="1" from="description">kebab-case</note>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">libs/common/src/lib/paths.ts</context>
|
||||
<context context-type="linenumber">42</context>
|
||||
@ -6697,7 +6697,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit id="814674835685440667" datatype="html">
|
||||
<source>terms-of-service</source>
|
||||
<note priority="1" from="description">snake-case</note>
|
||||
<note priority="1" from="description">kebab-case</note>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">libs/common/src/lib/paths.ts</context>
|
||||
<context context-type="linenumber">52</context>
|
||||
@ -6832,7 +6832,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit id="5929637553579019226" datatype="html">
|
||||
<source>oss-friends</source>
|
||||
<note priority="1" from="description">snake-case</note>
|
||||
<note priority="1" from="description">kebab-case</note>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">libs/common/src/lib/paths.ts</context>
|
||||
<context context-type="linenumber">46</context>
|
||||
@ -6840,7 +6840,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit id="793097298820646129" datatype="html">
|
||||
<source>changelog</source>
|
||||
<note priority="1" from="description">snake-case</note>
|
||||
<note priority="1" from="description">kebab-case</note>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">libs/common/src/lib/paths.ts</context>
|
||||
<context context-type="linenumber">38</context>
|
||||
|
@ -5,7 +5,7 @@
|
||||
<trans-unit id="8379314117913380516" datatype="html">
|
||||
<source>about</source>
|
||||
<target state="translated">关于</target>
|
||||
<note priority="1" from="description">snake-case</note>
|
||||
<note priority="1" from="description">kebab-case</note>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">libs/common/src/lib/paths.ts</context>
|
||||
<context context-type="linenumber">37</context>
|
||||
@ -14,7 +14,7 @@
|
||||
<trans-unit id="4656883433287439415" datatype="html">
|
||||
<source>faq</source>
|
||||
<target state="translated">常见问题</target>
|
||||
<note priority="1" from="description">snake-case</note>
|
||||
<note priority="1" from="description">kebab-case</note>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">libs/common/src/lib/paths.ts</context>
|
||||
<context context-type="linenumber">39</context>
|
||||
@ -23,7 +23,7 @@
|
||||
<trans-unit id="6703761340382395781" datatype="html">
|
||||
<source>features</source>
|
||||
<target state="translated">功能</target>
|
||||
<note priority="1" from="description">snake-case</note>
|
||||
<note priority="1" from="description">kebab-case</note>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">libs/common/src/lib/paths.ts</context>
|
||||
<context context-type="linenumber">40</context>
|
||||
@ -32,7 +32,7 @@
|
||||
<trans-unit id="6099902667884446960" datatype="html">
|
||||
<source>license</source>
|
||||
<target state="translated">许可证</target>
|
||||
<note priority="1" from="description">snake-case</note>
|
||||
<note priority="1" from="description">kebab-case</note>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">libs/common/src/lib/paths.ts</context>
|
||||
<context context-type="linenumber">43</context>
|
||||
@ -41,7 +41,7 @@
|
||||
<trans-unit id="8566970793924820888" datatype="html">
|
||||
<source>markets</source>
|
||||
<target state="translated">市场</target>
|
||||
<note priority="1" from="description">snake-case</note>
|
||||
<note priority="1" from="description">kebab-case</note>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">libs/common/src/lib/paths.ts</context>
|
||||
<context context-type="linenumber">44</context>
|
||||
@ -50,7 +50,7 @@
|
||||
<trans-unit id="9167640275204796639" datatype="html">
|
||||
<source>pricing</source>
|
||||
<target state="translated">价钱</target>
|
||||
<note priority="1" from="description">snake-case</note>
|
||||
<note priority="1" from="description">kebab-case</note>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">libs/common/src/lib/paths.ts</context>
|
||||
<context context-type="linenumber">47</context>
|
||||
@ -59,7 +59,7 @@
|
||||
<trans-unit id="6948811958230386934" datatype="html">
|
||||
<source>privacy-policy</source>
|
||||
<target state="translated">隐私政策</target>
|
||||
<note priority="1" from="description">snake-case</note>
|
||||
<note priority="1" from="description">kebab-case</note>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">libs/common/src/lib/paths.ts</context>
|
||||
<context context-type="linenumber">48</context>
|
||||
@ -68,7 +68,7 @@
|
||||
<trans-unit id="5915338689523424386" datatype="html">
|
||||
<source>register</source>
|
||||
<target state="translated">注册</target>
|
||||
<note priority="1" from="description">snake-case</note>
|
||||
<note priority="1" from="description">kebab-case</note>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">libs/common/src/lib/paths.ts</context>
|
||||
<context context-type="linenumber">49</context>
|
||||
@ -77,7 +77,7 @@
|
||||
<trans-unit id="4002166200801232073" datatype="html">
|
||||
<source>resources</source>
|
||||
<target state="translated">资源</target>
|
||||
<note priority="1" from="description">snake-case</note>
|
||||
<note priority="1" from="description">kebab-case</note>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">libs/common/src/lib/paths.ts</context>
|
||||
<context context-type="linenumber">50</context>
|
||||
@ -4690,7 +4690,7 @@
|
||||
<trans-unit id="5827613432388799534" datatype="html">
|
||||
<source>open-source-alternative-to</source>
|
||||
<target state="translated">开源替代方案</target>
|
||||
<note priority="1" from="description">snake-case</note>
|
||||
<note priority="1" from="description">kebab-case</note>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">libs/common/src/lib/paths.ts</context>
|
||||
<context context-type="linenumber">45</context>
|
||||
@ -6027,7 +6027,7 @@
|
||||
<trans-unit id="1677491810118195784" datatype="html">
|
||||
<source>self-hosting</source>
|
||||
<target state="translated">自托管</target>
|
||||
<note priority="1" from="description">snake-case</note>
|
||||
<note priority="1" from="description">kebab-case</note>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">libs/common/src/lib/paths.ts</context>
|
||||
<context context-type="linenumber">51</context>
|
||||
@ -6948,7 +6948,7 @@
|
||||
<trans-unit id="7491998780064454778" datatype="html">
|
||||
<source>guides</source>
|
||||
<target state="translated">指南</target>
|
||||
<note priority="1" from="description">snake-case</note>
|
||||
<note priority="1" from="description">kebab-case</note>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">libs/common/src/lib/paths.ts</context>
|
||||
<context context-type="linenumber">42</context>
|
||||
@ -6957,7 +6957,7 @@
|
||||
<trans-unit id="6255655462254999912" datatype="html">
|
||||
<source>glossary</source>
|
||||
<target state="translated">词汇表</target>
|
||||
<note priority="1" from="description">snake-case</note>
|
||||
<note priority="1" from="description">kebab-case</note>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">libs/common/src/lib/paths.ts</context>
|
||||
<context context-type="linenumber">41</context>
|
||||
@ -7418,7 +7418,7 @@
|
||||
<trans-unit id="814674835685440667" datatype="html">
|
||||
<source>terms-of-service</source>
|
||||
<target state="translated">服务条款</target>
|
||||
<note priority="1" from="description">snake-case</note>
|
||||
<note priority="1" from="description">kebab-case</note>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">libs/common/src/lib/paths.ts</context>
|
||||
<context context-type="linenumber">52</context>
|
||||
@ -7599,7 +7599,7 @@
|
||||
<trans-unit id="793097298820646129" datatype="html">
|
||||
<source>changelog</source>
|
||||
<target state="translated">变更日志</target>
|
||||
<note priority="1" from="description">snake-case</note>
|
||||
<note priority="1" from="description">kebab-case</note>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">libs/common/src/lib/paths.ts</context>
|
||||
<context context-type="linenumber">38</context>
|
||||
@ -7608,7 +7608,7 @@
|
||||
<trans-unit id="5929637553579019226" datatype="html">
|
||||
<source>oss-friends</source>
|
||||
<target state="translated">开源朋友</target>
|
||||
<note priority="1" from="description">snake-case</note>
|
||||
<note priority="1" from="description">kebab-case</note>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">libs/common/src/lib/paths.ts</context>
|
||||
<context context-type="linenumber">46</context>
|
||||
|
@ -34,20 +34,20 @@ export const paths = {
|
||||
zen: 'zen',
|
||||
|
||||
// Localized paths (public-facing pages)
|
||||
about: $localize`:snake-case:about`,
|
||||
changelog: $localize`:snake-case:changelog`,
|
||||
faq: $localize`:snake-case:faq`,
|
||||
features: $localize`:snake-case:features`,
|
||||
glossary: $localize`:snake-case:glossary`,
|
||||
guides: $localize`:snake-case:guides`,
|
||||
license: $localize`:snake-case:license`,
|
||||
markets: $localize`:snake-case:markets`,
|
||||
openSourceAlternativeTo: $localize`:snake-case:open-source-alternative-to`,
|
||||
ossFriends: $localize`:snake-case:oss-friends`,
|
||||
pricing: $localize`:snake-case:pricing`,
|
||||
privacyPolicy: $localize`:snake-case:privacy-policy`,
|
||||
register: $localize`:snake-case:register`,
|
||||
resources: $localize`:snake-case:resources`,
|
||||
selfHosting: $localize`:snake-case:self-hosting`,
|
||||
termsOfService: $localize`:snake-case:terms-of-service`
|
||||
about: $localize`:kebab-case:about`,
|
||||
changelog: $localize`:kebab-case:changelog`,
|
||||
faq: $localize`:kebab-case:faq`,
|
||||
features: $localize`:kebab-case:features`,
|
||||
glossary: $localize`:kebab-case:glossary`,
|
||||
guides: $localize`:kebab-case:guides`,
|
||||
license: $localize`:kebab-case:license`,
|
||||
markets: $localize`:kebab-case:markets`,
|
||||
openSourceAlternativeTo: $localize`:kebab-case:open-source-alternative-to`,
|
||||
ossFriends: $localize`:kebab-case:oss-friends`,
|
||||
pricing: $localize`:kebab-case:pricing`,
|
||||
privacyPolicy: $localize`:kebab-case:privacy-policy`,
|
||||
register: $localize`:kebab-case:register`,
|
||||
resources: $localize`:kebab-case:resources`,
|
||||
selfHosting: $localize`:kebab-case:self-hosting`,
|
||||
termsOfService: $localize`:kebab-case:terms-of-service`
|
||||
};
|
||||
|
@ -36,7 +36,7 @@
|
||||
</ng-container>
|
||||
|
||||
<ng-container matColumnDef="allocationInPercentage" stickyEnd>
|
||||
<th *matHeaderCellDef class="justify-content-end px-2" mat-header-cell>
|
||||
<th *matHeaderCellDef class="px-2 text-right" mat-header-cell>
|
||||
<span class="d-none d-sm-block" i18n>Allocation</span>
|
||||
<span class="d-block d-sm-none" title="Allocation">%</span>
|
||||
</th>
|
||||
|
100
package-lock.json
generated
100
package-lock.json
generated
@ -1,12 +1,12 @@
|
||||
{
|
||||
"name": "ghostfolio",
|
||||
"version": "2.161.0",
|
||||
"version": "2.162.1",
|
||||
"lockfileVersion": 3,
|
||||
"requires": true,
|
||||
"packages": {
|
||||
"": {
|
||||
"name": "ghostfolio",
|
||||
"version": "2.161.0",
|
||||
"version": "2.162.1",
|
||||
"hasInstallScript": true,
|
||||
"license": "AGPL-3.0",
|
||||
"dependencies": {
|
||||
@ -42,7 +42,7 @@
|
||||
"@nestjs/platform-express": "11.1.0",
|
||||
"@nestjs/schedule": "6.0.0",
|
||||
"@nestjs/serve-static": "5.0.3",
|
||||
"@prisma/client": "6.7.0",
|
||||
"@prisma/client": "6.8.2",
|
||||
"@simplewebauthn/browser": "13.1.0",
|
||||
"@simplewebauthn/server": "13.1.1",
|
||||
"@stripe/stripe-js": "5.4.0",
|
||||
@ -148,7 +148,7 @@
|
||||
"nx": "20.8.1",
|
||||
"prettier": "3.5.3",
|
||||
"prettier-plugin-organize-attributes": "1.0.0",
|
||||
"prisma": "6.7.0",
|
||||
"prisma": "6.8.2",
|
||||
"react": "18.2.0",
|
||||
"react-dom": "18.2.0",
|
||||
"replace-in-file": "8.3.0",
|
||||
@ -10127,82 +10127,95 @@
|
||||
"license": "MIT"
|
||||
},
|
||||
"node_modules/@prisma/client": {
|
||||
"version": "6.7.0",
|
||||
"resolved": "https://registry.npmjs.org/@prisma/client/-/client-6.7.0.tgz",
|
||||
"integrity": "sha512-+k61zZn1XHjbZul8q6TdQLpuI/cvyfil87zqK2zpreNIXyXtpUv3+H/oM69hcsFcZXaokHJIzPAt5Z8C8eK2QA==",
|
||||
"version": "6.8.2",
|
||||
"resolved": "https://registry.npmjs.org/@prisma/client/-/client-6.8.2.tgz",
|
||||
"integrity": "sha512-5II+vbyzv4si6Yunwgkj0qT/iY0zyspttoDrL3R4BYgLdp42/d2C8xdi9vqkrYtKt9H32oFIukvyw3Koz5JoDg==",
|
||||
"hasInstallScript": true,
|
||||
"license": "Apache-2.0",
|
||||
"engines": {
|
||||
"node": ">=18.18"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"prisma": "*"
|
||||
"prisma": "*",
|
||||
"typescript": ">=5.1.0"
|
||||
},
|
||||
"peerDependenciesMeta": {
|
||||
"prisma": {
|
||||
"optional": true
|
||||
},
|
||||
"typescript": {
|
||||
"optional": true
|
||||
}
|
||||
}
|
||||
},
|
||||
"node_modules/@prisma/config": {
|
||||
"version": "6.7.0",
|
||||
"resolved": "https://registry.npmjs.org/@prisma/config/-/config-6.7.0.tgz",
|
||||
"integrity": "sha512-di8QDdvSz7DLUi3OOcCHSwxRNeW7jtGRUD2+Z3SdNE3A+pPiNT8WgUJoUyOwJmUr5t+JA2W15P78C/N+8RXrOA==",
|
||||
"version": "6.8.2",
|
||||
"resolved": "https://registry.npmjs.org/@prisma/config/-/config-6.8.2.tgz",
|
||||
"integrity": "sha512-ZJY1fF4qRBPdLQ/60wxNtX+eu89c3AkYEcP7L3jkp0IPXCNphCYxikTg55kPJLDOG6P0X+QG5tCv6CmsBRZWFQ==",
|
||||
"devOptional": true,
|
||||
"license": "Apache-2.0",
|
||||
"dependencies": {
|
||||
"esbuild": ">=0.12 <1",
|
||||
"esbuild-register": "3.6.0"
|
||||
"jiti": "2.4.2"
|
||||
}
|
||||
},
|
||||
"node_modules/@prisma/config/node_modules/jiti": {
|
||||
"version": "2.4.2",
|
||||
"resolved": "https://registry.npmjs.org/jiti/-/jiti-2.4.2.tgz",
|
||||
"integrity": "sha512-rg9zJN+G4n2nfJl5MW3BMygZX56zKPNVEYYqq7adpmMh4Jn2QNEwhvQlFy6jPVdcod7txZtKHWnyZiA3a0zP7A==",
|
||||
"devOptional": true,
|
||||
"license": "MIT",
|
||||
"bin": {
|
||||
"jiti": "lib/jiti-cli.mjs"
|
||||
}
|
||||
},
|
||||
"node_modules/@prisma/debug": {
|
||||
"version": "6.7.0",
|
||||
"resolved": "https://registry.npmjs.org/@prisma/debug/-/debug-6.7.0.tgz",
|
||||
"integrity": "sha512-RabHn9emKoYFsv99RLxvfG2GHzWk2ZI1BuVzqYtmMSIcuGboHY5uFt3Q3boOREM9de6z5s3bQoyKeWnq8Fz22w==",
|
||||
"version": "6.8.2",
|
||||
"resolved": "https://registry.npmjs.org/@prisma/debug/-/debug-6.8.2.tgz",
|
||||
"integrity": "sha512-4muBSSUwJJ9BYth5N8tqts8JtiLT8QI/RSAzEogwEfpbYGFo9mYsInsVo8dqXdPO2+Rm5OG5q0qWDDE3nyUbVg==",
|
||||
"devOptional": true,
|
||||
"license": "Apache-2.0"
|
||||
},
|
||||
"node_modules/@prisma/engines": {
|
||||
"version": "6.7.0",
|
||||
"resolved": "https://registry.npmjs.org/@prisma/engines/-/engines-6.7.0.tgz",
|
||||
"integrity": "sha512-3wDMesnOxPrOsq++e5oKV9LmIiEazFTRFZrlULDQ8fxdub5w4NgRBoxtWbvXmj2nJVCnzuz6eFix3OhIqsZ1jw==",
|
||||
"version": "6.8.2",
|
||||
"resolved": "https://registry.npmjs.org/@prisma/engines/-/engines-6.8.2.tgz",
|
||||
"integrity": "sha512-XqAJ//LXjqYRQ1RRabs79KOY4+v6gZOGzbcwDQl0D6n9WBKjV7qdrbd042CwSK0v0lM9MSHsbcFnU2Yn7z8Zlw==",
|
||||
"devOptional": true,
|
||||
"hasInstallScript": true,
|
||||
"license": "Apache-2.0",
|
||||
"dependencies": {
|
||||
"@prisma/debug": "6.7.0",
|
||||
"@prisma/engines-version": "6.7.0-36.3cff47a7f5d65c3ea74883f1d736e41d68ce91ed",
|
||||
"@prisma/fetch-engine": "6.7.0",
|
||||
"@prisma/get-platform": "6.7.0"
|
||||
"@prisma/debug": "6.8.2",
|
||||
"@prisma/engines-version": "6.8.0-43.2060c79ba17c6bb9f5823312b6f6b7f4a845738e",
|
||||
"@prisma/fetch-engine": "6.8.2",
|
||||
"@prisma/get-platform": "6.8.2"
|
||||
}
|
||||
},
|
||||
"node_modules/@prisma/engines-version": {
|
||||
"version": "6.7.0-36.3cff47a7f5d65c3ea74883f1d736e41d68ce91ed",
|
||||
"resolved": "https://registry.npmjs.org/@prisma/engines-version/-/engines-version-6.7.0-36.3cff47a7f5d65c3ea74883f1d736e41d68ce91ed.tgz",
|
||||
"integrity": "sha512-EvpOFEWf1KkJpDsBCrih0kg3HdHuaCnXmMn7XFPObpFTzagK1N0Q0FMnYPsEhvARfANP5Ok11QyoTIRA2hgJTA==",
|
||||
"version": "6.8.0-43.2060c79ba17c6bb9f5823312b6f6b7f4a845738e",
|
||||
"resolved": "https://registry.npmjs.org/@prisma/engines-version/-/engines-version-6.8.0-43.2060c79ba17c6bb9f5823312b6f6b7f4a845738e.tgz",
|
||||
"integrity": "sha512-Rkik9lMyHpFNGaLpPF3H5q5TQTkm/aE7DsGM5m92FZTvWQsvmi6Va8On3pWvqLHOt5aPUvFb/FeZTmphI4CPiQ==",
|
||||
"devOptional": true,
|
||||
"license": "Apache-2.0"
|
||||
},
|
||||
"node_modules/@prisma/fetch-engine": {
|
||||
"version": "6.7.0",
|
||||
"resolved": "https://registry.npmjs.org/@prisma/fetch-engine/-/fetch-engine-6.7.0.tgz",
|
||||
"integrity": "sha512-zLlAGnrkmioPKJR4Yf7NfW3hftcvqeNNEHleMZK9yX7RZSkhmxacAYyfGsCcqRt47jiZ7RKdgE0Wh2fWnm7WsQ==",
|
||||
"version": "6.8.2",
|
||||
"resolved": "https://registry.npmjs.org/@prisma/fetch-engine/-/fetch-engine-6.8.2.tgz",
|
||||
"integrity": "sha512-lCvikWOgaLOfqXGacEKSNeenvj0n3qR5QvZUOmPE2e1Eh8cMYSobxonCg9rqM6FSdTfbpqp9xwhSAOYfNqSW0g==",
|
||||
"devOptional": true,
|
||||
"license": "Apache-2.0",
|
||||
"dependencies": {
|
||||
"@prisma/debug": "6.7.0",
|
||||
"@prisma/engines-version": "6.7.0-36.3cff47a7f5d65c3ea74883f1d736e41d68ce91ed",
|
||||
"@prisma/get-platform": "6.7.0"
|
||||
"@prisma/debug": "6.8.2",
|
||||
"@prisma/engines-version": "6.8.0-43.2060c79ba17c6bb9f5823312b6f6b7f4a845738e",
|
||||
"@prisma/get-platform": "6.8.2"
|
||||
}
|
||||
},
|
||||
"node_modules/@prisma/get-platform": {
|
||||
"version": "6.7.0",
|
||||
"resolved": "https://registry.npmjs.org/@prisma/get-platform/-/get-platform-6.7.0.tgz",
|
||||
"integrity": "sha512-i9IH5lO4fQwnMLvQLYNdgVh9TK3PuWBfQd7QLk/YurnAIg+VeADcZDbmhAi4XBBDD+hDif9hrKyASu0hbjwabw==",
|
||||
"version": "6.8.2",
|
||||
"resolved": "https://registry.npmjs.org/@prisma/get-platform/-/get-platform-6.8.2.tgz",
|
||||
"integrity": "sha512-vXSxyUgX3vm1Q70QwzwkjeYfRryIvKno1SXbIqwSptKwqKzskINnDUcx85oX+ys6ooN2ATGSD0xN2UTfg6Zcow==",
|
||||
"devOptional": true,
|
||||
"license": "Apache-2.0",
|
||||
"dependencies": {
|
||||
"@prisma/debug": "6.7.0"
|
||||
"@prisma/debug": "6.8.2"
|
||||
}
|
||||
},
|
||||
"node_modules/@redis/bloom": {
|
||||
@ -19115,7 +19128,7 @@
|
||||
"version": "3.6.0",
|
||||
"resolved": "https://registry.npmjs.org/esbuild-register/-/esbuild-register-3.6.0.tgz",
|
||||
"integrity": "sha512-H2/S7Pm8a9CL1uhp9OvjwrBh5Pvx0H8qVOxNu8Wed9Y7qv56MPtq+GGM8RJpq6glYJn9Wspr8uw7l55uyinNeg==",
|
||||
"devOptional": true,
|
||||
"dev": true,
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"debug": "^4.3.4"
|
||||
@ -29673,15 +29686,15 @@
|
||||
}
|
||||
},
|
||||
"node_modules/prisma": {
|
||||
"version": "6.7.0",
|
||||
"resolved": "https://registry.npmjs.org/prisma/-/prisma-6.7.0.tgz",
|
||||
"integrity": "sha512-vArg+4UqnQ13CVhc2WUosemwh6hr6cr6FY2uzDvCIFwH8pu8BXVv38PktoMLVjtX7sbYThxbnZF5YiR8sN2clw==",
|
||||
"version": "6.8.2",
|
||||
"resolved": "https://registry.npmjs.org/prisma/-/prisma-6.8.2.tgz",
|
||||
"integrity": "sha512-JNricTXQxzDtRS7lCGGOB4g5DJ91eg3nozdubXze3LpcMl1oWwcFddrj++Up3jnRE6X/3gB/xz3V+ecBk/eEGA==",
|
||||
"devOptional": true,
|
||||
"hasInstallScript": true,
|
||||
"license": "Apache-2.0",
|
||||
"dependencies": {
|
||||
"@prisma/config": "6.7.0",
|
||||
"@prisma/engines": "6.7.0"
|
||||
"@prisma/config": "6.8.2",
|
||||
"@prisma/engines": "6.8.2"
|
||||
},
|
||||
"bin": {
|
||||
"prisma": "build/index.js"
|
||||
@ -29689,9 +29702,6 @@
|
||||
"engines": {
|
||||
"node": ">=18.18"
|
||||
},
|
||||
"optionalDependencies": {
|
||||
"fsevents": "2.3.3"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"typescript": ">=5.1.0"
|
||||
},
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "ghostfolio",
|
||||
"version": "2.161.0",
|
||||
"version": "2.162.1",
|
||||
"homepage": "https://ghostfol.io",
|
||||
"license": "AGPL-3.0",
|
||||
"repository": "https://github.com/ghostfolio/ghostfolio",
|
||||
@ -88,7 +88,7 @@
|
||||
"@nestjs/platform-express": "11.1.0",
|
||||
"@nestjs/schedule": "6.0.0",
|
||||
"@nestjs/serve-static": "5.0.3",
|
||||
"@prisma/client": "6.7.0",
|
||||
"@prisma/client": "6.8.2",
|
||||
"@simplewebauthn/browser": "13.1.0",
|
||||
"@simplewebauthn/server": "13.1.1",
|
||||
"@stripe/stripe-js": "5.4.0",
|
||||
@ -194,7 +194,7 @@
|
||||
"nx": "20.8.1",
|
||||
"prettier": "3.5.3",
|
||||
"prettier-plugin-organize-attributes": "1.0.0",
|
||||
"prisma": "6.7.0",
|
||||
"prisma": "6.8.2",
|
||||
"react": "18.2.0",
|
||||
"react-dom": "18.2.0",
|
||||
"replace-in-file": "8.3.0",
|
||||
|
Loading…
x
Reference in New Issue
Block a user