@contractspec/lib.lifecycle 2.4.0 → 2.6.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/browser/index.js +1042 -99
- package/dist/i18n/catalogs/en.d.ts +8 -0
- package/dist/i18n/catalogs/es.d.ts +6 -0
- package/dist/i18n/catalogs/fr.d.ts +6 -0
- package/dist/i18n/catalogs/index.d.ts +8 -0
- package/dist/i18n/i18n.test.d.ts +1 -0
- package/dist/i18n/index.d.ts +28 -0
- package/dist/i18n/keys.d.ts +184 -0
- package/dist/i18n/locale.d.ts +8 -0
- package/dist/i18n/messages.d.ts +14 -0
- package/dist/index.js +1042 -99
- package/dist/node/index.js +1042 -99
- package/dist/types/stages.d.ts +12 -0
- package/dist/utils/formatters.d.ts +4 -4
- package/package.json +6 -3
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* English (en) translation catalog for @contractspec/lib.lifecycle.
|
|
3
|
+
*
|
|
4
|
+
* This is the primary / reference locale. All message keys must be present here.
|
|
5
|
+
*
|
|
6
|
+
* @module i18n/catalogs/en
|
|
7
|
+
*/
|
|
8
|
+
export declare const enMessages: import("@contractspec/lib.contracts-spec/translations").TranslationSpec;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Internationalization (i18n) module for @contractspec/lib.lifecycle.
|
|
3
|
+
*
|
|
4
|
+
* Provides multi-language support for:
|
|
5
|
+
* - Lifecycle stage display names and questions
|
|
6
|
+
* - Stage signals, traps, and focus areas
|
|
7
|
+
* - Formatter strings (axis labels, stage titles, digests)
|
|
8
|
+
*
|
|
9
|
+
* @module i18n
|
|
10
|
+
*
|
|
11
|
+
* @example
|
|
12
|
+
* ```ts
|
|
13
|
+
* import { createLifecycleI18n } from '@contractspec/lib.lifecycle/i18n';
|
|
14
|
+
*
|
|
15
|
+
* const i18n = createLifecycleI18n("fr");
|
|
16
|
+
* const name = i18n.t("stage.exploration.name");
|
|
17
|
+
* // => "Exploration / Idéation"
|
|
18
|
+
* ```
|
|
19
|
+
*/
|
|
20
|
+
export { createLifecycleI18n, getDefaultI18n, resetI18nRegistry, } from './messages';
|
|
21
|
+
export type { LifecycleI18n } from './messages';
|
|
22
|
+
export { resolveLocale, isSupportedLocale, DEFAULT_LOCALE, SUPPORTED_LOCALES, } from './locale';
|
|
23
|
+
export type { SupportedLocale } from './locale';
|
|
24
|
+
export { I18N_KEYS, STAGE_NAME_KEYS, STAGE_QUESTION_KEYS, STAGE_SIGNAL_KEYS, STAGE_TRAP_KEYS, STAGE_FOCUS_KEYS, FORMATTER_KEYS, } from './keys';
|
|
25
|
+
export type { LifecycleMessageKey } from './keys';
|
|
26
|
+
export { enMessages } from './catalogs/en';
|
|
27
|
+
export { frMessages } from './catalogs/fr';
|
|
28
|
+
export { esMessages } from './catalogs/es';
|
|
@@ -0,0 +1,184 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Typed message keys for the lifecycle i18n system.
|
|
3
|
+
*
|
|
4
|
+
* All translatable strings in the package are referenced by these keys.
|
|
5
|
+
* Organized by domain: stage (names, questions, signals, traps, focusAreas), formatter.
|
|
6
|
+
*
|
|
7
|
+
* @module i18n/keys
|
|
8
|
+
*/
|
|
9
|
+
export declare const STAGE_NAME_KEYS: {
|
|
10
|
+
readonly 'stage.exploration.name': "stage.exploration.name";
|
|
11
|
+
readonly 'stage.problemSolutionFit.name': "stage.problemSolutionFit.name";
|
|
12
|
+
readonly 'stage.mvpEarlyTraction.name': "stage.mvpEarlyTraction.name";
|
|
13
|
+
readonly 'stage.productMarketFit.name': "stage.productMarketFit.name";
|
|
14
|
+
readonly 'stage.growthScaleUp.name': "stage.growthScaleUp.name";
|
|
15
|
+
readonly 'stage.expansionPlatform.name': "stage.expansionPlatform.name";
|
|
16
|
+
readonly 'stage.maturityRenewal.name': "stage.maturityRenewal.name";
|
|
17
|
+
};
|
|
18
|
+
export declare const STAGE_QUESTION_KEYS: {
|
|
19
|
+
readonly 'stage.exploration.question': "stage.exploration.question";
|
|
20
|
+
readonly 'stage.problemSolutionFit.question': "stage.problemSolutionFit.question";
|
|
21
|
+
readonly 'stage.mvpEarlyTraction.question': "stage.mvpEarlyTraction.question";
|
|
22
|
+
readonly 'stage.productMarketFit.question': "stage.productMarketFit.question";
|
|
23
|
+
readonly 'stage.growthScaleUp.question': "stage.growthScaleUp.question";
|
|
24
|
+
readonly 'stage.expansionPlatform.question': "stage.expansionPlatform.question";
|
|
25
|
+
readonly 'stage.maturityRenewal.question': "stage.maturityRenewal.question";
|
|
26
|
+
};
|
|
27
|
+
export declare const STAGE_SIGNAL_KEYS: {
|
|
28
|
+
readonly 'stage.exploration.signal.0': "stage.exploration.signal.0";
|
|
29
|
+
readonly 'stage.exploration.signal.1': "stage.exploration.signal.1";
|
|
30
|
+
readonly 'stage.exploration.signal.2': "stage.exploration.signal.2";
|
|
31
|
+
readonly 'stage.problemSolutionFit.signal.0': "stage.problemSolutionFit.signal.0";
|
|
32
|
+
readonly 'stage.problemSolutionFit.signal.1': "stage.problemSolutionFit.signal.1";
|
|
33
|
+
readonly 'stage.problemSolutionFit.signal.2': "stage.problemSolutionFit.signal.2";
|
|
34
|
+
readonly 'stage.mvpEarlyTraction.signal.0': "stage.mvpEarlyTraction.signal.0";
|
|
35
|
+
readonly 'stage.mvpEarlyTraction.signal.1': "stage.mvpEarlyTraction.signal.1";
|
|
36
|
+
readonly 'stage.mvpEarlyTraction.signal.2': "stage.mvpEarlyTraction.signal.2";
|
|
37
|
+
readonly 'stage.productMarketFit.signal.0': "stage.productMarketFit.signal.0";
|
|
38
|
+
readonly 'stage.productMarketFit.signal.1': "stage.productMarketFit.signal.1";
|
|
39
|
+
readonly 'stage.productMarketFit.signal.2': "stage.productMarketFit.signal.2";
|
|
40
|
+
readonly 'stage.growthScaleUp.signal.0': "stage.growthScaleUp.signal.0";
|
|
41
|
+
readonly 'stage.growthScaleUp.signal.1': "stage.growthScaleUp.signal.1";
|
|
42
|
+
readonly 'stage.growthScaleUp.signal.2': "stage.growthScaleUp.signal.2";
|
|
43
|
+
readonly 'stage.expansionPlatform.signal.0': "stage.expansionPlatform.signal.0";
|
|
44
|
+
readonly 'stage.expansionPlatform.signal.1': "stage.expansionPlatform.signal.1";
|
|
45
|
+
readonly 'stage.expansionPlatform.signal.2': "stage.expansionPlatform.signal.2";
|
|
46
|
+
readonly 'stage.maturityRenewal.signal.0': "stage.maturityRenewal.signal.0";
|
|
47
|
+
readonly 'stage.maturityRenewal.signal.1': "stage.maturityRenewal.signal.1";
|
|
48
|
+
readonly 'stage.maturityRenewal.signal.2': "stage.maturityRenewal.signal.2";
|
|
49
|
+
};
|
|
50
|
+
export declare const STAGE_TRAP_KEYS: {
|
|
51
|
+
readonly 'stage.exploration.trap.0': "stage.exploration.trap.0";
|
|
52
|
+
readonly 'stage.exploration.trap.1': "stage.exploration.trap.1";
|
|
53
|
+
readonly 'stage.problemSolutionFit.trap.0': "stage.problemSolutionFit.trap.0";
|
|
54
|
+
readonly 'stage.problemSolutionFit.trap.1': "stage.problemSolutionFit.trap.1";
|
|
55
|
+
readonly 'stage.mvpEarlyTraction.trap.0': "stage.mvpEarlyTraction.trap.0";
|
|
56
|
+
readonly 'stage.mvpEarlyTraction.trap.1': "stage.mvpEarlyTraction.trap.1";
|
|
57
|
+
readonly 'stage.productMarketFit.trap.0': "stage.productMarketFit.trap.0";
|
|
58
|
+
readonly 'stage.productMarketFit.trap.1': "stage.productMarketFit.trap.1";
|
|
59
|
+
readonly 'stage.growthScaleUp.trap.0': "stage.growthScaleUp.trap.0";
|
|
60
|
+
readonly 'stage.growthScaleUp.trap.1': "stage.growthScaleUp.trap.1";
|
|
61
|
+
readonly 'stage.expansionPlatform.trap.0': "stage.expansionPlatform.trap.0";
|
|
62
|
+
readonly 'stage.maturityRenewal.trap.0': "stage.maturityRenewal.trap.0";
|
|
63
|
+
};
|
|
64
|
+
export declare const STAGE_FOCUS_KEYS: {
|
|
65
|
+
readonly 'stage.exploration.focus.0': "stage.exploration.focus.0";
|
|
66
|
+
readonly 'stage.exploration.focus.1': "stage.exploration.focus.1";
|
|
67
|
+
readonly 'stage.exploration.focus.2': "stage.exploration.focus.2";
|
|
68
|
+
readonly 'stage.problemSolutionFit.focus.0': "stage.problemSolutionFit.focus.0";
|
|
69
|
+
readonly 'stage.problemSolutionFit.focus.1': "stage.problemSolutionFit.focus.1";
|
|
70
|
+
readonly 'stage.problemSolutionFit.focus.2': "stage.problemSolutionFit.focus.2";
|
|
71
|
+
readonly 'stage.mvpEarlyTraction.focus.0': "stage.mvpEarlyTraction.focus.0";
|
|
72
|
+
readonly 'stage.mvpEarlyTraction.focus.1': "stage.mvpEarlyTraction.focus.1";
|
|
73
|
+
readonly 'stage.mvpEarlyTraction.focus.2': "stage.mvpEarlyTraction.focus.2";
|
|
74
|
+
readonly 'stage.productMarketFit.focus.0': "stage.productMarketFit.focus.0";
|
|
75
|
+
readonly 'stage.productMarketFit.focus.1': "stage.productMarketFit.focus.1";
|
|
76
|
+
readonly 'stage.productMarketFit.focus.2': "stage.productMarketFit.focus.2";
|
|
77
|
+
readonly 'stage.growthScaleUp.focus.0': "stage.growthScaleUp.focus.0";
|
|
78
|
+
readonly 'stage.growthScaleUp.focus.1': "stage.growthScaleUp.focus.1";
|
|
79
|
+
readonly 'stage.growthScaleUp.focus.2': "stage.growthScaleUp.focus.2";
|
|
80
|
+
readonly 'stage.expansionPlatform.focus.0': "stage.expansionPlatform.focus.0";
|
|
81
|
+
readonly 'stage.expansionPlatform.focus.1': "stage.expansionPlatform.focus.1";
|
|
82
|
+
readonly 'stage.expansionPlatform.focus.2': "stage.expansionPlatform.focus.2";
|
|
83
|
+
readonly 'stage.maturityRenewal.focus.0': "stage.maturityRenewal.focus.0";
|
|
84
|
+
readonly 'stage.maturityRenewal.focus.1': "stage.maturityRenewal.focus.1";
|
|
85
|
+
readonly 'stage.maturityRenewal.focus.2': "stage.maturityRenewal.focus.2";
|
|
86
|
+
};
|
|
87
|
+
export declare const FORMATTER_KEYS: {
|
|
88
|
+
/** "Stage {order} · {name}" */
|
|
89
|
+
readonly 'formatter.stageTitle': "formatter.stageTitle";
|
|
90
|
+
/** "Product: {phase}" */
|
|
91
|
+
readonly 'formatter.axis.product': "formatter.axis.product";
|
|
92
|
+
/** "Company: {phase}" */
|
|
93
|
+
readonly 'formatter.axis.company': "formatter.axis.company";
|
|
94
|
+
/** "Capital: {phase}" */
|
|
95
|
+
readonly 'formatter.axis.capital': "formatter.axis.capital";
|
|
96
|
+
/** "Focus on upcoming milestones." */
|
|
97
|
+
readonly 'formatter.action.fallback': "formatter.action.fallback";
|
|
98
|
+
/** "Next up for {name}: {actionCopy}" */
|
|
99
|
+
readonly 'formatter.digest': "formatter.digest";
|
|
100
|
+
};
|
|
101
|
+
export declare const I18N_KEYS: {
|
|
102
|
+
/** "Stage {order} · {name}" */
|
|
103
|
+
readonly 'formatter.stageTitle': "formatter.stageTitle";
|
|
104
|
+
/** "Product: {phase}" */
|
|
105
|
+
readonly 'formatter.axis.product': "formatter.axis.product";
|
|
106
|
+
/** "Company: {phase}" */
|
|
107
|
+
readonly 'formatter.axis.company': "formatter.axis.company";
|
|
108
|
+
/** "Capital: {phase}" */
|
|
109
|
+
readonly 'formatter.axis.capital': "formatter.axis.capital";
|
|
110
|
+
/** "Focus on upcoming milestones." */
|
|
111
|
+
readonly 'formatter.action.fallback': "formatter.action.fallback";
|
|
112
|
+
/** "Next up for {name}: {actionCopy}" */
|
|
113
|
+
readonly 'formatter.digest': "formatter.digest";
|
|
114
|
+
readonly 'stage.exploration.focus.0': "stage.exploration.focus.0";
|
|
115
|
+
readonly 'stage.exploration.focus.1': "stage.exploration.focus.1";
|
|
116
|
+
readonly 'stage.exploration.focus.2': "stage.exploration.focus.2";
|
|
117
|
+
readonly 'stage.problemSolutionFit.focus.0': "stage.problemSolutionFit.focus.0";
|
|
118
|
+
readonly 'stage.problemSolutionFit.focus.1': "stage.problemSolutionFit.focus.1";
|
|
119
|
+
readonly 'stage.problemSolutionFit.focus.2': "stage.problemSolutionFit.focus.2";
|
|
120
|
+
readonly 'stage.mvpEarlyTraction.focus.0': "stage.mvpEarlyTraction.focus.0";
|
|
121
|
+
readonly 'stage.mvpEarlyTraction.focus.1': "stage.mvpEarlyTraction.focus.1";
|
|
122
|
+
readonly 'stage.mvpEarlyTraction.focus.2': "stage.mvpEarlyTraction.focus.2";
|
|
123
|
+
readonly 'stage.productMarketFit.focus.0': "stage.productMarketFit.focus.0";
|
|
124
|
+
readonly 'stage.productMarketFit.focus.1': "stage.productMarketFit.focus.1";
|
|
125
|
+
readonly 'stage.productMarketFit.focus.2': "stage.productMarketFit.focus.2";
|
|
126
|
+
readonly 'stage.growthScaleUp.focus.0': "stage.growthScaleUp.focus.0";
|
|
127
|
+
readonly 'stage.growthScaleUp.focus.1': "stage.growthScaleUp.focus.1";
|
|
128
|
+
readonly 'stage.growthScaleUp.focus.2': "stage.growthScaleUp.focus.2";
|
|
129
|
+
readonly 'stage.expansionPlatform.focus.0': "stage.expansionPlatform.focus.0";
|
|
130
|
+
readonly 'stage.expansionPlatform.focus.1': "stage.expansionPlatform.focus.1";
|
|
131
|
+
readonly 'stage.expansionPlatform.focus.2': "stage.expansionPlatform.focus.2";
|
|
132
|
+
readonly 'stage.maturityRenewal.focus.0': "stage.maturityRenewal.focus.0";
|
|
133
|
+
readonly 'stage.maturityRenewal.focus.1': "stage.maturityRenewal.focus.1";
|
|
134
|
+
readonly 'stage.maturityRenewal.focus.2': "stage.maturityRenewal.focus.2";
|
|
135
|
+
readonly 'stage.exploration.trap.0': "stage.exploration.trap.0";
|
|
136
|
+
readonly 'stage.exploration.trap.1': "stage.exploration.trap.1";
|
|
137
|
+
readonly 'stage.problemSolutionFit.trap.0': "stage.problemSolutionFit.trap.0";
|
|
138
|
+
readonly 'stage.problemSolutionFit.trap.1': "stage.problemSolutionFit.trap.1";
|
|
139
|
+
readonly 'stage.mvpEarlyTraction.trap.0': "stage.mvpEarlyTraction.trap.0";
|
|
140
|
+
readonly 'stage.mvpEarlyTraction.trap.1': "stage.mvpEarlyTraction.trap.1";
|
|
141
|
+
readonly 'stage.productMarketFit.trap.0': "stage.productMarketFit.trap.0";
|
|
142
|
+
readonly 'stage.productMarketFit.trap.1': "stage.productMarketFit.trap.1";
|
|
143
|
+
readonly 'stage.growthScaleUp.trap.0': "stage.growthScaleUp.trap.0";
|
|
144
|
+
readonly 'stage.growthScaleUp.trap.1': "stage.growthScaleUp.trap.1";
|
|
145
|
+
readonly 'stage.expansionPlatform.trap.0': "stage.expansionPlatform.trap.0";
|
|
146
|
+
readonly 'stage.maturityRenewal.trap.0': "stage.maturityRenewal.trap.0";
|
|
147
|
+
readonly 'stage.exploration.signal.0': "stage.exploration.signal.0";
|
|
148
|
+
readonly 'stage.exploration.signal.1': "stage.exploration.signal.1";
|
|
149
|
+
readonly 'stage.exploration.signal.2': "stage.exploration.signal.2";
|
|
150
|
+
readonly 'stage.problemSolutionFit.signal.0': "stage.problemSolutionFit.signal.0";
|
|
151
|
+
readonly 'stage.problemSolutionFit.signal.1': "stage.problemSolutionFit.signal.1";
|
|
152
|
+
readonly 'stage.problemSolutionFit.signal.2': "stage.problemSolutionFit.signal.2";
|
|
153
|
+
readonly 'stage.mvpEarlyTraction.signal.0': "stage.mvpEarlyTraction.signal.0";
|
|
154
|
+
readonly 'stage.mvpEarlyTraction.signal.1': "stage.mvpEarlyTraction.signal.1";
|
|
155
|
+
readonly 'stage.mvpEarlyTraction.signal.2': "stage.mvpEarlyTraction.signal.2";
|
|
156
|
+
readonly 'stage.productMarketFit.signal.0': "stage.productMarketFit.signal.0";
|
|
157
|
+
readonly 'stage.productMarketFit.signal.1': "stage.productMarketFit.signal.1";
|
|
158
|
+
readonly 'stage.productMarketFit.signal.2': "stage.productMarketFit.signal.2";
|
|
159
|
+
readonly 'stage.growthScaleUp.signal.0': "stage.growthScaleUp.signal.0";
|
|
160
|
+
readonly 'stage.growthScaleUp.signal.1': "stage.growthScaleUp.signal.1";
|
|
161
|
+
readonly 'stage.growthScaleUp.signal.2': "stage.growthScaleUp.signal.2";
|
|
162
|
+
readonly 'stage.expansionPlatform.signal.0': "stage.expansionPlatform.signal.0";
|
|
163
|
+
readonly 'stage.expansionPlatform.signal.1': "stage.expansionPlatform.signal.1";
|
|
164
|
+
readonly 'stage.expansionPlatform.signal.2': "stage.expansionPlatform.signal.2";
|
|
165
|
+
readonly 'stage.maturityRenewal.signal.0': "stage.maturityRenewal.signal.0";
|
|
166
|
+
readonly 'stage.maturityRenewal.signal.1': "stage.maturityRenewal.signal.1";
|
|
167
|
+
readonly 'stage.maturityRenewal.signal.2': "stage.maturityRenewal.signal.2";
|
|
168
|
+
readonly 'stage.exploration.question': "stage.exploration.question";
|
|
169
|
+
readonly 'stage.problemSolutionFit.question': "stage.problemSolutionFit.question";
|
|
170
|
+
readonly 'stage.mvpEarlyTraction.question': "stage.mvpEarlyTraction.question";
|
|
171
|
+
readonly 'stage.productMarketFit.question': "stage.productMarketFit.question";
|
|
172
|
+
readonly 'stage.growthScaleUp.question': "stage.growthScaleUp.question";
|
|
173
|
+
readonly 'stage.expansionPlatform.question': "stage.expansionPlatform.question";
|
|
174
|
+
readonly 'stage.maturityRenewal.question': "stage.maturityRenewal.question";
|
|
175
|
+
readonly 'stage.exploration.name': "stage.exploration.name";
|
|
176
|
+
readonly 'stage.problemSolutionFit.name': "stage.problemSolutionFit.name";
|
|
177
|
+
readonly 'stage.mvpEarlyTraction.name': "stage.mvpEarlyTraction.name";
|
|
178
|
+
readonly 'stage.productMarketFit.name': "stage.productMarketFit.name";
|
|
179
|
+
readonly 'stage.growthScaleUp.name': "stage.growthScaleUp.name";
|
|
180
|
+
readonly 'stage.expansionPlatform.name': "stage.expansionPlatform.name";
|
|
181
|
+
readonly 'stage.maturityRenewal.name': "stage.maturityRenewal.name";
|
|
182
|
+
};
|
|
183
|
+
/** Union type of all valid lifecycle i18n keys */
|
|
184
|
+
export type LifecycleMessageKey = keyof typeof I18N_KEYS;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Locale utilities for the lifecycle package.
|
|
3
|
+
*
|
|
4
|
+
* Re-exported from the shared i18n factory in contracts-spec.
|
|
5
|
+
*
|
|
6
|
+
* @module i18n/locale
|
|
7
|
+
*/
|
|
8
|
+
export { DEFAULT_LOCALE, SUPPORTED_LOCALES, resolveLocale, isSupportedLocale, type SupportedLocale, } from '@contractspec/lib.contracts-spec/translations';
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Translation helper for the lifecycle package.
|
|
3
|
+
* @module i18n/messages
|
|
4
|
+
*/
|
|
5
|
+
import { type I18nInstance } from '@contractspec/lib.contracts-spec/translations';
|
|
6
|
+
import type { LifecycleMessageKey } from './keys';
|
|
7
|
+
/** I18n instance type for the lifecycle package. */
|
|
8
|
+
export type LifecycleI18n = I18nInstance<LifecycleMessageKey>;
|
|
9
|
+
/** Create an i18n instance for a given locale. */
|
|
10
|
+
export declare const createLifecycleI18n: (optionsLocale?: string, runtimeLocale?: string) => I18nInstance<"stage.exploration.name" | "stage.problemSolutionFit.name" | "stage.mvpEarlyTraction.name" | "stage.productMarketFit.name" | "stage.growthScaleUp.name" | "stage.expansionPlatform.name" | "stage.maturityRenewal.name" | "stage.exploration.question" | "stage.problemSolutionFit.question" | "stage.mvpEarlyTraction.question" | "stage.productMarketFit.question" | "stage.growthScaleUp.question" | "stage.expansionPlatform.question" | "stage.maturityRenewal.question" | "stage.exploration.signal.0" | "stage.exploration.signal.1" | "stage.exploration.signal.2" | "stage.problemSolutionFit.signal.0" | "stage.problemSolutionFit.signal.1" | "stage.problemSolutionFit.signal.2" | "stage.mvpEarlyTraction.signal.0" | "stage.mvpEarlyTraction.signal.1" | "stage.mvpEarlyTraction.signal.2" | "stage.productMarketFit.signal.0" | "stage.productMarketFit.signal.1" | "stage.productMarketFit.signal.2" | "stage.growthScaleUp.signal.0" | "stage.growthScaleUp.signal.1" | "stage.growthScaleUp.signal.2" | "stage.expansionPlatform.signal.0" | "stage.expansionPlatform.signal.1" | "stage.expansionPlatform.signal.2" | "stage.maturityRenewal.signal.0" | "stage.maturityRenewal.signal.1" | "stage.maturityRenewal.signal.2" | "stage.exploration.trap.0" | "stage.exploration.trap.1" | "stage.problemSolutionFit.trap.0" | "stage.problemSolutionFit.trap.1" | "stage.mvpEarlyTraction.trap.0" | "stage.mvpEarlyTraction.trap.1" | "stage.productMarketFit.trap.0" | "stage.productMarketFit.trap.1" | "stage.growthScaleUp.trap.0" | "stage.growthScaleUp.trap.1" | "stage.expansionPlatform.trap.0" | "stage.maturityRenewal.trap.0" | "stage.exploration.focus.0" | "stage.exploration.focus.1" | "stage.exploration.focus.2" | "stage.problemSolutionFit.focus.0" | "stage.problemSolutionFit.focus.1" | "stage.problemSolutionFit.focus.2" | "stage.mvpEarlyTraction.focus.0" | "stage.mvpEarlyTraction.focus.1" | "stage.mvpEarlyTraction.focus.2" | "stage.productMarketFit.focus.0" | "stage.productMarketFit.focus.1" | "stage.productMarketFit.focus.2" | "stage.growthScaleUp.focus.0" | "stage.growthScaleUp.focus.1" | "stage.growthScaleUp.focus.2" | "stage.expansionPlatform.focus.0" | "stage.expansionPlatform.focus.1" | "stage.expansionPlatform.focus.2" | "stage.maturityRenewal.focus.0" | "stage.maturityRenewal.focus.1" | "stage.maturityRenewal.focus.2" | "formatter.stageTitle" | "formatter.axis.product" | "formatter.axis.company" | "formatter.axis.capital" | "formatter.action.fallback" | "formatter.digest">;
|
|
11
|
+
/** Create a default (English) i18n instance. */
|
|
12
|
+
export declare const getDefaultI18n: () => I18nInstance<"stage.exploration.name" | "stage.problemSolutionFit.name" | "stage.mvpEarlyTraction.name" | "stage.productMarketFit.name" | "stage.growthScaleUp.name" | "stage.expansionPlatform.name" | "stage.maturityRenewal.name" | "stage.exploration.question" | "stage.problemSolutionFit.question" | "stage.mvpEarlyTraction.question" | "stage.productMarketFit.question" | "stage.growthScaleUp.question" | "stage.expansionPlatform.question" | "stage.maturityRenewal.question" | "stage.exploration.signal.0" | "stage.exploration.signal.1" | "stage.exploration.signal.2" | "stage.problemSolutionFit.signal.0" | "stage.problemSolutionFit.signal.1" | "stage.problemSolutionFit.signal.2" | "stage.mvpEarlyTraction.signal.0" | "stage.mvpEarlyTraction.signal.1" | "stage.mvpEarlyTraction.signal.2" | "stage.productMarketFit.signal.0" | "stage.productMarketFit.signal.1" | "stage.productMarketFit.signal.2" | "stage.growthScaleUp.signal.0" | "stage.growthScaleUp.signal.1" | "stage.growthScaleUp.signal.2" | "stage.expansionPlatform.signal.0" | "stage.expansionPlatform.signal.1" | "stage.expansionPlatform.signal.2" | "stage.maturityRenewal.signal.0" | "stage.maturityRenewal.signal.1" | "stage.maturityRenewal.signal.2" | "stage.exploration.trap.0" | "stage.exploration.trap.1" | "stage.problemSolutionFit.trap.0" | "stage.problemSolutionFit.trap.1" | "stage.mvpEarlyTraction.trap.0" | "stage.mvpEarlyTraction.trap.1" | "stage.productMarketFit.trap.0" | "stage.productMarketFit.trap.1" | "stage.growthScaleUp.trap.0" | "stage.growthScaleUp.trap.1" | "stage.expansionPlatform.trap.0" | "stage.maturityRenewal.trap.0" | "stage.exploration.focus.0" | "stage.exploration.focus.1" | "stage.exploration.focus.2" | "stage.problemSolutionFit.focus.0" | "stage.problemSolutionFit.focus.1" | "stage.problemSolutionFit.focus.2" | "stage.mvpEarlyTraction.focus.0" | "stage.mvpEarlyTraction.focus.1" | "stage.mvpEarlyTraction.focus.2" | "stage.productMarketFit.focus.0" | "stage.productMarketFit.focus.1" | "stage.productMarketFit.focus.2" | "stage.growthScaleUp.focus.0" | "stage.growthScaleUp.focus.1" | "stage.growthScaleUp.focus.2" | "stage.expansionPlatform.focus.0" | "stage.expansionPlatform.focus.1" | "stage.expansionPlatform.focus.2" | "stage.maturityRenewal.focus.0" | "stage.maturityRenewal.focus.1" | "stage.maturityRenewal.focus.2" | "formatter.stageTitle" | "formatter.axis.product" | "formatter.axis.company" | "formatter.axis.capital" | "formatter.action.fallback" | "formatter.digest">;
|
|
13
|
+
/** Reset the shared registry (useful for testing). @internal */
|
|
14
|
+
export declare const resetI18nRegistry: () => void;
|