update name to insights explorer

This commit is contained in:
MaysWind
2026-01-03 16:40:53 +08:00
parent 8be5e8aa1d
commit cc0996e0d2
37 changed files with 1714 additions and 1714 deletions
+3 -3
View File
@@ -1704,11 +1704,11 @@
"Transaction Calendar": "Transaction Calendar",
"Transaction Details": "Transaktionsdetails",
"Statistics & Analysis": "Statistiken & Analysen",
"Insights & Explore": "Insights & Explore",
"Insights Explorer": "Insights Explorer",
"Query": "Query",
"Data Table": "Data Table",
"Chart": "Chart",
"New Explore": "New Explore",
"New Exploration": "New Exploration",
"Add Query": "Add Query",
"Remove Query": "Remove Query",
"Modify Query Name": "Modify Query Name",
@@ -2186,7 +2186,7 @@
"Show Confirmation Every Time": "Bestätigung jedes mal anzeigen",
"Automatically Add Geolocation": "Geolocation automatisch hinzufügen",
"Always Show Transaction Pictures": "Always Show Transaction Pictures",
"Insights & Explore Page": "Insights & Explore Page",
"Insights Explorer Page": "Insights Explorer Page",
"Account List Page": "Account List Page",
"Accounts Included in Total": "Accounts Included in Total",
"Exchange Rates Data Page": "Wechselkursdatenseite",
+3 -3
View File
@@ -1704,11 +1704,11 @@
"Transaction Calendar": "Transaction Calendar",
"Transaction Details": "Transaction Details",
"Statistics & Analysis": "Statistics & Analysis",
"Insights & Explore": "Insights & Explore",
"Insights Explorer": "Insights Explorer",
"Query": "Query",
"Data Table": "Data Table",
"Chart": "Chart",
"New Explore": "New Explore",
"New Exploration": "New Exploration",
"Add Query": "Add Query",
"Remove Query": "Remove Query",
"Modify Query Name": "Modify Query Name",
@@ -2186,7 +2186,7 @@
"Show Confirmation Every Time": "Show Confirmation Every Time",
"Automatically Add Geolocation": "Automatically Add Geolocation",
"Always Show Transaction Pictures": "Always Show Transaction Pictures",
"Insights & Explore Page": "Insights & Explore Page",
"Insights Explorer Page": "Insights Explorer Page",
"Account List Page": "Account List Page",
"Accounts Included in Total": "Accounts Included in Total",
"Exchange Rates Data Page": "Exchange Rates Data Page",
+3 -3
View File
@@ -1704,11 +1704,11 @@
"Transaction Calendar": "Calendario de Transacciones",
"Transaction Details": "Detalles",
"Statistics & Analysis": "Estadísticas y Análisis",
"Insights & Explore": "Insights & Explore",
"Insights Explorer": "Insights Explorer",
"Query": "Query",
"Data Table": "Data Table",
"Chart": "Chart",
"New Explore": "New Explore",
"New Exploration": "New Exploration",
"Add Query": "Add Query",
"Remove Query": "Remove Query",
"Modify Query Name": "Modify Query Name",
@@ -2186,7 +2186,7 @@
"Show Confirmation Every Time": "Mostrar Confirmación Cada Vez",
"Automatically Add Geolocation": "Agregar Geolocalización Automáticamente",
"Always Show Transaction Pictures": "Always Show Transaction Pictures",
"Insights & Explore Page": "Insights & Explore Page",
"Insights Explorer Page": "Insights Explorer Page",
"Account List Page": "Página de Cuentas",
"Accounts Included in Total": "Cuentas Incluidas en el Total",
"Exchange Rates Data Page": "Página de Tipos de Cambio",
+3 -3
View File
@@ -1704,11 +1704,11 @@
"Transaction Calendar": "Calendrier des transactions",
"Transaction Details": "Détails de la transaction",
"Statistics & Analysis": "Statistiques et analyse",
"Insights & Explore": "Insights & Explore",
"Insights Explorer": "Insights Explorer",
"Query": "Query",
"Data Table": "Data Table",
"Chart": "Chart",
"New Explore": "New Explore",
"New Exploration": "New Exploration",
"Add Query": "Add Query",
"Remove Query": "Remove Query",
"Modify Query Name": "Modify Query Name",
@@ -2186,7 +2186,7 @@
"Show Confirmation Every Time": "Afficher la confirmation à chaque fois",
"Automatically Add Geolocation": "Ajouter automatiquement la géolocalisation",
"Always Show Transaction Pictures": "Toujours afficher les images de transaction",
"Insights & Explore Page": "Insights & Explore Page",
"Insights Explorer Page": "Insights Explorer Page",
"Account List Page": "Page de liste des comptes",
"Accounts Included in Total": "Comptes inclus dans le total",
"Exchange Rates Data Page": "Page des données de taux de change",
+11 -11
View File
@@ -143,12 +143,12 @@ import {
} from '@/core/statistics.ts';
import {
TransactionExploreConditionField,
TransactionExploreConditionOperator,
TransactionExploreDataDimension,
TransactionExploreValueMetric,
TransactionExploreChartType
} from '@/core/explore.ts';
TransactionExplorerConditionField,
TransactionExplorerConditionOperator,
TransactionExplorerDataDimension,
TransactionExplorerValueMetric,
TransactionExplorerChartType
} from '@/core/explorer.ts';
import {
type LocalizedImportFileCategoryAndTypes,
@@ -2389,11 +2389,11 @@ export function useI18n() {
getAllTransactionDefaultCategories,
getAllDisplayExchangeRates,
getAllSupportedImportFileCagtegoryAndTypes,
getAllTransactionExploreConditionFields: () => getLocalizedNameValue(TransactionExploreConditionField.values()),
getAllTransactionExploreConditionOperators: (operators?: TransactionExploreConditionOperator[]) => getLocalizedNameValue(operators ?? TransactionExploreConditionOperator.values()),
getAllTransactionExploreDataDimensions: (operators?: TransactionExploreDataDimension[]) => getLocalizedNameValue(operators ?? TransactionExploreDataDimension.values()),
getAllTransactionExploreValueMetrics: (operators?: TransactionExploreValueMetric[]) => getLocalizedNameValue(operators ?? TransactionExploreValueMetric.values()),
getAllTransactionExploreChartTypes: (operators?: TransactionExploreChartType[]) => getLocalizedNameValue(operators ?? TransactionExploreChartType.values()),
getAllTransactionExplorerConditionFields: () => getLocalizedNameValue(TransactionExplorerConditionField.values()),
getAllTransactionExplorerConditionOperators: (operators?: TransactionExplorerConditionOperator[]) => getLocalizedNameValue(operators ?? TransactionExplorerConditionOperator.values()),
getAllTransactionExplorerDataDimensions: (operators?: TransactionExplorerDataDimension[]) => getLocalizedNameValue(operators ?? TransactionExplorerDataDimension.values()),
getAllTransactionExplorerValueMetrics: (operators?: TransactionExplorerValueMetric[]) => getLocalizedNameValue(operators ?? TransactionExplorerValueMetric.values()),
getAllTransactionExplorerChartTypes: (operators?: TransactionExplorerChartType[]) => getLocalizedNameValue(operators ?? TransactionExplorerChartType.values()),
// get localized info
getLanguageInfo,
getMonthShortName,
+3 -3
View File
@@ -1704,11 +1704,11 @@
"Transaction Calendar": "Transaction Calendar",
"Transaction Details": "Dettagli transazione",
"Statistics & Analysis": "Statistiche e analisi",
"Insights & Explore": "Insights & Explore",
"Insights Explorer": "Insights Explorer",
"Query": "Query",
"Data Table": "Data Table",
"Chart": "Chart",
"New Explore": "New Explore",
"New Exploration": "New Exploration",
"Add Query": "Add Query",
"Remove Query": "Remove Query",
"Modify Query Name": "Modify Query Name",
@@ -2186,7 +2186,7 @@
"Show Confirmation Every Time": "Mostra conferma ogni volta",
"Automatically Add Geolocation": "Aggiungi automaticamente geolocalizzazione",
"Always Show Transaction Pictures": "Always Show Transaction Pictures",
"Insights & Explore Page": "Insights & Explore Page",
"Insights Explorer Page": "Insights Explorer Page",
"Account List Page": "Account List Page",
"Accounts Included in Total": "Accounts Included in Total",
"Exchange Rates Data Page": "Pagina dati tassi di cambio",
+3 -3
View File
@@ -1704,11 +1704,11 @@
"Transaction Calendar": "Transaction Calendar",
"Transaction Details": "取引の詳細",
"Statistics & Analysis": "統計と分析",
"Insights & Explore": "Insights & Explore",
"Insights Explorer": "Insights Explorer",
"Query": "Query",
"Data Table": "Data Table",
"Chart": "Chart",
"New Explore": "New Explore",
"New Exploration": "New Exploration",
"Add Query": "Add Query",
"Remove Query": "Remove Query",
"Modify Query Name": "Modify Query Name",
@@ -2186,7 +2186,7 @@
"Show Confirmation Every Time": "確認を毎回表示",
"Automatically Add Geolocation": "座標を自動的に追加",
"Always Show Transaction Pictures": "Always Show Transaction Pictures",
"Insights & Explore Page": "Insights & Explore Page",
"Insights Explorer Page": "Insights Explorer Page",
"Account List Page": "Account List Page",
"Accounts Included in Total": "Accounts Included in Total",
"Exchange Rates Data Page": "為替レートデータページ",
+3 -3
View File
@@ -1704,11 +1704,11 @@
"Transaction Calendar": "ವಹಿವಾಟು ಕ್ಯಾಲೆಂಡರ್",
"Transaction Details": "ವಹಿವಾಟಿನ ವಿವರಗಳು",
"Statistics & Analysis": "ಸಂಖ್ಯಾಶಾಸ್ತ್ರ ಮತ್ತು ವಿಶ್ಲೇಷಣೆ",
"Insights & Explore": "Insights & Explore",
"Insights Explorer": "Insights Explorer",
"Query": "Query",
"Data Table": "Data Table",
"Chart": "Chart",
"New Explore": "New Explore",
"New Exploration": "New Exploration",
"Add Query": "Add Query",
"Remove Query": "Remove Query",
"Modify Query Name": "Modify Query Name",
@@ -2186,7 +2186,7 @@
"Show Confirmation Every Time": "ಪ್ರತಿ ಬಾರಿ ದೃಢೀಕರಣ ತೋರಿಸಿ",
"Automatically Add Geolocation": "ಭೌಗೋಳಿಕ ಸ್ಥಾನವನ್ನು ಸ್ವಯಂ ಸೇರಿಸಿ",
"Always Show Transaction Pictures": "ವಹಿವಾಟು ಚಿತ್ರಗಳನ್ನು ಯಾವಾಗಲೂ ತೋರಿಸಿ",
"Insights & Explore Page": "Insights & Explore Page",
"Insights Explorer Page": "Insights Explorer Page",
"Account List Page": "ಖಾತೆ ಪಟ್ಟಿ ಪುಟ",
"Accounts Included in Total": "ಒಟ್ಟು ಮೊತ್ತದಲ್ಲಿ ಒಳಗೊಂಡ ಖಾತೆಗಳು",
"Exchange Rates Data Page": "ವಿನಿಮಯ ದರಗಳ ಪುಟ",
+3 -3
View File
@@ -1704,11 +1704,11 @@
"Transaction Calendar": "거래 달력",
"Transaction Details": "거래 세부사항",
"Statistics & Analysis": "통계 및 분석",
"Insights & Explore": "Insights & Explore",
"Insights Explorer": "Insights Explorer",
"Query": "Query",
"Data Table": "Data Table",
"Chart": "Chart",
"New Explore": "New Explore",
"New Exploration": "New Exploration",
"Add Query": "Add Query",
"Remove Query": "Remove Query",
"Modify Query Name": "Modify Query Name",
@@ -2186,7 +2186,7 @@
"Show Confirmation Every Time": "매번 확인 표시",
"Automatically Add Geolocation": "지리적 위치 자동 추가",
"Always Show Transaction Pictures": "거래 사진 항상 표시",
"Insights & Explore Page": "Insights & Explore Page",
"Insights Explorer Page": "Insights Explorer Page",
"Account List Page": "계좌 목록 페이지",
"Accounts Included in Total": "총계에 포함된 계좌",
"Exchange Rates Data Page": "환율 데이터 페이지",
+3 -3
View File
@@ -1704,11 +1704,11 @@
"Transaction Calendar": "Transactiekalender",
"Transaction Details": "Transactiedetails",
"Statistics & Analysis": "Statistieken & Analyse",
"Insights & Explore": "Insights & Explore",
"Insights Explorer": "Insights Explorer",
"Query": "Query",
"Data Table": "Data Table",
"Chart": "Chart",
"New Explore": "New Explore",
"New Exploration": "New Exploration",
"Add Query": "Add Query",
"Remove Query": "Remove Query",
"Modify Query Name": "Modify Query Name",
@@ -2186,7 +2186,7 @@
"Show Confirmation Every Time": "Elke keer bevestiging tonen",
"Automatically Add Geolocation": "Geolocatie automatisch toevoegen",
"Always Show Transaction Pictures": "Transactie-afbeeldingen altijd tonen",
"Insights & Explore Page": "Insights & Explore Page",
"Insights Explorer Page": "Insights Explorer Page",
"Account List Page": "Rekeningenpagina",
"Accounts Included in Total": "Rekeningen opgenomen in totaal",
"Exchange Rates Data Page": "Wisselkoersgegevenspagina",
+3 -3
View File
@@ -1704,11 +1704,11 @@
"Transaction Calendar": "Calendário de Transações",
"Transaction Details": "Detalhes da Transação",
"Statistics & Analysis": "Estatísticas e Análise",
"Insights & Explore": "Insights & Explore",
"Insights Explorer": "Insights Explorer",
"Query": "Query",
"Data Table": "Data Table",
"Chart": "Chart",
"New Explore": "New Explore",
"New Exploration": "New Exploration",
"Add Query": "Add Query",
"Remove Query": "Remove Query",
"Modify Query Name": "Modify Query Name",
@@ -2186,7 +2186,7 @@
"Show Confirmation Every Time": "Mostrar Confirmação Toda Vez",
"Automatically Add Geolocation": "Adicionar Geolocalização Automaticamente",
"Always Show Transaction Pictures": "Sempre Mostrar Imagens de Transações",
"Insights & Explore Page": "Insights & Explore Page",
"Insights Explorer Page": "Insights Explorer Page",
"Account List Page": "Account List Page",
"Accounts Included in Total": "Accounts Included in Total",
"Exchange Rates Data Page": "Página de Dados de Taxas de Câmbio",
+3 -3
View File
@@ -1704,11 +1704,11 @@
"Transaction Calendar": "Transaction Calendar",
"Transaction Details": "Детали транзакции",
"Statistics & Analysis": "Статистика и анализ",
"Insights & Explore": "Insights & Explore",
"Insights Explorer": "Insights Explorer",
"Query": "Query",
"Data Table": "Data Table",
"Chart": "Chart",
"New Explore": "New Explore",
"New Exploration": "New Exploration",
"Add Query": "Add Query",
"Remove Query": "Remove Query",
"Modify Query Name": "Modify Query Name",
@@ -2186,7 +2186,7 @@
"Show Confirmation Every Time": "Показывать подтверждение каждый раз",
"Automatically Add Geolocation": "Автоматически добавлять геолокацию",
"Always Show Transaction Pictures": "Always Show Transaction Pictures",
"Insights & Explore Page": "Insights & Explore Page",
"Insights Explorer Page": "Insights Explorer Page",
"Account List Page": "Account List Page",
"Accounts Included in Total": "Accounts Included in Total",
"Exchange Rates Data Page": "Страница данных о курсах валют",
+3 -3
View File
@@ -1704,11 +1704,11 @@
"Transaction Calendar": "Koledar transakcij",
"Transaction Details": "Podrobnosti transakcije",
"Statistics & Analysis": "Statistika in analiza",
"Insights & Explore": "Vpogledi in raziskovanje",
"Insights Explorer": "Vpogledi in raziskovanje",
"Query": "Poizvedba",
"Data Table": "Podatkovna tabela",
"Chart": "Grafikon",
"New Explore": "Novo raziskovanje",
"New Exploration": "Novo raziskovanje",
"Add Query": "Dodaj poizvedbo",
"Remove Query": "Odstrani poizvedbo",
"Modify Query Name": "Spremeni ime poizvedbe",
@@ -2186,7 +2186,7 @@
"Show Confirmation Every Time": "Vsakič prikaži potrditev",
"Automatically Add Geolocation": "Samodejno dodaj geolokacijo",
"Always Show Transaction Pictures": "Vedno prikaži slike transakcij",
"Insights & Explore Page": "Stran za vpoglede in raziskovanje",
"Insights Explorer Page": "Stran za vpoglede in raziskovanje",
"Account List Page": "Stran s seznamom računov",
"Accounts Included in Total": "Računi vključeni v skupno vsoto",
"Exchange Rates Data Page": "Stran z menjalnimi tečaji",
+3 -3
View File
@@ -1704,11 +1704,11 @@
"Transaction Calendar": "ปฏิทินธุรกรรม",
"Transaction Details": "รายละเอียดธุรกรรม",
"Statistics & Analysis": "สถิติ & การวิเคราะห์",
"Insights & Explore": "Insights & Explore",
"Insights Explorer": "Insights Explorer",
"Query": "Query",
"Data Table": "Data Table",
"Chart": "Chart",
"New Explore": "New Explore",
"New Exploration": "New Exploration",
"Add Query": "Add Query",
"Remove Query": "Remove Query",
"Modify Query Name": "Modify Query Name",
@@ -2186,7 +2186,7 @@
"Show Confirmation Every Time": "แสดงการยืนยันทุกครั้ง",
"Automatically Add Geolocation": "เพิ่มตำแหน่งทางภูมิศาสตร์อัตโนมัติ",
"Always Show Transaction Pictures": "แสดงรูปภาพรายการเสมอ",
"Insights & Explore Page": "Insights & Explore Page",
"Insights Explorer Page": "Insights Explorer Page",
"Account List Page": "หน้าบัญชี",
"Accounts Included in Total": "บัญชีที่รวมในผลรวม",
"Exchange Rates Data Page": "หน้าข้อมูลอัตราแลกเปลี่ยน",
+3 -3
View File
@@ -1704,11 +1704,11 @@
"Transaction Calendar": "İşlem Takvimi",
"Transaction Details": "İşlem Detayları",
"Statistics & Analysis": "İstatistik & Analiz",
"Insights & Explore": "Insights & Explore",
"Insights Explorer": "Insights Explorer",
"Query": "Query",
"Data Table": "Data Table",
"Chart": "Chart",
"New Explore": "New Explore",
"New Exploration": "New Exploration",
"Add Query": "Add Query",
"Remove Query": "Remove Query",
"Modify Query Name": "Modify Query Name",
@@ -2186,7 +2186,7 @@
"Show Confirmation Every Time": "Her Seferinde Onay Göster",
"Automatically Add Geolocation": "Otomatik Olarak Konum Ekle",
"Always Show Transaction Pictures": "İşlem Resimlerini Her Zaman Göster",
"Insights & Explore Page": "Insights & Explore Page",
"Insights Explorer Page": "Insights Explorer Page",
"Account List Page": "Hesap Listesi Sayfası",
"Accounts Included in Total": "Toplama Dahil Edilen Hesaplar",
"Exchange Rates Data Page": "Döviz Kuru Verileri Sayfası",
+3 -3
View File
@@ -1704,11 +1704,11 @@
"Transaction Calendar": "Transaction Calendar",
"Transaction Details": "Деталі по транзакціях",
"Statistics & Analysis": "Статистика та аналіз",
"Insights & Explore": "Insights & Explore",
"Insights Explorer": "Insights Explorer",
"Query": "Query",
"Data Table": "Data Table",
"Chart": "Chart",
"New Explore": "New Explore",
"New Exploration": "New Exploration",
"Add Query": "Add Query",
"Remove Query": "Remove Query",
"Modify Query Name": "Modify Query Name",
@@ -2186,7 +2186,7 @@
"Show Confirmation Every Time": "Показувати підтвердження щоразу",
"Automatically Add Geolocation": "Автоматично додавати геолокацію",
"Always Show Transaction Pictures": "Always Show Transaction Pictures",
"Insights & Explore Page": "Insights & Explore Page",
"Insights Explorer Page": "Insights Explorer Page",
"Account List Page": "Account List Page",
"Accounts Included in Total": "Accounts Included in Total",
"Exchange Rates Data Page": "Сторінка курсів валют",
+3 -3
View File
@@ -1704,11 +1704,11 @@
"Transaction Calendar": "Transaction Calendar",
"Transaction Details": "Chi tiết giao dịch",
"Statistics & Analysis": "Thống kê & Phân tích",
"Insights & Explore": "Insights & Explore",
"Insights Explorer": "Insights Explorer",
"Query": "Query",
"Data Table": "Data Table",
"Chart": "Chart",
"New Explore": "New Explore",
"New Exploration": "New Exploration",
"Add Query": "Add Query",
"Remove Query": "Remove Query",
"Modify Query Name": "Modify Query Name",
@@ -2186,7 +2186,7 @@
"Show Confirmation Every Time": "Hiển thị xác nhận mỗi lần",
"Automatically Add Geolocation": "Tự động thêm vị trí địa lý",
"Always Show Transaction Pictures": "Always Show Transaction Pictures",
"Insights & Explore Page": "Insights & Explore Page",
"Insights Explorer Page": "Insights Explorer Page",
"Account List Page": "Account List Page",
"Accounts Included in Total": "Accounts Included in Total",
"Exchange Rates Data Page": "Trang dữ liệu tỷ giá hối đoái",
+3 -3
View File
@@ -1704,11 +1704,11 @@
"Transaction Calendar": "交易日历",
"Transaction Details": "交易详情",
"Statistics & Analysis": "统计分析",
"Insights & Explore": "洞察探索",
"Insights Explorer": "洞察探索",
"Query": "查询",
"Data Table": "数据表格",
"Chart": "图表",
"New Explore": "新的探索",
"New Exploration": "新的探索",
"Add Query": "添加查询",
"Remove Query": "移除查询",
"Modify Query Name": "修改查询名称",
@@ -2186,7 +2186,7 @@
"Show Confirmation Every Time": "每次提示确认",
"Automatically Add Geolocation": "自动添加地理位置",
"Always Show Transaction Pictures": "总是显示交易图片",
"Insights & Explore Page": "洞察探索页面",
"Insights Explorer Page": "洞察探索页面",
"Account List Page": "账户列表页面",
"Accounts Included in Total": "计入总金额的账户",
"Exchange Rates Data Page": "汇率数据页面",
+3 -3
View File
@@ -1704,11 +1704,11 @@
"Transaction Calendar": "交易日曆",
"Transaction Details": "交易詳情",
"Statistics & Analysis": "統計分析",
"Insights & Explore": "洞察探索",
"Insights Explorer": "洞察探索",
"Query": "查詢",
"Data Table": "資料表格",
"Chart": "圖表",
"New Explore": "新的探索",
"New Exploration": "新的探索",
"Add Query": "新增查詢",
"Remove Query": "移除查詢",
"Modify Query Name": "修改查詢名稱",
@@ -2186,7 +2186,7 @@
"Show Confirmation Every Time": "每次提示確認",
"Automatically Add Geolocation": "自動新增地理位置",
"Always Show Transaction Pictures": "總是顯示交易圖片",
"Insights & Explore Page": "洞察探索頁面",
"Insights Explorer Page": "洞察探索頁面",
"Account List Page": "帳戶清單頁面",
"Accounts Included in Total": "計入總金額的帳戶",
"Exchange Rates Data Page": "匯率資料頁面",