-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathen.ts
More file actions
68 lines (57 loc) · 1.9 KB
/
Copy pathen.ts
File metadata and controls
68 lines (57 loc) · 1.9 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
import type { Messages } from './types'
const en: Messages = {
// App
appTitle: 'Literature Matrix',
appSubtitle: 'AI-powered academic paper search & structured extraction',
// Search
searchPlaceholder: 'Enter your research question...',
searchButton: 'Search',
searchingButton: 'Searching',
remainingCredits: 'Remaining Credits: {credits}',
// Empty state
emptyTitle: 'Explore Research Literature',
emptyDescription:
'Enter your research question above. AI will search relevant papers, extract key dimensions, and present them in a structured comparison matrix. Supports custom extraction dimensions.',
// Matrix table
loadingPapers: 'Loading papers...',
extractingInfo: 'Extracting information from papers...',
newPapersScreened: '{count} new {count, plural, one {paper} other {papers}} screened',
colTitle: 'Title',
colYear: 'Year',
colAuthors: 'Authors',
dimensionCount: '{count} dimensions',
statsSearched: '{count} papers searched',
statsAdded: '{count} papers added',
cellExtracting: 'extracting',
cellNA: 'N/A',
cellFailed: 'Failed',
// Load more
loadMoreButton: 'Load more papers',
loadingMore: 'Loading...',
// Add column
addColumnTooltip: 'Add custom column',
addColumnPlaceholder: 'e.g., training dataset',
addColumnButton: 'Add',
// Column header
badgeAuto: 'AUTO',
badgeCustom: 'CUSTOM',
menuEdit: 'Edit definition',
menuDelete: 'Delete column',
// Project panel
recentProjects: 'Recent Projects',
projectPapers: '{count} papers',
projectCols: '{count} cols',
deleteProject: 'Delete project',
timeJustNow: 'just now',
timeMinutesAgo: '{count}m ago',
timeHoursAgo: '{count}h ago',
timeDaysAgo: '{count}d ago',
// Auth
loginRequired: 'Login Required',
loginRequiredDesc: 'Please log in to access this feature.',
loginButton: 'Go to Login',
// Language toggle
langEN: 'EN',
langZH: '中文',
}
export default en