add asset trends in statistics & analysis (#314)

This commit is contained in:
MaysWind
2025-11-09 22:51:46 +08:00
parent d3abb279e3
commit 4c8bb5a0b7
52 changed files with 1917 additions and 266 deletions
+4
View File
@@ -1982,6 +1982,7 @@
"Unable to retrieve transaction statistics": "Transaktionsstatistiken können nicht abgerufen werden",
"Categorical Analysis": "Kategorische Analyse",
"Trend Analysis": "Trendanalyse",
"Asset Trends": "Asset Trends",
"Total Amount": "Gesamtbetrag",
"Total Assets": "Gesamtvermögen",
"Total Liabilities": "Gesamtverbindlichkeiten",
@@ -1990,6 +1991,7 @@
"Total Outflows": "Total Outflows",
"Total Inflows": "Total Inflows",
"Net Income": "Net Income",
"Net Worth": "Net Worth",
"Net Cash Flow": "Net Cash Flow",
"Total Transactions": "Total Transactions",
"Opening Balance": "Opening Balance",
@@ -2012,6 +2014,7 @@
"Common Settings": "Allgemeine Einstellungen",
"Categorical Analysis Settings": "Einstellungen für kategorische Analyse",
"Trend Analysis Settings": "Einstellungen für Trendanalyse",
"Asset Trends Settings": "Asset Trends Settings",
"Chart Type": "Diagrammtyp",
"Default Chart Type": "Standarddiagrammtyp",
"Chart Data Type": "Diagrammdatentyp",
@@ -2033,6 +2036,7 @@
"Sort by Display Order": "Nach Anzeigereihenfolge sortieren",
"Sort by Name": "Nach Name sortieren",
"Time Granularity": "Time Granularity",
"Aggregate by Day": "Aggregate by Day",
"Aggregate by Month": "Nach Monat aggregieren",
"Aggregate by Quarter": "Nach Quartal aggregieren",
"Aggregate by Year": "Nach Jahr aggregieren",
+4
View File
@@ -1982,6 +1982,7 @@
"Unable to retrieve transaction statistics": "Unable to retrieve transaction statistics",
"Categorical Analysis": "Categorical Analysis",
"Trend Analysis": "Trend Analysis",
"Asset Trends": "Asset Trends",
"Total Amount": "Total Amount",
"Total Assets": "Total Assets",
"Total Liabilities": "Total Liabilities",
@@ -1990,6 +1991,7 @@
"Total Outflows": "Total Outflows",
"Total Inflows": "Total Inflows",
"Net Income": "Net Income",
"Net Worth": "Net Worth",
"Net Cash Flow": "Net Cash Flow",
"Total Transactions": "Total Transactions",
"Opening Balance": "Opening Balance",
@@ -2012,6 +2014,7 @@
"Common Settings": "Common Settings",
"Categorical Analysis Settings": "Categorical Analysis Settings",
"Trend Analysis Settings": "Trend Analysis Settings",
"Asset Trends Settings": "Asset Trends Settings",
"Chart Type": "Chart Type",
"Default Chart Type": "Default Chart Type",
"Chart Data Type": "Chart Data Type",
@@ -2033,6 +2036,7 @@
"Sort by Display Order": "Sort by Display Order",
"Sort by Name": "Sort by Name",
"Time Granularity": "Time Granularity",
"Aggregate by Day": "Aggregate by Day",
"Aggregate by Month": "Aggregate by Month",
"Aggregate by Quarter": "Aggregate by Quarter",
"Aggregate by Year": "Aggregate by Year",
+4
View File
@@ -1982,6 +1982,7 @@
"Unable to retrieve transaction statistics": "No se pueden recuperar estadísticas de transacciones",
"Categorical Analysis": "Análisis categórico",
"Trend Analysis": "Análisis de tendencias",
"Asset Trends": "Asset Trends",
"Total Amount": "Importe Total",
"Total Assets": "Activos totales",
"Total Liabilities": "Pasivos totales",
@@ -1990,6 +1991,7 @@
"Total Outflows": "Total Outflows",
"Total Inflows": "Total Inflows",
"Net Income": "Net Income",
"Net Worth": "Net Worth",
"Net Cash Flow": "Net Cash Flow",
"Total Transactions": "Total Transactions",
"Opening Balance": "Opening Balance",
@@ -2012,6 +2014,7 @@
"Common Settings": "Configuraciones comunes",
"Categorical Analysis Settings": "Configuración de análisis categórico",
"Trend Analysis Settings": "Configuración de análisis de tendencias",
"Asset Trends Settings": "Asset Trends Settings",
"Chart Type": "Tipo de gráfico",
"Default Chart Type": "Tipo de gráfico predeterminado",
"Chart Data Type": "Tipo de datos del gráfico",
@@ -2033,6 +2036,7 @@
"Sort by Display Order": "Ordenar por orden de visualización",
"Sort by Name": "Ordenar por Nombre",
"Time Granularity": "Time Granularity",
"Aggregate by Day": "Aggregate by Day",
"Aggregate by Month": "Agregado por mes",
"Aggregate by Quarter": "Agregado por trimestre",
"Aggregate by Year": "Agregado por año",
+4
View File
@@ -1982,6 +1982,7 @@
"Unable to retrieve transaction statistics": "Impossible de récupérer les statistiques de transaction",
"Categorical Analysis": "Analyse catégorielle",
"Trend Analysis": "Analyse de tendance",
"Asset Trends": "Asset Trends",
"Total Amount": "Montant total",
"Total Assets": "Total des actifs",
"Total Liabilities": "Total des passifs",
@@ -1990,6 +1991,7 @@
"Total Outflows": "Total des sorties",
"Total Inflows": "Total des entrées",
"Net Income": "Revenus nets",
"Net Worth": "Net Worth",
"Net Cash Flow": "Flux de trésorerie net",
"Total Transactions": "Total des transactions",
"Opening Balance": "Solde d'ouverture",
@@ -2012,6 +2014,7 @@
"Common Settings": "Paramètres communs",
"Categorical Analysis Settings": "Paramètres d'analyse catégorielle",
"Trend Analysis Settings": "Paramètres d'analyse de tendance",
"Asset Trends Settings": "Asset Trends Settings",
"Chart Type": "Type de graphique",
"Default Chart Type": "Type de graphique par défaut",
"Chart Data Type": "Type de données du graphique",
@@ -2033,6 +2036,7 @@
"Sort by Display Order": "Trier par ordre d'affichage",
"Sort by Name": "Trier par nom",
"Time Granularity": "Granularité temporelle",
"Aggregate by Day": "Aggregate by Day",
"Aggregate by Month": "Agréger par mois",
"Aggregate by Quarter": "Agréger par trimestre",
"Aggregate by Year": "Agréger par année",
+4 -4
View File
@@ -598,9 +598,9 @@ export function useI18n() {
return ret;
}
function getLocalizedChartDateAggregationTypeAndDisplayName(fullName: boolean): TypeAndDisplayName[] {
function getLocalizedChartDateAggregationTypeAndDisplayName(analysisType: StatisticsAnalysisType, fullName: boolean): TypeAndDisplayName[] {
const ret: TypeAndDisplayName[] = [];
const allTypes: ChartDateAggregationType[] = ChartDateAggregationType.values();
const allTypes: ChartDateAggregationType[] = ChartDateAggregationType.values(analysisType);
for (const type of allTypes) {
ret.push({
@@ -2354,8 +2354,8 @@ export function useI18n() {
getAllAccountBalanceTrendChartTypes: () => getLocalizedDisplayNameAndType(AccountBalanceTrendChartType.values()),
getAllStatisticsChartDataTypes: (analysisType: StatisticsAnalysisType, withDesktopOnlyChart?: boolean) => getLocalizedDisplayNameAndType(ChartDataType.values(analysisType, withDesktopOnlyChart)),
getAllStatisticsSortingTypes: () => getLocalizedDisplayNameAndType(ChartSortingType.values()),
getAllStatisticsDateAggregationTypes: () => getLocalizedChartDateAggregationTypeAndDisplayName(true),
getAllStatisticsDateAggregationTypesWithShortName: () => getLocalizedChartDateAggregationTypeAndDisplayName(false),
getAllStatisticsDateAggregationTypes: (analysisType: StatisticsAnalysisType) => getLocalizedChartDateAggregationTypeAndDisplayName(analysisType, true),
getAllStatisticsDateAggregationTypesWithShortName: (analysisType: StatisticsAnalysisType) => getLocalizedChartDateAggregationTypeAndDisplayName(analysisType, false),
getAllTransactionEditScopeTypes: () => getLocalizedDisplayNameAndType(TransactionEditScopeType.values()),
getAllTransactionTagFilterTypes: () => getLocalizedDisplayNameAndType(TransactionTagFilterType.values()),
getAllTransactionScheduledFrequencyTypes: () => getLocalizedDisplayNameAndType(ScheduledTemplateFrequencyType.values()),
+4
View File
@@ -1982,6 +1982,7 @@
"Unable to retrieve transaction statistics": "Impossibile recuperare le statistiche delle transazioni",
"Categorical Analysis": "Analisi per categoria",
"Trend Analysis": "Analisi dell'andamento",
"Asset Trends": "Asset Trends",
"Total Amount": "Importo totale",
"Total Assets": "Patrimonio totale",
"Total Liabilities": "Passività totali",
@@ -1990,6 +1991,7 @@
"Total Outflows": "Total Outflows",
"Total Inflows": "Total Inflows",
"Net Income": "Net Income",
"Net Worth": "Net Worth",
"Net Cash Flow": "Net Cash Flow",
"Total Transactions": "Total Transactions",
"Opening Balance": "Opening Balance",
@@ -2012,6 +2014,7 @@
"Common Settings": "Impostazioni comuni",
"Categorical Analysis Settings": "Impostazioni analisi per categoria",
"Trend Analysis Settings": "Impostazioni analisi dell'andamento",
"Asset Trends Settings": "Asset Trends Settings",
"Chart Type": "Tipo di grafico",
"Default Chart Type": "Tipo di grafico predefinito",
"Chart Data Type": "Tipo di dati grafico",
@@ -2033,6 +2036,7 @@
"Sort by Display Order": "Ordina per ordine di visualizzazione",
"Sort by Name": "Ordina per nome",
"Time Granularity": "Time Granularity",
"Aggregate by Day": "Aggregate by Day",
"Aggregate by Month": "Aggrega per mese",
"Aggregate by Quarter": "Aggrega per trimestre",
"Aggregate by Year": "Aggrega per anno",
+4
View File
@@ -1982,6 +1982,7 @@
"Unable to retrieve transaction statistics": "取引統計を取得できません",
"Categorical Analysis": "カテゴリ分析",
"Trend Analysis": "傾向分析",
"Asset Trends": "Asset Trends",
"Total Amount": "合計金額",
"Total Assets": "総資産",
"Total Liabilities": "総負債",
@@ -1990,6 +1991,7 @@
"Total Outflows": "Total Outflows",
"Total Inflows": "Total Inflows",
"Net Income": "Net Income",
"Net Worth": "Net Worth",
"Net Cash Flow": "Net Cash Flow",
"Total Transactions": "Total Transactions",
"Opening Balance": "Opening Balance",
@@ -2012,6 +2014,7 @@
"Common Settings": "共通設定",
"Categorical Analysis Settings": "カテゴリ分析設定",
"Trend Analysis Settings": "傾向分析設定",
"Asset Trends Settings": "Asset Trends Settings",
"Chart Type": "グラフの種類",
"Default Chart Type": "デフォルトのグラフの種類",
"Chart Data Type": "グラフデータの種類",
@@ -2033,6 +2036,7 @@
"Sort by Display Order": "表示で並べ替え",
"Sort by Name": "名前で並べ替え",
"Time Granularity": "Time Granularity",
"Aggregate by Day": "Aggregate by Day",
"Aggregate by Month": "月ごとに集計",
"Aggregate by Quarter": "四半期ごとに集計",
"Aggregate by Year": "年ごとに集計",
+4
View File
@@ -1982,6 +1982,7 @@
"Unable to retrieve transaction statistics": "거래 통계를 검색할 수 없습니다",
"Categorical Analysis": "범주 분석",
"Trend Analysis": "추세 분석",
"Asset Trends": "Asset Trends",
"Total Amount": "총 금액",
"Total Assets": "총 자산",
"Total Liabilities": "총 부채",
@@ -1990,6 +1991,7 @@
"Total Outflows": "총 유출",
"Total Inflows": "총 유입",
"Net Income": "순수익",
"Net Worth": "Net Worth",
"Net Cash Flow": "순현금흐름",
"Total Transactions": "총 거래 수",
"Opening Balance": "기초 잔액",
@@ -2012,6 +2014,7 @@
"Common Settings": "일반 설정",
"Categorical Analysis Settings": "범주 분석 설정",
"Trend Analysis Settings": "추세 분석 설정",
"Asset Trends Settings": "Asset Trends Settings",
"Chart Type": "차트 유형",
"Default Chart Type": "기본 차트 유형",
"Chart Data Type": "차트 데이터 유형",
@@ -2033,6 +2036,7 @@
"Sort by Display Order": "표시 순서별 정렬",
"Sort by Name": "이름별 정렬",
"Time Granularity": "시간 세분화",
"Aggregate by Day": "Aggregate by Day",
"Aggregate by Month": "월별 집계",
"Aggregate by Quarter": "분기별 집계",
"Aggregate by Year": "연도별 집계",
+4
View File
@@ -1982,6 +1982,7 @@
"Unable to retrieve transaction statistics": "Kan transactiestatistieken niet ophalen",
"Categorical Analysis": "Categorische analyse",
"Trend Analysis": "Trendanalyse",
"Asset Trends": "Asset Trends",
"Total Amount": "Totaalbedrag",
"Total Assets": "Totaal activa",
"Total Liabilities": "Totaal passiva",
@@ -1990,6 +1991,7 @@
"Total Outflows": "Totaal uitgaand",
"Total Inflows": "Totaal inkomend",
"Net Income": "Netto-inkomen",
"Net Worth": "Net Worth",
"Net Cash Flow": "Netto-kasstroom",
"Total Transactions": "Totaal transacties",
"Opening Balance": "Openingssaldo",
@@ -2012,6 +2014,7 @@
"Common Settings": "Algemene instellingen",
"Categorical Analysis Settings": "Instellingen categorische analyse",
"Trend Analysis Settings": "Instellingen trendanalyse",
"Asset Trends Settings": "Asset Trends Settings",
"Chart Type": "Diagramtype",
"Default Chart Type": "Standaard diagramtype",
"Chart Data Type": "Diagram-gegevenstype",
@@ -2033,6 +2036,7 @@
"Sort by Display Order": "Sorteren op weergavevolgorde",
"Sort by Name": "Sorteren op naam",
"Time Granularity": "Tijdgranulariteit",
"Aggregate by Day": "Aggregate by Day",
"Aggregate by Month": "Groeperen per maand",
"Aggregate by Quarter": "Groeperen per kwartaal",
"Aggregate by Year": "Groeperen per jaar",
+4
View File
@@ -1982,6 +1982,7 @@
"Unable to retrieve transaction statistics": "Não é possível recuperar estatísticas da transação",
"Categorical Analysis": "Análise Categórica",
"Trend Analysis": "Análise de Tendência",
"Asset Trends": "Asset Trends",
"Total Amount": "Montante Total",
"Total Assets": "Total de Ativos",
"Total Liabilities": "Total de Passivos",
@@ -1990,6 +1991,7 @@
"Total Outflows": "Total Outflows",
"Total Inflows": "Total Inflows",
"Net Income": "Net Income",
"Net Worth": "Net Worth",
"Net Cash Flow": "Net Cash Flow",
"Total Transactions": "Total Transactions",
"Opening Balance": "Opening Balance",
@@ -2012,6 +2014,7 @@
"Common Settings": "Configurações Comuns",
"Categorical Analysis Settings": "Configurações de Análise Categórica",
"Trend Analysis Settings": "Configurações de Análise de Tendência",
"Asset Trends Settings": "Asset Trends Settings",
"Chart Type": "Tipo de Gráfico",
"Default Chart Type": "Tipo de Gráfico Padrão",
"Chart Data Type": "Tipo de Dados do Gráfico",
@@ -2033,6 +2036,7 @@
"Sort by Display Order": "Classificar por Ordem de Exibição",
"Sort by Name": "Classificar por Nome",
"Time Granularity": "Time Granularity",
"Aggregate by Day": "Aggregate by Day",
"Aggregate by Month": "Agregado por Mês",
"Aggregate by Quarter": "Agregado por Trimestre",
"Aggregate by Year": "Agregado por Ano",
+4
View File
@@ -1982,6 +1982,7 @@
"Unable to retrieve transaction statistics": "Не удалось получить статистику транзакций",
"Categorical Analysis": "Категориальный анализ",
"Trend Analysis": "Анализ тенденций",
"Asset Trends": "Asset Trends",
"Total Amount": "Общая сумма",
"Total Assets": "Общие активы",
"Total Liabilities": "Общие обязательства",
@@ -1990,6 +1991,7 @@
"Total Outflows": "Total Outflows",
"Total Inflows": "Total Inflows",
"Net Income": "Net Income",
"Net Worth": "Net Worth",
"Net Cash Flow": "Net Cash Flow",
"Total Transactions": "Total Transactions",
"Opening Balance": "Opening Balance",
@@ -2012,6 +2014,7 @@
"Common Settings": "Общие настройки",
"Categorical Analysis Settings": "Настройки категориального анализа",
"Trend Analysis Settings": "Настройки анализа тенденций",
"Asset Trends Settings": "Asset Trends Settings",
"Chart Type": "Тип диаграммы",
"Default Chart Type": "Тип диаграммы по умолчанию",
"Chart Data Type": "Тип данных диаграммы",
@@ -2033,6 +2036,7 @@
"Sort by Display Order": "Сортировать по порядку отображения",
"Sort by Name": "Сортировать по имени",
"Time Granularity": "Time Granularity",
"Aggregate by Day": "Aggregate by Day",
"Aggregate by Month": "Агрегировать по месяцам",
"Aggregate by Quarter": "Агрегировать по кварталам",
"Aggregate by Year": "Агрегировать по годам",
+4
View File
@@ -1982,6 +1982,7 @@
"Unable to retrieve transaction statistics": "ไม่สามารถดึงสถิติรายการได้",
"Categorical Analysis": "วิเคราะห์ตามหมวดหมู่",
"Trend Analysis": "วิเคราะห์แนวโน้ม",
"Asset Trends": "Asset Trends",
"Total Amount": "จำนวนรวม",
"Total Assets": "สินทรัพย์รวม",
"Total Liabilities": "หนี้สินรวม",
@@ -1990,6 +1991,7 @@
"Total Outflows": "เงินไหลออกรวม",
"Total Inflows": "เงินไหลเข้ารวม",
"Net Income": "รายได้สุทธิ",
"Net Worth": "Net Worth",
"Net Cash Flow": "กระแสเงินสดสุทธิ",
"Total Transactions": "จำนวนรายการทั้งหมด",
"Opening Balance": "ยอดเริ่มต้น",
@@ -2012,6 +2014,7 @@
"Common Settings": "การตั้งค่าทั่วไป",
"Categorical Analysis Settings": "การตั้งค่าวิเคราะห์ตามหมวดหมู่",
"Trend Analysis Settings": "การตั้งค่าวิเคราะห์แนวโน้ม",
"Asset Trends Settings": "Asset Trends Settings",
"Chart Type": "ประเภทกราฟ",
"Default Chart Type": "ประเภทกราฟเริ่มต้น",
"Chart Data Type": "ประเภทข้อมูลกราฟ",
@@ -2033,6 +2036,7 @@
"Sort by Display Order": "เรียงตามลำดับการแสดง",
"Sort by Name": "เรียงตามชื่อ",
"Time Granularity": "ความละเอียดเวลา",
"Aggregate by Day": "Aggregate by Day",
"Aggregate by Month": "รวมตามเดือน",
"Aggregate by Quarter": "รวมตามไตรมาส",
"Aggregate by Year": "รวมตามปี",
+4
View File
@@ -1982,6 +1982,7 @@
"Unable to retrieve transaction statistics": "Не вдалося отримати статистику транзакцій",
"Categorical Analysis": "Аналіз за категоріями",
"Trend Analysis": "Аналіз трендів",
"Asset Trends": "Asset Trends",
"Total Amount": "Загальна сума",
"Total Assets": "Загальні активи",
"Total Liabilities": "Загальні зобов’язання",
@@ -1990,6 +1991,7 @@
"Total Outflows": "Total Outflows",
"Total Inflows": "Total Inflows",
"Net Income": "Net Income",
"Net Worth": "Net Worth",
"Net Cash Flow": "Net Cash Flow",
"Total Transactions": "Total Transactions",
"Opening Balance": "Opening Balance",
@@ -2012,6 +2014,7 @@
"Common Settings": "Загальні налаштування",
"Categorical Analysis Settings": "Налаштування аналізу за категоріями",
"Trend Analysis Settings": "Налаштування аналізу трендів",
"Asset Trends Settings": "Asset Trends Settings",
"Chart Type": "Тип діаграми",
"Default Chart Type": "Тип діаграми за замовчуванням",
"Chart Data Type": "Тип даних діаграми",
@@ -2033,6 +2036,7 @@
"Sort by Display Order": "Сортувати за порядком відображення",
"Sort by Name": "Сортувати за назвою",
"Time Granularity": "Time Granularity",
"Aggregate by Day": "Aggregate by Day",
"Aggregate by Month": "Агрегувати за місяцями",
"Aggregate by Quarter": "Агрегувати за кварталами",
"Aggregate by Year": "Агрегувати за роками",
+4
View File
@@ -1982,6 +1982,7 @@
"Unable to retrieve transaction statistics": "Không thể lấy thống kê giao dịch",
"Categorical Analysis": "Phân tích theo danh mục",
"Trend Analysis": "Phân tích xu hướng",
"Asset Trends": "Asset Trends",
"Total Amount": "Tổng số tiền",
"Total Assets": "Tổng tài sản",
"Total Liabilities": "Tổng nợ phải trả",
@@ -1990,6 +1991,7 @@
"Total Outflows": "Total Outflows",
"Total Inflows": "Total Inflows",
"Net Income": "Net Income",
"Net Worth": "Net Worth",
"Net Cash Flow": "Net Cash Flow",
"Total Transactions": "Total Transactions",
"Opening Balance": "Opening Balance",
@@ -2012,6 +2014,7 @@
"Common Settings": "Cài đặt chung",
"Categorical Analysis Settings": "Cài đặt phân tích theo danh mục",
"Trend Analysis Settings": "Cài đặt phân tích xu hướng",
"Asset Trends Settings": "Asset Trends Settings",
"Chart Type": "Loại biểu đồ",
"Default Chart Type": "Loại biểu đồ mặc định",
"Chart Data Type": "Loại dữ liệu biểu đồ",
@@ -2033,6 +2036,7 @@
"Sort by Display Order": "Sắp xếp theo thứ tự hiển thị",
"Sort by Name": "Sắp xếp theo tên",
"Time Granularity": "Time Granularity",
"Aggregate by Day": "Aggregate by Day",
"Aggregate by Month": "Tổng hợp theo tháng",
"Aggregate by Quarter": "Tổng hợp theo quý",
"Aggregate by Year": "Tổng hợp theo năm",
+4
View File
@@ -1982,6 +1982,7 @@
"Unable to retrieve transaction statistics": "无法获取交易统计数据",
"Categorical Analysis": "分类分析",
"Trend Analysis": "趋势分析",
"Asset Trends": "资产趋势",
"Total Amount": "总金额",
"Total Assets": "总资产",
"Total Liabilities": "总负债",
@@ -1990,6 +1991,7 @@
"Total Outflows": "总流出",
"Total Inflows": "总流入",
"Net Income": "净收入",
"Net Worth": "净资产",
"Net Cash Flow": "净现金流",
"Total Transactions": "总交易数",
"Opening Balance": "期初余额",
@@ -2012,6 +2014,7 @@
"Common Settings": "通用设置",
"Categorical Analysis Settings": "分类分析设置",
"Trend Analysis Settings": "趋势分析设置",
"Asset Trends Settings": "资产趋势设置",
"Chart Type": "图表类型",
"Default Chart Type": "默认图表类型",
"Chart Data Type": "图表数据类型",
@@ -2033,6 +2036,7 @@
"Sort by Display Order": "按显示顺序排序",
"Sort by Name": "按名称排序",
"Time Granularity": "时间粒度",
"Aggregate by Day": "按日聚合",
"Aggregate by Month": "按月聚合",
"Aggregate by Quarter": "按季度聚合",
"Aggregate by Year": "按年聚合",
+4
View File
@@ -1982,6 +1982,7 @@
"Unable to retrieve transaction statistics": "無法取得交易統計資料",
"Categorical Analysis": "分類分析",
"Trend Analysis": "趨勢分析",
"Asset Trends": "資產趨勢",
"Total Amount": "總金額",
"Total Assets": "總資產",
"Total Liabilities": "總負債",
@@ -1990,6 +1991,7 @@
"Total Outflows": "總流出",
"Total Inflows": "總流入",
"Net Income": "淨收入",
"Net Worth": "淨資產",
"Net Cash Flow": "淨現金流量",
"Total Transactions": "總交易數",
"Opening Balance": "期初餘額",
@@ -2012,6 +2014,7 @@
"Common Settings": "一般設定",
"Categorical Analysis Settings": "分類分析設定",
"Trend Analysis Settings": "趨勢分析設定",
"Asset Trends Settings": "資產趨勢設定",
"Chart Type": "圖表類型",
"Default Chart Type": "預設圖表類型",
"Chart Data Type": "圖表資料類型",
@@ -2033,6 +2036,7 @@
"Sort by Display Order": "依顯示順序排序",
"Sort by Name": "依名稱排序",
"Time Granularity": "時間粒度",
"Aggregate by Day": "依日彙整",
"Aggregate by Month": "依月份彙整",
"Aggregate by Quarter": "依季度彙整",
"Aggregate by Year": "依年份彙整",