spck 0.3.1
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/.oxlintrc.json +49 -0
- package/LICENSE +21 -0
- package/README.md +631 -0
- package/bin/cli.js +20 -0
- package/bin/validate-cwd.js +41 -0
- package/dist/config/__tests__/config.test.d.ts +2 -0
- package/dist/config/__tests__/config.test.js +262 -0
- package/dist/config/__tests__/credentials.test.d.ts +2 -0
- package/dist/config/__tests__/credentials.test.js +360 -0
- package/dist/config/config.d.ts +33 -0
- package/dist/config/config.js +185 -0
- package/dist/config/credentials.d.ts +75 -0
- package/dist/config/credentials.js +259 -0
- package/dist/config/server-selection.d.ts +40 -0
- package/dist/config/server-selection.js +130 -0
- package/dist/connection/__tests__/firebase-auth.test.d.ts +2 -0
- package/dist/connection/__tests__/firebase-auth.test.js +96 -0
- package/dist/connection/__tests__/hmac.test.d.ts +2 -0
- package/dist/connection/__tests__/hmac.test.js +372 -0
- package/dist/connection/auth.d.ts +13 -0
- package/dist/connection/auth.js +91 -0
- package/dist/connection/firebase-auth.d.ts +40 -0
- package/dist/connection/firebase-auth.js +429 -0
- package/dist/connection/hmac.d.ts +24 -0
- package/dist/connection/hmac.js +109 -0
- package/dist/i18n/index.d.ts +25 -0
- package/dist/i18n/index.js +101 -0
- package/dist/i18n/locales/en.json +313 -0
- package/dist/i18n/locales/es.json +302 -0
- package/dist/i18n/locales/fr.json +302 -0
- package/dist/i18n/locales/id.json +302 -0
- package/dist/i18n/locales/ja.json +302 -0
- package/dist/i18n/locales/ko.json +302 -0
- package/dist/i18n/locales/locales/en.json +309 -0
- package/dist/i18n/locales/locales/es.json +302 -0
- package/dist/i18n/locales/locales/fr.json +302 -0
- package/dist/i18n/locales/locales/id.json +302 -0
- package/dist/i18n/locales/locales/ja.json +302 -0
- package/dist/i18n/locales/locales/ko.json +302 -0
- package/dist/i18n/locales/locales/pt.json +302 -0
- package/dist/i18n/locales/locales/zh-Hans.json +302 -0
- package/dist/i18n/locales/pt.json +302 -0
- package/dist/i18n/locales/zh-Hans.json +302 -0
- package/dist/index.d.ts +25 -0
- package/dist/index.js +493 -0
- package/dist/proxy/ProxyClient.d.ts +125 -0
- package/dist/proxy/ProxyClient.js +781 -0
- package/dist/proxy/ProxySocketWrapper.d.ts +43 -0
- package/dist/proxy/ProxySocketWrapper.js +98 -0
- package/dist/proxy/__tests__/ProxyClient.test.d.ts +2 -0
- package/dist/proxy/__tests__/ProxyClient.test.js +445 -0
- package/dist/proxy/__tests__/ProxySocketWrapper.test.d.ts +2 -0
- package/dist/proxy/__tests__/ProxySocketWrapper.test.js +190 -0
- package/dist/proxy/__tests__/handshake-validation.test.d.ts +2 -0
- package/dist/proxy/__tests__/handshake-validation.test.js +282 -0
- package/dist/proxy/__tests__/token-refresh-race.test.d.ts +14 -0
- package/dist/proxy/__tests__/token-refresh-race.test.js +173 -0
- package/dist/proxy/chunking.d.ts +53 -0
- package/dist/proxy/chunking.js +127 -0
- package/dist/proxy/handshake-validation.d.ts +21 -0
- package/dist/proxy/handshake-validation.js +49 -0
- package/dist/rpc/__tests__/router.test.d.ts +2 -0
- package/dist/rpc/__tests__/router.test.js +262 -0
- package/dist/rpc/router.d.ts +37 -0
- package/dist/rpc/router.js +132 -0
- package/dist/services/BrowserProxyService.d.ts +13 -0
- package/dist/services/BrowserProxyService.js +139 -0
- package/dist/services/FilesystemService.d.ts +99 -0
- package/dist/services/FilesystemService.js +742 -0
- package/dist/services/GitService.d.ts +243 -0
- package/dist/services/GitService.js +1439 -0
- package/dist/services/SearchService.d.ts +93 -0
- package/dist/services/SearchService.js +670 -0
- package/dist/services/TerminalService.d.ts +62 -0
- package/dist/services/TerminalService.js +337 -0
- package/dist/services/__tests__/BrowserProxyService.test.d.ts +2 -0
- package/dist/services/__tests__/BrowserProxyService.test.js +145 -0
- package/dist/services/__tests__/FilesystemService.test.d.ts +2 -0
- package/dist/services/__tests__/FilesystemService.test.js +609 -0
- package/dist/services/__tests__/GitService.test.d.ts +2 -0
- package/dist/services/__tests__/GitService.test.js +953 -0
- package/dist/services/__tests__/SearchService.test.d.ts +2 -0
- package/dist/services/__tests__/SearchService.test.js +384 -0
- package/dist/services/__tests__/TerminalService.test.d.ts +2 -0
- package/dist/services/__tests__/TerminalService.test.js +513 -0
- package/dist/setup/wizard.d.ts +10 -0
- package/dist/setup/wizard.js +172 -0
- package/dist/types.d.ts +196 -0
- package/dist/types.js +44 -0
- package/dist/utils/__tests__/gitignore.test.d.ts +2 -0
- package/dist/utils/__tests__/gitignore.test.js +127 -0
- package/dist/utils/gitignore.d.ts +24 -0
- package/dist/utils/gitignore.js +77 -0
- package/dist/utils/logger.d.ts +96 -0
- package/dist/utils/logger.js +456 -0
- package/dist/utils/project-dir.d.ts +51 -0
- package/dist/utils/project-dir.js +191 -0
- package/dist/utils/ripgrep.d.ts +34 -0
- package/dist/utils/ripgrep.js +148 -0
- package/dist/utils/tool-detection.d.ts +17 -0
- package/dist/utils/tool-detection.js +126 -0
- package/dist/watcher/FileWatcher.d.ts +10 -0
- package/dist/watcher/FileWatcher.js +42 -0
- package/package.json +70 -0
- package/src/config/__tests__/config.test.ts +318 -0
- package/src/config/__tests__/credentials.test.ts +494 -0
- package/src/config/config.ts +206 -0
- package/src/config/credentials.ts +302 -0
- package/src/config/server-selection.ts +150 -0
- package/src/connection/__tests__/firebase-auth.test.ts +121 -0
- package/src/connection/__tests__/hmac.test.ts +509 -0
- package/src/connection/auth.ts +140 -0
- package/src/connection/firebase-auth.ts +504 -0
- package/src/connection/hmac.ts +139 -0
- package/src/i18n/index.ts +119 -0
- package/src/i18n/locales/en.json +313 -0
- package/src/i18n/locales/es.json +302 -0
- package/src/i18n/locales/fr.json +302 -0
- package/src/i18n/locales/id.json +302 -0
- package/src/i18n/locales/ja.json +302 -0
- package/src/i18n/locales/ko.json +302 -0
- package/src/i18n/locales/pt.json +302 -0
- package/src/i18n/locales/zh-Hans.json +302 -0
- package/src/index.ts +542 -0
- package/src/proxy/ProxyClient.ts +968 -0
- package/src/proxy/ProxySocketWrapper.ts +113 -0
- package/src/proxy/__tests__/ProxyClient.test.ts +575 -0
- package/src/proxy/__tests__/ProxySocketWrapper.test.ts +251 -0
- package/src/proxy/__tests__/handshake-validation.test.ts +367 -0
- package/src/proxy/chunking.ts +162 -0
- package/src/proxy/handshake-validation.ts +64 -0
- package/src/rpc/__tests__/router.test.ts +400 -0
- package/src/rpc/router.ts +183 -0
- package/src/services/BrowserProxyService.ts +179 -0
- package/src/services/FilesystemService.ts +841 -0
- package/src/services/GitService.ts +1639 -0
- package/src/services/SearchService.ts +809 -0
- package/src/services/TerminalService.ts +413 -0
- package/src/services/__tests__/BrowserProxyService.test.ts +155 -0
- package/src/services/__tests__/FilesystemService.test.ts +1002 -0
- package/src/services/__tests__/GitService.test.ts +1552 -0
- package/src/services/__tests__/SearchService.test.ts +484 -0
- package/src/services/__tests__/TerminalService.test.ts +702 -0
- package/src/setup/wizard.ts +242 -0
- package/src/types/fossil-delta.d.ts +4 -0
- package/src/types.ts +287 -0
- package/src/utils/__tests__/gitignore.test.ts +174 -0
- package/src/utils/gitignore.ts +91 -0
- package/src/utils/logger.ts +578 -0
- package/src/utils/project-dir.ts +218 -0
- package/src/utils/ripgrep.ts +180 -0
- package/src/utils/tool-detection.ts +141 -0
- package/src/watcher/FileWatcher.ts +53 -0
- package/tsconfig.json +24 -0
- package/vitest.config.ts +19 -0
|
@@ -0,0 +1,313 @@
|
|
|
1
|
+
{
|
|
2
|
+
"app": {
|
|
3
|
+
"title": "Spck CLI",
|
|
4
|
+
"goodbye": "Goodbye!"
|
|
5
|
+
},
|
|
6
|
+
"config": {
|
|
7
|
+
"loaded": "Configuration loaded",
|
|
8
|
+
"notFound": "No configuration found. Running setup wizard...",
|
|
9
|
+
"corrupted": "Configuration file is corrupted",
|
|
10
|
+
"corruptedRunSetup": "Running setup wizard to recreate...",
|
|
11
|
+
"fileNotFound": "Configuration file not found: {{path}}",
|
|
12
|
+
"fileNotFoundHint": "Running setup wizard to create initial configuration...",
|
|
13
|
+
"fileCorrupted": "Configuration file is corrupted: {{path}}",
|
|
14
|
+
"fileCorruptedHint": "Will run setup wizard to recreate...",
|
|
15
|
+
"saved": "Configuration saved successfully!"
|
|
16
|
+
},
|
|
17
|
+
"auth": {
|
|
18
|
+
"title": "Firebase Authentication",
|
|
19
|
+
"startingCallback": "Starting local callback server on port {{port}}...",
|
|
20
|
+
"openingBrowser": "Opening browser for authentication...",
|
|
21
|
+
"couldNotOpenBrowser": "Could not open browser automatically: {{message}}",
|
|
22
|
+
"manualAuthHint": "If browser doesn't open, authenticate manually:",
|
|
23
|
+
"visitUrl": "Or visit: {{url}}",
|
|
24
|
+
"waiting": "Waiting for authentication (timeout: 10 minutes)...",
|
|
25
|
+
"success": "Authentication successful!",
|
|
26
|
+
"userId": "User ID: {{userId}}",
|
|
27
|
+
"credentialsLoaded": "Firebase credentials loaded",
|
|
28
|
+
"generatingToken": "Generating fresh Firebase ID token...",
|
|
29
|
+
"noRefreshToken": "No refresh token available. Re-authentication required.",
|
|
30
|
+
"refreshTokenExpired": "Refresh token expired or invalid. Re-authentication required.",
|
|
31
|
+
"tokenRefreshError": "Token refresh error: {{message}}",
|
|
32
|
+
"tokenRefreshFailed": "Token refresh failed. Re-authentication required."
|
|
33
|
+
},
|
|
34
|
+
"tools": {
|
|
35
|
+
"title": "Tool Detection",
|
|
36
|
+
"gitForceDisabled": "Git force-disabled (development mode)",
|
|
37
|
+
"gitDetected": "Git detected: {{version}}",
|
|
38
|
+
"gitDetectedShort": "Git detected",
|
|
39
|
+
"gitNotDetected": "Git not detected",
|
|
40
|
+
"gitDisabledHint": "Git features will be disabled in this session.",
|
|
41
|
+
"gitInstallHint": "Install Git to enable version control features:",
|
|
42
|
+
"ripgrepForceDisabled": "Ripgrep force-disabled (development mode)",
|
|
43
|
+
"ripgrepDetected": "Ripgrep detected: {{version}}",
|
|
44
|
+
"ripgrepDetectedShort": "Ripgrep detected",
|
|
45
|
+
"ripgrepNotDetected": "Ripgrep not detected",
|
|
46
|
+
"ripgrepDisabledHint": "Fast search features will be disabled in this session.",
|
|
47
|
+
"ripgrepInstallHint": "Install ripgrep for high-performance code search:",
|
|
48
|
+
"gitInstallUrl": "https://git-scm.com/downloads",
|
|
49
|
+
"ripgrepInstallUrl": "https://github.com/BurntSushi/ripgrep#installation"
|
|
50
|
+
},
|
|
51
|
+
"features": {
|
|
52
|
+
"title": "Available Features",
|
|
53
|
+
"filesystem": "Filesystem operations",
|
|
54
|
+
"gitEnabled": "Git version control",
|
|
55
|
+
"gitDisabled": "Git version control (git not installed)",
|
|
56
|
+
"searchFast": "Fast search (ripgrep)",
|
|
57
|
+
"searchBasic": "Basic search (ripgrep not installed)",
|
|
58
|
+
"terminalEnabled": "Terminal service",
|
|
59
|
+
"terminalDisabled": "Terminal service (disabled in config)",
|
|
60
|
+
"browserProxyEnabled": "Browser proxy service",
|
|
61
|
+
"browserProxyDisabled": "Browser proxy service (disabled in config)",
|
|
62
|
+
"securityTitle": "Security Mode",
|
|
63
|
+
"userAuthEnabled": "User Authentication: ENABLED",
|
|
64
|
+
"userAuthEnabledHint1": "Requires Firebase authentication for all connections",
|
|
65
|
+
"userAuthEnabledHint2": "Adds user identity verification layer",
|
|
66
|
+
"userAuthEnabledHint3": "Compatible with Spck Editor (not Lite)",
|
|
67
|
+
"userAuthDisabled": "User Authentication: DISABLED",
|
|
68
|
+
"userAuthDisabledHint1": "Connections protected by secret signing key only",
|
|
69
|
+
"userAuthDisabledHint2": "Lower latency, no Firebase auth required",
|
|
70
|
+
"userAuthDisabledHint3": "Compatible with Spck Editor Lite"
|
|
71
|
+
},
|
|
72
|
+
"server": {
|
|
73
|
+
"selectingBest": "Selecting best relay server...",
|
|
74
|
+
"checkingLatency": "Checking server latency...",
|
|
75
|
+
"selected": "Selected server: {{label}} ({{url}}) - {{ping}}ms",
|
|
76
|
+
"allUnreachable": "All servers unreachable, using default: {{url}}",
|
|
77
|
+
"usingOverride": "Using server override: {{url}}",
|
|
78
|
+
"usingSaved": "Using saved server: {{url}}",
|
|
79
|
+
"failedSelect": "Failed to select relay server: {{message}}",
|
|
80
|
+
"usingDefault": "Using default: {{url}}",
|
|
81
|
+
"unreachable": "unreachable"
|
|
82
|
+
},
|
|
83
|
+
"connection": {
|
|
84
|
+
"title": "Connecting to Relay Server",
|
|
85
|
+
"relayServer": "Relay server: {{server}}",
|
|
86
|
+
"scanQR": "Scan this QR code with Spck Editor mobile app:",
|
|
87
|
+
"clientId": "Client ID: {{id}}",
|
|
88
|
+
"secret": "Secret: {{secret}}",
|
|
89
|
+
"name": "Name: {{name}}",
|
|
90
|
+
"relayServerLabel": "Relay server: {{server}}",
|
|
91
|
+
"relayServerMismatch": "IMPORTANT: The client must select the same relay server",
|
|
92
|
+
"relayServerMismatchHint": "({{server}}) in Spck Editor to connect.",
|
|
93
|
+
"existingFound": "Existing connection found",
|
|
94
|
+
"connectedAt": "Connected at: {{date}}",
|
|
95
|
+
"noExisting": "No existing connection found. Connecting to proxy...",
|
|
96
|
+
"tokenExpired": "Server token expired. Reconnecting...",
|
|
97
|
+
"settingsCorrupted": "Connection settings corrupted, will reconnect to proxy...",
|
|
98
|
+
"reusingSecret": "Reusing existing secret for clientId",
|
|
99
|
+
"generatedSecret": "Generated new secret for clientId",
|
|
100
|
+
"newDevice": "New device connecting: {{deviceId}}",
|
|
101
|
+
"newDeviceWarning": "This is the first time this device has connected.",
|
|
102
|
+
"newDeviceCompromised": "If you did not initiate this connection, your credentials may be compromised.",
|
|
103
|
+
"userVerifying": "Requesting user verification...",
|
|
104
|
+
"userVerified": "User verified for {{deviceId}}: {{userId}}",
|
|
105
|
+
"userVerifyFailed": "User verification failed for {{deviceId}}: {{message}}",
|
|
106
|
+
"userVerifyOptional": "Continuing anyway (verification is optional)",
|
|
107
|
+
"protocolNegotiated": "Protocol v{{version}} negotiated with {{deviceId}}",
|
|
108
|
+
"protocolUnsupported": "Unsupported protocol version {{version}} from {{deviceId}}. This CLI only supports protocol v1. An upgrade is required: update your client/library (and this CLI, if applicable) to the latest version so protocol versions match. If you installed the CLI globally, run: npm i -g spck@latest",
|
|
109
|
+
"chunkingMessage": "Chunking large {{event}} message: {{chunks}} chunks (~{{size}}MB) for {{deviceId}}",
|
|
110
|
+
"disconnectedFromProxy": "Disconnected from proxy: {{reason}}",
|
|
111
|
+
"serverTerminated": "Server terminated connection. Exiting...",
|
|
112
|
+
"attemptingReconnect": "Attempting to reconnect...",
|
|
113
|
+
"reconnectAttempt": "Reconnection attempt {{attempt}}/5...",
|
|
114
|
+
"reconnected": "Reconnected after {{attempts}} attempts",
|
|
115
|
+
"reconnectFailed": "Failed to reconnect after 5 attempts.",
|
|
116
|
+
"exiting": "Exiting...",
|
|
117
|
+
"shuttingDown": "Shutting down gracefully...",
|
|
118
|
+
"killTimeout": "Kill acknowledgment timeout, forcing disconnect",
|
|
119
|
+
"gracefulDisconnect": "Gracefully disconnected from proxy",
|
|
120
|
+
"connectError": "Connection error: {{message}}",
|
|
121
|
+
"connectErrorNamespace": "Namespace: /listen",
|
|
122
|
+
"connectErrorType": "Error type: {{type}}",
|
|
123
|
+
"connectFailed": "Failed to connect to relay server",
|
|
124
|
+
"connectFailedUrl": "URL: {{url}}/listen",
|
|
125
|
+
"connectFailedError": "Error: {{message}}",
|
|
126
|
+
"connectFailedCauses": "Possible causes:",
|
|
127
|
+
"connectFailedCause1": "- Server is not reachable (check your internet connection)",
|
|
128
|
+
"connectFailedCause2": "- Network/firewall blocking connection",
|
|
129
|
+
"unknownMessageType": "Unknown message type from {{deviceId}}",
|
|
130
|
+
"errorHandlingMessage": "Error handling message from {{deviceId}}",
|
|
131
|
+
"unknownHandshakeType": "Unknown handshake message type: {{type}}",
|
|
132
|
+
"rejectingUnauthenticated": "Rejecting {{event}} from unauthenticated connection: {{deviceId}}",
|
|
133
|
+
"rejectingUserVerification": "Rejecting protocol_selected - user verification required but not completed: {{deviceId}}",
|
|
134
|
+
"invalidRpcMessage": "Invalid RPC message from {{deviceId}}",
|
|
135
|
+
"unhandledError": "Unhandled error in handleError:",
|
|
136
|
+
"freeTierNotice": "Free account: {{used}} / {{limit}} min used today ({{remaining}} min remaining)",
|
|
137
|
+
"freeTierUpgrade": "Upgrade for unlimited CLI access."
|
|
138
|
+
},
|
|
139
|
+
"multipleConnection": {
|
|
140
|
+
"detected": "MULTIPLE CONNECTION ATTEMPT DETECTED!",
|
|
141
|
+
"existingCount": "Existing connections: {{count}}",
|
|
142
|
+
"newConnectionId": "New connection ID: {{id}}",
|
|
143
|
+
"rejectedHint": "For security reasons, new connections are rejected by default.",
|
|
144
|
+
"restartHint": "If you want to allow multiple connections, restart the CLI.",
|
|
145
|
+
"compromiseWarning": "If you did not initiate this connection, your client ID",
|
|
146
|
+
"compromiseHint": "may have been compromised. Consider regenerating it."
|
|
147
|
+
},
|
|
148
|
+
"proxyError": {
|
|
149
|
+
"error": "Proxy error: {{message}}",
|
|
150
|
+
"tokenExpiredTimeout": "Your access token has expired or timed out.",
|
|
151
|
+
"tokenExpiredHint": "Please try again or re-authenticate with: spck auth login",
|
|
152
|
+
"tokenRevoked": "Your login token has been revoked.",
|
|
153
|
+
"tokenRevokedHint": "Please re-authenticate: spck auth logout && spck auth login",
|
|
154
|
+
"privacyConsent": "Privacy policy consent required.",
|
|
155
|
+
"privacyConsentHint1": "Please accept the privacy policy in the Spck Editor app",
|
|
156
|
+
"privacyConsentHint2": "under Account Settings to use this feature.",
|
|
157
|
+
"accountDeleting": "Your account is being deleted.",
|
|
158
|
+
"accountDeletingHint": "Please wait 72 hours before trying again.",
|
|
159
|
+
"accountBanned": "This account has been banned.",
|
|
160
|
+
"accountBannedHint1": "Your account has been banned for violation of the",
|
|
161
|
+
"accountBannedHint2": "Terms of Service agreement.",
|
|
162
|
+
"subscriptionCheckFailed": "Unable to verify subscription status.",
|
|
163
|
+
"subscriptionCheckFailedHint": "This may be a temporary issue. Please try again later.",
|
|
164
|
+
"subscriptionRequired": "This feature requires a paid subscription.",
|
|
165
|
+
"subscriptionRequiredHint": "Open the Spck Editor app to upgrade to Supporter or Gold.",
|
|
166
|
+
"maxConnections": "Maximum of {{max}} CLI connections reached.",
|
|
167
|
+
"maxConnectionsHint": "Close other CLI instances and try again.",
|
|
168
|
+
"duplicateClientId": "A CLI with this client ID is already connected.",
|
|
169
|
+
"duplicateHint1": "This can happen if:",
|
|
170
|
+
"duplicateHint2": "- Another CLI instance is still running with the same connection",
|
|
171
|
+
"duplicateHint3": "- A previous connection did not properly disconnect",
|
|
172
|
+
"duplicateHint4": "Please:",
|
|
173
|
+
"duplicateHint5": "1. Close any other running CLI instances",
|
|
174
|
+
"duplicateHint6": "2. Wait a few seconds for the previous connection to timeout",
|
|
175
|
+
"duplicateHint7": "3. Try connecting again",
|
|
176
|
+
"firebaseExpiredRefreshFailed": "Firebase token expired and refresh failed.",
|
|
177
|
+
"firebaseExpiredRefreshFailedHint": "Please re-authenticate: spck auth login",
|
|
178
|
+
"firebaseExpired": "Firebase token expired.",
|
|
179
|
+
"firebaseExpiredHint": "Please re-authenticate: spck auth login",
|
|
180
|
+
"firebaseInvalid": "Firebase token is invalid (not expired).",
|
|
181
|
+
"firebaseInvalidHint1": "The token may be corrupted or from a different account.",
|
|
182
|
+
"firebaseInvalidHint2": "Please re-authenticate: spck auth login",
|
|
183
|
+
"firebaseTokenExpiring": "Firebase token expired. Attempting to refresh...",
|
|
184
|
+
"tokenRefreshFailed": "Token refresh failed: {{message}}",
|
|
185
|
+
"dailyLimitExceeded": "Daily free tier limit of 30 minutes has been reached.",
|
|
186
|
+
"dailyLimitReset": "Limit resets in {{time}}.",
|
|
187
|
+
"dailyLimitExceededHint": "Open the Spck Editor app to upgrade to Supporter or Gold for unlimited CLI access.",
|
|
188
|
+
"defaultError": "A problem occurred when verifying your subscription."
|
|
189
|
+
},
|
|
190
|
+
"errors": {
|
|
191
|
+
"permissionError": "Permission Error: Cannot write to required directory",
|
|
192
|
+
"permissionPath": "Path: {{path}}",
|
|
193
|
+
"permissionOperation": "Operation: {{operation}}",
|
|
194
|
+
"permissionFix": "Please fix permissions:",
|
|
195
|
+
"permissionFixCmd1": "chmod 700 ~/.spck-editor",
|
|
196
|
+
"permissionFixCmd2": "chmod 600 ~/.spck-editor/.credentials.json",
|
|
197
|
+
"permissionFixHint": "Or ensure your user has write access to the home directory.",
|
|
198
|
+
"diskFull": "Disk Full: No space left on device",
|
|
199
|
+
"diskFullHint": "Please free up disk space and try again.",
|
|
200
|
+
"cannotConnect": "Cannot connect to proxy server",
|
|
201
|
+
"cannotConnectError": "Error: {{message}}",
|
|
202
|
+
"cannotConnectCauses": "Possible causes:",
|
|
203
|
+
"cannotConnectCause1": "- Proxy server is down",
|
|
204
|
+
"cannotConnectCause2": "- Network connection issue",
|
|
205
|
+
"cannotConnectCause3": "- Incorrect proxy URL in config",
|
|
206
|
+
"cannotConnectHint": "Please check the proxy URL and try again.",
|
|
207
|
+
"failedToStart": "Failed to start proxy client: {{message}}",
|
|
208
|
+
"rootNotFound": "Root directory not found: {{path}}",
|
|
209
|
+
"rootNotFoundHint": "Please ensure the directory exists and is accessible, or run setup wizard:",
|
|
210
|
+
"rootNotFoundCmd": "spck --setup",
|
|
211
|
+
"uncaughtException": "Uncaught exception: {{message}}",
|
|
212
|
+
"unhandledRejection": "Unhandled rejection: {{message}}",
|
|
213
|
+
"shutdownError": "Error during shutdown: {{message}}",
|
|
214
|
+
"cliError": "Error: {{message}}",
|
|
215
|
+
"cliErrorHint": "Run with --help to see available commands and options."
|
|
216
|
+
},
|
|
217
|
+
"logout": {
|
|
218
|
+
"title": "Logout",
|
|
219
|
+
"clearedCredentials": "Cleared user credentials",
|
|
220
|
+
"removed": "Removed: {{path}}",
|
|
221
|
+
"clearedSettings": "Cleared connection settings",
|
|
222
|
+
"noCredentials": "No credentials or connection settings found",
|
|
223
|
+
"notLoggedIn": "You are not currently logged in.",
|
|
224
|
+
"success": "Successfully logged out!",
|
|
225
|
+
"runAgain": "Run the CLI again to re-authenticate."
|
|
226
|
+
},
|
|
227
|
+
"account": {
|
|
228
|
+
"title": "Account Information",
|
|
229
|
+
"credentialsCorrupted": "Credentials file is corrupted.",
|
|
230
|
+
"credentialsCorruptedHint1": "Please logout and re-authenticate:",
|
|
231
|
+
"credentialsCorruptedHint2": "spck --logout",
|
|
232
|
+
"notLoggedIn": "Not currently logged in.",
|
|
233
|
+
"notLoggedInHint1": "Run the CLI to authenticate:",
|
|
234
|
+
"notLoggedInHint2": "spck",
|
|
235
|
+
"fetching": "Fetching account information...",
|
|
236
|
+
"decodeFailed": "Failed to decode authentication token",
|
|
237
|
+
"loggedIn": "Logged In",
|
|
238
|
+
"userId": "User ID: {{userId}}",
|
|
239
|
+
"email": "Email: {{email}}",
|
|
240
|
+
"verified": "Verified: {{status}}",
|
|
241
|
+
"yes": "Yes",
|
|
242
|
+
"no": "No",
|
|
243
|
+
"tokenExpires": "Token expires: {{date}}",
|
|
244
|
+
"timeRemaining": "Time remaining: {{hours}}h {{minutes}}m",
|
|
245
|
+
"subscription": "Subscription",
|
|
246
|
+
"status": "Status: {{status}}",
|
|
247
|
+
"plan": "Plan: {{plan}}",
|
|
248
|
+
"premium": "Premium: {{status}}",
|
|
249
|
+
"fetchFailed": "Failed to retrieve account information",
|
|
250
|
+
"fetchFailedError": "Error: {{message}}",
|
|
251
|
+
"permissionDenied": "Permission denied accessing credentials file",
|
|
252
|
+
"permissionHint1": "Please check file permissions:",
|
|
253
|
+
"permissionHint2": "chmod 600 ~/.spck-editor/.credentials.json",
|
|
254
|
+
"networkError": "Network connection error",
|
|
255
|
+
"networkHint": "Please check your internet connection"
|
|
256
|
+
},
|
|
257
|
+
"credentials": {
|
|
258
|
+
"corrupted": "Credentials file is corrupted: {{path}}",
|
|
259
|
+
"corruptedHint": "Will trigger re-authentication...",
|
|
260
|
+
"settingsCorrupted": "Connection settings file is corrupted: {{path}}",
|
|
261
|
+
"settingsCorruptedHint": "Will reconnect to proxy..."
|
|
262
|
+
},
|
|
263
|
+
"projectDir": {
|
|
264
|
+
"configured": "Project directory configured",
|
|
265
|
+
"directory": "Directory: {{path}}",
|
|
266
|
+
"configLink": "Config: {{symlink}} -> {{dataPath}}"
|
|
267
|
+
},
|
|
268
|
+
"setup": {
|
|
269
|
+
"title": "Spck Networking CLI - Initial Setup",
|
|
270
|
+
"description1": "This wizard will help you configure the Spck Networking CLI.",
|
|
271
|
+
"description2": "The CLI connects to a proxy server to enable remote access",
|
|
272
|
+
"description3": "to your local filesystem, git, and terminal.",
|
|
273
|
+
"projectConfig": "Project Configuration",
|
|
274
|
+
"rootDirPrompt": "Root directory to serve [{{default}}]: ",
|
|
275
|
+
"terminalConfig": "Terminal Configuration",
|
|
276
|
+
"terminalDescription": "Terminal service allows remote shell access to your machine.",
|
|
277
|
+
"terminalPrompt": "Enable terminal service? [Y/n]: ",
|
|
278
|
+
"advancedTerminalPrompt": "Configure advanced terminal settings? [y/N]: ",
|
|
279
|
+
"maxBufferPrompt": "Maximum buffer lines (terminal history) [{{default}}]: ",
|
|
280
|
+
"maxBufferHint": "(Larger buffer stores more history but may slow synchronization)",
|
|
281
|
+
"maxTerminalsPrompt": "Maximum terminal processes [{{default}}]: ",
|
|
282
|
+
"browserProxyConfig": "Browser Proxy Configuration",
|
|
283
|
+
"browserProxyDescription": "Browser proxy allows Spck Editor to open a live preview of your local dev server inside the browser.",
|
|
284
|
+
"browserProxyPrompt": "Enable browser proxy service? [Y/n]: ",
|
|
285
|
+
"securityConfig": "Security Configuration",
|
|
286
|
+
"securityDescription1": "Additional user authentication adds an extra security layer",
|
|
287
|
+
"securityDescription2": "by requiring the client to verify their Firebase identity.",
|
|
288
|
+
"securityDescription3": "This increases initial connection time by ~3-15 seconds.",
|
|
289
|
+
"securityDocsHint": "Learn more: {{url}}",
|
|
290
|
+
"securityPrompt": "Enable additional user authentication? [y/N]: ",
|
|
291
|
+
"gitConfig": "Git Configuration",
|
|
292
|
+
"gitignoreDetected": "A .gitignore file was detected in your project directory.",
|
|
293
|
+
"gitignoreRecommend1": "It is recommended to add .spck-editor/ to .gitignore to prevent",
|
|
294
|
+
"gitignoreRecommend2": "accidentally committing the directory to version control.",
|
|
295
|
+
"gitignorePrompt": "Add .spck-editor/ to .gitignore? [Y/n]: ",
|
|
296
|
+
"gitignoreAdded": "Added .spck-editor/ to .gitignore",
|
|
297
|
+
"gitignoreFailed": "Failed to update .gitignore: {{message}}",
|
|
298
|
+
"gitignoreManualHint": "You can manually add .spck-editor/ to your .gitignore file.",
|
|
299
|
+
"setupFailed": "Setup failed: {{message}}",
|
|
300
|
+
"configSummary": "Configuration summary:",
|
|
301
|
+
"summaryName": "Server name: {{name}}",
|
|
302
|
+
"summaryNameNotSet": "Not set",
|
|
303
|
+
"summaryRoot": "Root directory: {{root}}",
|
|
304
|
+
"summaryTerminal": "Terminal service: {{status}}",
|
|
305
|
+
"summaryEnabled": "Enabled",
|
|
306
|
+
"summaryDisabled": "Disabled",
|
|
307
|
+
"summaryMaxBuffer": "- Max buffer lines: {{value}}",
|
|
308
|
+
"summaryMaxProcesses": "- Max processes: {{value}}",
|
|
309
|
+
"summaryUserAuth": "User authentication: {{status}}",
|
|
310
|
+
"summaryBrowserProxy": "Browser proxy: {{status}}",
|
|
311
|
+
"received": "Received {{signal}}"
|
|
312
|
+
}
|
|
313
|
+
}
|
|
@@ -0,0 +1,302 @@
|
|
|
1
|
+
{
|
|
2
|
+
"app": {
|
|
3
|
+
"title": "Spck CLI",
|
|
4
|
+
"goodbye": "¡Adiós!"
|
|
5
|
+
},
|
|
6
|
+
"config": {
|
|
7
|
+
"loaded": "Configuración cargada",
|
|
8
|
+
"notFound": "No se encontró configuración. Ejecutando asistente de configuración...",
|
|
9
|
+
"corrupted": "El archivo de configuración está corrupto",
|
|
10
|
+
"corruptedRunSetup": "Ejecutando asistente de configuración para recrear...",
|
|
11
|
+
"fileNotFound": "Archivo de configuración no encontrado: {{path}}",
|
|
12
|
+
"fileNotFoundHint": "Ejecutando asistente de configuración para crear la configuración inicial...",
|
|
13
|
+
"fileCorrupted": "El archivo de configuración está corrupto: {{path}}",
|
|
14
|
+
"fileCorruptedHint": "Se ejecutará el asistente de configuración para recrear...",
|
|
15
|
+
"saved": "¡Configuración guardada exitosamente!"
|
|
16
|
+
},
|
|
17
|
+
"auth": {
|
|
18
|
+
"title": "Autenticación Firebase",
|
|
19
|
+
"startingCallback": "Iniciando servidor de callback local en el puerto {{port}}...",
|
|
20
|
+
"openingBrowser": "Abriendo navegador para autenticación...",
|
|
21
|
+
"couldNotOpenBrowser": "No se pudo abrir el navegador automáticamente: {{message}}",
|
|
22
|
+
"manualAuthHint": "Si el navegador no se abre, autentíquese manualmente:",
|
|
23
|
+
"visitUrl": "O visite: {{url}}",
|
|
24
|
+
"waiting": "Esperando autenticación (tiempo límite: 10 minutos)...",
|
|
25
|
+
"success": "¡Autenticación exitosa!",
|
|
26
|
+
"userId": "ID de usuario: {{userId}}",
|
|
27
|
+
"credentialsLoaded": "Credenciales de Firebase cargadas",
|
|
28
|
+
"generatingToken": "Generando token de ID de Firebase nuevo...",
|
|
29
|
+
"noRefreshToken": "No hay token de actualización disponible. Se requiere reautenticación.",
|
|
30
|
+
"refreshTokenExpired": "El token de actualización expiró o es inválido. Se requiere reautenticación.",
|
|
31
|
+
"tokenRefreshError": "Error al actualizar token: {{message}}",
|
|
32
|
+
"tokenRefreshFailed": "Falló la actualización del token. Se requiere reautenticación."
|
|
33
|
+
},
|
|
34
|
+
"tools": {
|
|
35
|
+
"title": "Detección de herramientas",
|
|
36
|
+
"gitForceDisabled": "Git desactivado forzosamente (modo de desarrollo)",
|
|
37
|
+
"gitDetected": "Git detectado: {{version}}",
|
|
38
|
+
"gitDetectedShort": "Git detectado",
|
|
39
|
+
"gitNotDetected": "Git no detectado",
|
|
40
|
+
"gitDisabledHint": "Las funciones de Git estarán desactivadas en esta sesión.",
|
|
41
|
+
"gitInstallHint": "Instale Git para habilitar las funciones de control de versiones:",
|
|
42
|
+
"ripgrepForceDisabled": "ripgrep desactivado forzosamente (modo de desarrollo)",
|
|
43
|
+
"ripgrepDetected": "ripgrep detectado: {{version}}",
|
|
44
|
+
"ripgrepDetectedShort": "ripgrep detectado",
|
|
45
|
+
"ripgrepNotDetected": "ripgrep no detectado",
|
|
46
|
+
"ripgrepDisabledHint": "Las funciones de búsqueda rápida estarán desactivadas en esta sesión.",
|
|
47
|
+
"ripgrepInstallHint": "Instale ripgrep para búsqueda de código de alto rendimiento:",
|
|
48
|
+
"gitInstallUrl": "https://git-scm.com/downloads",
|
|
49
|
+
"ripgrepInstallUrl": "https://github.com/BurntSushi/ripgrep#installation"
|
|
50
|
+
},
|
|
51
|
+
"features": {
|
|
52
|
+
"title": "Funciones disponibles",
|
|
53
|
+
"filesystem": "Operaciones del sistema de archivos",
|
|
54
|
+
"gitEnabled": "Control de versiones Git",
|
|
55
|
+
"gitDisabled": "Control de versiones Git (git no instalado)",
|
|
56
|
+
"searchFast": "Búsqueda rápida (ripgrep)",
|
|
57
|
+
"searchBasic": "Búsqueda básica (ripgrep no instalado)",
|
|
58
|
+
"terminalEnabled": "Servicio de terminal",
|
|
59
|
+
"terminalDisabled": "Servicio de terminal (desactivado en la configuración)",
|
|
60
|
+
"securityTitle": "Modo de seguridad",
|
|
61
|
+
"userAuthEnabled": "Autenticación de usuario: ACTIVADA",
|
|
62
|
+
"userAuthEnabledHint1": "Requiere autenticación Firebase para todas las conexiones",
|
|
63
|
+
"userAuthEnabledHint2": "Añade una capa de verificación de identidad del usuario",
|
|
64
|
+
"userAuthEnabledHint3": "Compatible con Spck Editor (no Lite)",
|
|
65
|
+
"userAuthDisabled": "Autenticación de usuario: DESACTIVADA",
|
|
66
|
+
"userAuthDisabledHint1": "Conexiones protegidas solo por clave de firma secreta",
|
|
67
|
+
"userAuthDisabledHint2": "Menor latencia, no requiere autenticación Firebase",
|
|
68
|
+
"userAuthDisabledHint3": "Compatible con Spck Editor Lite",
|
|
69
|
+
"browserProxyEnabled": "Servicio de proxy del navegador",
|
|
70
|
+
"browserProxyDisabled": "Servicio de proxy del navegador (desactivado en la configuración)"
|
|
71
|
+
},
|
|
72
|
+
"server": {
|
|
73
|
+
"selectingBest": "Seleccionando el mejor servidor de retransmisión...",
|
|
74
|
+
"checkingLatency": "Verificando latencia del servidor...",
|
|
75
|
+
"selected": "Servidor seleccionado: {{label}} ({{url}}) - {{ping}}ms",
|
|
76
|
+
"allUnreachable": "Todos los servidores inaccesibles, usando predeterminado: {{url}}",
|
|
77
|
+
"usingOverride": "Usando servidor personalizado: {{url}}",
|
|
78
|
+
"usingSaved": "Usando servidor guardado: {{url}}",
|
|
79
|
+
"failedSelect": "Error al seleccionar servidor de retransmisión: {{message}}",
|
|
80
|
+
"usingDefault": "Usando predeterminado: {{url}}",
|
|
81
|
+
"unreachable": "inaccesible"
|
|
82
|
+
},
|
|
83
|
+
"connection": {
|
|
84
|
+
"title": "Conectando al servidor de retransmisión",
|
|
85
|
+
"relayServer": "Servidor de retransmisión: {{server}}",
|
|
86
|
+
"scanQR": "Escanee este código QR con la app móvil Spck Editor:",
|
|
87
|
+
"clientId": "ID de cliente: {{id}}",
|
|
88
|
+
"secret": "Secreto: {{secret}}",
|
|
89
|
+
"name": "Nombre: {{name}}",
|
|
90
|
+
"relayServerLabel": "Servidor de retransmisión: {{server}}",
|
|
91
|
+
"relayServerMismatch": "IMPORTANTE: El cliente debe seleccionar el mismo servidor de retransmisión",
|
|
92
|
+
"relayServerMismatchHint": "({{server}}) en Spck Editor para conectarse.",
|
|
93
|
+
"existingFound": "Conexión existente encontrada",
|
|
94
|
+
"connectedAt": "Conectado en: {{date}}",
|
|
95
|
+
"noExisting": "No se encontró conexión existente. Conectando al proxy...",
|
|
96
|
+
"tokenExpired": "Token del servidor expirado. Reconectando...",
|
|
97
|
+
"settingsCorrupted": "Configuración de conexión corrupta, se reconectará al proxy...",
|
|
98
|
+
"reusingSecret": "Reutilizando secreto existente para clientId",
|
|
99
|
+
"generatedSecret": "Nuevo secreto generado para clientId",
|
|
100
|
+
"newDevice": "Nuevo dispositivo conectando: {{deviceId}}",
|
|
101
|
+
"newDeviceWarning": "Es la primera vez que este dispositivo se conecta.",
|
|
102
|
+
"newDeviceCompromised": "Si usted no inició esta conexión, sus credenciales pueden estar comprometidas.",
|
|
103
|
+
"userVerifying": "Solicitando verificación de usuario...",
|
|
104
|
+
"userVerified": "Usuario verificado para {{deviceId}}: {{userId}}",
|
|
105
|
+
"userVerifyFailed": "Falló la verificación de usuario para {{deviceId}}: {{message}}",
|
|
106
|
+
"userVerifyOptional": "Continuando de todos modos (la verificación es opcional)",
|
|
107
|
+
"protocolNegotiated": "Protocolo v{{version}} negociado con {{deviceId}}",
|
|
108
|
+
"protocolUnsupported": "Versión de protocolo {{version}} no soportada de {{deviceId}}. Este CLI solo soporta protocolo v1. Se requiere una actualización: actualice su cliente/biblioteca (y este CLI, si aplica) a la última versión para que las versiones de protocolo coincidan. Si instaló el CLI globalmente, ejecute: npm i -g spck@latest",
|
|
109
|
+
"chunkingMessage": "Fragmentando mensaje {{event}} grande: {{chunks}} fragmentos (~{{size}}MB) para {{deviceId}}",
|
|
110
|
+
"disconnectedFromProxy": "Desconectado del proxy: {{reason}}",
|
|
111
|
+
"serverTerminated": "El servidor terminó la conexión. Saliendo...",
|
|
112
|
+
"attemptingReconnect": "Intentando reconectar...",
|
|
113
|
+
"reconnectAttempt": "Intento de reconexión {{attempt}}/5...",
|
|
114
|
+
"reconnected": "Reconectado después de {{attempts}} intentos",
|
|
115
|
+
"reconnectFailed": "Falló la reconexión después de 5 intentos.",
|
|
116
|
+
"exiting": "Saliendo...",
|
|
117
|
+
"shuttingDown": "Apagando de forma segura...",
|
|
118
|
+
"killTimeout": "Tiempo de espera de confirmación de cierre agotado, forzando desconexión",
|
|
119
|
+
"gracefulDisconnect": "Desconectado correctamente del proxy",
|
|
120
|
+
"connectError": "Error de conexión: {{message}}",
|
|
121
|
+
"connectErrorNamespace": "Espacio de nombres: /listen",
|
|
122
|
+
"connectErrorType": "Tipo de error: {{type}}",
|
|
123
|
+
"connectFailed": "Error al conectar al servidor de retransmisión",
|
|
124
|
+
"connectFailedUrl": "URL: {{url}}/listen",
|
|
125
|
+
"connectFailedError": "Error: {{message}}",
|
|
126
|
+
"connectFailedCauses": "Posibles causas:",
|
|
127
|
+
"connectFailedCause1": "- El servidor no es accesible (verifique su conexión a internet)",
|
|
128
|
+
"connectFailedCause2": "- Red/firewall bloqueando la conexión",
|
|
129
|
+
"freeTierNotice": "Cuenta gratuita: {{used}} / {{limit}} min usados hoy ({{remaining}} min restantes)",
|
|
130
|
+
"freeTierUpgrade": "Mejora tu plan para acceso ilimitado al CLI."
|
|
131
|
+
},
|
|
132
|
+
"multipleConnection": {
|
|
133
|
+
"detected": "¡INTENTO DE CONEXIÓN MÚLTIPLE DETECTADO!",
|
|
134
|
+
"existingCount": "Conexiones existentes: {{count}}",
|
|
135
|
+
"newConnectionId": "Nuevo ID de conexión: {{id}}",
|
|
136
|
+
"rejectedHint": "Por razones de seguridad, las nuevas conexiones se rechazan por defecto.",
|
|
137
|
+
"restartHint": "Si desea permitir conexiones múltiples, reinicie el CLI.",
|
|
138
|
+
"compromiseWarning": "Si usted no inició esta conexión, su ID de cliente",
|
|
139
|
+
"compromiseHint": "puede estar comprometido. Considere regenerarlo."
|
|
140
|
+
},
|
|
141
|
+
"proxyError": {
|
|
142
|
+
"error": "Error de proxy: {{message}}",
|
|
143
|
+
"tokenExpiredTimeout": "Su token de acceso ha expirado o se agotó el tiempo.",
|
|
144
|
+
"tokenExpiredHint": "Inténtelo de nuevo o reautentíquese con: spck auth login",
|
|
145
|
+
"tokenRevoked": "Su token de inicio de sesión ha sido revocado.",
|
|
146
|
+
"tokenRevokedHint": "Reautentíquese: spck auth logout && spck auth login",
|
|
147
|
+
"privacyConsent": "Se requiere aceptar la política de privacidad.",
|
|
148
|
+
"privacyConsentHint1": "Acepte la política de privacidad en la app Spck Editor",
|
|
149
|
+
"privacyConsentHint2": "en Configuración de cuenta para usar esta función.",
|
|
150
|
+
"accountDeleting": "Su cuenta está siendo eliminada.",
|
|
151
|
+
"accountDeletingHint": "Espere 72 horas antes de intentarlo de nuevo.",
|
|
152
|
+
"accountBanned": "Esta cuenta ha sido suspendida.",
|
|
153
|
+
"accountBannedHint1": "Su cuenta ha sido suspendida por violación de los",
|
|
154
|
+
"accountBannedHint2": "Términos de servicio.",
|
|
155
|
+
"subscriptionCheckFailed": "No se pudo verificar el estado de la suscripción.",
|
|
156
|
+
"subscriptionCheckFailedHint": "Esto puede ser un problema temporal. Inténtelo de nuevo más tarde.",
|
|
157
|
+
"subscriptionRequired": "Esta función requiere una suscripción de pago.",
|
|
158
|
+
"subscriptionRequiredHint": "Abra la aplicación Spck Editor para actualizar a Supporter o Gold.",
|
|
159
|
+
"maxConnections": "Se alcanzó el máximo de {{max}} conexiones CLI.",
|
|
160
|
+
"maxConnectionsHint": "Cierre otras instancias del CLI e inténtelo de nuevo.",
|
|
161
|
+
"duplicateClientId": "Un CLI con este ID de cliente ya está conectado.",
|
|
162
|
+
"duplicateHint1": "Esto puede ocurrir si:",
|
|
163
|
+
"duplicateHint2": "- Otra instancia del CLI aún está ejecutándose con la misma conexión",
|
|
164
|
+
"duplicateHint3": "- Una conexión anterior no se desconectó correctamente",
|
|
165
|
+
"duplicateHint4": "Por favor:",
|
|
166
|
+
"duplicateHint5": "1. Cierre cualquier otra instancia del CLI en ejecución",
|
|
167
|
+
"duplicateHint6": "2. Espere unos segundos a que expire la conexión anterior",
|
|
168
|
+
"duplicateHint7": "3. Intente conectar de nuevo",
|
|
169
|
+
"firebaseExpiredRefreshFailed": "El token de Firebase expiró y la actualización falló.",
|
|
170
|
+
"firebaseExpiredRefreshFailedHint": "Reautentíquese: spck auth login",
|
|
171
|
+
"firebaseExpired": "El token de Firebase expiró.",
|
|
172
|
+
"firebaseExpiredHint": "Reautentíquese: spck auth login",
|
|
173
|
+
"firebaseInvalid": "El token de Firebase es inválido (no expirado).",
|
|
174
|
+
"firebaseInvalidHint1": "El token puede estar corrupto o ser de otra cuenta.",
|
|
175
|
+
"firebaseInvalidHint2": "Reautentíquese: spck auth login",
|
|
176
|
+
"firebaseTokenExpiring": "El token de Firebase expiró. Intentando actualizar...",
|
|
177
|
+
"tokenRefreshFailed": "Falló la actualización del token: {{message}}",
|
|
178
|
+
"dailyLimitExceeded": "Se ha alcanzado el límite diario gratuito de 30 minutos.",
|
|
179
|
+
"dailyLimitReset": "El límite se restablece en {{time}}.",
|
|
180
|
+
"dailyLimitExceededHint": "Abra la aplicación Spck Editor para actualizar a Supporter o Gold y obtener acceso CLI ilimitado.",
|
|
181
|
+
"defaultError": "Ocurrió un problema al verificar su suscripción."
|
|
182
|
+
},
|
|
183
|
+
"errors": {
|
|
184
|
+
"permissionError": "Error de permisos: No se puede escribir en el directorio requerido",
|
|
185
|
+
"permissionPath": "Ruta: {{path}}",
|
|
186
|
+
"permissionOperation": "Operación: {{operation}}",
|
|
187
|
+
"permissionFix": "Corrija los permisos:",
|
|
188
|
+
"permissionFixCmd1": "chmod 700 ~/.spck-editor",
|
|
189
|
+
"permissionFixCmd2": "chmod 600 ~/.spck-editor/.credentials.json",
|
|
190
|
+
"permissionFixHint": "O asegúrese de que su usuario tenga acceso de escritura al directorio de inicio.",
|
|
191
|
+
"diskFull": "Disco lleno: No queda espacio en el dispositivo",
|
|
192
|
+
"diskFullHint": "Libere espacio en disco e inténtelo de nuevo.",
|
|
193
|
+
"cannotConnect": "No se puede conectar al servidor proxy",
|
|
194
|
+
"cannotConnectError": "Error: {{message}}",
|
|
195
|
+
"cannotConnectCauses": "Posibles causas:",
|
|
196
|
+
"cannotConnectCause1": "- El servidor proxy está caído",
|
|
197
|
+
"cannotConnectCause2": "- Problema de conexión de red",
|
|
198
|
+
"cannotConnectCause3": "- URL de proxy incorrecta en la configuración",
|
|
199
|
+
"cannotConnectHint": "Verifique la URL del proxy e inténtelo de nuevo.",
|
|
200
|
+
"failedToStart": "Error al iniciar el cliente proxy: {{message}}",
|
|
201
|
+
"rootNotFound": "Directorio raíz no encontrado: {{path}}",
|
|
202
|
+
"rootNotFoundHint": "Asegúrese de que el directorio exista y sea accesible, o ejecute el asistente de configuración:",
|
|
203
|
+
"rootNotFoundCmd": "spck --setup",
|
|
204
|
+
"uncaughtException": "Excepción no capturada: {{message}}",
|
|
205
|
+
"unhandledRejection": "Rechazo no manejado: {{message}}",
|
|
206
|
+
"shutdownError": "Error durante el apagado: {{message}}",
|
|
207
|
+
"cliError": "Error: {{message}}",
|
|
208
|
+
"cliErrorHint": "Ejecute con --help para ver los comandos y opciones disponibles."
|
|
209
|
+
},
|
|
210
|
+
"logout": {
|
|
211
|
+
"title": "Cerrar sesión",
|
|
212
|
+
"clearedCredentials": "Credenciales de usuario eliminadas",
|
|
213
|
+
"removed": "Eliminado: {{path}}",
|
|
214
|
+
"clearedSettings": "Configuración de conexión eliminada",
|
|
215
|
+
"noCredentials": "No se encontraron credenciales ni configuración de conexión",
|
|
216
|
+
"notLoggedIn": "No tiene una sesión iniciada actualmente.",
|
|
217
|
+
"success": "¡Sesión cerrada exitosamente!",
|
|
218
|
+
"runAgain": "Ejecute el CLI de nuevo para reautenticarse."
|
|
219
|
+
},
|
|
220
|
+
"account": {
|
|
221
|
+
"title": "Información de la cuenta",
|
|
222
|
+
"credentialsCorrupted": "El archivo de credenciales está corrupto.",
|
|
223
|
+
"credentialsCorruptedHint1": "Cierre sesión y reautentíquese:",
|
|
224
|
+
"credentialsCorruptedHint2": "spck --logout",
|
|
225
|
+
"notLoggedIn": "No tiene una sesión iniciada actualmente.",
|
|
226
|
+
"notLoggedInHint1": "Ejecute el CLI para autenticarse:",
|
|
227
|
+
"notLoggedInHint2": "spck",
|
|
228
|
+
"fetching": "Obteniendo información de la cuenta...",
|
|
229
|
+
"decodeFailed": "Error al decodificar el token de autenticación",
|
|
230
|
+
"loggedIn": "Sesión iniciada",
|
|
231
|
+
"userId": "ID de usuario: {{userId}}",
|
|
232
|
+
"email": "Correo: {{email}}",
|
|
233
|
+
"verified": "Verificado: {{status}}",
|
|
234
|
+
"yes": "Sí",
|
|
235
|
+
"no": "No",
|
|
236
|
+
"tokenExpires": "El token expira: {{date}}",
|
|
237
|
+
"timeRemaining": "Tiempo restante: {{hours}}h {{minutes}}m",
|
|
238
|
+
"subscription": "Suscripción",
|
|
239
|
+
"status": "Estado: {{status}}",
|
|
240
|
+
"plan": "Plan: {{plan}}",
|
|
241
|
+
"premium": "Premium: {{status}}",
|
|
242
|
+
"fetchFailed": "Error al obtener la información de la cuenta",
|
|
243
|
+
"fetchFailedError": "Error: {{message}}",
|
|
244
|
+
"permissionDenied": "Permiso denegado al acceder al archivo de credenciales",
|
|
245
|
+
"permissionHint1": "Verifique los permisos del archivo:",
|
|
246
|
+
"permissionHint2": "chmod 600 ~/.spck-editor/.credentials.json",
|
|
247
|
+
"networkError": "Error de conexión de red",
|
|
248
|
+
"networkHint": "Verifique su conexión a internet"
|
|
249
|
+
},
|
|
250
|
+
"credentials": {
|
|
251
|
+
"corrupted": "El archivo de credenciales está corrupto: {{path}}",
|
|
252
|
+
"corruptedHint": "Se activará la re-autenticación...",
|
|
253
|
+
"settingsCorrupted": "El archivo de configuración de conexión está corrupto: {{path}}",
|
|
254
|
+
"settingsCorruptedHint": "Se reconectará al proxy..."
|
|
255
|
+
},
|
|
256
|
+
"projectDir": {
|
|
257
|
+
"configured": "Directorio del proyecto configurado",
|
|
258
|
+
"directory": "Directorio: {{path}}",
|
|
259
|
+
"configLink": "Config: {{symlink}} -> {{dataPath}}"
|
|
260
|
+
},
|
|
261
|
+
"setup": {
|
|
262
|
+
"title": "Spck Networking CLI - Configuración inicial",
|
|
263
|
+
"description1": "Este asistente le ayudará a configurar el Spck Networking CLI.",
|
|
264
|
+
"description2": "El CLI se conecta a un servidor proxy para permitir acceso remoto",
|
|
265
|
+
"description3": "a su sistema de archivos local, git y terminal.",
|
|
266
|
+
"projectConfig": "Configuración del proyecto",
|
|
267
|
+
"rootDirPrompt": "Directorio raíz a servir [{{default}}]: ",
|
|
268
|
+
"terminalConfig": "Configuración del terminal",
|
|
269
|
+
"terminalDescription": "El servicio de terminal permite acceso remoto a la línea de comandos de su máquina.",
|
|
270
|
+
"terminalPrompt": "Habilitar servicio de terminal? [Y/n]: ",
|
|
271
|
+
"advancedTerminalPrompt": "Configurar ajustes avanzados del terminal? [y/N]: ",
|
|
272
|
+
"maxBufferPrompt": "Líneas máximas de búfer (historial del terminal) [{{default}}]: ",
|
|
273
|
+
"maxBufferHint": "(Un búfer más grande almacena más historial pero puede ralentizar la sincronización)",
|
|
274
|
+
"maxTerminalsPrompt": "Procesos máximos de terminal [{{default}}]: ",
|
|
275
|
+
"securityConfig": "Configuración de seguridad",
|
|
276
|
+
"securityDescription1": "La autenticación adicional de usuario añade una capa de seguridad extra",
|
|
277
|
+
"securityDescription2": "al requerir que el cliente verifique su identidad de Firebase.",
|
|
278
|
+
"securityDescription3": "Esto aumenta el tiempo de conexión inicial en ~3-15 segundos.",
|
|
279
|
+
"securityDocsHint": "Más información: {{url}}",
|
|
280
|
+
"securityPrompt": "Habilitar autenticación adicional de usuario? [y/N]: ",
|
|
281
|
+
"gitConfig": "Configuración de Git",
|
|
282
|
+
"gitignoreDetected": "Se detectó un archivo .gitignore en el directorio de su proyecto.",
|
|
283
|
+
"gitignoreRecommend1": "Se recomienda añadir .spck-editor/ a .gitignore para evitar",
|
|
284
|
+
"gitignoreRecommend2": "confirmar accidentalmente el directorio en el control de versiones.",
|
|
285
|
+
"gitignorePrompt": "Añadir .spck-editor/ a .gitignore? [Y/n]: ",
|
|
286
|
+
"gitignoreAdded": "Se añadió .spck-editor/ a .gitignore",
|
|
287
|
+
"gitignoreFailed": "Error al actualizar .gitignore: {{message}}",
|
|
288
|
+
"gitignoreManualHint": "Puede añadir .spck-editor/ manualmente a su archivo .gitignore.",
|
|
289
|
+
"setupFailed": "Error en la configuración: {{message}}",
|
|
290
|
+
"configSummary": "Resumen de la configuración:",
|
|
291
|
+
"summaryName": "Nombre del servidor: {{name}}",
|
|
292
|
+
"summaryNameNotSet": "No establecido",
|
|
293
|
+
"summaryRoot": "Directorio raíz: {{root}}",
|
|
294
|
+
"summaryTerminal": "Servicio de terminal: {{status}}",
|
|
295
|
+
"summaryEnabled": "Activado",
|
|
296
|
+
"summaryDisabled": "Desactivado",
|
|
297
|
+
"summaryMaxBuffer": "- Líneas máximas de búfer: {{value}}",
|
|
298
|
+
"summaryMaxProcesses": "- Procesos máximos: {{value}}",
|
|
299
|
+
"summaryUserAuth": "Autenticación de usuario: {{status}}",
|
|
300
|
+
"received": "Recibido {{signal}}"
|
|
301
|
+
}
|
|
302
|
+
}
|