-
Notifications
You must be signed in to change notification settings - Fork 6.5k
Expand file tree
/
Copy pathen.json
More file actions
413 lines (413 loc) · 16.5 KB
/
en.json
File metadata and controls
413 lines (413 loc) · 16.5 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
{
"components": {
"header": {
"buttons": {
"theme": "Select theme",
"themeSystem": "System",
"themeLightMode": "Light",
"themeDarkMode": "Dark"
}
},
"containers": {
"footer": {
"legal": "Copyright <foundationName>OpenJS Foundation</foundationName> and Node.js contributors. All rights reserved. The <foundationName>OpenJS Foundation</foundationName> has registered trademarks and uses trademarks. For a list of trademarks of the <foundationName>OpenJS Foundation</foundationName>, please see our <trademarkPolicy>Trademark Policy</trademarkPolicy> and <trademarkList>Trademark List</trademarkList>. Trademarks and logos not indicated on the <trademarkList>list of OpenJS Foundation trademarks</trademarkList> are trademarks™ or registered® trademarks of their respective holders. Use of them does not imply any affiliation with or endorsement by them.",
"links": {
"foundationName": "OpenJS Foundation",
"termsOfUse": "Terms of Use",
"privacyPolicy": "Privacy Policy",
"bylaws": "Bylaws",
"codeOfConduct": "Code of Conduct",
"trademarkPolicy": "Trademark Policy",
"trademarkList": "Trademark List",
"cookiePolicy": "Cookie Policy",
"security": "Security Policy"
},
"releasePills": {
"latestLTS": "Latest LTS",
"latestRelease": "Latest Release"
}
},
"navBar": {
"controls": {
"toggle": "Toggle navigation menu"
},
"links": {
"about": "About",
"download": "Download",
"docs": "Docs",
"guides": "Guides",
"learn": "Learn",
"security": "Security",
"certification": "Courses",
"blog": "Blog",
"contribute": "Contribute"
}
}
},
"navigation": {
"learn": {
"gettingStarted": {
"links": {
"gettingStarted": "Getting Started",
"introductionToNodejs": "Introduction to Node.js",
"howMuchJavascriptDoYouNeedToKnowToUseNodejs": "How much JavaScript do you need to know to use Node.js?",
"differencesBetweenNodejsAndTheBrowser": "Differences between Node.js and the Browser",
"theV8JavascriptEngine": "The V8 JavaScript Engine",
"anIntroductionToTheNpmPackageManager": "An introduction to the npm package manager",
"ecmascript2015Es6AndBeyond": "ECMAScript 2015 (ES6) and beyond",
"debugging": "Debugging Node.js",
"fetch": "Fetching data with Node.js",
"websocket": "WebSocket client with Node.js",
"nodejsTheDifferenceBetweenDevelopmentAndProduction": "Node.js, the difference between development and production",
"profiling": "Profiling Node.js Applications",
"nodejsWithWebassembly": "Node.js with WebAssembly",
"securityBestPractices": "Security Best Practices",
"userlandMigrations": "Introduction to Userland Migrations"
}
},
"commandLine": {
"links": {
"commandLine": "Command Line",
"runNodejsScriptsFromTheCommandLine": "Run Node.js scripts from the command line",
"howToUseTheNodejsRepl": "How to use the Node.js REPL",
"outputToTheCommandLineUsingNodejs": "Output to the command line using Node.js",
"acceptInputFromTheCommandLineInNodejs": "Accept input from the command line in Node.js",
"howToReadEnvironmentVariablesFromNodejs": "How to read environment variables from Node.js"
}
},
"http": {
"links": {
"http": "HTTP",
"anatomyOfAnHttpTransaction": "Anatomy of an HTTP Transaction",
"enterpriseNetworkConfiguration": "Enterprise Network Configuration"
}
},
"manipulatingFiles": {
"links": {
"manipulatingFiles": "Manipulating Files",
"nodejsFileStats": "Node.js file stats",
"nodejsFilePaths": "Node.js File Paths",
"readingFilesWithNodejs": "Reading files with Node.js",
"writingFilesWithNodejs": "Writing files with Node.js",
"workingWithFileDescriptorsInNodejs": "Working with file descriptors in Node.js",
"workingWithFoldersInNodejs": "Working with folders in Node.js",
"workingWithDifferentFilesystems": "How to work with Different Filesystems"
}
},
"asynchronousWork": {
"links": {
"asynchronousWork": "Asynchronous Work",
"javascriptAsynchronousProgrammingAndCallbacks": "JavaScript Asynchronous Programming and Callbacks",
"asynchronousFlowControl": "Asynchronous flow control",
"discoverPromisesInNodejs": "Discover Promises in Node.js",
"discoverJavascriptTimers": "Discover JavaScript Timers",
"overviewOfBlockingVsNonBlocking": "Overview of Blocking vs Non-Blocking",
"eventLoopTimersAndNexttick": "The Node.js Event Loop",
"theNodejsEventEmitter": "The Node.js Event Emitter",
"understandingProcessnexttick": "Understanding process.nextTick()",
"understandingSetimmediate": "Understanding setImmediate()",
"dontBlockTheEventLoop": "Don't Block the Event Loop"
}
},
"typescript": {
"links": {
"typescript": "TypeScript",
"introduction": "Introduction to TypeScript",
"runNatively": "Running TypeScript Natively",
"transpile": "Running TypeScript code using transpilation",
"run": "Running TypeScript with a runner",
"publishingTSPackage": "Publishing a TypeScript package"
}
},
"modules": {
"links": {
"modules": "Modules",
"howToUseStreams": "How to use streams",
"backpressuringInStreams": "Backpressuring in Streams",
"publishingAPackage": "Publishing a package",
"publishingNodeApiModules": "How to publish a Node-API package",
"abiStability": "ABI Stability"
}
},
"diagnostics": {
"links": {
"diagnostics": "Diagnostics",
"userJourney": "User Journey",
"memory": "Memory",
"understandingAndTuningMemory": "Understanding and Tuning Memory",
"liveDebugging": "Live Debugging",
"poorPerformance": "Poor Performance",
"flameGraphs": "Flame Graphs"
}
},
"testRunner": {
"links": {
"testRunner": "Test Runner",
"introduction": "Discovering Node.js's test runner",
"usingTestRunner": "Using Node.js's test runner",
"mocking": "Mocking in tests",
"collectingCodeCoverage": "Collecting code coverage in Node.js"
}
}
},
"about": {
"links": {
"about": "About Node.js",
"aboutSide": "About Node.js®",
"branding": "Branding of Node.js",
"governance": "Project Governance",
"releases": "Node.js Releases",
"security": "Security Reporting",
"partners": "Partners & Supporters",
"eol": "End-of-Life (EOL)"
}
},
"getInvolved": {
"links": {
"getInvolved": "Get Involved",
"collabSummit": "Collaboration Summit",
"upcomingEvents": "Upcoming Events",
"contribute": "Contribute to Node.js",
"codeOfConduct": "Code of Conduct"
}
}
},
"downloadReleasesTable": {
"version": "Node.js",
"nApiVersion": "N-API",
"codename": "Codename",
"releaseDate": "Released at",
"firstReleased": "First released",
"lastUpdated": "Last updated",
"status": "Status",
"details": "Details"
},
"downloadsTable": {
"fileName": "File Name",
"operatingSystem": "OS",
"architecture": "Architecture"
},
"releaseModal": {
"title": "Node.js v{version} ({codename})",
"titleWithoutCodename": "Node.js v{version}",
"overview": "Overview",
"minorVersions": "Minor versions",
"releaseAnnouncement": "Release Announcement",
"unsupportedVersionWarning": "This version is out of maintenance. Please use a supported version. <link>Understand EOL support.</link>",
"ltsVersionFeaturesNotice": "Want new features sooner? Get the <link>latest Node.js version</link> instead and try the latest improvements!"
},
"eolAlert": {
"message": "Commercial support for versions past the Maintenance LTS phase is available through our <link>OpenJS Ecosystem Sustainability Program partners</link>"
},
"eolChip": {
"severity": {
"unknown": "Unknown",
"low": "Low",
"medium": "Medium",
"high": "High",
"critical": "Critical"
}
},
"eolModal": {
"title": "Node.js v{version} ({codename}) has reached EOL",
"titleWithoutCodename": "Node.js v{version} has reached EOL",
"vulnerabilitiesMessage": "There are {count}+ known security issues (CVEs) associated with this Node.js release. CVEs (Common Vulnerabilities and Exposures) are identifiers for publicly reported security flaws. Clicking a CVE link will take you to more technical details, such as how the vulnerability works.",
"noVulnerabilitiesMessage": "There are currently no known CVEs (Common Vulnerabilities and Exposures) associated with this Node.js release. However, that doesn't mean it's completely secure—some vulnerabilities may not yet be discovered or publicly disclosed. If this release is outdated or unsupported, it's still a good idea to consider upgrading to ensure you benefit from the latest fixes and security improvements.",
"blogLinkText": "Blog",
"showUnknownSeverities": "Show vulnerabilities of unknown severity",
"table": {
"cves": "CVE(s)",
"severity": "Severity",
"overview": "Overview",
"details": "Details"
}
},
"eolTable": {
"version": "Version",
"codename": "Codename",
"releaseDate": "Released at",
"lastUpdated": "Last updated",
"vulnerabilities": "Vulnerabilities",
"details": "Details",
"hideNonLts": "Hide non-LTS versions"
},
"minorReleasesTable": {
"version": "Version",
"links": "Links",
"nApiVersion": "N-API version",
"npmVersion": "npm version",
"v8Version": "V8 version",
"actions": {
"release": "Release",
"changelog": "Changelog",
"docs": "Docs"
}
},
"releaseOverview": {
"firstReleased": "First released",
"lastUpdated": "Last updated",
"minorVersions": "Minor versions",
"nApiVersion": "N-API version",
"npmVersion": "npm version",
"v8Version": "V8 version"
},
"common": {
"alertBox": {
"info": "Info",
"warning": "Warning",
"danger": "Danger"
},
"breadcrumbs": {
"navigateToHome": "Navigate to Home"
},
"codebox": {
"copy": "Copy to clipboard",
"copied": "Copied to clipboard!"
},
"pagination": {
"previous": "Previous",
"previousAriaLabel": "Previous page",
"next": "Next",
"nextAriaLabel": "Next page",
"defaultLabel": "Pagination",
"pageLabel": "Go to page {pageNumber}"
},
"sidebar": {
"title": "Change page"
},
"languageDropdown": {
"label": "Choose Language"
},
"skipToContent": "Skip to content"
},
"metabar": {
"lastUpdated": "Last Updated",
"readingTime": "Reading Time",
"addedIn": "Added In",
"author": "Author",
"authors": "Authors",
"contribute": "Contribute",
"contributeText": "Edit this page",
"viewAs": "View as",
"tableOfContents": "Table of Contents",
"metadata": "Article metadata"
},
"banner": {
"default": "Announcement",
"warning": "Warning notification",
"error": "Error notification"
},
"search": {
"searchPlaceholder": "Start typing...",
"chatPlaceholder": "Ask me anything",
"noResultsFoundFor": "No results found for",
"suggestions": "Suggestions",
"seeAll": "See all",
"addMore": "Add more",
"clearChat": "Clear chat",
"errorMessage": "An error occurred while trying to search. Please try again.",
"disclaimer": "AI summaries can make mistakes. Please verify the information.",
"startYourSearch": "Start your search",
"initErrorSearch": "Unable to initialize search service",
"initErrorChat": "Unable to initialize chat service",
"chatButtonLabel": "Get an AI summary",
"searchButtonLabel": "Search",
"poweredBy": "Powered by",
"suggestionOne": "How to install Node.js?",
"suggestionTwo": "How to create an HTTP server?",
"suggestionThree": "Upgrading Node.js version",
"scrollToBottom": "Scroll to bottom",
"closeChat": "Close chat",
"keyboardShortcuts": {
"select": "to select",
"navigate": "to navigate",
"close": "to close"
}
},
"blog": {
"blogHeader": {
"subtitle": "The latest Node.js news, migration guides and events summaries",
"rssLink": "RSS feed"
}
}
},
"layouts": {
"blogPost": {
"author": {
"byLine": "{author, select, null {} other {By {author}, }}"
}
},
"blogIndex": {
"categoryName": "{category, select, all {Blog} other {{category} Blog Posts}}"
},
"blog": {
"title": "Blog",
"selectCategory": "Categories",
"categories": {
"all": "Everything",
"announcements": "Announcements",
"release": "Releases",
"vulnerability": "Vulnerabilities",
"advisory-board": "Advisory Board",
"community": "Community",
"feature": "Feature",
"module": "Module",
"npm": "npm",
"uncategorized": "Uncategorized",
"video": "Video",
"weekly": "Weekly Updates",
"wg": "Working Groups",
"migrations": "Migration Guides",
"events": "Events"
}
},
"error": {
"notFound": {
"title": "Page could not be found",
"description": "Sorry, we couldn't find the page you're after! Try starting again from the homepage."
},
"internalServerError": {
"title": "Internal Server Error",
"description": "This page has thrown a non-recoverable error."
},
"details": "Details",
"backToHome": "Back to Home"
},
"download": {
"buttons": {
"installer": "{os} Installer (.{extension})",
"binary": "Standalone Binary (.{extension})"
},
"dropdown": {
"platform": "Platform",
"os": "Operating System",
"version": "Version",
"installMethod": "Install Method",
"packageManager": "Package Manager",
"unknown": "Unknown",
"platformGroups": {
"official": "Recommended (Official)",
"unofficial": "Community (Unofficial)"
}
},
"codeBox": {
"unsupportedVersionWarning": "This version is out of maintenance. Please use a currently supported version. <link>Understand EOL support.</link>",
"ltsVersionFeaturesNotice": "Want new features sooner? Get the <link>latest Node.js version</link> instead and try the latest improvements!",
"communityPlatformInfo": "Installation methods that involve community software are supported by the teams maintaining that software.",
"externalSupportInfo": "If you encounter any issues please visit <link>{platform}'s website</link>",
"noScriptDetected": "This page requires JavaScript. You can download Node.js without JavaScript by visiting the <link>downloads archive page</link> directly.",
"platformInfo": {
"default": "{platform} and their installation scripts are not maintained by the Node.js project.",
"nvm": "\"nvm\" is a cross-platform Node.js version manager.",
"fnm": "\"fnm\" is a cross-platform Node.js version manager.",
"brew": "Homebrew is a package manager for macOS and Linux.",
"choco": "Chocolatey is a package manager for Windows.",
"docker": "Docker is a containerization platform.",
"n": "\"n\" is a cross-platform Node.js version manager.",
"volta": "\"Volta\" is a cross-platform Node.js version manager."
}
}
},
"logo": "Node.js logo"
}
}